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/monobook/lang/<your lang>/lang.php
9 * - /lib/tpl/monobook/lang/<your lang>/settings.php
10 * If they are not existing, copy and translate the English ones.
11 *
12 * Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
13 * 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 Rubyy
22 * @link https://www.dokuwiki.org/template:monobook
23 * @link https://www.dokuwiki.org/config:lang
24 * @link https://www.dokuwiki.org/devel:configuration
25 */
26
27
28//check if we are running within the DokuWiki environment
29if (!defined("DOKU_INC")){
30    die();
31}
32
33//user pages
34$lang["monobook_userpage"]    = "开启用户页么?";
35$lang["monobook_userpage_ns"] = "如果开启,使用 ':namespace' 作为用户页的根页面";
36
37//discussion pages
38$lang["monobook_discuss"]    = "开启讨论页么?";
39$lang["monobook_discuss_ns"] = "如果开启,使用 ':namespace' 作为讨论页的根页面";
40
41//site notice
42$lang["monobook_sitenotice"]           = "显示'站点公告'么?";
43$lang["monobook_sitenotice_location"]  = "如果显示,使用 ':namespace' 作为站点公告页面";
44$lang["monobook_sitenotice_translate"] = "如果开启了翻译插件,站点公告的不同语言翻译在:(例如':wiki:site_notice_en').";
45
46//navigation
47$lang["monobook_navigation"]           = "显示'导航栏'么?";
48$lang["monobook_navigation_location"]  = "如果显示,使用 ':namespace' 作为导航栏页面";
49$lang["monobook_navigation_translate"] = "如果开启了翻译插件,导航栏的不同语言翻译在:(例如':wiki:site_navigation_en').";
50
51//custom copyright notice
52$lang["monobook_copyright"]           = "显示版权声明么?";
53$lang["monobook_copyright_default"]   = "如果显示,使用 ':namespace' 作为版权声明页面";
54$lang["monobook_copyright_location"]  = "如果不使用预设值, 使用以下页面作为版权声明页面";
55$lang["monobook_copyright_translate"] = "如果开启了翻译插件,版权声明的的不同语言翻译在:(例如':wiki:site_copyright_en').";
56
57//search form
58$lang["monobook_search"] = "显示查找栏么?";
59
60//toolbox
61$lang["monobook_toolbox"]               = "显示'工具箱'么?";
62$lang["monobook_toolbox_default"]       = "如果显示,使用预设工具箱页面么?";
63$lang["monobook_toolbox_default_print"] = "如果使用预设工具箱页面,要显示'可打印版本'的链接么?";
64$lang["monobook_toolbox_location"]      = "如果不适用预设, 使用以下页面作为工具箱页面:";
65
66//qr code box
67$lang["monobook_qrcodebox"] = "显示当前页面URL生成的二维码么(对于手机浏览更方便)?";
68
69//donation link/button
70$lang["monobook_donate"]          = "显示捐助按钮么?";
71$lang["monobook_donate_url"]      = "使用以下捐助URL:";
72
73//TOC
74$lang["monobook_toc_position"] = "内容表(TOC)的位置";
75
76//other stuff
77$lang["monobook_breadcrumbs_position"]  = "'我的足迹'导航的位置:";
78$lang["monobook_youarehere_position"]   = "'当前位置'导航的位置:";
79$lang["monobook_cite_author"]           = "在引用文章中显示作者姓名:";
80$lang["monobook_loaduserjs"]            = "是否载入'monobook/user/user.js'?";
81$lang["monobook_closedwiki"]            = "是否为封闭Wiki(大多数页面对于未登录的游客不可显示)?";
82
83