From e0dd8b84e13dc992bd7f310be7198fece316dbab Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Sun, 6 Mar 2022 14:12:44 -0300 Subject: [PATCH] =?UTF-8?q?=EC=B2=9C=20=E7=8E=B0=E5=9C=A8=E6=98=AF?= =?UTF-8?q?=E4=B8=AD=E5=9B=BD=E5=92=8C=E5=8F=B0=E6=B9=BE=E7=9A=84=E5=8D=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Chinese and Taiwan number stuff --- core/util.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/util.lua b/core/util.lua index 76ddda80..9e9ac127 100644 --- a/core/util.lua +++ b/core/util.lua @@ -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)