Wikipedia:用戶介面翻譯/UserImages.i18n.php
出自維基百科,自由嘅百科全書
各用戶喺編輯呢啲原始碼時嘅注意事項:
- 位於 <pre> 同 </pre> 之外嘅文字會被忽略。
- 請以英文版嘅原始碼翻譯,以確保翻譯無誤。
- 建議對一小部份嘅原始碼作出修改,以確保原始碼嘅語法正確無誤。
- 擴展部件信息只會節錄英文同粵語部份,其它嘅語言將唔會列示。
- 根據MediaWiki軟件嘅讀我檔案,除非有特別嘅指明,否則以下所有嘅文字都會以GPL v2 或以上版本發佈。
<?php /** * Internationalisation file for User Image Gallery extension * * @package MediaWiki * @subpackage Extensions * @author Rob Church <robchur@gmail.com> */ function efUserImagesMessages() { $messages = array( /* English */ 'en' => array( 'userimages-caption' => 'Images uploaded by $1', 'userimages-noname' => 'Invalid username or none provided.', 'userimages-noimages' => '$1 has no image uploads.', ), /* Cantonese */ 'zh-yue' => array( 'userimages-caption' => '由$1上載嘅圖像', 'userimages-noname' => '唔正確嘅用戶名或者冇畀到用戶名。', 'userimages-noimages' => '$1並冇圖像上載。', ), ); return $messages; } ?>