code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class googlesitemap_item_model extends model { public function __construct() { $this->items = array(); parent::__construct(); } /** *@access public *@param string $loc 位置 *@param string $lastmod 日期格式 YYYY-MM-DD *@param string $changefreq 更新频率的单位 (always, hourly, daily, weekly, monthly, yearly, never) *@param string $priority 更新频率 0-1 */ function google_sitemap_item($loc, $lastmod = '', $changefreq = '', $priority = '') { $this->loc = $loc; $this->lastmod = $lastmod; $this->changefreq = $changefreq; $this->priority = $priority; } } ?>
108wo
phpcms/model/googlesitemap_item_model.class.php
PHP
asf20
819
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class special_c_data_model extends model { public $table_name; function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'special_c_data'; parent::__construct(); } } ?>
108wo
phpcms/model/special_c_data_model.class.php
PHP
asf20
367
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class collection_content_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'collection_content'; parent::__construct(); } } ?>
108wo
phpcms/model/collection_content_model.class.php
PHP
asf20
360
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class keylink_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'keylink'; parent::__construct(); } } ?>
108wo
phpcms/model/keylink_model.class.php
PHP
asf20
367
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class member_group_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'member_group'; parent::__construct(); } } ?>
108wo
phpcms/model/member_group_model.class.php
PHP
asf20
348
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class special_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'special'; parent::__construct(); } } ?>
108wo
phpcms/model/special_model.class.php
PHP
asf20
331
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class site_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'site'; parent::__construct(); } } ?>
108wo
phpcms/model/site_model.class.php
PHP
asf20
332
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class sitemodel_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'model'; parent::__construct(); $this->charset = $this->db_config[$this->db_setting]['charset']; } public function sql_execute($sql) { $sqls = $this->sql_split($sql); if(is_array($sqls)) { foreach($sqls as $sql) { if(trim($sql) != '') { $this->db->query($sql); } } } else { $this->db->query($sqls); } return true; } public function sql_split($sql) { global $db; if($this->db->version() > '4.1' && $this->charset) { $sql = preg_replace("/TYPE=(InnoDB|MyISAM|MEMORY)( DEFAULT CHARSET=[^; ]+)?/", "ENGINE=\\1 DEFAULT CHARSET=".$this->charset,$sql); } if($this->db_tablepre != "phpcms_") $sql = str_replace("phpcms_", $this->db_tablepre, $sql); $sql = str_replace("\r", "\n", $sql); $ret = array(); $num = 0; $queriesarray = explode(";\n", trim($sql)); unset($sql); foreach($queriesarray as $query) { $ret[$num] = ''; $queries = explode("\n", trim($query)); $queries = array_filter($queries); foreach($queries as $query) { $str1 = substr($query, 0, 1); if($str1 != '#' && $str1 != '-') $ret[$num] .= $query; } $num++; } return($ret); } /** * 删除表 * */ public function drop_table($tablename) { $tablename = $this->db_tablepre.$tablename; $tablearr = $this->db->list_tables(); if(in_array($tablename, $tablearr)) { return $this->db->query("DROP TABLE $tablename"); } else { return false; } } /** * 修改member表会员模型 * @param unknown_type $tablename */ public function change_member_modelid($from_modelid, $to_modelid) { $tablename = $this->db_tablepre.'member'; $this->db->update(array('modelid'=>$to_modelid), $tablename, "modelid='$from_modelid'"); } } ?>
108wo
phpcms/model/sitemodel_model.class.php
PHP
asf20
2,091
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class page_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'page'; parent::__construct(); } public function create_html($catid) { $this->html = pc_base::load_app_class('html', 'content'); $this->html->category($catid,1); } } ?>
108wo
phpcms/model/page_model.class.php
PHP
asf20
500
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class downservers_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'downservers'; parent::__construct(); } } ?>
108wo
phpcms/model/downservers_model.class.php
PHP
asf20
339
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class order_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'order'; parent::__construct(); } /** * 创建清单 * insert($data, $return_insert_id = false, $replace = false) */ public function add($data) { $insertid = $this->insert($data, true); if($insertid) { $data['id'] = $insertid; $data['oid'] = date('ymd', time()) . $insertid; $this->update(array('oid' => $data['oid']), 'id='.$insertid); } return $data; } } ?>
108wo
phpcms/model/order_model.class.php
PHP
asf20
697
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class googlesitemap_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->header = "<\x3Fxml version=\"1.0\" encoding=\"UTF-8\"\x3F>\n\t<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">"; $this->charset = "UTF-8"; $this->footer = "\t</urlset>\n"; $this->items = array(); parent::__construct(); } /** * 增加一个新的子项 *@access public *@param google_sitemap item $new_item */ function add_item($new_item) { $this->items[] = $new_item; } /** * 生成XML文档 *@access public *@param string $file_name 如果提供了文件名则生成文件,否则返回字符串. *@return [void|string] */ function build( $file_name = null ) { $map = $this->header . "\n"; foreach ($this->items AS $item) { $map .= "\t\t<url>\n\t\t\t<loc>$item->loc</loc>\n"; // lastmod if ( !empty( $item->lastmod ) ) $map .= "\t\t\t<lastmod>$item->lastmod</lastmod>\n"; // changefreq if ( !empty( $item->changefreq ) ) $map .= "\t\t\t<changefreq>$item->changefreq</changefreq>\n"; // priority if ( !empty( $item->priority ) ) $map .= "\t\t\t<priority>$item->priority</priority>\n"; $map .= "\t\t</url>\n\n"; } $map .= $this->footer . "\n"; if (!is_null($file_name)) { return file_put_contents($file_name, $map); } else { return $map; } } } ?>
108wo
phpcms/model/googlesitemap_model.class.php
PHP
asf20
1,839
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class collection_history_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'collection_history'; parent::__construct(); } } ?>
108wo
phpcms/model/collection_history_model.class.php
PHP
asf20
360
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class poster_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'poster'; parent::__construct(); } } ?>
108wo
phpcms/model/poster_model.class.php
PHP
asf20
329
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class admin_role_model extends model { public $table_name = ''; function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'admin_role'; parent::__construct(); } } ?>
108wo
phpcms/model/admin_role_model.class.php
PHP
asf20
364
<?php defined('IN_PHPCMS') or exit('No permission resources.'); if(!defined('CACHE_MODEL_PATH')) define('CACHE_MODEL_PATH',PHPCMS_PATH.'caches'.DIRECTORY_SEPARATOR.'caches_model'.DIRECTORY_SEPARATOR.'caches_data'.DIRECTORY_SEPARATOR); pc_base::load_sys_class('model', '', 0); class collection_node_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'collection_node'; parent::__construct(); } } ?>
108wo
phpcms/model/collection_node_model.class.php
PHP
asf20
530
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class linkage_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'linkage'; parent::__construct(); } } ?>
108wo
phpcms/model/linkage_model.class.php
PHP
asf20
338
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class search_keyword_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'search_keyword'; parent::__construct(); } } ?>
108wo
phpcms/model/search_keyword_model.class.php
PHP
asf20
379
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class tags_content_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'tags_content'; parent::__construct(); } } ?>
108wo
phpcms/model/tags_content_model.class.php
PHP
asf20
348
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class comment_table_model extends model { public $table_name; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'comment'; $this->table_name = 'comment_table'; parent::__construct(); } /** * 修改表记录总数 * @param integer $tableid 表ID * @param string $num 要修改的数值(如果要添加请使用+=,如果要减少请使用-=) */ public function edit_total($tableid, $num) { return $this->update(array('total'=>$num), array('tableid'=>$tableid)); } /** * 创建新的评论数据表 * @param integer $id 创建新的评论表 */ public function creat_table($id = '') { if (empty($id)) { $id = $this->insert(array('creat_at'=>SYS_TIME), true); } if ($this->query("CREATE TABLE `".$this->db_tablepre."comment_data_".$id."` (`id` int(10) unsigned NOT NULL auto_increment,`commentid` char(30) NOT NULL default '',`siteid` smallint(5) NOT NULL default '0',`userid` int(10) unsigned default '0',`username` varchar(20) default NULL,`creat_at` int(10) default 0,`ip` varchar(15) default NULL,`status` tinyint(1) default '0',`content` text,`direction` tinyint(1) default '0',`support` mediumint(8) unsigned default '0',`reply` tinyint(1) NOT NULL default '0',PRIMARY KEY (`id`),KEY `commentid` (`commentid`),KEY `direction` (`direction`), KEY `siteid` (`siteid`),KEY `support` (`support`)) ENGINE=MyISAM DEFAULT CHARSET=".$this->db_config[$this->db_setting]['charset'].";")) { return $id; } else { return false; } } } ?>
108wo
phpcms/model/comment_table_model.class.php
PHP
asf20
1,684
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class pay_account_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'pay_account'; parent::__construct(); } } ?>
108wo
phpcms/model/pay_account_model.class.php
PHP
asf20
373
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class pay_spend_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'pay_spend'; parent::__construct(); } } ?>
108wo
phpcms/model/pay_spend_model.class.php
PHP
asf20
369
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class admin_panel_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'admin_panel'; parent::__construct(); } } ?>
108wo
phpcms/model/admin_panel_model.class.php
PHP
asf20
346
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class special_content_model extends model { public $table_name; function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'special_content'; parent::__construct(); } } ?>
108wo
phpcms/model/special_content_model.class.php
PHP
asf20
369
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class announce_model extends model { public $table_name; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'announce'; parent::__construct(); } } ?>
108wo
phpcms/model/announce_model.class.php
PHP
asf20
365
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class poster_space_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'poster_space'; parent::__construct(); } } ?>
108wo
phpcms/model/poster_space_model.class.php
PHP
asf20
341
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class message_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'message'; $this->_username = param::get_cookie('_username'); $this->_userid = param::get_cookie('_userid'); parent::__construct(); } /** * * 检查当前用户短消息相关权限 * @param $userid 用户ID */ public function messagecheck($userid){ $member_arr = get_memberinfo($this->_userid); $groups = getcache('grouplist','member'); if($groups[$member_arr['groupid']]['allowsendmessage']==0){ showmessage('对不起你没有权限发短消息',HTTP_REFERER); }else { //判断是否到限定条数 $num = $this->get_membermessage($this->_username); if($num>=$groups[$member_arr['groupid']]['allowmessage']){ showmessage('你的短消息条数已达最大值!',HTTP_REFERER); } } } /** * * 获取用户发消息信息 ... */ public function get_membermessage($username){ $arr = $this->select(array('send_from_id'=>$username)); return count($arr); } public function add_message($tousername,$username,$subject,$content) { $message = array (); $message['send_from_id'] = $username; $message['send_to_id'] = $tousername; $message['subject'] = $subject; $message['content'] = $content; $message['message_time'] = SYS_TIME; $message['status'] = '1'; $message['folder'] = 'inbox'; if($message['send_from_id']==""){ $message['send_from_id'] = $this->_username; } if(empty($message['content'])){ showmessage('发信内空不能为空!',HTTP_REFERER); } $messageid = $this->insert($message,true); if(!$messageid){ return FALSE; }else { return true; } } } ?>
108wo
phpcms/model/message_model.class.php
PHP
asf20
1,941
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class release_point_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'release_point'; parent::__construct(); } } ?>
108wo
phpcms/model/release_point_model.class.php
PHP
asf20
350
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class admin_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'admin'; parent::__construct(); } } ?>
108wo
phpcms/model/admin_model.class.php
PHP
asf20
334
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class vote_subject_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'vote_subject'; parent::__construct(); } /** * 说明: 取得投票信息, 返回数组 * @param $subjectid 投票ID */ function get_subject($subjectid) { if(!$subjectid) return FALSE; return $this->get_one(array('subjectid'=>$subjectid)); } } ?>
108wo
phpcms/model/vote_subject_model.class.php
PHP
asf20
569
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class ipbanned_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'ipbanned'; parent::__construct(); } /** * * 把IP进行格式化,统一为IPV4, 参数:$op --操作类型 max 表示格式为该段的最大值,比如:192.168.1.* 格式化为:192.168.1.255 ,其它任意值表示格式化最小值: 192.168.1.1 * @param $op 操作类型,值为(min,max) * @param $ip 要处理的IP段(127.0.0.*) 或者IP值 (127.0.0.5) */ public function convert_ip($op,$ip){ $arr_ip = explode(".",$ip); $arr_temp = array(); $i = 0; $ip_val= $op== "max" ? "255":"1"; foreach($arr_ip as $key => $val ){ $i++; $val = $val== "*" ? $ip_val:$val; $arr_temp[]= $val; } for($i=4-$i;$i>0;$i--){ $arr_temp[]=$ip_val; } $comma = ""; foreach($arr_temp as $v){ $result.= $comma.$v; $comma = "."; } return $result; } /** * * 判断IP是否被限并返回 * @param $ip 当前IP * @param $ip_from 开始IP段 * @param $ip_to 结束IP段 */ public function ipforbidden($ip,$ip_from,$ip_to){ $from = strcmp($ip,$ip_from); $to = strcmp($ip,$ip_to); if($from >=0 && $to <= 0){ return 0; } else { return 1; } } /** * * IP禁止判断接口,供外部调用 ... */ public function check_ip(){ $ip_array = array(); //当前IP $ip = ip(); //加载IP禁止缓存 $ipbanned_cache = getcache('ipbanned','commons'); if(!empty($ipbanned_cache)) { foreach($ipbanned_cache as $data){ $ip_array[$data['ip']] = $data['ip']; //是否是IP段 if(strpos($data['ip'],'*')){ $ip_min = $this->convert_ip("min",$data['ip']); $ip_max = $this->convert_ip("max",$data['ip']); $result = $this->ipforbidden($ip,$ip_min,$ip_max); if($result==0 && $data['expires']>SYS_TIME){ //被封 showmessage('你在IP禁止段内,所以禁止你访问'); } } else { //不是IP段,用绝对匹配 if($ip==$data['ip']&& $data['expires']>SYS_TIME){ showmessage('IP地址绝对匹配,禁止你访问'); } } } } } } ?>
108wo
phpcms/model/ipbanned_model.class.php
PHP
asf20
2,468
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class vote_option_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; //$this->db_tablepre = $this->db_config[$this->db_setting]['tablepre']; $this->table_name = 'vote_option'; parent::__construct(); } /** * 说明:添加投票选项操作 * @param $data 选项数组 * @param $subjectid 投票标题ID */ function add_options($data, $subjectid,$siteid) { //判断传递的数据类型是否正确 if(!is_array($data)) return FALSE; if(!$subjectid) return FALSE; foreach($data as $key=>$val) { if(trim($val)=='') continue; $newoption=array( 'subjectid'=>$subjectid, 'siteid'=>$siteid, 'option'=>$val, 'image'=>'', 'listorder'=>0 ); $this->insert($newoption); } return TRUE; } /** * 说明:更新选项 * @param $data 数组 Array ( [44] => 443 [43(optionid)] => 334(option 值) ) * @param $subjectid */ function update_options($data) { //判断传递的数据类型是否正确 if(!is_array($data)) return FALSE; foreach($data as $key=>$val) { if(trim($val)=='') continue; $newoption=array( 'option'=>$val, ); $this->update($newoption,array('optionid'=>$key)); } return TRUE; } /** * 说明:选项排序 * @param $data 选项数组 */ function set_listorder($data) { if(!is_array($data)) return FALSE; foreach($data as $key=>$val) { $val = intval($val); $key = intval($key); $this->db->query("update $tbname set listorder='$val' where {$keyid}='$key'"); } return $this->db->affected_rows(); } /** * 说明:删除指定 投票ID对应的选项 * @param $data * @param $subjectid */ function del_options($subjectid) { if(!$subjectid) return FALSE; $this->delete(array('subjectid'=>$subjectid)); return TRUE; } /** * 说明: 查询 该投票的 选项 * @param $subjectid 投票ID */ function get_options($subjectid) { if(!$subjectid) return FALSE; return $this->select(array('subjectid'=>$subjectid),'*','',$order = 'optionid ASC'); } /** * 说明:删除单条对应ID的选项记录 * @param $optionid 投票选项ID */ function del_option($optionid) { if(!$optionid) return FALSE; return $this->delete(array('optionid'=>$optionid)); } } ?>
108wo
phpcms/model/vote_option_model.class.php
PHP
asf20
2,540
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class queue_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'queue'; parent::__construct(); } /** * 添加同步队列 * @param string $type 操作类型{add:添加,edit:修改,del:删除} * @param string $path 文档地址 * @param integer $siteid 站点ID */ final public function add_queue($type = 'add', $path, $siteid = '') { if (empty($siteid)) $siteid = get_siteid(); $sites = pc_base::load_app_class('sites', 'admin'); $site = $sites->get_by_id($siteid); if (empty($site['release_point'])) return false; if ($r = $this->get_one(array('type'=>$type, 'path'=>$path, 'siteid'=>$siteid), 'id')) { if ($this->update(array('status1'=>'0', 'status2'=>'0', 'status3'=>'0', 'status4'=>'0', 'times'=>SYS_TIME), array('id'=>$r['id']))) { return true; } else { return false; } } else { if ($this->insert(array('type'=>$type, 'path'=>$path, 'siteid'=>$siteid, 'times'=>SYS_TIME))) { return true; } else { return false; } } } } ?>
108wo
phpcms/model/queue_model.class.php
PHP
asf20
1,261
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class plugin_var_model extends model { public $table_name; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'plugin_var'; parent::__construct(); } } ?>
108wo
phpcms/model/plugin_var_model.class.php
PHP
asf20
369
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class session_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'session'; parent::__construct(); } } ?>
108wo
phpcms/model/session_model.class.php
PHP
asf20
338
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class menu_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'menu'; parent::__construct(); } } ?>
108wo
phpcms/model/menu_model.class.php
PHP
asf20
359
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class favorite_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'favorite'; parent::__construct(); } } ?>
108wo
phpcms/model/favorite_model.class.php
PHP
asf20
344
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class friend_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'friend'; parent::__construct(); } } ?>
108wo
phpcms/model/friend_model.class.php
PHP
asf20
340
<?php defined('IN_PHPCMS') or exit('No permission resources.'); if(!defined('CACHE_MODEL_PATH')) define('CACHE_MODEL_PATH',PHPCMS_PATH.'caches'.DIRECTORY_SEPARATOR.'caches_model'.DIRECTORY_SEPARATOR.'caches_data'.DIRECTORY_SEPARATOR); pc_base::load_sys_class('model', '', 0); class member_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'member'; parent::__construct(); } /** * 重置模型操作表表 * @param string $modelid 模型id */ public function set_model($modelid = '') { if($modelid) { $model = getcache('member_model', 'commons'); $this->table_name = $this->db_tablepre.$model[$modelid]['tablename']; } else { $this->table_name = $this->db_tablepre.'member'; } } } ?>
108wo
phpcms/model/member_model.class.php
PHP
asf20
856
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class keyword_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'keyword'; parent::__construct(); } } ?>
108wo
phpcms/model/keyword_model.class.php
PHP
asf20
365
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class member_menu_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'member_menu'; parent::__construct(); } } ?>
108wo
phpcms/model/member_menu_model.class.php
PHP
asf20
346
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class mood_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'mood'; parent::__construct(); } } ?>
108wo
phpcms/model/mood_model.class.php
PHP
asf20
332
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class module_model extends model { public $table_name = ''; function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'module'; parent::__construct(); } } ?>
108wo
phpcms/model/module_model.class.php
PHP
asf20
356
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class collection_program_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'collection_program'; parent::__construct(); } } ?>
108wo
phpcms/model/collection_program_model.class.php
PHP
asf20
360
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class tags_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'tags'; parent::__construct(); } } ?>
108wo
phpcms/model/tags_model.class.php
PHP
asf20
332
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class position_data_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'position_data'; parent::__construct(); } } ?>
108wo
phpcms/model/position_data_model.class.php
PHP
asf20
377
<?php defined('IN_PHPCMS') or exit('No permission resources.'); if(!defined('CACHE_MODEL_PATH')) define('CACHE_MODEL_PATH',PHPCMS_PATH.'caches'.DIRECTORY_SEPARATOR.'caches_model'.DIRECTORY_SEPARATOR.'caches_data'.DIRECTORY_SEPARATOR); pc_base::load_sys_class('model', '', 0); class members_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'member'; parent::__construct(); } /** * 重置模型操作表表 * @param string $modelid 模型id */ public function set_model($modelid = '') { if($modelid) { $model = getcache('member_model', 'commons'); $this->table_name = $this->db_tablepre.$model[$modelid]['tablename']; } else { $this->table_name = $this->db_tablepre.'member'; } } } ?>
108wo
phpcms/model/members_model.class.php
PHP
asf20
857
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class datacall_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'datacall'; parent::__construct(); } } ?>
108wo
phpcms/model/datacall_model.class.php
PHP
asf20
341
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class log_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'log'; parent::__construct(); } } ?>
108wo
phpcms/model/log_model.class.php
PHP
asf20
357
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class category_priv_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'category_priv'; parent::__construct(); } } ?>
108wo
phpcms/model/category_priv_model.class.php
PHP
asf20
343
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class member_model_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'model'; parent::__construct(); } public function drop_table($tablename) { $tablename = $this->db_tablepre.$tablename; $tablearr = $this->db->list_tables(); if(in_array($tablename, $tablearr)) { return $this->db->query("DROP TABLE $tablename"); } else { return false; } } public function create_table($tablename) { $tablename = $this->db_tablepre.$tablename; $tablearr = $this->db->list_tables(); if(!in_array($tablename, $tablearr)) { return $this->db->query("CREATE TABLE $tablename (`userid` int(10) unsigned NOT NULL, UNIQUE KEY `userid` (`userid`)) DEFAULT CHARSET=".CHARSET); } else { return false; } } /** * 修改member表会员模型 * @param unknown_type $tablename */ public function change_member_modelid($from_modelid, $to_modelid) { $tablename = $this->db_tablepre.'member'; $this->db->update(array('modelid'=>$to_modelid), $tablename, "modelid='$from_modelid'"); } } ?>
108wo
phpcms/model/member_model_model.class.php
PHP
asf20
1,272
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class category_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'category'; parent::__construct(); } } ?>
108wo
phpcms/model/category_model.class.php
PHP
asf20
367
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class comment_data_model extends model { public $table_name; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'comment'; $this->table_name = ''; parent::__construct(); } /** * 设置评论数据表 * @param integer $id 数据表ID */ public function table_name($id) { $this->table_name = $this->db_config[$this->db_setting]['tablepre'].'comment_data_'.$id; return $this->table_name; } } ?>
108wo
phpcms/model/comment_data_model.class.php
PHP
asf20
597
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class member_verify_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'member_verify'; parent::__construct(); } } ?>
108wo
phpcms/model/member_verify_model.class.php
PHP
asf20
350
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class type_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'type'; parent::__construct(); } /** * 说明: 查询对应模块下的分类 * @param $m 模块名称 */ function get_types($siteid){ if(!ROUTE_M) return FALSE; return $this->select(array('module'=> ROUTE_M,'siteid'=>$siteid),'*','',$order = 'typeid ASC'); } } ?>
108wo
phpcms/model/type_model.class.php
PHP
asf20
577
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class cache_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'cache'; parent::__construct(); } } ?>
108wo
phpcms/model/cache_model.class.php
PHP
asf20
334
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class get_model extends model { public $db_config, $db_setting; public function __construct($db_config = array(), $db_setting = '') { if (!$db_config) { $this->db_config = pc_base::load_config('database'); } else { $this->db_config = $db_config; } if (!$db_setting) { $this->db_setting = 'default'; } else { $this->db_setting = $db_setting; } parent::__construct(); if ($db_setting && $db_config[$db_setting]['db_tablepre']) { $this->db_tablepre = $db_config[$db_setting]['db_tablepre']; } } public function sql_query($sql) { if (!empty($this->db_tablepre)) $sql = str_replace('phpcms_', $this->db_tablepre, $sql); return parent::query($sql); } public function fetch_next() { return $this->db->fetch_next(); } } ?>
108wo
phpcms/model/get_model.class.php
PHP
asf20
904
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class link_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'link'; parent::__construct(); } } ?>
108wo
phpcms/model/link_model.class.php
PHP
asf20
326
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class block_priv_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'block_priv'; parent::__construct(); } } ?>
108wo
phpcms/model/block_priv_model.class.php
PHP
asf20
344
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class brand_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'brand'; parent::__construct(); } /** * 更新关联产品 * @param $bid 品牌ID * @param $catid 更新后的栏目id */ public function updateRelativeProduct($bid, $catid) { $brand = $this->get_one(array('id'=>$bid)); $bids = $brand['id']; if ($brand['parentid']==0) { $brand_child = $this->select(array('parentid'=>$brand['id']), 'id,name,parentid'); if ($brand_child) { foreach ($brand_child AS $v) { $bids .= ','.$v['id']; } } } $content_db = pc_base::load_model('content_model'); $content_db->set_model(11); $attachment_db = pc_base::load_model('attachment_model'); $attachment_index_db = pc_base::load_model('attachment_index_model'); $hits_db = pc_base::load_model('hits_model'); $tags_content_db = pc_base::load_model('tags_content_model'); $content_list = $content_db->select('`bids` IN('.$bids.')', 'id,catid'); foreach ($content_list AS $c) { $content_db->update(array('catid'=>$catid), '`id`='.$c['id']); $hits_db->update(array('catid'=>$catid), 'hitsid="c-11-'.$c['id'].'"'); $tags_content_db->update(array('catid'=>$catid, 'contentid='.$c['id'])); //附件关联表 $att = $attachment_index_db->select(array('keyid'=>'c-'.$c['catid'].'-'.$c['id']), 'keyid,aid'); if ($att) { foreach ($att AS $at) { $attachment_index_db->update(array('keyid'=>'c-'.$catid.'-'.$c['id']), 'keyid="'.$at['keyid'].'"'); $attachment_db->update(array('catid'=>$catid), '`aid`='.$at['aid']); } } } } } ?>
108wo
phpcms/model/brand_model.class.php
PHP
asf20
1,792
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class dbsource_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'dbsource'; parent::__construct(); } } ?>
108wo
phpcms/model/dbsource_model.class.php
PHP
asf20
340
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class wap_type_model extends model { public $table_name; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'wap_type'; parent::__construct(); } } ?>
108wo
phpcms/model/wap_type_model.class.php
PHP
asf20
365
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class urlrule_model extends model { function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'urlrule'; parent::__construct(); } } ?>
108wo
phpcms/model/urlrule_model.class.php
PHP
asf20
331
<?php defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class template_bak_model extends model { public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'template_bak'; parent::__construct(); } } ?>
108wo
phpcms/model/template_bak_model.class.php
PHP
asf20
348
<?php $LANG['id_cannot_be_empty'] = 'ID is required'; $LANG['total'] = 'Total'; $LANG['expressed'] = 'You have already expressed your feelings. Have a nice day! '; $LANG['category'] = 'Column'; $LANG['time'] = 'Time'; $LANG['sort'] = 'Ordering'; $LANG['today'] = 'Today'; $LANG['yesterday'] = 'Yesterday'; $LANG['this_week'] = 'This week'; $LANG['this_month'] = 'This month'; $LANG['all'] = 'All'; $LANG['view'] = 'View'; $LANG['title'] = 'Title'; $LANG['on_hand'] = 'Available'; $LANG['name'] = 'Name'; $LANG['pic'] = 'Photo';
108wo
phpcms/languages/en/mood.lang.php
PHP
asf20
543
<?php $LANG['add_search_type'] = 'Add search type'; $LANG['select_model_name'] = 'Model'; $LANG['select_module_name'] = 'Module'; $LANG['type_name'] = 'Type name'; $LANG['description'] = 'Description'; $LANG['re_index_note'] = '1.Rebuilding the search index will be wiped clean all cached searching.'; $LANG['tiao'] = 'items'; $LANG['confirm_reindex'] = 'Confirm to rebuild indexes'; $LANG['basic_setting'] = 'Basic settings'; $LANG['sphinx_setting'] = 'Sphinx configuration'; $LANG['enable_search'] = 'Enable site-wide search'; $LANG['relationenble'] = 'Enable related search'; $LANG['relationenble_note'] = '(This function would cause an extra load on database)'; $LANG['suggestenable'] = 'Enable search suggestions'; $LANG['suggestenable_note'] = '(show data sources google)'; $LANG['sphinxenable'] = 'Enable sphinx full text search'; $LANG['host'] = 'Server host address'; $LANG['port'] = 'Server port'; $LANG['testing'] = 'Testing...'; $LANG['testsuccess'] = 'Connecting successfully'; $LANG['hostempty'] = 'Hostname is required'; $LANG['portempty'] = 'Port is required'; $LANG['test'] = 'Test'; $LANG['sort'] = 'Ordering'; $LANG['catname'] = 'Category name'; $LANG['modulename'] = 'Module'; $LANG['modlename'] = 'Model'; $LANG['catdescription'] = 'Category description '; $LANG['opreration'] = 'Operation'; $LANG['modify'] = 'Modify'; $LANG['content_module'] = 'Content module'; $LANG['edit_cat'] = 'Edit category'; $LANG['searh_notice'] = 'Warning: full text index module requires that mysql enables full text index function. How to enable? Edit mysql configuration file -> Set window server to my.ini -> Set linux server to my.cnf -> Add a line "ft_min_word_len=1" after [mysqld] -> restart mysql '; ?>
108wo
phpcms/languages/en/search.lang.php
PHP
asf20
1,749
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['date'] = 'Date'; $LANG['name'] = 'Name'; $LANG['wait_1_hour'] = 'Multiple login attempts with wrong password, please try again after {minute} minutes'; $LANG['local_dir'] = 'Current directory'; $LANG['parent_directory'] = 'Previous'; $LANG['dir'] = 'Directory'; $LANG['detail'] = 'Detail'; $LANG['preview'] = 'Preview'; $LANG['catname'] = 'Column name'; $LANG['filename'] = 'Attachment'; $LANG['filesize'] = 'Attachment size'; $LANG['filetype'] = 'Type'; $LANG['uploadtime'] = 'Upload date'; $LANG['moudle'] = 'module name'; $LANG['del_confirm'] = 'Are you sure you want to remove?'; $LANG['to'] = 'to'; $LANG['range_not_correct'] = 'Your availability time range is invalid'; $LANG['database_schema'] = 'Switching to database mode'; $LANG['upload_attachment'] = 'Upload'; $LANG['net_file'] = 'File'; $LANG['gallery'] = 'Galleries'; $LANG['directory_browse'] = 'Directory'; $LANG['start_upload'] = 'Start uploading'; $LANG['upload_up_to'] = 'The max number of files'; $LANG['attachments'] = 'attachment'; $LANG['largest'] = 'Maximum upload file size'; $LANG['supported'] = 'Supported'; $LANG['formats'] = 'Formats'; $LANG['lists'] = 'List'; $LANG['enter_address'] = 'URL'; $LANG['not_used'] = 'Unused'; $LANG['used'] = 'Used'; $LANG['dir_schema'] = 'Switching to directory mode'; $LANG['click_open'] = 'Click to open'; $LANG['watermark_enable'] = 'Add a watermark?'; $LANG['att_not_used'] = 'Unprocessed file'; $LANG['att_not_used_desc'] = 'Please click here to continue processing '; $LANG['att_no_permission'] = 'You do not have permission to access this page'; $LANG['att_thumb_manage'] = 'Manage thumbnail image'; $LANG['attachment_address_replace_msg'] = '1. This function is to bulk change the attachment upload path. Please Use only as Needed. If you continue to use this function, you are risking data scrambled. <br /> 2. Please perform a backup of your data. Otherwise, data will loss and cannot be recovered.'; $LANG['form_submit_confirm'] = 'Please make sure that you fill out the form properly. You may occur a unrepairable damage after changed.'; $LANG['old_attachment_address'] = 'Original path'; $LANG['old_attachment_address_msg'] = 'Original domain in configuration file'; $LANG['new_attachment_address'] = 'New path'; $LANG['old_attachment_address_empty'] = 'Original path is required'; $LANG['new_attachment_address_empty'] = 'New path is required'; $LANG['attachment_parameter_error'] = 'Parameter passing error'; $LANG['attachment_tip1'] = 'No more than'; $LANG['attachment_tip2'] = 'attachments'; ?>
108wo
phpcms/languages/en/attachment.lang.php
PHP
asf20
2,727
<?php $LANG['template_directory_not_write'] = 'Sorry, the template directory is not writeable'; $LANG['only_allowed_to_upload_txt_files'] = 'ONLY .txt files allowed.'; $LANG['mode'] = 'Import'; $LANG['upload_file'] = 'Upload files'; $LANG['enter_coad'] = 'Enter your code'; $LANG['export'] = 'Export'; $LANG['disable'] = 'Disable'; $LANG['enable'] = 'Enable'; $LANG['style_identity'] = 'Style Identifier'; $LANG['style_chinese_name'] = 'Alias'; $LANG['author'] = 'Author'; $LANG['detail'] = 'Details'; $LANG['style_version'] = 'Version'; $LANG['returns_list_style'] = 'Back to template manager'; $LANG['new'] = 'New'; $LANG['local_dir'] = 'Current directory'; $LANG['parent_directory'] = 'Parent directory'; $LANG['dir'] = 'Directory list'; $LANG['can_edit_html_files'] = '.html files ONLY'; $LANG['find_code'] = 'Find nodes'; $LANG['file'] = 'File'; $LANG['name'] = 'Name'; $LANG['dirs'] = 'Directory'; $LANG['name_datatype_error'] = 'ONLY contain letters, digits or underscores'; $LANG['without_the_input_name_extension'] = ', do not enter any extension yourself'; $LANG['dir_not_writable'] = 'Directory is not writeable'; $LANG['visualization'] = 'Visualization'; $LANG['click_edit'] = 'Click to edit'; $LANG['pc_tag'] = 'CMS tags'; $LANG['should'] = 'should'; $LANG['is_greater_than'] = 'greater than'; $LANG['less_than'] = 'less than'; $LANG['lambda'] = ' '; $LANG['inputerror'] = 'Invalid input'; $LANG['toolbox_type'] = 'Types of tools'; $LANG['data_address'] = 'Data address'; $LANG['buffer_time'] = 'Cache time'; $LANG['unit_second'] = '(in second)'; $LANG['data_address_reg_sg'] = 'Your address is incorrectly formatted. Please make sure the address starts with \"http:\/\/\")'; $LANG['cache_time_can_only_be_positive'] = 'The value only can be positive number.'; $LANG['failure_the_document_may_not_to_write'] = 'You attempt to edit failed. The file may not be writable.'; $LANG['the_module_will_not_support_the_operation'] = 'The module does not support the operation.'; $LANG['module_configuration'] = 'Module configuration'; $LANG['operation'] = 'Operation'; $LANG['vlan'] = 'Public settings'; $LANG['public_allowpageing'] = 'Enable Pagebreak'; $LANG['num'] = 'Number of displayed records'; $LANG['check'] = 'Return value'; $LANG['enter_the_cache_input_will_not_be_cached'] = 'Please input cache time (NOT cached by Default)'; $LANG['cache_time_can_only_be_positive'] = 'The value only can be positive number.'; $LANG['that_shows_only_positive_numbers'] = 'The number of records only can be positive.'; $LANG['please_enter_the_data_returned_value_by_default'] = 'Please input data return value. By default,'; $LANG['histroy'] = 'Older versions'; $LANG['restore'] = 'Reset to default'; $LANG['not_exist_versioning'] = 'The older version does not exist.'; $LANG['are_you_sure_you_want_to_restore'] = 'Are you sure you want to restore?'; $LANG['time'] = 'Time'; $LANG['who'] = 'Operator'; $LANG['dbsource'] = 'Data source'; $LANG['tpl_edit'] = 'Your system configuration does not allow online editing templates.'; $LANG['desc'] = 'Description'; $LANG['operation'] = 'Operation'; $LANG['update'] = 'Update'; $LANG['select_tag'] = 'Select tag'; $LANG['create_tag'] = 'Create tag'; $LANG['click_into'] = 'Click to insert'; $LANG['link_url'] = 'Insert ink'; $LANG['pic_url'] = 'Image URL'; $LANG['description'] = 'Description'; $LANG['tag_list'] = 'List of Tag Wizard'; $LANG['seo_title'] = 'SEO title tag'; $LANG['site_title'] = 'Site name'; $LANG['seo_keyword'] = 'SEO keyword'; $LANG['seo_des'] = 'SEO description'; $LANG['cat_id'] = 'Column ID'; $LANG['cat_name'] = 'Column name'; $LANG['cat_url'] = 'Column URL'; $LANG['cats'] = 'Total the columns of array'; $LANG['title'] = 'Title'; $LANG['inputtime'] = 'Input time value'; $LANG['comeform'] = 'Source'; $LANG['content'] = 'Content'; $LANG['pre_url'] = 'Previous page URL'; $LANG['pre_title'] = 'Previous page title'; $LANG['next_url'] = 'Next page URL'; $LANG['next_title'] = 'Next page title'; $LANG['common_variables'] = 'List of common variables';
108wo
phpcms/languages/en/template.lang.php
PHP
asf20
4,102
<?php $LANG['vote'] = 'Poll'; $LANG['vote_add'] = 'Create your own poll'; $LANG['vote_title'] = 'Enter a title'; $LANG['select_type'] = 'Select Question type'; $LANG['vote_option'] = 'Choices'; $LANG['vote_description'] = 'Poll description'; $LANG['statistics'] = 'Results'; $LANG['vote_confirm_del'] = 'Are you sure you want to delete it?'; $LANG['vote_mustinput'] = ' is Required'; $LANG['vote_votepassed'] = 'The poll has already expired'; $LANG['setting_updates_successful'] = 'Updated successfully'; $LANG['truename'] = 'Real name'; $LANG['addr'] = 'Address'; $LANG['fromdate'] = 'Online Date'; $LANG['todate'] = 'Offline Date'; $LANG['enablecheckcode'] = 'Enable authentication'; $LANG['allowguest'] = 'Allowing guests to vote'; $LANG['credit'] = 'Reward points'; $LANG['interval'] = 'Voting time interval'; $LANG['template'] = 'Template'; $LANG['enabled'] = 'Enabled'; $LANG['allowview'] = 'View poll results'; $LANG['yes'] = 'Yes'; $LANG['no'] = 'No'; $LANG['input_not_space'] = 'Enter text WITHOUT spaces'; $LANG['remove_all_selected'] = 'Remove selected items'; $LANG['description'] = 'Description'; $LANG['call_js_code'] = 'Call JavaScript '; $LANG['startdate'] = 'Start Date'; $LANG['enddate'] = 'Finish Date'; $LANG['vote_title_noempty'] = 'Title field is required'; $LANG['not_vote'] = 'Poll not found'; $LANG['vote_num'] = 'Number of voters'; $LANG['statistics'] = 'Statistics'; $LANG['lock'] = 'Locked'; $LANG['check_vote'] = 'View poll results'; $LANG['call_code'] = 'Call JavaScript'; $LANG['before_select_operation'] = 'Please select one or more before executing'; $LANG['select'] = 'Please choose'; $LANG['time_is_ok'] = 'Valid Time'; $LANG['time_is_must'] = 'Time is required'; $LANG['radio'] = 'Single Choice'; $LANG['checkbox'] = 'Multiple Choice'; $LANG['maxval'] = 'Maximum options '; $LANG['minval'] = 'Minimum options'; $LANG['add_option'] = 'Add a choice'; $LANG['del'] = 'Delete'; $LANG['must_input'] = ' is Required'; $LANG['allow'] = 'Allow'; $LANG['not_allow'] = 'Disallow'; $LANG['one_ip'] = 'One vote per IP address'; $LANG['more_ip'] = 'N days to vote again'; $LANG['user_list'] = 'List of user'; $LANG['vote_result'] = 'Results'; $LANG['pic_view'] = 'Figure'; $LANG['vote_all_num'] = 'Number of voters'; $LANG['vote_style'] = 'style'; $LANG['vote_showresult'] = 'View results'; $LANG['up_vote_time'] = 'Vote Time'; $LANG['ip'] = 'IP'; $LANG['user_info'] = 'Profile'; $LANG['guest'] = 'Guest'; $LANG['default_template'] = 'default template'; $LANG['default_guest'] = 'default guests to vote'; $LANG['default_enabled'] = 'default poll function'; $LANG['default_vote_time'] = 'default time interval'; $LANG['vote_post_point'] = 'Reward points'; $LANG['subjectid_desc'] = 'ID descending'; $LANG['subjectid_asc'] = 'ID ascending'; $LANG['vote_call'] = 'Calling method'; $LANG['vote_call_info'] = 'Calling method Description'; $LANG['vote_call_infos'] = '1. Make your choice according to your needs. Then paste the code to your template. Please remember to update related site.'; $LANG['vote_call_infos2'] = '2. Dynamic call in PHP provides a way to count impressions.'; $LANG['vote_call_1'] = 'Call script on Homepage/ column page'; $LANG['vote_call_2'] = 'Call script on Content page'; $LANG['vote_phpcall'] = 'JS calling code (Dynamic call in PHP) <font color=\'red\'> The method provides a way to count impressions.</font>'; $LANG['vote_jscall'] = 'Call to a .js file'; $LANG['vote_jscall_info'] = 'JS calling code (Static call in JS)'; $LANG['vote_overview'] = 'Poll overview'; $LANG['vote_status'] = 'Status'; $LANG['vote_Lockets'] = 'Unlimited'; $LANG['vote_use'] = 'Enabled'; $LANG['vote_lock'] = 'Locked'; $LANG['vote_voteid'] = 'Poll ID'; $LANG['vote_novote'] = 'Poll not found'; $LANG['vote_voteyes'] = 'You have already voted'; $LANG['vote_nooption'] = 'Please make a choice'; $LANG['vote_votesucceed'] = 'Thank you for voting! Returning to ..'; $LANG['vote_votelocked'] = 'The poll has been locked.You are NOT allowed to vote temporarily.'; $LANG['vote_votenoguest'] = 'Sorry, guest users are not allowed to vote.'; $LANG['confirm'] = 'Save configuration'; $LANG['reset'] = 'Reset to defaults'; $LANG['check_select'] = 'Click'; $LANG['item'] = 'item'; $LANG['copy_code'] = 'Copy to clipboard'; $LANG['submit'] = 'Submit'; $LANG['select_style'] = 'Select style'; $LANG['right_all'] = 'Well done'; ?>
108wo
phpcms/languages/en/vote.lang.php
PHP
asf20
4,967
<?php $LANG['link'] = 'Partner Links'; $LANG['link_add'] = 'Add'; $LANG['link_name'] = 'Site name'; $LANG['logo'] = 'LOGO'; $LANG['url'] = 'URL'; $LANG['link_type'] = 'Type'; $LANG['typeid'] = 'Category'; $LANG['status'] = 'Status'; $LANG['type_id'] = 'Category ID'; $LANG['type_name'] = 'Category Name'; $LANG['list_type'] = 'Classification'; $LANG['link_type_listorder'] = 'Priority'; $LANG['web_description'] = 'Description'; $LANG['type_description'] = 'Classification description'; $LANG['username'] = 'Contact person'; $LANG['elite'] = 'Promote'; $LANG['passed'] = 'Approval'; $LANG['setting_updates_successful'] = 'Updated successfully'; $LANG['input_not_space'] = 'Please input content WITHOUT any spaces'; $LANG['remove_all_selected'] = 'Remove all selected'; $LANG['sitename_noempty'] = ' is Required'; $LANG['siteurl_not_empty'] = ' is Required'; $LANG['typename_noempty'] = ' is Required'; $LANG['add_success'] = 'Submitted successfully, returning'; $LANG['suspend_application'] = 'Suspended application, returning'; $LANG['link_exit'] = 'Partner link does not exist'; $LANG['linktype_exit'] = 'Classification does not exist'; $LANG['all_linktype'] = 'All classification'; $LANG['all'] = 'All'; $LANG['word_link'] = 'Text link'; $LANG['logo_link'] = 'Logo link'; $LANG['before_select_operations'] = 'Please select'; $LANG['yes'] = 'Yes'; $LANG['no'] = 'No'; $LANG['link_list'] = 'Partner Links'; $LANG['go_website'] = 'Go to'; $LANG['pass_check'] = 'Approval'; $LANG['pass_or_not'] = 'Pass the review'; $LANG['audit'] = 'Review'; $LANG['passed'] = 'Approval'; $LANG['move_success'] = 'Moved successfully'; $LANG['application_or_not'] = 'Allow to apply'; $LANG['code_or_not'] = 'Enable auth code'; $LANG['choose_true_type'] = 'Please select correct classification'; $LANG['application_links'] = 'Partner Link application'; $LANG['link_onerror'] = 'Format should be http://www.phpcms.cn/'; ?>
108wo
phpcms/languages/en/link.lang.php
PHP
asf20
2,201
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ //add field $LANG['formguide'] = 'Form wizard'; $LANG['input_form_title'] = 'Please input name'; $LANG['title_min_3_chars'] = 'At least 6 characters'; $LANG['right'] = 'Correct'; $LANG['title_cannot_empty'] = 'Name is required'; $LANG['field_manage'] = 'Manage'; $LANG['add_field'] = 'Add field'; $LANG['manage_field'] = 'Field management in form wizard'; $LANG['priview_modelfield'] = 'Preview'; $LANG['fieldname'] = 'Field name'; $LANG['cnames'] = 'Alias'; $LANG['type'] = 'Type'; $LANG['system'] = 'System'; $LANG['must_input'] = ' is Required'; $LANG['search'] = 'Search'; $LANG['listorder'] = 'Ordering'; $LANG['contribute'] = 'Contribute'; $LANG['field_enabled'] = '<font color="red"> Enable</font>'; $LANG['field_disabled'] = 'Disable'; $LANG['fieldname'] = 'Field type'; $LANG['between_1_to_20'] = 'the length between 1 and 20'; $LANG['fieldname_was_wrong'] = 'Name is invalid'; $LANG['already_exist'] = 'Already exists'; $LANG['connecting_please_wait'] = 'Connecting..please wait'; $LANG['select_fieldtype'] = 'Please select field type'; $LANG['input_nickname'] = 'Please input alias'; $LANG['nickname_empty'] = 'Alias is required'; $LANG['input_right'] = 'Correct'; $LANG['field_type'] = 'Field type'; $LANG['fieldname_tips'] = 'ONLY contain letters, digits, underscores. It must start with letters and NOT end up with underscore.'; $LANG['field_nickname'] = 'Alias'; $LANG['nickname_tips'] = 'For example, title'; $LANG['field_tip'] = 'Field `s reference'; $LANG['field_tips'] = 'Hints under field alias'; $LANG['relation_parm'] = 'Related parameters '; $LANG['relation_parm_tips'] = 'Related properties'; $LANG['form_attr'] = 'Additional properties'; $LANG['form_attr_tips'] = 'Adding JavaScipt Event from here'; $LANG['form_css_name'] = 'Style name'; $LANG['form_css_name_tips'] = 'Define CSS name of form'; $LANG['string_size'] = 'The range of characters length'; $LANG['string_size_tips'] = 'The system will check length validation. Please leave blank if you do not want to limit the length.'; $LANG['minlength'] = 'Min length'; $LANG['maxlength'] = 'Max length'; $LANG['data_preg'] = 'Verify input with regular expressions'; $LANG['data_preg_tips'] = 'The system will verify data by using regular expressions. Please leave blank if you do not want to verify data'; $LANG['often_preg'] = 'Common regular expressions'; $LANG['figure'] = 'Digits'; $LANG['integer'] = 'Integer'; $LANG['letter'] = 'letters'; $LANG['integer_letter'] = 'digits + letters'; $LANG['hyperlink'] = 'Hyperlink'; $LANG['mobile_number'] = 'Phone number'; $LANG['tel_number'] = 'Tel'; $LANG['zip'] = 'Zip'; $LANG['data_passed_msg'] = 'Data validation error message'; $LANG['unique'] = 'Unique value'; $LANG['as_search_field'] = 'As search conditions'; $LANG['disabled_groups_field'] = 'Select user groups. These group users cannot set up field value'; $LANG['edit_field'] = 'Modify field'; $LANG['public_field_manage'] = 'Manage global field'; $LANG['fields'] = 'Field '; $LANG['picutre_list'] = 'A list of pictures'; $LANG['max_upload_num'] = 'Maximum Number of File Uploads at a time'; $LANG['zhang'] = 'page'; $LANG['attachment_upload'] = 'Upload attachment'; $LANG['select_picture'] = 'Select image'; //add formguide $LANG['select_stardate'] = 'Please select start date when time limits is enabled'; $LANG['select_downdate'] = 'Please select end date when time limits is enabled'; $LANG['select_style'] = 'Select style'; $LANG['name'] = 'Name'; $LANG['tablename'] = 'Table name'; $LANG['introduction'] = 'Intro'; $LANG['time_limit'] = 'Time limits'; $LANG['enable'] = 'Enable'; $LANG['unenable'] = 'Disable'; $LANG['start_time'] = 'Start time'; $LANG['end_time'] = 'End time'; $LANG['allowed_send_mail'] = 'Allow to send email'; $LANG['e-mail_address'] = 'Email address'; $LANG['multiple_with_commas'] = 'Use comma to separate mulitple addresses'; $LANG['optional_style'] = 'Available style'; $LANG['template_selection'] = 'Select template'; $LANG['please_input_tallename'] = 'Please fill in table name'; $LANG['standard'] = 'ONLY contain letters, digits, underscores.'; $LANG['tablename_no_empty'] = 'Table name is required'; $LANG['edit_formguide'] = 'Edit form'; $LANG['public'] = 'Public'; $LANG['stat_num'] = 'Statistics'; $LANG['thumb_shi'] = 'Graphical representation'; $LANG['selects'] = 'Name'; $LANG['values'] = 'Content'; $LANG['tablename_existed'] = 'data form is invalid'; $LANG['tablename_was_wrong'] = 'Table name is invalid'; //formguide list $LANG['remove_all_selected'] = 'Delete selected'; $LANG['affirm_delete'] = 'Are you sure you want to remove?'; $LANG['formguide_add'] = 'Add form wizard'; $LANG['name_items'] = 'Name (number of records)'; $LANG['create_time'] = 'Time created'; $LANG['call'] = 'Invoke'; $LANG['visit_front'] = 'Access frontend'; $LANG['info_list'] = 'A list of infos '; $LANG['field_add'] = 'Add field'; $LANG['field_manage'] = 'Manage field'; $LANG['preview'] = 'Preview'; $LANG['modify'] = 'Modify'; $LANG['stat'] = 'Statistics'; $LANG['form_preview'] = 'Form preview'; $LANG['return_list'] = 'Back to a list of wizards'; //formguide info $LANG['username'] = 'Username '; $LANG['userip'] = 'User IP'; $LANG['times'] = 'Time'; $LANG['operation'] = 'Operation'; $LANG['check'] = 'View'; $LANG['del'] = 'Remove'; $LANG['form_details'] = 'Details'; $LANG['submit_info'] = 'Submit Info'; $LANG['stat_formguide'] = 'Statistics'; //setting $LANG['formguide_setting'] = 'Module wizard'; $LANG['allows_more_ip'] = 'Allow the same IP repeatedly submitted '; $LANG['allowunreg'] = 'Allow visitor to submit form'; $LANG['mailmessage'] = 'Content'; $LANG['not_meet_the_conditions'] = 'is invalid'; $LANG['not_less_than'] = 'not less than'; $LANG['not_more_than'] = 'not more than'; $LANG['the_value_must_not_repeat'] = 'value cannot duplicate'; $LANG['interval'] = 'Interval'; $LANG['minute'] = 'minute'; //index $LANG['formguide_list'] = 'A list of wizards'; $LANG['please_login_in'] = 'Please sign in first'; $LANG['form_no_exist'] = 'The form does not exist or has been marked for deletion'; $LANG['form_expired'] = 'Form has Expired. Thank you for your interest!'; $LANG['tips'] = 'Reminder for form submission'; $LANG['thanks'] = 'Thank you for your participation'; $LANG['had_participate'] = 'You have already participated.'; ?>
108wo
phpcms/languages/en/formguide.lang.php
PHP
asf20
7,005
<?php $LANG['email'] = 'Email '; $LANG['or'] = 'Or'; $LANG['nickname'] = 'Nickname '; $LANG['uid'] = 'User ID'; $LANG['regtime'] = 'Registration time'; $LANG['lastlogintime'] = 'Last logged-in'; $LANG['operation'] = 'Operation'; $LANG['password'] = 'Password '; $LANG['cofirmpwd'] = 'Re-type Password'; $LANG['realname'] = 'Real name'; $LANG['enable_phpsso'] = 'Enable PHPSSO'; $LANG['enable_register'] = 'Registration'; $LANG['nameerror'] = 'Username is required'; $LANG['between_2_to_20'] = 'Between 2-20'; $LANG['between_2_to_20'] = 'Between 2-20'; $LANG['between_6_to_20'] = 'Between 6-20'; $LANG['between_1_to_20'] = 'Between 1-20'; $LANG['between_2_to_32'] = 'Between 2-32'; $LANG['already_exist'] = 'Already exist'; $LANG['password_can_not_be_empty'] = 'Password is required'; $LANG['cannot_empty'] = ' is Required'; $LANG['passwords_not_match'] = 'Passwords do not match'; $LANG['old_password_incorrect'] = 'Old password is incorrect'; $LANG['old_password'] = 'Old password'; $LANG['new_password'] = 'New password'; $LANG['re_input'] = 'Re-type Password'; $LANG['passwords_match'] = 'Passwords matched'; $LANG['newpassword'] = 'New password is'; $LANG['forgetpasswordmessage'] = 'Retrieve password email'; $LANG['forgetpassword'] = 'Forgot your password?'; $LANG['no_phpcms_account'] = 'Not registered yet?'; $LANG['immediately'] = ' '; $LANG['use_passport'] = 'Use external passport'; $LANG['other_passport'] = 'Other passports'; $LANG['other_passport_introduce'] = 'Introduce to passport'; $LANG['other_passport_info'] = 'PHPCMS supports third party logins'; $LANG['input'] = 'Please input '; $LANG['checkcode'] = 'Auth code'; $LANG['validate'] = 'Validate'; $LANG['user'] = 'User'; $LANG['not_exists'] = 'Not exists'; $LANG['password_error'] = 'Password is incorrect'; $LANG['ait_1_hour'] = 'Please login after a hour'; $LANG['connecting_please_wait'] = 'Please wait...'; $LANG['not_change_the_password_please_leave_a_blank'] = 'Please leave blank if you do not want to change password'; $LANG['format_incorrect'] = 'Format is invalid'; $LANG['format_right'] = 'Format is valid'; $LANG['email_already_exist'] = 'Already exist'; $LANG['email_config_empty'] = 'Unable to send e-mail. Please contact the site administrator'; $LANG['email_error'] = 'Your email address seems incorrect. Please re-enter'; $LANG['login_email'] = 'Email '; $LANG['login_email_authentication'] = 'Please go to email to validate your registration'; $LANG['email_deny'] = 'Unable to register'; $LANG['userid_banned_by_administrator'] = 'Access Denied'; $LANG['need_emial_authentication'] = 'Require email authentication'; $LANG['username_deny'] = 'Unable to register'; $LANG['regip'] = 'IP'; $LANG['lastip'] = 'Last Logged-in IP'; $LANG['sure_delete'] = 'Are you sure you want to remove?'; $LANG['delete'] = 'Remove'; $LANG['member'] = 'User '; $LANG['info'] = ' '; $LANG['fill_in'] = 'Fill in '; $LANG['basic_configuration'] = 'Basic Info'; $LANG['more_configuration'] = 'Details'; $LANG['member_exist'] = 'Username already exists'; $LANG['password_format_incorrect'] = 'Format is invalid'; $LANG['username_format_incorrect'] = 'Format is invalid'; $LANG['email_format_incorrect'] = 'Format is invalid'; $LANG['need_more_param'] = 'Incomplete parameters'; $LANG['verify_pass'] = 'Approval'; $LANG['sure_verify_pass'] = 'Are you sure you want to pass the review?'; $LANG['amount'] = 'Amount'; $LANG['buy_point'] = 'Buy points'; $LANG['point'] = 'Points'; $LANG['point_notice'] = ', points will affect user group'; $LANG['lock'] = 'Locked'; $LANG['user_is_lock'] = 'Your account has been locked for security reasons.'; $LANG['unlock'] = 'Unlock'; $LANG['move'] = 'Move'; $LANG['deny_register'] = 'Registration denied'; $LANG['read_protocol'] = 'Please read our disclaimer before proceeding'; $LANG['click_read_protocol'] = 'Click to read'; $LANG['agree_protocol_post'] = 'I Agree. Submit the Form'; $LANG['already_have_account'] = 'Already have an account?<br />Please log in'; $LANG['forget_password_notice'] = 'Please reset your password within an hour after submitting'; $LANG['or'] = 'or'; $LANG['remember'] = 'Remember '; $LANG['vip'] = 'VIP'; $LANG['isvip'] = 'Become an VIP'; $LANG['plsease_select'] = 'Please select'; $LANG['member_group'] = 'User group'; $LANG['ignore'] = 'Ignore'; $LANG['reject'] = 'Reject'; $LANG['modelinfo'] = 'Model info'; $LANG['sendemail'] = 'Email notice'; $LANG['regreason'] = 'Reason'; $LANG['verify_status'] = 'Status'; $LANG['verify'] = 'Review'; $LANG['verify_message'] = 'Review message'; $LANG['reg_reject'] = 'Your application is rejected'; $LANG['reg_ignore'] = 'Your application is ignored'; $LANG['reg_delete'] = 'Your application is deleted'; $LANG['reg_pass'] = 'Your application is approved'; $LANG['verify_message'] = 'Review info'; $LANG['verify_message'] = 'Review info'; $LANG['please_wait_administrator_verify'] = 'Please wait for reviewing'; $LANG['register_verify_message'] = 'Content of Email validation'; $LANG['need_verify'] = 'Require verify'; $LANG['pass_verify'] = 'Approval'; $LANG['nerver_pass'] = 'Duplicate name can not pass the review.'; $LANG['member_group_name'] = 'User group name'; $LANG['member_group_access'] = 'Allow to visit'; $LANG['member_group_search'] = 'Allow to search'; $LANG['member_group_publish'] = 'Allow to contribute'; $LANG['publish_deny'] = 'Get publishing banned'; $LANG['member_group_upgrade'] = 'Allow to self-upgraded'; $LANG['member_group_sendmessage'] = 'Allow to send message'; $LANG['member_group_publish_verify'] = 'Submissions do not require to review'; $LANG['member_group_dayprice'] = 'Daily'; $LANG['member_group_monthprice'] = 'Monthly'; $LANG['member_group_yearprice'] = 'Year'; $LANG['member_group_maxmessagenum'] = 'Max number of message'; $LANG['allowpostnum'] = 'Max number of contributions per day'; $LANG['zero_nolimit'] = '0 as unlimited'; $LANG['allowpostnum_deny'] = 'You have exceeded the maximum allowable contribution'; $LANG['member_group_username_color'] = 'The color of your username'; $LANG['not_less_than'] = 'not less than'; $LANG['not_more_than'] = 'not more than'; $LANG['member_group_icon'] = 'Icon of User group'; $LANG['member_group_deny'] = 'Disable'; $LANG['member_group_creditrange'] = 'Point less than'; $LANG['member_group_starnum'] = 'Star number'; $LANG['member_group_upgradeprice'] = 'Upgrade pice'; $LANG['member_group_sentmessage'] = 'Allow to send message'; $LANG['member_group_sentmessage'] = 'Allow to send message'; $LANG['send_message'] = 'Send message'; $LANG['member_group_description'] = 'Description'; $LANG['groupid'] = 'Group ID'; $LANG['groupname'] = 'User group name'; $LANG['issystem'] = 'System group'; $LANG['starnum'] = 'Star number'; $LANG['pointrange'] = 'Point less than'; $LANG['allowvisit'] = 'Access permissions'; $LANG['allowpost'] = 'Contribution permissions'; $LANG['allowsearch'] = 'Search permissions'; $LANG['allowupgrade'] = 'Self-upgrade'; $LANG['allowpostverify'] = 'Contribution review'; $LANG['allowsendmessage'] = 'Send message'; $LANG['message'] = 'Message'; $LANG['upgrade_price'] = 'Member price'; $LANG['price_y'] = 'Yearly'; $LANG['price_m'] = 'Monthly'; $LANG['price_d'] = 'Daily'; $LANG['need'] = 'Require'; $LANG['upgrade_date'] = 'Period'; $LANG['buy'] = 'Buy'; $LANG['year'] = 'Year'; $LANG['month'] = 'Month'; $LANG['day'] = 'Day'; $LANG['short_of_money'] = 'Your amount is insufficient'; $LANG['money_error'] = 'Format is invalid'; $LANG['disabled'] = 'Disable'; $LANG['description'] = 'Description'; $LANG['view'] = 'View'; $LANG['membernum'] = 'Users'; $LANG['sort'] = 'Ordering'; $LANG['between_2_to_8'] = 'Between 2 and 8'; $LANG['groupname_already_exist'] = 'User group name already exists'; $LANG['between_1_to_8_num'] = 'digits between 1 and 8'; $LANG['maxmessagenum'] = 'The number of messages'; $LANG['allow_register'] = 'allow new user to register'; $LANG['register_model'] = 'Select register model'; $LANG['need_more_memberinfo'] = 'Please fill out ALL INFORMATION for membership records'; $LANG['register_email_auth'] = 'Enable user registration with required email validation'; $LANG['enablemailcheck_notice'] = 'Require email settings. User registration verification will be invalid after enable email activation for registration'; $LANG['allow_memberlist'] = 'Allow to view a list of users on frontend'; $LANG['register_verify'] = 'New user registration requires user verification by admin'; $LANG['administrator'] = 'Administrator'; $LANG['member_verifycode'] = 'Enable registration auth code'; $LANG['click_change_validate'] = 'Try a new code'; $LANG['upgrade_method'] = 'Upgrade method'; $LANG['defualtpoint'] = 'Default points for new users'; $LANG['defualtamount'] = 'Giveaway points for new users'; $LANG['register_protocol'] = 'User Registration Agreement '; $LANG['show_register_protocol'] = 'Enable show Registration Agreement'; $LANG['show_app_point'] = 'Enable application points exchange'; $LANG['rmb_point_rate'] = 'Buy the number of points per RMB'; $LANG['member_totalnum'] = 'Users'; $LANG['register'] = 'Register'; $LANG['register_notice'] = 'The page will be refreshed when you change user model. Please select user model first.'; $LANG['success'] = 'Success'; $LANG['agree'] = 'Agree'; $LANG['notice'] = 'Attention'; $LANG['member_verify_totalnum'] = 'Pending member'; $LANG['nolimit'] = 'Unlimited'; $LANG['member_search'] = 'Search users'; $LANG['member_vip_totalnum'] = 'VIP'; $LANG['member_research'] = 'Search again'; $LANG['normal'] = 'Normal'; $LANG['member_statistics'] = 'Users'; $LANG['member_todaynum'] = 'New user'; $LANG['normal'] = 'Normal'; $LANG['please_click'] = 'Please click'; $LANG['reg_verify_email'] = 'Email activation for registration'; $LANG['invalid_appid'] = 'Application is not approved. Pleas contact admin'; $LANG['model_name'] = 'Model name'; $LANG['all_site'] = 'All sites'; $LANG['belong_to_site'] = 'As a global model'; $LANG['site_have_no_model'] = 'Site has no user model'; $LANG['model_import'] = 'Import model'; $LANG['member_model_add'] = 'Add user model'; $LANG['member_model'] = 'User model'; $LANG['model_description'] = 'Model description'; $LANG['table_name'] = 'Table name'; $LANG['tablename_already_exist'] = 'Data form already exists'; $LANG['modelname_already_exist'] = 'Model name already exists'; $LANG['deny_model'] = 'Disable model'; $LANG['from_model_name'] = 'Model'; $LANG['to_model_name'] = 'Target model'; $LANG['model_member'] = 'User model'; $LANG['login_success'] = 'Logged in successfully'; $LANG['login_failure'] = 'Login Failed'; $LANG['already_login'] = 'Already login'; $LANG['logout_success'] = 'Logged out successfully'; $LANG['login'] = 'Log in'; $LANG['password_empty'] = 'Please input your password'; $LANG['username_empty'] = 'Please input your username'; $LANG['user_not_exist'] = 'User does not exist'; $LANG['fieldname'] = 'Field name'; $LANG['cnames'] = 'Alias'; $LANG['system'] = 'System'; $LANG['must_input'] = ' is Required'; $LANG['contribute'] = 'Contribute'; $LANG['member_modelfield_add'] = 'Add model field'; $LANG['enable'] = 'Enable'; $LANG['disable'] = 'Disable'; $LANG['modify'] = 'Modify'; $LANG['field'] = 'Field '; $LANG['manage'] = 'Manage'; $LANG['export'] = 'Export'; $LANG['need_more_point'] = 'You need more points'; $LANG['need_more_amount'] = 'Your amount is insufficient'; $LANG['credit_setting_error'] = 'Failed to set point exchanging'; $LANG['site_no_category'] = 'The site does not have the column. Please select another site'; $LANG['please_login'] = 'Your session has expired. please log in again'; $LANG['overdue'] = 'Expired'; $LANG['overduedate'] = 'Expired date'; $LANG['view_more_info'] = 'Details'; $LANG['collect'] = 'Favourite'; $LANG['filedname_incorrect'] = 'Field name is incorrect'; $LANG['filedtype_need'] = 'Please select field type'; $LANG['filedtype'] = 'Field type'; $LANG['input_correct'] = 'Correct'; $LANG['filed_nickname_need'] = 'Please input your nickname'; $LANG['move_member_model_alert'] = 'This operation will delete all users info from original model. You cannot undo this.'; $LANG['move_member_model_index_alert'] = '1. Please carefully delete model. Please use “Move” function to move user model when there are users in model.<br />2. This operation will delete all users info from original model. You cannot undo this.'; $LANG['create_new_model_can_empty'] = '(new model is empty)'; $LANG['main_table_filed'] = 'As primary table field'; $LANG['filedname'] = 'Field name'; $LANG['username_rule'] = 'Only contains letters, digits and underscore. Also, it must start with letter and NOT end up with underscore'; $LANG['filed_nickname'] = 'Field alias'; $LANG['exaple_title'] = 'For example, article title'; $LANG['field_cue'] = 'Field hint'; $LANG['nickname_alert'] = 'As form input hints under field alias'; $LANG['correlation_param'] = 'Related parameter'; $LANG['correlation_attribute'] = 'Related properities'; $LANG['extra_attribute'] = 'Additional properities'; $LANG['add_javascript'] = 'Adding JavaScipt Event from here'; $LANG['form_css'] = 'Style name'; $LANG['user_form_css'] = 'Define CSS name of form'; $LANG['string_len_range'] = 'The range of characters length'; $LANG['post_alert'] = 'The system will check length validation. Please leave blank if you do not want to limit the length.'; $LANG['min'] = 'Min value'; $LANG['max'] = 'Max value'; $LANG['value'] = 'value'; $LANG['date_regular'] = 'Verify input with regular expressions'; $LANG['validity_alert'] = 'The system will verify data by using regular expressions. Please leave blank if you do not want to verify data.'; $LANG['common_regular'] = 'Common regular expressions'; $LANG['number'] = 'Number'; $LANG['int'] = 'Integer'; $LANG['alphabet'] = 'Letter'; $LANG['http'] = 'Hyperlink'; $LANG['mp'] = 'Mobile number'; $LANG['tel'] = 'Tel'; $LANG['postcode'] = 'Zip'; $LANG['error_alert'] = 'Data validation error message'; $LANG['form_error_alert'] = 'The data of form are not satisfied with the verification conditions. The system will show a prompt message.'; $LANG['unique'] = 'Unique value'; $LANG['can_empty'] = 'Required info'; $LANG['search_condition'] = 'As searching conditions'; $LANG['isadd_condition'] = 'Display on frontend'; $LANG['isomnipotent_condition'] = 'As Affiliated field of universal field'; $LANG['deny_set_field_group'] = 'Select user groups. These group users cannot set up field value'; $LANG['deny_set_field_role'] = 'Select role. These roles cannot set up field value'; $LANG['points_less_than'] = 'Your point is <font color="red">{point}</font>, Contributing an article will reduce <font color="red">{need_point}</font>point, you can obtain points by leaving comments'; $LANG['contributors_checked'] = 'Contributed successfully. Reviewing....'; $LANG['contributors_success'] = 'Already posted, thank you for your contribution'; $LANG['has_been_verified'] = 'Your contribution has been verified. Do NOT allow to modify'; $LANG['contribute_del_point'] = 'Submission deduction points'; $LANG['contribute_add_point'] = 'Submission reward points'; $LANG['member_center'] = 'User Center'; $LANG['manage_center'] = 'Manage'; $LANG['account_manage'] = 'Account manager'; $LANG['collection'] = 'Favorites'; $LANG['index'] = 'Homepage'; $LANG['logout'] = 'Log out'; $LANG['hellow'] = 'Hello'; $LANG['add_child_menu'] = 'Add sub menu'; $LANG['online_publish'] = 'Online Contribution'; $LANG['published_content'] = 'Published post'; $LANG['ssouser_can_not_modify_password'] = 'External passport user does not allow to change email password'; $LANG['reject_content'] = 'Reject'; $LANG['verify_content'] = 'Verifying'; $LANG['financial_management'] = 'Financial management'; $LANG['online_charge'] = 'Recharge online'; $LANG['pay_log'] = 'Payment records'; $LANG['cost_log'] = 'Records of consumption'; $LANG['credit_change'] = 'Buy point/exchange'; $LANG['input_box'] = 'Inbox'; $LANG['output_box'] = 'Sent'; $LANG['system_message'] = 'System message'; $LANG['deny_upgrade'] = 'Your user group is unable to self-upgraded.'; $LANG['memberinfo'] = 'Personal Info'; $LANG['account_remain'] = 'Balance'; $LANG['unit_yuan'] = 'Yuan'; $LANG['unit_point'] = 'point'; $LANG['in_model'] = 'Model'; $LANG['avatar'] = 'Display picture'; $LANG['grow_info'] = 'Level info'; $LANG['with_star_must_input'] = 'Required fields are marked *'; $LANG['security_setting'] = 'Security settings'; $LANG['click_login'] = 'click to login'; $LANG['sina_login'] = 'Use SINA account to login'; $LANG['sina_login_notice'] = 'Share on SINA miniblog'; $LANG['favorite_list'] = 'Favorite'; $LANG['adddate'] = 'Add date'; $LANG['buy_point'] = 'Buy point'; $LANG['not_sufficient_funds'] = 'Your account balance is running low'; $LANG['cost'] = 'Cost'; $LANG['can_change_point_num'] = 'Exchange points'; $LANG['app_each'] = 'App'; $LANG['please_select_cat'] = 'Please select column'; $LANG['site_name'] = 'Site name'; $LANG['all_site'] = 'All sites'; $LANG['in_site_name'] = 'Subsidiary site'; $LANG['site_info'] = 'Site description'; $LANG['select'] = 'Select'; $LANG['select_site'] = 'Select site'; $LANG['please_select_category'] = 'Please select column'; $LANG['member_group_permission'] = 'User permissions'; $LANG['no_permission'] = 'No permissions'; $LANG['copyfrom_tips'] = '≡Please select≡'; $LANG['goback'] = 'Back to'; $LANG['allowattachment'] = 'Allow to upload attachment'; $LANG['attachment_upload'] = 'Upload file'; $LANG['image_upload'] = 'Upload image'; $LANG['remove'] = 'remove'; $LANG['zhang'] = 'pictures'; $LANG['max_upload_num'] = 'Max number of uploading at a time'; $LANG['picutre_list'] = 'A list of pictures'; $LANG['select_picture'] = 'Select picture'; $LANG['isurl'] = 'External Links'; $LANG['url'] = 'External Links'; $LANG['info_top'] = 'Classified Info On top'; $LANG['info_top_not_setting_toptime'] = 'You have to set sticky date and type, please try again.'; $LANG['url'] = 'External Links'; ?>
108wo
phpcms/languages/en/member.lang.php
PHP
asf20
18,218
<?php $LANG['coment_class_php_1'] = 'Could not get form of data storage'; $LANG['coment_class_php_2'] = 'Data storage form does not exist and the attempt to create form failed. Please contact an administrator.'; $LANG['coment_class_php_3'] = 'The attempt to write form data to data storage failed. Please contact an administrator.'; $LANG['coment_class_php_4'] = 'The attempt to automatically create form failed. Please contact an administrator.'; $LANG['coment_class_php_5'] = 'The attempt to add comment failed. Please contact an administrator.'; $LANG['coment_class_php_6'] = 'Comment not found'; $LANG['coment_class_php_7'] = 'Comment Successfully posted. Also, you have to wait for admin validation before being able to show.'; $LANG['phpcms_friends'] = 'Buddy list'; $LANG['no_comment'] = 'Comment not found!'; $LANG['no_check_comments'] = 'There is no pending comment.'; $LANG['comments_module_configuration'] = 'Configuration'; $LANG['comment_on_whether_to_allow_visitors'] = 'Allow unregistered guests to post comments'; $LANG['check_comment'] = 'Require admin validation'; $LANG['whether_to_validate'] = 'Enable CAPTCHA'; $LANG['chez'] = 'and'; $LANG['release'] = 'Release'; $LANG['are_you_sure_you_want_to_delete'] = 'Are you sure you want to remove it?'; $LANG['for_audit_several'] = 'Pending comments'; $LANG['pass'] = 'Approval'; $LANG['list'] = 'List'; $LANG['comments_on_the_survey'] = 'Comment summary'; $LANG['count'] = 'Count'; $LANG['comments_id'] = 'Comment ID'; $LANG['site_id'] = 'Site ID'; $LANG['comments_direction'] = 'Thread'; $LANG['jiushishuo'] = 'No comments'; $LANG['tetragonal'] = 'Positive'; $LANG['cons'] = 'Negative'; $LANG['neutrality'] = 'Neutral'; $LANG['sort'] = 'Ordering'; $LANG['new'] = 'The Lastest'; $LANG['hot'] = 'Most popular'; $LANG['support'] = 'Support'; $LANG['landing_users_to_comment'] = 'Only logged users can post comments'; $LANG['code_error'] = 'Incorrect Message Authentication Code'; $LANG['please_enter_code'] = 'Please input authentication code'; $LANG['comment_bang'] = 'Top rated comments'; $LANG['please_enter_content'] = 'Please input content'; $LANG['dragonforce'] = 'You have already supported.'; $LANG['comment_point_del'] = 'The comment has been deleted. Also, the reward point has been reduced.'; $LANG['comments_on_points_awards'] = 'Comment reward points'; $LANG['be_deleted_from_the_review_points'] = 'The comment has been deleted. Also, the reward point has been reduced.'; $LANG['to_operate'] = ' points, 0 as taking no action'; $LANG['canot_allow_comment'] = ' This article does not allow comments'; $LANG['please_chose_comment'] = 'Please choose a comment';
108wo
phpcms/languages/en/comment.lang.php
PHP
asf20
2,679
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['announce'] = 'Announcement'; $LANG['announce_manage'] = 'Announcement manager'; $LANG['announce_list'] = 'List of announcement'; $LANG['announce_add'] = 'Add'; $LANG['announce_title'] = 'title'; $LANG['title_cannot_empty'] = 'Title is required'; $LANG['announcements_cannot_be_empty'] = 'Content is required'; $LANG['announcement_successful_added'] = 'Announcement added successfully'; $LANG['announced_a'] = 'Announcement edited successfully'; $LANG['announce_passed'] = 'Announcement has already been processed successfully.'; $LANG['announce_deleted'] = 'Batch delete processing is done successfully'; $LANG['startdate'] = 'Start Date'; $LANG['enddate'] = 'Due Date'; $LANG['announce_content'] = 'Content'; $LANG['announce_status'] = 'Status'; $LANG['edit_announce'] = 'Edit'; $LANG['inputer'] = 'Editor'; $LANG['check_annonuce'] = 'Review'; $LANG['preview'] = 'Preview'; $LANG['index'] = 'Frontend'; $LANG['cancel_all_selected'] = 'Cancel all selected'; $LANG['pass_all_selected'] = 'Approve selected items'; $LANG['remove_all_selected'] = 'Remove selected items'; $LANG['overdue_announce'] = 'Expired announcement'; $LANG['no_pass_announce'] = 'Pending announcement'; $LANG['no_exists'] = 'The announcement does not exist. It may have been deleted.'; $LANG['affirm_delete'] = 'Are you sure you want to delete it?'; $LANG['input_announce_title'] = 'Please insert announcement title'; $LANG['title_min_3_chars'] = 'at least 6 characters'; $LANG['right'] = 'Correct'; $LANG['server_no_data'] = 'Server is busy now, please try again later'; $LANG['announce_exist'] = 'The announcement already exists'; $LANG['checking'] = 'Checking validation...'; $LANG['select_stardate'] = 'Please choose start date'; $LANG['right_all'] = 'Correct!'; $LANG['select_downdate'] = 'Please choose due date'; $LANG['select_style'] = 'Please choose a style'; $LANG['available_style'] = 'Available style'; $LANG['lists'] = 'List'; $LANG['sitename'] = 'Site'; ?>
108wo
phpcms/languages/en/announce.lang.php
PHP
asf20
2,276
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['member_manage'] = 'User manager'; $LANG['member_add'] = 'Add user'; $LANG['member_edit'] = 'Edit user'; $LANG['member_verify'] = ''; $LANG['member_group_manage'] = 'Manage user groups'; $LANG['member_model'] = 'Manage user model'; $LANG['member_group_add'] = 'Add user group'; $LANG['member_model_add'] = 'Add user model'; $LANG['member_model_import'] = 'Import user model'; $LANG['members'] = 'Users'; $LANG['member_group_manage'] = 'Manage user group'; $LANG['member_model_manage'] = 'Manage user model'; $LANG['manage_member'] = 'Manage user'; $LANG['manage_member_group'] = 'Manage user group'; $LANG['manage_member_model'] = 'Manage user model'; $LANG['menu_add'] = 'Add menu'; $LANG['site_edit'] = 'Edit site'; $LANG['site_del'] = 'Remove site'; $LANG['add_site'] = 'Add site'; $LANG['release_point_add'] = 'Add publishing point'; $LANG['release_point_del'] = 'Delete publishing point'; $LANG['release_point_edit'] = 'Edit publishing point'; $LANG['content_publish'] = 'Content management'; $LANG['content_manage'] = 'Manage content'; $LANG['add_content'] = 'Add content'; $LANG['add_space'] = 'Edit position'; $LANG['model_manage'] = 'Manage model'; $LANG['add_model'] = 'Add model'; $LANG['vote'] = 'Poll'; $LANG['template_manager'] = 'Manage template'; $LANG['template_style'] = 'Style template'; $LANG['userinterface'] = 'Templates'; $LANG['import_style'] = 'Import style'; $LANG['template_file'] = 'Template files'; $LANG['template_export'] = 'Export template'; $LANG['template_onoff'] = 'Enable style'; $LANG['template_updatename'] = 'Update style name'; $LANG['member_lock'] = 'Lock'; $LANG['member_unlock'] = 'Unlock'; $LANG['member_move'] = 'Move'; $LANG['member_delete'] = 'Delete'; $LANG['memebr_verify'] = 'Member reviewing'; $LANG['template_file_list'] = 'A list of template files'; $LANG['template_file_edit'] = 'Edit template files'; $LANG['member_setting'] = 'User module settings'; $LANG['basic_setting'] = 'Basic settings'; $LANG['title_setting'] = 'Title Settings'; $LANG['verify_pass'] = 'Approved'; $LANG['ignore'] = 'Ignored'; $LANG['verify_deny'] = 'Rejected'; $LANG['verify_ignore'] = 'Ignored'; $LANG['verify_delete'] = 'Deleted'; $LANG['verify_deny'] = 'Rejected'; $LANG['never_pass'] = 'Unable to pass'; $LANG['file_add_file'] = 'Create template file'; $LANG['test'] = 'test'; $LANG['listorder'] = 'Ordering'; $LANG['priv_setting'] = 'Manage permissions'; $LANG['role_priv'] = 'Permission assignment'; $LANG['edit_announce'] = 'Edit announcement'; $LANG['overdue'] = 'Expired announcement'; $LANG['del_announce'] = 'Remove announcement'; $LANG['edit_space'] = 'Edit position'; $LANG['del_space'] = 'Delete position'; $LANG['poster_list'] = 'A list of advertising'; $LANG['add_poster'] = 'Add ads'; $LANG['edit_poster'] = 'Edit ads'; $LANG['del_poster'] = 'Delete ads'; $LANG['poster_stat'] = 'Statistics'; $LANG['poster_setting'] = 'Module settings'; $LANG['attachment_manage'] = 'Manage attachment'; $LANG['linkage'] = 'Linkage menu'; $LANG['special'] = 'Topic'; $LANG['template_editor'] = 'Edit template'; $LANG['template_visualization'] = 'Template visualization'; $LANG['pc_tag_edit'] = 'Edit phpcms tag'; $LANG['_release_point'] = 'Sync with publishing point'; $LANG['release_manage'] = 'Manage publishing'; $LANG['type_manage'] = 'Manage category'; $LANG['add_type'] = 'Add category'; $LANG['failure_list'] = 'Failed list'; $LANG['linkageadd'] = 'Add menu'; $LANG['correlative_setting'] = 'Related settings'; $LANG['vote_setting'] = 'Poll settings'; $LANG['queue_del'] = 'Delete message'; $LANG['admin_manage'] = 'Admin management'; $LANG['member_model_delete'] = 'Delete user model'; $LANG['member_model_edit'] = 'Edit user model'; $LANG['link'] = 'Partner links'; $LANG['comment'] = 'Comment'; $LANG['workflow'] = 'Workflow'; $LANG['add_workflow'] = 'Add workflow'; $LANG['comment_check'] = 'Comment reviewing'; $LANG['comment_list'] = 'A list of comments'; $LANG['member_modelfield_add'] = 'Add field to user model'; $LANG['member_modelfield_edit'] = 'Edit field to user model'; $LANG['member_modelfield_delete'] = 'Delete field to user model'; $LANG['member_modelfield_manage'] = 'Manage field'; $LANG['sitemodel_import'] = 'Import model'; $LANG['pay'] = 'Recharge online'; $LANG['payments'] = 'payment module'; $LANG['paylist'] = 'Recharge record'; $LANG['add_content'] = 'Add content'; $LANG['modify_deposit'] = 'Recharge'; $LANG['check_content'] = 'Content reviewing'; $LANG['dbsource'] = 'Data source'; $LANG['data_call'] = 'Calling data'; $LANG['external_data_sources'] = 'External data source'; $LANG['create_content_html'] = 'Bulk update content pages'; $LANG['update_urls'] = 'Bulk update URLs'; $LANG['fulltext_search'] = 'Site-wide searching'; $LANG['manage_type'] = 'Manage category'; $LANG['search_setting'] = 'Module settings'; $LANG['createindex'] = 'Recreate index'; $LANG['add_search_type'] = 'Add category-based searching '; $LANG['dbsource_add'] = 'Add external data source'; $LANG['dbsource_edit'] = 'Edit external data source'; $LANG['dbsource_del'] = 'Delete external data source'; $LANG['dbsource_data_add'] = 'Add data source calling'; $LANG['dbsource_data_edit'] = 'Edit data source calling'; $LANG['dbsource_data_del'] = 'Delete data source calling'; $LANG['message'] = 'Message'; $LANG['database'] = 'Database management'; $LANG['database_export'] = 'Export database'; $LANG['database_import'] = 'Import database'; $LANG['add_special'] = 'Add topic'; $LANG['edit_special'] = 'Edit topic'; $LANG['special_list'] = 'A list of topics'; $LANG['special_elite'] = 'Promote to topic'; $LANG['delete_special'] = 'Delete topic'; $LANG['special_listorder'] = 'Topic ordering'; $LANG['special_content_list'] = 'Manage topic content'; $LANG['special_content_add'] = 'Add content'; $LANG['special_content_list'] = 'A list of contents'; $LANG['special_content_edit'] = 'Edit content'; $LANG['special_content_delete'] = 'Delete content'; $LANG['special_content_listorder'] = 'Content ordering'; $LANG['special_content_import'] = 'Import content'; $LANG['keyword_edit'] = 'Edit keywords'; $LANG['keyword_delete'] = 'A list of Deleted'; $LANG['keyword_add'] = 'Add keyword'; $LANG['badword_add'] = 'Add restricted word'; $LANG['badword_edit'] = 'Edit restricted word'; $LANG['badword_delete'] = 'Delete restricted word'; $LANG['history_version'] = 'Version history'; $LANG['restore_version'] = 'Restore previous versions'; $LANG['del_history_version'] = 'Delete previous versions'; $LANG['block'] = 'Manage block'; $LANG['block_add'] = 'Add block'; $LANG['setting'] = 'Configuration'; $LANG['message_send'] = 'Send group message'; $LANG['my_message'] = 'My message'; $LANG['block_edit'] = 'Edit block'; $LANG['block_del'] = 'Delete block'; $LANG['block_update'] = 'Update block'; $LANG['block_restore'] = 'Restore block'; $LANG['history_del'] = 'Delete block history'; $LANG['my_inbox'] = 'Inbox'; $LANG['my_outbox'] = 'Sent'; $LANG['send_one'] = 'New'; $LANG['collection'] = 'Manage collection'; $LANG['collection_node'] = 'Manage collection'; $LANG['collection_content'] = 'Manage collection content'; $LANG['node_add'] = 'Add collection point'; $LANG['website_config'] = 'Website configuration'; $LANG['position_edit'] = 'Edit top spot'; $LANG['collection_node_edit'] = 'Edit collection point'; $LANG['collection_node_delete'] = 'Remove collection point'; $LANG['collection_node_test'] = 'Test'; $LANG['collection_node_publish'] = 'Publish content'; $LANG['collection_node_import'] = 'Import collection points'; $LANG['collection_node_export'] = 'Export collection points'; $LANG['collection_node_collection_content'] = 'Collect article'; $LANG['googlesitemap'] = 'Baibu/Google maps'; $LANG['keylink'] = 'Related links'; $LANG['editpwd'] = 'Change password'; $LANG['admininfo'] = 'Personal Info'; $LANG['editpwd'] = 'Change password'; $LANG['panel'] = 'Dashboard'; $LANG['editinfo'] = 'Edit your profile'; $LANG['add_keylink'] = 'Add related link'; $LANG['content_settings'] = 'Related settings'; $LANG['category_manage'] = 'Manage column'; $LANG['posid_manage'] = 'Manage top spot'; $LANG['posid_add'] = 'Add top spot'; $LANG['extend'] = 'Extensions'; $LANG['extend_all'] = 'Extensions'; $LANG['keyword_manage'] = 'Manage keyword'; $LANG['badword_manage'] = 'Manage restricted words'; $LANG['menu_manage'] = 'Manage menu'; $LANG['basic_config'] = 'Basic settings'; $LANG['safe_config'] = 'Security settings'; $LANG['sso_config'] = 'PHPSSO settings'; $LANG['email_config'] = 'Email settings'; $LANG['urlrule_manage'] = 'URL rule settings'; $LANG['ipbanned'] = 'IP Blocking'; $LANG['module_manage'] = 'Manage module'; $LANG['add_ipbanned'] = 'Add IP blocking'; $LANG['downsites'] = 'Manage download mirror'; $LANG['col_url_list'] = 'Collecting URL'; $LANG['copy_node'] = 'Copy collection point'; $LANG['content_del'] = 'Remove article'; $LANG['collection_content_import'] = 'A list of articles'; $LANG['import_program_add'] = 'Add import planning'; $LANG['import_program_del'] = 'Delete import planning'; $LANG['import_content'] = 'Import article'; $LANG['add_page'] = 'Add single page'; $LANG['add_cat_link'] = 'Add external link'; $LANG['add_category'] = 'Add column'; $LANG['log'] = 'Backend log'; $LANG['count_items'] = 'Recalculate column data'; $LANG['cache_all'] = 'Update all cache data'; $LANG['create_list_html'] = 'Bulk update column page'; $LANG['create_html_quick'] = 'Build action'; $LANG['create_index'] = 'Generate homepage'; $LANG['scan'] = 'Trojan killing'; $LANG['scan_report'] = 'Scan report'; $LANG['md5_creat'] = 'Generate MD5 '; $LANG['announce'] = 'Announcement'; $LANG['mood'] = 'Emoticons'; $LANG['mood_setting'] = 'Emoticons settings'; $LANG['phpsso'] = 'PHPSSO'; $LANG['edit_content'] = 'Edit content'; $LANG['push_to_special'] = 'Promote'; $LANG['list_type'] = 'Manage category'; $LANG['add_link'] = 'Add partner link'; $LANG['add_vote'] = 'Add poll'; $LANG['edit_vote'] = 'Edit poll'; $LANG['delete_vote'] = 'Delete poll'; $LANG['statistics_vote'] = 'View result'; $LANG['statistics_userlist'] = 'Users'; $LANG['edit_link'] = 'Edit partner link'; $LANG['delete_link'] = 'Delete partner link'; $LANG['delete_message'] = 'Delete message'; $LANG['delete_ip'] = 'Cancel IP blocking'; $LANG['delete_log'] = 'Delete log'; $LANG['delete_keylink'] = 'Delete related link'; $LANG['edit_keylink'] = 'Edit related link'; $LANG['operation_pass'] = 'Pass operation'; $LANG['operation_delete'] = 'Remove operation'; $LANG['operation_ignore'] = 'Ignore operation'; $LANG['operation_reject'] = 'Reject operation'; $LANG['member_edit'] = 'Edit user'; $LANG['member_group_edit'] = 'Edit user group'; $LANG['member_group_delete'] = 'Delete user group'; $LANG['member_model_export'] = 'Export user model'; $LANG['member_model_sort'] = 'User model ordering'; $LANG['member_model_move'] = 'Move user model'; $LANG['settingsave'] = 'Save'; $LANG['admin_edit'] = 'Edit admin'; $LANG['admin_delete'] = 'Delete admin'; $LANG['card'] = 'Smart electronic card'; $LANG['creat_card'] = 'Binding'; $LANG['remove_card'] = 'Remove card'; $LANG['role_edit'] = 'Edit role'; $LANG['member_manage'] = 'Manage user'; $LANG['role_delete'] = 'Delete role'; $LANG['payment_add'] = 'Add payment module'; $LANG['payment_delete'] = 'Remove payment module'; $LANG['payment_edit'] = 'Edit payment module'; $LANG['spend_record'] = 'Consuming recording'; $LANG['pay_stat'] = 'Online payment statement'; $LANG['announce_add'] = 'Add announcement'; $LANG['check_announce'] = 'Announcement Reviewing'; $LANG['fields_manage'] = 'Manage field'; $LANG['edit_model_content'] = 'Edit model'; $LANG['disabled_model'] = 'Disable model'; $LANG['delete_model'] = 'Delete'; $LANG['export_model'] = 'Export'; $LANG['delete'] = 'Delete'; $LANG['edit'] = 'Edit'; $LANG['add_urlrule'] = 'Add URL Rule'; $LANG['edit_urlrule'] = 'Edit'; $LANG['delete_urlrule'] = 'Delete'; $LANG['edit_menu'] = 'Edit'; $LANG['delete_menu'] = 'Delete'; $LANG['edit_workflow'] = 'Edit'; $LANG['delete_workflow'] = 'Delete'; $LANG['creat_html'] = 'Update html'; $LANG['mood'] = 'Emoticons'; $LANG['mood_setting'] = 'Emoticons settings'; $LANG['comment'] = 'Comment'; $LANG['comment_check'] = 'Comment reviewing'; $LANG['comment_list'] = 'A list of comments'; $LANG['link_setting'] = 'Model settings'; $LANG['connect_config'] = 'SNDA connect'; $LANG['view_modelinfo'] = 'View model info'; $LANG['link'] = 'Partner links'; $LANG['add_link'] = 'Add link'; $LANG['edit_link'] = 'Edit link'; $LANG['delete_link'] = 'Delete link'; $LANG['add_type'] = 'Add category'; $LANG['list_type'] = 'Manage category'; $LANG['position_item'] = 'Information management'; $LANG['message_group_manage'] = 'Manage group message'; $LANG['create_special_list'] = 'Generate topic homepage'; $LANG['create_poster_js'] = 'Regenerate js'; $LANG['database_toos'] = 'Database tool'; $LANG['cnzz'] = 'CNZZ statistics'; $LANG['create_js'] = 'Update JS'; $LANG['check_register'] = 'Application reviewing'; $LANG['copyfrom_manage'] = 'Manage source'; $LANG['view_memberlinfo'] = 'View user info'; $LANG['move_content'] = 'Move content'; $LANG['广告模板设置'] = 'Ads template settings'; $LANG['poster_template'] = 'Ads template settings'; $LANG['create_index'] = 'Generate homepage'; $LANG['check_annonuce'] = 'Announcement reviewing'; $LANG['add_othors'] = 'Sync with other columns'; $LANG['member_menu_manage'] = 'Manage frontend menu'; $LANG['member_menu_add'] = 'Add menu'; $LANG['member_menu_delete'] = 'Delete'; $LANG['member_menu_edit'] = 'Edit'; $LANG['member_index'] = 'Management Center'; $LANG['member_init'] = 'Management Center'; $LANG['account_manage'] = 'Manage account'; $LANG['favorite'] = 'Favorite'; $LANG['wap'] = 'WAP portals'; $LANG['attachment_manager'] = 'Database mode'; $LANG['attachment_manager_dir'] = 'Catalogue mode'; $LANG['attachment_manager_db'] = 'Database mode'; $LANG['attachment_address_replace'] = 'Replace attachment address'; $LANG['attachment_address_update'] = 'Bulk update address'; $LANG['delete_content'] = 'Delete content'; $LANG['member_menu_manage'] = 'Manage frontend menu'; $LANG['member_menu_add'] = 'Add menu'; $LANG['member_menu_edit'] = 'Edit menu'; $LANG['member_menu_delete'] = 'Delete menu'; $LANG['batch_show'] = 'Bulk generate HTML'; $LANG['pay_delete'] = 'Delete payment records'; $LANG['pay_cancel'] = 'Cancel recharge'; $LANG['discount'] = 'Change price'; $LANG['category_batch_edit'] = 'Bulk edit'; $LANG['formguide'] = 'Form wizard'; $LANG['formguide_add'] = 'Add form wizard'; $LANG['formguide_edit'] = 'Edit form wizard'; $LANG['form_info_list'] = 'Info List'; $LANG['formguide_disabled'] = 'Disable form'; $LANG['formguide_delete'] = 'Delete form'; $LANG['formguide_stat'] = 'Form statistics'; $LANG['add_public_field'] = 'Add global field'; $LANG['list_public_field'] = 'Manage global field'; $LANG['module_setting'] = 'Module settings'; $LANG['batch_add'] = 'Bulk add'; $LANG['wap_edit'] = 'Edit'; $LANG['wap_type_manage'] = 'Manage category'; $LANG['wap_add'] = 'Add site'; $LANG['wap_delete'] = 'Delete'; $LANG['wap_type_edit'] = 'Edit category'; $LANG['wap_type_delete'] = 'Delete category'; $LANG['info_setting'] = 'Info model settings'; $LANG['tag'] = 'Tag wizard'; $LANG['add_tag'] = 'Add tag wizard'; $LANG['edit_tag'] = 'Edit tag wizard'; $LANG['delete_tag'] = 'Delete tag wizard'; $LANG['tag_lists'] = 'A list of tag wizard'; $LANG['plugin'] = 'Plugins'; $LANG['upgrade'] = 'Upgrade'; $LANG['comment_manage'] = 'Manage comment'; $LANG['sync_release_point'] = 'Sync to publishing point' ?>
108wo
phpcms/languages/en/system_menu.lang.php
PHP
asf20
15,955
<?php $LANG['the_site_not_release'] = 'There is no Publishing Point on site'; $LANG['release_point_connect_failure'] = 'Node『 {name} 』connecting failed'; $LANG['peed_your_server'] = 'The speed of synchronization is dependent upon the speed of publishing point on your server.'; $LANG['are_release_ing'] = 'Synchronizing'; $LANG['done'] = 'Finished'; $LANG['sync_agin'] = 'Synchronizing again'; $LANG['site'] = 'Site'; $LANG['path'] = 'Path'; $LANG['time'] = 'Time'; $LANG['upload'] = 'Upload'; $LANG['success'] = 'Success'; $LANG['failure'] = 'Fail'; $LANG['not_upload'] = 'have not streamed it yet'; $LANG['remind'] = 'Warning'; $LANG['remind_message'] = 'The operation failed because your server probably do not have this file. Please cancel this command';
108wo
phpcms/languages/en/release.lang.php
PHP
asf20
777
<?php $LANG['added_external_data_source'] = 'Add external data source'; $LANG['configure_the_external_data_source'] = 'Configuration'; $LANG['dbsource_name'] = 'Data source name'; $LANG['edit_dbsource'] = 'Edit data source'; $LANG['server_address'] = 'Server address'; $LANG['server_port'] = 'Server port'; $LANG['password'] = 'Password '; $LANG['database'] = 'Database name'; $LANG['dbtablepre'] = 'Database prefix '; $LANG['charset'] = 'Character set'; $LANG['test_connections'] = 'Test connection'; $LANG['connect_success'] = 'Connection successful'; $LANG['connect_failed'] = 'Connection fail'; $LANG['input_dbsource_name'] = 'Please input data source name only accepts letters and digits.'; $LANG['data_source_of_the_letters_and_figures'] = 'Data source should include letters and digits.'; $LANG['server_ports_must_be_positive_integers'] = 'Server port must be a positive integer.'; $LANG['adding_data_source_call'] = 'Add invoking data source'; $LANG['the_module_will_not_support_the_operation'] = 'This module does not support the operation.'; $LANG['enter_the_cache_input_will_not_be_cached'] = 'Please input cache time (NOT cached by Default).'; $LANG['cache_time_can_only_be_positive'] = 'The value only can be positive number.'; $LANG['that_shows_only_positive_numbers'] = 'The number of records only can be positive.'; $LANG['tip_pre'] = 'Please use phpcms_ instead of get tag in database prefix.'; $LANG['num'] = 'The number of calls'; $LANG['name'] = 'Name'; $LANG['should'] = 'Should'; $LANG['is_greater_than'] = 'Greater than'; $LANG['less_than'] = 'less than'; $LANG['lambda'] = ' '; $LANG['sure_deleted'] = 'Are you sure you want to delete all selected items?'; $LANG['the_configuration_data_source'] = 'Configuration'; $LANG['stdcall'] = 'Type of calls'; $LANG['model_configuration'] = 'Module configuration'; $LANG['custom_sql'] = 'Custom SQL'; $LANG['select_model'] = 'Select model'; $LANG['please_select_model'] = 'Please select model'; $LANG['selectingoperation'] = 'Select operation'; $LANG['please_select_action'] = 'Please select operation'; $LANG['please_enter_a_sql'] = 'Please insert SQL'; $LANG['vlan'] = 'Public setting'; $LANG['output_mode'] = 'Export'; $LANG['template'] = 'Template'; $LANG['buffer_time'] = 'Cache time'; $LANG['editing_data_sources_call'] = 'Edit data source'; $LANG['valgrind'] = 'Your code'; $LANG['data_call'] = 'Calling code'; $LANG['copy_code'] = 'Your code has been copied to your clipboard'; ?>
108wo
phpcms/languages/en/dbsource.lang.php
PHP
asf20
2,503
<?php $LANG['member_init'] = 'Administration'; $LANG['account_manage'] = 'Account Manager'; $LANG['favorite'] = 'Favorite'; $LANG['123'] = '123'; $LANG['pay'] = 'Online payment'; ?>
108wo
phpcms/languages/en/member_menu.lang.php
PHP
asf20
187
<?php $LANG['operation'] = 'Operation'; $LANG['view'] = 'View'; $LANG['access'] = 'Visit'; $LANG['view_code'] = 'View code'; $LANG['modifyfile'] = 'Modified'; $LANG['lastmodifytime'] = 'Last modified time'; $LANG['modifyedfile'] = 'Modified file'; $LANG['lostfile'] = 'Missing file'; $LANG['unknowfile'] = 'Unknown file'; $LANG['filesize'] = 'File size'; $LANG['begin_checkfile'] = 'Verifying, please wait...'; $LANG['begin_upgrade'] = 'Upgrading'; $LANG['upgradeing'] = 'Upgrading'; $LANG['upgrade_success'] = 'Upgraded successfully!'; $LANG['lost'] = 'Lost'; $LANG['file_address'] = 'File location'; $LANG['please_check_filepri'] = 'Failed to copy file, please check path/permissions'; $LANG['check_file_notice'] = 'Note: File verification is a comparable result between all files of the root directory, all files and subdirectories under phpcms, api, statics folder and MD5 value of same name in default program. If an exception occurs, please scan your files to detect the Trojan file'; $LANG['upgrade_notice'] = 'Note: Upgrade program may overwrite template files, please backup your files before upgrade! It is essential to check the owner and group of file permissions in the Linux server. Make sure WEB SERVER user sets write permissions to files';
108wo
phpcms/languages/en/upgrade.lang.php
PHP
asf20
1,277
<?php $LANG['node_add'] = 'Add collecting point'; $LANG['nodename'] = 'Name'; $LANG['modelname'] = 'Model name'; $LANG['charset'] = 'Charset'; $LANG['content_num'] = 'Number of post'; $LANG['operation'] = 'Operation'; $LANG['adddate'] = 'Add date'; $LANG['lastdate'] = 'Last data collected time'; $LANG['sure_delete'] = 'Are you sure you want to delete?'; $LANG['basic_configuration'] = 'Basic settings'; $LANG['more_configuration'] = 'More info'; $LANG['urlslist'] = 'URL list'; $LANG['sequence'] = 'URL sequence'; $LANG['multiple_pages'] = 'Multiple pages'; $LANG['single_page'] = 'Single page'; $LANG['select_model'] = 'Please select model'; $LANG['not_to_collect'] = 'No data to collect'; $LANG['url_collect_msg'] = 'URL list Not Found. Please continue to collect URL'; $LANG['collectioning'] = 'Processing:'; $LANG['collection_success'] = 'Collecting completely'; $LANG['please_select_cat'] = 'Please select column'; $LANG['illegal_section_parameter'] = 'Invalid column parameter'; $LANG['model_does_not_exist_please_update_the_cache_model'] = 'Model does not exist. Please update model cache'; $LANG['please_choose'] = 'Please select'; $LANG['author'] = 'Author'; $LANG['comeform'] = 'Source'; $LANG['time'] = 'Time'; $LANG['content'] = 'Content'; $LANG['node_not_found'] = 'Collection node not found'; $LANG['article_was_imported'] = 'Articles were imported.'; $LANG['are_imported_the_import_process'] = 'Importing:'; $LANG['url_list'] = 'URL list'; $LANG['in_all'] = 'Total'; $LANG['all_count_msg'] = 'Records. Duplicate records'; $LANG['import_num_msg'] = '. Removing duplicate records. The number of total records is'; $LANG['following_operation'] = 'You can continue to'; $LANG['following_operation_1'] = '1. Start to collect the content of article'; $LANG['following_operation_2'] = '2. Back to Data Collecting Point Manager'; $LANG['the_new_publication_solutions'] = 'Add publishing solution'; $LANG['category'] = 'Column'; $LANG['the_withdrawal_of_the_summary'] = 'Automatic summary extraction'; $LANG['if_the_contents_of_intercepted'] = 'Get content'; $LANG['characters_to_a_summary_of_contents'] = 'Characters to summary extraction'; $LANG['the_withdrawal_of_thumbnails'] = 'Get thumbnail image automatically'; $LANG['whether_access_to_the_content_of'] = 'Get the'; $LANG['picture_a_caption_pictures'] = 'image as header images from content'; $LANG['import_article_state'] = 'Status'; $LANG['pendingtrial'] = 'Pending'; $LANG['fantaoboys'] = 'Approved'; $LANG['corresponding_labels_and_a_database_ties'] = 'Database - Relationship with Tags'; $LANG['the_original_database_field'] = 'Original database field'; $LANG['explain'] = 'Database field description'; $LANG['label_field__collected_with_the_result_'] = 'Tags field (Collecting result)'; $LANG['publish_the_list'] = 'The list of publishing solutions'; $LANG['had_collected_from_the_roll'] = 'Original collecting name'; $LANG['the_new_gathering'] = 'New collecting name'; $LANG['url_rewrites'] = 'URL rule'; $LANG['content_rules'] = 'Content rule'; $LANG['custom_rule'] = 'Custom rule'; $LANG['eigrp'] = 'Advanced settings'; $LANG['collection_items_of'] = 'Project name'; $LANG['encode_varchar'] = 'Encode'; $LANG['web_sites_to_collect'] = 'URL collecting'; $LANG['url_type'] = 'URL type'; $LANG['url_configuration'] = 'URL settings'; $LANG['test'] = 'Test'; $LANG['url_msg'] = '(For example, http://www.phpcms.cn/help/rumen/(*).html. Use <a href="javascript:insertText(\'urlpage_1\', \'(*)\')">(*)</a>as a wildcard.'; $LANG['page_from'] = 'Page from'; $LANG['from'] = 'From'; $LANG['to'] = 'To'; $LANG['finish'] = 'End'; $LANG['increment_by'] = 'Increments at a time'; $LANG['one_per_line'] = 'One item per line'; $LANG['site_must_contain'] = 'URL must contain'; $LANG['the_web_site_does_not_contain'] = 'URL must NOT contain'; $LANG['base_configuration'] = 'Base Configuration'; $LANG['base_msg'] = 'You have to set up Base if target website is using Base.'; $LANG['get_url'] = 'Get URL'; $LANG['rule_msg'] = '1. Please clearly define where a block of matching rule starts and ends, [content] as a wildcard.<BR> 2. Format for filtering options is “Unwanted contents[|]Replacement”. Unwanted contents support regular expressions. One item per line<BR>'; $LANG['expand_all'] = 'Expand all'; $LANG['all_the'] = 'Closed all'; $LANG['rule'] = 'Rule'; $LANG['matching_rule'] = 'Matching rule '; $LANG['[content]'] = '[content]'; $LANG['use'] = 'Use'; $LANG['w_wildmenu'] = 'As wildcard'; $LANG['filtering'] = 'Filtering options '; $LANG['select'] = 'Select'; $LANG['content_page'] = 'Content pagebreak'; $LANG['page_mode'] = 'Pagebreak mode'; $LANG['all_are_models'] = 'Display all'; $LANG['down_the_pages_mode'] = 'Page Up/Down mode'; $LANG['nextpage_rule'] = 'Next page rule'; $LANG['nextpage_rule_msg'] = 'Please input the code of Next page Hyperlink. For example, <a href="http://www.phpcms.cn/page_1.html"> Next page</a>, “Next page rule” is “Next page”'; $LANG['add_item'] = 'Add project'; $LANG['rulename'] = 'Rule name'; $LANG['rules_in_english'] = 'Rule name'; $LANG['download_pic'] = 'Download picture'; $LANG['no_download'] = 'Cannot download'; $LANG['watermark'] = 'Image watermark'; $LANG['gfl_sdk'] = 'Enable watermark'; $LANG['no_gfl_sdk'] = 'No watermark'; $LANG['content_page_models'] = 'Content pagebreak'; $LANG['no_page'] = 'No pagebreak'; $LANG['by_the_paging'] = 'Pagebreak based on original post'; $LANG['sort_order'] = 'Ordering'; $LANG['with_goals_from_the_same'] = 'Same as target website'; $LANG['and_objectives_of_the_standing_opposite'] = 'Opposite to target website'; $LANG['testpageurl'] = 'Test URL'; $LANG['invert'] = 'Inverse'; $LANG['select_all'] = 'Select all'; $LANG['collect_call'] = 'Collecting point name'; $LANG['cfg'] = 'Config files'; $LANG['only_support_txt_file_upload'] = 'Only support .txt file'; $LANG['collection_web_site'] = 'Collecting URL'; $LANG['collection_content'] = 'Collecting content'; $LANG['public_content'] = 'Publishing content'; $LANG['copy'] = 'Copy'; $LANG['export'] = 'Export'; $LANG['import_collection_points'] = 'Import'; $LANG['data_acquisition_testdat'] = 'Test'; $LANG['copy_node'] = 'Copy'; $LANG['import_collection_points'] = 'Import'; $LANG['view'] = 'View'; $LANG['loading'] = 'Loading...'; $LANG['content_view'] = 'View'; $LANG['content_list'] = 'Article list'; $LANG['all'] = 'Total'; $LANG['if_bsnap_then'] = 'Not Collected'; $LANG['spidered'] = 'Collected'; $LANG['imported'] = 'Imported'; $LANG['status'] = 'Status'; $LANG['url'] = 'URL'; $LANG['also_delete_the_historical'] = 'Delete history'; $LANG['import_selected'] = 'The selected Import'; $LANG['import_all'] = 'Import all'; $LANG['select_article'] = 'Please select article'; $LANG['program_add_operation_success'] = 'Added successfully'; $LANG['handler_functions'] = 'handler function'; ?>
108wo
phpcms/languages/en/collection.lang.php
PHP
asf20
6,945
<?php $LANG['reg_msg'] = 'You have not applied for CNZZ web statistics, apply now?<br><br><input type="button" onclick="location.href=\'?m=cnzz&c=index&a=public_regcnzz\'" value="Yes"> <input type="button" onclick="history.back();" value=" No">'; $LANG['application_fails'] = 'Failed to apply. Please try again later'; $LANG['donot_connect_server'] = 'Could not connect to CNZZ server'; $LANG['has_been_registered'] = 'Already registered';
108wo
phpcms/languages/en/cnzz.lang.php
PHP
asf20
443
<?php $LANG['enter_the_cache_input_will_not_be_cached'] = 'Please input cache time (NOT cached by Default)'; $LANG['cache_time_can_only_be_positive'] = 'The value only can be positive number.'; $LANG['that_shows_only_positive_numbers'] = 'The number of records only can be positive.'; $LANG['num'] = 'Number of calls'; $LANG['name'] = 'Name'; $LANG['should'] = 'should'; $LANG['is_greater_than'] = 'greater than'; $LANG['less_than'] = 'less than'; $LANG['lambda'] = ' '; $LANG['sure_deleted'] = 'Are you sure you want to delete all of the selected options?'; $LANG['stdcall'] = 'Call mode'; $LANG['model_configuration'] = 'Model '; $LANG['custom_sql'] = 'Custom SQL queries '; $LANG['select_model'] = 'Select model'; $LANG['please_select_model'] = 'Please make a selection from the list'; $LANG['selectingoperation'] = 'Select operation'; $LANG['please_select_action'] = 'Please select a operation'; $LANG['please_enter_a_sql'] = 'Please input SQL query'; $LANG['vlan'] = 'Public settings'; $LANG['output_mode'] = 'Output mode'; $LANG['template'] = 'Template'; $LANG['buffer_time'] = 'Cache time'; $LANG['editing_data_sources_call'] = 'Configure DataSource invoking'; $LANG['valgrind'] = 'Your code'; $LANG['data_call'] = 'Calling code'; $LANG['copy_code'] = 'Your code has been saved to the clipboard'; $LANG['add_tag'] = 'Add tag wizard'; $LANG['create_tag_success'] = 'Tag wizard has been generated successfully.'; $LANG['block_name_not_empty'] = 'Block name is required'; $LANG['edit_tag_success'] = 'Tag wizard has been changed successfully.'; $LANG['stdcode'] = 'CODE'; $LANG['block'] = 'Block '; $LANG['tag_call_setting'] = 'Tag configuration'; $LANG['over_dbsource'] = 'External data source'; $LANG['please_select_dbsource'] = 'Please select external data source'; $LANG['please_input_block_name'] = 'Please input block name. It should contain letters, digits ,underscores or variables)'; $LANG['ispage'] = 'Enable pagebreak'; $LANG['common_variables'] = 'Common variables'; $LANG['no_input_no_page'] = 'By default, pagebreak is disabled.'; $LANG['data_return'] = 'Return value'; $LANG['cache_times'] = 'Cache time'; $LANG['click_copy_code'] = 'Double-click CODE box to copy code to clipboard'; $LANG['return_value'] = 'Please input return value(The default value is data)'; ?>
108wo
phpcms/languages/en/tag.lang.php
PHP
asf20
2,616
<?php $LANG['send_message'] = 'Send message'; $LANG['all_send_message'] = 'Group message'; $LANG['message'] = 'Message'; $LANG['send'] = 'Send'; $LANG['sendto'] = 'Send to'; $LANG['subject'] = 'Subject'; $LANG['content'] = 'Content'; $LANG['setting'] = 'Setting'; $LANG['touserid'] = 'Recipient'; $LANG['fromuserid'] = 'Sender'; $LANG['send_time'] = 'Sending Time'; $LANG['reply'] = 'Reply'; $LANG['is_reply'] = 'Reply'; $LANG['remove_all_selected'] = 'Remove all selected'; $LANG['user_noempty'] = 'Recipient is required'; $LANG['username'] = 'Username '; $LANG['time'] = 'Time'; $LANG['see_info'] = 'Infomation'; $LANG['no_empty'] = 'is required'; $LANG['before_select_operation'] = 'Please select before execute'; $LANG['no_thisuser'] = 'The user does not exist.'; $LANG['connecting'] = 'Connecting, please wait'; $LANG['group'] = 'Base on user groups'; $LANG['role'] = 'Base on roles'; $LANG['send_num'] = 'Per number of sending'; $LANG['select']['send_from_id'] = 'Sender'; $LANG['select']['send_to_id'] = 'Recipient'; $LANG['not_myself'] = 'Cannot send message to yourself or unregistered user.'; $LANG['sendtime'] = 'Sending time'; $LANG['show_m'] = 'Show'; $LANG['details'] = 'Details'; $LANG['message_sender'] = 'Sender'; $LANG['query_type'] = 'Search type'; $LANG['to'] = 'To'; $LANG['message_not_exist'] = 'The message does not exist.'; $LANG['mass_failure'] = 'Group SMS sending failed, please check'; ?>
108wo
phpcms/languages/en/message.lang.php
PHP
asf20
1,575
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ //index $LANG['admin_site_title'] = 'phpcmsV9 - Content Management System'; $LANG['expand_or_contract'] = 'Show or Hide'; $LANG['phpcms_title'] = 'PHPCMS V9 Content Management System'; $LANG['official_site'] = 'Official site'; $LANG['authorization'] = 'Authorization'; $LANG['igenus_for_postfix'] = 'Support Forum'; $LANG['help'] = 'Help?'; $LANG['hello'] = 'Howdy, '; $LANG['exit'] = 'Exit'; $LANG['notice'] = 'WARNING'; $LANG['site_homepage'] = 'Homepage'; $LANG['member_center'] = 'User Center'; $LANG['search'] = 'Search'; $LANG['spread_or_closed'] = 'Expand or hide'; $LANG['expand'] = 'Expand'; $LANG['update_backup'] = 'Updating Caches'; $LANG['current_position'] = 'Current location: '; $LANG['background_map'] = 'Sitemap'; $LANG['user_not_exist'] = 'The administrator does not exist'; $LANG['password_error'] = 'Incorrect Password, you have {times} tries to log in!'; $LANG['password_error_lock'] = 'Incorrect Password, you have'; $LANG['password_error_lock2'] = 'tries to log in!'; $LANG['wait_1_hour'] = 'You have entered an incorrect password too many times. To work around this issue, wait for {minute} minutes, and then try to sign in again.'; $LANG['wait_1_hour_lock'] = 'You have entered an incorrect password too many times'; $LANG['logout_success'] = 'You have successfully logged out.'; $LANG['this_object_not_del'] = 'The object cannot be deleted'; $LANG['gd_unsupport'] = '<font color="red">Non-Support</font>'; $LANG['gd_support'] = '<font color="green">Support</font>'; //main $LANG['main_hello'] = 'Hello, '; $LANG['main_role'] = 'Your Role: '; $LANG['main_last_logintime'] = 'Last logged in: '; $LANG['main_last_loginip'] = 'Last logged-in IP: '; $LANG['main_safety_tips'] = 'Safety Reminder'; $LANG['main_safety_permissions'] = '* To set PHPCMS directory to 644 permission (Linux or Unix) or Read-Only (NT) is strongly recommended.'; $LANG['main_safety_debug'] = '* You are adviced to stop debugging (frontend SQL error messages) after your site goes online.'; $LANG['main_safety_errlog'] = '* We strongly recommend that you keep error logs enabled.'; $LANG['main_safety_sql'] = '* We strongly recommend that you keep execution_sql disabled.'; $LANG['main_safety_log'] = '* Your error messages have exceeded the maximum number of allowed logs ({size}). Higher performance of the system is advanced by clearing error logs promotly.'; $LANG['main_shortcut'] = 'Shortcut'; $LANG['main_sysinfo'] = 'System Infomation'; $LANG['main_version'] = 'PHPCMS Version: '; $LANG['main_latest_version'] = 'Get the latest version'; $LANG['main_os'] = 'Operating System: '; $LANG['main_web_server'] = 'Web Server: '; $LANG['main_sql_version'] = 'MySQL version: '; $LANG['main_upload_limit'] = 'File upload: '; $LANG['main_copyright'] = 'Copyright: '; $LANG['main_product_team'] = 'PHPCMS developers team'; $LANG['main_product_planning'] = 'Project Manager: '; $LANG['main_product_dev'] = 'Development Support Team: '; $LANG['main_product_ui'] = 'UI design: '; $LANG['main_product_site'] = 'Official site: '; $LANG['main_product_bbs'] = 'Official forum: '; $LANG['main_license'] = 'License Info'; $LANG['main_support'] = 'IT Support and Services'; $LANG['main_license_type'] = 'License Type: '; $LANG['main_serial_number'] = 'Serial Number: '; //menu.php $LANG['menu_parentid'] = 'Previous Menu'; $LANG['menu_name'] = 'Menu Name'; $LANG['module_name'] = 'Module Name'; $LANG['file_name'] = 'File Name'; $LANG['action_name'] = 'Method Name'; $LANG['att_data'] = 'Additional parameter'; $LANG['menu_url'] = 'Quick Links'; $LANG['menu_display'] = 'Show or Hide the Menu'; $LANG['menu_add'] = 'Add to Menu'; $LANG['menu_manage'] = 'Menu Management'; $LANG['add_menu'] = 'Add to Menu'; $LANG['correlative_setting'] = 'Related settings'; $LANG['menu_name'] = 'Menu name'; $LANG['chinese_name'] = 'Corresponding Chinese Name'; $LANG['no_parent_menu'] = 'As Parent Item'; $LANG['no_site_permissions'] = 'You do not have permission. Please contact your system administrator.'; //down $LANG['downserver_del_cofirm'] = 'Are you sure you want to remove mirror site?'; $LANG['downserver_name'] = 'Mirror Site'; $LANG['downserver_url'] = 'Mirror Web Address'; $LANG['downserver_site'] = 'Site'; $LANG['downserver_del_success'] = 'Mirror site was removed successfully!'; $LANG['downserver_not_empty'] = 'is NOT NULL'; $LANG['downserver_error'] = 'Please input a valid server name and enter the full path WITHOUT the Trailing Slash.'; //position.php $LANG['posid_manage'] = 'Manage Top Spot'; $LANG['posid_add'] = 'Add'; $LANG['posid_edit'] = 'Edit'; $LANG['posid_catid'] = 'Column'; $LANG['posid_modelid'] = 'Module'; $LANG['posid_name'] = 'Top spot name'; $LANG['posid_operation'] = 'Manager operation'; $LANG['posid_del_success'] = 'Deleted successfully'; $LANG['posid_del_cofirm'] = 'Are you sure you want to delete it?'; $LANG['posid_item_view'] = 'Post'; $LANG['posid_item_edit'] = 'Post editing'; $LANG['posid_item_remove'] = 'Move'; $LANG['posid_select_model'] = 'Please select model'; $LANG['posid_select_to_remove'] = 'Please select post to move them'; $LANG['position_tips'] = 'Use in Site-wide if without selecting model and column. Use in model if without selecting column.'; $LANG['posid_syn'] = 'Edit post synchronization?'; $LANG['posid_title'] = 'Top spot title'; $LANG['posid_thumb'] = 'Top spot image'; $LANG['posid_desc'] = 'Description'; $LANG['posid_url'] = 'Link URL'; $LANG['posid_inputtime'] = 'Promoted time'; $LANG['posid_item_manage'] = 'Information management'; $LANG['posid_all'] = 'Total'; $LANG['maxnum'] = 'Max number of saved items'; $LANG['posid_num'] = 'item'; $LANG['extention_name'] = 'Extended field settings'; $LANG['extention_name_tips'] = '<strong>About Extended field</strong>: fill in model name and it will saved in top spot extended field. Format should be as follows, {field name} or functionA({city},argv1)functionA({city},argv1). Please be cautious if you are not developer.'; //role.php $LANG['role_manage'] = 'Role manager'; $LANG['role_add'] = 'Add role'; $LANG['role_edit'] = 'Edit role'; $LANG['role_name'] = 'Name '; $LANG['role_desc'] = 'Description'; $LANG['role_status'] = 'Status'; $LANG['role_operation'] = 'Operations'; $LANG['role_duplicate'] = 'The role name already exists. Please choose another role name.'; $LANG['role_unlock'] = 'Unlock'; $LANG['role_locked'] = 'Locked'; $LANG['role_del_cofirm'] = 'Are you sure you want to delete this role?'; $LANG['role_del_success'] = 'The role has been deleted.'; $LANG['role_setting'] = 'Edit permissions'; $LANG['role_member_manage'] = 'User manager'; $LANG['role_menuname'] = 'Menu name'; $LANG['role_menuserial'] = 'ID'; $LANG['not_empty'] = $LANG['empty']; $LANG['select_site'] = 'Please choose a site.'; $LANG['site_select'] = 'Select site'; //setting.php $LANG['setting_yes'] = 'Yes'; $LANG['setting_no'] = 'No'; $LANG['setting_basic_cfg'] = 'Basic settings'; $LANG['setting_safe_cfg'] = 'Security settings'; $LANG['setting_sso_cfg'] = 'PHPSSO'; $LANG['setting_mail_cfg'] = 'Mail settings'; $LANG['setting_admin_email'] = 'Administrator mailbox'; $LANG['setting_gzip'] = 'Enable gzip compression'; $LANG['setting_js_path'] = 'JS path '; $LANG['setting_css_path'] = 'CSS path '; $LANG['setting_img_path'] = 'Image Path '; $LANG['setting_upload_url'] = 'Attachment access path '; $LANG['setting_attachment_stat'] = 'Enable status statistics'; $LANG['setting_attachment_stat_desc'] = '<font color="gray"> to record attachment status. You will remove an attachment once you remove post. NOTE: This function may increase the burden on the server.</font>'; $LANG['setting_admin_log'] = 'Enable backend operation logs'; $LANG['setting_error_log'] = 'Save Error logs'; $LANG['setting_error_log_size'] = 'Error logs size'; $LANG['setting_adminaccessip'] = 'IP list for allow to access backend'; $LANG['setting_maxloginfailedtimes'] = 'Backend - max number of failed login attempts'; $LANG['setting_maxiplockedtime'] = 'IP locked time'; $LANG['setting_minrefreshtime'] = 'Shortest interval between data refreshes'; $LANG['setting_phpsso'] = 'Enable PHPSSO'; $LANG['update_phpsso_cache'] = 'Update cache'; $LANG['setting_phpsso_appid'] = 'App ID'; $LANG['setting_phpsso_phpsso_api_url'] = 'Interface address'; $LANG['setting_phpsso_auth_key'] = 'Encryption key'; $LANG['setting_phpsso_version'] = 'Version'; $LANG['must_be_number'] = 'must be digits'; $LANG['must_be_32_w'] = 'encryption key for PHPSSO'; $LANG['setting_succ'] = 'Updated successfully'; $LANG['test_email_succ'] = 'Test mail has already send to '; $LANG['test_email_faild'] = 'Failed to send email'; $LANG['mail_type'] = 'Mail sending mode'; $LANG['mail_type_mail'] = 'Mail module'; $LANG['mail_type_smtp'] = 'SMTP'; $LANG['mail_server'] = 'Mail server'; $LANG['mail_port'] = 'Port'; $LANG['mail_from'] = 'Sender address'; $LANG['mail_auth'] = 'AUTH LOGIN'; $LANG['mail_user'] = 'Username '; $LANG['mail_password'] = 'Password'; $LANG['mail_auth_open'] = 'Open'; $LANG['mail_auth_close'] = 'Close'; $LANG['mail_test'] = 'Test setting'; $LANG['mail_test_send'] = 'Send test'; $LANG['mail_auth_close'] = 'Close'; $LANG['setting_input'] = 'Please input '; $LANG['setting_end_with_x'] = 'must end up with “/”'; $LANG['setting_input_error'] = 'Invalid input'; $LANG['setting_errorlog_hint'] = 'Backend homepage will show a error message if error log file exceeds size limit'; $LANG['setting_errorlog_size'] = 'Please input error log file size'; $LANG['setting_errorlog_type'] = 'It can be positive number or decimal'; $LANG['setting_phpsso_type'] = 'Please input interface address. Format is [http://www.phpsso.cn] without “/”.'; $LANG['setting_errorlog_hint'] = 'Please input error log file size'; //admin_manage.php $LANG['userid'] = 'Serial number'; $LANG['password'] = 'Password'; $LANG['security_code'] = 'AuthCode'; $LANG['cofirmpwd'] = 'Re-type Password'; $LANG['userinrole'] = 'Role'; $LANG['lastloginip'] = 'Last logged-in IP'; $LANG['lastlogintime'] = 'Last logged-in'; $LANG['email'] = 'E-mail '; $LANG['realname'] = 'Real name '; $LANG['admin_del_cofirm'] = 'Delete this administrator'; $LANG['nameerror'] = 'Username is required'; $LANG['between_2_to_20'] = 'Between 2-20'; $LANG['between_6_to_20'] = 'Between 6-20'; $LANG['password_can_not_be_empty'] = 'Password is required'; $LANG['passwords_not_match'] = 'Passwords do not match'; $LANG['passwords_match'] = 'Match!'; $LANG['input'] = 'Please input '; $LANG['connecting_please_wait'] = 'Please wait...'; $LANG['not_change_the_password_please_leave_a_blank'] = 'just leave this blank if you do not want to change your current password'; $LANG['change_password'] = 'Change password'; $LANG['format_incorrect'] = 'Format is invalid'; $LANG['format_right'] = 'Format is valid'; $LANG['admin_already_exists'] = 'Admin has already exist'; $LANG['pwd_incorrect'] = 'Password is invalid'; $LANG['admin_cancel_succ'] = 'Cancelled successfully'; $LANG['parameters_error'] = 'Parameters is incomplete'; $LANG['username_illegal'] = 'Username is invalid'; $LANG['email_illegal'] = 'Email is invalid'; $LANG['password_edit_succ_logout'] = 'Your password has been changed, please sign in with the new password'; $LANG['old_password'] = 'Old password'; $LANG['new_password'] = 'New password'; $LANG['new_pwdconfirm'] = 'Re-type Password'; $LANG['old_password_wrong'] = 'Old password is incorrect'; $LANG['old_password_right'] = 'Old password is correct'; $LANG['email_already_exists'] = 'Email address already exists'; //database.php $LANG['select_pdo'] = 'Please select data connection pool'; $LANG['select_tbl'] = 'Please select data table'; $LANG['select_delfile'] = 'Please remove backup files'; $LANG['only_fonder_operation'] = 'Creator is able to run this operation only'; $LANG['only_sql_down'] = 'Only download sql file'; $LANG['dir_not_be_created'] = 'Failed to create this directory'; $LANG['bakup_file'] = 'Backup file'; $LANG['bakup_succ'] = 'Backup successfully'; $LANG['bakup_write_succ'] = 'Write successful'; $LANG['bundling'] = 'Volume: '; $LANG['bakup_data_file'] = 'Data file'; $LANG['data_recover_succ'] = 'Restored successfully'; $LANG['backup_setting'] = 'Backup settings'; $LANG['sizelimit'] = 'Volume file size'; $LANG['sqlcompat'] = 'Building table statement format'; $LANG['default'] = 'Default'; $LANG['sqlcharset'] = 'Charset'; $LANG['backup_starting'] = 'Start backup'; $LANG['pdo_name'] = 'Connection pool'; $LANG['reselect'] = 'Inverse'; $LANG['database_tblname'] = 'Table name'; $LANG['database_type'] = 'Type'; $LANG['database_char'] = 'Encode'; $LANG['database_records'] = 'Records'; $LANG['database_size'] = 'Space'; $LANG['database_block'] = 'Block'; $LANG['database_op'] = 'Operation'; $LANG['database_optimize'] = 'Optimize'; $LANG['database_repair'] = 'Restore'; $LANG['database_showcreat'] = 'Structure'; $LANG['batch_optimize'] = 'Bulk optimize'; $LANG['batch_repair'] = 'Bulk restore'; $LANG['select_pdo_op'] = 'Please select data connection pool'; $LANG['pdo_look'] = 'View'; $LANG['backup_file_name'] = 'File name'; $LANG['backup_file_size'] = 'File size'; $LANG['backup_file_time'] = 'Backup date'; $LANG['backup_file_number'] = 'Volume'; $LANG['backup_import'] = 'Data recovery'; $LANG['backup_down'] = 'Download'; $LANG['backup_del'] = 'Delete backup file'; $LANG['database_sorry'] = 'Sorry'; $LANG['database_not_exist'] = 'Database files do not exist'; $LANG['data_have_load_to_database'] = 'Data has already been imported into the database'; $LANG['load_success'] = 'Uploaded successfully'; // linkage.php $LANG['linkage_name'] = 'Menu name'; $LANG['linkage_add'] = 'Add linkage menu'; $LANG['linkage_desc'] = 'Menu description'; $LANG['linkage_calling_code'] = 'Calling code'; $LANG['linkage_manage_submenu'] = 'Manage sub menu'; $LANG['linkage_is_del'] = 'Are you sure you want to remove this menu?'; $LANG['linkage_add_submenu'] = 'Add sub menu'; $LANG['linkage_parameter_error'] = 'Parameter is incorrect'; $LANG['linkage_name_desc'] = 'use a newline to batch adding'; $LANG['linkage_option_style'] = 'Drop down style'; $LANG['linkage_pop_style'] = 'Pop-up style'; $LANG['all_site'] = 'All sites'; $LANG['linkage_menu_style'] = 'Menu style'; $LANG['linkage_parent_menu'] = 'Parent menu'; $LANG['site_select'] = 'Select site'; $LANG['linkage_not_empty'] = ' is Required'; $LANG['linkage_tips'] = 'Note: please go to [Linkage menu -> Update cache] after [add linkage menu].'; ////IP禁止 $LANG['deblocking_time'] = 'Unlocked time'; $LANG['time_isok'] = 'Valid date'; $LANG['time_ismust'] = 'date is required'; $LANG['ip_exit'] = 'IP exists'; $LANG['connecting'] = 'Connecting, please wait'; $LANG['ip_type_error'] = 'Format is invalid'; //// keyword.php $LANG['keyword_name'] = 'keywords'; $LANG['keyword_listorder'] = 'Priority'; $LANG['quote_num'] = 'Times cited'; $LANG['last_quote'] = 'Last cited'; $LANG['click_num'] = 'Clicks'; $LANG['last_vistor'] = 'Last visit'; ////敏感词 $LANG['badword_name'] = 'Word censorship'; $LANG['badword_replacename'] = 'Replacement'; $LANG['badword_level'] = 'Rank'; $LANG['badword_listorder'] = 'Priority'; $LANG['badword_manage'] = 'Word censorship manager'; $LANG['badword_edit'] = 'Edit restricted word'; $LANG['badword_confirm_del'] = 'Delete this word'; $LANG['badword_common'] = 'Normal'; $LANG['badword_dangerous'] = 'Dangerous'; $LANG['badword_level_info'] = '(Normal: replace with other words, Dangerous: remove completely)'; $LANG['badword_notreplace'] = 'No replacement?'; $LANG['badword_noreplace'] = 'Replacement (optional)'; $LANG['badword_pleasechose'] = 'Please select'; $LANG['badword_confom_del'] = 'Are you sure you want to delete all selected items'; $LANG['badword_require'] = 'Require'; $LANG['badword_import_infos'] = '1. One word item per line<br> 2. Please use a comma to seperate parameters<br> 3. Word censorship rank (1 for normal, 2 for Dangerous)<br>'; //新闻协议 $LANG['google_info'] = 'About Sitemaps/ Internet news open protocol'; $LANG['google_rate'] = 'Update frequency'; $LANG['google_nums'] = 'Num of generations'; $LANG['google_sitemaps'] = 'Generate Sitemaps'; $LANG['google_baidunews'] = 'Generate Internet news open protocol'; $LANG['google_period'] = 'Update cycle '; $LANG['google_startmake'] = 'Start generating'; $LANG['google_ismake'] = 'Generate XML file'; $LANG['google_select_db'] = 'Select data source'; $LANG['google_update'] = 'Keep update'; $LANG['google_noupdate'] = 'Never'; $LANG['google_hour'] = 'Hour'; $LANG['google_day'] = 'Day'; $LANG['google_week'] = 'Week'; $LANG['google_month'] = 'Month'; $LANG['google_year'] = 'Year'; $LANG['explain'] = 'Description'; $LANG['google_infos'] = '<b>Sitemaps</b><br> Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site. There are many advantages of a site map as it is useful for your visitors in navigating and finding their related information in a quick and effective fashion. Google Sitemap serves the same function for spiders and bots.<br> There is a post at SEO chat which lists the number of ways in which the Sitemap can be useful. With Google Sitemaps, bots and spiders can easily find and index your site. Google Sitemaps is written in a language that is interpreted by automated trawlers that cover the web for getting the URLs. The language is the Google created Sitemap Protocol. Since Yahoo! and MSN have agreed to support the protocol you can submit Google Sitemap to other search engines too. With it you can tell Google about your website and URLs it has. With Google Sitemaps you can have the information such as the when the pages were updated. This will save the time and bandwidth as the crawler will know that if there has been no update of the page from the last indexing than there is no need for indexing again.<br> <B>Internet News Open Protocol: </B> <br> Under Baidu`s new standard, which is called Internet News Open Protocol, each website is asked to make their news content XML compliant so that the content can be included into Baidu` search engine index.<br> PHPCMS is able to generate sitemaps but you have to submit sitemaps accessing address to google or baidu.<br> Your website sitemap accessing address: <?=APP_PATH?>sitemaps.xml<br> More info about google sitemaps, please go to https://www.google.com/webmasters/sitemaps/login?hl=zh_CN<br> More info about Internet news open protocol, please go to http://news.baidu.com/newsop.html#kg<br>'; //category $LANG['catname'] = 'Column name'; $LANG['please_select_parent_category'] = '≡ Parent Column ≡'; $LANG['parent_category'] = 'Parent column'; $LANG['category_manage'] = 'Manage column'; $LANG['add_category'] = 'Add'; $LANG['catdir'] = 'Directory'; $LANG['catgory_img'] = 'Image'; $LANG['description'] = 'Description'; $LANG['domain'] = 'Binding domain'; $LANG['badword_add'] = 'Add restricted word'; $LANG['remove_all_selected'] = 'Remove all selected'; $LANG['category_cache'] = 'Update Column cache'; $LANG['admin_setting'] = 'Administrator settings'; $LANG['admin_manage'] = 'Administrator manager'; $LANG['admin_add'] = 'Add administrator'; $LANG['model_manage'] = 'Manage model'; $LANG['add_model'] = 'Add model'; $LANG['select_model'] = 'Select model'; $LANG['modelname'] = 'Subsidiary model'; $LANG['category_type'] = 'Column type'; $LANG['link_url'] = 'URL'; $LANG['items'] = 'Data volume'; $LANG['vistor'] = 'Access'; $LANG['domain_help'] = 'Domain binding guidelines'; $LANG['category_type_system'] = 'Internal columns'; $LANG['category_type_page'] = '<font color="blue">Single page</font>'; $LANG['category_type_link'] = '<font color="red">External links</font>'; $LANG['add_sub_category'] = 'Add sub column'; $LANG['tips_domain'] = 'Domain name '; $LANG['directory_binding'] = 'Binding to directory'; $LANG['input_catname'] = 'Please input column name'; $LANG['input_dirname'] = 'Please input directory'; $LANG['enter_the_correct_catname'] = 'ONLY contain letters, digits, underscores or hyphens'; $LANG['catname_have_exists'] = 'Directory has already exist.'; $LANG['follow_catname_have_exists'] = '<br>The following columns have already exist. Failed to add '; $LANG['domain_name_format'] = 'Domain name is optional. Format is http://www.phpcms.cn/'; $LANG['domain_end_string'] = 'Format should be as follows, http://www.phpcms.cn/, ends up with ‘/’'; $LANG['template_setting'] = 'Please go to Template Settings to change template'; $LANG['catgory_basic'] = 'Basic options'; $LANG['catgory_createhtml'] = 'Generate HTML settings'; $LANG['catgory_template'] = 'Template settings'; $LANG['catgory_seo'] = 'SEO settings'; $LANG['catgory_private'] = 'Permissions settings'; $LANG['catgory_readpoint'] = 'Fee settings'; $LANG['catgory_not_need_check'] = 'Do not require verify'; $LANG['add_workflow_tips'] = 'Verification is optional. If you want to verify, please go to Extension > Workflow > Add workflow'; $LANG['html_category'] = 'Generate Column page HTML'; $LANG['html_show'] = 'Generate Content page HTML'; $LANG['category_urlrules'] = 'Column page URL rules'; $LANG['show_urlrules'] = 'Content page URL rules'; $LANG['create_to_rootdir'] = 'Generate to root directory'; $LANG['create_to_rootdir_tips'] = 'Generate to the directory which you set html_root in caches/configs/system.php'; $LANG['available_styles'] = 'Available styles'; $LANG['category_index_tpl'] = 'Column - homepage template'; $LANG['category_list_tpl'] = 'Column - list page template'; $LANG['content_tpl'] = 'Content page template'; $LANG['meta_title'] = '<strong>META Title (column title) </strong><br/>Title for search engines'; $LANG['meta_keywords'] = '<strong>META Keywords (column keywords) </strong><br/>Use a comma to seperate keywords'; $LANG['meta_description'] = 'META Description (column description) </strong><br/>META Description for search engines'; $LANG['role_private'] = 'Role permissions'; $LANG['group_private'] = 'User group permissions'; $LANG['group_name'] = 'User group name'; $LANG['allow_vistor'] = 'Allow to visit'; $LANG['allow_contribute'] = 'Allow to post news/ contribute content'; $LANG['contribute_add_point'] = 'Reward'; $LANG['contribute_add_point_tips'] = 'points (Rewards for post submission)'; $LANG['default_readpoint'] = 'Default'; $LANG['readpoint'] = 'point'; $LANG['readpoint_tips'] = '(default fee, when user views information under the directory). You can only set fee for post when you set here as 0 and set publishing.<font color="red">fee charging is invalid when static page generated.</font>'; $LANG['money'] = 'YUAN'; $LANG['repeatchargedays'] = 'Repeat charging fee settings'; $LANG['repeat_tips'] = 'days to not charge fee'; $LANG['repeat_tips2'] = 'at least 1 day'; $LANG['category_cache_tips'] = 'Note: after add or edit column, '; $LANG['update_cache'] = 'Column cache'; $LANG['input_linkurl'] = 'Please input URL'; $LANG['page_templates'] = 'Single page template'; $LANG['edit_following_operation'] = 'Please do not forget to update column cache'; $LANG['ismenu'] = 'Display in breadcrumbs'; $LANG['manage_sub_category'] = 'Mangage sub column'; //model field $LANG['news'] = 'News'; $LANG['picture'] = 'Images'; $LANG['down'] = 'Download'; $LANG['info'] = 'Information'; $LANG['tablename'] = 'Data table'; $LANG['field_manage'] = 'Field manager'; $LANG['fieldname'] = 'Field name'; $LANG['cnames'] = 'Alias'; $LANG['system'] = 'System'; $LANG['must_input'] = ' is Required'; $LANG['contribute'] = 'Contribute'; $LANG['badword_export'] = 'Export restricted words'; $LANG['badword_import'] = 'Bulk import'; //site manage $LANG['site_management'] = 'Site manager'; $LANG['add_site'] = 'Add site'; $LANG['basic_configuration'] = 'Basic settings'; $LANG['site_dirname'] = 'Directory'; $LANG['site_name'] = 'Site name'; $LANG['site_domain'] = 'Domain'; $LANG['seo_configuration'] = 'SEO settings'; $LANG['site_title'] = 'Site name'; $LANG['description'] = 'Description'; $LANG['release_point_configuration'] = 'Publishing points settings'; $LANG['template_style_configuration'] = 'Template settings'; $LANG['style_name'] = 'Styple name'; $LANG['site_dirname_err_msg'] = 'ONLY contain letters, digits or underscores'; $LANG['site_domain_ex'] = 'Please fill in the domain name. For example, http://www.phpcms.cn/'; $LANG['site_domain_ex2'] = 'Format should be as follows, http://www.phpcms.cn/, ends up with ‘/’'; $LANG['style_name_point'] = 'Please select style (at least 1)'; $LANG['select_at_least_1'] = 'At least select 1 style'; $LANG['please_select_a_style'] = 'Please select template style'; $LANG['edit_site'] = 'Edit site'; $LANG['not_use_the_publishers_some'] = 'Do not use publishing points'; $LANG['publishing_sites_to_other_servers'] = 'Publish your sites to other servers'; $LANG['choose_release_point'] = 'Please select publishing points'; $LANG['please_select_a_site'] = 'Please select site'; $LANG['site_att_config'] = 'Attachment settings'; $LANG['site_att_upload_maxsize'] = 'Upload size'; $LANG['site_att_allow_ext'] = 'Upload type'; $LANG['site_att_gb_check'] = 'GD Library function tests'; $LANG['site_att_watermark_enable'] = 'Enable image watermark'; $LANG['site_att_watermark_open'] = 'Enable'; $LANG['site_att_watermark_close'] = 'Close'; $LANG['site_att_watermark_condition'] = 'Watermark condition'; $LANG['site_att_watermark_img'] = 'Image Watermark'; $LANG['site_att_watermark_img_desc'] = 'Watermark Path: statics/images/water'; $LANG['site_att_watermark_minwidth'] = 'Width'; $LANG['site_att_watermark_minheight'] = 'Height'; $LANG['site_att_watermark_pct'] = 'Watermark transparency'; $LANG['site_att_watermark_pct_desc'] = 'Please set the opacity level of the Opacity filter, with 0 being fully transparent, and 100 being fully opaque'; $LANG['site_att_watermark_quality'] = 'JPEG watermark quality '; $LANG['site_att_watermark_quality_desc'] = 'Watermark quality (0-100) 0 is the worst quality while 100 has the best quality'; $LANG['site_att_watermark_pos'] = 'Watermark positions'; $LANG['site_att_watermark_pos_10'] = 'Random position'; $LANG['site_att_watermark_pos_1'] = 'Left top'; $LANG['site_att_watermark_pos_2'] = 'Center top'; $LANG['site_att_watermark_pos_3'] = 'Right top'; $LANG['site_att_watermark_pos_4'] = 'Center left'; $LANG['site_att_watermark_pos_5'] = 'Left of Left side'; $LANG['site_att_watermark_pos_6'] = 'Right of left side'; $LANG['site_att_watermark_pos_7'] = 'Left bottom'; $LANG['site_att_watermark_pos_8'] = 'Center bottom'; $LANG['site_att_watermark_pos_9'] = 'Right bottom'; //release_point $LANG['release_point_management'] = 'Publishing points manager'; $LANG['release_point'] = 'Publishing point'; $LANG['release_point_name'] = 'Name '; $LANG['ftp_server'] = 'FTP server'; $LANG['server_address'] = 'Server address'; $LANG['server_port'] = 'Server port'; $LANG['passive_mode'] = 'Passive mode'; $LANG['ssl_connection'] = 'SSL connect'; $LANG['test_connections'] = 'Test'; $LANG['server_ports_must_be_integers'] = 'Port must be a positive integer'; $LANG['ftp_server_connections_success'] = 'Connected successfully'; $LANG['ftp_connection_a_long_time'] = 'FTP connect timed out, please optimize FTP server.'; $LANG['can_ftp_server_connections'] = 'Unable to connect to FTP server'; $LANG['your_server_will_not_support_the_ssl_connection'] = 'Your server does not support a SSL connection'; $LANG['input_not_space'] = 'Please input content without space'; $LANG['path'] = 'Directory'; $LANG['most_choose_four'] = 'At most 4'; //urlrule $LANG['add_urlrule'] = 'Add rule'; $LANG['urlrule_file'] = 'URL rule name'; $LANG['urlrule_module'] = 'Module name'; $LANG['urlrule_ishtml'] = 'Enable to generate a static page'; $LANG['urlrule_example'] = 'URL example'; $LANG['urlrule_url'] = 'URL rule'; $LANG['urlrule_func'] = 'Available variable'; $LANG['complete_part_path'] = 'Parent Column Path'; $LANG['category_path'] = 'Column directory'; $LANG['year'] = 'Year'; $LANG['month'] = 'Month'; $LANG['day'] = 'Day'; $LANG['respective_modules'] = 'Subsidiary module'; $LANG['rulename'] = 'Name'; $LANG['edit_urlrule'] = 'Edit rule'; //module installation $LANG['modulename'] = 'Module name'; $LANG['modulepath'] = 'Directory'; $LANG['moduleauthor'] = 'Author'; $LANG['introduce'] = 'Description'; $LANG['homepage'] = 'Your homepage'; $LANG['no_module'] = 'Pleae confirm the module you want to set up'; $LANG['this_module_installed'] = 'The module has already exist in system, please uninstall old module before continue.'; $LANG['success_module_install'] = 'Just finished setup successfully'; $LANG['uninstall_success'] = 'Uninstalled successfully'; $LANG['versions'] = 'Version'; $LANG['installdate'] = 'Installation date'; $LANG['updatetime'] = 'Last updated'; $LANG['lang_dir_no_write'] = 'Language package directory is not writable'; $LANG['module_sql_no_exist'] = 'module.sql does not exist, please check the path'; $LANG['model_clas_no_exist'] = '_model.class.php does not exist, please upload to the path of data module'; $LANG['sql_no_exist'] = '.sql does not exist, please check the path'; $LANG['ban'] = 'Terminate'; $LANG['unload'] = 'Uninstall'; $LANG['unknown'] = 'Unknown'; $LANG['install_dir_no_exist'] = 'Installer app directory does not exist, please check'; $LANG['uninstall_dir_no_exist'] = 'Uninstaller app directory does not exist. '; $LANG['uninstall_now'] = 'Not installed'; $LANG['install'] = 'Install'; $LANG['no_install'] = 'Cannot install'; $LANG['module_istall'] = 'Module installation'; $LANG['module_unistall'] = 'Module uninstallation'; $LANG['model_file_no_exists'] = 'Data model does not exist, please upload the file under model directory'; //更新全站缓存 $LANG['downservers'] = 'Download'; $LANG['ipbanned'] = 'IP filters'; $LANG['keylink'] = 'Related link'; $LANG['keylink_edit'] = 'Edit related link'; $LANG['keylink_confirm_del'] = 'Remove related words'; $LANG['update_formguide_model'] = 'Form wizard model'; $LANG['update_vote_setting'] = 'Poll module settings'; $LANG['update_link_setting'] = 'Link-to-us model settings'; $LANG['linkage'] = 'Linkage'; $LANG['module'] = 'Modules'; $LANG['position'] = 'Top spot'; $LANG['admin_role'] = 'Role'; $LANG['sites'] = 'Site'; $LANG['urlrule'] = 'URL rule'; $LANG['sitemodel'] = 'Model'; $LANG['type'] = 'Type'; $LANG['workflow'] = 'Workflow'; $LANG['dbsource'] = 'Data source'; $LANG['member_group'] = 'Users'; $LANG['membermodel'] = 'User model'; $LANG['member_model_field'] = 'User model field'; $LANG['search_type'] = 'Site-wide search type'; $LANG['search_setting'] = 'Site-wide search settings'; $LANG['special'] = 'Topic'; $LANG['setting'] = 'Site setting'; $LANG['database'] = 'Data source model'; $LANG['cache_file'] = 'Cache file'; $LANG['clear_files'] = 'File clearup'; $LANG['update'] = 'Update '; $LANG['cache_file_success'] = ' Successful'; $LANG['site_cache_success'] = ' Successful...</li><li style=\"color: red;\">Update cache successfully on site-wide'; $LANG['please_choose_the_default_style'] = 'Please select default style'; $LANG['cache_copyfrom'] = 'Source'; $LANG['please_select_a_style_and_select_the_template'] = 'Please select style then select default template'; $LANG['default_style'] = 'Default style'; $LANG['your_server_it_may_not_have_access_to'] = 'Could not able to access your server.'; $LANG['_please_check_the_server_configuration'] = ', please check your server configuration'; $LANG['phpcms_logon'] = 'PHPCMS login'; $LANG['please_input_your_password_the_picture_corresponding_location_6_digits'] = 'Please input 6 digits number corresponding to picture in smart electronic password card.'; $LANG['ht_card'] = 'Smart electronic password card'; $LANG['apply_for_a_password_card'] = 'Apply'; $LANG['the_password_card_binding'] = 'Terminate'; $LANG['the_password_card'] = 'Smart electronic password card'; $LANG['your_website_opened_the_card_no_password'] = 'Your website is not enabled for smart electronic password card.'; $LANG['card_msg'] = '1. please set safecard as 0 in config.php if you want to close Smart card supported. <BR>2. Smart card will be deleted if it is not being used. <BR>3.Smard card only can be applied 15 cards per hour <BR>4. Smart card is often used in security-critical situations, please carefully be perserved. <BR>5. Right click on smard card, select "save as" to save to your computer. Also, you can print as card or other medium <BR>6. You have to terminate the previous smart card bindings in order to apply for an new smart card.'; $LANG['user_id_cannot_be_empty'] = 'User ID is required'; $LANG['users_were_not_found'] = 'User not found'; $LANG['password_card_application_success'] = 'Your application has been approved'; $LANG['the_binding_success'] = 'Binding has been terminated successfully'; $LANG['please_lift_the_password_card_binding'] = 'Please terminate smart card bindings first'; $LANG['click_change_validate'] = 'Click to change'; $LANG['a_card_with_a_local_database_please_contact_the_system_administrators'] = 'Smart card failed to save to local database, please contact system administrator'; $LANG['your_password_card_is_not_validate'] = 'Your smart card does not pass verify check yet.'; $LANG['usersandmenus'] = 'Column permissions'; $LANG['select_all'] = 'Select all'; $LANG['title_varchar'] = 'Column name'; $LANG['view'] = 'View'; $LANG['add'] = 'Add'; $LANG['sort'] = 'Ordering'; $LANG['push'] = 'Promote'; $LANG['move'] = 'Move'; $LANG['following_operation'] = 'You can '; $LANG['following_operation_1'] = '1. Update column cache'; $LANG['following_operation_2'] = '2. Back to add column'; $LANG['setting_connect_notice'] = 'Frontend will not show connect notice if configuration is empty'; $LANG['connect_enable'] = 'Enable external web passport'; $LANG['connect_enable_notice'] = 'Frontend will not show all connect notice if closed.'; $LANG['setting_connect'] = 'connect'; $LANG['setting_connect_enable'] = 'Enable connect'; $LANG['setting_connect_sina'] = 'SINA miniblog'; $LANG['setting_snda_enable'] = 'Connect to SNDA'; $LANG['snda_need_curl_init'] = 'but SNDA web passport requires curl extension supports on server.'; $LANG['red'] = 'Red'; $LANG['green'] = 'Green'; $LANG['blue'] = 'Blue'; $LANG['lockscreen_status'] = 'Locked, please input your password'; $LANG['add_copyfrom'] = 'Add source'; $LANG['copyfrom_name'] = 'Source name'; $LANG['copyfrom_url'] = 'Source URL'; $LANG['copyfrom_logo'] = 'Logo'; $LANG['copyfrom_url_tips'] = 'Please start with http://'; $LANG['please_add_model'] = 'Please add model first'; $LANG['en_tips_type'] = 'ONLY contain letters, digits or underscores'; $LANG['godaddy'] = 'Binding directory'; $LANG['input_siteurl'] = 'Please input website URL'; $LANG['keylink_name'] = 'Related Link name'; $LANG['keylink_url'] = 'Related link URL'; $LANG['category_does_not_allow_delete'] = 'The content already exists in the column, it is not allowed to delete.'; $LANG['category_batch_tips'] = 'Hint: Hold Alt and press left mouse button to select. Direction keys ← → to move HScrollbar'; $LANG['please_select_category'] = 'The selected column is empty, please reselect'; $LANG['modelid_edit_tips'] = ' <img src="./statics/images/icon/help.gif" title="You are able to change model when the column data is 0">'; $LANG['add_category_types'] = 'Type'; $LANG['normal_add'] = 'single add'; $LANG['batch_add_tips'] = 'For example, <br><font color="#959595">National|China<br>World|World<br></font> vertical bar and the name after vertical bar can leave it blank. By default, it will automatically generate pinyin of the column'; $LANG['not_display_in_menu'] = 'Breadcrumb does not display'; $LANG['apply_to_child'] = 'Apply to sub column'; ?>
108wo
phpcms/languages/en/admin.lang.php
PHP
asf20
36,743
<?php $LANG['2s_close'] = 'After <font color="red"><B><span id="secondid">2</span></B> seconds it will be automatically closed</font>'; $LANG['news'] = 'News'; $LANG['picture'] = 'Images'; $LANG['down'] = 'Download'; $LANG['info'] = 'Info'; $LANG['string_limit'] = 'Between <B>{minlength}</B> and <B>{maxlength}</B> '; $LANG['tablename'] = 'Database table'; $LANG['field_manage'] = 'Manage field'; $LANG['fieldname'] = 'Field name'; $LANG['cnames'] = 'Alias'; $LANG['system'] = 'System'; $LANG['must_input'] = 'Require'; $LANG['contribute'] = 'Contribute'; $LANG['basic_configuration'] = 'Basic settings'; $LANG['model_name'] = 'Model name'; $LANG['model_tablename'] = 'Model Entry'; $LANG['description'] = 'Description'; $LANG['template_setting'] = 'Template settings'; $LANG['model_tablename_wrong'] = 'ONLY contain letters, digits, underscores'; $LANG['already_exist'] = 'Already exist'; $LANG['between_1_to_20'] = 'Between 1 and 20'; $LANG['connecting_please_wait'] = 'Connecting...please wait'; $LANG['thumb'] = 'Thumbnail image'; $LANG['all_list'] = 'All articles'; $LANG['all_check_list'] = 'All pending content'; $LANG['thumb_list'] = 'includes thumbnail image'; $LANG['block_site_index'] = 'Homepage'; $LANG['checkall_content'] = 'Verify contents'; $LANG['publish_to_othor_category'] = 'Publish to other columns'; //内容添加表单部分 $LANG['check_title'] = 'check duplicates'; $LANG['title_repeat'] = 'Repeat title '; $LANG['title_not_repeat'] = 'Not-repeated '; $LANG['mirror_server_list'] = 'Mirrored servers list'; $LANG['attachment_upload'] = 'Upload attachment'; $LANG['upload_soft'] = 'Upload software'; $LANG['file_list'] = 'File list'; $LANG['multiple_file_list'] = 'Bulk upload'; $LANG['add_remote_url'] = 'Add remote location'; $LANG['remove_out'] = 'Remove'; $LANG['upload_pic'] = 'Upload image'; $LANG['upload_pic_max'] = 'Max number of uploading file for one time'; $LANG['pic_list'] = 'Image list'; $LANG['select_pic'] = 'Select picture'; $LANG['tips_pics'] = 'photos'; $LANG['islink_url'] = 'Redirected link'; $LANG['page_type1'] = 'Pagebreak not set'; $LANG['page_type2'] = 'Auto pagebreak'; $LANG['page_type3'] = 'Manual pagebreak'; $LANG['page_maxlength'] = 'Number of characters (include HTML Tag)'; $LANG['upload_thumbnails'] = 'Please upload thumbnail image'; $LANG['edit_content'] = 'Edit'; $LANG['not_meet_the_conditions'] = 'invalid'; $LANG['not_less_than'] = 'not less than'; $LANG['not_more_than'] = 'not more than'; $LANG['the_value_must_not_repeat'] = 'Cannot repeat'; //type $LANG['add_type'] = 'Add type'; $LANG['select_model_name'] = 'Model'; $LANG['type_name'] = 'Type'; //workflow $LANG['workflow_name'] = 'Workflow name'; $LANG['steps'] = 'Review'; $LANG['current_steps'] = 'Level'; $LANG['admin_users'] = 'List of people'; $LANG['workflow_diagram'] = 'Workflow diagram'; $LANG['edit_workflow'] = 'Edit'; $LANG['steps_1'] = 'Level 1'; $LANG['steps_2'] = 'Level 2'; $LANG['steps_3'] = 'Level 3'; $LANG['steps_4'] = 'Level 4'; $LANG['confirm_delete_model'] = 'Are you sure you want to remove 『 {message} 』? Database table will be removed at the same time'; $LANG['workflow_0'] = 'Rejection'; $LANG['workflow_1'] = '1 Check'; $LANG['workflow_2'] = '2 Check'; $LANG['workflow_3'] = '3 Check'; $LANG['workflow_4'] = '4 Check'; $LANG['workflow_99'] = 'Pass'; $LANG['list'] = 'List'; $LANG['catid'] = 'Column ID'; $LANG['cat_tag'] = 'Column tag'; $LANG['sort'] = 'Ordering'; $LANG['id_desc'] = 'Add time DESC'; $LANG['updatetime_desc'] = 'Update time DESC'; $LANG['listorder_asc'] = 'ASCE'; $LANG['listorder_desc'] = 'DESC'; $LANG['subcat'] = 'Sub column'; $LANG['siteid'] = 'Site ID'; //down $LANG['illegal_parameters'] = 'Parameter is incorrect'; $LANG['url_invalid'] = 'URL not found'; $LANG['url_error'] = 'Invalid address'; $LANG['position'] = 'Top spot'; $LANG['posid'] = 'Top spot ID'; $LANG['posorder'] = 'Ordering condition'; $LANG['possort'] = 'Ordering'; $LANG['id'] = 'ID'; $LANG['updatetime'] = 'Updated time'; $LANG['posasc'] = 'ASCE'; $LANG['posdesc'] = 'DESC'; $LANG['add_content'] = 'Add content'; $LANG['check_passed'] = 'Approval'; $LANG['update_htmls'] = 'Bulk update _{catname}_'; $LANG['elite'] = 'Promoted'; $LANG['no_elite'] = 'Not promoted'; $LANG['related_articles'] = 'Related articles'; $LANG['top'] = 'Top ranking'; $LANG['relevant_articles_id'] = 'Related article id'; $LANG['key_word'] = 'Keywords'; $LANG['reject'] = 'Reject'; $LANG['publish_user'] = 'Publisher'; $LANG['today_hits'] = 'Today hits'; $LANG['yestoday_hits'] = 'Yesterday hits'; $LANG['week_hits'] = 'Weekly hits'; $LANG['month_hits'] = 'Monthly hits'; $LANG['member_contribute'] = 'User submission'; $LANG['comment'] = 'Comment'; $LANG['createhtml'] = 'Generate HTML in batches'; $LANG['passed_checked'] = 'Approval'; $LANG['view_comment'] = 'View comment'; $LANG['copyfrom_tips'] = '≡Please select≡'; $LANG['permission_to_operate'] = 'You do not have permissions'; $LANG['missing_part_parameters'] = 'Missing column ID'; $LANG['you_do_not_check'] = 'Please select'; $LANG['information_does_not_exist'] = 'Info does not exist'; $LANG['after_a_few_seconds_left'] = 'seconds shut automatically...'; $LANG['please_add_category'] = 'There is no column, please add one'; $LANG['need_update_items'] = 'Total update <font color="red">{total}</font> - Completed <font color="red">{creatednum}</font> items(<font color="red">{percent}%</font>)'; $LANG['create_update_success'] = 'Updated completely'; $LANG['start_update_urls'] = 'Start updating URL...'; $LANG['updating'] = 'Updating'; $LANG['have_update_items'] = 'has<font color="red">{total}</font> items - Completed <font color="red">{creatednum}</font> items(<font color="red">{percent}%</font>)'; $LANG['have_update_items'] = 'has <font color="red">{total}</font> items - Completed <font color="red">{creatednum}</font> items(<font color="red">{percent}%</font>)'; $LANG['start_update'] = 'Updating...'; $LANG['start_update_category'] = 'Start updating column page...'; $LANG['start_to_end_id'] = '" {page} - {endpage}Page"'; $LANG['index_create_finish'] = 'Homepage updated successfully! Size: {size}'; $LANG['add_content_position'] = 'Current Location: Content > Content publishing manager > Add content'; $LANG['edit_content_position'] = 'Current Location: Content > Content publishing manager > Edit content'; $LANG['priview_model_position'] = 'Current Location: Content > Model preview'; $LANG['c_status'] = 'Status'; $LANG['c_publish'] = 'Publish'; $LANG['c_check'] = 'Review'; $LANG['save_close'] = 'Save & close'; $LANG['save_continue'] = 'Save & Publish'; $LANG['c_close'] = 'Close(X)'; $LANG['dialog_close'] = 'Close'; $LANG['please_save_information'] = 'Content has not yet been saved'; $LANG['page_manage'] = 'Single page manage'; $LANG['title'] = 'Title'; $LANG['intro'] = 'Introduction'; $LANG['hits'] = 'hits'; $LANG['keywords'] = 'Keywords'; $LANG['content'] = 'Content'; $LANG['c_template'] = 'Template'; $LANG['explode_keywords'] = 'Use space or “,” to seperate multiple keywords'; $LANG['search_category'] = 'Input “pinyin”or“column name” to quick search'; $LANG['quick_into'] = 'Quick access'; $LANG['html_notice'] = '1. Please go to Content > Publishing Manager > Sync publishing point (after set Publishing point and generate static pages ) '; $LANG['according_model'] = 'According to the way model updating'; $LANG['select_category_area'] = 'Select column area'; $LANG['select_operate_content'] = 'Select content'; $LANG['no_limit_category'] = 'All columns'; $LANG['every_time'] = 'Update each round'; $LANG['information_items'] = 'Item info'; $LANG['update_all'] = 'Update all info'; $LANG['submit_start_update'] = 'Updating'; $LANG['no_limit_model'] = 'All columns'; $LANG['last_information'] = 'Update to the lastest info'; $LANG['push_ctrl_to_select'] = 'Hold “Ctrl”or“Shift” to select more.Hold “Ctrl” to undo the selection.'; $LANG['update_time_from'] = 'Update publishing date from'; $LANG['to'] = 'to'; $LANG['in_information'] = '`information'; $LANG['update_id_from'] = 'Update ID from'; $LANG['please_select_category'] = 'All column'; $LANG['catname'] = 'Column name'; $LANG['confirm_delete'] = 'Are you sure you want to remve it?'; $LANG['push'] = 'Promote'; $LANG['push_to_position'] = 'Promote to top spot'; $LANG['push_to_special'] = 'Promote to topic'; $LANG['belong_category'] = 'Subsidiary column'; $LANG['addtime'] = 'Add time'; $LANG['contribute_time'] = 'Submission time'; $LANG['click_to_select'] = 'Select'; $LANG['available_styles'] = 'Available styles'; $LANG['category_index_tpl'] = 'Column homepage template'; $LANG['category_list_tpl'] = 'Column list page template'; $LANG['content_tpl'] = 'Content page template'; $LANG['not_exists_push'] = 'The push function of module is disabled.'; $LANG['fieldname_was_wrong'] = 'The field name is incorrect.'; $LANG['select_fieldtype'] = 'Please select field type'; $LANG['input_right'] = 'Correct'; $LANG['input_nickname'] = 'Please input alias'; $LANG['nickname_empty'] = 'The field alias is required'; $LANG['model_manage'] = 'Manage model'; $LANG['field_manage'] = 'Field manager'; $LANG['add_field'] = 'Add'; $LANG['manage_field'] = 'Manage'; $LANG['field_type'] = 'Field type'; $LANG['issystem_field'] = 'As field of the primary table'; $LANG['yes'] = 'Yes'; $LANG['no'] = 'No'; $LANG['fieldname'] = 'Field name'; $LANG['fieldname_tips'] = 'ONLY contain letters, digits, underscores. It must start with letters and it must NOT end up with underscore.'; $LANG['field_nickname'] = 'Field alias'; $LANG['nickname_tips'] = 'For example, article title'; $LANG['field_tip'] = 'Field hints'; $LANG['field_tips'] = 'Hints under field alias'; $LANG['relation_parm'] = 'Related parameters '; $LANG['relation_parm_tips'] = 'Set form properties'; $LANG['form_attr'] = 'Additional properties'; $LANG['form_attr_tips'] = 'Adding JavaScipt Event from here'; $LANG['form_css_name'] = 'Style name'; $LANG['form_css_name_tips'] = 'Define CSS name of form'; $LANG['string_size'] = 'The range of characters length'; $LANG['string_size_tips'] = 'The system will check length validation. Please leave blank if you do not want to limit the length.'; $LANG['minlength'] = 'Min length'; $LANG['maxlength'] = 'Max length'; $LANG['data_preg'] = 'Verify input with regular expressions'; $LANG['data_preg_tips'] = 'The system will verify data by using regular expressions. Please leave blank if you do not want to verify data'; $LANG['often_preg'] = 'Common regular expressions'; $LANG['figure'] = 'Digits'; $LANG['integer'] = 'Integer'; $LANG['letter'] = 'Letters'; $LANG['integer_letter'] = 'digits + letters'; $LANG['hyperlink'] = 'Hyperlink'; $LANG['mobile_number'] = 'Phone number'; $LANG['tel_number'] = 'Tel'; $LANG['zip'] = 'Zip'; $LANG['data_passed_msg'] = 'Data validation error message'; $LANG['unique'] = 'Unique value'; $LANG['basic_field'] = 'As basic info'; $LANG['basic_field_tips'] = 'The left of Add page will be shown on all basic info.'; $LANG['as_search_field'] = 'As search conditions'; $LANG['allow_contributor'] = 'Shown on the article submission of frontend'; $LANG['as_fulltext_field'] = 'As site-wide search info'; $LANG['as_postion_info'] = 'Call tags in top spot'; $LANG['disabled_groups_field'] = 'Select user groups. These group users cannot set up field value'; $LANG['disabled_role_field'] = 'Select role. These roles cannot set up field value'; $LANG['edit_field'] = 'Modify field'; $LANG['field_disabled'] = 'Disable'; $LANG['field_enabled'] = '<font color="red"> Enable</font>'; $LANG['import_model'] = 'Import model'; $LANG['edit_model'] = 'Edit model'; $LANG['export'] = 'Export'; $LANG['template'] = 'Select template'; $LANG['type_name'] = 'Category name'; $LANG['edit_type'] = 'Edit category'; $LANG['updateurl_tips'] = '1. Bulk update URL only if the URLs of content pages changed. Otherwise there is no need to update URLs. <BR> 2. Rule settings: Settings > Related settings > Manage column > Add/ Edit column'; $LANG['onclick_view'] = 'View'; $LANG['title_is_empty'] = 'Title is required'; $LANG['subsidiary_table_datalost'] = 'The information is incomplete, please try to add again after deleting'; $LANG['click_vistor'] = 'Click to visit'; $LANG['visualization_edit'] = 'Block manager'; $LANG['starttime_than_endtime'] = 'Start time must be less than end time.'; $LANG['day_select'] = 'of days'; $LANG['no_limit'] = 'Unlimit'; $LANG['remove'] = 'Bulk move'; $LANG['move_to_categorys'] = 'Target column'; $LANG['from_category'] = 'From assigned column'; $LANG['from_ids'] = 'Assigned ID'; $LANG['from_where'] = 'Source'; $LANG['move_tips'] = '<font color="red">Tips:</font>mutiple issues can be separated by \',\',<font color="red">WITHOUT line breaks</font>'; $LANG['ctrl_source_select'] = 'Hold down the control key to select more than one option'; $LANG['please_input_move_source'] = 'Please select source column or assigned ID'; $LANG['please_select_target_category'] = 'Please select target column'; $LANG['type_name_tips'] = 'Please input Category name, multiple categories are separated by newlines'; $LANG['push_to_category'] = 'Promote to other columns'; $LANG['select_sitelist'] = 'Select site'; $LANG['category_checked'] = 'Selected columns'; $LANG['as_omnipotent_field'] = 'As a universal field of subsidiary field'; $LANG['as_omnipotent_field_tips'] = 'MUST be combined with universal fields. Otherwise, post won`t display properly.'; $LANG['model_does_not_allow_delete'] = 'If the model that already have content, then the deletion fails.'; $LANG['priview_modelfield'] = 'Preview'; $LANG['reject_message'] = 'Your post was rejected. Please submit it again after you complete the edits.'; $LANG['click_edit'] = 'Click to edit'; $LANG['reject_message_tips'] = 'your post does not meet our requirements for technical support. Please post a new thread with all the requirements so we can further help you.<BR>Title:'; $LANG['nocheck_users'] = 'Exempt from review'; $LANG['checkstatus_flag'] = 'allow to be modified during reviewing'; $LANG['content_page'] = 'Content page'; $LANG['reject_msg'] = 'Please input your rejections reason. It will be sent by message.'; $LANG['check_status'] = '<font color="#0000FF">Review status > </font>'; $LANG['cancel_the_picture'] = 'Cancel'; $LANG['model_table_not_exists'] = 'Model is disabled or the content of model does not exist.'; //前台部分 $LANG['info_does_not_exists'] = 'Information does not exist anymore or is not yet approved by administrators'; $LANG['first_page'] = 'First page'; $LANG['last_page'] = 'Last page'; $LANG['category_not_exists'] = 'Column does not exist'; $LANG['have_pay'] = 'You have already paid'; $LANG['msg_readpoint'] = 'You have spent'; $LANG['readpoint_pay'] = ' You will have to pay a fee {readpoint} yuan in order to read an article'; $LANG['readpoint_pay_point'] = 'You will have to pay a fee {readpoint} points in order to read an article'; $LANG['please_enter_content_to_search'] = 'Please input search request'; $LANG['search_minrefreshtime'] = 'You are searching too fast. please wait {min} seconds and search again'; $LANG['not_writable'] = 'Not writable'; $LANG['no_priv'] = 'You do not have permission to access this info'; $LANG['guest_not_allowsearch'] = 'Visitor does not be allow to use search function. Please sign in first.'; $LANG['cut_the_picture'] = 'Crop'; $LANG['moreinfo'] = 'Invoke more info'; ?>
108wo
phpcms/languages/en/content.lang.php
PHP
asf20
15,672
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['no_language'] = 'Lack of language pack'; $LANG['website_manage'] = 'phpcmsV9 - Administration'; $LANG['lockscreen'] = 'Screen lock'; $LANG['submit'] = 'Submit'; $LANG['yes'] = 'Yes'; $LANG['no'] = 'No'; $LANG['error'] = 'Error'; $LANG['illegal_operation'] = 'Illegal operation'; $LANG['illegal_action'] = 'Operation illegal on linked parameter. Please return'; $LANG['illegal_parameters'] = 'Invalid parameter'; $LANG['login_website'] = 'Please log in first'; $LANG['login_success'] = 'You have successfully logged in'; $LANG['operation_success'] = 'The operation completed successfully'; $LANG['add_success'] = 'Data was added successfully'; $LANG['operation_failure'] = 'The operation failed'; $LANG['success'] = 'Success'; $LANG['failure'] = 'Failure'; $LANG['total'] = 'Total'; $LANG['first'] = 'Homepage'; $LANG['page_item'] = ' items '; $LANG['previous'] = 'Previous'; $LANG['next'] = 'Next'; $LANG['last'] = 'End'; $LANG['page'] = 'Page '; $LANG['serial'] = ' '; $LANG['page'] = 'Page'; $LANG['Sunday'] = 'Sunday'; $LANG['Monday'] = 'Monday'; $LANG['Tuesday'] = 'Tuesday'; $LANG['Wednesday'] = 'Wednesday'; $LANG['Thursday'] = 'Thursday'; $LANG['Friday'] = 'Friday'; $LANG['Saturday'] = 'Saturday'; $LANG['admin_login'] = 'PHPCMS Administration'; $LANG['add'] = 'Add'; $LANG['edit'] = 'Edit'; $LANG['delete'] = 'Delete'; $LANG['listorder'] = 'Ordering'; $LANG['sys_setting'] = 'Settings'; $LANG['module'] = 'Modules'; $LANG['module_manage'] = 'Module manager'; $LANG['category'] = 'Columns'; $LANG['content'] = 'Content'; $LANG['members'] = 'Users'; $LANG['template_style'] = 'Templates'; $LANG['panel'] = 'Dashboard'; $LANG['selected'] = 'Selected'; $LANG['title'] = 'Title'; $LANG['hits'] = 'Page views'; $LANG['inputtime'] = 'Published time'; $LANG['operations_manage'] = 'Operation'; $LANG['selected'] = 'Select'; $LANG['selected_all'] = 'Select all'; $LANG['cancel'] = 'Cancel'; $LANG['all'] = 'All'; $LANG['confirm'] = 'Are you sure you want to delete『 {message} 』?'; $LANG['ok'] = 'Yes'; $LANG['clear'] = 'Clear'; $LANG['pass'] = 'Approval'; $LANG['unpass'] = 'Pending'; $LANG['please_select'] = 'Please select'; $LANG['items'] = 'Data volume'; $LANG['status'] = 'Status'; $LANG['icon_unlock'] = '<font color="red">√</font>'; $LANG['icon_locked'] = '<font color="blue">×</font>'; $LANG['type'] = 'Type'; $LANG['search'] = 'Search'; $LANG['username'] = 'Username'; $LANG['user_already_exist'] = 'User already exists'; $LANG['poster'] = 'Advertising'; $LANG['announce'] = 'Announcement'; $LANG['template_select'] = 'Select template'; $LANG['input'] = 'Please input '; $LANG['exists'] = 'Exists'; $LANG['connecting'] = 'Connecting, please wait...'; $LANG['empty'] = ' is Required'; $LANG['notfound'] = 'Data not found'; $LANG['subtitle'] = 'Sub heading'; $LANG['paging'] = 'Pagebreak'; $LANG['insert_page_title'] = 'Insert pagebreak mark of subtitle at the cursor position'; $LANG['insert_page_marker'] = 'Insert pagebreak mark at the cursor position'; $LANG['ctrl_more_selected'] = 'Hold Ctrl to select multiple'; $LANG['file_does_not_writable'] = 'Failed to write to file'; $LANG['file_does_not_exists'] = 'File does not exists'; $LANG['file_exists'] = 'Already exists'; $LANG['copyright'] = 'CopyRight 2006-2011 <a href="http://www.sdo.com" target="_blank">SNDA</a> B2-20040053 <a href="http://www.phpcms.cn" target="_blank">PHPCMS TEAM</a> '; $LANG['input_right'] = 'Correct'; $LANG['update_success'] = 'Updated successfully'; $LANG['select_all'] = 'Select all'; $LANG['member_search'] = 'Seach users'; $LANG['input_code'] = 'Please type the code shown'; $LANG['code_error'] = 'Incorrect'; $LANG['module_not_exists'] = 'The module is not installed or disabled'; $LANG['part_cache_success'] = 'Updating cache files'; $LANG['message_tips'] = 'Message'; $LANG['return_previous'] = 'Click here return to previous page'; $LANG['close'] = 'Close'; $LANG['click_here'] = 'Click here if your browser does not automatically redirect'; $LANG['position'] = 'Top spot'; $LANG['no_setting'] = 'Not set'; $LANG['tip_zone'] = 'Hint:'; $LANG['start_update'] = 'Start updating'; $LANG['confirm_recovery'] = 'Are you sure you want to restore database'; $LANG['mirrors_name'] = 'Mirror site name '; $LANG['mirror_address'] = 'Mirror site address '; $LANG['three_types'] = 'Only contains digits, letters, underscore.'; $LANG['enter_correct'] = 'Correct'; $LANG['change_level'] = 'Not change ordering'; $LANG['delete_keywords'] = 'Delete keyword?'; $LANG['select_operations'] = 'Please select'; $LANG['menu_name'] = 'Menu name'; $LANG['menu_description'] = 'Menu description'; $LANG['menu_style'] = 'Menu style'; $LANG['drop_down_style'] = 'Drop down style'; $LANG['pop_style'] = 'Pop up style'; $LANG['sites'] = 'Site'; $LANG['all_sites'] = 'All sites'; $LANG['cat_empty'] = 'Null (as primary column)'; $LANG['click_select'] = 'Click to select'; $LANG['level_menu'] = 'Previous menu'; $LANG['file'] = 'File'; $LANG['time'] = 'Time'; $LANG['ie8_tip'] = 'By using IE8, we can achieve the best visions'; $LANG['personal_information'] = 'Personal Info'; $LANG['ajax_tip'] = 'Please start with ajax_ by passing AJAX. Also, please write in ajax_edit_myaction/ajax_delete_myaction only if modifying or deleting record operation'; $LANG['for_chinese_lan'] = 'Corresponding chinese name'; $LANG['manage'] = 'Manage'; $LANG['member_manage'] = 'Manage user'; $LANG['application'] = 'Manage application'; $LANG['communication'] = 'Communication'; $LANG['redeem'] = 'Exchange points'; $LANG['administrator'] = 'Admin section'; $LANG['system_setting'] = 'System settings'; $LANG['update_cache'] = 'Update cache'; $LANG['exit'] = 'Exit '; $LANG['choose_model'] = 'Please select model'; $LANG['enable'] = 'Enable'; $LANG['close'] = 'Close'; $LANG['role_name'] = 'Role name'; $LANG['role_description'] = 'Role description'; $LANG['enabled'] = 'Enable'; $LANG['ban'] = 'Disable'; $LANG['submit'] = 'Submit'; $LANG['need_subscribe'] = 'Apply to get this function'; $LANG['click_apply'] = 'Click to apply'; $LANG['snda_register_notice'] = 'Note: time for examination and approval is 1-3 days. Please fill in APPID after passing the review (By default, function is closed if APPID is empty.)'; $LANG['connect_micro'] = 'Connect to miniblog'; $LANG['click_register'] = 'Click to register'; $LANG['general'] = 'Normal'; $LANG['danger'] = 'Danger'; $LANG['enter_word'] = 'Please input profanity you want to filter '; $LANG['keywords_no_exist'] = 'Keyword does not exist'; $LANG['export'] = 'wordcensorship.txt'; $LANG['not_information'] = 'Have not yet been written'; $LANG['choose_category'] = 'Please select column'; $LANG['create_success'] = 'Generated successfully'; $LANG['specified_word_not_exist'] = 'Related word does not exist'; $LANG['open_module'] = 'All module'; $LANG['miao'] = 'Second'; $LANG['att_upload_succ'] = 'Upload successfully'; $LANG['att_upload_limit_ini'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini.'; $LANG['att_upload_limit_filesize'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.'; $LANG['att_upload_limit_part'] = 'The uploaded file was only partially uploaded'; $LANG['att_upload_nofile'] = 'No file was uploaded'; $LANG['att_upload_notemp'] = 'Missing a temporary folder'; $LANG['att_upload_temp_w_f'] = 'Failed to write file to disk.'; $LANG['att_upload_create_dir_f'] = 'Failed to create attachment path'; $LANG['att_upload_dir_permissions'] = 'Failed to write attachment path to disk'; $LANG['att_upload_limit_ext'] = 'Upload file type not allow'; $LANG['att_upload_limit_setsize'] = 'Size of file exceeds file size limit of the process'; $LANG['att_upload_not_allow'] = 'Unable to upload this file'; $LANG['att_upload_limit_time'] = 'Upload for the day exceeded limit'; $LANG['times'] = 'Time'; $LANG['to'] = 'To'; $LANG['determine_search'] = 'Search'; $LANG['removed_data'] = 'Clear the lastest month data'; $LANG['add_submenu'] = 'Add sub menu'; $LANG['modify'] = 'Edit'; $LANG['can_enter'] = 'are able to input'; $LANG['characters'] = 'characters'; $LANG['attachmentupload'] = 'Upload file'; $LANG['imagesupload'] = 'Upload image'; $LANG['hash_check_false'] = '[hash]Failed to verify data'; $LANG['point'] = 'Points'; $LANG['money'] = 'Yuan'; $LANG['block_add'] = 'Add block'; $LANG['click_to_down'] = 'Click to download'; $LANG['linkage_select'] = 'Select'; $LANG['ding_success'] = 'Make stickies successsful'; $LANG['province'] = 'Province'; $LANG['city'] = 'City'; ?>
108wo
phpcms/languages/en/system.lang.php
PHP
asf20
8,809
<?php $LANG['configuration_file_save_to_the'] = 'Your configuration has been successfully saved. Starting a statistical process...'; $LANG['documents_to_file_the_statistics'] = 'File Statistics have been completed. Starting file screening...'; $LANG['file_through_a_feature_the_function_is'] = 'File screening has been completed. Starting featured function filtering...'; $LANG['feature_function_complete_a_code_used_by_filtration'] = 'Characteristic function filtering has been completed, Starting characteristic code filtering...'; $LANG['scan_completed'] = 'Scan has been completed.'; $LANG['scan_to_find_a_result_please_to_scan'] = 'Result not found. Please rescan.'; $LANG['file_not_exists'] = 'The file does not exist!'; $LANG['please_wait'] = 'Wait for MD5 to load and finish the checksum (this may take a significant amount of time, please wait)...'; $LANG['viewreporttrue'] = 'Finished'; $LANG['generate_progress'] = 'Generating'; $LANG['characteristic_function'] = 'Characteristic function'; $LANG['characteristic_key'] = 'Characteristic code '; $LANG['ravsingle'] = 'Directory'; $LANG['file_type'] = 'File type'; $LANG['characteristic_function'] = 'Characteristic function'; $LANG['characteristic_key'] = 'Characteristic code'; $LANG['md5_the_mirror'] = 'MD5 checksums'; $LANG['file_address'] = 'File address'; $LANG['function_of_characteristics'] = 'Num of Characteristic function'; $LANG['code_number_of_features'] = 'Num of Characteristic code'; $LANG['operation'] = 'Operation'; $LANG['view'] = 'View'; $LANG['access'] = 'Access'; $LANG['please_select_the_content'] = 'Please select what you want to search for'; $LANG['view_code'] = 'View code';
108wo
phpcms/languages/en/scan.lang.php
PHP
asf20
1,686
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['special'] = 'Topics'; $LANG['title_cannot_empty'] = 'Topic title is required'; $LANG['add_special'] = 'Add topic'; $LANG['add_special_success'] = 'Topic has been saved successfully!'; $LANG['edit_special_success'] = 'Topic has been changed successfully!'; $LANG['select_type'] = 'Please choose a destination category'; $LANG['import_success'] = 'Imported successfully! System will automatically filter replicate information.'; $LANG['select_model'] = 'Please select module'; $LANG['please_in_admin'] = 'Please perform this operation in backstage'; $LANG['banner_no_empty'] = 'Banner URL is required'; $LANG['thumb_no_empty'] = 'Thumbnail image is required'; $LANG['content_add_success'] = 'Content added successfully'; $LANG['content_edit_success'] = 'Content edited successfully'; $LANG['add_content'] = 'Add content'; $LANG['import_content'] = 'Import content'; $LANG['title_no_empty'] = 'Title is required'; $LANG['no_select_type'] = 'Please choose the categories your thematic content will be displayed in'; $LANG['content_no_empty'] = 'Content is required'; $LANG['special_not_exist'] = 'The topic does not exist or has been marked for deletion'; $LANG['content_checking'] = 'The content does not exist or not yet verified'; $LANG['special_setting'] = 'Topic settings'; $LANG['belong_category'] = 'Category'; $LANG['special_title'] = 'Topic name'; $LANG['special_banner'] = 'Banner'; $LANG['sepcial_thumb'] = 'Thumbnail image'; $LANG['special_intro'] = 'Topic guide'; $LANG['ishtml'] = 'Generate static page'; $LANG['special_filename'] = 'Make directory'; $LANG['submit_no_edit'] = 'Please confirm the information. Once submitted, it cannot be modified'; $LANG['index_page'] = 'Page break on Home page'; $LANG['special_template'] = 'Topic template'; $LANG['special_content_template'] = 'Content page template'; $LANG['special_status'] = 'Status'; $LANG['open'] = 'Public'; $LANG['pause'] = 'Suspend'; $LANG['special_type_setting'] = 'Classification'; $LANG['special_type'] = 'Subcategory'; $LANG['type_id'] = 'ID'; $LANG['type_name'] = 'Category name'; $LANG['type_path'] = 'Path'; $LANG['pics_news'] = 'News photos'; $LANG['choose_pic_news'] = 'Choose an article'; $LANG['choose_pic_model'] = 'Please choose all the information related to a model of picture'; $LANG['add_vote'] = 'Add to poll'; $LANG['choose_exist_vote'] = 'Select an existing poll'; $LANG['choose_vote'] = 'Select poll'; $LANG['extend_setting'] = 'Advance settings'; $LANG['add_new_vote'] = 'Add new poll'; $LANG['remove'] = 'Remove'; $LANG['special_type_template'] = 'Category page template'; $LANG['please_input_special_title'] = 'Please input a topic name'; $LANG['min_3_title'] = 'Cannot be less than 6 characters'; $LANG['true'] = 'Correct'; $LANG['server_no_data'] = 'Server busy. Please retry'; $LANG['special_exist'] = 'This topic already exists'; $LANG['checking'] = 'Checking validation...'; $LANG['please_upload_banner'] = 'Please upload a topic banner'; $LANG['please_upload_thumb'] = 'Please upload a topic thumbnail image'; $LANG['special_file'] = 'Please input a filename so as to generate static page.'; $LANG['use_letters'] = 'Please ONLY contain letters, digits or underscores'; $LANG['please_input_name'] = 'Please input filename'; $LANG['error'] = 'Bad input'; $LANG['for_type'] = 'Category'; $LANG['keyword'] = 'keywords'; $LANG['filename_exist'] = 'the filename already exists'; $LANG['input_type_name'] = 'Please input category name'; $LANG['input_type_path'] = 'Please input category path'; //批量更新 $LANG['update_special_success'] = 'Topic updated successfully'; $LANG['update_success'] = 'Updated successfully'; $LANG['index_update_success'] = 'Homepage updated successfully'; $LANG['type_update_success'] = 'Category page updated successfully'; $LANG['type_from'] = 'Category, from <font color="red">'; $LANG['type_end'] = '</font> to <font color="red">'; $LANG['start_update_type'] = 'Start updating category page'; $LANG['content_update_success'] = 'Content page updated successfully'; $LANG['content_from'] = 'Content from'; $LANG['index_create_finish'] = 'Topic page updated successfully'; //添加、修改信息 $LANG['pos_info'] = 'Current location: Topic> Content manage system> Add information'; $LANG['for_type'] = 'Category'; $LANG['cancel_thumb'] = 'Delete image'; $LANG['please_choose_type'] = 'Please choose category'; $LANG['content_title'] = 'Title'; $LANG['check_exist'] = 'Checking for duplicate'; $LANG['title_exist'] = 'Duplicate title'; $LANG['title_no_exist'] = 'No-repeat title'; $LANG['keywords'] = 'Key words'; $LANG['more_keywords_with_blanks'] = 'Multiple words should be separated with space or “,”'; $LANG['description'] = 'Summary'; $LANG['content'] = 'Content'; $LANG['iscutcontent'] = 'Capture content?'; $LANG['characters_to_contents'] = 'Character to content summary'; $LANG['iscutcotent_pic'] = 'Get content the '; $LANG['picture2thumb'] = 'picture as headline picture'; $LANG['paginationtype'] = 'Pagebreak'; $LANG['no_page'] = 'Page break disabled'; $LANG['collate_copies'] = 'Auto page break'; $LANG['manual_page'] = 'Manual page break'; $LANG['number_of_characters'] = 'Characters, including HTML tags'; $LANG['content_thumb'] = 'Thumbnail image'; $LANG['file_upload'] = 'Attachments'; $LANG['author'] = 'Author'; $LANG['islink'] = 'Redirected'; $LANG['inputtime'] = 'Published time'; $LANG['template_style'] = 'Available style'; $LANG['show_template'] = 'Content page template'; $LANG['save'] = 'Save'; $LANG['save_and_add'] = 'Save and Continue to publish'; $LANG['close'] = 'Close'; $LANG['left_will_missing_data'] = 'Data will be lost when session closed.'; $LANG['please_choose_type'] = 'Please choose category'; $LANG['please_input_title'] = 'Please input title'; $LANG['content_empty'] = 'Content is required'; $LANG['edit_pos_info'] = 'Current location: Topic> Content manage system> Edit information'; //文章列表 $LANG['listorder'] = 'Ordering'; $LANG['hits'] = 'Hits'; $LANG['inputman'] = 'Publisher'; $LANG['update_time'] = 'Updated time'; $LANG['content_edit'] = 'Edit'; $LANG['special_list'] = 'List of topic'; $LANG['input_time'] = 'Published Time'; $LANG['search'] = 'Search'; //信息导入 $LANG['import'] = 'Import'; $LANG['choose_news'] = 'Please select import data'; //专题列表 $LANG['special_info'] = 'Topic info'; $LANG['create_man'] = 'Created by'; $LANG['create_time'] = 'Created Time'; $LANG['add_news'] = 'Add'; $LANG['import_news'] = 'Import'; $LANG['manage_news'] = 'Manage'; $LANG['template_manage'] = 'Maintenance'; $LANG['elite_special'] = 'Promoted topic'; $LANG['remove_elite'] = 'Demote'; $LANG['special_comment'] = 'Topic comments'; $LANG['edit_special'] = 'Edit topic'; $LANG['del_special'] = 'delete topic'; $LANG['update'] = 'Update'; $LANG['see_comment'] = 'View comments'; //维护模板 $LANG['quit_diy'] = 'Quit'; $LANG['save_edit'] = 'Save'; $LANG['preview_diy'] = 'Preview Effect'; $LANG['preview'] = 'Preview'; $LANG['custom'] = 'Custom'; $LANG['upload_background'] = 'Upload background image'; $LANG['remove_background'] = 'Cancel background image'; $LANG['restore_original_skin'] = 'Reset to default theme'; $LANG['change'] = 'Change'; $LANG['repeat_mode'] = 'Page tile'; $LANG['no-repeat'] = 'Apply'; $LANG['repeat'] = 'Tile'; $LANG['repeat-x'] = 'Horizontal'; $LANG['repeat-y'] = 'Vertical'; $LANG['photo_place'] = 'Location'; $LANG['background_scroll'] = 'Scrolling a background'; $LANG['scroll'] = 'Scroll'; $LANG['fixed'] = 'Fixed'; $LANG['bgcolor'] = 'Background color'; $LANG['text_color'] = 'Text color'; $LANG['link_color'] = 'Link color'; $LANG['pc_tag'] = 'PHPCMS tag'; $LANG['show_diy'] = 'Show DIY'; //clssess $LANG['please_choose_special'] = 'Please select a topic'; $LANG['content_list'] = 'Table of content'; $LANG['hits_order'] = 'Sorting and Browsing'; $LANG['sitename'] = 'Site name'; $LANG['iselite'] = 'Promote to front page?'; $LANG['get_thumb'] = 'Get thumbnail pictures'; $LANG['order_type'] = 'Ordering'; $LANG['id_asc'] = 'ID Ascending'; $LANG['id_desc'] = 'ID Descending'; $LANG['order_asc'] = 'Ordering ascending'; $LANG['order_desc'] = 'Ordering descending'; $LANG['special_id'] = 'Topic ID'; $LANG['total'] = 'Total'; $LANG['yesterday'] = 'Yesterday'; $LANG['today'] = 'Today'; $LANG['week'] = 'This week'; $LANG['month'] = 'This month'; $LANG['please_upload_thumb'] = 'Please first upload thumbnail pictures'; $LANG['crop_thumb'] = 'Crop'; ?>
108wo
phpcms/languages/en/special.lang.php
PHP
asf20
9,645
<?php $LANG['keyword_manage'] = ''; $LANG['keyword_name'] = 'Keywords'; $LANG['remove_all_selected'] = 'Remove all selected restricted words'; ?>
108wo
phpcms/languages/en/keyword.lang.php
PHP
asf20
151
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['trade_sn'] = 'Transaction number'; $LANG['addtime'] = 'Order time'; $LANG['to'] = 'To'; $LANG['confirm_pay'] = 'Confirm to pay'; $LANG['usernote'] = ' Note'; $LANG['adminnote'] = 'Administrative person operation'; $LANG['user_balance'] = 'Balance'; $LANG['yuan'] = '&nbsp;Yuan'; $LANG['dian'] = '&nbsp;Point'; $LANG['trade_succ'] = 'Success'; $LANG['checking'] = 'Verifying...'; $LANG['user_not_exist'] = 'The user does not exist'; $LANG['input_price_to_change'] = 'Input values (money or points)'; $LANG['number'] = 'Amount'; $LANG['must_be_price'] = 'Must be valid value, at most round them to two decimal places'; $LANG['reason_of_modify'] = 'Modification reason'; //modify_deposit.php $LANG['recharge_type'] = 'Type'; $LANG['capital'] = 'Money'; $LANG['point'] = 'Point'; $LANG['recharge_quota'] = 'Recharge limit'; $LANG['increase'] = 'Increase'; $LANG['reduce'] = 'Reduce'; $LANG['trading'] = 'Transaction'; //payment.php $LANG['basic_config'] = 'Basic settings'; $LANG['contact_email'] = 'Email '; $LANG['contact_phone'] = 'Tel'; $LANG['order_info'] = 'Order info'; $LANG['order_sn'] = 'Transaction number'; $LANG['order_name'] = 'Title'; $LANG['order_price'] = 'Price'; $LANG['order_discount'] = 'Increased fees'; $LANG['order_addtime'] = 'Timestamp'; $LANG['order_ip'] = 'Client IP address'; $LANG['payment_type'] = 'Payment type'; $LANG['order'] = 'Order'; $LANG['disount_notice'] = 'If you want to reduce your price please input “-10”'; $LANG['discount'] = 'Change order price'; $LANG['recharge'] = 'Recharge online'; $LANG['offline'] = 'Offline payment'; $LANG['online'] = 'Online payment'; $LANG['selfincome'] = 'Automatically procured '; $LANG['order_time'] = 'Payment time'; $LANG['business_mode'] = 'Business approach'; $LANG['payment_mode'] = 'Payment method '; $LANG['deposit_amount'] = 'Amount'; $LANG['pay_status'] = 'Payment status'; $LANG['pay_btn'] = 'Pay'; $LANG['name'] = 'Name'; $LANG['desc'] = 'Description'; $LANG['pay_factorage'] = 'Pay transfer fee'; $LANG['pay_method_rate'] = 'Proportional charges'; $LANG['pay_method_fix'] = 'Fixed costs'; $LANG['pay_rate'] = 'Pay rate'; $LANG['pay_fix'] = 'Amount'; $LANG['pay_method_rate_desc'] = 'Note: the total amount of orders × pay rate = transfer fee'; $LANG['pay_method_fix_desc'] = 'Note: transfer fee per order'; $LANG['parameter_config'] = 'Parameter settings'; $LANG['plus_version'] = 'Plugin version'; $LANG['plus_author'] = 'Author'; $LANG['plus_site'] = 'Plugin site'; $LANG['plus_install'] = 'Install'; $LANG['plus_uninstall'] = 'Uninstall'; $LANG['check_confirm'] = 'Are you sure you want to pass the order{sn} reviewing?'; $LANG['check_passed'] = 'Approval'; $LANG['change_price'] = 'Change price'; $LANG['check'] = 'Reviewing'; $LANG['closed'] = 'Close'; $LANG['thispage'] = 'Display'; $LANG['finance'] = 'Finance'; $LANG['totalize'] = ' '; $LANG['amount'] = 'Price'; $LANG['total'] = 'Total '; $LANG['bi'] = 'orders'; $LANG['trade_succ'] = ' Success'; $LANG['transactions'] = 'Transactions'; $LANG['trade'] = ' '; $LANG['trade_record_del'] = 'Are you sure you want to remove this record?'; /******************error & notice********************/ $LANG['illegal_sign'] = 'Signature was invalid'; $LANG['illegal_notice'] = 'Notification error'; $LANG['illegal_return'] = 'Return messages on error'; $LANG['illegal_pay_method'] = 'Payment method error'; $LANG['illegal_creat_sn'] = 'Failed to generate order number'; $LANG['pay_success'] = 'Congratulations, your online payment goes successfully.'; $LANG['pay_failed'] = 'A failure happens to your online payment, please contact admin'; $LANG['payment_failed'] = 'Payment method error'; $LANG['order_closed_or_finish'] = 'Order has been completed or closed'; $LANG['state_change_succ'] = 'Changed successfully'; $LANG['delete_succ'] = 'Deleted successfully'; $LANG['public_discount_succ'] = 'The operation was successful'; $LANG['admin_recharge'] = 'Recharge on backend'; /******************pay status********************/ $LANG['all_status'] = 'Status'; $LANG['unpay'] = '<font color="red" class="onError">Not paid</font>'; $LANG['succ'] = '<font color="green" class="onCorrect">Successful</font>'; $LANG['failed'] = 'Failed to transact'; $LANG['error'] = 'Transaction error'; $LANG['progress'] = '<font color="orange" class="onTime">Processing</font>'; $LANG['timeout'] = 'Transaction is timeout'; $LANG['cancel'] = 'Cancelled'; $LANG['waitting'] = '<font color="orange" class="onTime">Pending payment</font>'; $LANG['select']['unpay'] = 'Not paid'; $LANG['select']['succ'] = 'Success'; $LANG['select']['progress'] = 'Processing'; $LANG['select']['cancel'] = 'Cancel'; /*************pay plus language***************/ $LANG['alipay'] = 'Alipay'; $LANG['alipay_account'] = 'Alipay account'; $LANG['alipay_tip'] = 'Alipay.com CO.Ltd. is China`s leading independent third-party online payment platform. Alipay is an affiliate of Alibaba Group , a leading international e-commerce service provider, Alipay is dedicated toward providing its users and merchants with a "simple, secure and speedy" online payment solution.<a href="http://www.alipay.com" target="_blank"><font color="red">Apply Now</font></a>'; $LANG['alipay_key'] = 'Transaction key'; $LANG['alipay_partner'] = 'Parter ID'; $LANG['service_type'] = 'Select interface type'; $LANG['tenpay_account'] = 'Tenpay client ID'; $LANG['tenpay_privateKey'] = 'Tenpay private key'; $LANG['tenpay_authtype'] = 'Select interface type'; $LANG['chinabank'] = 'Chinabank payment'; $LANG['chinabank_tip'] = 'Chinabank payment has always maintained good relations of cooperation with China major banks like Bank of China, Industrial and Commercial Bank of China, Agricultural Bank of China, China Construction Bank, China Merchants Bank Ltd and etc. Also, with Visa, MasterCard, JCB and other international credit card organizations.<a href="http://www.chinabank.com.cn" target="_blank"><font color="red">Apply Now</font>'; $LANG['chinabank_account'] = 'Chinabank payment business client ID'; $LANG['chinabank_key'] = 'Chinabank MD5 key'; $LANG['sndapay'] = 'Shengpay'; $LANG['sndapay_tip'] = 'Shengpay is China`s leading independent third-party online payment platform. Shengpay is a leading e-commerce service provider. By signed with major banks, Communication service providers , shengpay is dedicated toward providing its users and merchants with a "simple, secure and speedy" online payment solution.<a href="http://www.shengpay.com/HomePage.aspx?tag=phpcms" target="_blank"><font color="red">Apply Now</font>'; $LANG['sndapay_account'] = 'SNDA shengpay business client ID'; $LANG['sndapay_key'] = 'SNDA shengpay transaction key'; $LANG['service_type_range'][0] = 'Use guaranteed transaction interface'; $LANG['service_type_range'][1] = 'Use standard double interface'; $LANG['service_type_range'][2] = 'Use instantaneous payment interface'; $LANG['userid'] = 'User ID'; $LANG['op'] = 'Operator'; $LANG['expenditure_patterns'] = 'Consumption type'; $LANG['money'] = 'Money'; $LANG['point'] = 'Point'; $LANG['from'] = 'From'; $LANG['content_of_consumption'] = 'Consumption'; $LANG['empdisposetime'] = 'Time'; $LANG['consumption_quantity'] = 'Quantity'; $LANG['self'] = 'Your'; $LANG['wrong_time_over_time_to_time_less_than'] = 'Time format is invalid, Start time must be less than end time'; $LANG['spend_msg_1'] = 'Please add description for consumption'; $LANG['spend_msg_2'] = 'Please input your purchase amount'; $LANG['spend_msg_3'] = 'User is required'; $LANG['spend_msg_6'] = 'Your balance is insufficient'; $LANG['spend_msg_7'] = 'Consumption type is required'; $LANG['spend_msg_8'] = 'Failed to save data to database'; $LANG['bank_transfer'] = 'Bank transfer'; $LANG['transfer'] = 'Bank transfer'; $LANG['dsa'] = 'DSA is under further developement, please use MD5 signature'; $LANG['alipay_error'] = 'Alipay does not support {sign_type} signature'; $LANG['execute_date'] = 'Implementation date '; $LANG['query_stat'] = 'View statistics'; $LANG['total_transactions'] = 'All transactions'; $LANG['transactions_success'] = 'Successful trading'; $LANG['pay_tip'] = 'We currently support the way of transfter. Please continue to bank transfer based on your payment type. Also, please contact us after paying your purchase'; ?>
108wo
phpcms/languages/en/pay.lang.php
PHP
asf20
8,574
<?php $LANG['add_keylink'] = 'Add related URLs'; $LANG['keylink_name'] = 'Keywords'; $LANG['link_address'] = 'Links'; ?>
108wo
phpcms/languages/en/keylink.lang.php
PHP
asf20
133
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['poster'] = 'Advertising'; $LANG['setting_updates_successful'] = 'Updated successfully'; $LANG['name_plates_not_empty'] = 'Position name is required'; $LANG['plate_width_not_empty'] = 'Width is required'; $LANG['plate_height_not_empty'] = 'Height is required'; $LANG['added_successful'] = 'Added successfully'; $LANG['edited_successful'] = 'Edited successfully'; $LANG['boardtype'] = 'Position name'; $LANG['size_format'] = 'Size'; $LANG['plate_width'] = 'Width'; $LANG['plate_height'] = 'Height'; $LANG['ad_list'] = 'Advertising list'; $LANG['random_one'] = 'Get one random value'; $LANG['random_all'] = 'List all'; $LANG['description'] = 'Description'; $LANG['js_path'] = 'JS path'; $LANG['ads_num'] = 'Num of ads'; $LANG['banner'] = 'Rectangular banner'; $LANG['fixure'] = 'Fixed position'; $LANG['float'] = 'Floating ads'; $LANG['couplet'] = 'Couplet ads'; $LANG['imagechange'] = 'Image rotation ads'; $LANG['imagelist'] = 'Image ads'; $LANG['text'] = 'Text ads'; $LANG['code'] = 'Calling code'; $LANG['position'] = 'Advertising position'; $LANG['left_margin'] = 'Left margin'; $LANG['top_margin'] = 'Top margin'; $LANG['lightbox'] = 'Full-screen centered'; $LANG['rolling'] = 'The ads will move on the screen as you drag the mouse'; $LANG['ads_type'] = 'Type'; $LANG['remove_all_selected'] = 'Remove all selected'; $LANG['poster_title'] = 'Ads title'; $LANG['for_postion'] = 'Position'; $LANG['poster_type'] = 'Type'; $LANG['line_time'] = 'Login time'; $LANG['down_time'] = 'LogoutTime'; $LANG['photo_setting'] = 'Photo settings'; $LANG['linkurl'] = 'URL'; $LANG['flash_url'] = 'Flash url'; $LANG['upload_photo'] = 'Upload photo'; $LANG['flash_setting'] = 'Flash settings'; $LANG['alt'] = 'Text prompt'; $LANG['flash_upload'] = 'Upload flash'; $LANG['word_link'] = 'Text link'; $LANG['code_setting'] = 'Code settings'; $LANG['word_content'] = 'Textual content '; $LANG['code_content'] = 'Code'; $LANG['add_space'] = 'Add advertising position'; $LANG['flash'] = 'Flash'; $LANG['photo'] = 'Image'; $LANG['title'] = 'Text'; $LANG['add_ads'] = 'Add ads'; $LANG['add_ads_success'] = 'Added successfully'; $LANG['no_create_js'] = 'JS cannot be generated without position ID'; $LANG['space_exist'] = 'The position already exists'; $LANG['adsname_no_empty'] = 'Title of advertising is required'; $LANG['no_ads_type'] = 'Type of advertising is required'; $LANG['no_setting_photo'] = 'Not set image'; $LANG['no_flash_path'] = 'Not set flash path'; $LANG['no_title_info'] = 'Not set text info'; $LANG['please_input_name'] = 'Please input ads title'; $LANG['name_three_length'] = 'At least 6 characters'; $LANG['correct'] = 'Correct'; $LANG['server_busy'] = 'Unable to return any data. This may be caused by the server being busy. Please try again'; $LANG['ads_exist'] = 'The ads already exists'; $LANG['checking'] = 'Verifying the legitimacy...'; $LANG['choose_ads_type'] = 'Please select ads type'; $LANG['type_selected'] = 'Must select a type'; $LANG['online_time'] = 'Please select ads publishing time'; $LANG['one_month_no_select'] = 'The default value is one month'; $LANG['down_time'] = 'Please select ads withdrawal time'; $LANG['link_content'] = 'Input content of text link'; $LANG['no_link_content'] = 'No input'; $LANG['input_code'] = 'Enter code'; $LANG['space_list'] = 'Section list'; $LANG['status'] = 'Status'; $LANG['hits'] = 'Hits'; $LANG['addtime'] = 'Added time'; $LANG['stop'] = 'Suspend'; $LANG['past'] = 'Expired'; $LANG['start'] = 'Enable'; $LANG['stat'] = 'Statistics'; $LANG['edit_ads'] = 'Edit ads'; $LANG['ads_module'] = 'Advertising module'; //广告统计 $LANG['hits_stat'] = 'Click to calculate'; $LANG['show_stat'] = 'Show result'; $LANG['listorder_f_area'] = 'By area'; $LANG['listorder_f_ip'] = 'By IP'; $LANG['all'] = 'All'; $LANG['today'] = 'Today'; $LANG['yesterday'] = 'Yesterday'; $LANG['one_week'] = 'A week'; $LANG['two_week'] = 'Two weeks'; $LANG['one_month'] = 'A month'; $LANG['history_select'] = 'View history'; $LANG['browse_ip'] = 'View IP'; $LANG['for_area'] = 'Area'; $LANG['show_times'] = 'Impressions'; $LANG['come_from'] = 'Source'; $LANG['visit_time'] = 'Visited time'; $LANG['operate'] = 'Operation'; $LANG['click'] = 'Click'; $LANG['show'] = 'Show'; //setting $LANG['ads_setting'] = 'Ads module settings'; $LANG['ads_show_time'] = 'Calculate the number of ads display'; $LANG['upload_file_ext'] = 'Upload file type'; $LANG['file_size'] = 'File size'; //space_add\space_edit $LANG['please_input_space_name'] = 'Please input version name'; $LANG['spacename_three_length'] = 'At least 6 characters'; $LANG['spacename_illegality'] = 'Your position name is invalid, please check it again.'; $LANG['space_exist'] = 'The position already exists. Please change the position name'; $LANG['choose_space_type'] = 'Select position type'; $LANG['input_width_height'] = 'Enter width and height'; $LANG['three_numeric'] = 'No more than 3 digits'; $LANG['get_code_space'] = 'Call ads section'; //调用代码 $LANG['explain'] = 'Call descriptions'; $LANG['notice'] = '1. Method 1, no server environment is required. It is able to calculate the number of ads displays and also automatically justify whether ads is expired or not. However, method 1 consumes too much server resources and the user visits a website with slow rate. In addition, it does not support JS advertisement codes such as Google JS codes<br />2. Method 2, no server environment is required. It allows to visit ads fast , while almost no consumption of server resources to deal witha lot of good customers here but it is unable to automatically justify whether ads is expired or not which is required to update JS frequently. In addition, it does not support JS advertisement codes such as Google JS codes.<br />3. If you want to call advertisement codes such as google, baidu It only can have one way. Please update advertising in the static pages after altering ads codes when website uses static page.<br />4. Please select one calling method according to own situations and then copy codes to template that we want to display. After then, it is necessary to update related sites.'; $LANG['one_way'] = 'Method 1'; $LANG['js_code'] = 'JS calling code (call PHP dynamic code)'; $LANG['this_way_stat_show'] = 'This method is able to calculate the number of displays'; $LANG['copy_code'] = 'Copy to clipboard '; $LANG['second_code'] = 'Method 2'; $LANG['js_code_html'] = 'JS calling code (call JS static code)'; //space_list $LANG['preview'] = 'Preview'; $LANG['get_code'] = 'Calling code'; $LANG['edit_space'] = 'Edit position'; $LANG['module_setting'] = 'Module settings'; $LANG['update_js_success'] = 'Update JS successfully'; $LANG['update_js'] = 'Update JS successfully'; //模板设置 $LANG['template_name'] = 'Template name'; $LANG['setting_success'] = 'Configuration successful'; $LANG['check_template'] = 'View'; $LANG['setting_template'] = 'Settings'; $LANG['template_file_name'] = 'Template file name'; $LANG['name_cn'] = 'Chinese name'; $LANG['show_this_param'] = 'Enable the following properties'; $LANG['this_param_selected'] = 'Properties as above will be chosen?'; $LANG['is_set_space'] = 'Set section position'; $LANG['is_set_size'] = 'Set section size'; $LANG['space_poster'] = 'Advertising under section'; $LANG['all_list'] = 'List all'; $LANG['only_one'] = 'List one based on ordering'; $LANG['is_used_type'] = 'Available ads type'; $LANG['max_add_param'] = 'Max number of added pictures'; ?>
108wo
phpcms/languages/en/poster.lang.php
PHP
asf20
8,359
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['wap_del_cofirm'] = 'Are you sure you would like to delete it?'; $LANG['phpcms_friends'] = 'Mobile user'; $LANG['confirm_delete'] = 'You are about to permanently delete the selected items. Are you sure?'; $LANG['wap_add_site'] = 'Create a mobile website'; $LANG['parameter_error'] = 'The parameter is incorrect'; $LANG['wap_add_site'] = 'Create a mobile website'; $LANG['wap_del_succ'] = 'Item permanently deleted.'; $LANG['wap_change_status'] = 'The status has been updated.'; $LANG['wap_add_samesite_error'] = ' Another site with the same parent has the same alias'; $LANG['wap_empty_type'] = 'Category name field is required.'; $LANG['wap_empty_bound_type'] = 'Please choose a binding column'; $LANG['wap_repeat_bound_error'] = 'This column has already been binded. The repeat bindings are NOT allowed.'; $LANG['wap_add_subtype'] = '+ add a child category'; $LANG['wap_repeat_bound'] = 'The repeat bindings are NOT allowed'; $LANG['wap_type_del_error'] = 'The category includes child column, please delete the child column first.'; $LANG['wap_permission_denied_del'] = 'No permissions to delete the site'; $LANG['basic_config'] = 'Basic Settings'; $LANG['parameter_config'] = 'Parameter Settings'; $LANG['wap_sel_site'] = 'Select site'; $LANG['wap_belong_site'] = 'Parent site'; $LANG['wap_sitename'] = 'Site name'; $LANG['wap_logo'] = 'LOGO'; $LANG['wap_domain'] = 'Domain site bindings'; $LANG['wap_listnum'] = 'List limit'; $LANG['wap_thumb'] = 'Thumbnail size'; $LANG['wap_content_page'] = 'Length of trimmed posts'; $LANG['wap_index_tpl'] = 'Homepage template'; $LANG['wap_cat_tpl'] = 'Channel template '; $LANG['wap_list_tpl'] = 'List page template'; $LANG['wap_show_tpl'] = 'Content page template'; $LANG['wap_hotword'] = 'Popular words'; $LANG['wap_open'] = 'Open'; $LANG['wap_close'] = 'Close'; $LANG['wap_type_manage'] = 'Category Management'; $LANG['wap_type_name'] = 'Category alias'; $LANG['wap_toptype_add'] = 'Add parent classification'; $LANG['wap_type_bound'] = 'Select a binding column'; $LANG['wap_bound_type'] = 'Binding column'; $LANG['wap_guestbook'] = 'Your comment has been successfully posted. The page is returning...'; $LANG['wap_goback'] = 'Back to content page'; $LANG['wap_close_status'] = 'The page cannot found or WAP is not enabled.'; $LANG['wap_hotword_desc'] = 'For example, "phpcms|http://wap.phpcms.cn", Each popular word must start on a new line.'; ?>
108wo
phpcms/languages/en/wap.lang.php
PHP
asf20
2,585
<?php $LANG['name'] = 'Name'; $LANG['not_have_permissions'] = 'You do not have permission to do this operation'; $LANG['block_configuration'] = 'Block configuration'; $LANG['display_position'] = 'Region'; $LANG['code'] = 'Code'; $LANG['table_style'] = 'Formatting Numeric data'; $LANG['permission_configuration'] = 'Permissions'; $LANG['role'] = 'Roles'; $LANG['updates'] = 'Update content'; $LANG['block_data'] = 'Block data'; $LANG['title'] = 'Title'; $LANG['link'] = 'Link'; $LANG['thumb'] = 'Thumbnail'; $LANG['attachment_upload'] = 'Upload attachments'; $LANG['pic_upload'] = 'Upload images'; $LANG['delete_image'] = 'Delete'; $LANG['desc'] = 'Description'; $LANG['up'] = 'Move up'; $LANG['down'] = 'Move down'; $LANG['preview'] = 'Preview'; $LANG['history'] = 'History'; $LANG['datatable'] = 'Add row'; $LANG['pieces_template'] = 'Block template'; $LANG['insert'] = 'Click to insert'; $LANG['time'] = 'Time'; $LANG['admin'] = 'Operator'; $LANG['restore'] = 'Reset'; $LANG['are_you_sure_you_want_to_delete'] = 'Are you sure you want to delete it?'; $LANG['search_content'] = 'Search'; $LANG['end_of_time_to_time_to_less_than'] = 'Start time must be before the End time'; $LANG['please_set_the_starting_time'] = 'Please set start time'; $LANG['category'] = 'Column'; $LANG['posterize_time'] = 'Publish time'; $LANG['recommend'] = 'Promote'; $LANG['not_recommend'] = 'Demote'; $LANG['all'] = 'Total'; $LANG['search_mode'] = 'Searching mode'; $LANG['key_word'] = 'Keyword'; $LANG['insert_a_comment_about_the_selected_text'] = 'Insert all selected'; $LANG['pic'] = 'picture'; $LANG['folded_up_in_search_of'] = 'Shrink/Expand Search'; $LANG['link_visualization_not_exists'] = 'This menu does not require visualization that classified as external link.';
108wo
phpcms/languages/en/block.lang.php
PHP
asf20
1,795
<?php $LANG['id_cannot_be_empty'] = 'ID不能为空'; $LANG['total'] = '总数'; $LANG['expressed'] = '你已经表达过心情了,保持平常心有益身体健康!'; $LANG['category'] = '栏目'; $LANG['time'] = '时间'; $LANG['sort'] = '排序'; $LANG['today'] = '今天'; $LANG['yesterday'] = '昨天'; $LANG['this_week'] = '本周'; $LANG['this_month'] = '本月'; $LANG['all'] = '所有'; $LANG['view'] = '查看'; $LANG['title'] = '标题'; $LANG['on_hand'] = '可用'; $LANG['name'] = '名称'; $LANG['pic'] = '图片';
108wo
phpcms/languages/zh-cn/mood.lang.php
PHP
asf20
548
<?php $LANG['add_search_type'] = '添加搜索分类'; $LANG['select_model_name'] = '所属模型'; $LANG['select_module_name'] = '所属模块'; $LANG['type_name'] = '类型名称'; $LANG['description'] = '描述'; $LANG['re_index_note'] = '1、重建索引将会清空原有的所有的索引内容 , 每轮更新'; $LANG['tiao'] = '条'; $LANG['confirm_reindex'] = '确认重建索引'; $LANG['basic_setting'] = '基本配置'; $LANG['sphinx_setting'] = 'sphinx全文索引配置'; $LANG['enable_search'] = '是否启用全站搜索'; $LANG['relationenble'] = '是否启用相关搜索'; $LANG['relationenble_note'] = '(此项功能会增大数据库压力)'; $LANG['suggestenable'] = '是否启用建议搜索'; $LANG['suggestenable_note'] = '(提示数据来源google)'; $LANG['sphinxenable'] = '是否启用sphinx全文索引'; $LANG['host'] = '服务器主机地址'; $LANG['port'] = '服务器端口号'; $LANG['testing'] = '测试中...'; $LANG['testsuccess'] = '链接成功'; $LANG['hostempty'] = '主机名为空'; $LANG['portempty'] = '端口为空'; $LANG['test'] = '测试'; $LANG['sort'] = '排序'; $LANG['catname'] = '类别名称'; $LANG['modulename'] = '所属模块'; $LANG['modlename'] = '所属模型'; $LANG['catdescription'] = '类别描述'; $LANG['opreration'] = '管理操作'; $LANG['modify'] = '修改'; $LANG['content_module'] = '内容模块'; $LANG['edit_cat'] = '编辑分类'; $LANG['searh_notice'] = '注意:全文检索模块需要mysql开启全文索引功能,<br />开启方法:修改mysql配置文件:window服务器为my.ini,linux服务器为my.cnf,在 [mysqld] 后面加入一行“ft_min_word_len=1”,然后重启Mysql。 '; ?>
108wo
phpcms/languages/zh-cn/search.lang.php
PHP
asf20
1,734
<?php /*Language Format: Add a new file(.lang.php) with your module name at /phpcms/languages/ translation save at the array:$LANG */ $LANG['date'] = '日期'; $LANG['name'] = '名称'; $LANG['wait_1_hour'] = '密码重试次数太多,请过{minute}分钟后重新登录!'; $LANG['local_dir'] = '当前目录'; $LANG['parent_directory'] = '上一层目录'; $LANG['dir'] = '目录列表'; $LANG['detail'] = '详情列表'; $LANG['preview'] = '预览'; $LANG['catname'] = '栏目名称'; $LANG['filename'] = '附件名称'; $LANG['filesize'] = '附件大小'; $LANG['filetype'] = '附件类型'; $LANG['uploadtime'] = '上传时间'; $LANG['moudle'] = '模块名称'; $LANG['del_confirm'] = '确认删除吗?'; $LANG['to'] = '至'; $LANG['range_not_correct'] = '时间范围选择不正确'; $LANG['database_schema'] = '切换至数据库模式'; $LANG['upload_attachment'] = '上传附件'; $LANG['net_file'] = '网络文件'; $LANG['gallery'] = '图库'; $LANG['directory_browse'] = '目录浏览'; $LANG['start_upload'] = '开始上传'; $LANG['upload_up_to'] = '最多上传'; $LANG['attachments'] = '个附件'; $LANG['largest'] = '单文件最大'; $LANG['supported'] = '支持'; $LANG['formats'] = '格式。'; $LANG['lists'] = '列表'; $LANG['enter_address'] = '请输入网络地址'; $LANG['not_used'] = '未使用'; $LANG['used'] = '已使用'; $LANG['dir_schema'] = '切换至目录模式'; $LANG['click_open'] = '单击打开'; $LANG['watermark_enable'] = '是否添加水印'; $LANG['att_not_used'] = '未处理文件'; $LANG['att_not_used_desc'] = '上次上传未处理的附件,如使用请点击选择。'; $LANG['att_no_permission'] = '您无权限访问该页面'; $LANG['att_thumb_manage'] = '管理缩略图'; $LANG['attachment_address_replace_msg'] = '1. 当您的附件访问地址,发生修改的时候,可以使用本功能对内容中附件地址的批量修改。本功能不要滥用,只在有需要的时候使用,否则会有数据混乱的风险。<br /> 2. 请在使用本功能之前做好数据备份,否则使用后无法恢复。'; $LANG['form_submit_confirm'] = '您确定填写的内容都是正确的吗?修改后不可修复。'; $LANG['old_attachment_address'] = '原附件访问地址'; $LANG['old_attachment_address_msg'] = '原来在配置文件中所配置的站点访问域名。'; $LANG['new_attachment_address'] = '新访问地址'; $LANG['old_attachment_address_empty'] = '原附件访问地址不能为空。'; $LANG['new_attachment_address_empty'] = '新访问地址不能为空。'; $LANG['attachment_parameter_error'] = '参数传递错误'; $LANG['attachment_tip1'] = '不能选择超过'; $LANG['attachment_tip2'] = '个附件'; ?>
108wo
phpcms/languages/zh-cn/attachment.lang.php
PHP
asf20
2,770
<?php $LANG['template_directory_not_write'] = '模板目录不可写'; $LANG['only_allowed_to_upload_txt_files'] = '只允许上传txt类型文件。'; $LANG['mode'] = '导入方式'; $LANG['upload_file'] = '上传文件'; $LANG['enter_coad'] = '输入代码'; $LANG['export'] = '导出'; $LANG['disable'] = '停用'; $LANG['enable'] = '启用'; $LANG['style_identity'] = '风格标识'; $LANG['style_chinese_name'] = '风格中文名'; $LANG['author'] = '风格作者'; $LANG['detail'] = '详情列表'; $LANG['style_version'] = '风格版本'; $LANG['returns_list_style'] = '返回风格列表'; $LANG['new'] = '新建'; $LANG['local_dir'] = '当前目录'; $LANG['parent_directory'] = '上一层目录'; $LANG['dir'] = '目录列表'; $LANG['can_edit_html_files'] = '只能编辑html文件'; $LANG['find_code'] = '查找节点'; $LANG['file'] = '文件'; $LANG['name'] = '名称'; $LANG['dirs'] = '目录'; $LANG['name_datatype_error'] = '只能为数字、字母、下划线。'; $LANG['without_the_input_name_extension'] = ',无需输入扩展名。'; $LANG['dir_not_writable'] = '目录不可写'; $LANG['visualization'] = '可视化'; $LANG['click_edit'] = '点击编辑'; $LANG['pc_tag'] = 'PC标签'; $LANG['should'] = '应该'; $LANG['is_greater_than'] = '大于'; $LANG['less_than'] = '小于'; $LANG['lambda'] = '位'; $LANG['inputerror'] = '输入错误'; $LANG['toolbox_type'] = '工具箱类型'; $LANG['data_address'] = '数据地址'; $LANG['buffer_time'] = '缓存时间'; $LANG['unit_second'] = '(单位:秒)'; $LANG['data_address_reg_sg'] = '地址格式不对,应该以\"http:\/\/\"开头'; $LANG['cache_time_can_only_be_positive'] = '缓存时间只能正数。'; $LANG['failure_the_document_may_not_to_write'] = '编辑失败,文件可能不可写。'; $LANG['the_module_will_not_support_the_operation'] = '该模块不支持,本次操作!'; $LANG['module_configuration'] = '模块配置'; $LANG['operation'] = '操作'; $LANG['vlan'] = '公共配置'; $LANG['public_allowpageing'] = '是否分页'; $LANG['num'] = '显示条数'; $LANG['check'] = '数据返回值'; $LANG['enter_the_cache_input_will_not_be_cached'] = '请输入缓存时间,不输入则不进行缓存。'; $LANG['cache_time_can_only_be_positive'] = '缓存时间只能正数。'; $LANG['that_shows_only_positive_numbers'] = '显示条数只能正数。'; $LANG['please_enter_the_data_returned_value_by_default'] = '请输入数据返回值,默认为'; $LANG['histroy'] = '历史版本'; $LANG['restore'] = '还原'; $LANG['not_exist_versioning'] = '不存在历史版本'; $LANG['are_you_sure_you_want_to_restore'] = '您确定要还原吗?'; $LANG['time'] = '时间'; $LANG['who'] = '操作人'; $LANG['dbsource'] = '数据源'; $LANG['tpl_edit'] = '根据系统配置不允许在线编辑模板。'; $LANG['desc'] = '说明'; $LANG['operation'] = '操作'; $LANG['update'] = '更新'; $LANG['select_tag'] = '选择标签'; $LANG['create_tag'] = '创建标签'; $LANG['click_into'] = '点击插入'; $LANG['link_url'] = '点击插入链接地址'; $LANG['pic_url'] = '图片地址'; $LANG['description'] = '简介'; $LANG['tag_list'] = '标签向导列表'; $LANG['seo_title'] = 'SEO标题'; $LANG['site_title'] = '站点标题'; $LANG['seo_keyword'] = 'SEO关键字'; $LANG['seo_des'] = 'SEO简介'; $LANG['cat_id'] = '栏目ID'; $LANG['cat_name'] = '栏目名称'; $LANG['cat_url'] = '栏目地址'; $LANG['cats'] = '总栏目数组'; $LANG['title'] = '标题'; $LANG['inputtime'] = '添加时间'; $LANG['comeform'] = '来源'; $LANG['content'] = '内容'; $LANG['pre_url'] = '上一篇地址'; $LANG['pre_title'] = '上一篇标题'; $LANG['next_url'] = '下一篇地址'; $LANG['next_title'] = '下一篇标题'; $LANG['common_variables'] = '常用变量列表';
108wo
phpcms/languages/zh-cn/template.lang.php
PHP
asf20
3,865
<?php $LANG['vote'] = '投票'; $LANG['vote_add'] = '添加投票'; $LANG['vote_title'] = '投票标题'; $LANG['select_type'] = '选项类型'; $LANG['vote_option'] = '投票选项'; $LANG['vote_description'] = '投票介绍:'; $LANG['statistics'] = '统计:'; $LANG['vote_confirm_del'] = '确认要删除吗?'; $LANG['vote_mustinput'] = '必填'; $LANG['vote_votepassed'] = '投票已过期!'; $LANG['setting_updates_successful'] = '配置更新完成!'; $LANG['truename'] = '真实姓名'; $LANG['addr'] = '地址:'; $LANG['fromdate'] = '上线时间'; $LANG['todate'] = '下线时间'; $LANG['enablecheckcode'] = '启用验证码'; $LANG['allowguest'] = '允许游客投票'; $LANG['credit'] = '奖励积分'; $LANG['interval'] = '投票时间间隔'; $LANG['template'] = '模版'; $LANG['enabled'] = '是否启用'; $LANG['allowview'] = '查看投票结果'; $LANG['yes'] = '是'; $LANG['no'] = '否'; $LANG['input_not_space'] = '输入内容请勿带空格'; $LANG['remove_all_selected'] = '删除选中的投票'; $LANG['description'] = '描述'; $LANG['call_js_code'] = '调用JS代码'; $LANG['startdate'] = '开始时间'; $LANG['enddate'] = '结束时间'; $LANG['vote_title_noempty'] = '投票标题不能为空'; $LANG['not_vote'] = '没有此投票'; $LANG['vote_num'] = '投票数'; $LANG['statistics'] = '统计'; $LANG['lock'] = '锁定'; $LANG['check_vote'] = '查看投票'; $LANG['call_code'] = '调用代码'; $LANG['before_select_operation'] = '请选择再执行操作'; $LANG['select'] = '请选择'; $LANG['time_is_ok'] = '日期合法'; $LANG['time_is_must'] = '日期必选'; $LANG['radio'] = '单选'; $LANG['checkbox'] = '多选'; $LANG['maxval'] = '最多选项'; $LANG['minval'] = '最少选项'; $LANG['add_option'] = '增加选项'; $LANG['del'] = '删除'; $LANG['must_input'] = '必填'; $LANG['allow'] = '允许'; $LANG['not_allow'] = '不允许'; $LANG['one_ip'] = '表示此IP地址只能投一次'; $LANG['more_ip'] = 'N天后可再次投票'; $LANG['user_list'] = '会员列表'; $LANG['vote_result'] = '投票结果'; $LANG['pic_view'] = '图示'; $LANG['vote_all_num'] = '投票总数'; $LANG['vote_style'] = '可用风格'; $LANG['vote_showresult'] = '查看结果'; $LANG['up_vote_time'] = '投票时间'; $LANG['ip'] = 'IP'; $LANG['user_info'] = '投票人资料'; $LANG['guest'] = '游客'; $LANG['default_template'] = '投票页默认模板'; $LANG['default_guest'] = '默认是否允许游客投票'; $LANG['default_enabled'] = '默认是否启用投票'; $LANG['default_vote_time'] = '默认投票时间间隔'; $LANG['vote_post_point'] = '投票奖励'; $LANG['subjectid_desc'] = 'ID 降序'; $LANG['subjectid_asc'] = 'ID 升序'; $LANG['vote_call'] = '投票调用方式'; $LANG['vote_call_info'] = '调用说明'; $LANG['vote_call_infos'] = '1、根据自身情况选择一种调用方式,然后把调用代码复制粘贴到需要显示的模板再更新相关网页即可。'; $LANG['vote_call_infos2'] = '2、PHP动态调用方式可以统计展示次数。'; $LANG['vote_call_1'] = '首页/栏目页调用'; $LANG['vote_call_2'] = '内容页调用'; $LANG['vote_phpcall'] = 'JS调用代码(PHP动态调用)<font color=\'red\'>此方式可以统计展示次数。</font>'; $LANG['vote_jscall'] = 'JS调用'; $LANG['vote_jscall_info'] = 'JS调用代码(JS静态调用)'; $LANG['vote_overview'] = '投票概述'; $LANG['vote_status'] = '状态'; $LANG['vote_Lockets'] = '不限'; $LANG['vote_use'] = '启用中'; $LANG['vote_lock'] = '锁定'; $LANG['vote_voteid'] = '投票ID'; $LANG['vote_novote'] = '投票不存在'; $LANG['vote_voteyes'] = '你已经投过票'; $LANG['vote_nooption'] = '没有选择投票选项!'; $LANG['vote_votesucceed'] = '投票成功,正在返回 !'; $LANG['vote_votelocked'] = '投票锁定中!暂不能投票'; $LANG['vote_votenoguest'] = '对不起,不允许游客投票!'; $LANG['confirm'] = '确定'; $LANG['reset'] = '清除'; $LANG['check_select'] = '单击选择'; $LANG['item'] = '项'; $LANG['copy_code'] = '复制代码至剪贴板'; $LANG['submit'] = '提交'; $LANG['select_style'] = '选择风格'; $LANG['right_all'] = '选择正确'; ?>
108wo
phpcms/languages/zh-cn/vote.lang.php
PHP
asf20
4,777
<?php $LANG['link'] = '友情链接'; $LANG['link_add'] = '添加友情链接'; $LANG['link_name'] = '网站名称'; $LANG['logo'] = '图片LOGO'; $LANG['url'] = '网站网址'; $LANG['link_type'] = '链接类型'; $LANG['typeid'] = '所属分类'; $LANG['status'] = '状 态'; $LANG['type_id'] = '分类ID'; $LANG['type_name'] = '分类名称'; $LANG['list_type'] = '分类管理'; $LANG['link_type_listorder'] = '排序权值'; $LANG['web_description'] = '网站介绍'; $LANG['type_description'] = '分类描述'; $LANG['username'] = '网站联系人'; $LANG['elite'] = '推 荐'; $LANG['passed'] = '批 准'; $LANG['setting_updates_successful'] = '配置更新完成!'; $LANG['input_not_space'] = '输入内容请勿带空格'; $LANG['remove_all_selected'] = '删除选中'; $LANG['sitename_noempty'] = '网站名称不能为空'; $LANG['siteurl_not_empty'] = '网站网址不能为空'; $LANG['typename_noempty'] = '分类名称不能为空'; $LANG['add_success'] = '提交成功,正在返回!'; $LANG['suspend_application'] = '暂停申请,正在返回!'; $LANG['link_exit'] = '友情链接不存在'; $LANG['linktype_exit'] = '友情链接分类不存在'; $LANG['all_linktype'] = '所有分类'; $LANG['all'] = '全部'; $LANG['word_link'] = '文字链接'; $LANG['logo_link'] = 'LOGO链接'; $LANG['before_select_operations'] = '请选择再执行操作'; $LANG['yes'] = '是'; $LANG['no'] = '否'; $LANG['link_list'] = '友情链接列表'; $LANG['go_website'] = '前往网站'; $LANG['pass_check'] = '通过审核'; $LANG['pass_or_not'] = '是否通过审核'; $LANG['audit'] = '审核'; $LANG['passed'] = '通过'; $LANG['move_success'] = '移动成功'; $LANG['application_or_not'] = '是否允许申请'; $LANG['code_or_not'] = '是否开启验证码'; $LANG['choose_true_type'] = '请选择正确的分类!'; $LANG['application_links'] = '友情链接申请'; $LANG['link_onerror'] = '格式应该为http://www.phpcms.cn/'; ?>
108wo
phpcms/languages/zh-cn/link.lang.php
PHP
asf20
2,242