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

Categories

In this Discussion

Who's Online 11

CurtisOdenericgillette +9 guests

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:

Comments

  • Posts: 159 Accepted Answer
    See applications/dashboard/views/entry/passwordform.php or password.php.
    $Definition['Don\'t have an account? %s'] = 'Don\'t have an account? %s';
Sign In or Register to comment.