From 80afaee2da19af86e884292b6501bf98d23cbd56 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Sat, 3 Feb 2007 16:45:00 +0000 Subject: * fixed problems with regards to extractTranslations.pl git-svn-id: http://svn.openslx.org/svn/openslx/trunk@675 95ad53e4-c205-0410-b2fa-d234c58c8868 --- config-db/OpenSLX/ConfigDB.pm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'config-db/OpenSLX') diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm index 3323ed04..fce953b6 100644 --- a/config-db/OpenSLX/ConfigDB.pm +++ b/config-db/OpenSLX/ConfigDB.pm @@ -178,16 +178,15 @@ sub connectConfigDB my $dbModule = "OpenSLX::MetaDB::$dbType"; unless (eval "require $dbModule") { if ($! == 2) { - die _tr("Unable to load DB-module <%s>\n" - ."that database type is not supported (yet?)\n", $dbModule); + die _tr("Unable to load DB-module <%s>\nthat database type is not supported (yet?)\n", + $dbModule); } else { die _tr("Unable to load DB-module <%s> (%s)\n", $dbModule, $@); } } my $modVersion = $dbModule->VERSION; if ($modVersion < $VERSION) { - confess _tr('Could not load module <%s> (Version <%s> required, ' - .'but <%s> found)', + confess _tr('Could not load module <%s> (Version <%s> required, but <%s> found)', $dbModule, $VERSION, $modVersion); } $dbModule->import; -- cgit v1.2.3-55-g7522