test.php
1 <?php
$locale='zh_CN';
if(isSet($_GET["locale"]))$locale = $_GET["locale"];
?>
<html>
<head>
<link rel="gettext" type="application/x-po" href="./locale/<?php echo $locale ?>/LC_MESSAGES/messages.po" />
<script type="text/javascript" src="Gettext.js"></script>
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript" >
window.onload = function init(){
var gt = new Gettext({ 'domain' : 'messages' });
$('#hw').html(gt.gettext('Hello world'));
}
</script>
</head>
<body>
<span id='hw'>Hello world</span>
</body>
</html>
messages.po #: /var/www/zjtest/test.php:
msgid "Hello world"
msgstr "こんにちは世界"