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.
0
votes
1answer
129 views
Django how to mark_safe a link but not the arguments in a gettext translation
Let say we have a message like this :
messages.add_message(request, messages.SUCCESS,
_('Document <a href="%(url)s">%(doc_type_name)s %(name)s (%(fname)s)</a> ...
2
votes
3answers
182 views
Android 2.1 getEditableText() returns null / empty string
I have a simple application that has one edittext field, and one button. The button I want to take in the value of the edittext field and store it into a string (to parse later). But I am stuck at ...
1
vote
1answer
65 views
How do I translate a fictional language?
I am trying to create a site similar to yahoo's babelfish. A major difference is that I am trying to translate from English into a fictional language (ex. pig latin). I have gettext working via this ...
0
votes
1answer
201 views
How do I get gettext and poedit to work with WAMP?
I am trying to get gettext and poedit to work on windows. Here is my test code:
<?php
require_once("localization.php");
echo _("Hello World!");
?>
and
<?php
$locale = "de_DE";
if ...
0
votes
2answers
141 views
Log strings for which PHP gettext does not find any translation
I have a website that is internationalized using php's built-in Gettext / PO support
echo _("string to be translated");
The site being in beta, there are certainly some strings that don't get ...
0
votes
0answers
49 views
gettext filter for tag delimiter not working
I'm trying to change the tag delimiter in my WordPress theme from a comma to a semicolon, since I want to be able to add names in the format of "Boberson, Bob; Jimmison, Jim; etc." The tag delimiter ...
1
vote
0answers
98 views
JAVA gettext commons
I've been trying to get internationalization to work in JAVA (needs to support plurals). I have a POT file, and from that I've generated a PO file, and I have even managed to compile the JAVA class ...
0
votes
1answer
109 views
Gettext throws “warning: unterminated string” when parsing twig template files
This problem has been bothering me for a while, but I would like to fix it once and for all.
I am using the twig template engine in my PHP application. I am using the latest version of Poedit (which ...
1
vote
2answers
131 views
Gettext on Windows 7 doesn't translate
I have problem with translating my application with gettext.
My code is:
<?php
$language = 'cs_CZ';
$translatefile = 'default';
setlocale(LC_ALL, $language);
putenv("LANG=".$language);
...
2
votes
1answer
135 views
Benefits of keeping gettext's .mo files in repo
For example, why authors of "django-cms" keep gettext's mo files in repo (and this is not just inattention, see this commit), if users always can run manage.py compilemessages? Only to save users from ...
1
vote
2answers
220 views
Gettext does not flag python format strings with “python-format” unlike old style python strings with format specifiers
It seems that gettext is not able to recognise Python format strings with replacement fields properly and hence does not flag them as "python-format". E.g.
ugettext("This is a sample format string ...
1
vote
2answers
621 views
Linux Glib installation without gettext? [closed]
Is it possible to install Glib ( in my case 2.33.3) without gettext? I searched via google, but I just found some commends that it should be possible. But nobody describes it.
Purpose: I need to ...
1
vote
0answers
171 views
Server ignoring my setlocale settings
I am dealing with this problem quite a while and this is not my first question to it, but still I can not get localization to work correctly.
I use WAMP server and php gettext.
A simple code I made ...
0
votes
2answers
295 views
php-gettext don't work in production server. (Ubuntu)
I'm having problems with gettext in PHP; i have two servers, one local (in which I development) in Windows (with vs.php) and works find, and other in Amazon EC2 (Ubuntu 12.04 updated), this is the ...
-2
votes
3answers
274 views
android getText error
I am attempting to pull text from a TextView field as follows:
<TextView
android:id="@+id/text_random_text"
android:layout_width="wrap_content"
...
0
votes
2answers
85 views
language management system
using gettext to provide multilingual service. but I need a language management system like facebook's translation or twitter's translation system.
a system which one accepts new translations via ...
2
votes
1answer
451 views
Smarty gettext localization
I am having trouble using gettext.
This is how I set locale:
$lang = 'romanian';
putenv("LANG=$lang");
$smarty->assign('lang',$lang);
setlocale(LC_ALL, $lang);
if (setlocale(LC_ALL, ...
0
votes
2answers
172 views
Intltool with an autoconf-generated .desktop file
In the Emperor project, I'm having some issues getting intltool to work when doing an out-of-tree build. When running make check out-of-tree, which is one of the things make distcheck does, intltool ...
0
votes
1answer
140 views
PoEdit doesn't recognize _n() plurals
I've got this set in source keywords of POEdit:
_
__
_e
_ex
_n
esc_attr_e
_x
_nc
It works but I gets only first string when I use _n() function (Twenty Eleven theme):
<?php printf(_n('One ...
0
votes
0answers
73 views
Codeigniter + gettext0.17
gettext0.17 is unstable!?
Here is the situation:
My browser language is English.
My site will support Japanese when the user uses Japanese on his browser language.
Even my browser is English, often ...
0
votes
0answers
38 views
How do I access data from an array of scrollable text areas?
So here is my problem: I am using SpringLayout to create an array of text areas, and then I add a scrollbar to each of those text areas, but I cannot for the life of my figure out how to get data FROM ...
1
vote
2answers
485 views
Multiple plural forms in gettext()
See this example of _n(); function (http://codex.wordpress.org/Function_Reference/_n):
sprintf( _n('%d comment.', '%d comments.', $number, 'text-domain'), $number );
in English:
1 Comment
2 ...
2
votes
1answer
215 views
PHP gettext reverse translate
My question is quite simple, I use gettext to translate URLs, therefore I only have the translated version of the url string.
I would like to know if there was an easy way to get the base string from ...
1
vote
2answers
234 views
How to convert GNU Gettext .po files to Qt's .ts files?
Is there a tool to convert the translations in GNU Gettext .po format into the Qt's native .ts format?
1
vote
1answer
194 views
JTextField getText() is stuck after init()
This used to be homework but now it's personal as the term is over and I'm still working on learning Swing components. This program is my attempt to lift a procedural console TicTacToe implementation ...
0
votes
1answer
302 views
gettext and locale
I can't seem to get this right nor understand it.
I have this code:
putenv('LC_ALL=eng_US.UTF-8');
var_dump(setlocale(LC_ALL, 'eng_US.UTF-8', 'eng_US'));
The output on Windows
string ...
1
vote
1answer
244 views
Extract translator comments with xgettext from JavaScript (in Python mode)
I have a pretty well-working command that extracts strings from all my .js and .html files (which are just Underscore templates). However, it doesn't seem to work for Translator comments.
For ...
0
votes
4answers
93 views
How to access a JButton based on button text
I have a set of buttons arranged in GridLayout. I want to access a particular button based on its text. Is there any way to retrieve a button based on its text?
1
vote
1answer
682 views
Extracting gettext strings from Javascript and HTML files (templates)
I know that there are at least two ways to extract gettext strings from .js files - using the gettext parser in python mode (which I've heard has some shortcomings) and Babel, which is written in ...
-3
votes
4answers
177 views
Android:Null pointer exception in edittext [closed]
Hi i am making an app in which i have to get the first word entered in editText is number or alphabet .I used
Final EditText et=(EditText)findViewById(R.id.etext);
et.setOnFocusChangeListener(new ...
3
votes
1answer
1k views
Why is libtool is throwing “unsupported hardcode properties” errors and what do they mean?
I am cross-compiling gettext-0.18.2 for Windows but running into some problems. During the linking stages of one of the shared libraries, libtool gives me the following error message:
/bin/bash ...
0
votes
1answer
118 views
Django translate templatetag string parameters
Is there an easy solution to mark string parameters of an inclusion_tag (or a templatetag in general) for translation? In this example i want to mark the second parameter for translation:
{% ...
1
vote
1answer
197 views
“undefined reference to '_rpl_*'” errors during cross-compilation of gettext
I have entered the brave world of cross-compilation. I am currently trying to get gettext 0.18.2 to compile with Mingw-w64 on Ubuntu 12.04. Here is what the configure command looks like:
...
4
votes
2answers
218 views
Python, flask and creating a dual language app
I need to create a web app that can support dual languages namely English and Japanese. I don't need a translator, just a workflow for displaying text based on a user preference.
Is there such a ...
2
votes
1answer
106 views
Cython with gettext
I'm getting started with Cython, and running into a problem with using gettext translations in my source files. As an example, I have a source file called ScriptParser.py which I'm testing compiling ...
0
votes
1answer
95 views
Django allauth translations not recognized
I am using Django allauth and strings marked for translation in views and forms do not appear in the .po file after running makemessages.
For example, in site-packages/allauth/account/forms.py:
...
0
votes
1answer
134 views
weird django translations behaviour
I have weird problem with django translations that i need help figuring out. Problem is that instead of getting translated string every time i seem to get randomly either translated string or default ...
1
vote
1answer
113 views
I get no output from xgettext
I will try to use gnu-gettext for localization of a semi-big software project, so now I'm trying to learn the basics. Problem is that I got stuck on a pretty fundamental function. When I try to ...
4
votes
1answer
909 views
homebrew doctor: gettext found
I try to get homebrew running in order to install some unix tools on may mac and have trouble getting started. I already removed fink and macports und installed homebrew.
(I'm running Snow Leopard ...
0
votes
1answer
167 views
Nothing gets translated using gettext
How can I debug my use of gettext ? I have followed the steps described here, created both .pot .po files, and generated a .mo file.
Yet when I launch my page, nothing is translated, and there is no ...
1
vote
1answer
229 views
Compiling on Windows: why cygwin can't recognize gettext?
I'm trying to compile enc2ly ( http://enc2ly.sourceforge.net/en/ ) on Windows using cygwin but it gives errors. When I type ./configure, the result is the following:
checking for a BSD-compatible ...
1
vote
2answers
367 views
Fleshed out .po file sample
I almost feel stupid asking this, but... are there any good sample .po files out there? I have been reading the GNU gettext manual and while it specifies the general structure it doesn't go into as ...
0
votes
1answer
241 views
Deployment-free gettext translations for web applications
The Django-based web application I'm working on is translated to a few different languages. So far we've used gettext/PO files for translating static files (text in code and templates, static pages); ...
2
votes
3answers
320 views
How to mark string message in bean validation annotation for xgettext?
I am using bean validation and gettext for i18n. How can I mark the message string for translation, so it gets extracted with xgettext?
For example
@NotNull(message="Please enter a valid string")
...
1
vote
1answer
75 views
Using gettext results in periods changed with commas
I am using Codeigniter, and did implement gettext/.po internationalization by making a helper, and the corresponding .po/.mo files.
Each string that is meant to be replaced looks like this: _('some ...
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
159 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
93 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
592 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
411 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 ...
