如何让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
答案 0 :(得分:2)
您正在定义一个Hash,cars
的值是一个哈希,其键是fiat和bmw