Is there really no way to extract all i18n translation keys of an application?
views/pages/index.html.erb
<h1>Some content</h1>
<p><%= t('.some_translated_text') %></p>
views/pages/show.html.erb
<p><%= t('.some_other_stuff') %></p>
It would be great to have a tool that runs over the application and extracts all keys e.g.:
generic:
views:
pages:
index:
some_translated_text: "missing"
show:
some_other_stuff: "missing"
I really can't believe nobody has written such an extraction tool until now...
Thanks for your help.
Update:
I know this i18n-missing_translations but hope there is an easier way.