i18n-tasks icon indicating copy to clipboard operation
i18n-tasks copied to clipboard

Manage translation and localization with static analysis, for Ruby i18n

Results 80 i18n-tasks issues
Sort by recently updated
recently updated
newest added

I am in a Rails 7 app with `i18n-tasks (1.0.11)` in my Gemfile Lock. and I am running `i18n-tasks remove-unused --keep-order` After running this, my app fails with `translation missing:...

Closes #468 This adds the `-p` pattern option to the `missing`, `add-missing`, and `translate-missing` commands.

Currently, `translate-missing` can only translate _all_ of the missing messages in your locales at once. When translating a lot of messages (like when adding a new language), I prefer to...

A project I'm working on uses dashes in locale filenames (i.e. `user-en.yml` instead of `user.en.yml`), which was causing `i18n-tasks` to not be able to write to the files properly (even...

I'm using the [i18n-js](https://github.com/fnando/i18n) gem/package to use the translations also in JS and till now I don't really understand which patterns are recognized by the scanner, I was always getting...

The HAML provides a method to return the precompiled content which is literally Ruby code. We can use it with the Ruby AST scanner to parse the HAML templates. ```...

With ``` I18n.t('test', default: { one: '1', other: '2' }) ``` Run `i18n-task add-missing` ### Excepted In `locales/en.yml` ``` test: :one: '1' :other: '2' ``` ### Actual ``` test: Test...

When running `i18n-tasks translate-missing` it would be great if there were an option to annotate the resulting values with a comment like `# translated by google` so that the user...

I would like setup following: - I have 3 user interfaces in my app: Admin, Teacher, Client - Admin and Teacher is English only - Client is multiple languages I...