0
votes
1answer
33 views

What is the best method/tool to merge two .po translation files one old and one new with replace? [closed]

I want to merge two .po files together and produce new .po file. I am assume that many people will deliver different translation what need be merge into one. First I want to replace all old ...
1
vote
2answers
72 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
139 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 ...
0
votes
1answer
190 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 ...
0
votes
2answers
142 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 ...
1
vote
2answers
240 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?
3
votes
1answer
310 views

Get words count in PO file

How to calculate a number of words in PO file? Poedit shows only lines count. Any help will be appreciated.
0
votes
1answer
182 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
473 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" ...
1
vote
1answer
198 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 ...
3
votes
2answers
798 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
276 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/
0
votes
2answers
295 views

Can I translte a Wordpress PO file online?

Hi Can I just translate my theme po file online and save it our do i have to compile it to work? Do you know how i mean? Regards
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
2answers
1k views

.po file for default cakephp libs translations

How to add the translations for cakephp libs files to by default.po file for example - months name - day's name - timeAgoInWords i try to add strings to default.po manually but everytime i update it ...