class FastGettext::TranslationRepository::Base
Responsibility:
- base for all repositories - fallback as empty repository, that cannot translate anything but does not crash
Attributes
name[R]
options[R]
Public Class Methods
new(name, options = {})
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 10 def initialize(name, options = {}) @name = name @options = options end
Public Instance Methods
[](key)
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 23 def [](key) current_translations[key] end
available_locales()
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 19 def available_locales [] end
plural(*keys)
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 27 def plural(*keys) current_translations.plural(*keys) end
pluralisation_rule()
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 15 def pluralisation_rule nil end
reload()
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 31 def reload true end
Protected Instance Methods
current_translations()
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 37 def current_translations MoFile.empty end
find_files_in_locale_folders(relative_file_path, path) { |locale, file| ... }
click to toggle source
# File lib/fast_gettext/translation_repository/base.rb, line 41 def find_files_in_locale_folders(relative_file_path, path) path ||= "locale" raise "path #{path} could not be found!" unless File.exist?(path) @files = {} Dir[File.join(path, '*')].each do |locale_folder| next unless File.basename(locale_folder) =~ LOCALE_REX file = File.join(locale_folder, relative_file_path).untaint next unless File.exist? file locale = File.basename(locale_folder) @files[locale] = yield(locale, file) end end