I18n tasks to introspect translations
I just shared i18n-tasks. Rails I18n tasks to find missing / unused translations and more. Works with slim / coffee / haml etc. Provides these tasks:
i18n:missingtask shows all the keys that have not been translated yeti18n:unusedtask shows potentially unused translationsi18n:prefilltask normalizes locale files, and adds missing keys from base locale to others </ul>i18n:unusedwill detect pattern translations and not report them, e.g.:t 'category.' + cat.key # 'category.books' considered used t "category.#{cat.key}" # also works
Post a comment