diff options
author | Stefano <l.stickell@yahoo.it> | 2013-07-20 21:47:30 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-07-20 21:47:30 +0200 |
commit | 560bbc5a8a243265acf4301d50e5b7db7bbd7afa (patch) | |
tree | 624eb042d915255d00bfa27be080fc13a14627f1 /module/plugins/hoster/AlldebridCom.py | |
parent | Merge pull request #201 from xzwr/patch-2 (diff) | |
download | pyload-560bbc5a8a243265acf4301d50e5b7db7bbd7afa.tar.xz |
Using the same translatable string
Diffstat (limited to 'module/plugins/hoster/AlldebridCom.py')
-rw-r--r-- | module/plugins/hoster/AlldebridCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/AlldebridCom.py b/module/plugins/hoster/AlldebridCom.py index 0b8b70d06..08a1d1cf9 100644 --- a/module/plugins/hoster/AlldebridCom.py +++ b/module/plugins/hoster/AlldebridCom.py @@ -10,7 +10,7 @@ from module.utils import parseFileSize class AlldebridCom(Hoster):
__name__ = "AlldebridCom"
- __version__ = "0.32"
+ __version__ = "0.33"
__type__ = "hoster"
__pattern__ = r"https?://.*alldebrid\..*"
@@ -34,7 +34,7 @@ class AlldebridCom(Hoster): def process(self, pyfile):
if not self.account:
- self.logError("Please enter your AllDebrid account or deactivate this plugin")
+ self.logError(_("Please enter your %s account or deactivate this plugin") % "AllDebrid")
self.fail("No AllDebrid account provided")
self.logDebug("AllDebrid: Old URL: %s" % pyfile.url)
|