mirror of
https://git.deluge-torrent.org/deluge
synced 2025-09-18 07:41:55 +00:00
-
This commit is contained in:
parent
3b65630a04
commit
d7eda4ba53
1 changed files with 8 additions and 12 deletions
|
@ -42,10 +42,6 @@ import pickle
|
|||
import time
|
||||
import gettext
|
||||
|
||||
try: _
|
||||
except NameError:
|
||||
def _(s): return s
|
||||
|
||||
# Constants
|
||||
|
||||
TORRENTS_SUBDIR = "torrentfiles"
|
||||
|
@ -78,14 +74,14 @@ PREF_FUNCTIONS = {
|
|||
"max_download_rate" : deluge_core.set_download_rate_limit,
|
||||
"max_upload_rate" : deluge_core.set_upload_rate_limit
|
||||
}
|
||||
STATE_MESSAGES = ( _("Queued"),
|
||||
_("Checking"),
|
||||
_("Connecting"),
|
||||
_("Downloading Metadata"),
|
||||
_("Downloading"),
|
||||
_("Finished"),
|
||||
_("Seeding"),
|
||||
_("Allocating")
|
||||
STATE_MESSAGES = ( "Queued",
|
||||
"Checking",
|
||||
"Connecting",
|
||||
"Downloading Metadata",
|
||||
"Downloading",
|
||||
"Finished",
|
||||
"Seeding",
|
||||
"Allocating"
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue