1<?php 2 3/** 4 * Chinese (simplified) language for the Config Manager 5 * 6 * If your language is not/only partially translated or you found an error/typo, 7 * have a look at the following files: 8 * - "/lib/tpl/vector/lang/<your lang>/lang.php" 9 * - "/lib/tpl/vector/lang/<your lang>/settings.php" 10 * If they are not existing, copy and translate the English ones (hint: looking 11 * at <http://[your lang].wikipedia.org> might be helpful). And don't forget to 12 * mail the translation to me, 13 * Andreas Haerter <andreas.haerter@dev.mail-node.com>. Thanks :-D. 14 * 15 * 16 * LICENSE: This file is open source software (OSS) and may be copied under 17 * certain conditions. See COPYING file for details or try to contact 18 * the author(s) of this file in doubt. 19 * 20 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 * @author LAINME <lainme993 [ät] gmail.com> 22 * @link http://andreas-haerter.com/projects/dokuwiki-template-vector 23 * @link http://www.dokuwiki.org/template:vector 24 * @link http://www.dokuwiki.org/config:lang 25 * @link http://www.dokuwiki.org/devel:configuration 26 */ 27 28 29//check if we are running within the DokuWiki environment 30if (!defined("DOKU_INC")){ 31 die(); 32} 33 34//user pages 35$lang["vector_userpage"] = "使用用户页?"; 36$lang["vector_userpage_ns"] = "如果是,使用下列“:namespace:“作为用户页的根:"; 37 38//discussion pages 39$lang["vector_discuss"] = "使用讨论标签页/站点?"; 40$lang["vector_discuss_ns"] = "如果是,使用下列“:namespace:“作为讨论页的根:"; 41 42//site notice 43$lang["vector_sitenotice"] = "显示站点公告?"; 44$lang["vector_sitenotice_location"] = "如果是,使用下列wiki页面作为站点公告:"; 45 46//navigation 47$lang["vector_navigation"] = "显示导航?"; 48$lang["vector_navigation_location"] = "如果是,使用下列wiki页面作为导航:"; 49 50//exportbox ("print/export") 51$lang["vector_exportbox"] = "显示“打印/导出”栏?"; 52$lang["vector_exportbox_default"] = "如果是,使用默认的“打印/导出”栏?"; 53$lang["vector_exportbox_location"] = "如果不是默认,使用下列wiki页面作为“打印/导出“栏位置:"; 54 55//toolbox 56$lang["vector_toolbox"] = "显示工具箱?"; 57$lang["vector_toolbox_default"] = "如果是,使用默认工具箱?"; 58$lang["vector_toolbox_location"] = "如果不是默认,使用下列wiki页面作为工具箱位置:"; 59 60//custom copyright notice 61$lang["vector_copyright"] = "显示版权信息?"; 62$lang["vector_copyright_default"] = "如果是,使用默认的版权信息?"; 63$lang["vector_copyright_location"] = "如果不是默认,使用下列wiki页面作为版权信息:"; 64 65//donation link/button 66$lang["vector_donate"] = "显示捐赠链接/按钮?"; 67$lang["vector_donate_default"] = "如果是,使用默认捐赠目标URL?"; 68$lang["vector_donate_url"] = "如果不是默认,使用下列URL作为捐赠地址:"; 69 70//TOC 71$lang["vector_toc_position"] = "目录位置"; 72 73//other stuff 74$lang["vector_mediamanager_embedded"] = "在通用布局中嵌入显示媒体管理器?"; 75$lang["vector_breadcrumbs_position"] = "足迹导航的位置(如果激活的话):"; 76$lang["vector_youarehere_position"] = "“您在这里“导航的位置(如果激活的话):"; 77$lang["vector_cite_author"] = "“引用此文“中的作者姓名:"; 78$lang["vector_loaduserjs"] = "载入“vector/user/user.js“?"; 79$lang["vector_closedwiki"] = "封闭wiki(许多链接/标签/栏是隐藏的,直到用户登录)?"; 80 81