Changeset 40ebdf


Ignore:
Timestamp:
10/31/2019 09:40:59 AM (6 years ago)
Author:
Calum Lind <calumlind+deluge@gmail.com>
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)
Message:

[GTK] Add missing translation markup

Found some text needing marked for translation.

Location:
deluge/ui/gtk3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • deluge/ui/gtk3/path_combo_chooser.py

    reeeb7f r40ebdf  
    391391
    392392            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'))
    394394            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'))
    396396            self.path_list_popup.append(menuitem_remove)
    397397
  • deluge/ui/gtk3/preferences.py

    reeeb7f r40ebdf  
    938938                    )
    939939
    940             mode = 'Thinclient' if was_standalone else 'Standalone'
     940            mode = _('Thinclient') if was_standalone else _('Standalone')
    941941            dialog = YesNoDialog(
    942942                _('Switching Deluge Client Mode...'),
Note: See TracChangeset for help on using the changeset viewer.