Sha256: af395d9df26e2b593af5e9383ade81e57a57546f3d319d50e081a4def71a99c0

Contents?: true

Size: 1.23 KB

Versions: 7

Compression:

Stored size: 1.23 KB

Contents

module FastGettext
  module TranslationRepository
    # Responsibility:
    #  - base for all repositories
    #  - fallback as empty repository, that cannot translate anything but does not crash
    class Base

      attr_reader :name, :options

      def initialize(name,options={})
        @name = name
        @options = options
      end

      def pluralisation_rule
        nil
      end

      def available_locales
        []
      end

      def [](key)
        current_translations[key]
      end

      def plural(*keys)
        current_translations.plural(*keys)
      end

      def reload
        true
      end

      protected

      def current_translations
        MoFile.empty
      end

      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
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fast_gettext-1.8.0 lib/fast_gettext/translation_repository/base.rb
fast_gettext-1.7.0 lib/fast_gettext/translation_repository/base.rb
fast_gettext-1.6.0 lib/fast_gettext/translation_repository/base.rb
fast_gettext-1.5.1 lib/fast_gettext/translation_repository/base.rb
fast_gettext-1.5.0 lib/fast_gettext/translation_repository/base.rb
fast_gettext-1.4.1 lib/fast_gettext/translation_repository/base.rb
fast_gettext-1.4.0 lib/fast_gettext/translation_repository/base.rb