# frozen_string_literal: true module Gitlab module I18n extend self # Languages with less then 2% of available translations will not # be available in the UI. # https://gitlab.com/gitlab-org/gitlab/-/issues/221012 NOT_AVAILABLE_IN_UI = %w[ fil_PH pl_PL nl_NL id_ID cs_CZ bg eo gl_ES ].freeze AVAILABLE_LANGUAGES = { 'bg' => 'Bulgarian - български', 'cs_CZ' => 'Czech - čeština', 'de' => 'German - Deutsch', 'en' => 'English', 'eo' => 'Esperanto - esperanto', 'es' => 'Spanish - español', 'fil_PH' => 'Filipino', 'fr' => 'French - français', 'gl_ES' => 'Galician - galego', 'id_ID' => 'Indonesian - Bahasa Indonesia', 'it' => 'Italian - italiano', 'ja' => 'Japanese - 日本語', 'ko' => 'Korean - 한국어', 'nl_NL' => 'Dutch - Nederlands', 'pl_PL' => 'Polish - polski', 'pt_BR' => 'Portuguese (Brazil) - português (Brasil)', 'ru' => 'Russian - Русский', 'tr_TR' => 'Turkish - Türkçe', 'uk' => 'Ukrainian - українська', 'zh_CN' => 'Chinese, Simplified - 简体中文', 'zh_HK' => 'Chinese, Traditional (Hong Kong) - 繁體中文 (香港)', 'zh_TW' => 'Chinese, Traditional (Taiwan) - 繁體中文 (台灣)' }.freeze def selectable_locales AVAILABLE_LANGUAGES.reject { |key, _value| NOT_AVAILABLE_IN_UI.include? key } end def available_locales AVAILABLE_LANGUAGES.keys end def locale FastGettext.locale end 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 FastGettext.set_locale(::I18n.default_locale) ::I18n.locale = ::I18n.default_locale end 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 end end