diff options
| -rwxr-xr-x | mat-gui | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -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 \ |
| 242 | non-anonymised) file to output archive')) | 242 | non-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() |
