Wordpress .po file won't recognize french accents

3k Views Asked by At

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). Unfortunately, strings containing accents (french strings, as my base language is french) will not be rendered correctly by either Peoedit (and consequently it's .mo compilation), or the gettext handlings of __() and _e(). My .php files for my website are currently utf-8, to handle french accents.

Could a charset mismatch between .mo and web files be the culprit here? If so, how do I render my .po and .mo files under utf-8 charset and get it to work? Here is the header of my .po file (including utf-8 encoding that doesn't work):

msgid ""
msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: Patrick <[email protected]>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
2

There are 2 best solutions below

3
On BEST ANSWER

In lieu of any initialization code details or hexdumps of your actual .po or .mo files, the only thing that might be worth looking into is bind_textdomain_codeset. (Also setlocale or adding charset in LANG= or LC_ALL=.)

msgfmt and php2po (via Pootle) are alternatives to Poedit, if you can't manage to make UTF-8 work. (Which is what you need to do.)

0
On

You need to define "Content-Type: text/plain; charset=utf-8\n" as you said, but you also need to convert your file to UTF-8 (no BOM) (notepad++ does that).

When you reopen it in poedit, the accents should show OK. Save and upload to your WP theme folder.