123456789101112131415161718192021222324252627 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: lang_archiver.php 27449 2012-02-01 05:32:35Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- $lang = array
- (
- 'page' => '页',
- 'replies' => '篇回复',
- 'anonymous' => '匿名',
- 'full_version' => '查看完整版本',
- 'forum_nonexistence' => '抱歉,您没有权限访问这个论坛的存档或该论坛不存在',
- 'thread_nonexistence' => '抱歉,您没有权限查看这个话题或该话题不存在',
- 'post_time' => '发表于',
- );
- ?>
|