README.md in i18n-tasks-0.9.15 vs README.md in i18n-tasks-0.9.16

- old
+ new

@@ -22,11 +22,11 @@ i18n-tasks can be used with any project using the ruby [i18n gem][i18n-gem] (default in Rails). Add i18n-tasks to the Gemfile: ```ruby -gem 'i18n-tasks', '~> 0.9.15' +gem 'i18n-tasks', '~> 0.9.16' ``` Copy the default [configuration file](#configuration): ```console @@ -221,9 +221,14 @@ Alternatively, you can enable dynamic key inference by setting `search.strict` to `false` in the config. In this case, all the dynamic parts of the key will be considered used, e.g. `cats.tenderlove.name` would not be reported as unused. Note that only one section of the key is treated as a wildcard for each string interpolation; i.e. in this example, `cats.tenderlove.special.name` *will* be reported as unused. + +#### I18n.localize + +`I18n.localize` is not supported, use [i18n-tasks-use hints](#fine-tuning). +This is because the key generated by `I18n.localize` depends on the type of the object passed in and thus cannot be inferred statically. ## Configuration Configuration is read from `config/i18n-tasks.yml` or `config/i18n-tasks.yml.erb`. Inspect the configuration with `i18n-tasks config`.