Confirm file deletion : translation. Fixes #1718

This commit is contained in:
Benjamin Sonntag 2007-08-23 05:52:35 +00:00
parent 03f11b9e4b
commit b3e3cb4491
3 changed files with 14 additions and 7 deletions

View File

@ -57,11 +57,11 @@ if ($formu) {
break;
case 2: // act vaut Supprimer Copier ou Renommer.
if ($actdel) {
if($del_confirm == _("Yes")) {
if ($del_confirm != "") {
if (!$bro->DeleteFile($d,$R)) {
print $err->errstr();
}
} elseif(!$cancel){
} elseif (!$cancel){
include("head.php");
?>
</head>
@ -71,7 +71,7 @@ if ($formu) {
<input type="hidden" name="formu" value="2" />
<input type="hidden" name="actdel" value="1" />
<input type="hidden" name="R" value="<?php echo $R?>" />
<p class="error"><?php __("WARNING : Confirm the deletion of this files"); ?></p>
<p class="error"><?php __("WARNING: Confirm the deletion of this files"); ?></p>
<?php foreach($d as $file){ ?>
<p><?php echo stripslashes($file); ?></p>
<input type="hidden" name="d[]" value="<?php echo htmlentities(stripslashes($file)); ?>" />
@ -84,7 +84,7 @@ if ($formu) {
</body>
</html>
<?php
die();
exit();
}
}
if ($actmove) {

View File

@ -2205,3 +2205,7 @@ msgstr "durant le mois"
#~ msgid "<-No Password->"
#~ msgstr "<-Aucun mot de passe->"
msgid "WARNING: Confirm the deletion of this files"
msgstr "ATTENTION : Confirmez la suppression de ces fichiers"

9
debian/changelog vendored
View File

@ -1,7 +1,10 @@
alternc (0.9.6.4) stable; urgency=low
* fixes profftp configuration for Etch
* fixes .eu.be.name whois issue
* change apache log format to a working one (using host request), also fix awstats issues.
* Confirm file deletion in the browser (#1718)
* fixes dns install of internal hosting domains (#1056)
* fixes profftp configuration for Etch (#1046)
* fixes .eu.be.name whois issue (#571)
* change apache log format to a working one (using host request), also fix awstats issues.
-- Benjamin Sonntag <benjamin@alternc.org> Tue, 23 May 2007 00:07:54 +0200