mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 10:38:45 +02:00
1 improved chinese translations 2 fix some missing enries 3 correct line number against english language
89 lines
4.0 KiB
PHP
89 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* Localized data
|
|
*
|
|
* @copyright Copyright (C) 2010-2018 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*
|
|
* This file is part of iTop.
|
|
*
|
|
* iTop is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* iTop is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
// Database inconsistencies
|
|
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
|
// Dictionary entries go here
|
|
'Menu:DBToolsMenu' => 'DB 工具',
|
|
'DBTools:Class' => 'Class~~',
|
|
'DBTools:Title' => '数据库维护工具',
|
|
'DBTools:ErrorsFound' => '发现错误',
|
|
'DBTools:Error' => '错误',
|
|
'DBTools:Count' => '个数',
|
|
'DBTools:SQLquery' => 'SQL 查询',
|
|
'DBTools:FixitSQLquery' => 'SQL query To Fix it (indication)~~',
|
|
'DBTools:SQLresult' => 'SQL 结果',
|
|
'DBTools:NoError' => '数据库OK ',
|
|
'DBTools:HideIds' => '错误列表',
|
|
'DBTools:ShowIds' => '详细视图',
|
|
'DBTools:ShowReport' => '报告',
|
|
'DBTools:IntegrityCheck' => '完整性检查',
|
|
'DBTools:FetchCheck' => 'Fetch Check (long)~~',
|
|
|
|
'DBTools:Analyze' => '分析',
|
|
'DBTools:Details' => '显示详情',
|
|
'DBTools:ShowAll' => '显示所有错误',
|
|
|
|
'DBTools:Inconsistencies' => '数据库不一致',
|
|
|
|
'DBAnalyzer-Integrity-OrphanRecord' => 'Orphan record in `%1$s`, it should have its counterpart in table `%2$s`~~',
|
|
'DBAnalyzer-Integrity-InvalidExtKey' => '无效的外键 %1$s (列: `%2$s.%3$s`)~~',
|
|
'DBAnalyzer-Integrity-MissingExtKey' => '外键丢失 %1$s (列: `%2$s.%3$s`)~~',
|
|
'DBAnalyzer-Integrity-InvalidValue' => '无效的值 %1$s (列: `%2$s.%3$s`)~~',
|
|
'DBAnalyzer-Integrity-UsersWithoutProfile' => 'Some user accounts have no profile at all~~',
|
|
'DBAnalyzer-Fetch-Count-Error' => 'Fetch count error in `%1$s`, %2$d entries fetched / %3$d counted~~',
|
|
));
|
|
|
|
// Database Info
|
|
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
|
'DBTools:DatabaseInfo' => '数据库信息',
|
|
'DBTools:Base' => 'Base~~',
|
|
'DBTools:Size' => '大小',
|
|
));
|
|
|
|
// Lost attachments
|
|
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
|
'DBTools:LostAttachments' => 'Lost attachments~~',
|
|
'DBTools:LostAttachments:Disclaimer' => 'Here you can search your database for lost or misplaced attachments. This is NOT a data recovery tool, is does not retrieve deleted data.~~',
|
|
|
|
'DBTools:LostAttachments:Button:Analyze' => '分析',
|
|
'DBTools:LostAttachments:Button:Restore' => '还原',
|
|
'DBTools:LostAttachments:Button:Restore:Confirm' => '该操作无法回退, 请确认是否继续还原.',
|
|
'DBTools:LostAttachments:Button:Busy' => '请稍后...',
|
|
|
|
'DBTools:LostAttachments:Step:Analyze' => 'First, search for lost/misplaced attachments by analyzing the database.~~',
|
|
|
|
'DBTools:LostAttachments:Step:AnalyzeResults' => '分析结果:',
|
|
'DBTools:LostAttachments:Step:AnalyzeResults:None' => 'Great! Every thing seems to be at the right place.~~',
|
|
'DBTools:LostAttachments:Step:AnalyzeResults:Some' => 'Some attachments (%1$d) seem to be misplaced. Take a look at the following list and check the ones you would like to move.~~',
|
|
'DBTools:LostAttachments:Step:AnalyzeResults:Item:Filename' => '文件名',
|
|
'DBTools:LostAttachments:Step:AnalyzeResults:Item:CurrentLocation' => '当前位置',
|
|
'DBTools:LostAttachments:Step:AnalyzeResults:Item:TargetLocation' => '移动到...',
|
|
|
|
'DBTools:LostAttachments:Step:RestoreResults' => '还原结果:',
|
|
'DBTools:LostAttachments:Step:RestoreResults:Results' => '%1$d/%2$d attachments were restored.~~',
|
|
|
|
'DBTools:LostAttachments:StoredAsInlineImage' => 'Stored as inline image~~',
|
|
'DBTools:LostAttachments:History' => 'Attachment "%1$s" restored with DB tools~~'
|
|
));
|