微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – 使用完整密钥列出R18 I18n字符串

我希望能够生成包含完整键的语言环境的所有I18n键和值的完整列表.换句话说,如果我有这些文件

配置/语言环境/ en.yml

en:
  greeting:
    polite: "Good evening"
    informal: "What's up?"

配置/语言环境/ second.en.yml

en:
  farewell:
    polite: "Goodbye"
    informal: "Later"

我想要以下输出

greeting.polite: "Good evening"
greeting.informal: "What's up?"
farewell.polite: "Goodbye"
farewell.informal: "Later"

我该怎么做呢?

解决方法

尼克戈尔比科夫的答案是一个开始,但没有按照问题中的描述发出我想要的输出.我最终编写了自己的脚本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)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