Skip to content

Commit 9a8519a

Browse files
committed
Add case for "zh#Hans".
1 parent 594d47e commit 9a8519a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/localazy/importSupportedLocalesFromLocalazy.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ def normalizeForResourceConfigurations(locale):
2727
return "in"
2828
case "zh_TW#Hant":
2929
return "zh-rTW"
30+
case "zh#Hans":
31+
return "zh-rCN"
3032
case _:
3133
return locale
3234

@@ -37,6 +39,8 @@ def normalizeForLocalConfig(locale):
3739
return "in"
3840
case "zh_TW#Hant":
3941
return "zh-TW"
42+
case "zh#Hans":
43+
return "zh-CN"
4044
case _:
4145
return locale
4246

0 commit comments

Comments
 (0)