summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/blog/lang/zh
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/lib/plugins/blog/lang/zh')
-rw-r--r--platform/www/lib/plugins/blog/lang/zh/lang.php36
-rw-r--r--platform/www/lib/plugins/blog/lang/zh/settings.php38
2 files changed, 74 insertions, 0 deletions
diff --git a/platform/www/lib/plugins/blog/lang/zh/lang.php b/platform/www/lib/plugins/blog/lang/zh/lang.php
new file mode 100644
index 0000000..3bbcd50
--- /dev/null
+++ b/platform/www/lib/plugins/blog/lang/zh/lang.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * English language file
+ *
+ * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
+ * @author Esther Brunner <wikidesign@gmail.com>
+ */
+
+// custom language strings for the plugin
+$lang['blog'] = '博客';
+$lang['older'] = '更早的文章';
+$lang['newer'] = '更新的文章';
+$lang['newentry'] = '新建文章:';
+
+$lang['missing_includeplugin'] = '要使用博客功能必须安装 Include 插件。';
+$lang['missing_pagelistplugin'] = '要使用存档列表功能必须安装 Pagelist 插件。';
+$lang['missing_tagplugin'] = '要使用标签 refinements 必须安装 Tag 插件。';
+
+$lang['autoarchive'] = '%3$s年%2$s有%1$d篇文章';
+$lang['month_01'] = '一月';
+$lang['month_02'] = '二月';
+$lang['month_03'] = '三月';
+$lang['month_04'] = '四月';
+$lang['month_05'] = '五月';
+$lang['month_06'] = '六月';
+$lang['month_07'] = '七月';
+$lang['month_08'] = '八月';
+$lang['month_09'] = '九月';
+$lang['month_10'] = '十月';
+$lang['month_11'] = '十一月';
+$lang['month_12'] = '十二月';
+
+$lang['entries'] = '文章';
+$lang['entry'] = '文章';
+$lang['archive_title'] = '文章历史';
+//Setup VIM: ex: et ts=2 enc=utf-8 :
diff --git a/platform/www/lib/plugins/blog/lang/zh/settings.php b/platform/www/lib/plugins/blog/lang/zh/settings.php
new file mode 100644
index 0000000..6ec12bb
--- /dev/null
+++ b/platform/www/lib/plugins/blog/lang/zh/settings.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * English language file
+ *
+ * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
+ * @author Esther Brunner <wikidesign@gmail.com>
+ */
+
+// for the configuration manager
+$lang['namespace'] = '博客默认命名空间';
+
+$lang['formposition'] = '新文章的表单位置';
+$lang['formposition_o_top'] = '顶上';
+$lang['formposition_o_bottom'] = '底下';
+$lang['formposition_o_none'] = '不显示';
+
+$lang['newentrytitle'] = '新文章表单的标题';
+
+$lang['dateprefix'] = '为新文章 ID 添加日期前缀';
+
+$lang['sortkey'] = '文章排序按';
+$lang['sortkey_o_cdate'] = '创建时间';
+$lang['sortkey_o_mdate'] = '修改时间';
+$lang['sortkey_o_pagename'] = '页面名称';
+$lang['sortkey_o_id'] = '页面 ID';
+$lang['sortkey_o_title'] = '标题';
+
+$lang['sortorder'] = '排序顺序';
+$lang['sortorder_o_ascending'] = '升序';
+$lang['sortorder_o_descending'] = '降序';
+
+$lang['excluded_pages'] = '从博客列表中排除特定的页面 (要求是正则表达式)';
+
+$lang['showhistogram'] = '在存档页面上显示直方图';
+$lang['max_months'] = '在直方图上最多显示月份数';
+$lang['histogram_height'] = '直方图的高度 (单位像素)';
+
+// vim:ts=4:sw=4:et:enc=utf-8: