mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
60 lines
2.9 KiB
PHP
60 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Localized data
|
|
*
|
|
* @copyright Copyright (C) 2010-2021 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/>
|
|
*/
|
|
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
|
|
|
'bkp-backup-running' => '备份正在进行,请稍后...',
|
|
'bkp-restore-running' => '还原正在进行,请稍等...',
|
|
|
|
'Menu:BackupStatus' => '定时备份',
|
|
'bkp-status-title' => '定时备份',
|
|
'bkp-status-checks' => '设置与检查',
|
|
'bkp-mysqldump-ok' => '已找到 mysqldump : %1$s',
|
|
'bkp-mysqldump-notfound' => 'mysqldump 找不到: %1$s - 请确认它安装在正确的路径, 或者调整'.ITOP_APPLICATION_SHORT.' 配置文件的选项mysql_bindir.',
|
|
'bkp-mysqldump-issue' => 'mysqldump 无法运行 (retcode=%1$d): 请确认它安装在正确的路径, 或者调整'.ITOP_APPLICATION_SHORT.' 配置文件的选项mysql_bindir',
|
|
'bkp-missing-dir' => '目标目录 <code>%1$s</code> 找不到',
|
|
'bkp-free-disk-space' => '<b>%1$s 空闲</b> 在 <code>%2$s</code>',
|
|
'bkp-dir-not-writeable' => '%1$s 没有写入权限',
|
|
'bkp-wrong-format-spec' => '当前文件名格式错误 (%1$s). 默认格式应该是: %2$s',
|
|
'bkp-name-sample' => '备份文件将以数据库名、日期和时间进行命名. 例如: %1$s',
|
|
'bkp-week-days' => '在每个 <b> %1$s 的 %2$s</b> 进行备份',
|
|
'bkp-retention' => '最多 <b>%1$d 份备份文件 </b> 在目标目录.',
|
|
'bkp-next-to-delete' => '当下一次备份时将被删除 (see the setting "retention_count")',
|
|
'bkp-table-file' => '文件',
|
|
'bkp-table-file+' => '只有扩展名是.zip的文件才被认为是备份文件',
|
|
'bkp-table-size' => '大小',
|
|
'bkp-table-size+' => '',
|
|
'bkp-table-actions' => '操作',
|
|
'bkp-table-actions+' => '',
|
|
'bkp-status-backups-auto' => '定时备份',
|
|
'bkp-status-backups-manual' => '手动备份',
|
|
'bkp-status-backups-none' => '尚未开始备份',
|
|
'bkp-next-backup' => '下一次备份将发生在 <b>%1$s</b> (%2$s) 的 %3$s',
|
|
'bkp-button-backup-now' => '立即备份!',
|
|
'bkp-button-restore-now' => '还原!',
|
|
'bkp-confirm-backup' => '请确认是否立即开始备份.',
|
|
'bkp-confirm-restore' => '请确认要还原的备份文件是 %1$s.',
|
|
'bkp-wait-backup' => '请等待备份完成...',
|
|
'bkp-wait-restore' => '请等待还原完成...',
|
|
'bkp-success-restore' => '还原成功.',
|
|
));
|