Questions tagged [mo]

*.mo binary files are used by Osclass and compiled from the *.po files

This is a binary file (machine readable). This is the actual file used by Osclass and is compiled from the .po file.

64 questions
0
votes
1 answer

reload translation file in pyramid web framework

I develop a translation helper page in my pyramid based application. A new translation is saved in .po and .mo files via this: po = polib.pofile(join(root, 'locale', lang, 'LC_MESSAGES', 'myapp.po')) ..... po.save(join(root, 'locale', lang,…
sahama
  • 669
  • 8
  • 16
0
votes
1 answer

PHP setlocale falling back to system default locale

This is the code that I'm using to set the language: $locale = 'en_US'; putenv('LANG='.$locale); setlocale(LC_ALL, $locale); bindtextdomain($locale, ROOTPATH.'/admin/locale'); bind_textdomain_codeset($locale, 'UTF-8'); textdomain($locale); echo…
P3t3r6
  • 1,398
  • 2
  • 9
  • 12
0
votes
1 answer

some definition is not working in *.po file

I am using PoEdit to edit my .po file and making the .mo file. In my page I have two definitions, one is working and another is not. Can you suggest how can I make a translation file if I have to include any PHP variables in the message.po…
Mofizur
  • 145
  • 1
  • 3
  • 13
0
votes
1 answer

Mobile supporting AT+CNMI For kannel

I am looking for mobiles that support AT+CMNI commands to use them as a gsm modem for kannel , because AT+CMNI commands supported mobiles will allow the both MO and MT SMS. Any suggesting will be welcome , and if there are a way to test if a mobile…
larnouch
  • 189
  • 1
  • 15
0
votes
1 answer

WordPress po mo file

Hi all I have one problem. Po file doesn't work. I use qtransltae-x for translation. And I create custom pot file example # Copyright (C) 2015 Gawatt msgid "" msgstr "" "Project-Id-Version: Gawatt 1.0.0\n" "POT-Creation-Date: 2015-06-03…
Aram Mkrtchyan
  • 2,690
  • 4
  • 31
  • 47
0
votes
1 answer

Load .mo files in C

I've been working on a project, and I've finally decided to make translation files, so now I have translated .po files, but I don't know how to use it now on C, just that I have to make .mo files using those .po (no mattter with that). I've been…
Jorge Barroso
  • 1,878
  • 1
  • 13
  • 14
0
votes
1 answer

Math ML MO uses

What do following snippets of code do in Math ML files? I removed those lines and it still worked fine for me. Answering to any of them or just letting me know what they are would be very much…
Xeno
  • 41
  • 7
0
votes
2 answers

Where can I find the wordpress-woocommerce completed order email language file?

I would like to change a word in the completed order e-mail. I tried to edit the wp-content\plugins\woocommerce\i18n\languages\woocommerce-hu_HU.po file, but it has no effect,the e-mail is the same. I would like to change the "Szervusz" in the…
darksoul90
  • 145
  • 2
  • 16
0
votes
1 answer

.po file doesn't change(translate) content on website

One theme that I use for my WP website has .po files for language. I trying to download to my localhost .po file to edit it(translate it) and upload back to host. The problem is that when I upload that file again nothing change on the site. Like I…
Goro
  • 499
  • 1
  • 13
  • 31
0
votes
1 answer

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 corresponding po file, and resave the mo over…
meder omuraliev
  • 183,342
  • 71
  • 393
  • 434
0
votes
1 answer

gettext stops working randomly

I am stuck in a rut here. When browsing through a translated version of my localized site, the translation randomly stops, and I have no idea why; I'm not sure if it has to do with the way I'm setting the Locale or what, but it randomly stops…
David
  • 3
  • 3
0
votes
1 answer

vim: Editing po and mo files on windows

I'm using gvim on Windows and I'm trying to configure it for easy editing of po files- mainly I just want to generate an mo file in the same directory whenever I save. Looking at po.vim it appears I can do this, but I'm not clear on how to setup…
red888
  • 27,709
  • 55
  • 204
  • 392
0
votes
3 answers

Changing wordpress language

I'm trying to change the wordpress default language from english to swedish. I uploaded the language directory to wp-content with the swedish .mo file. Ive defined language in the config.php file but it won't update, when I'm logged in and under…
Abel
  • 594
  • 2
  • 5
  • 21
0
votes
1 answer

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 when translations are added in branches and then…
James
  • 351
  • 1
  • 2
  • 6
0
votes
1 answer

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 one of my .po files is filled with hex codes like…
Mustack
  • 41
  • 4