0
votes
1answer
19 views

Internationalizing java software

For my internship i've been asked to do some research on software internationalization and the current practices and solutions. I've done some research and have come to no viable solution. My ...
1
vote
0answers
20 views

PHP's gettext with en_US locale

I have a mo file /data/lang/en_US/LC_MESSAGES/test.mo (translate foo => bar) and use the following code to echo it $locale = 'en_US'; $locale_dir = '/data/lang'; putenv("LC_ALL=$locale"); ...
2
votes
2answers
79 views

Combining keys and full text when working with gettext and .po files

I am looking at gettext and .po files for creating a multilingual application. My understanding is that in the .po file msgid is the source and msgstr is the translation. Accordingly I see 2 ways of ...
0
votes
1answer
44 views

How to have django compile .mo files at startup?

What I am trying to achieve is when a django projects starts, have it run compilemessages automatically in a cross-platform way. That way the mo files don't need to be checked into source control, and ...
1
vote
2answers
83 views

PO, MO translation files

I want make a multi-language app I heard about .po files but I can't locate it I made this code I made a directory in my application called languages and I put the ar_EG.po file in it and I tried ...
1
vote
3answers
156 views

Has someone a script to extract specific strings from XML files to allow to translate them via CSV or PO files

That's my first question here, normally I provide answers ;-) Well, I'm looking for a script to extract some specific strings set into system.xml, layout xml files or similar they are used by Magento ...
1
vote
2answers
60 views

How to I mark an empty translation (msgstr) as translated in po gettext files?

I found that is the translation for a string (msgid) is empty all gettext tools will consider the string as untranslated. Is there a workaround for this? I do want to have an empty string as the ...
0
votes
1answer
56 views

po message file build

Is it possible to build a *.po file to *.mo using the terminal? Currently, I have to edit the *.po file in my text editor, save it, load it via Poedit and save it again. I am working on ubuntu.
1
vote
1answer
68 views

Preventing caching of gettext

How can I disable gettext caching in development phase, so I can modify mo file without restarting apache? (in http://php.net/manual/es/book.gettext.php a portion of a class is proposed for this ...
0
votes
1answer
220 views

Creating new po files with a po editor

I tried some po editor softwares. I wonder why none of do not allow creating a new po file from scratch or adding new entry to an existed one. Is there any hack so they let creating new entries? (I ...
3
votes
1answer
486 views

Variables in PHP gettext [duplicate]

Possible Duplicate: How does gettext handle dynamic content? I'm using PHP's gettext. I want to translate a sentence which has a variable in it. Is this possible? For example, in English: ...
0
votes
2answers
156 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
76 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 ...
2
votes
2answers
271 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
2answers
431 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
265 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); ...
0
votes
1answer
98 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 ...
0
votes
2answers
82 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
119 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 ...
2
votes
1answer
439 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
201 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 ...
0
votes
1answer
188 views

gettext po file editor to show multiple po files

In our company we are trying to decide whether to use english for our message id or whether we should invent some kind of key. We can only take the second approach if there are editors which allow us ...
0
votes
2answers
859 views

Is there a PHP library for parsing gettext PO POT files?

if is not in PHP, is possible use some command line tools which convert PO file into some structured format e.g. XML or some other which I can simple process in PHP?
1
vote
1answer
174 views

Yii Po file importer - plurals

How can I add support for plural forms in this Yii class: http://code.google.com/p/yii/source/browse/tags/1.1.8/framework/i18n/gettext/CGettextPoFile.php ? Right now the pattern is ...
0
votes
0answers
907 views

localization of website using smarty-gettext

I have to translate the text in English to German. For that I have done the folllowing I have used gettext and working on Ubuntu 11.10 OS created a text.php. The code is given below: <?php require ...
1
vote
2answers
295 views

PoEdit .PO generation error

I have attempted to scan my scripts for all _('gettext') function calls into a new PoEdit catalog. After parsing the files it displays this error: Filename.class.php:11: warning: Although being used ...
0
votes
2answers
964 views

.po files and gettext VS JSON and custom i18n library?

I need to develop or find some sort of lightweight gettext-like library in JavaScript for browser-side translations. Preferably the same library could be used by node.js if I'd like to translate ...
0
votes
2answers
788 views

Wordpress .po file won't recognize french accents

I've written a .po file for my wordpress theme. The charset is unicode as I cannot define it as 'utf-8' or it will not open in Poedit (the program I'm currently using to catalog my strings). ...
0
votes
2answers
403 views

localisation of website using gettext

I have to translate the text in english to germany.For that I have done the folllownig I have used gettext and working on Ubuntu 11.10 os... created a text.php Through Poedit created ...
1
vote
1answer
201 views

What is the difference in the file content of a .po and a .pot file?

I would like to have the following process flow: The programmer marks some entries in the source code as translatable The programmer generates a template file (.pot if I understood it correctly) The ...
1
vote
1answer
511 views

Gettext automatic comments generation

I'm doing i18n for a php project using gettext. I'd like to use the automatic comment feature to give hints to translators when translating long phrases replaced by id. What I want to obtain is the ...
3
votes
2answers
875 views

Removing all fuzzy entries of a PO file

Does anyone know a method to mass delete all fuzzy translations from a PO file. Something like: if #, fuzzy == TRUE Then SET msgstr="" AND REMOVE #, fuzzy
1
vote
2answers
277 views

A .po Generator written in PHP

Is there such a thing out there? A script that's able to create a .po file from .php files dropped inside a directory/
1
vote
3answers
101 views

Find differences in a .po file

I have a .po file where most translated strings are identical to original ones. However, few are different. How do I quickly find the ones that differ from original?
4
votes
2answers
373 views

How can I check .mo file validity?

I'm using PHP to make .mo files out of the database and have run into a strange problem: some keys work, some don't. I think there is some kind of a problem with the generated files. How can I check, ...
1
vote
1answer
117 views

finding and replacing all none translated words in .ctp files with their corresponding msgid from the .po file

I have a .po file like this: msgid "Edit" msgstr "تعديل" msgid "Delete" msgstr "حذف" msgid "Are you sure you want to delete # %s?" msgstr "هل تريد بالتأكيد حذف رقم # %s?" and my .tpl files are ...
3
votes
3answers
3k views

How to use po/pot files with php?

I have a .po and a .mo file in a folder whose address is /locale/nld_nld/LC_MESSAGES/. Both the files' names are messages. I've been trying to use the following code: try.php: <?php ...
10
votes
6answers
2k views

Is there a Java library for parsing gettext PO files?

Does anyone know of a Java library that will let me parse .PO files? I simply want to create a Map of IDs and Values so I can load them into a database.