README.md in i18n-tasks-0.1.2 vs README.md in i18n-tasks-0.1.3

- old
+ new

@@ -5,23 +5,23 @@ ![i18n-missing-screenshot](https://raw.github.com/glebm/i18n-tasks/master/doc/img/i18n-tasks.png "rake i18n:missing output screenshot") Use `rake -T i18n` to get the list of tasks with descriptions. There are 3 tasks available at the moment: -* `i18n:missing` task shows all the keys that have not been translated yet *([source](./blob/master/lib/i18n/tasks/missing.rb))* -* `i18n:prefill` task normalizes locale files, and adds missing keys from base locale to others *([source](./blob/master/lib/i18n/tasks/prefill.rb))* -* `i18n:unused` task shows potentially unused translations *([source](./blob/master/lib/i18n/tasks/unused.rb))* +* `i18n:missing` task shows all the keys that have not been translated yet *([source](/lib/i18n/tasks/missing.rb))* +* `i18n:prefill` task normalizes locale files, and adds missing keys from base locale to others *([source](/lib/i18n/tasks/prefill.rb))* +* `i18n:unused` task shows potentially unused translations *([source](/lib/i18n/tasks/unused.rb))* The `i18n:unused` task will detect pattern translations and not report them, e.g.: ```ruby t 'category.' + category.key # 'category.arts_and_crafts' considered used t "category.#{category.key}" # also works ``` -Relative keys (`t '.title'`) are supported too. +Relative keys (`t '.title'`) are supported. Plural keys (key.one/many/other/etc) are supported. -For more examples see [the tests](./blob/master/spec/i18n_tasks_spec.rb#L43-L59). +For more examples see [the tests](/spec/i18n_tasks_spec.rb). ## Installation Simply add to Gemfile: