1
vote
0answers
14 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"); ...
0
votes
1answer
24 views

Wordpress theme translations not being implemented into admin area

I developed a wordpress theme which has a few cusotm post types in it. and i created the .po language file and it successfully imported the strings from php files. The problem is that the ...
0
votes
1answer
77 views

Orchard Localization PO file usage and Vandelay.TranslationManager

I have tried to understand how to manage and translate Orchard PO files as described in: http://weblogs.asp.net/bleroy/archive/2011/01/13/creating-and-maintaining-orchard-translations.aspx The ...
2
votes
1answer
64 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
0answers
39 views

How to merge two .po files?

I have 2 problems to merge 2 .po files. I have 1 .po file(trans.po) for my applications localization, and another one (transNew.po) I produced recently. I need to merge them. But I when I run the ...
0
votes
2answers
78 views

tool to create from plain html file a .po file used for translation

i am using the http://i18next.com/ to translate a static website hosted on github gh-pages. are there any tools that i can use to first extract from say the index.html file and create a index.po file ...
1
vote
1answer
66 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 ...
3
votes
1answer
422 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: ...
1
vote
2answers
241 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?
0
votes
0answers
21 views

Unknown line in po file: #@ default

I've build a PHP po file parser and worked fine until I've found a po file containing the following line: #@ default Full example: #: D:\xxxxxxx.php:10 #@ default msgid "Address:" msgstr ...
0
votes
1answer
83 views

po2xliff conversion in windows

Can anyone help in using the command po2xliff(http://web.iesrodeira.com/cgi-bin/man/man2html?query=install+po2xliff) in windows.
0
votes
2answers
479 views

how do I generate po file from php array?

I've a php language file, that lists values in an array. I want to transform this into .po file. php file looks like this: <?php $LANG_ = array( // advanced search buttons "_search1" ...
3
votes
2answers
859 views

How to use xliff or po l10n file formats in .net (C#/ASP.Net) development

I've been researching about xliff and po i18n files formats and it seems they are widely used and supported. There are plenty of free tools to manage the translations in xliff/po files. However, so ...
0
votes
2answers
390 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
3answers
92 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?
0
votes
1answer
396 views

django-admin.py makemessages issues (1) Duplicated message (2) .pot not .po?

Hi I'm working on the Localization of a website frontend, and I met two issues with django-admin.py makemessages -l zh_CN. 1) It's generating .pot files instead of .po files? Why is that? How do I ...
1
vote
1answer
2k views

Localization .po file format

I am working on web application (used PHP, javascript language) , I have provided localization support to my application. Currently supported English language. I am supporting another languages. I ...