Unmark Deletion: Update menu item label

This commit is contained in:
Tony George 2020-11-16 18:12:23 +05:30
parent 04ee126ef4
commit ee92ad8af7
2 changed files with 2 additions and 2 deletions

View File

@ -634,7 +634,7 @@ class MainWindow : Gtk.Window{
App.repo.load_snapshots();
string title = (marked ? "Marked " : "Unchecked ") + "for deletion";
string title = (marked ? "Marked " : "Unmarked ") + "for deletion";
string message = (marked ? "Snapshots will " : "Snapshots will not ") + "be removed during the next scheduled run";
gtk_messagebox(_(title),

View File

@ -326,7 +326,7 @@ class SnapshotListBox : Gtk.Box{
mi_remove = item;
// mi_mark
item = new ImageMenuItem.with_label(_("Mark/Uncheck for Deletion"));
item = new ImageMenuItem.with_label(_("Mark/Unmark for Deletion"));
item.image = IconManager.lookup_image("edit-delete", 16);
item.activate.connect(()=> { mark_selected(); });
menu_snapshots.append(item);