36 lines
758 B
Perl
36 lines
758 B
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::xx_Custom;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use utf8;
|
|
|
|
sub Data {
|
|
my $Self = shift;
|
|
|
|
# $$START$$
|
|
|
|
# own translations
|
|
$Self->{Translation}->{'Lock'} = 'Lala';
|
|
$Self->{Translation}->{'Unlock'} = 'Lulu';
|
|
|
|
# or an other syntax would be
|
|
# $Self->{Translation} = {
|
|
# %{$Self->{Translation}},
|
|
# # own translations
|
|
# 'Lock' => 'Lala',
|
|
# 'Unlock' => 'Lulu',
|
|
# };
|
|
|
|
# $$STOP$$
|
|
}
|
|
|
|
1;
|