천 现在是中国和台湾的千

Chinese and Taiwan number stuff
This commit is contained in:
Tercio Jose
2022-03-06 14:12:44 -03:00
parent 3ee7da55be
commit e0dd8b84e1
+3 -3
View File
@@ -385,16 +385,16 @@
if (locale == "kr") then
symbol_1K, symbol_10K, symbol_1B = "", "", ""
elseif (locale == "cn") then
symbol_1K, symbol_10K, symbol_1B = "", "", "亿"
symbol_1K, symbol_10K, symbol_1B = "", "", "亿"
elseif (locale == "tw") then
symbol_1K, symbol_10K, symbol_1B = "", "", ""
symbol_1K, symbol_10K, symbol_1B = "", "", ""
end
end
if (not symbol_1K) then
--> if a english client is trying to use east asian numeral system and there is no override, let's just use the chinese as default.
--> if the user is from kr or tw and want to use english client, an override must be used.
symbol_1K, symbol_10K, symbol_1B = "", "", "亿"
symbol_1K, symbol_10K, symbol_1B = "", "", "亿"
end
function _detalhes:ToK (numero)