1
vote
1answer
13 views
How to externalize strings to multiple files in Eclipse
I have run Externalize Strings in Eclipse that generated a messages.properties.
That was translated to some other languages and the new files were created like messages_de.properties etc.
Now after …
0
votes
1answer
17 views
Effects of calling SetThreadUILanguage
What are the effects of calling SetThreadUILanguage in an applicaton? Will it cause captions like "OK" and "CANCEL" on a MessageBox to appear in the language set through this API?
If the captions do …
2
votes
2answers
85 views
Python’s string.maketrans works at home but fails on Google App Engine
I have this code in Google AppEngine (Python SDK):
from string import maketrans
intab = u"ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ".encode('latin1')
outtab = …
1
vote
3answers
30 views
rails - how to dynamically add/override wording to i18n yaml
as an example, i have a default english locale file "en.yml" with contents:
en:
messages: messages
users: users
now, there is a customer which wants messages to be named discussions in his …
0
votes
1answer
9 views
Problem in plone translation
I am a plone Newbie and I needed to change a translated word in the .po file, the translation is in Arabic. When I changes the word to the right word and restarted the zope. My plone site is no more …
1
vote
2answers
51 views
django - how to make translation work?
Hi -
I'm trying to render a template in a different language using i18n. I did everything I could read about, from setting the language code, creating and compiling translation files, including the …
3
votes
1answer
37 views
How to generate a single translation file for a large Qt project?
I have a large project with one qmake project file defining all project components using a 'subdirs' template. Currently I define translation files in the qmake files of each sub-project. This results …
1
vote
4answers
49 views
Internationalization and Search Engine Optimization
I'd like to internationalize my site such that it's accessible in many languages. The language setting will be detected in the request data automatically, and can be overridden in the user's settings …
0
votes
2answers
24 views
viewing translations in django templates (e.g - making it work)
Hello - I'm trying to figure out the django translation system, so I wrote a little test app. I created the translation files and compiled them (*.po and *.mo), and now I'm trying to render a template …
1
vote
1answer
29 views
Symfony : How to use widgets with i18n forms in backend (doctrine)
Hi everybody.
I can not manage to have both i18n and tinyMCE widgets on internationalised fields.
If i put both, i will have internationalised fields for all my objects' fields, but no tinyMCE for …
0
votes
1answer
9 views
Multilingual settings form radio buttons not showing on Drupal site
I have a Drupal site where the "Multilingual support" options don't show up when editing a content type. I've checked to make sure that the line that adds the options executes (you can see it at …
1
vote
2answers
39 views
Which font should I use for Latin and East Asian characters
My application needs to be able to display text in English, German, Chinese, and Korean. I would like to use a single font throughout the application. I know I could use Arial Unicode MS or Lucida …
0
votes
2answers
21 views
django blocktrans and i18n in templates
Hi,
looking for a while with i18n problem in django:
this work fine :
{% trans cat.name %}
cat.name will be translated
but this doesn't work:
{% blocktrans with cat.name|slugify as cat_slug %}{{ …
0
votes
2answers
88 views
which is the correct text comparison method for an international application…AnsiCompareText or CompareText?
i'm using delphi 2009 to write an app that uses an Access database.
i noticed that MS Access' ORDER BY seems to be sorting international character sets like AnsiCompareText whereas throughout my app, …
0
votes
0answers
13 views
“Lazy loading” of I18n translations in controllers, models etc.
I have this in my controller:
class CoursesController < ApplicationController
add_crumb I18n.t('courses.breadcrumbs.default'), :courses_path
...
end
This works fine in my development …
