summaryrefslogtreecommitdiff
path: root/src/gui/setup_theme.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-03 17:07:23 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-03 17:07:23 +0300
commit5bde28f9cd5b075f5d17d94a955d0700e0f8e664 (patch)
treeca090bb01699958dde5b80e63eb25a839a408f31 /src/gui/setup_theme.cpp
parent9ad591528e48d29d84563dbfb55b4858c9592f4e (diff)
downloadplus-5bde28f9cd5b075f5d17d94a955d0700e0f8e664.tar.gz
plus-5bde28f9cd5b075f5d17d94a955d0700e0f8e664.tar.bz2
plus-5bde28f9cd5b075f5d17d94a955d0700e0f8e664.tar.xz
plus-5bde28f9cd5b075f5d17d94a955d0700e0f8e664.zip
add small and big font sizes.
from 8 px to 23 px.
Diffstat (limited to 'src/gui/setup_theme.cpp')
-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