1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: lang_google.php 27449 2012-02-01 05:32:35Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- $lang = array
- (
- 'google_name' => 'Google 搜索',
- 'google_desc' => 'Google 搜索框',
- 'google_lang' => '搜索网页的语言',
- 'google_lang_comment' => '设置适合自己论坛的网页语言可以有效的提高搜索结果的质量',
- 'google_lang_any' => '任何语言',
- 'google_lang_en' => '英文',
- 'google_lang_zh-CN' => '简体中文',
- 'google_lang_zh-TW' => '繁体中文',
- 'google_default' => '默认搜索选择',
- 'google_default_comment' => '搜索框默认选择的项目',
- 'google_default_0' => '网页搜索',
- 'google_default_1' => '站内搜索',
- 'google_client' => '搜索联盟 ID',
- 'google_client_comment' => '如果您加入了 Google 搜索联盟,可以在这里填写 ID',
- );
- ?>
|