Class: Tr8n::TranslationKey

Inherits:
Base
  • Object
show all
Defined in:
lib/tr8n/translation_key.rb

Instance Attribute Summary

Attributes inherited from Base

#attributes

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

attributes, belongs_to, has_many, hash_value, #hash_value, #method_missing, #to_hash, #update_attributes

Constructor Details

#initialize(attrs = {}) ⇒ TranslationKey

Returns a new instance of TranslationKey.



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/tr8n/translation_key.rb', line 40

def initialize(attrs = {})
  super

  self.attributes[:key] ||= self.class.generate_key(label, description)
  self.attributes[:locale] ||= Tr8n.session.block_options[:locale] || (application ? application.default_locale : Tr8n.config.default_locale)
  self.attributes[:language] ||= application ? application.language(locale) : Tr8n.config.default_language
  self.attributes[:translations] = {}

  if hash_value(attrs, :translations)
    hash_value(attrs, :translations).each do |locale, translations|
      language = application.language(locale)

      self.attributes[:translations][locale] ||= []

      translations.each do |translation_hash|
        translation = Tr8n::Translation.new(translation_hash.merge(:translation_key => self, :locale => language.locale))
        self.attributes[:translations][locale] << translation
      end
    end
  end
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Tr8n::Base

Class Method Details

.generate_key(label, desc = '') ⇒ Object



62
63
64
# File 'lib/tr8n/translation_key.rb', line 62

def self.generate_key(label, desc = '')
  "#{Digest::MD5.hexdigest("#{label};;;#{desc}")}~"[0..-2].to_s
end

.substitute_tokens(label, token_values, language, options = {}) ⇒ Object

if the translations engine is disabled



161
162
163
164
# File 'lib/tr8n/translation_key.rb', line 161

def self.substitute_tokens(label, token_values, language, options = {})
  return label.to_s if options[:skip_substitution] 
  Tr8n::TranslationKey.new(:label => label.to_s).substitute_tokens(label.to_s, token_values, language, options)
end

Instance Method Details

#data_tokensObject

Returns an array of data tokens from the translation key



143
144
145
146
147
148
# File 'lib/tr8n/translation_key.rb', line 143

def data_tokens
  @data_tokens ||= begin
    dt = Tr8n::Tokenizers::Data.new(label)
    dt.tokens
  end
end

#data_tokens_names_mapObject



150
151
152
153
154
155
156
157
158
# File 'lib/tr8n/translation_key.rb', line 150

def data_tokens_names_map
  @data_tokens_names_map ||= begin
    map = {}
    data_tokens.each do |token|
      map[token.name] = token
    end
    map
  end
end

#decoration_tokensObject

Returns an array of decoration tokens from the translation key



134
135
136
137
138
139
140
# File 'lib/tr8n/translation_key.rb', line 134

def decoration_tokens
  @decoration_tokens ||= begin
    dt = Tr8n::Tokenizers::Decoration.new(label)
    dt.parse
    dt.tokens
  end
end

#find_first_valid_translation(language, token_values) ⇒ Object



100
101
102
103
104
105
106
107
108
109
110
# File 'lib/tr8n/translation_key.rb', line 100

def find_first_valid_translation(language, token_values)
  translations = translations_for_language(language)

  translations.sort! { |x,y| x.precedence <=> y.precedence }

  translations.each do |translation|
    return translation if translation.matches_rules?(token_values)
  end
  
  nil
end

#has_translations_for_language?(language) ⇒ Boolean

Returns:

  • (Boolean)


66
67
68
# File 'lib/tr8n/translation_key.rb', line 66

def has_translations_for_language?(language)
  translations and translations[language.locale] and translations[language.locale].any?
end

#set_application(app) ⇒ Object

switches to a new application



80
81
82
83
84
85
86
87
88
89
# File 'lib/tr8n/translation_key.rb', line 80

def set_application(app)
  self.application = app
  translations.values.each do |locale_translations|
    locale_translations.each do |translation|
      translation.translation_key = self
      translation.language = self.application.language(translation.locale)
    end
  end
  self
end

#set_translations(locale, translations) ⇒ Object



70
71
72
73
74
75
76
77
# File 'lib/tr8n/translation_key.rb', line 70

def set_translations(locale, translations)
  translations.each do |translation|
    translation.locale ||= locale
    translation.translation_key = self
    translation.language = self.application.language(translation.locale)
  end
  self.translations[locale] = translations
end

#substitute_tokens(translated_label, token_values, language, options = {}) ⇒ Object



166
167
168
169
170
171
172
173
174
175
176
# File 'lib/tr8n/translation_key.rb', line 166

def substitute_tokens(translated_label, token_values, language, options = {})
  if Tr8n::Tokenizers::Data.required?(translated_label)
    translated_label = Tr8n::Tokenizers::Data.new(translated_label, token_values, :allowed_tokens => data_tokens_names_map).substitute(language, options)
  end

  if Tr8n::Tokenizers::Decoration.required?(translated_label)
    translated_label = Tr8n::Tokenizers::Decoration.new(translated_label, token_values, :allowed_tokens => decoration_tokens).substitute
  end

  translated_label
end

#translate(language, token_values = {}, options = {}) ⇒ Object



112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/tr8n/translation_key.rb', line 112

def translate(language, token_values = {}, options = {})
  if Tr8n.config.disabled? or language.locale == self.locale
    return substitute_tokens(label, token_values, language, options.merge(:fallback => false))
  end

  translation = find_first_valid_translation(language, token_values)
  decorator = Tr8n::Decorators::Base.decorator

  if translation
    translated_label = substitute_tokens(translation.label, token_values, translation.language, options)
    return decorator.decorate(translated_label, translation.language, language, self, options)
  end

  translated_label = substitute_tokens(label, token_values, self.language, options)
  decorator.decorate(translated_label, self.language, language, self, options)
end

#translations_for_language(language) ⇒ Object

Translation Methods



95
96
97
98
# File 'lib/tr8n/translation_key.rb', line 95

def translations_for_language(language)
  return [] unless self.translations
  self.translations[language.locale] || []
end