作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
下面的代码是 number_to_human_size
的正确格式吗?我将它们放在五个 [en:, es:, de:, it:, fr:] .yml 文件下。
storage_units:
format: "%n %u"
units:
byte:
one: "Byte"
other: "Bytes"
kb: "KB"
mb: "MB"
gb: "GB"
tb: "TB"
我有以下引用
<%= number_to_human_size(@game.downloadsize, :precision => 2, :locale=>I18n.locale) %>
我收到错误消息:
can not load translations from C:/Documents and Settings/rajg/antixdiscoveraws/config/locales/de.yml, expected it to return a hash, but does not
非常感谢任何帮助。
最佳答案
尝试缩进格式:
storage_units:
format: "%n %u"
units:
byte:
one: "Byte"
other: "Bytes"
kb: "KB"
mb: "MB"
gb: "GB"
tb: "TB"
关于ruby-on-rails - 如何设置存储单元 `number_to_human_size` 的 yml 文件格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13624563/
下面的代码是 number_to_human_size 的正确格式吗?我将它们放在五个 [en:, es:, de:, it:, fr:] .yml 文件下。 storage_units: for
我是一名优秀的程序员,十分优秀!