summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/Translations/posix.pm
blob: f0a0d9f45d24b40e9b649dcadaccf3c95763ea51 (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
34
35
36
37
38
39
# posix.pm - OpenSLX-translations for the posix locale (English language).
#
# (c) 2006 - OpenSLX.com
#
# Oliver Tappe <ot@openslx.com>
#
package ODLX::Translations::posix;

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'
		=> 'Could not determine schema version of database',
	'Unable to load DB-module <%s> (%s)'
		=> 'Unable to load DB-module <%s> (%s)',
	'Unable to load module <%s> (Version <%s> required, but <%s> found)'
		=> 'Unable to load module <%s> (Version <%s> required, but <%s> found)',
	'UnknownDbSchemaCommand'
		=> 'Unknown DbSchema command <%s> found',
	'UnknownDbSchemaColumnDescr'
		=> 'Unknown DbSchema column description <%s> found',
	'UnknownDbSchemaTypeDescr'
		=> 'Unknown DbSchema type description <%s> found',
);

1;