2017-04-13 00:23:02 -04:00
|
|
|
module Gitlab
|
|
|
|
module I18n
|
2017-05-03 00:36:36 -04:00
|
|
|
extend self
|
|
|
|
|
2017-04-20 00:19:24 -04:00
|
|
|
AVAILABLE_LANGUAGES = {
|
2017-05-04 19:44:19 -04:00
|
|
|
'en' => 'English',
|
|
|
|
'es' => 'Español',
|
2017-05-23 08:31:09 -04:00
|
|
|
'de' => 'Deutsch',
|
2017-06-15 17:08:37 -04:00
|
|
|
'fr' => 'Français',
|
2017-07-24 03:33:09 -04:00
|
|
|
'pt_BR' => 'Português (Brasil)',
|
2017-05-26 23:34:55 -04:00
|
|
|
'zh_CN' => '简体中文',
|
2017-07-24 03:33:09 -04:00
|
|
|
'zh_HK' => '繁體中文 (香港)',
|
|
|
|
'zh_TW' => '繁體中文 (臺灣)',
|
2017-06-25 22:15:44 -04:00
|
|
|
'bg' => 'български',
|
2017-07-09 22:12:59 -04:00
|
|
|
'ru' => 'Русский',
|
2017-06-29 21:58:47 -04:00
|
|
|
'eo' => 'Esperanto',
|
2017-07-19 06:47:41 -04:00
|
|
|
'it' => 'Italiano',
|
2017-07-09 22:33:19 -04:00
|
|
|
'uk' => 'Українська',
|
2017-08-07 05:19:41 -04:00
|
|
|
'ja' => '日本語',
|
2017-09-18 11:13:47 -04:00
|
|
|
'ko' => '한국어',
|
|
|
|
'nl_NL' => 'Nederlands'
|
2017-04-20 00:19:24 -04:00
|
|
|
}.freeze
|
2017-05-03 00:36:36 -04:00
|
|
|
|
|
|
|
def available_locales
|
|
|
|
AVAILABLE_LANGUAGES.keys
|
|
|
|
end
|
2017-05-03 22:05:38 -04:00
|
|
|
|
2017-05-25 11:22:45 -04:00
|
|
|
def locale
|
|
|
|
FastGettext.locale
|
2017-05-03 22:05:38 -04:00
|
|
|
end
|
|
|
|
|
2017-05-25 11:22:45 -04:00
|
|
|
def locale=(locale_string)
|
|
|
|
requested_locale = locale_string || ::I18n.default_locale
|
|
|
|
new_locale = FastGettext.set_locale(requested_locale)
|
|
|
|
::I18n.locale = new_locale
|
|
|
|
end
|
|
|
|
|
|
|
|
def use_default_locale
|
2017-05-04 19:44:19 -04:00
|
|
|
FastGettext.set_locale(::I18n.default_locale)
|
2017-05-03 22:05:38 -04:00
|
|
|
::I18n.locale = ::I18n.default_locale
|
|
|
|
end
|
2017-05-25 11:22:45 -04:00
|
|
|
|
|
|
|
def with_locale(locale_string)
|
|
|
|
original_locale = locale
|
|
|
|
|
|
|
|
self.locale = locale_string
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
self.locale = original_locale
|
|
|
|
end
|
|
|
|
|
|
|
|
def with_user_locale(user, &block)
|
|
|
|
with_locale(user&.preferred_language, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def with_default_locale(&block)
|
|
|
|
with_locale(::I18n.default_locale, &block)
|
|
|
|
end
|
2017-04-13 00:23:02 -04:00
|
|
|
end
|
|
|
|
end
|