diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index d61ffd349..57c34d6f3 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -819,6 +819,7 @@ fontsize.eventlist_itemlarge Groß fontsize.eventlist_itemsmall Klein fontsize.eventlist_title Titel fontsize.filebrowser_item Dateibrowsereinträge +fontsize.general_window_text Allgemeiner Fenstertext fontsize.hint Schriftart wird initialisiert,\nbitte warten ... fontsize.infobar_channame Kanalname fontsize.infobar_ecminfo ECM-Info diff --git a/data/locale/english.locale b/data/locale/english.locale index 90daa4899..f2a74b900 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -819,6 +819,7 @@ fontsize.eventlist_itemlarge Large fontsize.eventlist_itemsmall Small fontsize.eventlist_title Title fontsize.filebrowser_item Filebrowser items +fontsize.general_window_text General window text fontsize.hint Initialising font,\nplease wait ... fontsize.infobar_channame Channel name fontsize.infobar_ecminfo ECM-Info diff --git a/src/gui/osd_setup.cpp b/src/gui/osd_setup.cpp index 453217b75..d01d2b58f 100644 --- a/src/gui/osd_setup.cpp +++ b/src/gui/osd_setup.cpp @@ -176,6 +176,7 @@ size_t moviebrowser_font_items = sizeof(moviebrowser_font_sizes)/sizeof(moviebro const SNeutrinoSettings::FONT_TYPES other_font_sizes[] = { + SNeutrinoSettings::FONT_TYPE_WINDOW_GENERAL, SNeutrinoSettings::FONT_TYPE_SUBTITLES, SNeutrinoSettings::FONT_TYPE_FILEBROWSER_ITEM, SNeutrinoSettings::FONT_TYPE_BUTTON_TEXT @@ -235,7 +236,8 @@ font_sizes_struct neutrino_font[SNeutrinoSettings::FONT_TYPE_COUNT] = {LOCALE_FONTSIZE_MOVIEBROWSER_INFO , 16, CNeutrinoFonts::FONT_STYLE_REGULAR, 0}, //NI {LOCALE_FONTSIZE_SUBTITLES , 25, CNeutrinoFonts::FONT_STYLE_BOLD , 0}, {LOCALE_FONTSIZE_MESSAGE_TEXT , 20, CNeutrinoFonts::FONT_STYLE_BOLD , 0}, //NI - {LOCALE_FONTSIZE_BUTTON_TEXT , 14, CNeutrinoFonts::FONT_STYLE_REGULAR, 0} + {LOCALE_FONTSIZE_BUTTON_TEXT , 14, CNeutrinoFonts::FONT_STYLE_REGULAR, 0}, + {LOCALE_FONTSIZE_GENERAL_WINDOW_TEXT, 20, CNeutrinoFonts::FONT_STYLE_REGULAR, 1} }; int COsdSetup::exec(CMenuTarget* parent, const std::string &actionKey) diff --git a/src/system/locals.h b/src/system/locals.h index 2766a9c40..8d8d568ad 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -846,6 +846,7 @@ typedef enum LOCALE_FONTSIZE_EVENTLIST_ITEMSMALL, LOCALE_FONTSIZE_EVENTLIST_TITLE, LOCALE_FONTSIZE_FILEBROWSER_ITEM, + LOCALE_FONTSIZE_GENERAL_WINDOW_TEXT, LOCALE_FONTSIZE_HINT, LOCALE_FONTSIZE_INFOBAR_CHANNAME, LOCALE_FONTSIZE_INFOBAR_ECMINFO, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index 6f6b69eaf..de0053376 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -846,6 +846,7 @@ const char * locale_real_names[] = "fontsize.eventlist_itemsmall", "fontsize.eventlist_title", "fontsize.filebrowser_item", + "fontsize.general_window_text", "fontsize.hint", "fontsize.infobar_channame", "fontsize.infobar_ecminfo", diff --git a/src/system/settings.h b/src/system/settings.h index 79462f2ff..aa4f44a33 100644 --- a/src/system/settings.h +++ b/src/system/settings.h @@ -748,6 +748,7 @@ struct SNeutrinoSettings FONT_TYPE_SUBTITLES, FONT_TYPE_MESSAGE_TEXT, FONT_TYPE_BUTTON_TEXT, + FONT_TYPE_WINDOW_GENERAL, FONT_TYPE_COUNT };