Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/i18n.rb')
-rw-r--r--lib/gitlab/i18n.rb26
1 files changed, 14 insertions, 12 deletions
diff --git a/lib/gitlab/i18n.rb b/lib/gitlab/i18n.rb
index 8d9f86d3232..cad0e773b05 100644
--- a/lib/gitlab/i18n.rb
+++ b/lib/gitlab/i18n.rb
@@ -25,6 +25,7 @@ module Gitlab
'pt_BR' => 'Portuguese (Brazil) - português (Brasil)',
'ro_RO' => 'Romanian - română',
'ru' => 'Russian - русский',
+ 'si_LK' => 'Sinhalese - සිංහල',
'tr_TR' => 'Turkish - Türkçe',
'uk' => 'Ukrainian - українська',
'zh_CN' => 'Chinese, Simplified - 简体中文',
@@ -43,29 +44,30 @@ module Gitlab
TRANSLATION_LEVELS = {
'bg' => 0,
'cs_CZ' => 0,
- 'da_DK' => 41,
- 'de' => 14,
+ 'da_DK' => 40,
+ 'de' => 15,
'en' => 100,
'eo' => 0,
- 'es' => 36,
+ 'es' => 37,
'fil_PH' => 0,
- 'fr' => 10,
+ 'fr' => 11,
'gl_ES' => 0,
'id_ID' => 0,
'it' => 1,
'ja' => 33,
- 'ko' => 12,
- 'nb_NO' => 27,
+ 'ko' => 11,
+ 'nb_NO' => 26,
'nl_NL' => 0,
'pl_PL' => 4,
- 'pt_BR' => 54,
- 'ro_RO' => 79,
- 'ru' => 29,
+ 'pt_BR' => 55,
+ 'ro_RO' => 100,
+ 'ru' => 28,
+ 'si_LK' => 11,
'tr_TR' => 12,
- 'uk' => 44,
- 'zh_CN' => 94,
+ 'uk' => 49,
+ 'zh_CN' => 99,
'zh_HK' => 2,
- 'zh_TW' => 2
+ 'zh_TW' => 4
}.freeze
private_constant :TRANSLATION_LEVELS