summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/Translations/de_de_utf_8.pm
blob: 0bafe44eafe3d1d839bdecbcdfb3a34c11309335 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# de_de_utf_8.pm - OpenSLX-translations for the German language.
#
# (c) 2006 - OpenSLX.com
#
# Oliver Tappe <ot@openslx.com>
#
package ODLX::Translations::de_de_utf_8;

use strict;
use vars qw(@ISA @EXPORT $VERSION);

use Exporter;
$VERSION = 0.02;
@ISA = qw(Exporter);

@EXPORT = qw(%translations);

use vars qw(%translations);

################################################################################
### Translations
################################################################################

%translations = (
	'Could not determine schema version of database'
		=> 'Die Version des Datenbank-Schemas konnte nicht bestimmt werden',
	'Unable to load DB-module <%s> (%s)'
		=> 'Kann DB-Modul <%s> nicht laden (%s)',
	'UnknownDbSchemaCommand'
		=> 'Unbekannter DbSchema-Befehl <%s> wird übergangen',
);

1;