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 was hoping to write a quick script to get some stats about our i18n keys, but there seems to be a bug in the `--format` option: I can't seem...

question

I think it's worth pointing out in the documentation that i18n-tasks works with the free API from Deepl. Not just the Pro account, which costs a monthly fee and a...

Hi! Thank you for a cool gem 😆 I made a few tweaks to the templates to make comment-ining easier and the code style a little more consistent 🎨 Please...

i18n-tasks (1.0.12) and easy_translate (0.5.1) with Google Translate API (credit card added), only half of my language files seem to get translated: ``` $ bundle exec i18n-tasks add-missing $ bundle...

Using a dynamic key in a use hint works for addressing dynamic keys for the `unused` task but it creates a missing key for the `missing` task e.g. ``` #...

When we have a `default` localization format we can use it without needing to pass the key: ```yml en: time: formats: default: '%m/%d/%Y %-I:%M%P %Z' ``` Then: ```rb l(record.created_at) ```...

when I'm working with the missing keys or any other command that is available on this gem, I just able to see output on command line. but when I have...

with the latest i18n-tasks gem, defining those keys ```yml ja: foo: one: いち ``` ```yml en: foo: one: One ``` then `others` are detected as missing, even when it's not...

bug

This fixes #552 if and only if https://github.com/ruby-i18n/i18n/pull/688 or an equivalent is merged for the i18n gem. Otherwise escaping the offending interpolations does not appease the reserved keyword check. This...

The use of the locale key `activerecord.attributes.user.password` is not detected even if it is used in a form helper like: ``` ``` Is this expected? is it a limitation of...