Gettext is an internationalization and localization (i18n) library which is commonly used for writing multilingual programs. Its most popular implementation is that of the GNU project.

learn more… | top users | synonyms

0
votes
1answer
1k views

getText() in WebDriver using Java

The following is the HTML code: <div id="TITLE" class="text"> <label for="widget_polarisCommunityInput_113_title">Title</label> <input type="text" name="field(TITLE)" ...
0
votes
1answer
160 views

gettext not translating all utf-8 characters

test.php file echoes some greek letters for testing <head> <meta charset = "UTF-8" /> </head> <?php $language = "en_US"; $lang_path = "language"; putenv("LC_ALL=$language"); ...
0
votes
1answer
94 views

Wordpress po/mo classes

I am trying to make a simple system with plugin and themes support, but I need translation for them. The file path of languages with /en/LC_MESSAGES is too big and I want simple and it should be put ...
0
votes
1answer
617 views

Why doesn't django take my language file into account?

I followed the whole documentation about text translation, but django doesn't take my .mo file into account. Some facts: I created a conf/locale/ folder at the root of my project django.po was ...
1
vote
2answers
424 views

ant - uptodate task : regenerate only outdated files

I'm new to ant and rather used to Makefiles. In a project, the i18n language modules named Message_zh.class etc are built unconditionally from zh.po etc with every compile, although they already ...
0
votes
2answers
384 views

Apache gettext windows does not work/translate

I am new to gettext. Here is my setup: /Apache 2.2 PHP 5.3.6 Windows 7/ I have following code in the Apache/htdocs/test/index.php <?php $language = 'de_DE'; $translatefile = ...
6
votes
2answers
470 views

PoEdit and PHP annotations

