1
|
|
|
<?php
|
2
|
|
|
|
3
|
|
|
/**
|
4
|
|
|
* xLanguage module (eXtensible Language Management For XOOPS)
|
5
|
|
|
*
|
6
|
|
|
* You may not change or alter any portion of this comment or credits
|
7
|
|
|
* of supporting developers from this source code or any supporting source code
|
8
|
|
|
* which is considered copyrighted (c) material of the original comment or credit authors.
|
9
|
|
|
* This program is distributed in the hope that it will be useful,
|
10
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
12
|
|
|
*
|
13
|
|
|
* @copyright XOOPS Project (https://xoops.org)
|
14
|
|
|
* @license {@link https://www.gnu.org/licenses/gpl-2.0.html GNU Public License}
|
15
|
|
|
* @package xlanguage
|
16
|
|
|
* @since 2.0
|
17
|
|
|
* @author D.J.(phppp) [email protected]
|
18
|
|
|
**/
|
19
|
|
|
define('_AM_XLANGUAGE_CONFIG', 'XLanguage 配置');
|
20
|
|
|
define('_AM_XLANGUAGE_DELETE_CFM', '您確定要刪除語言?');
|
21
|
|
|
define('_AM_XLANGUAGE_DELETED', '語言已被刪除');
|
22
|
|
|
define('_AM_XLANGUAGE_SAVED', '語言已保存');
|
23
|
|
|
define('_AM_XLANGUAGE_EDITLANG', '編輯語言');
|
24
|
|
|
define('_AM_XLANGUAGE_ADDLANG', '新增語言');
|
25
|
|
|
define('_AM_XLANGUAGE_CREATED', '配置文件已建立');
|
26
|
|
|
define('_AM_XLANGUAGE_CONFIGOK', '配置文件可用');
|
27
|
|
|
define('_AM_XLANGUAGE_CONFIGNOTOK', '配置文件不可用');
|
28
|
|
|
define('_AM_XLANGUAGE_ADDBASE', '新增基本語言');
|
29
|
|
|
define('_AM_XLANGUAGE_ADDEXT', '新增擴展語言');
|
30
|
|
|
define('_AM_XLANGUAGE_CREATECONFIG', '建立配置文件');
|
31
|
|
|
define('_AM_XLANGUAGE_ABOUT', '關於本模組');
|
32
|
|
|
define('_AM_XLANGUAGE_LANGLIST', '語言清單');
|
33
|
|
|
define('_AM_XLANGUAGE_DESC', '描述');
|
34
|
|
|
define('_AM_XLANGUAGE_NAME', '名稱');
|
35
|
|
|
define('_AM_XLANGUAGE_CHARSET', '編碼');
|
36
|
|
|
define('_AM_XLANGUAGE_CODE', '語言代碼');
|
37
|
|
|
define('_AM_XLANGUAGE_IMAGE', '圖片');
|
38
|
|
|
define('_AM_XLANGUAGE_WEIGHT', '排序');
|
39
|
|
|
define('_AM_XLANGUAGE_BASE', '基本語言');
|
40
|
|
|
|
41
|
|
|
|
42
|
|
|
// 3.03
|
43
|
|
|
define('_AM_XLANGUAGE_ACTION', '執行');
|
44
|
|
|
|
45
|
|
|
//ModuleAdmin
|
46
|
|
|
define('_AM_XLANGUAGE_MODULEADMIN_MISSING', 'Error: The ModuleAdmin class is missing. Please install the ModuleAdmin Class into /Frameworks (see /docs/readme.txt)');
|
47
|
|
|
|
48
|
|
|
define('_AM_XLANGUAGE_CHARSET_DESC', "'For example 'iso-8859-1' or ' gb2312' or 'UTF-8'");
|
49
|
|
|
define('_AM_XLANGUAGE_CODE_DESC', "e.g. 'en' or 'xen', not a true language code, just a tag to indicate English content");
|
50
|
|
|
//3.05
|
51
|
|
|
define('_AM_XLANGUAGE_UPGRADEFAILED0', "Update failed - couldn't rename field '%s'");
|
52
|
|
|
define('_AM_XLANGUAGE_UPGRADEFAILED1', "Update failed - couldn't add new fields");
|
53
|
|
|
define('_AM_XLANGUAGE_UPGRADEFAILED2', "Update failed - couldn't rename table '%s'");
|
54
|
|
|
define('_AM_XLANGUAGE_ERROR_COLUMN', 'Could not create column in database : %s');
|
55
|
|
|
define('_AM_XLANGUAGE_ERROR_BAD_XOOPS', 'This module requires XOOPS %s+ (%s installed)');
|
56
|
|
|
define('_AM_XLANGUAGE_ERROR_BAD_PHP', 'This module requires PHP version %s+ (%s installed)');
|
57
|
|
|
define('_AM_XLANGUAGE_ERROR_TAG_REMOVAL', 'Could not remove tags from Tag Module');
|
58
|
|
|
?> |
|
|
|
|
Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.
A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.