summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/setup_theme.cpp22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/gui/setup_theme.cpp b/src/gui/setup_theme.cpp
index b672085b2..a6a4ee31b 100644
--- a/src/gui/setup_theme.cpp
+++ b/src/gui/setup_theme.cpp
@@ -78,11 +78,13 @@ public:
{ }
};
-const int maxFontSizes = 11;
+const int maxFontSizes = 16;
const char *SIZE_NAME[maxFontSizes] =
{
// TRANSLATORS: font size
+ N_("Very small (8)"),
+ // TRANSLATORS: font size
N_("Very small (9)"),
// TRANSLATORS: font size
N_("Tiny (10)"),
@@ -95,15 +97,23 @@ const char *SIZE_NAME[maxFontSizes] =
// TRANSLATORS: font size
N_("Large (14)"),
// TRANSLATORS: font size
- N_("Very large (15)"),
+ N_("Large (15)"),
+ // TRANSLATORS: font size
+ N_("Large (16)"),
+ // TRANSLATORS: font size
+ N_("Big (17)"),
+ // TRANSLATORS: font size
+ N_("Big (18)"),
+ // TRANSLATORS: font size
+ N_("Big (19)"),
// TRANSLATORS: font size
- N_("Big (16)"),
+ N_("Very big (20)"),
// TRANSLATORS: font size
- N_("Very big (17)"),
+ N_("Very big (21)"),
// TRANSLATORS: font size
- N_("Huge (18)"),
+ N_("Very big (22)"),
// TRANSLATORS: font size
- N_("Very huge (19)"),
+ N_("Huge (23)"),
};
class FontSizeChoiceListModel final : public gcn::ListModel