作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当 Rails 函数要求翻译( I18n.translate
)时,我不想分析它们的代码以获得确切的范围等。
如何为要求的每个字符串在控制台中添加调试输出?
示例:
I18n.t 'errors.messages.invalid', :scope => :active_record
# Translation for 'activerecord.errors.messages.invalid' (not) found
label(:post, :title)
# Translation for 'activerecord.attributes.post.title' not found
# Translation for 'views.labels.post.title' not found
最佳答案
这不是一个非常优雅的解决方案,但它对我有用。我创建了一个初始化程序:
require 'i18n'
if (Rails.env.development? || Rails.env.test?) && ENV['DEBUG_TRANSLATION']
module I18n
class << self
def translate_with_debug(*args)
Rails.logger.debug "Translate : #{args.inspect}"
translate_without_debug(*args)
end
alias_method_chain :translate, :debug
end
end
end
$ DEBUG_TRANSLATION=true rake cucumber
关于ruby-on-rails - 如何在 Rails 中显示所有要求的翻译字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3093624/
我是一名优秀的程序员,十分优秀!