Sha256: 60a2375972a75856d2cc37928b4aca5e893d1f79f07976071635629492779750

Contents?: true

Size: 321 Bytes

Versions: 13

Compression:

Stored size: 321 Bytes

Contents

# -*- encoding : utf-8 -*-

module Phrase
  module Formats
    class Plist < Phrase::Formats::Base
      def self.filename_for_locale(locale)
        "phrase.#{locale.name}.plist"
      end
      
      def self.locale_aware?
        true
      end

      def self.extensions
        [:plist]
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
phrase-0.4.14 lib/phrase/formats/plist.rb
phrase-0.4.13 lib/phrase/formats/plist.rb
phrase-0.4.12 lib/phrase/formats/plist.rb
phrase-0.4.11 lib/phrase/formats/plist.rb
phrase-0.4.10 lib/phrase/formats/plist.rb
phrase-0.4.9 lib/phrase/formats/plist.rb
phrase-0.4.8 lib/phrase/formats/plist.rb
phrase-0.4.7 lib/phrase/formats/plist.rb
phrase-0.4.6 lib/phrase/formats/plist.rb
phrase-0.4.5 lib/phrase/formats/plist.rb
phrase-0.4.4 lib/phrase/formats/plist.rb
phrase-0.4.3 lib/phrase/formats/plist.rb
phrase-0.4.2 lib/phrase/formats/plist.rb