Releases: glebm/i18n-tasks
Releases · glebm/i18n-tasks
v0.8.3
v0.8.2
v0.8.1
v0.8.0
- Parse command line arguments with
optparse
. Remove dependency on Slop.
Simplified commands DSL: options are mostly passed directly to optparse. search.relative_roots
default changed from from%w(app/views)
to
%w(app/views app/controllers app/helpers app/presenters)
.add-missing
now adds keys detected in source to all locales (previously just base) #134.- The default spec template no long requires
spec_helper
by default Daniel Levenson #135. search.exclude
now appends to and not overrides the default exclude list. More extensions excluded by default:
*.css, *.sass, *.scss, *.less, *.yml, and *.json. #137.
v0.7.13
- Fix relative keys when controller name consists of more than one word by Yuji Nakayama #132.
- Support keys with UTF8 word characters in the name. #133.
- Change missing report column title from "Details" to "Value in other locales or source", display the locale #130.
v0.7.12
v0.7.11
v0.7.10
v0.7.9
- Support relative keys in Rails controller actions by Jessie A. Young. #46.
- Minor fixes
Release notes prior to this one are available in CHANGES.md
v0.3.5
Changes from v0.3.0 to v0.3.5:
-
config.locales
is now picked up by default from paths to the data files.base_locale
defaults toen
. -
Tasks that accept locales now also accept them as the first argument(s):
i18n-tasks missing es fr # same as i18n-tasks missing -l es,fr # same as i18n-tasks missing -l es -l fr