Skip to content

Releases: glebm/i18n-tasks

v0.8.3

20 Apr 20:17
Compare
Choose a tag to compare

Fix regression: ActiveSupport < 4 support #143.

v0.8.2

02 Apr 21:25
Compare
Choose a tag to compare
  • Fix failure on nil values in the data config #142.

v0.8.1

02 Apr 21:13
Compare
Choose a tag to compare
  • The default config file now excludes app/assets/images and app/assets/fonts. Add *.otf to ignored extensions.
  • If an error message occurs when scanning, the error message now includes the filename #141.

v0.8.0

31 Mar 19:11
Compare
Choose a tag to compare
  • 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

31 Mar 19:12
Compare
Choose a tag to compare
  • 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

31 Mar 19:12
Compare
Choose a tag to compare
  • Handle relative keys in controllers nested in modules by Alexander Tipugin. #128.
  • Only write files that changed #125.
  • Allow [] in the non-strict scanner pattern #127.

v0.7.11

31 Mar 19:12
Compare
Choose a tag to compare
  • Set slop dependency to 3.5 to ensure Ruby 1.9 compatibility (#121).
    MRI 1.9 EOL is February 23, 2015.
    We will support 1.9 until rbx and jruby support 2.0.

v0.7.10

31 Mar 19:12
Compare
Choose a tag to compare
  • Support relative keys in controller action with argument

v0.7.9

31 Mar 19:13
Compare
Choose a tag to compare

Release notes prior to this one are available in CHANGES.md

v0.3.5

28 Feb 09:48
Compare
Choose a tag to compare

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 to en.

  • 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