* Reworked padding rendering (now handled natively by View) * Fixed how ConsoleController renders dirty views * Explicitly added padding to the LayoutMeta dimensions computation * Added support for updating passwords in SessionContext * Completed account display system * Added many more resources * Simplified internationalization * Added clientside representations for accounts and transations * MOAR COMMENTS! * Optimized account serialization * Corrected issue where copying a user simply copied references to the user accounts; not actually copying accounts (which caused jank) * Fixed timestamp for TimeStampWriter * Probably some other minor things
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> |