Files
scripts/Perl OTRS/Kernel/Language/zh_CN_GeneralCatalog.pm
2024-10-14 00:08:40 +02:00

53 lines
2.2 KiB
Perl

# --
# 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_GeneralCatalog;
use strict;
use warnings;
use utf8;
sub Data {
my $Self = shift;
# Template: AAAGeneralCatalog
$Self->{Translation}->{'Functionality'} = '功能';
# Template: AdminGeneralCatalog
$Self->{Translation}->{'General Catalog Management'} = '目录管理';
$Self->{Translation}->{'Items in Class'} = '以下条目属于类:';
$Self->{Translation}->{'Edit Item'} = '编辑条目';
$Self->{Translation}->{'Add Class'} = '添加类';
$Self->{Translation}->{'Add Item'} = '添加条目';
$Self->{Translation}->{'Add Catalog Item'} = '添加目录项目';
$Self->{Translation}->{'Add Catalog Class'} = '添加新目录类';
$Self->{Translation}->{'Catalog Class'} = '目录类';
$Self->{Translation}->{'Edit Catalog Item'} = '编辑目录项目';
# SysConfig
$Self->{Translation}->{'Comment 2'} = '注释2';
$Self->{Translation}->{'Create and manage the General Catalog.'} = '创建和管理目录';
$Self->{Translation}->{'Define the general catalog comment 2.'} = '定义通用目录注释2。';
$Self->{Translation}->{'Defines the URL JS Color Picker path.'} = '定义JS颜色选择器的路径URL。';
$Self->{Translation}->{'Frontend module registration for the AdminGeneralCatalog configuration in the admin area.'} =
'在系统管理中注册目录管理模块AdminGeneralCatalog的前端模块。';
$Self->{Translation}->{'General Catalog'} = '目录';
$Self->{Translation}->{'Parameters for the example comment 2 of the general catalog attributes.'} =
'目录属性样例-注释2的参数设置。';
$Self->{Translation}->{'Parameters for the example permission groups of the general catalog attributes.'} =
'目录属性样例-权限组的参数。';
$Self->{Translation}->{'Permission Group'} = '权限组';
push @{ $Self->{JavaScriptStrings} // [] }, (
);
}
1;