diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/lang/english.lang | 15 | ||||
| -rw-r--r-- | apps/lang/polski.lang | 14 | ||||
| -rw-r--r-- | apps/plugins/viewer.c | 2 | ||||
| -rw-r--r-- | apps/settings_list.c | 17 |
4 files changed, 39 insertions, 9 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang index 6ad4313..5b1aa68 100644 --- a/apps/lang/english.lang +++ b/apps/lang/english.lang @@ -11327,4 +11327,17 @@ lcd_color: "Bar (Gradient Colour)" </voice> </phrase> - +<phrase> + id: LANG_CODEPAGE_CENTRAL_EUROPEAN + desc: in codepage setting menu + user: + <source> + *: "Central European (CP1250)" + </source> + <dest> + *: "Central European (CP1250)" + </dest> + <voice> + *: "Central Eurpean" + </voice> +</phrase> diff --git a/apps/lang/polski.lang b/apps/lang/polski.lang index bf3e90a..59fbf40 100644 --- a/apps/lang/polski.lang +++ b/apps/lang/polski.lang @@ -11038,3 +11038,17 @@ radio: "Menu Radia FM" </voice> </phrase> +<phrase> + id: LANG_CODEPAGE_CENTRAL_EUROPEAN + desc: in codepage setting menu + user: + <source> + *: "Europa Środkowa (CP1250)" + </source> + <dest> + *: "Europa Środkowa (CP1250)" + </dest> + <voice> + *: "Europa Środkowa" + </voice> +</phrase> diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index 37b7b49..2e152f1 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -247,6 +247,7 @@ struct preferences { ISO_8859_6, ISO_8859_9, ISO_8859_2, + CP1250, SJIS, GB2312, KSX1001, @@ -1191,6 +1192,7 @@ static bool encoding_setting(void) {"ISO-8859-6", -1}, {"ISO-8859-9", -1}, {"ISO-8859-2", -1}, + {"CP1250", -1}, {"SJIS", -1}, {"GB-2312", -1}, {"KSX-1001", -1}, diff --git a/apps/settings_list.c b/apps/settings_list.c index adc8a85..7981f27 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -1025,22 +1025,23 @@ const struct settings_list settings[] = { #ifdef HAVE_LCD_BITMAP /* The order must match with that in unicode.c */ "iso8859-1,iso8859-7,iso8859-8,cp1251,iso8859-11,cp1256," - "iso8859-9,iso8859-2,sjis,gb2312,ksx1001,big5,utf-8", - set_codepage, 13, + "iso8859-9,iso8859-2,cp1250,sjis,gb2312,ksx1001,big5,utf-8", + set_codepage, 14, ID2P(LANG_CODEPAGE_LATIN1), ID2P(LANG_CODEPAGE_GREEK), ID2P(LANG_CODEPAGE_HEBREW), ID2P(LANG_CODEPAGE_CYRILLIC), ID2P(LANG_CODEPAGE_THAI), ID2P(LANG_CODEPAGE_ARABIC), ID2P(LANG_CODEPAGE_TURKISH), ID2P(LANG_CODEPAGE_LATIN_EXTENDED), - ID2P(LANG_CODEPAGE_JAPANESE), ID2P(LANG_CODEPAGE_SIMPLIFIED), - ID2P(LANG_CODEPAGE_KOREAN), ID2P(LANG_CODEPAGE_TRADITIONAL), - ID2P(LANG_CODEPAGE_UTF8)), + ID2P(LANG_CODEPAGE_CENTRAL_EUROPEAN), ID2P(LANG_CODEPAGE_JAPANESE), + ID2P(LANG_CODEPAGE_SIMPLIFIED), ID2P(LANG_CODEPAGE_KOREAN), + ID2P(LANG_CODEPAGE_TRADITIONAL), ID2P(LANG_CODEPAGE_UTF8)), #else /* !HAVE_LCD_BITMAP */ /* The order must match with that in unicode.c */ - "iso8859-1,iso8859-7,cp1251,iso8859-9,iso8859-2,utf-8", - set_codepage, 6, + "iso8859-1,iso8859-7,cp1251,iso8859-9,iso8859-2,cp1250,utf-8", + set_codepage, 7, ID2P(LANG_CODEPAGE_LATIN1), ID2P(LANG_CODEPAGE_GREEK), ID2P(LANG_CODEPAGE_CYRILLIC), ID2P(LANG_CODEPAGE_TURKISH), - ID2P(LANG_CODEPAGE_LATIN_EXTENDED), ID2P(LANG_CODEPAGE_UTF8)), + ID2P(LANG_CODEPAGE_LATIN_EXTENDED), ID2P(LANG_CODEPAGE_CENTRAL_EUROPEAN), + ID2P(LANG_CODEPAGE_UTF8)), #endif OFFON_SETTING(0,warnon_erase_dynplaylist, LANG_WARN_ERASEDYNPLAYLIST_MENU,false, |