如果你真的那麼希望中文的模版名稱,這的確是個方法。 你可以先作一個 templates_zh_CN.php,裡面的內容是
<?php
$messages["grey"]="灰色風";
$messages["standard"]="標準";
?>
然後,在 locale_zh_CN.php 最後面寫上, iinclude_once( PLOG_CLASS_PATH."templates_zh_TW.php" );
然後,再把所有出模版內出現 templates name 的地方,都用 $locale->tr(模版名稱) 來取代。
這樣應該就可以了。
**記得有些是在 form input 中的 value,那可不要去改到。
Mark