The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
12 views

why move_alloc is not working in gfortran (4.6.3), but it is in ifort?

I've read here that move_alloc works since gfortran 4.2. I'm with gfortran 4.6 installed in my ubuntu 12.04 but move_alloc is not working! The move_alloc is used five times inside a loop that runs 10 ...
0
votes
1answer
42 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 ...
0
votes
1answer
280 views

qTranslate do not detect properly when called from inside a plugin through ajax

I got two problems. Problem 1: I have translated mailchimp's pot file into two languages. The .mo has been tested to be working. But WP fails to show the ajax returns for other languages for the ...
2
votes
1answer
170 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
74 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
127 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
0answers
137 views

Is it possible to check whether MO file contains a specific msgid using Boost.Locale?

For example in the following code: std::string stringToTranslate = "msgid"; std::stringstream strstream; strstream.imbue(myLocale); strstream << boost::locale::translate(stringToTranslate); ...
1
vote
3answers
147 views

.mo file in utf-8 encoding dont work with accentuated words in a linux server

I was translating the website and all was working fine but when I put the files in the online server (linux), the translation worked but the accented letters in spanish appear like this � somebody ...
0
votes
2answers
478 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
0answers
248 views

How do you enable auto correct for an HTML textbox in IE9 mobile?

I have an input textbox on a web form that is being viewed on IE9 mobile, and I'm unable to figure out how to enable auto correct. It would appear that the attribute autocorrect=on is the trick for ...
0
votes
0answers
886 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
752 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
389 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
213 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: ...
0
votes
3answers
5k views

How can i create an .mo file for wordpress

I have some .po files for wordpress and i want to create .mo files. How can i do this? Regards Peter.
3
votes
3answers
866 views

how to handle gitting of binaries, e.g. .mo files

Is there a simple way to handle binary files in git operations? I think my ideal in this case - 'merging' of .mo files (binary .po messages) - would be to give precedence to the newer file, copying it ...
0
votes
1answer
53 views

Has anyone had issues with parsing CVS-committed gettext .mo files?

I have this issue where my mo parser code fails if I check out a .mo file from CVS ( CVS server is running on an old, old CENTOS box ) - I think CVS somehow corrupts it. If I use poedit and open the ...
5
votes
1answer
1k views

Can someone break down how localization file ( .mo, .po ) generation works?

I'm trying to grok gettext. Here's how I think it works - First you use some sort of po editor and tell it to scan a directory for your application, create these ".po" files, the application makes a ...