我希望能够为包含完整密钥的语言环境生成所有I18n键和值的完整列表。换句话说,如果我有这些文件:
config/locales/en.yml
en:
greeting:
polite: "Good evening"
informal: "What's up?"
config/locales/second.en.yml
en:
farewell:
polite: "Goodbye"
informal: "Later"
我想要以下输出:
greeting.polite: "Good evening"
greeting.informal: "What's up?"
farewell.polite: "Goodbye"
farewell.informal: "Later"
我该怎么做?
答案 0 :(得分:4)
Nick Gorbikoff的回答是一个开始,但没有按照问题中的描述发出我想要的输出。我最终编写了自己的脚本get_translations
来执行此操作,如下所示。
#!/usr/bin/env ruby
require 'pp'
require './config/environment.rb'
def print_translations(prefix, x)
if x.is_a? Hash
if (not prefix.empty?)
prefix += "."
end
x.each {|key, value|
print_translations(prefix + key.to_s, value)
}
else
print prefix + ": "
PP.singleline_pp x
puts ""
end
end
I18n.translate(:foo)
translations_hash = I18n.backend.send(:translations)
print_translations("", translations_hash)
答案 1 :(得分:3)
一旦加载到内存中,它只是一个很大的哈希,你可以按照你想要的任何方式格式化。要访问它,您可以这样做:
I18n.backend.send(:translations)[:en]
获取可用翻译列表(由您创建或者通过插件和宝石创建)
I18n.available_locales
答案 2 :(得分:0)
这是您可以用来实现所需输出的方法的工作版本
def print_tr(data,prefix="")
if data.kind_of?(Hash)
data.each do |key,value|
print_tr(value, prefix.empty? ? key : "#{prefix}.#{key}")
end
else
puts "#{prefix}: #{data}"
end
end
用法:
$ data = YAML.load_file('config/locales/second.en.yml')
$ print_tr(data)
=>
en.farewell.polite: "Goodbye"
en.farewell.informal: "Later"