[LON-CAPA-cvs] cvs: loncom /localize/localize de.pm /publisher loncfile.pm
bisitz
bisitz@source.lon-capa.org
Thu, 29 Jan 2009 11:50:32 -0000
bisitz Thu Jan 29 11:50:32 2009 EDT
Modified files:
/loncom/localize/localize de.pm
/loncom/publisher loncfile.pm
Log:
Localization: Optimized "bad filename" warning message
Index: loncom/localize/localize/de.pm
diff -u loncom/localize/localize/de.pm:1.195 loncom/localize/localize/de.pm:1.196
--- loncom/localize/localize/de.pm:1.195 Wed Jan 28 16:59:41 2009
+++ loncom/localize/localize/de.pm Thu Jan 29 11:49:57 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# German Localization Lexicon
#
-# $Id: de.pm,v 1.195 2009/01/28 16:59:41 bisitz Exp $
+# $Id: de.pm,v 1.196 2009/01/29 11:49:57 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -487,7 +487,7 @@
=> 'Fällig',
'The filetype extension of the file you uploaded is not allowed.'
-=> 'Die Endung der von Ihnen eingereichten Datei ist nicht erlaubt.',
+=> 'Die Endung der von Ihnen eingereichten Datei ist nicht zulässig.',
'Units incorrect.'
=> 'Einheit inkorrekt.',
@@ -10015,7 +10015,7 @@
=> 'Hilfe zu Rangordnungs-Aufgaben',
"Submission won't be graded. The type of file submitted is not allowed."
-=> "Ihre Einreichung wurde nicht gewertet. Der Dateityp ist nicht erlaubt.",
+=> 'Ihre Einreichung wurde nicht gewertet. Der Dateityp ist nicht zulässig.',
'Submission not graded. Use fewer digits.'
=> 'Ihre Antwort wurde nicht gewertet. Verwenden Sie weniger Dezimalstellen.',
@@ -10710,8 +10710,14 @@
'Warning: a published library of this name exists.'
=> 'Achtung: eine veröffentlichte Bibliothek mit diesem Namen existiert bereits.',
- 'Bad filename [_1].<br /> <tt>(name).(number).(extension)</tt> not allowed. <br /> Removing the <tt>.number.</tt> from requested filename.'
-=> 'Ungültiger Dateiname [_1].<br /> <tt>(Name).(Zahl).(Erweiterung)</tt> ist nicht zulässig. <br /> Entferne <tt>.Zahl.</tt> vom gewünschten Dateinamen.',
+ 'Bad filename [_1]'
+=> 'Ungültiger Dateiname: [_1]',
+
+ '[_1](name).(number).(extension)[_2] not allowed.'
+=> '[_1](Name).(Zahl).(Erweiterung)[_2] ist nicht zulässig.',
+
+ 'Removing the [_1].number.[_2] from requested filename.'
+=> '[_1].Zahl.[_2] wurde aus dem angeforderten Dateinamen entfernt.',
'Cannot change MIME type of a directory'
=> 'Der MIME-Typ eines Verzeichnisses kann nicht geändert werden',
@@ -16340,7 +16346,7 @@
=> 'Slots für diesen Kurs vewalten.',
'Reset access times for folders/maps, resources or the course.'
-=> 'Zugriffszeiten für Verzeichnisse, Ressou-rcen oder den Kurs zurücksetzen.',
+=> 'Zugriffszeiten für Verzeichnisse, Ressourcen oder den Kurs zurücksetzen.',
'Set default actions for parameters.'
=> 'Standardaktionen für Parameter festlegen.',
Index: loncom/publisher/loncfile.pm
diff -u loncom/publisher/loncfile.pm:1.92 loncom/publisher/loncfile.pm:1.93
--- loncom/publisher/loncfile.pm:1.92 Thu Jan 15 18:31:19 2009
+++ loncom/publisher/loncfile.pm Thu Jan 29 11:50:32 2009
@@ -9,7 +9,7 @@
# and displays a page showing the results of the action.
#
#
-# $Id: loncfile.pm,v 1.92 2009/01/15 18:31:19 bisitz Exp $
+# $Id: loncfile.pm,v 1.93 2009/01/29 11:50:32 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -361,16 +361,20 @@
my ($newpath)=($dest=~m|(.*)/|);
$newpath=&relativeDest($fn,$newpath,$uname);
if (! -d "$newpath") {
- $request->print("<p><span class=\"LC_error\">"
+ $request->print('<p><span class="LC_error">'
.&mt("You have requested to create file in directory [_1] which doesn't exist. The requested directory path has been removed from the requested file name."
,'"'.&display($newpath).'"')
- ."</span></p>");
+ .'</span></p>');
$dest=~s|.*/||;
}
}
if ($dest =~ /\.(\d+)\.(\w+)$/){
$request->print('<span class="LC_error">'
- .&mt('Bad filename [_1].<br /> <tt>(name).(number).(extension)</tt> not allowed. <br /> Removing the <tt>.number.</tt> from requested filename.',&display($dest))
+ .&mt('Bad filename [_1]','<span class="LC_filename">'.&display($dest).'</span>')
+ .'<br />'
+ .&mt('[_1](name).(number).(extension)[_2] not allowed.','<tt>','</tt>')
+ .'<br />'
+ .&mt('Removing the [_1].number.[_2] from requested filename.','<tt>','</tt>')
.'</span>');
$dest =~ s/\.(\d+)(\.\w+)$/$2/;
}