wish -> want
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 7 Jul 2010 01:02:56 +0000 (19:02 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 7 Jul 2010 01:02:56 +0000 (19:02 -0600)
Wish connotes that something will hopefully happen.
Want connotes that something will definitely happen.

imp/attachment.php
imp/message.php

index 57033bc..468ea91 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * This file should be the basis for serving hosted attachments.  It
  * should fetch the file from the VFS and funnel it to the client
- * wishing to download the attachment. This will allow for the
+ * wants to download the attachment. This will allow for the
  * exchange of massive attachments without causing mail server havoc.
  *
  * Copyright 2004-2007 Andrew Coleman <mercury@appisolutions.net>
index 72677b7..d7aa9d4 100644 (file)
@@ -470,7 +470,7 @@ if (!$readonly) {
     if (in_array('\\deleted', $flags)) {
         $a_template->set('delete', Horde::widget($self_link->copy()->add('actionID', 'undelete_message'), _("Undelete"), 'widget', '', '', _("Undelete"), true));
     } else {
-        $a_template->set('delete', Horde::widget($self_link->copy()->add('actionID', 'delete_message'), _("Delete"), 'widget', '', ($use_pop) ? "return window.confirm('" . addslashes(_("Are you sure you wish to PERMANENTLY delete these messages?")) . "');" : '', _("_Delete"), true));
+        $a_template->set('delete', Horde::widget($self_link->copy()->add('actionID', 'delete_message'), _("Delete"), 'widget', '', ($use_pop) ? "return window.confirm('" . addslashes(_("Are you sure you want to PERMANENTLY delete these messages?")) . "');" : '', _("_Delete"), true));
     }
 }
 
@@ -616,7 +616,7 @@ if ($show_parts == 'atc') {
 if (count($inlineout['display_ids']) > 2) {
     $a_template->set('download_all', Horde::widget($imp_contents->urlView($imp_contents->getMIMEMessage(), 'download_all'), _("Download All Attachments (in .zip file)"), 'widget', '', '', _("Download All Attachments (in .zip file)"), true));
     if ($strip_atc) {
-        $a_template->set('strip_all', Horde::widget(Horde::selfUrl(true)->remove(array('actionID'))->add(array('actionID' => 'strip_all', 'message_token' => $message_token)), _("Strip All Attachments"), 'widget', '', "return window.confirm('" . addslashes(_("Are you sure you wish to PERMANENTLY delete all attachments?")) . "');", _("Strip All Attachments"), true));
+        $a_template->set('strip_all', Horde::widget(Horde::selfUrl(true)->remove(array('actionID'))->add(array('actionID' => 'strip_all', 'message_token' => $message_token)), _("Strip All Attachments"), 'widget', '', "return window.confirm('" . addslashes(_("Are you sure you want to PERMANENTLY delete all attachments?")) . "');", _("Strip All Attachments"), true));
     }
 
     $show_atc = true;