diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-10-26 22:50:02 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-10-26 22:50:02 +0200 |
commit | 729c3d2ed88cf36d2ade93acc5695e81427b43c9 (patch) | |
tree | 00419ea2d54cc37740614f2cd772a7821ca2da05 /lib/plugins/plugin | |
parent | 51c546a917b3b8a24d1339fc16d8f2398a293ddf (diff) | |
download | rpg-729c3d2ed88cf36d2ade93acc5695e81427b43c9.tar.gz rpg-729c3d2ed88cf36d2ade93acc5695e81427b43c9.tar.bz2 |
Traditional Chinese update
darcs-hash:20061026205002-7ad00-70f2acf8203e01d1df93e77ce7d8bdb1f4ddac7b.gz
Diffstat (limited to 'lib/plugins/plugin')
-rw-r--r-- | lib/plugins/plugin/lang/zh/admin_plugin.txt | 6 | ||||
-rw-r--r-- | lib/plugins/plugin/lang/zh/lang.php | 72 |
2 files changed, 78 insertions, 0 deletions
diff --git a/lib/plugins/plugin/lang/zh/admin_plugin.txt b/lib/plugins/plugin/lang/zh/admin_plugin.txt new file mode 100644 index 000000000..c01e80719 --- /dev/null +++ b/lib/plugins/plugin/lang/zh/admin_plugin.txt @@ -0,0 +1,6 @@ +====== 插件管理器 ====== + +本页中您可以管理与 Dokuwiki [[doku>wiki:plugins|插件]] 相关的选项。 +要通过插件管理器正常下载并安装插件,插件所在的文件夹必须可写。 + + diff --git a/lib/plugins/plugin/lang/zh/lang.php b/lib/plugins/plugin/lang/zh/lang.php new file mode 100644 index 000000000..8c230b8fd --- /dev/null +++ b/lib/plugins/plugin/lang/zh/lang.php @@ -0,0 +1,72 @@ +<?php +/** + * english language file + * + * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) + * @author ZDYX <zhangduyixiong@gmail.com> + */ + +$lang['menu'] = '插件管理器'; + +// custom language strings for the plugin +$lang['download'] = "下载并安装新的插件"; +$lang['manage'] = "已安装的插件"; + +$lang['btn_info'] = '信息'; +$lang['btn_update'] = '升级'; +$lang['btn_delete'] = '删除'; +$lang['btn_settings'] = '设置'; +$lang['btn_download'] = '下载'; +$lang['btn_enable'] = '保存'; + +$lang['url'] = 'URL'; + +$lang['installed'] = '已安装:'; +$lang['lastupdate'] = '最后更新于:'; +$lang['source'] = '来源:'; +$lang['unknown'] = '未知'; + +// ..ing = header message +// ..ed = success message + +$lang['updating'] = '正在升级...'; +$lang['updated'] = '插件 %s 升级成功'; +$lang['updates'] = '下列插件升级成功:'; +$lang['update_none'] = '未找到更新。'; + +$lang['deleting'] = '正在删除...'; +$lang['deleted'] = '插件 %s 已删除'; + +$lang['downloading'] = '正在下载...'; +$lang['downloaded'] = '插件 %s 安装成功'; +$lang['downloads'] = '下列插件安装成功:'; +$lang['download_none'] = '未找到插件,或下载和安装过程中出现了未知错误。'; + +// info titles +$lang['plugin'] = '插件:'; +$lang['components'] = '组件'; +$lang['noinfo'] = '该插件没有任何信息,有可能是无效插件。'; +$lang['name'] = '名称:'; +$lang['date'] = '日期:'; +$lang['type'] = '类别:'; +$lang['desc'] = '描述:'; +$lang['author'] = '作者:'; +$lang['www'] = '网址:'; + +// error messages +$lang['error'] = '产生了未知错误。'; +$lang['error_download'] = '无法下载插件:%s'; +$lang['error_badurl'] = 'URL 可能有问题 - 从 URL 中无法得知文件名'; +$lang['error_dircreate'] = '无法创建用于接收下载文件的'; +$lang['error_decompress'] = '插件管理器无法解压下载的文件。'. + '这可能是由于下载出现错误,遇到这种情况,请您再次尝试;'. + '或者是压缩格式无法识别,遇到这种情况,您需要'. + '手动下载并安装该插件。'; +$lang['error_copy'] = '尝试安装插件 <em>%s</em> 的相关文件时产生一个复制错误:'. + '磁盘空间已满或文件访问权限错误。'. + '这可能是由于一个安装了一部分的插件,并使得您的维基系统'. + '不稳定。'; +$lang['error_delete'] = '尝试删除插件 <em>%s</em> 时产生一个错误。'. + '最有可能的情况是文件或路径的访问权限不够'; + +//Setup VIM: ex: et ts=4 enc=utf-8 : |