* Added new endpoint for updating password * Added internationalization method to ContextManager and Context * Updated contexts to use internationalization * Added a fancy text-based UI to the server * Added translations * Moved Promise class to its own file * Made BankNetInteractor its own file * Added a lot of convenient methods * Added many more comments * Fixed input event management in ButtonView * Added support for dynamic ListView content modification * Added more layouts * Fixed some namespaces * Added more commands to the server
33 lines
796 B
XML
33 lines
796 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Resources xmlns="Client.ConsoleForms.Graphics">
|
|
<DialogView id="EmptyFieldError"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Options>
|
|
<Option>@string/GENERIC_accept</Option>
|
|
</Options>
|
|
<Text>@string/ERR_empty</Text>
|
|
</DialogView>
|
|
|
|
<DialogView id="ConnectionError"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1"
|
|
border="4">
|
|
<Options>
|
|
<Option>@string/GENERIC_accept</Option>
|
|
</Options>
|
|
<Text>@string/NC_connerr</Text>
|
|
</DialogView>
|
|
|
|
<TextView id="data_fetch"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Text>@string/GENERiC_fetch</Text>
|
|
</TextView>
|
|
</Resources> |