Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
315 views

Django: gettext translation not working on production system

I've encountered a strange problem when translating strings (in the admin) using django's gettext: Locally running the dev server all translations are displayed correctly in the admin, but when the ...
2
votes
2answers
264 views

C++ - Qt translation question

Does Qt Linguist offer the ability to add new entries to the editable .ts file? I didn't find a way to do this - only to edit the translations to the existing fields. If there is no way to achieve ...
1
vote
0answers
22 views

Android - Testing internationalisations / translations

Is there a way to easily test out my translations for an Android app on a developer phone, if your phone's Settings->Languages menu doesn't have those? For example, to test translations for a desktop ...
1
vote
1answer
49 views

CRM 4.0 Unhandled exception upon trying to export labels for translation

I'm having a strange issue with our Dynamics CRM 4.0 (we use it to develop customizations). When trying to export labels (Settings -> Customization -> Export Labels for Translation) the system shows ...
1
vote
0answers
24 views

Translation-oriented CMS/Wiki/HelpPortal systems?

We need to run a help portal for users of our application. We want every page to be accesible in several languages. I want to find a content-management system which would have rich translation ...
0
votes
1answer
27 views

How to enable Rails I18n translation errors in views?

I created new Rails 3 project. I try to use translations in my views like this: = t('.translate_test') In my browser i looks "translate_test" instead "my test translation" witch i set in en.yml. ...
0
votes
0answers
16 views

jQuery clientside translations

Would it be an good idea to translate everything received from the server side to translate it with an array? For example html server response: when jQuery should translate this into wanneer, ...
0
votes
2answers
129 views

Overriding prestashop module translation missing

I try to modify a module template in prestashop so I've copied the module to my theme folder "modules". I've noticed that the theme is changing the only problem is that the translation is not. I got ...
0
votes
1answer
32 views

Google translations

I read many sites that google api translation becomes payment. I was thinking to implement translations in my application using this API: http://code.google.com/p/google-api-translate-java/ It is ...
0
votes
1answer
50 views

Pootle - problem exporting properties files

I am using pootle for localization. I imported source translations from java properties files. the property file looks like: STR_TEXT1 = Hello Than I imported other language files. I paid ...
0
votes
2answers
91 views

Grails: ORM Scheme/Plugin for Domain Class Translations

My problem simply put in Grails: I want a plugin OR example for translations of Domain Classes. Description: I would like to have translatable entites with a nice DB scheme behind it. For example ...
0
votes
0answers
12 views

Is there a Site/Project where i can download Text- Resources for Applications

I am developing an application and therefore i search a set of Text Resources. By Text Resources i mean general Words/Sentences which appear in every Application. For Example: - Words: ...
0
votes
1answer
119 views

where to store model attribute value translations

I have a model Invoice with attribute payment_status. payment_status has fixed values unpayed|partial_payed|payed that I want to store the translations for in a locale-file. I thougt it would be good ...