From e8d6a552b34757222e5fc505cf1b135438e7313e Mon Sep 17 00:00:00 2001 From: feifei <46489071+feifei325@users.noreply.github.com> Date: Mon, 24 Mar 2025 19:49:53 +0800 Subject: [PATCH] i18n: Update numeric formatting suffixes to improve consistency (#1939) Signed-off-by: feifei --- src/i18n/locales/ca/common.json | 4 ++-- src/i18n/locales/de/common.json | 6 +++--- src/i18n/locales/fr/common.json | 4 ++-- src/i18n/locales/hi/common.json | 6 +++--- src/i18n/locales/it/common.json | 4 ++-- src/i18n/locales/ja/common.json | 6 +++--- src/i18n/locales/ko/common.json | 6 +++--- src/i18n/locales/pl/common.json | 6 +++--- src/i18n/locales/pt-BR/common.json | 4 ++-- src/i18n/locales/tr/common.json | 6 +++--- src/i18n/locales/vi/common.json | 4 ++-- src/i18n/locales/zh-CN/common.json | 6 +++--- src/i18n/locales/zh-TW/common.json | 6 +++--- webview-ui/src/i18n/locales/ca/common.json | 6 +++--- webview-ui/src/i18n/locales/de/common.json | 6 +++--- webview-ui/src/i18n/locales/es/common.json | 4 ++-- webview-ui/src/i18n/locales/fr/common.json | 4 ++-- webview-ui/src/i18n/locales/hi/common.json | 6 +++--- webview-ui/src/i18n/locales/it/common.json | 4 ++-- webview-ui/src/i18n/locales/ja/common.json | 4 ++-- webview-ui/src/i18n/locales/ko/common.json | 6 +++--- webview-ui/src/i18n/locales/pl/common.json | 6 +++--- webview-ui/src/i18n/locales/pt-BR/common.json | 6 +++--- webview-ui/src/i18n/locales/tr/common.json | 6 +++--- webview-ui/src/i18n/locales/vi/common.json | 4 ++-- webview-ui/src/i18n/locales/zh-CN/common.json | 6 +++--- webview-ui/src/i18n/locales/zh-TW/common.json | 6 +++--- 27 files changed, 71 insertions(+), 71 deletions(-) diff --git a/src/i18n/locales/ca/common.json b/src/i18n/locales/ca/common.json index 42684a4677..967daab3d0 100644 --- a/src/i18n/locales/ca/common.json +++ b/src/i18n/locales/ca/common.json @@ -5,8 +5,8 @@ }, "number_format": { "thousand_suffix": "k", - "million_suffix": "M", - "billion_suffix": "MM" + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Benvingut/da, {{name}}! Tens {{count}} notificacions.", "items": { diff --git a/src/i18n/locales/de/common.json b/src/i18n/locales/de/common.json index 7da6e0477d..0c5ed0e75f 100644 --- a/src/i18n/locales/de/common.json +++ b/src/i18n/locales/de/common.json @@ -4,9 +4,9 @@ "description": "Ein komplettes Entwicklerteam mit KI in deinem Editor." }, "number_format": { - "thousand_suffix": "T", - "million_suffix": "Mio.", - "billion_suffix": "Mrd." + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Willkommen, {{name}}! Du hast {{count}} Benachrichtigungen.", "items": { diff --git a/src/i18n/locales/fr/common.json b/src/i18n/locales/fr/common.json index b2819a3900..1091994db0 100644 --- a/src/i18n/locales/fr/common.json +++ b/src/i18n/locales/fr/common.json @@ -5,8 +5,8 @@ }, "number_format": { "thousand_suffix": "k", - "million_suffix": "M", - "billion_suffix": "Md" + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Bienvenue, {{name}} ! Vous avez {{count}} notification(s).", "items": { diff --git a/src/i18n/locales/hi/common.json b/src/i18n/locales/hi/common.json index 380fa8a331..ca1053d04e 100644 --- a/src/i18n/locales/hi/common.json +++ b/src/i18n/locales/hi/common.json @@ -4,9 +4,9 @@ "description": "आपके एडिटर में AI डेवलपर्स की पूरी टीम।" }, "number_format": { - "thousand_suffix": "हज़ार", - "million_suffix": "लाख", - "billion_suffix": "अरब" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "स्वागत है, {{name}}! आपके पास {{count}} सूचनाएँ हैं।", "items": { diff --git a/src/i18n/locales/it/common.json b/src/i18n/locales/it/common.json index a73b575458..6104611f2b 100644 --- a/src/i18n/locales/it/common.json +++ b/src/i18n/locales/it/common.json @@ -5,8 +5,8 @@ }, "number_format": { "thousand_suffix": "k", - "million_suffix": "mln", - "billion_suffix": "mld" + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Benvenuto, {{name}}! Hai {{count}} notifiche.", "items": { diff --git a/src/i18n/locales/ja/common.json b/src/i18n/locales/ja/common.json index 4a4f3215c5..c507b0e46d 100644 --- a/src/i18n/locales/ja/common.json +++ b/src/i18n/locales/ja/common.json @@ -4,9 +4,9 @@ "description": "エディター内のAIデベロッパーチーム全体。" }, "number_format": { - "thousand_suffix": "千", - "million_suffix": "百万", - "billion_suffix": "十億" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "ようこそ、{{name}}さん!{{count}}件の通知があります。", "items": { diff --git a/src/i18n/locales/ko/common.json b/src/i18n/locales/ko/common.json index e00cc6deba..b7c9f0de24 100644 --- a/src/i18n/locales/ko/common.json +++ b/src/i18n/locales/ko/common.json @@ -4,9 +4,9 @@ "description": "에디터 내에서 동작하는 AI 개발팀 전체입니다." }, "number_format": { - "thousand_suffix": "천", - "million_suffix": "백만", - "billion_suffix": "십억" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "안녕하세요, {{name}}님! {{count}}개의 알림이 있습니다.", "items": { diff --git a/src/i18n/locales/pl/common.json b/src/i18n/locales/pl/common.json index 3572ec26cb..b23e771ad4 100644 --- a/src/i18n/locales/pl/common.json +++ b/src/i18n/locales/pl/common.json @@ -4,9 +4,9 @@ "description": "Cały zespół programistów AI w Twoim edytorze." }, "number_format": { - "thousand_suffix": "tys.", - "million_suffix": "mln", - "billion_suffix": "mld" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Witaj, {{name}}! Masz {{count}} powiadomień.", "items": { diff --git a/src/i18n/locales/pt-BR/common.json b/src/i18n/locales/pt-BR/common.json index 5106a708a6..6a3a0d7a2b 100644 --- a/src/i18n/locales/pt-BR/common.json +++ b/src/i18n/locales/pt-BR/common.json @@ -5,8 +5,8 @@ }, "number_format": { "thousand_suffix": "k", - "million_suffix": "mi", - "billion_suffix": "bi" + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Bem-vindo(a), {{name}}! Você tem {{count}} notificações.", "items": { diff --git a/src/i18n/locales/tr/common.json b/src/i18n/locales/tr/common.json index 961ad6c68a..b8765b744a 100644 --- a/src/i18n/locales/tr/common.json +++ b/src/i18n/locales/tr/common.json @@ -4,9 +4,9 @@ "description": "Düzenleyicinizde tam bir AI geliştirici ekibi." }, "number_format": { - "thousand_suffix": "B", - "million_suffix": "M", - "billion_suffix": "Mr" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Hoş geldiniz, {{name}}! {{count}} bildiriminiz var.", "items": { diff --git a/src/i18n/locales/vi/common.json b/src/i18n/locales/vi/common.json index bd9656ac9f..7cbea848ce 100644 --- a/src/i18n/locales/vi/common.json +++ b/src/i18n/locales/vi/common.json @@ -5,8 +5,8 @@ }, "number_format": { "thousand_suffix": "k", - "million_suffix": "tr", - "billion_suffix": "tỷ" + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "Chào mừng, {{name}}! Bạn có {{count}} thông báo.", "items": { diff --git a/src/i18n/locales/zh-CN/common.json b/src/i18n/locales/zh-CN/common.json index 0bd4e740c5..591958aab3 100644 --- a/src/i18n/locales/zh-CN/common.json +++ b/src/i18n/locales/zh-CN/common.json @@ -4,9 +4,9 @@ "description": "您编辑器中的完整AI开发团队。" }, "number_format": { - "thousand_suffix": "千", - "million_suffix": "百万", - "billion_suffix": "十亿" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "欢迎,{{name}}!您有 {{count}} 条通知。", "items": { diff --git a/src/i18n/locales/zh-TW/common.json b/src/i18n/locales/zh-TW/common.json index 29895eaba4..b2059d5547 100644 --- a/src/i18n/locales/zh-TW/common.json +++ b/src/i18n/locales/zh-TW/common.json @@ -4,9 +4,9 @@ "description": "您編輯器中的完整AI開發團隊。" }, "number_format": { - "thousand_suffix": "千", - "million_suffix": "百萬", - "billion_suffix": "十億" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" }, "welcome": "歡迎,{{name}}!您有 {{count}} 條通知。", "items": { diff --git a/webview-ui/src/i18n/locales/ca/common.json b/webview-ui/src/i18n/locales/ca/common.json index bdbe1d188a..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/ca/common.json +++ b/webview-ui/src/i18n/locales/ca/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "mil", - "million_suffix": "M", - "billion_suffix": "MM" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/de/common.json b/webview-ui/src/i18n/locales/de/common.json index ba8ee29b2d..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/de/common.json +++ b/webview-ui/src/i18n/locales/de/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "Tsd.", - "million_suffix": "Mio.", - "billion_suffix": "Mrd." + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/es/common.json b/webview-ui/src/i18n/locales/es/common.json index f0ed131857..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/es/common.json +++ b/webview-ui/src/i18n/locales/es/common.json @@ -1,7 +1,7 @@ { "number_format": { "thousand_suffix": "k", - "million_suffix": "M", - "billion_suffix": "MM" + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/fr/common.json b/webview-ui/src/i18n/locales/fr/common.json index e55e852b3f..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/fr/common.json +++ b/webview-ui/src/i18n/locales/fr/common.json @@ -1,7 +1,7 @@ { "number_format": { "thousand_suffix": "k", - "million_suffix": "M", - "billion_suffix": "Md" + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/hi/common.json b/webview-ui/src/i18n/locales/hi/common.json index b1a651ba2e..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/hi/common.json +++ b/webview-ui/src/i18n/locales/hi/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "ह", - "million_suffix": "लाख", - "billion_suffix": "अरब" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/it/common.json b/webview-ui/src/i18n/locales/it/common.json index c010b11956..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/it/common.json +++ b/webview-ui/src/i18n/locales/it/common.json @@ -1,7 +1,7 @@ { "number_format": { "thousand_suffix": "k", - "million_suffix": "Mln", - "billion_suffix": "Mld" + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/ja/common.json b/webview-ui/src/i18n/locales/ja/common.json index b76d0c03a9..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/ja/common.json +++ b/webview-ui/src/i18n/locales/ja/common.json @@ -1,7 +1,7 @@ { "number_format": { "thousand_suffix": "k", - "million_suffix": "M", - "billion_suffix": "B" + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/ko/common.json b/webview-ui/src/i18n/locales/ko/common.json index 4ee4c67efd..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/ko/common.json +++ b/webview-ui/src/i18n/locales/ko/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "천", - "million_suffix": "백만", - "billion_suffix": "십억" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/pl/common.json b/webview-ui/src/i18n/locales/pl/common.json index e020754bf2..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/pl/common.json +++ b/webview-ui/src/i18n/locales/pl/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "tys.", - "million_suffix": "mln", - "billion_suffix": "mld" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/pt-BR/common.json b/webview-ui/src/i18n/locales/pt-BR/common.json index a003f6ee91..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/pt-BR/common.json +++ b/webview-ui/src/i18n/locales/pt-BR/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "mil", - "million_suffix": "mi", - "billion_suffix": "bi" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/tr/common.json b/webview-ui/src/i18n/locales/tr/common.json index 9bd908ea14..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/tr/common.json +++ b/webview-ui/src/i18n/locales/tr/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "B", - "million_suffix": "Mn", - "billion_suffix": "Mr" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/vi/common.json b/webview-ui/src/i18n/locales/vi/common.json index dc5650760a..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/vi/common.json +++ b/webview-ui/src/i18n/locales/vi/common.json @@ -1,7 +1,7 @@ { "number_format": { "thousand_suffix": "k", - "million_suffix": "tr", - "billion_suffix": "tỷ" + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/zh-CN/common.json b/webview-ui/src/i18n/locales/zh-CN/common.json index a1d34b0059..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/zh-CN/common.json +++ b/webview-ui/src/i18n/locales/zh-CN/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "千", - "million_suffix": "百万", - "billion_suffix": "十亿" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } } diff --git a/webview-ui/src/i18n/locales/zh-TW/common.json b/webview-ui/src/i18n/locales/zh-TW/common.json index 40f2534e47..2a10002acb 100644 --- a/webview-ui/src/i18n/locales/zh-TW/common.json +++ b/webview-ui/src/i18n/locales/zh-TW/common.json @@ -1,7 +1,7 @@ { "number_format": { - "thousand_suffix": "千", - "million_suffix": "百萬", - "billion_suffix": "十億" + "thousand_suffix": "k", + "million_suffix": "m", + "billion_suffix": "b" } }