diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-06-25 19:20:17 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-06-25 19:20:17 +0200 |
commit | a783e668b3ca91b33068fe6274c29d62d75b14ef (patch) | |
tree | ac70173a688cc3ea616aa0450a800ea80ee0e255 /lib/plugins/revert | |
parent | 038a0931f63c4ccf4b9f1de564cd3c6b6b43c58a (diff) | |
download | rpg-a783e668b3ca91b33068fe6274c29d62d75b14ef.tar.gz rpg-a783e668b3ca91b33068fe6274c29d62d75b14ef.tar.bz2 |
Chinese language updates
darcs-hash:20070625172017-7ad00-efb5005b0e5c892502679dee66db81ccaf532697.gz
Diffstat (limited to 'lib/plugins/revert')
-rw-r--r-- | lib/plugins/revert/lang/zh/intro.txt | 4 | ||||
-rw-r--r-- | lib/plugins/revert/lang/zh/lang.php | 28 |
2 files changed, 32 insertions, 0 deletions
diff --git a/lib/plugins/revert/lang/zh/intro.txt b/lib/plugins/revert/lang/zh/intro.txt new file mode 100644 index 000000000..f1622c566 --- /dev/null +++ b/lib/plugins/revert/lang/zh/intro.txt @@ -0,0 +1,4 @@ +====== 还原管理器 ====== + +该页面能帮助您的页面从垃圾信息的攻击中自动还原过来。 +请先输入关键词搜索包含垃圾信息的页面(如某个垃圾信息的 URL),然后请确定搜索结果的确包含垃圾信息,并将其还原至先前的修订版。
\ No newline at end of file diff --git a/lib/plugins/revert/lang/zh/lang.php b/lib/plugins/revert/lang/zh/lang.php new file mode 100644 index 000000000..82fd43cb6 --- /dev/null +++ b/lib/plugins/revert/lang/zh/lang.php @@ -0,0 +1,28 @@ +<?php +/** + * Chinese(Simplified) language file + * + * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) + * @author ZDYX <zhangduyixiong@gmail.com> + */ + +// settings must be present and set appropriately for the language +$lang['encoding'] = 'utf-8'; +$lang['direction'] = 'ltr'; + +// for admin plugins, the menu prompt to be displayed in the admin menu +// if set here, the plugin doesn't need to override the getMenuText() method +$lang['menu'] = '还原管理器'; + +// custom language strings for the plugin + +$lang['filter'] = '搜索包含垃圾信息的页面'; +$lang['revert'] = '还原选中的页面'; +$lang['reverted'] = '%s 还原至修订版 %s'; +$lang['removed'] = '%s 已移除'; +$lang['revstart'] = '已开始还原操作。有可能需要很长时间。如果计时器在还原操作完成前停止了,请尝试还原较少的内容。'; +$lang['revstop'] = '还原操作成功完成。'; +$lang['note1'] = '请注意:本次搜索区分大小写'; +$lang['note2'] = '请注意:本页面将被还原至不包含给定垃圾信息 <i>%s</i> 的最近的修订版。'; + +//Setup VIM: ex: et ts=4 enc=utf-8 : |