31 lines
925 B
PHP
31 lines
925 B
PHP
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: lang_friendlink.php 27449 2012-02-01 05:32:35Z zhangguosheng $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
$lang = array
|
|
(
|
|
'friendlink_content' => '展示样式',
|
|
'friendlink_content_both' => 'logo和文字',
|
|
'friendlink_content_logo' => '仅logo',
|
|
'friendlink_content_text' => '仅文字',
|
|
'friendlink_type' => '链接分组',
|
|
'friendlink_type_group1' => '分组1',
|
|
'friendlink_type_group2' => '分组2',
|
|
'friendlink_type_group3' => '分组3',
|
|
'friendlink_type_group4' => '分组4',
|
|
'friendlink_titlelength' => '站点名称长度',
|
|
'friendlink_titlelength_comment' => '设置站点名称的最大长度',
|
|
'friendlink_summarylength' => '简介长度',
|
|
'friendlink_summarylength_comment' => '设置站点简介最大长度',
|
|
);
|
|
|
|
?>
|