xref: /dokuwiki/lib/plugins/config/lang/zh/lang.php (revision 729c3d2ed88cf36d2ade93acc5695e81427b43c9)
1*729c3d2eSAndreas Gohr<?php
2*729c3d2eSAndreas Gohr/**
3*729c3d2eSAndreas Gohr * Chinese(Simplified) language file
4*729c3d2eSAndreas Gohr *
5*729c3d2eSAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6*729c3d2eSAndreas Gohr * @author     ZDYX <zhangduyixiong@gmail.com>
7*729c3d2eSAndreas Gohr */
8*729c3d2eSAndreas Gohr
9*729c3d2eSAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu
10*729c3d2eSAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method
11*729c3d2eSAndreas Gohr$lang['menu']       = '配置设置';
12*729c3d2eSAndreas Gohr
13*729c3d2eSAndreas Gohr$lang['error']      = '由于非法参数,设置没有更新。请检查您做的改动并重新提交。
14*729c3d2eSAndreas Gohr                       <br />非法参数会用红框包围显示。';
15*729c3d2eSAndreas Gohr$lang['updated']    = '设置更新成功。';
16*729c3d2eSAndreas Gohr$lang['nochoice']   = '(没有其他可用选项)';
17*729c3d2eSAndreas Gohr$lang['locked']     = '设置文件无法更新。如果这是您没有意料到的,<br />
18*729c3d2eSAndreas Gohr                       请确保本地设置文件的名称和权限设置正确。';
19*729c3d2eSAndreas Gohr
20*729c3d2eSAndreas Gohr/* --- Config Setting Headers --- */
21*729c3d2eSAndreas Gohr$lang['_configuration_manager'] = '配置管理器'; //same as heading in intro.txt
22*729c3d2eSAndreas Gohr$lang['_header_dokuwiki'] = 'DokuWiki 设置';
23*729c3d2eSAndreas Gohr$lang['_header_plugin'] = '插件设置';
24*729c3d2eSAndreas Gohr$lang['_header_template'] = '模板设置';
25*729c3d2eSAndreas Gohr$lang['_header_undefined'] = '其他设置';
26*729c3d2eSAndreas Gohr
27*729c3d2eSAndreas Gohr/* --- Config Setting Groups --- */
28*729c3d2eSAndreas Gohr$lang['_basic'] = '基本设置';
29*729c3d2eSAndreas Gohr$lang['_display'] = '显示设置';
30*729c3d2eSAndreas Gohr$lang['_authentication'] = '认证设置';
31*729c3d2eSAndreas Gohr$lang['_anti_spam'] = '反垃圾邮件/评论设置';
32*729c3d2eSAndreas Gohr$lang['_editing'] = '编辑设置';
33*729c3d2eSAndreas Gohr$lang['_links'] = '链接设置';
34*729c3d2eSAndreas Gohr$lang['_media'] = '媒体设置';
35*729c3d2eSAndreas Gohr$lang['_advanced'] = '高级设置';
36*729c3d2eSAndreas Gohr$lang['_network'] = '网络设置';
37*729c3d2eSAndreas Gohr// The settings group name for plugins and templates can be set with
38*729c3d2eSAndreas Gohr// plugin_settings_name and template_settings_name respectively. If one
39*729c3d2eSAndreas Gohr// of these lang properties is not set, the group name will be generated
40*729c3d2eSAndreas Gohr// from the plugin or template name and the localized suffix.
41*729c3d2eSAndreas Gohr$lang['_plugin_sufix'] = '插件设置';
42*729c3d2eSAndreas Gohr$lang['_template_sufix'] = '模板设置';
43*729c3d2eSAndreas Gohr
44*729c3d2eSAndreas Gohr/* --- Undefined Setting Messages --- */
45*729c3d2eSAndreas Gohr$lang['_msg_setting_undefined'] = '设置的元数据不存在。';
46*729c3d2eSAndreas Gohr$lang['_msg_setting_no_class'] = '设置的分类不存在。';
47*729c3d2eSAndreas Gohr$lang['_msg_setting_no_default'] = '设置的默认值不存在。';
48*729c3d2eSAndreas Gohr
49*729c3d2eSAndreas Gohr/* -------------------- Config Options --------------------------- */
50*729c3d2eSAndreas Gohr
51*729c3d2eSAndreas Gohr$lang['fmode']       = '文件的创建模式';
52*729c3d2eSAndreas Gohr$lang['dmode']       = '文件夹的创建模式';
53*729c3d2eSAndreas Gohr$lang['lang']        = '语言';
54*729c3d2eSAndreas Gohr$lang['basedir']     = '根目录';
55*729c3d2eSAndreas Gohr$lang['baseurl']     = '根路径(URL)';
56*729c3d2eSAndreas Gohr$lang['savedir']     = '保存数据的目录';
57*729c3d2eSAndreas Gohr$lang['start']       = '开始页面的名称';
58*729c3d2eSAndreas Gohr$lang['title']       = '维基站点的标题';
59*729c3d2eSAndreas Gohr$lang['template']    = '模版';
60*729c3d2eSAndreas Gohr$lang['fullpath']    = '在页面底部显示完整路径';
61*729c3d2eSAndreas Gohr$lang['recent']      = '最近更新';
62*729c3d2eSAndreas Gohr$lang['breadcrumbs'] = '显示“足迹”的数量';
63*729c3d2eSAndreas Gohr$lang['youarehere']  = '显示“您在这里”';
64*729c3d2eSAndreas Gohr$lang['typography']  = '进行字符替换';
65*729c3d2eSAndreas Gohr$lang['htmlok']      = '允许嵌入式 HTML';
66*729c3d2eSAndreas Gohr$lang['phpok']       = '允许嵌入式 PHP';
67*729c3d2eSAndreas Gohr$lang['dformat']     = '日期格式(参见 PHP 的 <a href="http://www.php.net/date">date</a> 功能)';
68*729c3d2eSAndreas Gohr$lang['signature']   = '签名样式';
69*729c3d2eSAndreas Gohr$lang['toptoclevel'] = '目录的最顶层';
70*729c3d2eSAndreas Gohr$lang['maxtoclevel'] = '目录的最多层次';
71*729c3d2eSAndreas Gohr$lang['maxseclevel'] = '段落编辑的最多层次';
72*729c3d2eSAndreas Gohr$lang['camelcase']   = '对链接使用 CamelCase';
73*729c3d2eSAndreas Gohr$lang['deaccent']    = '清理页面名称';
74*729c3d2eSAndreas Gohr$lang['useheading']  = '使用“标题 H1”作为页面名称';
75*729c3d2eSAndreas Gohr$lang['refcheck']    = '检查媒体与页面的挂钩情况';
76*729c3d2eSAndreas Gohr$lang['refshow']     = '显示媒体与页面挂钩情况的数量';
77*729c3d2eSAndreas Gohr$lang['allowdebug']  = '允许调试 <b>如果您不需要调试,请勿勾选!</b>';
78*729c3d2eSAndreas Gohr
79*729c3d2eSAndreas Gohr$lang['usewordblock']= '根据 wordlist 阻止垃圾评论';
80*729c3d2eSAndreas Gohr$lang['indexdelay']  = '构建索引前的时间延滞(秒)';
81*729c3d2eSAndreas Gohr$lang['relnofollow'] = '对外部链接使用 rel="nofollow" 标签';
82*729c3d2eSAndreas Gohr$lang['mailguard']   = '弄乱邮件地址(保护用户的邮件地址)';
83*729c3d2eSAndreas Gohr
84*729c3d2eSAndreas Gohr/* Authentication Options */
85*729c3d2eSAndreas Gohr$lang['useacl']      = '使用访问控制列表(ACL)';
86*729c3d2eSAndreas Gohr$lang['autopasswd']  = '自动生成密码';
87*729c3d2eSAndreas Gohr$lang['authtype']    = '认证后台管理方式';
88*729c3d2eSAndreas Gohr$lang['passcrypt']   = '密码加密方法';
89*729c3d2eSAndreas Gohr$lang['defaultgroup']= '默认的组';
90*729c3d2eSAndreas Gohr$lang['superuser']   = '超级用户';
91*729c3d2eSAndreas Gohr$lang['profileconfirm'] = '更新个人信息时需要输入当前密码';
92*729c3d2eSAndreas Gohr$lang['disableactions'] = '停用 DokuWiki 功能';
93*729c3d2eSAndreas Gohr$lang['disableactions_check'] = '检查';
94*729c3d2eSAndreas Gohr$lang['disableactions_subscription'] = '订阅/退订';
95*729c3d2eSAndreas Gohr$lang['disableactions_wikicode'] = '查看源文件/导出源文件';
96*729c3d2eSAndreas Gohr$lang['disableactions_other'] = '其他功能(用英文逗号分隔)';
97*729c3d2eSAndreas Gohr
98*729c3d2eSAndreas Gohr/* Advanced Options */
99*729c3d2eSAndreas Gohr$lang['updatecheck'] = '自动检查更新并接收安全警告吗?开启该功能后 DokuWiki 将自动访问 splitbrain.org。';
100*729c3d2eSAndreas Gohr$lang['userewrite']  = '使用更整洁的 URL';
101*729c3d2eSAndreas Gohr$lang['useslash']    = '在 URL 中使用斜杠作为命名空间的分隔符';
102*729c3d2eSAndreas Gohr$lang['usedraft']    = '编辑时自动保存一份草稿';
103*729c3d2eSAndreas Gohr$lang['sepchar']     = '页面名称中的单词分隔符';
104*729c3d2eSAndreas Gohr$lang['canonical']   = '使用完全标准的 URL';
105*729c3d2eSAndreas Gohr$lang['autoplural']  = '在链接中检查多种格式';
106*729c3d2eSAndreas Gohr$lang['compression'] = 'attic 文件的压缩方式';
107*729c3d2eSAndreas Gohr$lang['cachetime']   = '缓存的最长时间(秒)';
108*729c3d2eSAndreas Gohr$lang['locktime']    = '独有编辑权/文件锁定的最长时间(秒)';
109*729c3d2eSAndreas Gohr$lang['fetchsize']   = 'fetch.php 能从外部下载的最大文件大小(字节)';
110*729c3d2eSAndreas Gohr$lang['notify']      = '发送更改通知给这个邮件地址';
111*729c3d2eSAndreas Gohr$lang['registernotify'] = '发送新注册用户的信息给这个邮件地址';
112*729c3d2eSAndreas Gohr$lang['mailfrom']    = '自动发送邮件时使用的邮件地址';
113*729c3d2eSAndreas Gohr$lang['gzip_output'] = '对 xhtml 使用 gzip 内容编码';
114*729c3d2eSAndreas Gohr$lang['gdlib']       = 'GD 库版本';
115*729c3d2eSAndreas Gohr$lang['im_convert']  = 'ImageMagick 转换工具的路径';
116*729c3d2eSAndreas Gohr$lang['jpg_quality'] = 'JPG 压缩质量(0-100)';
117*729c3d2eSAndreas Gohr$lang['spellchecker']= '启用拼写检查';
118*729c3d2eSAndreas Gohr$lang['subscribers'] = '启用页面订阅支持';
119*729c3d2eSAndreas Gohr$lang['compress']    = '使 CSS 和 javascript 输出更紧密';
120*729c3d2eSAndreas Gohr$lang['hidepages']   = '隐藏匹配的界面(正则表达式)';
121*729c3d2eSAndreas Gohr$lang['send404']     = '发送 "HTTP 404/页面没有找到" 错误信息给不存在的页面';
122*729c3d2eSAndreas Gohr$lang['sitemap']     = '生成 Google sitemap(天)';
123*729c3d2eSAndreas Gohr
124*729c3d2eSAndreas Gohr$lang['rss_type']    = 'XML feed 类型';
125*729c3d2eSAndreas Gohr$lang['rss_linkto']  = 'XML feed 链接到';
126*729c3d2eSAndreas Gohr$lang['rss_update']  = 'XML feed 升级间隔(秒)';
127*729c3d2eSAndreas Gohr$lang['recent_days'] = '保留多少天的最近更改(天)';
128*729c3d2eSAndreas Gohr
129*729c3d2eSAndreas Gohr/* Target options */
130*729c3d2eSAndreas Gohr$lang['target____wiki']      = '内部链接的目标窗口';
131*729c3d2eSAndreas Gohr$lang['target____interwiki'] = 'Interwiki 链接的目标窗口';
132*729c3d2eSAndreas Gohr$lang['target____extern']    = '外部链接的目标窗口';
133*729c3d2eSAndreas Gohr$lang['target____media']     = '媒体文件链接的目标窗口';
134*729c3d2eSAndreas Gohr$lang['target____windows']   = 'Windows 链接的目标窗口';
135*729c3d2eSAndreas Gohr
136*729c3d2eSAndreas Gohr/* Proxy Options */
137*729c3d2eSAndreas Gohr$lang['proxy____host'] = '代理服务器的名称';
138*729c3d2eSAndreas Gohr$lang['proxy____port'] = '代理服务器的端口';
139*729c3d2eSAndreas Gohr$lang['proxy____user'] = '代理服务器的用户名';
140*729c3d2eSAndreas Gohr$lang['proxy____pass'] = '代理服务器的密码';
141*729c3d2eSAndreas Gohr$lang['proxy____ssl']  = '使用 SSL 连接到代理服务器';
142*729c3d2eSAndreas Gohr
143*729c3d2eSAndreas Gohr/* Safemode Hack */
144*729c3d2eSAndreas Gohr$lang['safemodehack'] = '启用 Safemode Hack';
145*729c3d2eSAndreas Gohr$lang['ftp____host'] = 'Safemode Hack 的 FTP 服务器';
146*729c3d2eSAndreas Gohr$lang['ftp____port'] = 'Safemode Hack 的 FTP 端口';
147*729c3d2eSAndreas Gohr$lang['ftp____user'] = 'Safemode Hack 的 FTP 用户名';
148*729c3d2eSAndreas Gohr$lang['ftp____pass'] = 'Safemode Hack 的 FTP 密码';
149*729c3d2eSAndreas Gohr$lang['ftp____root'] = 'Safemode Hack 的 FTP 根路径';
150*729c3d2eSAndreas Gohr
151*729c3d2eSAndreas Gohr/* userewrite options */
152*729c3d2eSAndreas Gohr$lang['userewrite_o_0'] = '无';
153*729c3d2eSAndreas Gohr$lang['userewrite_o_1'] = '.htaccess';
154*729c3d2eSAndreas Gohr$lang['userewrite_o_2'] = 'DokuWiki 内部控制';
155*729c3d2eSAndreas Gohr
156*729c3d2eSAndreas Gohr/* deaccent options */
157*729c3d2eSAndreas Gohr$lang['deaccent_o_0'] = '关闭';
158*729c3d2eSAndreas Gohr$lang['deaccent_o_1'] = '移除重音符号';
159*729c3d2eSAndreas Gohr$lang['deaccent_o_2'] = 'romanize';
160*729c3d2eSAndreas Gohr
161*729c3d2eSAndreas Gohr/* gdlib options */
162*729c3d2eSAndreas Gohr$lang['gdlib_o_0'] = 'GD 库不可用';
163*729c3d2eSAndreas Gohr$lang['gdlib_o_1'] = '1.x 版';
164*729c3d2eSAndreas Gohr$lang['gdlib_o_2'] = '自动检测';
165*729c3d2eSAndreas Gohr
166*729c3d2eSAndreas Gohr/* rss_type options */
167*729c3d2eSAndreas Gohr$lang['rss_type_o_rss']  = 'RSS 0.91';
168*729c3d2eSAndreas Gohr$lang['rss_type_o_rss1'] = 'RSS 1.0';
169*729c3d2eSAndreas Gohr$lang['rss_type_o_rss2'] = 'RSS 2.0';
170*729c3d2eSAndreas Gohr$lang['rss_type_o_atom'] = 'Atom 0.3';
171*729c3d2eSAndreas Gohr
172*729c3d2eSAndreas Gohr/* rss_linkto options */
173*729c3d2eSAndreas Gohr$lang['rss_linkto_o_diff']    = '差别查看';
174*729c3d2eSAndreas Gohr$lang['rss_linkto_o_page']    = '已修订的页面';
175*729c3d2eSAndreas Gohr$lang['rss_linkto_o_rev']     = '修订列表';
176*729c3d2eSAndreas Gohr$lang['rss_linkto_o_current'] = '当前页面';
177*729c3d2eSAndreas Gohr
178*729c3d2eSAndreas Gohr/* compression options */
179*729c3d2eSAndreas Gohr$lang['compression_o_0']   = '无';
180*729c3d2eSAndreas Gohr$lang['compression_o_gz']  = 'gzip';
181*729c3d2eSAndreas Gohr$lang['compression_o_bz2'] = 'bz2';
182