class FastGettext::TranslationRepository::Po

Responsibility:

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

Protected Instance Methods

find_and_store_files(name, options) click to toggle source
# File lib/fast_gettext/translation_repository/po.rb, line 10
def find_and_store_files(name, options)
  require 'fast_gettext/po_file'
  find_files_in_locale_folders("#{name}.po", options[:path]) do |locale,file|
    PoFile.new(file, options)
  end
end