Sha256: 026daecdef5442db08f0ec9970c7e7a677e805b18e4c23ec104e671e89cd5a5a

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

require "protected_attributes" if ActiveRecord::VERSION::MAJOR >= 4

class TranslationKey < ActiveRecord::Base
  has_many :translations, :class_name => 'TranslationText', :dependent => :destroy

  accepts_nested_attributes_for :translations, :allow_destroy => true

  validates_uniqueness_of :key
  validates_presence_of :key

  attr_accessible :key, :translations, :translations_attributes

  before_save :normalize_newlines

  def self.translation(key, locale)
    return unless translation_key = find_by_key(newline_normalize(key))
    return unless translation_text = translation_key.translations.find_by_locale(locale)
    translation_text.text
  end

  def self.available_locales
    @@available_locales ||= begin
      if ActiveRecord::VERSION::MAJOR >= 3
        TranslationText.group(:locale).count
      else
        TranslationText.count(:group=>:locale)
      end.keys.sort
    end
  end

  protected

  def self.newline_normalize(s)
    s.to_s.gsub("\r\n", "\n")
  end

  def normalize_newlines
    self.key = self.class.newline_normalize(key)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fast_gettext-0.9.2 lib/fast_gettext/translation_repository/db_models/translation_key.rb
fast_gettext-0.9.1 lib/fast_gettext/translation_repository/db_models/translation_key.rb
fast_gettext-0.9.0 lib/fast_gettext/translation_repository/db_models/translation_key.rb
fast_gettext-0.8.1 lib/fast_gettext/translation_repository/db_models/translation_key.rb
fast_gettext-0.8.0 lib/fast_gettext/translation_repository/db_models/translation_key.rb