53 lines
2.4 KiB
Perl
53 lines
2.4 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::de_GeneralCatalog;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use utf8;
|
|
|
|
sub Data {
|
|
my $Self = shift;
|
|
|
|
# Template: AAAGeneralCatalog
|
|
$Self->{Translation}->{'Functionality'} = 'Funktionalität';
|
|
|
|
# Template: AdminGeneralCatalog
|
|
$Self->{Translation}->{'General Catalog Management'} = 'General Katalog-Verwaltung';
|
|
$Self->{Translation}->{'Items in Class'} = 'Elemente in Klasse';
|
|
$Self->{Translation}->{'Edit Item'} = 'Ändere das Item';
|
|
$Self->{Translation}->{'Add Class'} = 'Klasse hinzufügen';
|
|
$Self->{Translation}->{'Add Item'} = 'Füge Item hinzu';
|
|
$Self->{Translation}->{'Add Catalog Item'} = 'Katalogelement hinzufügen';
|
|
$Self->{Translation}->{'Add Catalog Class'} = 'Katalogklasse hinzufügen';
|
|
$Self->{Translation}->{'Catalog Class'} = 'Katalogklasse';
|
|
$Self->{Translation}->{'Edit Catalog Item'} = 'Katalogelement bearbeiten';
|
|
|
|
# SysConfig
|
|
$Self->{Translation}->{'Comment 2'} = 'Kommentar 2';
|
|
$Self->{Translation}->{'Create and manage the General Catalog.'} = 'General Katalog erstellen und verwalten.';
|
|
$Self->{Translation}->{'Define the general catalog comment 2.'} = 'Legen Sie den Kommentar 2 für den General Katalog fest.';
|
|
$Self->{Translation}->{'Defines the URL JS Color Picker path.'} = 'Definiert die URL des JS-Farbwähler-Pfads.';
|
|
$Self->{Translation}->{'Frontend module registration for the AdminGeneralCatalog configuration in the admin area.'} =
|
|
'Registrierung des Frontend-Moduls für die Konfiguration von AdminGeneralCatalog im Admin-Bereich.';
|
|
$Self->{Translation}->{'General Catalog'} = 'General Katalog';
|
|
$Self->{Translation}->{'Parameters for the example comment 2 of the general catalog attributes.'} =
|
|
'Parameter für den Beispiel-Kommentar 2 der General Katalog-Attribute.';
|
|
$Self->{Translation}->{'Parameters for the example permission groups of the general catalog attributes.'} =
|
|
'Parameter für die zugriffsberechtigte Gruppe der General Katalog-Attribute.';
|
|
$Self->{Translation}->{'Permission Group'} = 'Berechtigungsgruppe \*';
|
|
|
|
|
|
push @{ $Self->{JavaScriptStrings} // [] }, (
|
|
);
|
|
|
|
}
|
|
|
|
1;
|