Hi!
I'm working on a custom locale but run into problems when trying to translate phrases containing ' characters, like can't, don't, won't etc. Running the latest 2.0.18.b2
The below does not work because the ' character in "don't" will tell PHP that the string is ending, breaking the syntax:
$Definition['Don't have an account?'] = 'Har du inget konto?';
The below two versions are syntactically correct but has no effect:
$Definition["Don't have an account?"] = 'Har du inget konto?';
$Definition['Don\'t have an account?'] = 'Har du inget konto?';
Thankful for help!
0 • •