69 lines
2.7 KiB
PHP
69 lines
2.7 KiB
PHP
<?php
|
||
/**
|
||
* The convert module English file of ZenTaoMS.
|
||
*
|
||
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
|
||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||
* @package convert
|
||
* @version $Id$
|
||
* @link http://www.zentao.net
|
||
*/
|
||
$lang->convert->common = 'Import';
|
||
$lang->convert->next = 'Next';
|
||
$lang->convert->pre = 'Back';
|
||
$lang->convert->reload = 'Reload';
|
||
$lang->convert->error = 'Error ';
|
||
|
||
$lang->convert->start = 'Begin import';
|
||
$lang->convert->desc = <<<EOT
|
||
<p>Welcome to use this convert wizard which will help you to import other system data to ZenTaoPMS.</p>
|
||
<strong>Importing is dangerous. Be sure to backup your database and other data files and sure nobody is using pms when importing.</strong>
|
||
EOT;
|
||
|
||
$lang->convert->selectSource = 'Select source system and version';
|
||
$lang->convert->source = 'Source system';
|
||
$lang->convert->version = 'Version';
|
||
$lang->convert->mustSelectSource = "Must select a source system";
|
||
|
||
$lang->convert->sourceList['BugFree'] = array('bugfree_1' => '1.x', 'bugfree_2' => '2.x');
|
||
|
||
$lang->convert->setting = 'Setting';
|
||
$lang->convert->checkConfig = 'Check setting';
|
||
|
||
$lang->convert->ok = 'Check passed(√)';
|
||
$lang->convert->fail = 'Check failed(×)';
|
||
|
||
$lang->convert->settingDB = 'Set database';
|
||
$lang->convert->dbHost = 'Database server';
|
||
$lang->convert->dbPort = 'Server port';
|
||
$lang->convert->dbUser = 'Database user';
|
||
$lang->convert->dbPassword = 'Database password';
|
||
$lang->convert->dbName = '%s database';
|
||
$lang->convert->dbCharset = '%s charset';
|
||
$lang->convert->dbPrefix = '%s table prefix';
|
||
$lang->convert->installPath= '%s installed path';
|
||
|
||
$lang->convert->checkDB = 'Database';
|
||
$lang->convert->checkTable = 'Table';
|
||
$lang->convert->checkPath = 'Installed path';
|
||
|
||
$lang->convert->execute = 'Execute import';
|
||
$lang->convert->item = 'Imported items';
|
||
$lang->convert->count = 'Count';
|
||
$lang->convert->info = 'Info';
|
||
|
||
$lang->convert->bugfree->users = 'User';
|
||
$lang->convert->bugfree->projects = 'Project';
|
||
$lang->convert->bugfree->modules = 'Module';
|
||
$lang->convert->bugfree->bugs = 'Bug';
|
||
$lang->convert->bugfree->cases = 'Case';
|
||
$lang->convert->bugfree->results = 'Result';
|
||
$lang->convert->bugfree->actions = 'History';
|
||
$lang->convert->bugfree->files = 'File';
|
||
|
||
$lang->convert->errorConnectDB = 'Connect to database server failed.';
|
||
$lang->convert->errorFileNotExits = 'File %s not exits.';
|
||
$lang->convert->errorUserExists = 'User %s exits already.';
|
||
$lang->convert->errorCopyFailed = 'file %s copy failed.';
|