[PATCH] kernel/nls: Fix LOCALE_SNAME for Azeri (Cyrillic)
From: Vijay Kiran Kamuju <infyquest(a)gmail.com> Signed-off-by: Vijay Kiran Kamuju <infyquest(a)gmail.com> --- dlls/kernel32/nls/aze.nls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel32/nls/aze.nls b/dlls/kernel32/nls/aze.nls index cb8d384a97e..cc71d14cad4 100644 --- a/dlls/kernel32/nls/aze.nls +++ b/dlls/kernel32/nls/aze.nls @@ -123,7 +123,7 @@ STRINGTABLE LANGUAGE LANG_AZERI, SUBLANG_AZERI_CYRILLIC LOCALE_SMONTHNAME12 "Декабр" LOCALE_SMONTHNAME13 "" LOCALE_SMONTHOUSANDSEP " " - LOCALE_SNAME "az-AZ" + LOCALE_SNAME "az-Cryl-AZ" LOCALE_SNAN "NaN" LOCALE_SNATIVECTRYNAME L"\x0410\x0437\x04d9\x0440\x0431\x0430\x0458\x04b9\x0430\x043d" LOCALE_SNATIVECURRNAME "рубль" -- 2.17.0
On Saturday, April 20, 2019, Dmitry Timoshkov <dmitry(a)baikal.ru> wrote:
Vijay Kiran Kamuju <infyquest(a)gmail.com> wrote:
- LOCALE_SNAME "az-AZ" + LOCALE_SNAME "az-Cryl-AZ"
This doesn't seem to look right, where does it come from?
-- Dmitry.
I wrote a small test, that calls GetLocaleInfo(Ex) with LOCALE_SNAME. Also LocaleToLCID throws error for az-AZ. All tested on Windows 7. There are more fixes in line for nls files, based on my tests. -- Vijay
Vijay Kiran Kamuju <infyquest(a)gmail.com> wrote:
- LOCALE_SNAME "az-AZ" + LOCALE_SNAME "az-Cryl-AZ"
This doesn't seem to look right, where does it come from? .. I wrote a small test, that calls GetLocaleInfo(Ex) with LOCALE_SNAME. Also LocaleToLCID throws error for az-AZ. All tested on Windows 7. There are more fixes in line for nls files, based on my tests.
My test app shows that it should be "az-Cyrl-AZ". -- Dmitry.
On Sat, Apr 20, 2019 at 10:55 AM Dmitry Timoshkov <dmitry(a)baikal.ru> wrote:
Vijay Kiran Kamuju <infyquest(a)gmail.com> wrote:
- LOCALE_SNAME "az-AZ" + LOCALE_SNAME "az-Cryl-AZ"
This doesn't seem to look right, where does it come from? .. I wrote a small test, that calls GetLocaleInfo(Ex) with LOCALE_SNAME. Also LocaleToLCID throws error for az-AZ. All tested on Windows 7. There are more fixes in line for nls files, based on my tests.
My test app shows that it should be "az-Cyrl-AZ".
-- Dmitry.
Sorry it was a typo, I should not send just patches before going to sleep. --- Vijay
participants (2)
-
Dmitry Timoshkov -
Vijay Kiran Kamuju