2019-05-02 18:17:27 -04:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2015-11-13 15:42:01 -05:00
|
|
|
|
require 'i18n/backend/pluralization'
|
|
|
|
|
|
|
|
|
|
module I18n
|
|
|
|
|
module Backend
|
|
|
|
|
class DiscourseI18n < I18n::Backend::Simple
|
2015-11-19 12:35:51 -05:00
|
|
|
|
include I18n::Backend::Fallbacks
|
2015-11-13 15:42:01 -05:00
|
|
|
|
include I18n::Backend::Pluralization
|
|
|
|
|
|
|
|
|
|
def available_locales
|
|
|
|
|
LocaleSiteSetting.supported_locales.map(&:to_sym)
|
|
|
|
|
end
|
|
|
|
|
|
2015-11-13 16:34:13 -05:00
|
|
|
|
def reload!
|
2015-12-23 12:09:18 -05:00
|
|
|
|
@pluralizers = {}
|
2015-11-13 16:34:13 -05:00
|
|
|
|
super
|
|
|
|
|
end
|
|
|
|
|
|
2015-11-13 15:42:01 -05:00
|
|
|
|
# force explicit loading
|
|
|
|
|
def load_translations(*filenames)
|
|
|
|
|
unless filenames.empty?
|
|
|
|
|
filenames.flatten.each { |filename| load_file(filename) }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-05-10 19:50:17 -04:00
|
|
|
|
def pluralize(locale, entry, count)
|
|
|
|
|
begin
|
|
|
|
|
super
|
|
|
|
|
rescue I18n::InvalidPluralizationData => e
|
|
|
|
|
raise e if I18n.fallbacks[locale] == [locale]
|
|
|
|
|
throw(:exception, e)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-11-09 19:17:07 -05:00
|
|
|
|
def self.create_search_regexp(query, as_string: false)
|
|
|
|
|
regexp = Regexp.escape(query)
|
|
|
|
|
|
|
|
|
|
regexp.gsub!(/['‘’‚‹›]/, "['‘’‚‹›]")
|
|
|
|
|
regexp.gsub!(/["“”„«»]/, '["“”„«»]')
|
|
|
|
|
regexp.gsub!(/(?:\\\.\\\.\\\.|…)/, '(?:\.\.\.|…)')
|
|
|
|
|
|
|
|
|
|
as_string ? regexp : /#{regexp}/i
|
|
|
|
|
end
|
|
|
|
|
|
2015-11-23 16:45:05 -05:00
|
|
|
|
def search(locale, query)
|
2016-02-13 17:01:05 -05:00
|
|
|
|
results = {}
|
2018-11-09 19:17:07 -05:00
|
|
|
|
regexp = self.class.create_search_regexp(query)
|
2016-02-13 17:01:05 -05:00
|
|
|
|
|
2019-05-10 19:43:48 -04:00
|
|
|
|
I18n.fallbacks[locale].each do |fallback|
|
2018-11-09 19:17:07 -05:00
|
|
|
|
find_results(regexp, results, translations[fallback])
|
2016-02-13 17:01:05 -05:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
results
|
2015-11-23 16:45:05 -05:00
|
|
|
|
end
|
|
|
|
|
|
2015-11-12 16:08:19 -05:00
|
|
|
|
protected
|
2017-02-24 05:31:21 -05:00
|
|
|
|
|
2015-11-23 16:45:05 -05:00
|
|
|
|
def find_results(regexp, results, translations, path = nil)
|
|
|
|
|
return results if translations.blank?
|
2018-06-07 01:28:18 -04:00
|
|
|
|
|
2015-11-23 16:45:05 -05:00
|
|
|
|
translations.each do |k_sym, v|
|
|
|
|
|
k = k_sym.to_s
|
|
|
|
|
key_path = path ? "#{path}.#{k}" : k
|
|
|
|
|
if v.is_a?(String)
|
2016-02-13 17:01:05 -05:00
|
|
|
|
unless results.has_key?(key_path)
|
|
|
|
|
results[key_path] = v if key_path =~ regexp || v =~ regexp
|
2015-11-23 16:45:05 -05:00
|
|
|
|
end
|
|
|
|
|
elsif v.is_a?(Hash)
|
|
|
|
|
find_results(regexp, results, v, key_path)
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-06-07 01:28:18 -04:00
|
|
|
|
results
|
|
|
|
|
end
|
2015-11-12 16:08:19 -05:00
|
|
|
|
|
2015-12-28 21:31:23 -05:00
|
|
|
|
# Support interpolation and pluralization of overrides by first looking up
|
|
|
|
|
# the original translations before applying our overrides.
|
2015-11-12 16:08:19 -05:00
|
|
|
|
def lookup(locale, key, scope = [], options = {})
|
2015-12-28 21:31:23 -05:00
|
|
|
|
existing_translations = super(locale, key, scope, options)
|
2017-07-11 00:16:48 -04:00
|
|
|
|
return existing_translations if scope.is_a?(Array) && scope.include?(:models)
|
2018-06-07 01:28:18 -04:00
|
|
|
|
|
2017-07-03 01:52:27 -04:00
|
|
|
|
overrides = options.dig(:overrides, locale)
|
2018-06-07 01:28:18 -04:00
|
|
|
|
|
2017-07-11 00:16:48 -04:00
|
|
|
|
if overrides
|
2017-07-10 23:51:12 -04:00
|
|
|
|
if existing_translations && options[:count]
|
2015-12-31 10:20:19 -05:00
|
|
|
|
remapped_translations =
|
2015-12-28 21:31:23 -05:00
|
|
|
|
if existing_translations.is_a?(Hash)
|
2015-12-29 19:50:03 -05:00
|
|
|
|
Hash[existing_translations.map { |k, v| ["#{key}.#{k}", v] }]
|
2015-12-28 21:31:23 -05:00
|
|
|
|
elsif existing_translations.is_a?(String)
|
|
|
|
|
Hash[[[key, existing_translations]]]
|
|
|
|
|
end
|
|
|
|
|
|
2015-11-12 16:08:19 -05:00
|
|
|
|
result = {}
|
2015-12-28 21:31:23 -05:00
|
|
|
|
|
2017-07-03 01:52:27 -04:00
|
|
|
|
remapped_translations.merge(overrides).each do |k, v|
|
2015-11-12 16:08:19 -05:00
|
|
|
|
result[k.split('.').last.to_sym] = v if k != key && k.start_with?(key.to_s)
|
|
|
|
|
end
|
2017-07-03 01:52:27 -04:00
|
|
|
|
return result if result.size > 0
|
2015-11-12 16:08:19 -05:00
|
|
|
|
end
|
|
|
|
|
|
2017-07-03 01:52:27 -04:00
|
|
|
|
return overrides[key] if overrides[key]
|
2015-11-12 16:08:19 -05:00
|
|
|
|
end
|
|
|
|
|
|
2015-12-28 21:31:23 -05:00
|
|
|
|
existing_translations
|
2018-06-07 01:28:18 -04:00
|
|
|
|
end
|
|
|
|
|
|
2015-11-13 15:42:01 -05:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|