mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
[GTKUI] Add prefs liststore col for translation
This commit is contained in:
parent
bb5dafc61d
commit
596b5d5cd4
2 changed files with 28 additions and 12 deletions
|
@ -144,6 +144,19 @@ TRACKER_STATUS_TRANSLATION = [
|
||||||
_('Announce Sent')
|
_('Announce Sent')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
PREFS_CATOG_TRANS = {
|
||||||
|
'interface': _('Interface'),
|
||||||
|
'downloads': _('Downloads'),
|
||||||
|
'bandwidth': _('Bandwidth'),
|
||||||
|
'queue': _('Queue'),
|
||||||
|
'network': _('Network'),
|
||||||
|
'proxy': _('Proxy'),
|
||||||
|
'cache': _('Cache'),
|
||||||
|
'other': _('Other'),
|
||||||
|
'daemon': _('Daemon'),
|
||||||
|
'plugins': _('Plugins')
|
||||||
|
}
|
||||||
|
|
||||||
FILE_PRIORITY = {
|
FILE_PRIORITY = {
|
||||||
0: 'Ignore',
|
0: 'Ignore',
|
||||||
1: 'Low',
|
1: 'Low',
|
||||||
|
|
|
@ -22,7 +22,7 @@ import deluge.component as component
|
||||||
from deluge.configmanager import ConfigManager, get_config_dir
|
from deluge.configmanager import ConfigManager, get_config_dir
|
||||||
from deluge.error import AuthManagerError, NotAuthorizedError
|
from deluge.error import AuthManagerError, NotAuthorizedError
|
||||||
from deluge.ui.client import client
|
from deluge.ui.client import client
|
||||||
from deluge.ui.common import DISK_CACHE_KEYS
|
from deluge.ui.common import DISK_CACHE_KEYS, PREFS_CATOG_TRANS
|
||||||
from deluge.ui.gtkui.common import associate_magnet_links, get_clipboard_text, get_deluge_icon
|
from deluge.ui.gtkui.common import associate_magnet_links, get_clipboard_text, get_deluge_icon
|
||||||
from deluge.ui.gtkui.dialogs import AccountDialog, ErrorDialog, InformationDialog, YesNoDialog
|
from deluge.ui.gtkui.dialogs import AccountDialog, ErrorDialog, InformationDialog, YesNoDialog
|
||||||
from deluge.ui.gtkui.path_chooser import PathChooser
|
from deluge.ui.gtkui.path_chooser import PathChooser
|
||||||
|
@ -76,22 +76,25 @@ class Preferences(component.Component):
|
||||||
self.builder.get_object('button_associate_magnet').hide()
|
self.builder.get_object('button_associate_magnet').hide()
|
||||||
|
|
||||||
# Setup the liststore for the categories (tab pages)
|
# Setup the liststore for the categories (tab pages)
|
||||||
self.liststore = gtk.ListStore(int, str)
|
self.liststore = gtk.ListStore(int, str, str)
|
||||||
self.treeview.set_model(self.liststore)
|
self.treeview.set_model(self.liststore)
|
||||||
render = gtk.CellRendererText()
|
render = gtk.CellRendererText()
|
||||||
column = gtk.TreeViewColumn(_('Categories'), render, text=1)
|
column = gtk.TreeViewColumn(None, render, text=2)
|
||||||
self.treeview.append_column(column)
|
self.treeview.append_column(column)
|
||||||
# Add the default categories
|
|
||||||
i = 0
|
|
||||||
for category in (_('Interface'), _('Downloads'), _('Bandwidth'), _('Queue'), _('Network'),
|
|
||||||
_('Proxy'), _('Cache'), _('Other'), _('Daemon'), _('Plugins'), '_separator_'):
|
|
||||||
self.liststore.append([i, category])
|
|
||||||
i += 1
|
|
||||||
|
|
||||||
|
# Add the default categories
|
||||||
|
prefs_categories = (
|
||||||
|
'interface', 'downloads', 'bandwidth', 'queue', 'network', 'proxy',
|
||||||
|
'cache', 'other', 'daemon', 'plugins')
|
||||||
|
for idx, category in enumerate(prefs_categories):
|
||||||
|
self.liststore.append([idx, category, PREFS_CATOG_TRANS[category]])
|
||||||
|
|
||||||
|
# Add and set separator after Plugins.
|
||||||
def set_separator(model, _iter, data=None):
|
def set_separator(model, _iter, data=None):
|
||||||
if model.get_value(_iter, 1) == '_separator_':
|
if model.get_value(_iter, 1) == '_separator_':
|
||||||
return True
|
return True
|
||||||
self.treeview.set_row_separator_func(set_separator, None)
|
self.treeview.set_row_separator_func(set_separator, None)
|
||||||
|
self.liststore.append([len(self.liststore), '_separator_', ''])
|
||||||
# Add a dummy notebook page to keep indexing synced with liststore.
|
# Add a dummy notebook page to keep indexing synced with liststore.
|
||||||
self.notebook.append_page(gtk.HSeparator())
|
self.notebook.append_page(gtk.HSeparator())
|
||||||
|
|
||||||
|
@ -217,7 +220,7 @@ class Preferences(component.Component):
|
||||||
scrolled.show_all()
|
scrolled.show_all()
|
||||||
# Add this page to the notebook
|
# Add this page to the notebook
|
||||||
index = self.notebook.append_page(scrolled, None)
|
index = self.notebook.append_page(scrolled, None)
|
||||||
self.liststore.append([index, name])
|
self.liststore.append([index, name, _(name)])
|
||||||
return name
|
return name
|
||||||
|
|
||||||
def remove_page(self, name):
|
def remove_page(self, name):
|
||||||
|
@ -251,7 +254,7 @@ class Preferences(component.Component):
|
||||||
'Bandwidth'"""
|
'Bandwidth'"""
|
||||||
self.window_open = True
|
self.window_open = True
|
||||||
if page is not None:
|
if page is not None:
|
||||||
for (index, string) in self.liststore:
|
for (index, string, __) in self.liststore:
|
||||||
if page == string:
|
if page == string:
|
||||||
self.treeview.get_selection().select_path(index)
|
self.treeview.get_selection().select_path(index)
|
||||||
break
|
break
|
||||||
|
@ -814,7 +817,7 @@ class Preferences(component.Component):
|
||||||
# Show the correct notebook page based on what row is selected.
|
# Show the correct notebook page based on what row is selected.
|
||||||
(model, row) = treeselection.get_selected()
|
(model, row) = treeselection.get_selected()
|
||||||
try:
|
try:
|
||||||
if model.get_value(row, 1) == _('Daemon'):
|
if model.get_value(row, 1) == 'daemon':
|
||||||
# Let's see update the accounts related stuff
|
# Let's see update the accounts related stuff
|
||||||
if client.connected():
|
if client.connected():
|
||||||
self._get_accounts_tab_data()
|
self._get_accounts_tab_data()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue