0
votes
1answer
40 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
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 ...
2
votes
1answer
168 views

How to deal with multiple text-domain?

I am talking about Wordpress localization/internationalization. I have a two templates done by third party. And they made them child templates of twentyten. Seemingly they kept the template files ...
0
votes
1answer
53 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.
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
1answer
126 views

Django po file is compiled like a mo file

I'm a bit new to this translation system but as I understand it, .po files are the translation strings and the .mo files are the compiled translations from those. The problem that I'm having is that ...
0
votes
2answers
475 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" ...
0
votes
0answers
883 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 ...
0
votes
2answers
751 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
387 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
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
1answer
152 views

po mo translation only working for en-GB and en-US and not working with other languages

I have created the translation files using poedit and generated the mo files and kept them in their respective folders. But somehow I can only access the translations which are in en_GB and en_US ...
4
votes
2answers
355 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, ...
0
votes
2answers
212 views

use regexp to search function calls in code

i try to make .mo files from my sources in php by finding "t()" function calls, i know that one better way is using regex functions like preg_match or something, but i'm not the better creating ...
3
votes
3answers
2k 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: ...