Update enum text.

master
lodici 2017-02-20 21:10:16 +00:00
parent 2a492743fb
commit a7fe88d9f2
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ public enum ImageSizePresets {
SIZE_680x960(680, 960),
SIZE_745x1040(745, 1040);
private static final String _S1 = "Original";
private static final String _S1 = "Default";
private final Dimension size;

View File

@ -5,6 +5,6 @@ package magic.ui.screen.images.download;
*/
final class EnumStrings {
private EnumStrings() {}
static final String _S1 = "as originally printed";
static final String _S2 = "as rendered proxy";
static final String _S1 = "Printed";
static final String _S2 = "Rendered proxy";
}