Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

Locale translation for words like "don't"?

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!
Tagged:

Best Answer

Sign In or Register to comment.