summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/UploadedTo.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/UploadedTo.py')
-rw-r--r--module/plugins/hoster/UploadedTo.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/module/plugins/hoster/UploadedTo.py b/module/plugins/hoster/UploadedTo.py
index 7ec3716e7..e6ec0eb12 100644
--- a/module/plugins/hoster/UploadedTo.py
+++ b/module/plugins/hoster/UploadedTo.py
@@ -128,7 +128,7 @@ class UploadedTo(Hoster):
# TODO: fallback to parse from site, because api sometimes delivers wrong status codes
if not api:
- self.logWarning("No response for API call")
+ self.logWarning(_("No response for API call"))
self.html = unicode(self.load(pyfile.url, decode=False), 'iso-8859-1')
name, size, status, self.fileID = parseFileInfo(self)
@@ -138,7 +138,7 @@ class UploadedTo(Hoster):
elif status == 2:
pyfile.name, pyfile.size = name, size
else:
- self.fail("Parse error - file info")
+ self.error(_("file info"))
elif api == 'Access denied':
self.fail(_("API key invalid"))
@@ -165,7 +165,7 @@ class UploadedTo(Hoster):
self.logDebug("%(name)s: Use Premium Account (%(left)sGB left)" % {"name": self.__name__,
"left": info['trafficleft'] / 1024 / 1024})
if int(self.data[1]) / 1024 > info['trafficleft']:
- self.logInfo(_("%s: Not enough traffic left" % self.__name__))
+ self.logInfo(_("Not enough traffic left"))
self.account.empty(self.user)
self.resetAccount()
self.fail(_("Traffic exceeded"))
@@ -180,7 +180,7 @@ class UploadedTo(Hoster):
self.html = self.load("http://uploaded.net/file/%s" % self.fileID)
m = re.search(r'<div class="tfree".*\s*<form method="post" action="(.*?)"', self.html)
if m is None:
- self.fail("Download URL not m. Try to enable direct downloads.")
+ self.fail(_("Download URL not m. Try to enable direct downloads"))
url = m.group(1)
print "Premium URL: " + url
self.download(url, post={})
@@ -190,12 +190,12 @@ class UploadedTo(Hoster):
self.html = self.load(self.pyfile.url, decode=True)
if 'var free_enabled = false;' in self.html:
- self.logError("Free-download capacities exhausted.")
+ self.logError(_("Free-download capacities exhausted"))
self.retry(max_tries=24, wait_time=5 * 60)
m = re.search(r"Current waiting period: <span>(\d+)</span> seconds", self.html)
if m is None:
- self.fail("File not downloadable for free users")
+ self.fail(_("File not downloadable for free users"))
self.setWait(int(m.group(1)))
self.html = self.load("http://uploaded.net/js/download.js", decode=True)
@@ -214,13 +214,13 @@ class UploadedTo(Hoster):
self.logDebug("Result: %s" % result)
if "limit-size" in result:
- self.fail("File too big for free download")
+ self.fail(_("File too big for free download"))
elif "limit-slot" in result: # Temporary restriction so just wait a bit
self.setWait(30 * 60, True)
self.wait()
self.retry()
elif "limit-parallel" in result:
- self.fail("Cannot download in parallel")
+ self.fail(_("Cannot download in parallel"))
elif "limit-dl" in result or self.DL_LIMIT_PATTERN in result: # limit-dl
self.setWait(3 * 60 * 60, True)
self.wait()
@@ -232,10 +232,10 @@ class UploadedTo(Hoster):
downloadURL = re.search("url:'([^']+)", result).group(1)
break
else:
- self.error("Unknown error '%s'" % result)
+ self.error(_("Unknown error: %s") % result)
if not downloadURL:
- self.fail("No Download url retrieved/all captcha attempts failed")
+ self.fail(_("No Download url retrieved/all captcha attempts failed"))
self.download(downloadURL, disposition=True)
check = self.checkDownload({"limit-dl": self.DL_LIMIT_PATTERN})