mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-07 17:08:42 +00:00
This commit is contained in:
parent
4d6ccb75d0
commit
240d3de894
1 changed files with 9 additions and 8 deletions
17
src/core.py
17
src/core.py
|
@ -82,14 +82,14 @@ PREF_FUNCTIONS = {
|
||||||
"use_utpex" : deluge_core.use_utpex,
|
"use_utpex" : deluge_core.use_utpex,
|
||||||
}
|
}
|
||||||
|
|
||||||
STATE_MESSAGES = (_("Queued"),
|
STATE_MESSAGES = (N_("Queued"),
|
||||||
_("Checking"),
|
N_("Checking"),
|
||||||
_("Connecting"),
|
N_("Connecting"),
|
||||||
_("Downloading Metadata"),
|
N_("Downloading Metadata"),
|
||||||
_("Downloading"),
|
N_("Downloading"),
|
||||||
_("Finished"),
|
N_("Finished"),
|
||||||
_("Seeding"),
|
N_("Seeding"),
|
||||||
_("Allocating"))
|
N_("Allocating"))
|
||||||
# Exceptions
|
# Exceptions
|
||||||
|
|
||||||
class DelugeError(Exception):
|
class DelugeError(Exception):
|
||||||
|
@ -893,3 +893,4 @@ class Manager:
|
||||||
|
|
||||||
def set_priv(self, unique_ID, on_off):
|
def set_priv(self, unique_ID, on_off):
|
||||||
return deluge_core.set_priv(unique_ID, on_off)
|
return deluge_core.set_priv(unique_ID, on_off)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue