summaryrefslogtreecommitdiff
path: root/lib/gitlab/i18n.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-09-20 13:18:24 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-20 13:18:24 +0000
commit0653e08efd039a5905f3fa4f6e9cef9f5d2f799c (patch)
tree4dcc884cf6d81db44adae4aa99f8ec1233a41f55 /lib/gitlab/i18n.rb
parent744144d28e3e7fddc117924fef88de5d9674fe4c (diff)
downloadgitlab-ce-0653e08efd039a5905f3fa4f6e9cef9f5d2f799c.tar.gz
Add latest changes from gitlab-org/gitlab@14-3-stable-eev14.3.0-rc42
Diffstat (limited to 'lib/gitlab/i18n.rb')
-rw-r--r--lib/gitlab/i18n.rb20
1 files changed, 13 insertions, 7 deletions
diff --git a/lib/gitlab/i18n.rb b/lib/gitlab/i18n.rb
index 5f1b9873fee..33f2916345e 100644
--- a/lib/gitlab/i18n.rb
+++ b/lib/gitlab/i18n.rb
@@ -7,6 +7,7 @@ module Gitlab
AVAILABLE_LANGUAGES = {
'bg' => 'Bulgarian - български',
'cs_CZ' => 'Czech - čeština',
+ 'da_DK' => 'Danish - dansk',
'de' => 'German - Deutsch',
'en' => 'English',
'eo' => 'Esperanto - esperanto',
@@ -18,10 +19,12 @@ module Gitlab
'it' => 'Italian - italiano',
'ja' => 'Japanese - 日本語',
'ko' => 'Korean - 한국어',
+ 'nb_NO' => 'Norwegian (Bokmål) - norsk (bokmål)',
'nl_NL' => 'Dutch - Nederlands',
'pl_PL' => 'Polish - polski',
'pt_BR' => 'Portuguese (Brazil) - português (Brasil)',
- 'ru' => 'Russian - Русский',
+ 'ro_RO' => 'Romanian - română',
+ 'ru' => 'Russian - русский',
'tr_TR' => 'Turkish - Türkçe',
'uk' => 'Ukrainian - українська',
'zh_CN' => 'Chinese, Simplified - 简体中文',
@@ -39,25 +42,28 @@ module Gitlab
# https://gitlab.com/gitlab-org/gitlab/-/issues/18923
TRANSLATION_LEVELS = {
'bg' => 0,
- 'cs_CZ' => 1,
+ 'cs_CZ' => 0,
+ 'da_DK' => 25,
'de' => 16,
'en' => 100,
'eo' => 0,
- 'es' => 36,
+ 'es' => 42,
'fil_PH' => 0,
- 'fr' => 12,
+ 'fr' => 11,
'gl_ES' => 0,
'id_ID' => 0,
'it' => 2,
- 'ja' => 39,
+ 'ja' => 38,
'ko' => 12,
+ 'nb_NO' => 26,
'nl_NL' => 0,
'pl_PL' => 6,
- 'pt_BR' => 36,
+ 'pt_BR' => 45,
+ 'ro_RO' => 21,
'ru' => 28,
'tr_TR' => 16,
'uk' => 40,
- 'zh_CN' => 74,
+ 'zh_CN' => 94,
'zh_HK' => 2,
'zh_TW' => 3
}.freeze