我有json对象如下
{
'questions.new': 'New Question',
'questions.other.recent': 'Recent',
'questions.other.old': 'Old'
}
我需要使用Ruby on Rails方法将此数据写入.yml文件。 我的预期文件如下
en:
questions:
new: 'New Question'
other:
recent: 'Recent'
old: 'Old'
非常感谢有人帮我完成这项任务!