GabrielTofvesson bdbb1342ba Massive update
* 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
2018-05-13 20:04:01 +02:00

80 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<Elements xmlns="Client.ConsoleForms.Graphics">
<DialogView id="Success"
padding_left="2"
padding_right="2"
padding_top="1"
padding_bottom="1">
<Options>
<Option>Quit</Option>
</Options>
<Text>Login succeeded!</Text>
</DialogView>
<TextView id="balance"
padding_left="2"
padding_right="2"
padding_top="1"
padding_bottom="1">
<Text>@string/SE_bal</Text>
</TextView>
<!-- Password update prompt -->
<InputView id="password_update"
padding_left="2"
padding_right="2"
padding_top="1"
padding_bottom="1">
<Fields>
<Field hide="true">@string/SU_pwd</Field>
<Field hide="true">@string/SU_pwdrep</Field>
</Fields>
<Text>@string/SE_pwdu</Text>
</InputView>
<!-- Session account actions -->
<ListView id="menu_options"
padding_left="2"
padding_right="2"
padding_top="1"
padding_bottom="1">
<Views>
<ButtonView id="add">
<Text>@string/SE_open</Text>
</ButtonView>
<ButtonView id="view">
<Text>@string/SE_view</Text>
</ButtonView>
<ButtonView id="update">
<Text>@string/SE_pwdu</Text>
</ButtonView>
<ButtonView id="exit">
<Text>@string/SE_exit</Text>
</ButtonView>
</Views>
</ListView>
<!-- Bank account list -->
<ListView id="account_show">
<Views>
<ButtonView id="close">
<Text>@string/GENERIC_dismiss</Text>
</ButtonView>
</Views>
</ListView>
<DialogView id="account_info"
padding_left="2"
padding_right="2"
padding_top="1"
padding_bottom="1">
<Options>
<Option>Ok</Option>
</Options>
<Text>@string/SE_info</Text>
</DialogView>
</Elements>