[shotwell] Improved "Empty Trash" dialog buttons: Closes bgo#725085



commit dc7ec9a7f3094941d42f3768e91e6b52d740bc19
Author: Jim Nelson <jim yorba org>
Date:   Fri Mar 28 13:46:52 2014 -0700

    Improved "Empty Trash" dialog buttons: Closes bgo#725085

 src/Dialogs.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Dialogs.vala b/src/Dialogs.vala
index 149a6de..2f61a58 100644
--- a/src/Dialogs.vala
+++ b/src/Dialogs.vala
@@ -1301,11 +1301,11 @@ public class EditCommentDialog : MultiTextEntryDialogMediator {
 // Gtk.ResponseType.CANCEL.
 public Gtk.ResponseType remove_from_library_dialog(Gtk.Window owner, string title,
     string user_message, int count) {
-    string trash_action = ngettext("_Trash File", "_Trash Files", count);
+    string trash_action = ngettext("Remove and _Trash File", "Remove and _Trash Files", count);
     
     Gtk.MessageDialog dialog = new Gtk.MessageDialog(owner, Gtk.DialogFlags.MODAL,
         Gtk.MessageType.WARNING, Gtk.ButtonsType.CANCEL, "%s", user_message);
-    dialog.add_button(_("Only _Remove"), Gtk.ResponseType.NO);
+    dialog.add_button(_("_Remove From Library"), Gtk.ResponseType.NO);
     dialog.add_button(trash_action, Gtk.ResponseType.YES);
 
     // This dialog was previously created outright; we now 'hijack' 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]