Wikipedia:用戶介面翻譯/NewestPages.i18n.php

出自維基百科,自由嘅百科全書

各用戶喺編輯呢啲原始碼時嘅注意事項:

  1. 位於 <pre> 同 </pre> 之外嘅文字會被忽略。
  2. 請以英文版嘅原始碼翻譯,以確保翻譯無誤。
  3. 建議對一小部份嘅原始碼作出修改,以確保原始碼嘅語法正確無誤。
  4. 擴展部件信息只會節錄英文同粵語部份,其它嘅語言將唔會列示。
  5. 根據MediaWiki軟件嘅讀我檔案,除非有特別嘅指明,否則以下所有嘅文字都會以GPL v2 或以上版本發佈。
<?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;
}

?>