Hello everyone,
there is a plenty of threads with localization issues but I'm really in stuck.
I need cs_CZ localization.
So I had made .po file from sources with POEdit, made changes, saved cs_CZ.mo file into the directory wp-includes/languages/ and changed wp-config.php. But it was still in English.
So I had started with debug and I discovered the following:
I updated file wp-includes/l10n.php and substituted code on row 5 like this:
Orig: if (isset($locale))
New: if (!empty($locale))
And now is localization working. But I don't think this is a right solution.
Does anyone have some similar experience or am I doing something wrong?