Skip to content

Instantly share code, notes, and snippets.

@jkuchar
Last active March 26, 2020 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkuchar/b0a81511057896b5e0080dbfafe915c4 to your computer and use it in GitHub Desktop.
Save jkuchar/b0a81511057896b5e0080dbfafe915c4 to your computer and use it in GitHub Desktop.
How (not) to do localization
<?php
echo translate("You cannot continue,")
echo '<a href="http://somewhere">';
echo translate('click here');
echo '</a>';
echo translate('to fix problem.');
msgid "You cannot continue,"
msgstr "Nemůžete pokračovat,"
msgid "click here"
msgstr "klikněte sem"
msgid "to fix problem."
msgstr "opravit problém."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment