summaryrefslogtreecommitdiff
path: root/mat-gui
diff options
context:
space:
mode:
authorjvoisin2016-02-10 23:04:40 +0100
committerjvoisin2016-02-10 23:04:40 +0100
commit1c1bcbb01a2db7913016d00c96cf3cea1b7c634b (patch)
treea9a733423c301db22fb2fa18dc8629f228612bbd /mat-gui
parentfbe3fb63cec551cc16172e2b88e4d83aeea1cafd (diff)
Improves the phrasing of a preference item (close #7447)
Changing "adding unsupported files" to "deleting unsupported files". UX people told me that it's more clear this way.
Diffstat (limited to 'mat-gui')
-rwxr-xr-xmat-gui8
1 files changed, 4 insertions, 4 deletions
diff --git a/mat-gui b/mat-gui
index f8ad92f..430641a 100755
--- a/mat-gui
+++ b/mat-gui
@@ -235,11 +235,11 @@ class GUI(object):
235 pdf_quality.set_tooltip_text(_('Reduce the produced PDF size and quality')) 235 pdf_quality.set_tooltip_text(_('Reduce the produced PDF size and quality'))
236 table.attach(pdf_quality, 0, 1, 0, 1) 236 table.attach(pdf_quality, 0, 1, 0, 1)
237 237
238 add2archive = Gtk.CheckButton(_('Add unsupported file to archives'), False) 238 add2archive = Gtk.CheckButton(_('Remove unsupported file from archives'), False)
239 add2archive.set_active(self.add2archive) 239 add2archive.set_active(not self.add2archive)
240 add2archive.connect('toggled', self.__invert, 'add2archive') 240 add2archive.connect('toggled', self.__invert, 'add2archive')
241 add2archive.set_tooltip_text(_('Add non-supported (and so \ 241 add2archive.set_tooltip_text(_('Remove non-supported (and so \
242non-anonymised) file to output archive')) 242non-anonymised) file from output archive'))
243 table.attach(add2archive, 0, 1, 1, 2) 243 table.attach(add2archive, 0, 1, 1, 2)
244 244
245 hbox.show_all() 245 hbox.show_all()