I'm looking for a way to make PoEdit understand PHP annotations. Here's a sample of code I want PoEdit to pick up and put into catalog: class MyController extends Controller { /** * @Title ...
0
votes
1answer
119 views

PHP gettext and non-ANSII charters

I have a PHP web application which is originally in Polish. But I was asked to locale it into Russian. I've decided to use gettext. But I've problem when I'm trying to translate string with Polish ...
2
votes
2answers
97 views

Python multilingual localization

I am working a backend project written in python to provider multilingual strings to my frontend handset. Some how I got some text translation that will change the position. I want to know how to do ...
0
votes
1answer
95 views

How do I filter a PO file by reference?

I need to filter out of a PO file all entries that are used only in the wordpress admin (so I can translate only user facing strings). In other words, if all references for any given entry contain the ...
2
votes
1answer
118 views

Sed and PHP assoc array

I have PHP code: <?php $vF = array('nazwa' => 'Nazwa', 'telefon' => 'Telefon', 'email' => 'E-mail', 'adres' => 'Adres'); ?> And I want to using sed change it to something like ...
0
votes
1answer
487 views

Setlocale returns false (WAMP)

I have working localization in my project. Working means that my project gets translated to whatever language I have in the locale/sk folder, sk for slovak being my default system language. Setting ...
3
votes
1answer
106 views

Extracting gettext messages from coffeescript files

Is there any library that can extract gettext messages directly from coffeescript files or do I need to compile them to javascript and extract only then? I've been using python babel module for ...
0
votes
1answer
114 views

Underscorejs and gettext name conflict [closed]

How do you mix underscorejs and gettext for _("")? What do you think is better to give gettext another function name or rename underscorejs?
0
votes
0answers
106 views

Get poEdit (or other app) to scan functions for multiple arguments as language keys

I would like to use convenience functions for gettext in PHP: sprintf(_('You have %d apples'), $apples [, $morePlaceholders]) // Normal way convenient('You have %d apples', $apples [, ...
0
votes
2answers
486 views

pygettext.py and msgfmt.py on Mac OS X

I want to translate strings in my Python app on my Mac OS X 10.7. I can import the gettext module but i can't find the tools pygettext.py and msgfmt.py, which according to the Python docs should be ...
0
votes
2answers
81 views

PO files, swap msgid and msgstr

Is there any tool that lets me swap msgid and msgstr in a po file? I couldn't find it. Notice that I don't really need to keep the resulting msgstrs: in short, I need to get a second po file having ...
0
votes
1answer
48 views

Using preexisting/system translations with gettext?

I'm writing a small program (javascript, but I don't think it matters) and am trying to add translations to it. The only strings in it that need to be translated are 'Minimize', 'Maximize', ...
3
votes
3answers
117 views

Is there a quick way to add gettext() calls to strings in PyDev?

Is there a quick way to add a gettext() call to a literal string in the PyDev editor running under Eclipse? I.e. when I place the cursor on any literal 'string' in a Python file, I want to turn this ...
2
votes
1answer
171 views

Python: Translate output to Japanese

I'm planning to use Python Bottle framework for a simple website. Except for the numerics (eg., data shown in a table), all output has to be in Japanese. So instead of outputing "345.65 meters", I ...
0
votes
1answer
132 views

php gettext and poedit - What would be faster using constructor or without

I store some attributes and their options in class Attributes. public static $ethnicity = array(0 => '-', 1 => 'Asian', ...
1
vote
2answers
567 views

QTP v 10.0 on windows 7 - need to solve the issue with getVisibleText

On Windows XP getVisibleText was working fine in scripts. After migration to QTP10 and Windows 7 was done they stopped to work. Is there a good workaround for that issue? (migration to QTP11 is not ...
0
votes
1answer
103 views

php Gettext in windows path

Hi i am trying to use gettext in windows. This code runs fine on linux but in windows doesnt work. the problem is that it doesnt find the path to locale folder. any advice? <?php // I18N support ...
0
votes
2answers
160 views

Zend translate translates to english while locale is set to dutch

My Zend_translate is working but for some reason it only translates to english. Even when my locale is set to Dutch manually it shows the english translations. When I delete the english mo/po files it ...
2
votes
3answers
103 views

gettext of string with number

I would like to use gettext to translate a sentence and leave number as it is, like in these examples: "i am 100 years old" -> Tengo 100 años de edad (spanish) "i am 10 years old" -> Tengo 10 ...
0
votes
1answer
134 views

Gettext fails in translating post type format permalink slug

I'm not that familiar with PHP so far but already succeeded in registring a custom post type. Now I'd like to make the permalink slug of it translatable. My theme already has correctly working ...
1
vote
1answer
97 views

php gettext fails loading html tag

I'm using gettext to translate my website. One key has a translations with a html tag: msgid "BANNER_TAG_START" msgstr "<!-- // MY BANNER TAG -->" if I use this code in php now: ...
1
vote
1answer
90 views

get text of a TextView in android home widget?

I just begin programming with android home widget, so i could set text to a textview in home widget from my widget provider but when i want to get text from it, i have no ideal. Can not findById() and ...
0
votes
2answers
261 views

getText() of an array of TextView initialized in .xml

I have defined the TextView array as final. And I set a OnClickListener() for all the array elements, and I am able to use setBackground (even the array is not set as final). But I cannot use ...
0
votes
1answer
111 views

Can I have variables in .po files?

I'd like to use variables in some way in gettext .po files, for example: msgid "ui_settings_connect_text" msgstr "Connect to another running instance of " APP_NAME Has anyone tried to do something ...
0
votes
1answer
83 views

How to preserve gettext() translations?

Suppose I have a example.php file like that: <p> <?php echo _('Hello world') ?> </p> <p> <b><?php echo _('the end') ?> </p> If I extract strings: ...
2
votes
0answers
530 views

How to get title of fragment dialog window (app uses ActionBarSherlock)

I need to compare strings from title of fragment dialogue with R.id.string from resources. It looks like smth like this (user Robotium). ...
0
votes
1answer
66 views

Internationalize webapp javascript

I'm developing a webapp which consumes its own API to show the contents, and it's javascript through AJAX who does it. When I worked with serverside processing (php) I used gettext, but now I don't ...
0
votes
1answer
439 views

gettext under Mac OS X Lion for eclipse with maven

I have a Java project in Eclipse which builds with apache maven. The problem is that the project doesnÂŽt compile correcly because of the gettext function missing. So I did some search and ...
1
vote
1answer
810 views

ImportError: cannot import name normalize

I tried to use djangos i18n and therefor had to install gettext. Now I'm getting this awkward error any time I try to start my application: Traceback (most recent call last): File ...
3
votes
3answers
1k views

How to convert gettext .mo file into .po file

Is there any way to convert a .mo file into a .po file source, when the .po file is no longer available? I need to edit the content of a .mo file but I don't have the .po file. Is it possible?
2
votes
1answer
406 views

How to provide data for .po translation files?

After running django-admin.py makemessages -l de in Django to create the translation files, you could use a plain text editor or Poedit to fill them out. Poedit has the advantage that it provides a ...
0
votes
2answers
158 views

<%= %> in grails tags using i18n-gettext

I am trying to make my grails app multi language capable. For every text I want to translate I have to do: <%=t9n.tr(s: "Delete Filter")%> In constrast the following will work (output "Delete ...
0
votes
2answers
48 views

Multi-purpose function for gettext translations

It's similar to what Drupal has. My current function definition is like this: string t(string $singular, [string $plural, int $number, mixed $arg1, ...]) The order of the arguments doesn't have to ...
0
votes
2answers
548 views

Get value of an EditText field

I'm an android newbie and as a test I want to make a program that insert text in EditText and display it. I want my program to show a dialog box that states "Please insert comments first" when there ...
4
votes
1answer
157 views

Translation of R script using gettext

Is it possible to use something like gettext to translate an R script. If so, how? If not, what other options I have?
0
votes
1answer
213 views

using GetText to translate wordpress using variables instead of default language

I want to make my wordpress theme translation ready. I was thinking to use GetText function within wordpress like: _e('sometext') But I was thinking, what happens when I want to change default ...
0
votes
2answers
186 views

Generating a POT file

PoEdit causes problems because it scans also the Python sources in subdirectories where no scan is desired. So I want PoEdit to get new information about strings from a POT file. Here it is said that ...
1
vote
1answer
53 views

How to manage the same code on two domains?

I have a multilingual project, the project is fully compatible with HE/EN languages. In one case it's going to be uploaded as a subfolder in a big israeli project, in another it's going to be used ...
2
votes
2answers
117 views

How to correctly write PHP with multilingual elements?

I'm using gettext to write a multilingual php web app. Whats the best way of actually using gettext, I can use it as a key phrase: echo (_("main.welcomeText.1")); Or echo (_("Welcome to my site, ...
1
vote
3answers
227 views

Translation to hebrew with PHP/Gettext fails

I've searched hours for a solution for this including in the documentation. trying to use gettext for hebrew translations, using PHP 5.3.1 and wamp, it prints out "hello world" and not the Hebrew ...
3
votes
1answer
80 views

Converting echo calls to gettext calls

I'm in charge of a project that needs to be *i18n*ed. The only problem is that the original developer didn't think of this when writing the code so all the strings are just "hard-coded". It's quite ...
3
votes
1answer
156 views

Looking for a replacement for i18ndude, or an improved version

I'm looking for an improved version of i18ndude (having checked out v3.2.2), or some kind of successor. i18ndude extracts translatable strings from Python code (using pygettext) and Zope page ...
1
vote
5answers
680 views

PHP Localization - gettext or array?

Setting up the multi language site I now need to decide which option I need to use for static text on the site. Let me explain my site setup and then if you can help me decide which solution to use. ...
1
vote
3answers
272 views

Select an approach to localize large .NET applications

I know that Question of Localizing .NET applications asked here many times. But I am doubt about effectiveness of the approach to use Resources and 3-d party resource editing tools to localizing ...

1 3 4 5 6 7 14