OptiBiz1
Active Member
Hi,
I have almost finished translating MailWizz to Swedish now, I have spent a few hours on it, now I am verifying the translations. Now I see that Swedish special characters (åäö and ÅÄÖ) for some reason can't be displayed, instead the whole string is erased.
E.g. in customers.php it looks like this:
<snip src="customers.php">
return array (
.
.
.
'Group' => 'Grupp',
'First name' => 'Förnamn',
'Last name' => 'Efternamn',
'Email' => 'Epost',
'Company' => 'Företag',
.
.
.
</snip>
If I don't use the HTML encoding, then the strings (e.g. the translation of "First name" (="Förnamn")) is just deleted, and if I use the HTML encoding, the encoding will never take place.
On the other hand, in the file app.php it works perfectly (and the below is from the same screen, so it should not be the webserver that is rendering it wrongfully), see here:
<snip src="app.php">
return array (
.
.
.
'Date added' => 'Datum, skapad',
'Options' => 'Inställningar',
.
.
.
</snip>
See the below screenshot. Any ideas on how to do? Why do it differ, that is, it works sometimes, but sometimes not. (grrr, I accidentially wrote "RED = customers.php" with a green color, but the line is still red so you'll see what I mean )
I have almost finished translating MailWizz to Swedish now, I have spent a few hours on it, now I am verifying the translations. Now I see that Swedish special characters (åäö and ÅÄÖ) for some reason can't be displayed, instead the whole string is erased.
E.g. in customers.php it looks like this:
<snip src="customers.php">
return array (
.
.
.
'Group' => 'Grupp',
'First name' => 'Förnamn',
'Last name' => 'Efternamn',
'Email' => 'Epost',
'Company' => 'Företag',
.
.
.
</snip>
If I don't use the HTML encoding, then the strings (e.g. the translation of "First name" (="Förnamn")) is just deleted, and if I use the HTML encoding, the encoding will never take place.
On the other hand, in the file app.php it works perfectly (and the below is from the same screen, so it should not be the webserver that is rendering it wrongfully), see here:
<snip src="app.php">
return array (
.
.
.
'Date added' => 'Datum, skapad',
'Options' => 'Inställningar',
.
.
.
</snip>
See the below screenshot. Any ideas on how to do? Why do it differ, that is, it works sometimes, but sometimes not. (grrr, I accidentially wrote "RED = customers.php" with a green color, but the line is still red so you'll see what I mean )