在YAML中,如何为具有子项的项目定义值?

时间:2011-04-23 02:17:18

标签: ruby-on-rails yaml

如何让YAML允许我将值The Cars提供给cars

en:
  cars: The Cars   #this causes a syntax error. If I remove 'The Cars', it works fine.
    fiat: Fiat
    bmw: Beemer

我想要cars的值的原因是我希望能够这样做:

t('cars') # => The Cars
t('cars.fiat') # => Fiat

1 个答案:

答案 0 :(得分:2)

您正在定义一个Hash,cars的值是一个哈希,其键是fiat和bmw