Parent

Files

FastGettext::TranslationRepository::Mo

Responsibility:

- find and store mo files
- provide access to translations in mo files

Public Class Methods

new(name,options={}) click to toggle source
# File lib/fast_gettext/translation_repository/mo.rb, line 8
def initialize(name,options={})
  find_and_store_files(name,options)
  super
end

Public Instance Methods

available_locales() click to toggle source
# File lib/fast_gettext/translation_repository/mo.rb, line 13
def available_locales
  @files.keys
end
pluralisation_rule() click to toggle source
# File lib/fast_gettext/translation_repository/mo.rb, line 17
def pluralisation_rule
  current_translations.pluralisation_rule
end

Protected Instance Methods

current_translations() click to toggle source
# File lib/fast_gettext/translation_repository/mo.rb, line 30
def current_translations
  @files[FastGettext.locale] || MoFile.empty
end
find_and_store_files(name,options) click to toggle source
# File lib/fast_gettext/translation_repository/mo.rb, line 23
def find_and_store_files(name,options)
  # parse all .mo files with the right name, that sit in locale/LC_MESSAGES folders
  find_files_in_locale_folders(File.join('LC_MESSAGES',"#{name}.mo"), options[:path]) do |locale,file|
    @files[locale] = MoFile.new(file)
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.