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

I18n ActiveRecord backend

Results 9 i18n-active_record issues
Sort by recently updated
recently updated
newest added

In my usage of this gem, I ran into a situation where I'd like two very related applications that are organizationally distinct but part of the same domain (e.g. public...

Hi, I'm just wondering if there is any way to create missing translations for all `config.i18n.available_locales`, instead of only the requested one ?

feature request

Hi there, I am using [Missing Module](https://github.com/svenfuchs/i18n-active_record/blob/master/lib/i18n/backend/active_record/missing.rb), everything works well without default option, like this ```ruby I18n.t('hi') ``` however I need to save as well in translations table, missing translations...

feature request

We get an error with rails 7.0.3.1. Downgrading to rails 7.0.3 fixes the error. The error is: `Psych::DisallowedClass: Tried to load unspecified class: Symbol` steps to reproduce: ``` errors =...

Closes #82 First I order the translations so that a parent element would be the last result. This makes sure that when checking the key of the first result it...

In my db I had the following two keys with a value: ```ruby "activerecord.models.resource.name" "activerecord.models.resource.name.one" ``` This was my own fault and had nothing to do with this gem. But...

Current implementation of the StoreProc doesn't support modern versions of ruby. This needs to be fixed

I like the idea of this gem and would like to know if the translation cache is invalidated across the multi threads? For example: Translation for key `hello` is `world`...