* nlsfuncs.cc (__set_charset_from_locale): Set default charset for

"ka_GE" locale to GEORGIAN-PS, for "kk_KZ" to PT154.
This commit is contained in:
Corinna Vinschen 2010-02-06 18:30:18 +00:00
parent 5eb556c849
commit b6b236270e
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-02-06 Corinna Vinschen <corinna@vinschen.de>
* nlsfuncs.cc (__set_charset_from_locale): Set default charset for
"ka_GE" locale to GEORGIAN-PS, for "kk_KZ" to PT154.
2010-02-06 Corinna Vinschen <corinna@vinschen.de>
* path.cc (symlink_info::check_nfs_symlink): Reopen file with
@ -18,7 +23,7 @@
2010-02-05 Corinna Vinschen <corinna@vinschen.de>
* nlsfuncs.cc (__set_charset_from_locale): Set default locale for
* nlsfuncs.cc (__set_charset_from_locale): Set default charset for
"uz_UZ" locale to ISO-8859-1, with the "@cyrillic" modifier to UTF-8.
2010-02-05 Christopher Faylor <me+cygwin@cgf.cx>

View File

@ -891,6 +891,10 @@ __set_charset_from_locale (const char *locale, char *charset)
cs = "ISO-8859-13";
else if (lcid == 0x043a) /* mt_MT (Maltese/Malta) */
cs = "ISO-8859-3";
else if (lcid == 0x0437) /* ka_GE (Georgian/Georgia) */
cs = "GEORGIAN-PS";
else if (lcid == 0x043f) /* kk_KZ (Kazakh/Kazakhstan) */
cs = "PT154";
else
cs = "UTF-8";
break;