1*a783e668SAndreas Gohr<?php 2*a783e668SAndreas Gohr/** 3*a783e668SAndreas Gohr * Chinese(Simplified) language file 4*a783e668SAndreas Gohr * 5*a783e668SAndreas Gohr * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6*a783e668SAndreas Gohr * @author ZDYX <zhangduyixiong@gmail.com> 7*a783e668SAndreas Gohr */ 8*a783e668SAndreas Gohr 9*a783e668SAndreas Gohr// settings must be present and set appropriately for the language 10*a783e668SAndreas Gohr$lang['encoding'] = 'utf-8'; 11*a783e668SAndreas Gohr$lang['direction'] = 'ltr'; 12*a783e668SAndreas Gohr 13*a783e668SAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu 14*a783e668SAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method 15*a783e668SAndreas Gohr$lang['menu'] = '还原管理器'; 16*a783e668SAndreas Gohr 17*a783e668SAndreas Gohr// custom language strings for the plugin 18*a783e668SAndreas Gohr 19*a783e668SAndreas Gohr$lang['filter'] = '搜索包含垃圾信息的页面'; 20*a783e668SAndreas Gohr$lang['revert'] = '还原选中的页面'; 21*a783e668SAndreas Gohr$lang['reverted'] = '%s 还原至修订版 %s'; 22*a783e668SAndreas Gohr$lang['removed'] = '%s 已移除'; 23*a783e668SAndreas Gohr$lang['revstart'] = '已开始还原操作。有可能需要很长时间。如果计时器在还原操作完成前停止了,请尝试还原较少的内容。'; 24*a783e668SAndreas Gohr$lang['revstop'] = '还原操作成功完成。'; 25*a783e668SAndreas Gohr$lang['note1'] = '请注意:本次搜索区分大小写'; 26*a783e668SAndreas Gohr$lang['note2'] = '请注意:本页面将被还原至不包含给定垃圾信息 <i>%s</i> 的最近的修订版。'; 27*a783e668SAndreas Gohr 28*a783e668SAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 29