Repository for collecting Locale data for Ruby on Rails I18n as well as other interesting, Rails related I18n stuff.

learn more… | top users | synonyms

0
votes
3answers
20 views

Funny error with db:populate and I18n : fr.activerecord.errors.messages.record_invalid

I'm following M. Hartl tutorial, and I have an error I can't understand. I want to populate my database with fake users, using first rake db:reset and then the rake db:populate, but it fails. Here ...
1
vote
0answers
24 views

I18n redis backend pluralization

I switched my app translations form yml fails to redis backend. What i have in my initializer: TRANSLATION_STORE = Redis.new I18n.backend = ...
0
votes
2answers
29 views

How to escape colon : in rails i18n?

Here is a line in the view: <%= f.input :comm_date, :label => "Hello:", :as => :string %> The regular i18n file has the format as: Hello : 'Aloha' In i18n yml file, we want to ...
2
votes
0answers
27 views

I18n strange behaviour

I am using I18n with Redis store, and have a strange behavior after updating to Rails 3.2.13 [6] pry(main)> I18n.t("my_website_field") => "M" [7] pry(main)> $redis.get("en.my_website_field") ...
1
vote
0answers
33 views

About i18n in rails and reversing the web site in Rails

I decided to try to translate my rails app using i18n into Arabic language which right to left , unlike English language ( from left to right ) , how can I reverse my website in case of Arabic , and ...
0
votes
1answer
18 views

Rails 3 customize validate's error with i18n

I'm using some validates on my model and try to convert error to my language Here in my Model TaiSan I have some validates like this: class TaiSan < ActiveRecord::Base attr_accessible :MaTS, ...
0
votes
1answer
30 views

I18n for Rails Javascript Validation

I can't find the language file for this text on a Rails form: How can I translate it?
0
votes
1answer
31 views

Rails I18n transliteration rules configuration

So, I wanted to pre-load the transliteration rules for many locales I have. I've included the following code in one of my initializers files (app/config/initializers/locales.rb): ...
0
votes
0answers
10 views

Rails 3.1 active model translation

I'm doing the migration from a Rails 3.0.7 to version 3.1.11 on my app I have an ActiveModel class: class Form::Search include ActiveModel::Validations include ActiveModel::Conversion extend ...
0
votes
1answer
43 views

How do I format my created_at output correctly with I18n?

I am using this I18n file. I am calling it in my view like this: <td class="center"><%= l o.created_at %></td> This is being outputted like this: Mon, 22 May 2013 04:04:43 +0000 ...
0
votes
1answer
24 views

Rails Internationalization, html tag

I'm having some problems having html tags correctly loaded in my Rails 3.2 app, and have no clue why. I managed to get it working for one flash message, but I am not managing to do it with a ...
0
votes
0answers
19 views

Store and translate a dynamic list

I've got a dynamic list of values that I display to users in a view (such as a list of check boxes to select categories): Categories: Food Technology Home I know that this list can be easily ...
1
vote
1answer
29 views

Globalize.with_locale in after_commit callback does not change anything

I'm having troubles with Globalize3 gem when updating cached attribute in after_commit callback. #In My Model after_commit :write_localized_caches private def write_localized_caches ...
0
votes
1answer
43 views

i18n rails get translations from two different yml files

I am using tolk for translation, but tolk takes all my values from en.yml and dumpes them in es.yml overwriting the existing content . There are some stuff i don't want to be overwritten , so ...
1
vote
0answers
31 views

I18n.locale doesn't inherits from I18n.default_locale defined in application.rb

I created a new rails 3.2.12 application and in application.rb i use to configure the default locale like this config.i18n.default_locale = "pt-PT" I had all the locales yml in the place and ...
2
votes
1answer
34 views

I18n.l displays wrong month (one month later)

I have a strage issue with the I18n.l helper. I've got the following date in a updated_at database field: 2013-04-09 08:17:26 i display this date in my view with <%= l product.updated_at %> and ...
2
votes
1answer
66 views

Rails upgrade to 3.2 routes/locale fails

I have recently upgraded a project to Rails 3.2 from 3.1 and have been stuck trying to figure out why the routing is not playing nicely with devise. NoMethodError - undefined method `locale' for ...
0
votes
0answers
26 views

i18n “NO KEY” when redirecting RoR

I'm using i18n with given params and not session variable. when im posting my info from a certain form and redirecting to another page, it seems to ignore the: before_filter :set_locale def ...
0
votes
1answer
23 views

rails i18n association(updated)

I have a question regarding to i18n in rails when meeting assciations class User belongs_to :billing_address, :class_name => "Address' belongs_to :delivery_address, :class_name => "Address' ...
0
votes
1answer
52 views

Ruby on Rails: how to change the language of error messages?

Now I want to use error.full_messages to display the error messages. But it's default language is English. I want to show other language's error message. How can I do that? Or I have to self define ...
0
votes
0answers
32 views

I18n of constants inside a model

I have an User model, which has roles, defined in a module. In short, class User < ActiveRecord::Base (...) module Roles Admin = 0 SuperPrefeitura = 1 Prefeitura = ...
0
votes
2answers
24 views

Address form fields for a japanese address

I am building a small application for an english speaking client in Japan. As part of the app, users need to be able to enter their address. Unfortunately, I can't find any reference for how ...
0
votes
1answer
136 views

I18n localize Activerecord Model value Date strftime On Rails console

So i'm using I18n Indonesia localize. I have a id.yml on config/locales. I want store value of created_at (datetime) to code (string) and Month translation to my locale before save.. self.code = ...
1
vote
0answers
56 views

Rails I18n doesn't work with asset pipeline templates in Rails 3.2.11

I need to localize an app, so I created a file for Spanish translations, but the config/locales/es.yml file doesn't seem to be properly loading, or maybe it loads after my templates are evaluated. ...
4
votes
1answer
165 views

why rails I18n.t in asset pipline file does not work

I want to use I18n.t helper in asset pipeline js.coffee.erb file. My local file: zh-CN: hello: 你好 In hello.js.coffee.erb: $-> alert '<%= t(:hello) %>' This will cause ...
1
vote
0answers
28 views

Extending YAML alias anchors

I'm trying to construct dynamic YAML to return strings, I'm wondering if it is possible to do something like this with YAML? en: occupation: "Studying #{department} at %{university} %{*speciality}" ...
1
vote
1answer
65 views

rails: how can I override override a locale based on subdomain?

I have internationalized and localized my application using the standard rails mechanisms. Everything is stored in en, fr, de.yml files. My application is multi-tenant, based on the subdomain. I ...
0
votes
0answers
59 views

Rails 3.2.x adding locale to url_options raise template missing

I'm adding the functionality of I18n to my rails application for that I had read this guide: http://guides.rubyonrails.org/i18n.html after doing some steps from the guide I ended up with this code ...
0
votes
1answer
76 views

I want to create ruby on rails website on multi-language

I'm using ruby on rails 3.2 with psql. Currently my website is in english language. Now I want to create it in multiple language. My website is a kind of CMS. All pages and link of pages are in the ...
0
votes
1answer
85 views

locale for Chinese Language as per I18n standards

I would like to know the standard code for Chinese language in the available locales of I18n standards. For example :en for English. Also tell me how to name the yml file for chinese langauge (en.yml ...
0
votes
0answers
34 views

“translation_missing” when using default_locale

I'm trying to show a text in spanish using locales, but it keeps using english as default. My code: # config/application.rb config.i18n.default_locale = :es # config/locales/es.yml es: sections: ...
0
votes
1answer
48 views

Weird issue with i18n rails haml

I was looking into How to use rails-i18n with HAML to find out how i18n works together with haml but ran into an issue I can't figure out. This works: en.yml en: sitename: "Happy Sunday" ...
1
vote
1answer
23 views

How to display two different translation in one view - Rails ?

I have an app with two translation: :pl and :en. I want to send email in both languages (one view file) Something like that: =t(".my_translation_key", :en) =t(".my_translation_key", :pl) instead ...
1
vote
2answers
153 views

Inheriting Rails i18n validation error messages in the subclass

What I understand Suppose I have a class with a handy validation like: User < ActiveRecord::Base validates :username, :format => {/regex/}, :message => :name_format end In this case, ...
0
votes
1answer
94 views

Rails I18n not working properly on Heroku

I18n works as expected locally but not on heroku. It always shows english even if the browser is set to pt-BR. We set the locale in a before filter: class ApplicationController < ...
0
votes
1answer
25 views

Hot get I18.locale from a .js.erb file?

I am trying to do an 'if' statement depending on the language and do to find the right way to make JS to find the locale. As as I trial I have tried with similar combinations to this, but no avail. ...
0
votes
2answers
108 views

Rails i18n how to get all values for a certain key?

In Rails i18n, how to get all values for a certain key using the following: translations = I18n.backend.send(:translations) get all the keys I need to be able to get a certain section for example ...
0
votes
2answers
124 views

Can i18n be applied to emberjs TextFields/Labels etc.?

Is there a way to use i18n on ember/emberjs-bootstrap TextField labels. For example {{view "Bootstrap.Forms.TextField" valueBinding="account.email" label={{t 'account.email'}}}} This would not ...
0
votes
0answers
43 views

Switch off I18n/Globalize3 fallbacks per Rails model basis

Is it possible to switch off I18n/Globalize3 fallbacks per Rails model basis? I.e. some models use fallback, some don't.
1
vote
1answer
114 views

Use another I18n key in an I18n interpolation

This might be I18n-ception but lets say I have an en.yml file as below en: my_var: Foo my_message: "This is a message where I'd like to interpolate I18n's %{my_var}" Is there a way to indicate ...
1
vote
1answer
83 views

rails3 i18n accepts_nested_attributes_for how-to translate?

I'm using Rails 3.2.6 and this is an example case: class Man < ActiveRecord::Base has_many :eyes accepts_nested_attributes_for :eyes end class Eye < ActiveRecord::Base belongs_to :man ...
1
vote
0answers
22 views

Using rails localization I18n on client side

Is it possible, to get all localization features of rails app, when using client side view rendering? Any suggestion about how to implement something like this?
1
vote
1answer
186 views

Rails internationalization (i18n): Everything translating except layouts/application.html.erb

I keep getting "translation missing: en.layouts.application.title" for title or any item I try to translate within app/views/layouts/application.html.erb file. config/locales/en.yml en: layouts: ...
3
votes
1answer
95 views

Rails 3: production environment change locale but doesn't translate text [w/ custom fallbacks]

I have this app in which I use a bunch of locales (which are adjusted to be more suited to the domain of the app, ex: instead of using es-MX, I just use mx as locale) And I have configured the ...
2
votes
1answer
315 views

modifying en.yml file for validation error messages rails 3

I have never really dealt with or understood the en.yml file as I haven’t used it in the past, today I am trying to change that and customise the validation error messages that are shown when a form ...
0
votes
2answers
118 views

Converting to local time for Date field in Rails

Usually I have datetime fields in my webapp that are stored in the postgresql database as UTC time by Rails. When I go to display those dates and times on a webpage, they display in the local time ...
0
votes
1answer
145 views

Monkey patch module method

I want to alter I18n.translate method in existing project. require 'I18n' module I18n alias_method :old_translate, :translate def translate(*args) old_translate(*args) + 'blabla' end ...
0
votes
1answer
105 views

Find untranslated keys in Rails 3

Is there really no way to extract all i18n translation keys of an application? views/pages/index.html.erb <h1>Some content</h1> <p><%= t('.some_translated_text') %></p> ...
0
votes
1answer
178 views

Locale fallback from country to language without having to define each individually

I am localizing an app with the default rails I18n with globalize3 as the back-end. Is it possible to set a locale with a country code (ie :fr-CA) to fallback to its specific language (:fr) before ...
0
votes
1answer
62 views

human_attribute_name defaults to the wrong locale

I am developing a localised application with Rails 3.2.8, deployed on Heroku. I created a localisation it.yml file with the following structure: it: activerecord: attributes: company: ...

1 2