74 lines
3.1 KiB
PHP
74 lines
3.1 KiB
PHP
<?php
|
||
/* $Id$ */
|
||
|
||
/**
|
||
* Last translation by: Siu Sun <siusun@best-view.net>
|
||
*/
|
||
|
||
$charset = 'utf-8';
|
||
$allow_recoding = TRUE;
|
||
$text_dir = 'ltr';
|
||
$left_font_family = 'sans-serif';
|
||
$right_font_family = 'sans-serif';
|
||
$number_thousands_separator = ',';
|
||
$number_decimal_separator = '.';
|
||
// shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa
|
||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB');
|
||
|
||
$day_of_week = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
|
||
$month = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
|
||
// See http://www.php.net/manual/en/function.strftime.php to define the
|
||
// variable below
|
||
$datefmt = '%B %d, %Y at %I:%M %p';
|
||
|
||
$strAPrimaryKey = '主键已经添加到 %s';
|
||
$strAccessDenied = '访问被拒绝';
|
||
$strAction = '执行操作';
|
||
$strAddDeleteColumn = '添加/删除 选择栏';
|
||
$strAddDeleteRow = '添加/删除 筛选列';
|
||
$strAddNewField = '添加新字段';
|
||
$strAddPriv = '添加新权限';
|
||
$strAddPrivMessage = '您已经为下此使用者添加了新权限.';
|
||
$strAddSearchConditions = '添加检索条件 ("where" 语句的主体):';
|
||
$strAddToIndex = '添加 %s 组索引栏';
|
||
$strAddUser = '添增使用者';
|
||
$strAddUserMessage = '您已添增了一个新使用者.';
|
||
$strAffectedRows = '影响列数:';
|
||
$strAfter = '在 %s 之后';
|
||
$strAfterInsertBack = '返回';
|
||
$strAfterInsertNewInsert = '添加一笔记录';
|
||
$strAll = '全部';
|
||
$strAllTableSameWidth = '以相同宽度显示所有数据表?';
|
||
$strAlterOrderBy = '根据栏位内容排序记录';
|
||
$strAnIndex = '索引已经添加到 %s';
|
||
$strAnalyzeTable = '分析数据表';
|
||
$strAnd = '与';
|
||
$strAny = '任何';
|
||
$strAnyColumn = '任何栏位';
|
||
$strAnyDatabase = '任何数据库';
|
||
$strAnyHost = '任何主机';
|
||
$strAnyTable = '任何数据表';
|
||
$strAnyUser = '任何使用者';
|
||
$strAscending = '递增';
|
||
$strAtBeginningOfTable = '于数据表开头';
|
||
$strAtEndOfTable = '于数据表尾端';
|
||
$strAttr = '属性';
|
||
|
||
$strBack = '返回';
|
||
$strBeginCut = '开
|
||
$strCantLoad = 'cannot load %s extension,<br />please check PHP Configuration'; //to translate
|
||
$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; //to translate
|
||
$strCheckPrivs = 'Check Privileges'; //to translate
|
||
$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
|
||
$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
|
||
$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
|
||
$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
|
||
$strJumpToDB = 'Jump to database "%s".'; //to translate
|
||
$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
|
||
$strNoDatabasesSelected = 'No databases selected.'; //to translate
|
||
$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
|
||
$strGlobal = 'global'; //to translate
|
||
$strDbSpecific = 'database-specific'; //to translate
|
||
$strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate
|
||
?>
|