The i18n-gem tag has no wiki summary.
0
votes
1answer
254 views
Ruby - Could not find i18n-0.6.1 in any of the sources
I'm trying to install Redmine, but I'm in trouble on the final steps.
I never used a Ruby environment before, I'm a complete beginner.
$ RAILS_ENV=production rake db:migrate
Could not find i18n-0.6.1 ...
1
vote
0answers
32 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 ...
0
votes
1answer
45 views
Rails internationalization - is there better way to keep messages in english?
I recently make a decision to translate my tiny rails app with I18n gem as it described here.
While a testing, as it expected, I got a error messages from activerecord and devise:
translation ...
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 ...
1
vote
2answers
165 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
0answers
140 views
i18n.js Object doesn't support property or method 'config'
I have recently started working on Backbone.js with require.js. I am trying to implement localization and ım using require.js i18n plugin like this
http://requirejs.org/docs/api.html#i18n But ım ...
0
votes
0answers
69 views
Drupal Multilingual menu error
I made all what is required for multilingual. English and French menu are made, and I set a "Fixed Language" to both menus (EN : I select english & FR I selected french).
When I switch to ...
0
votes
1answer
56 views
Use translation for submit button
I don't want to use the default
<%= f.submit %>
and have created a helper function for it, which also embeds an icon. The helper function expects a label to put on the newly created button.
...
1
vote
1answer
104 views
how to make i18n content searchable?
i want to make my multilingual site searchable which is fully static . The site shares 3 languages . I use a technique which captures unique tag content with its respective locale file ( it's in yml) ...
1
vote
2answers
244 views
UTF-8 vs. ASCII-8BIT Encoding Inconsistency in Ruby on Rails
I know there are many questions about rails and encoding out there, but I haven't been able to find anything about this specific question.
I have a Ruby on Rails application using rails 3.1.3 and ...
1
vote
1answer
143 views
zend framework 2 some validators stays in the Zend\I18n\Validator package
I have observed that some validators (Alnum, Alpha, Float, Int and PostCode) are localized into "Zend\I18n\Validator" package instead of "Zend\Validator" how the zend documentation explains.
Somebody ...
0
votes
1answer
39 views
How can I write this as a currency unit but forwards د.إ
I'm setting up internationalization for UAE which uses this symbol : د.إ
But when I plug it into my en-UAE.rb :
:currency => {
:format => {
:unit => 'د.إ',
:precision ...
0
votes
1answer
261 views
Does Rails engines support i18n
What I am trying to do is have a translation file in my engine. I have placed files in
config
\locales
\fr.yml
Now I am writing translation for string hello
fr:
"Hello":"Bonjour"
but ...
0
votes
0answers
78 views
Monkey patch Rails 2 to work with i18n-js
I'm trying to use the excellent i18n-js gem with a Rails 2.3 legacy application. It works perfectly out of the box but the moment I try to do any form of configuration in the i18n-js.yml such as,
...
1
vote
0answers
42 views
I18 Error in rails 2
I have use I18 gem .
I want to translate in dutch so I do the following things
In environment.rb file
config.i18n.default_locale = "nl"
In Application controller
before_filter :set_locale
def ...
1
vote
2answers
283 views
I18n without Rails?
just having troubles to make I18n to work without Rails environment:
irb> require 'i18n'
=> true
irb> ...
2
votes
1answer
71 views
Multiple Language Support [closed]
Android Mobile Application that Support To Multiple Languages
What Is the best way
Either Use different different values folder for Hindi , French etc
Or
Languages Translator like in Web ...
2
votes
0answers
173 views
i18n-js Gem not locating necessary files
So I have an application which is using Rails 3.1.3, and gets deployed under Jruby. We allow the users to import their own themes (so their own CSS content) and for that reason we do not pre-compile ...
0
votes
1answer
171 views
Configure I18n fallbacks on Heroku
I have tried everything to make the i18n Fallback on Heroku but I couldn't.
I don't want to get the "translation missing messages". It work OK on developement mode.
Please help!
thanks
require ...
0
votes
1answer
139 views
I18n.translate(:countries) doesnt return countries for some locales
I have a very strange issue. I have 6 locales (en, ca, es, es_PE, es_MX, es_Cl)
If i type I18n.translate(:countries) It returns the countries for some locales and other locales it returns: ...
1
vote
1answer
124 views
rails routes locale, gem 'route_translator' or gem 'i18n_routing' unable to translate match in resource
mainly i would use i18n_routing gem
i will be happy if i will translate match 'vlk' under dashboard resource, trying everything around, and no success. Resources are translated successfully also new ...
1
vote
1answer
217 views
best online services for i18n localization of existing rails project
Whats your opinion on translation services and which one would be a good fit for rails project with 2,3 but growing number of languages?
Perhaps we can compile a list of services with pro's and ...
1
vote
1answer
148 views
gem for translating ruby I18n strings on rails app from the browser/frontend?
Is there an up2date gem out to edit the whole rails i18n strings from the frontend? and to edit your translations from the webbrowser?
There once was this great gem:
...
1
vote
1answer
364 views
Remove html tags from I18n “translation missing” messages
Consider the following code in a view:
<%= link_to 'Delete!', item , :confirm => t('action.item.confirm_deletion'), :method => :delete %>
It will normally come out as:
<a ...
1
vote
0answers
120 views
Rails i18n copycopter reaching out to infinity
I found copycopter a while ago and now started using it. I am pretty happy with it but now am having some weird issues.
My DB size is 8M (thousands of versions on day one) and it keeps adding blubs. ...
0
votes
2answers
99 views
Apply I18 to Ruby on Rails Completed Site.
I am new to Internationalization(I18). I want to apply I18 to my Ruby on Rails site but the problem is site is already complete and I don't want to go to each HTML page change the code. I want my site ...
3
votes
1answer
97 views
Is there a standalone i18n library in Ruby?
In Ruby I can't find any localization modules. Are there any or should I use some external library? I have found I18n gem but I don't know if I can use it in standalone application (without Rails). ...
1
vote
2answers
264 views
Redirect when using I18n with Rails is encoding the forward slash as %2F
I was recently following Ryan Bate's Railscast on I18n adding multiple locations and setting the locale from the URL Params like
www.example.com/en/
www.example.com/fr/
Generally it works a treat, ...
1
vote
2answers
260 views
How do I link the same page in another language with the i18n gem for Refinery CMS?
I'm converting a site into the Rails based Refinery CMS, I've setup the i18n refinery cms gem and I've created multi-lingual versions of my pages. I'd like to create a locale switcher on the page, so ...
0
votes
0answers
146 views
I18n translating arrays in chained backends
I got a Ruby question in quite long stuck at. Im trying to make a translation backend shown in http://railscasts.com/episodes/256-i18n-backends, but i'm facing the following problem when translating ...
1
vote
1answer
196 views
actionmailer set host dynamic based on .LTD app.com/ app.fr
Im having 2 different languages in my rails app and would like to be able to set the domain name set in the right language. For example if a user registers from app.FR I want in below example the ...
3
votes
1answer
69 views
i18n formated text
I have a question regarding the best practise of handling formated text when using i18n. For example, let say I have a about us page with multiple paragraphs, bullet points etc. (keeping in mind that ...
1
vote
1answer
452 views
I18n translation in Rails console doesn't show proper Chinese (or any other language)
So we're using I18n to localize our website to traditional Chinese
I have a zh-TW.yml file under directory config/locales
I'm trying to see that the translation works in Rails Console.
So I tried:
...
1
vote
1answer
117 views
Trouble on translating views after renaming statements from 'translate' to 'I18n.t' and from 'localize' to 'I18n.l'
I am using Ruby on Rails 3.2.2 and I have a strange problem. In my view files I use the following code:
# app/views/articles/show.html.erb
I18n.t('.page_title')
When I render the above view code in ...
2
votes
2answers
675 views
Organization of Locale Files in rails app
I currently have the following 4 files in my config/locales of my root application:
-en.yml
-de.yml
-simple_form.en.yml
-simple_form.de.yml
In my application.rb which resides in a spec/dummy folder ...
0
votes
1answer
227 views
Calling I18n translation method from within a simple_form marked up using haml
I am working with the I18n gem and am just wondering how the translation method can be called while using a haml based simple_form. Current my code is as follows:
\users\new.html.haml
- ...
0
votes
1answer
171 views
Hook into Rails' I18n
I've written a little library to hold translated content in model attributes. All you have to do is add the following to a model:
class Page < ActiveRecord::Base
i18n_attributes :title, :content
...
0
votes
1answer
57 views
Rails CollectiveIdea Audit i18n
I'm using https://github.com/collectiveidea/audited in order to get my app audits.
But my entity names still on english, all my app is i18ned. Couldnt found any info in the docs. Any clues?
0
votes
1answer
89 views
Rails 3 locale - path to locale tag too long?
I've just noticed silly error with locales - when the path for specific locale tag is too long e.g. t('placeholders.organization.participantsNo') then there is a locale translation missing error, but ...
3
votes
1answer
1k views
Rails I18n set_locale
I want to set the locale by the clients browserlocale request.env['HTTP_ACCEPT_LANGUAGE'] and by the URL.
If a user visits a URL (e.g.: myapp.com) it should check the HTTP_ACCEPT_LANGUAGE and ...
0
votes
2answers
155 views
What is the right translation tag to translate the Recaptcha error message
Currently I am developing an app. My user registration uses the recaptcha plugin.
When the Captcha is wrong, the app gets the error:
incorrect-captcha-sol
How can I translate this message with ...
5
votes
3answers
635 views
I18n load path not being set when running “bin/rake assets:precompile”!
I am using I18n-js, and my client side I18n.t calls all return a translation missing message when running in production.
All is ok in development and test.
The root of this issue appears to be in ...
0
votes
1answer
96 views
Rails 3.1, internalization of values from a habtm relationship?
I got a Event model that HABTM Categories. The relationship works fine and I can insert/retrieve values from Categories with no problem.
My questions is, is there a way to interzationalize(I18n) the ...
2
votes
1answer
349 views
i18n search using tire and Globalize3
i have a site that uses globalize3 gem (https://github.com/svenfuchs/globalize3) and i'm currently adding the Tire gem to make site search.
How do i do to Index a table translations depending on the ...
1
vote
1answer
186 views
Use custom locale in devise emails
I am using devise_invitable gem in rails and I have configured a number of locales in my rails app. What I would like to do is to invite a user with a locale I would specify myself. I t could look ...
2
votes
2answers
402 views
Is there a tool to convert i18n yaml files to gettext po format?
I'd like to convert rails i18n yaml files to gettext po format. I tried https://github.com/pejuko/i18n-translators-tools but it doesn't worked as expected in my case. Any suggestion?
0
votes
2answers
303 views
Prosy thing with I18n and redirects (RoR) locales parameter is changing
I tried to implement 'change language' feature at my app. I've looked through official guide http://guides.rubyonrails.org/i18n.html and everything was clear for me. Unfortunatly I dont know how to ...
1
vote
4answers
3k views
Not setting default locale in Rails 3.1.3
Not setting default_locale in Rails 3.1.3
application.rb:
config.i18n.default_locale = :en
I have got 3 locales (en,es and ca)
And when i go to my console:
I18n.locale => :ca # I guess the ...
1
vote
1answer
134 views
Rails 2.3.x, is there any ruby gems for editing yml locale files? [closed]
sorry for my english, I need to know if is there any ruby gems for editing yml locale files with a web interface? I remember I have seen a kind of, but I forget the name.
Some suggestions?
Regards.
1
vote
1answer
2k views
Change the language of application using ResourceBundle
I'm building a internationalized application based of Java using Netbeans IDE, I´m trying to change the language of my frames using a combobox located in a singular frame, but I cant make the code for ...

