Created
November 7, 2012 22:36
-
-
Save pboos/4034989 to your computer and use it in GitHub Desktop.
PHP: gettext
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$loc->compileAll(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$loc->createGettextPotFor(__FILE__); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_once "includes/Localization.class.php"; | |
$loc = new Localization; | |
$loc->setDomain("test"); | |
$loc->setLocale("de_DE"); | |
echo $loc->_("This is a test!"); // translates "This is a test!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment