Repository for collecting Locale data for Ruby on Rails I18n as well as other interesting, Rails related I18n stuff.
I just updated to rails 4.0.2 and I'm getting this warning: [deprecated] I18n.enforce_available_locales will default to true …
ruby-on-rails ruby ruby-on-rails-4 deprecated rails-i18nI want to be able to translate pluralized strings in i18n in rails. A string can be : You have 2 …
ruby-on-rails internationalization rails-i18n pluralize pluralI have my default locale set in the environment.rb as de (German). I also see all the error messages …
ruby-on-rails ruby localization rails-i18n strftimeI am getting an "translation missing" error message from Rails 3: activerecord: notices: messages: success: create: "Something was created" models: user: …
ruby-on-rails ruby-on-rails-3 internationalization rails-i18n fallbackWorking on a rails 3 app where I want to check if a translation exists before outputting it, and if it …
ruby-on-rails internationalization rails-i18nI'm guessing that rails stores all the parsed translations yml files in a sort of array/hash. Is there a …
ruby-on-rails internationalization yaml rails-i18nWhat I have in my model is: def body_color_enum [ ['Aqua', '#009c9c'], ['Grey', '#6d6e71'], […
ruby-on-rails ruby localization translation rails-i18nI am using internationalization for english (en) and french (fr), I have used en.yml for limited use and most …
ruby-on-rails ruby-on-rails-3 internationalization rails-i18nI18n.translate can translate error.messages like this: I18n.translate('error.messages.taken') -> has already been …
ruby-on-rails rails-i18nI have a PetsController in which a flash message is setted. Something like this: class PetsController ... def treat_dog #do …
ruby-on-rails controller internationalization rails-i18n