Wikipedia:用戶介面翻譯/NewestPages.i18n.php
閱讀設定
各用戶喺編輯呢啲原始碼時嘅注意事項:
<?php /** * Internationalisation file for the NewestPages extension * @package MediaWiki * @subpackage Extensions * @author Rob Church <robchur@gmail.com> * @copyright © 2006 Rob Church * @licence GNU General Public Licence 2.0 */ function efNewestPagesMessages( $single = false ) { $messages = array( 'en' => array( 'newestpages' => 'Newest pages', 'newestpages-header' => "'''This page lists the $1 newest pages on the wiki.'''", 'newestpages-limitlinks' => 'Show up to $1 pages', 'newestpages-namespace' => 'Namespace:', 'newestpages-none' => 'No entries were found.', 'newestpages-ns-header' => "'''This page lists the $1 newest pages in the $2 namespace.'''", 'newestpages-showing' => 'Listing $1 newest pages:', 'newestpages-submit' => 'Go', 'newestpages-showredir' => 'Show redirect pages', 'newestpages-hideredir' => 'Hide redirect pages', ), 'zh-yue' => array( 'newestpages' => '新頁', 'newestpages-header' => "'''呢度列舉成個維基入面最新 $1 頁。'''", 'newestpages-limitlinks' => '攤開頂龍 $1 版', 'newestpages-namespace' => '空間名:', 'newestpages-none' => '乜都揾唔到。', 'newestpages-ns-header' => "'''呢度列舉$2 空間名裏面最新 $1 篇文。'''", 'newestpages-showing' => '攤開最新$1 篇文:', 'newestpages-submit' => '去', 'newestpages-showredir' => '攤開啲跳轉頁', 'newestpages-hideredir' => '摺埋啲跳轉頁', ), ); return $single ? $messages['en'] : $messages; } ?>