Module: Tolk::Sync::ClassMethods

Defined in:
lib/tolk/sync.rb

Instance Method Summary collapse

Instance Method Details

#flat_hash(data, prefix = '', result = {}) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/tolk/sync.rb', line 34

def flat_hash(data, prefix = '', result = {})
  data.each do |key, value|
    current_prefix = prefix.present? ? "#{prefix}.#{key}" : key

    if !value.is_a?(Hash) || Tolk::Locale.pluralization_data?(value)
      result[current_prefix] = value.respond_to?(:stringify_keys) ? value.stringify_keys : value
    else
      flat_hash(value, current_prefix, result)
    end
  end

  result.stringify_keys
end

#load_translationsObject



12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/tolk/sync.rb', line 12

def load_translations
  if Tolk.config.exclude_gems_token
    # bypass default init_translations
    I18n.backend.reload! if I18n.backend.initialized?
    I18n.backend.instance_variable_set(:@initialized, true)
    I18n.backend.load_translations(Dir[Rails.root.join('config', 'locales', "*.{rb,yml}")])
  else
    I18n.backend.send :init_translations unless I18n.backend.initialized? # force load 
  end
  translations = flat_hash(I18n.backend.send(:translations)[primary_locale.name.to_sym])
  filter_out_i18n_keys(translations.merge(read_primary_locale_file))
end

#read_primary_locale_fileObject



25
26
27
28
29
30
31
32
# File 'lib/tolk/sync.rb', line 25

def read_primary_locale_file
  primary_file = "#{self.locales_config_path}/#{self.primary_locale_name}.yml"
  if File.exists?(primary_file)
    flat_hash(Tolk::YAML.load_file(primary_file)[self.primary_locale_name])
  else
    {}
  end
end

#sync!Object



8
9
10
# File 'lib/tolk/sync.rb', line 8

def sync!
  sync_phrases(load_translations)
end