# -- # Copyright (C) 2001-2019 OTRS AG, https://otrs.com/ # -- # This software comes with ABSOLUTELY NO WARRANTY. For details, see # the enclosed file COPYING for license information (GPL). If you # did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt. # -- package Kernel::Language::zh_CN_ImportExport; use strict; use warnings; use utf8; sub Data { my $Self = shift; # Template: AdminImportExport $Self->{Translation}->{'Import/Export Management'} = '导入/导出管理'; $Self->{Translation}->{'Add template'} = '添加模板'; $Self->{Translation}->{'Create a template to import and export object information.'} = '创建模板导入和导出对象信息。'; $Self->{Translation}->{'To use this module, you need to install ITSMConfigurationManagement or any other package that provides back end for objects to be imported and exported.'} = '要使用此模块,您需要安装ITSMConfigurationManagement或为要导入和导出的对象提供后端的任何其它包。'; $Self->{Translation}->{'Start Import'} = '开始导入'; $Self->{Translation}->{'Start Export'} = '开始导出'; $Self->{Translation}->{'Delete this template'} = ''; $Self->{Translation}->{'Step 1 of 5 - Edit common information'} = '步骤 1/5 - 编辑通用信息'; $Self->{Translation}->{'Name is required!'} = '命名是必需的!'; $Self->{Translation}->{'Object is required!'} = '对象是必需的!'; $Self->{Translation}->{'Format is required!'} = '格式是必需的!'; $Self->{Translation}->{'Step 2 of 5 - Edit object information'} = '步骤 2/5 - 编辑目标信息'; $Self->{Translation}->{'Step 3 of 5 - Edit format information'} = '步骤 3/5 - 编辑格式信息'; $Self->{Translation}->{'is required!'} = '是必需的!'; $Self->{Translation}->{'Step 4 of 5 - Edit mapping information'} = '步骤 4/5 - 编辑映射信息'; $Self->{Translation}->{'No map elements found.'} = '没有找到映射的字段'; $Self->{Translation}->{'Add Mapping Element'} = '添加映射字段'; $Self->{Translation}->{'Step 5 of 5 - Edit search information'} = '步骤 5/5 - 编辑搜索信息'; $Self->{Translation}->{'Restrict export per search'} = '按搜索限制导出'; $Self->{Translation}->{'Import information'} = '导入信息'; $Self->{Translation}->{'Source File'} = '源文件'; $Self->{Translation}->{'Import summary for %s'} = '%s的导入摘要'; $Self->{Translation}->{'Records'} = '记录'; $Self->{Translation}->{'Success'} = '成功'; $Self->{Translation}->{'Duplicate names'} = '重复的名称'; $Self->{Translation}->{'Last processed line number of import file'} = '导入文件最后处理的行数'; $Self->{Translation}->{'Ok'} = '确定'; $Self->{Translation}->{'Do you really want to delete this template item?'} = '您真的想要删除这个模板条目吗?'; # Perl Module: Kernel/Modules/AdminImportExport.pm $Self->{Translation}->{'No object backend found!'} = '没有找到对象的后端!'; $Self->{Translation}->{'No format backend found!'} = '没有找到格式的后端!'; $Self->{Translation}->{'Template not found!'} = '没有找到模板!'; $Self->{Translation}->{'Can\'t insert/update template!'} = '不能插入/更新模板!'; $Self->{Translation}->{'Needed TemplateID!'} = '需要TemplateID!'; $Self->{Translation}->{'Error occurred. Import impossible! See Syslog for details.'} = '出现错误。不能导入!查看Syslog获取详细信息。'; $Self->{Translation}->{'Error occurred. Export impossible! See Syslog for details.'} = '出现错误。不能导出!查看Syslog获取详细信息。'; $Self->{Translation}->{'Template List'} = '模板清单'; $Self->{Translation}->{'number'} = '数字'; $Self->{Translation}->{'number bigger than zero'} = '数字大于0'; $Self->{Translation}->{'integer'} = '整数'; $Self->{Translation}->{'integer bigger than zero'} = '整数大于0'; $Self->{Translation}->{'Element required, please insert data'} = '需要元素,请插入数据'; $Self->{Translation}->{'Invalid data, please insert a valid %s'} = '无效的数据,请插入一个有效的%s'; $Self->{Translation}->{'Format not found!'} = '没有找到格式!'; # Perl Module: Kernel/System/ImportExport/FormatBackend/CSV.pm $Self->{Translation}->{'Column Separator'} = '列分隔符'; $Self->{Translation}->{'Tabulator (TAB)'} = 'TAB键 (TAB)'; $Self->{Translation}->{'Semicolon (;)'} = '分号 (;)'; $Self->{Translation}->{'Colon (:)'} = '冒号 (:)'; $Self->{Translation}->{'Dot (.)'} = '句号 (.)'; $Self->{Translation}->{'Comma (,)'} = '逗号(,)'; $Self->{Translation}->{'Charset'} = '字符集'; $Self->{Translation}->{'Include Column Headers'} = '包括列标题'; $Self->{Translation}->{'Column'} = '列'; # JS File: ITSM.Admin.ImportExport $Self->{Translation}->{'Deleting template...'} = '正在删除模板……'; $Self->{Translation}->{'There was an error deleting the template. Please check the logs for more information.'} = '删除模板时出错,请检查日志以获取更多信息。'; $Self->{Translation}->{'Template was deleted successfully.'} = '模板已成功删除。'; # SysConfig $Self->{Translation}->{'Format backend module registration for the import/export module.'} = '为导入/导出模块的格式后端模块注册。'; $Self->{Translation}->{'Import and export object information.'} = '导入和导出对象信息。'; $Self->{Translation}->{'Import/Export'} = '导入/导出'; push @{ $Self->{JavaScriptStrings} // [] }, ( 'Cancel', 'Confirm', 'Delete this template', 'Deleting template...', 'Template was deleted successfully.', 'There was an error deleting the template. Please check the logs for more information.', ); } 1;