abbreviation for internationalization

learn more… | top users | synonyms

0
votes
0answers
27 views

What is a good restful solution for Rails 3 internationalization needing language and region?

I am writing a Rails 3 app from scratch that needs to be internationalized and am looking for a RESTful solution for URL patterns that have to include language and region ids. (I am concerned about ...
1
vote
0answers
32 views

Route path with locale

This is in my routes file: scope "(:locale)", locale: /en|es/ do get "about" => "static_pages#about" end I already know that I can use about_path to get the path to the "about" route, but I ...
0
votes
3answers
135 views

rails l18n, the best way to manage localization

I'm using http://guides.rubyonrails.org/i18n.html for localization. Looks like that the only solution for updating localization is to update yml files. May be there are some solutions or gems which ...
2
votes
2answers
407 views

Choice pattern in properties file

i have properties file with messages and i want to handle some special cases of plural. Now i use xxx.yyy.plural=test{0,choice,2#y} but it formats 12 as 'testy' also. How can i specify 2 as exact ...
3
votes
1answer
66 views

Django: How I can use an other Translation for a template rendering

I render my templates for an email what I want to send! How I can say to the render function which language it should use if I use l18n? Thanks FYI: It now looks like this {% load i18n %} {% ...
0
votes
2answers
518 views

Symfony Routing: Can call route but not forward to

I have a Route for just the locale without any other Information (the Startpage that is): homepage: pattern: /{_locale}/ defaults: { _controller: OurStartBundle:Default:index } If i call ...
0
votes
2answers
187 views

I18n InvalidPluralizationData errror in Spree

I using Spree. When I fill with enpty content I get the following error I18n::InvalidPluralizationData in Spree/checkout#update_registration Showing ...
0
votes
2answers
677 views

Django makemessages i18n for specific directories or exclude directories

My site structure looks like this: project --apps ----app1 ----app2 --docs --templates ----module1 ----module2 ----module3 how can i run django-admin.py makemessages --locale=en on all apps and ...
1
vote
1answer
625 views

yii global date format (l18n)

i'm confused about following: When i type Yii::app()->getLocale()->dateFormat it gives me the correct dateformat for current set language. (in my example it is 'de' => dd.MM.yyyy) but when ...
2
votes
1answer
581 views

Django: using plural form for russian localization

I try to use plural form in russian language, but russian have two forms of word for plural (for example: "1 курс" = 1 course, "2 курс*а*" = 2 courses, but "5 курс*ов*" = 5 courses) Django supports ...
5
votes
1answer
1k views

Developing a right-to-left Android application

I'm working on a relatively simple Android app. I want it to have an English version as well as a Hebrew version. I have an activity all layed out in English, and I want to create the Hebrew ...
1
vote
2answers
436 views

How to use l18n translate method with Draper gem?

I use Draper gem to decorate my models. Here I have a pretty classic settings: # app/decorators/subject_decorator.rb class SubjectDecorator < ApplicationDecorator decorates :subject def ...
7
votes
3answers
2k views

How to translate active record model validations

When I submit a form with an error in it, it returns an error message. How can I translate these error messages with l18n? I already have translation for all the other texts in my views, so I know how ...
-1
votes
2answers
269 views

l18n for HTML files

I want translate a web for multiple languages. I can create a .html file for each language, but I would like only one .html file and use an automatic way for translations. Please, Is can be possible?
1
vote
1answer
477 views

How to create a translatable successful notice?

I am trying to create a translatable successful notice. This notice would be called by a successful call of the create and update actions. This is what I have so far: #config/locales/en.yml ...
2
votes
3answers
1k views

iOS Choosing localization for unsupported language

I have localizations for "en" and "ru" languages, and if user select any other language (fr,de...) I need to display russian localization variant. I tried changing "Localization native development ...
3
votes
3answers
1k views

rails redirect to same page but add subdomain

If a user is at blah.com/items/index how do I redirect them to de.blah.com/items/index in a way that will work for any page? Right now I'm using <%= link_to 'German', root_url(:host => ...
0
votes
2answers
664 views

How to get country details from timezone?

How can I find country details from time zone using php.
0
votes
1answer
482 views

What's the best way to pull user defined locales from Zend Framework using the full locale preference list? (UPDATED Twice)

Zend Framework has a great component called Zend_Locale. There's all kind of nitty gritty details in properly parsing out language and locale, partly because it's been hacked into HTTP Accept-Language ...
1
vote
1answer
217 views

How can I convert .strings files to and from .po and .pot files?

How can I convert .strings files to and from .po and .pot files?
9
votes
4answers
4k views

Internationalization in PHP

I am currently researching the best methods to integrate i18n into projects. There's several methods I have thought of doing this, first being a database scheme to store the strings and relevant ...
7
votes
3answers
4k views

Localization in C# Application

Im creating a C# Application based on WinForms / KryptonForms, and as the application is halfway in development i thought to myself I best sort the localization out. As a born and bread PHP ...