Initial checkin.

Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
Thomas Hochstein 2022-01-29 10:22:11 +01:00
commit 30132626b8
68 changed files with 5497 additions and 0 deletions

22
MOD/lang/de_de.pm-disable Normal file
View file

@ -0,0 +1,22 @@
#!/usr/bin/perl -w
#
# $Id: de_de.pm-disable 64 2009-09-02 19:42:41Z alba $
#
# This file is encoded in iso-8859-1
#
package MOD::lang::de_de;
use warnings;
use strict;
use MOD::lang::de_at();
@MOD::Utils::ISA = qw(Exporter);
@MOD::Utils::EXPORT = qw();
@MOD::Utils::EXPORT_OK = qw( get_translator );
sub get_translator($)
{
return MOD::lang::de_at::get_translator(@_);
}
1;