Changeset 40ebdf
- Timestamp:
- 10/31/2019 09:40:59 AM (6 years ago)
- Branches:
- 2.0.x, develop, master
- Children:
- d08c3f
- Parents:
- eeeb7f
- git-author:
- Calum Lind <calumlind+deluge@gmail.com> (06/25/2019 12:05:27 PM)
- git-committer:
- Calum Lind <calumlind+deluge@gmail.com> (10/31/2019 09:40:59 AM)
- Location:
- deluge/ui/gtk3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
deluge/ui/gtk3/path_combo_chooser.py
reeeb7f r40ebdf 391 391 392 392 self.path_list_popup = Gtk.Menu() 393 menuitem_edit = Gtk.MenuItem.new_with_label( 'Edit path')393 menuitem_edit = Gtk.MenuItem.new_with_label(_('Edit path')) 394 394 self.path_list_popup.append(menuitem_edit) 395 menuitem_remove = Gtk.MenuItem.new_with_label( 'Remove path')395 menuitem_remove = Gtk.MenuItem.new_with_label(_('Remove path')) 396 396 self.path_list_popup.append(menuitem_remove) 397 397 -
deluge/ui/gtk3/preferences.py
reeeb7f r40ebdf 938 938 ) 939 939 940 mode = 'Thinclient' if was_standalone else 'Standalone'940 mode = _('Thinclient') if was_standalone else _('Standalone') 941 941 dialog = YesNoDialog( 942 942 _('Switching Deluge Client Mode...'),
Note:
See TracChangeset
for help on using the changeset viewer.