diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-27 14:23:55 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-27 14:23:55 +0200 |
commit | 1bbbd7e7e123516a8540099e5f380ba158dfef5f (patch) | |
tree | 87725c8189bf68b5832e4de44555858173051743 /module | |
parent | hotfile fix (diff) | |
download | pyload-1bbbd7e7e123516a8540099e5f380ba158dfef5f.tar.xz |
locale fixes
Diffstat (limited to 'module')
21 files changed, 638 insertions, 321 deletions
diff --git a/module/HookManager.py b/module/HookManager.py index 77a17b0aa..8a6193d87 100644 --- a/module/HookManager.py +++ b/module/HookManager.py @@ -61,7 +61,7 @@ class HookManager(): #@TODO handle in pluginmanager plugin = pluginClass(self.core) plugins.append(plugin) - self.log.info(_("%s loaded, activated %s") % (pluginClass.__name__, plugin.isActivated() )) + self.log.info(_("%(name)s loaded, activated %(value)s") % {"name": pluginClass.__name__, "value": plugin.isActivated() }) except: self.log.warning(_("Failed activating %(name)s") % {"name":pluginClass.__name__}) if self.core.debug: diff --git a/module/PluginManager.py b/module/PluginManager.py index 8f00b9f25..7e1c663de 100644 --- a/module/PluginManager.py +++ b/module/PluginManager.py @@ -282,7 +282,7 @@ class PluginManager(): try: module = __import__(value["path"], globals(), locals(), [value["name"]] , -1) except Exception, e: - self.log.error(_("Error importing %s: %s") % (name, str(e))) + self.log.error(_("Error importing %(name): %(msg)") % {"name": name, "msg": str(e) }) self.log.error(_("You should fix dependicies or deactivate load on startup.")) continue diff --git a/module/PluginThread.py b/module/PluginThread.py index 0175bb419..9d16155ef 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -170,7 +170,7 @@ class DownloadThread(PluginThread): self.m.log.warning(_("Download is offline: %s") % pyfile.name) else: pyfile.setStatus("failed") - self.m.log.warning(_("Download failed: %s | %s") % (pyfile.name, msg)) + self.m.log.warning(_("Download failed: %(name)s | %(msg)s") % {"name": pyfile.name, "msg": msg}) pyfile.error = msg pyfile.plugin.req.clean() @@ -199,7 +199,7 @@ class DownloadThread(PluginThread): except Exception, e: pyfile.setStatus("failed") - self.m.log.error(_("Download failed: %s | %s") % (pyfile.name, str(e))) + self.m.log.warning(_("Download failed: %(name)s | %(msg)s") % {"name": pyfile.name, "msg": str(e)}) pyfile.error = str(e) if self.m.core.debug: @@ -279,7 +279,7 @@ class DecrypterThread(PluginThread): self.m.log.warning(_("Download is offline: %s") % self.active.name) else: self.active.setStatus("failed") - self.m.log.warning(_("Decrypting failed: %s | %s") % (self.active.name, msg)) + self.m.log.error(_("Decrypting failed: %(name)s | %(msg)s") % { "name" : self.active.name, "msg":msg }) self.active.error = msg return @@ -288,7 +288,7 @@ class DecrypterThread(PluginThread): except Exception, e: self.active.setStatus("failed") - self.m.log.error(_("Decrypting failed: %s | %s") % (self.active.name, str(e))) + self.m.log.error(_("Decrypting failed: %(name)s | %(msg)s") % { "name" : self.active.name, "msg" :str(e) }) self.active.error = str(e) if self.m.core.debug: diff --git a/module/plugins/Crypter.py b/module/plugins/Crypter.py index c72babb15..1b6647f6b 100644 --- a/module/plugins/Crypter.py +++ b/module/plugins/Crypter.py @@ -52,7 +52,7 @@ class Crypter(Plugin): """ create new packages from self.packages """ for pack in self.packages: - self.log.info(_("Parsed package %s with %s links") % (pack[0], len(pack[1]) ) ) + self.log.info(_("Parsed package %(name)s with %(len)d links") % { "name" : pack[0], "len" : len(pack[1]) } ) self.core.server_methods.add_package(pack[0], pack[1], 1) diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py index e7e1e6797..d3e0d9c40 100644 --- a/module/plugins/hooks/IRCInterface.py +++ b/module/plugins/hooks/IRCInterface.py @@ -72,7 +72,7 @@ class IRCInterface(Thread, Hook): def downloadFinished(self, pyfile): try: if self.getConfig("info_file"): - self.response(_("Download finished: %s @ %s") % (pyfile.name, pyfile.pluginname) ) + self.response(_("Download finished: %(name) @ %(plugin) ") % { "name" : pyfile.name, "plugin": pyfile.pluginname} ) except: pass diff --git a/module/plugins/hooks/XMPPInterface.py b/module/plugins/hooks/XMPPInterface.py index 67a7f1b77..bfd60d271 100644 --- a/module/plugins/hooks/XMPPInterface.py +++ b/module/plugins/hooks/XMPPInterface.py @@ -88,7 +88,7 @@ class XMPPInterface(IRCInterface, JabberClient): def downloadFinished(self, pyfile): try: if self.getConfig("info_file"): - self.announce(_("Download finished: %s @ %s") % (pyfile.name, pyfile.pluginname) ) + self.announce(_("Download finished: %(name) @ %(plugin)") % {"name": pyfile.name, "plugin": pyfile.pluginname} ) except: pass diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index fa5f053de..f9af201cb 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -70,7 +70,7 @@ class RapidshareCom(Hoster): if self.account: info = self.account.getAccountInfo(self.account.getAccountData(self)[0]) - self.log.debug(_("%s: Use Premium Account (%sGB left)") % (self.__name__, info["trafficleft"]/1000/1000)) + self.log.debug(_("%(name)s: Use Premium Account (%(left)sGB left)") % { "name" : self.__name__, "left": info["trafficleft"]/1000/1000 }) if self.api_data["size"] / 1024 > info["trafficleft"]: self.log.info(_("%s: Not enough traffic left" % self.__name__)) self.resetAcount() diff --git a/module/plugins/hoster/UploadedTo.py b/module/plugins/hoster/UploadedTo.py index 2b7f4e7e9..a2165bd5e 100644 --- a/module/plugins/hoster/UploadedTo.py +++ b/module/plugins/hoster/UploadedTo.py @@ -67,7 +67,7 @@ class UploadedTo(Hoster): if self.account: info = self.account.getAccountInfo(self.account.getAccountData(self)[0]) - self.log.debug(_("%s: Use Premium Account (%sGB left)") % (self.__name__, info["trafficleft"]/1024/1024)) + self.log.debug(_("%(name)s: Use Premium Account (%(left)sGB left)") % {"name" :self.__name__, "left" : info["trafficleft"]/1024/1024}) if self.api_data["size"]/1024 > info["trafficleft"]: self.log.info(_("%s: Not enough traffic left" % self.__name__)) self.resetAcount() diff --git a/module/web/ServerThread.py b/module/web/ServerThread.py index c07364243..59f3164f7 100644 --- a/module/web/ServerThread.py +++ b/module/web/ServerThread.py @@ -129,7 +129,7 @@ class WebServer(threading.Thread): command = ['nginx', '-c', join(path, "nginx.conf")] self.p = Popen(command, stderr=PIPE, stdin=PIPE, stdout=Output(out)) - log.info(_("Starting nginx Webserver: %s:%s") % (host, port)) + log.info(_("Starting nginx Webserver: %(host)s:%(port)d") % {"host": host, "port": port}) import run_fcgi run_fcgi.handle("daemonize=false", "method=threaded", "host=127.0.0.1", "port=9295") @@ -166,7 +166,7 @@ class WebServer(threading.Thread): command = ['lighttpd', '-D', '-f', join(path, "lighttpd.conf")] self.p = Popen(command, stderr=PIPE, stdin=PIPE, stdout=Output(out)) - log.info(_("Starting lighttpd Webserver: %s:%s") % (host, port)) + log.info(_("Starting lighttpd Webserver: %(host)s:%(port)d") % {"host": host, "port": port}) import run_fcgi run_fcgi.handle("daemonize=false", "method=threaded", "host=127.0.0.1", "port=9295") @@ -176,7 +176,7 @@ class WebServer(threading.Thread): import run_fcgi run_fcgi.handle("daemonize=false", "method=threaded", "host=127.0.0.1", "port=%s" % str(port)) else: - self.core.log.info(_("Starting django builtin Webserver: %s:%s") % (host, port)) + self.core.log.info(_("Starting django builtin Webserver: %(host)s:%(port)d") % {"host": host, "port": port}) import run_server run_server.handle(host, port) diff --git a/module/web/locale/de/LC_MESSAGES/django.po b/module/web/locale/de/LC_MESSAGES/django.po index a6140b513..b5b669e7a 100644 --- a/module/web/locale/de/LC_MESSAGES/django.po +++ b/module/web/locale/de/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-02-03 15:16+0000\n" -"PO-Revision-Date: 2010-03-24 15:25+0100\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: bauerj <jhnn.br@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" @@ -289,4 +289,3 @@ msgstr "warte %s" #~ msgid "Infos" #~ msgstr "Infos" - diff --git a/module/web/locale/en/LC_MESSAGES/django.po b/module/web/locale/en/LC_MESSAGES/django.po index f4f85013b..d469e69df 100644 --- a/module/web/locale/en/LC_MESSAGES/django.po +++ b/module/web/locale/en/LC_MESSAGES/django.po @@ -3,156 +3,267 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-24 13:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2010-08-27 00:14+0200\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/views.py:110 +#: ServerThread.py:45 +msgid "Database for Webinterface does not exitst, it will not be available." +msgstr "" + +#: ServerThread.py:46 +msgid "Please run: python pyLoadCore.py -s" +msgstr "" + +#: ServerThread.py:47 +msgid "Go through the setup and create a database and add an user to gain access." +msgstr "" + +#: ServerThread.py:88 +msgid "SSL certificates not found." +msgstr "" + +#: ServerThread.py:98 +#, python-format +msgid "Can't use %(server)s, either python-flup or %(server)s is not installed!" +msgstr "" + +#: ServerThread.py:132 +msgid "Starting nginx Webserver: %(host):%(port)" +msgstr "" + +#: ServerThread.py:169 +msgid "Starting lighttpd Webserver: %(host):%(port)" +msgstr "" + +#: ServerThread.py:179 +msgid "Starting django builtin Webserver: %(host):%(port)" +msgstr "" + +#: ajax/views.py:116 #, python-format msgid "waiting %s" msgstr "" -#: pyload/views.py:26 -msgid "" -"Can't connect to pyLoad. Please check your configuration and make sure " -"pyLoad is running." +#: pyload/views.py:32 +msgid "Can't connect to pyLoad. Please check your configuration and make sure pyLoad is running." msgstr "" -#: pyload/views.py:47 +#: pyload/views.py:53 msgid "You don't have permission to view this page." msgstr "" -#: pyload/views.py:86 +#: pyload/views.py:126 msgid "Download directory not found." msgstr "" -#: templates/default/base.html:21 templates/default/base.html.py:217 +#: pyload/views.py:365 +msgid "Error occured when setting the following options:" +msgstr "" + +#: pyload/views.py:369 +msgid "All options were set correctly." +msgstr "" + +#: templates/default/base.html:21 +#: templates/default/base.html.py:284 msgid "Webinterface" msgstr "" -#: templates/default/base.html:33 +#: templates/default/base.html:34 msgid "Please Enter a packagename." msgstr "" -#: templates/default/base.html:85 templates/default/base.html.py:94 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:100 +#: templates/default/base.html.py:109 +#: templates/default/base.html:272 +#: templates/default/base.html.py:273 +#: templates/default/settings.html:106 msgid "on" msgstr "" -#: templates/default/base.html:89 templates/default/base.html.py:98 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:104 +#: templates/default/base.html.py:113 +#: templates/default/base.html:272 +#: templates/default/base.html.py:273 +#: templates/default/settings.html:107 msgid "off" msgstr "" -#: templates/default/base.html:149 +#: templates/default/base.html:163 +#: templates/default/captcha.html:10 +msgid "Please read the text on the captcha." +msgstr "" + +#: templates/default/base.html:168 +msgid "No Captchas to read." +msgstr "" + +#: templates/default/base.html:212 +msgid "Captcha waiting" +msgstr "" + +#: templates/default/base.html:217 msgid "Logout" msgstr "" -#: templates/default/base.html:151 +#: templates/default/base.html:219 msgid "Administrate" msgstr "" -#: templates/default/base.html:157 +#: templates/default/base.html:224 msgid "Please Login!" msgstr "" -#: templates/default/base.html:169 templates/default/collector.html:90 -#: templates/default/downloads.html:8 templates/default/logs.html:9 -#: templates/default/queue.html:80 templates/default/settings.html:9 +#: templates/default/base.html:236 +#: templates/default/collector.html:90 +#: templates/default/downloads.html:8 +#: templates/default/logs.html:11 +#: templates/default/queue.html:80 +#: templates/default/settings.html:49 msgid "Home" msgstr "" -#: templates/default/base.html:172 templates/default/collector.html:93 -#: templates/default/downloads.html:11 templates/default/logs.html:12 -#: templates/default/queue.html:75 templates/default/queue.html.py:76 -#: templates/default/queue.html:83 templates/default/settings.html:12 +#: templates/default/base.html:239 +#: templates/default/collector.html:93 +#: templates/default/downloads.html:11 +#: templates/default/logs.html:14 +#: templates/default/queue.html:75 +#: templates/default/queue.html.py:76 +#: templates/default/queue.html:83 +#: templates/default/settings.html:52 #: templates/default/window.html:29 msgid "Queue" msgstr "" -#: templates/default/base.html:175 templates/default/collector.html:85 -#: templates/default/collector.html:86 templates/default/collector.html:96 -#: templates/default/downloads.html:14 templates/default/logs.html:15 -#: templates/default/queue.html:86 templates/default/settings.html:15 +#: templates/default/base.html:242 +#: templates/default/collector.html:85 +#: templates/default/collector.html:86 +#: templates/default/collector.html:96 +#: templates/default/downloads.html:14 +#: templates/default/logs.html:17 +#: templates/default/queue.html:86 +#: templates/default/settings.html:55 #: templates/default/window.html:31 msgid "Collector" msgstr "" -#: templates/default/base.html:178 templates/default/collector.html:99 -#: templates/default/downloads.html:17 templates/default/downloads.html:28 -#: templates/default/logs.html:18 templates/default/queue.html:89 -#: templates/default/settings.html:18 +#: templates/default/base.html:245 +#: templates/default/collector.html:99 +#: templates/default/downloads.html:17 +#: templates/default/downloads.html:28 +#: templates/default/logs.html:20 +#: templates/default/queue.html:89 +#: templates/default/settings.html:58 msgid "Downloads" msgstr "" -#: templates/default/base.html:181 templates/default/collector.html:102 -#: templates/default/downloads.html:20 templates/default/logs.html:4 -#: templates/default/logs.html.py:5 templates/default/logs.html:21 -#: templates/default/queue.html:92 templates/default/settings.html:21 +#: templates/default/base.html:248 +#: templates/default/collector.html:102 +#: templates/default/downloads.html:20 +#: templates/default/logs.html:4 +#: templates/default/logs.html.py:5 +#: templates/default/logs.html:23 +#: templates/default/queue.html:92 +#: templates/default/settings.html:61 msgid "Logs" msgstr "" -#: templates/default/base.html:184 templates/default/collector.html:105 -#: templates/default/downloads.html:23 templates/default/logs.html:24 -#: templates/default/queue.html:95 templates/default/settings.html:4 -#: templates/default/settings.html.py:5 templates/default/settings.html:24 +#: templates/default/base.html:251 +#: templates/default/collector.html:105 +#: templates/default/downloads.html:23 +#: templates/default/logs.html:26 +#: templates/default/queue.html:95 +#: templates/default/settings.html:5 +#: templates/default/settings.html.py:6 +#: templates/default/settings.html:64 msgid "Config" msgstr "" -#: templates/default/base.html:196 +#: templates/default/base.html:263 msgid "Play" msgstr "" -#: templates/default/base.html:197 +#: templates/default/base.html:264 msgid "Cancel" msgstr "" -#: templates/default/base.html:198 +#: templates/default/base.html:265 msgid "Stop" msgstr "" -#: templates/default/base.html:199 +#: templates/default/base.html:266 msgid "Add" msgstr "" -#: templates/default/base.html:205 +#: templates/default/base.html:272 msgid "Download:" msgstr "" -#: templates/default/base.html:206 +#: templates/default/base.html:273 msgid "Reconnect:" msgstr "" -#: templates/default/base.html:207 +#: templates/default/base.html:274 msgid "Speed:" msgstr "" -#: templates/default/base.html:208 +#: templates/default/base.html:275 msgid "Active:" msgstr "" -#: templates/default/base.html:209 +#: templates/default/base.html:276 msgid "Reload page" msgstr "" -#: templates/default/base.html:237 +#: templates/default/base.html:304 msgid "© 2008-2010 the pyLoad Team" msgstr "" -#: templates/default/base.html:239 +#: templates/default/base.html:306 msgid "Back to top" msgstr "" -#: templates/default/collector.html:114 templates/default/queue.html:104 +#: templates/default/captcha.html:9 +msgid "Captcha reading" +msgstr "" + +#: templates/default/captcha.html:14 +msgid "Captcha" +msgstr "" + +#: templates/default/captcha.html:15 +msgid "The captcha." +msgstr "" + +#: templates/default/captcha.html:21 +msgid "Text" +msgstr "" + +#: templates/default/captcha.html:22 +msgid "Input the text on the captcha." +msgstr "" + +#: templates/default/captcha.html:29 +#: templates/default/settings.html:170 +msgid "Submit" +msgstr "" + +#: templates/default/captcha.html:30 +msgid "Close" +msgstr "" + +#: templates/default/collector.html:114 +#: templates/default/queue.html:104 msgid "Delete Package" msgstr "" @@ -164,15 +275,18 @@ msgstr "" msgid "Push Package to Queue" msgstr "" -#: templates/default/collector.html:131 templates/default/queue.html:119 +#: templates/default/collector.html:131 +#: templates/default/queue.html:119 msgid "Folder:" msgstr "" -#: templates/default/collector.html:133 templates/default/queue.html:121 +#: templates/default/collector.html:133 +#: templates/default/queue.html:121 msgid "Delete Link" msgstr "" -#: templates/default/collector.html:135 templates/default/queue.html:123 +#: templates/default/collector.html:135 +#: templates/default/queue.html:123 msgid "Restart Link" msgstr "" @@ -180,43 +294,44 @@ msgstr "" msgid "It's recommend not to download Files bigger than ~10MB from here." msgstr "" -#: templates/default/home.html:192 +#: templates/default/home.html:205 msgid "Active Downloads" msgstr "" -#: templates/default/home.html:199 templates/default/window.html:11 +#: templates/default/home.html:212 +#: templates/default/window.html:11 msgid "Name" msgstr "" -#: templates/default/home.html:200 +#: templates/default/home.html:213 msgid "Status" msgstr "" -#: templates/default/home.html:201 +#: templates/default/home.html:214 msgid "Information" msgstr "" -#: templates/default/home.html:202 +#: templates/default/home.html:215 msgid "Size" msgstr "" -#: templates/default/home.html:203 +#: templates/default/home.html:216 msgid "Progress" msgstr "" -#: templates/default/login.html:4 +#: templates/default/login.html:5 msgid "Login" msgstr "" -#: templates/default/login.html:15 +#: templates/default/login.html:17 msgid "Username" msgstr "" -#: templates/default/login.html:20 +#: templates/default/login.html:22 msgid "Password" msgstr "" -#: templates/default/login.html:30 +#: templates/default/login.html:32 msgid "Your username and password didn't match. Please try again." msgstr "" @@ -224,23 +339,40 @@ msgstr "" msgid "You were successfully logged out." msgstr "" -#: templates/default/logs.html:34 +#: templates/default/logs.html:33 msgid "Start" msgstr "" -#: templates/default/logs.html:34 +#: templates/default/logs.html:33 msgid "prev" msgstr "" -#: templates/default/logs.html:34 +#: templates/default/logs.html:33 msgid "next" msgstr "" +#: templates/default/logs.html:33 +msgid "End" +msgstr "" + #: templates/default/queue.html:106 msgid "Restart Package" msgstr "" -#: templates/default/window.html:9 templates/default/window.html.py:35 +#: templates/default/settings.html:139 +msgid "Delete? " +msgstr "" + +#: templates/default/settings.html:149 +msgid "New account:" +msgstr "" + +#: templates/default/settings.html:156 +msgid "New password:" +msgstr "" + +#: templates/default/window.html:9 +#: templates/default/window.html.py:35 msgid "Add Package" msgstr "" @@ -275,3 +407,4 @@ msgstr "" #: templates/default/window.html:36 msgid "Reset" msgstr "" + diff --git a/module/web/locale/es/LC_MESSAGES/django.po b/module/web/locale/es/LC_MESSAGES/django.po index f4f85013b..cb9fdb79f 100644 --- a/module/web/locale/es/LC_MESSAGES/django.po +++ b/module/web/locale/es/LC_MESSAGES/django.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-24 13:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -22,9 +21,7 @@ msgid "waiting %s" msgstr "" #: pyload/views.py:26 -msgid "" -"Can't connect to pyLoad. Please check your configuration and make sure " -"pyLoad is running." +msgid "Can't connect to pyLoad. Please check your configuration and make sure pyLoad is running." msgstr "" #: pyload/views.py:47 @@ -35,7 +32,8 @@ msgstr "" msgid "Download directory not found." msgstr "" -#: templates/default/base.html:21 templates/default/base.html.py:217 +#: templates/default/base.html:21 +#: templates/default/base.html.py:217 msgid "Webinterface" msgstr "" @@ -43,13 +41,17 @@ msgstr "" msgid "Please Enter a packagename." msgstr "" -#: templates/default/base.html:85 templates/default/base.html.py:94 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:85 +#: templates/default/base.html.py:94 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "on" msgstr "" -#: templates/default/base.html:89 templates/default/base.html.py:98 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:89 +#: templates/default/base.html.py:98 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "off" msgstr "" @@ -65,46 +67,68 @@ msgstr "" msgid "Please Login!" msgstr "" -#: templates/default/base.html:169 templates/default/collector.html:90 -#: templates/default/downloads.html:8 templates/default/logs.html:9 -#: templates/default/queue.html:80 templates/default/settings.html:9 +#: templates/default/base.html:169 +#: templates/default/collector.html:90 +#: templates/default/downloads.html:8 +#: templates/default/logs.html:9 +#: templates/default/queue.html:80 +#: templates/default/settings.html:9 msgid "Home" msgstr "" -#: templates/default/base.html:172 templates/default/collector.html:93 -#: templates/default/downloads.html:11 templates/default/logs.html:12 -#: templates/default/queue.html:75 templates/default/queue.html.py:76 -#: templates/default/queue.html:83 templates/default/settings.html:12 +#: templates/default/base.html:172 +#: templates/default/collector.html:93 +#: templates/default/downloads.html:11 +#: templates/default/logs.html:12 +#: templates/default/queue.html:75 +#: templates/default/queue.html.py:76 +#: templates/default/queue.html:83 +#: templates/default/settings.html:12 #: templates/default/window.html:29 msgid "Queue" msgstr "" -#: templates/default/base.html:175 templates/default/collector.html:85 -#: templates/default/collector.html:86 templates/default/collector.html:96 -#: templates/default/downloads.html:14 templates/default/logs.html:15 -#: templates/default/queue.html:86 templates/default/settings.html:15 +#: templates/default/base.html:175 +#: templates/default/collector.html:85 +#: templates/default/collector.html:86 +#: templates/default/collector.html:96 +#: templates/default/downloads.html:14 +#: templates/default/logs.html:15 +#: templates/default/queue.html:86 +#: templates/default/settings.html:15 #: templates/default/window.html:31 msgid "Collector" msgstr "" -#: templates/default/base.html:178 templates/default/collector.html:99 -#: templates/default/downloads.html:17 templates/default/downloads.html:28 -#: templates/default/logs.html:18 templates/default/queue.html:89 +#: templates/default/base.html:178 +#: templates/default/collector.html:99 +#: templates/default/downloads.html:17 +#: templates/default/downloads.html:28 +#: templates/default/logs.html:18 +#: templates/default/queue.html:89 #: templates/default/settings.html:18 msgid "Downloads" msgstr "" -#: templates/default/base.html:181 templates/default/collector.html:102 -#: templates/default/downloads.html:20 templates/default/logs.html:4 -#: templates/default/logs.html.py:5 templates/default/logs.html:21 -#: templates/default/queue.html:92 templates/default/settings.html:21 +#: templates/default/base.html:181 +#: templates/default/collector.html:102 +#: templates/default/downloads.html:20 +#: templates/default/logs.html:4 +#: templates/default/logs.html.py:5 +#: templates/default/logs.html:21 +#: templates/default/queue.html:92 +#: templates/default/settings.html:21 msgid "Logs" msgstr "" -#: templates/default/base.html:184 templates/default/collector.html:105 -#: templates/default/downloads.html:23 templates/default/logs.html:24 -#: templates/default/queue.html:95 templates/default/settings.html:4 -#: templates/default/settings.html.py:5 templates/default/settings.html:24 +#: templates/default/base.html:184 +#: templates/default/collector.html:105 +#: templates/default/downloads.html:23 +#: templates/default/logs.html:24 +#: templates/default/queue.html:95 +#: templates/default/settings.html:4 +#: templates/default/settings.html.py:5 +#: templates/default/settings.html:24 msgid "Config" msgstr "" @@ -152,7 +176,8 @@ msgstr "" msgid "Back to top" msgstr "" -#: templates/default/collector.html:114 templates/default/queue.html:104 +#: templates/default/collector.html:114 +#: templates/default/queue.html:104 msgid "Delete Package" msgstr "" @@ -164,15 +189,18 @@ msgstr "" msgid "Push Package to Queue" msgstr "" -#: templates/default/collector.html:131 templates/default/queue.html:119 +#: templates/default/collector.html:131 +#: templates/default/queue.html:119 msgid "Folder:" msgstr "" -#: templates/default/collector.html:133 templates/default/queue.html:121 +#: templates/default/collector.html:133 +#: templates/default/queue.html:121 msgid "Delete Link" msgstr "" -#: templates/default/collector.html:135 templates/default/queue.html:123 +#: templates/default/collector.html:135 +#: templates/default/queue.html:123 msgid "Restart Link" msgstr "" @@ -184,7 +212,8 @@ msgstr "" msgid "Active Downloads" msgstr "" -#: templates/default/home.html:199 templates/default/window.html:11 +#: templates/default/home.html:199 +#: templates/default/window.html:11 msgid "Name" msgstr "" @@ -240,7 +269,8 @@ msgstr "" msgid "Restart Package" msgstr "" -#: templates/default/window.html:9 templates/default/window.html.py:35 +#: templates/default/window.html:9 +#: templates/default/window.html.py:35 msgid "Add Package" msgstr "" @@ -275,3 +305,4 @@ msgstr "" #: templates/default/window.html:36 msgid "Reset" msgstr "" + diff --git a/module/web/locale/fi/LC_MESSAGES/django.po b/module/web/locale/fi/LC_MESSAGES/django.po index f4f85013b..cb9fdb79f 100644 --- a/module/web/locale/fi/LC_MESSAGES/django.po +++ b/module/web/locale/fi/LC_MESSAGES/django.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-24 13:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -22,9 +21,7 @@ msgid "waiting %s" msgstr "" #: pyload/views.py:26 -msgid "" -"Can't connect to pyLoad. Please check your configuration and make sure " -"pyLoad is running." +msgid "Can't connect to pyLoad. Please check your configuration and make sure pyLoad is running." msgstr "" #: pyload/views.py:47 @@ -35,7 +32,8 @@ msgstr "" msgid "Download directory not found." msgstr "" -#: templates/default/base.html:21 templates/default/base.html.py:217 +#: templates/default/base.html:21 +#: templates/default/base.html.py:217 msgid "Webinterface" msgstr "" @@ -43,13 +41,17 @@ msgstr "" msgid "Please Enter a packagename." msgstr "" -#: templates/default/base.html:85 templates/default/base.html.py:94 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:85 +#: templates/default/base.html.py:94 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "on" msgstr "" -#: templates/default/base.html:89 templates/default/base.html.py:98 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:89 +#: templates/default/base.html.py:98 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "off" msgstr "" @@ -65,46 +67,68 @@ msgstr "" msgid "Please Login!" msgstr "" -#: templates/default/base.html:169 templates/default/collector.html:90 -#: templates/default/downloads.html:8 templates/default/logs.html:9 -#: templates/default/queue.html:80 templates/default/settings.html:9 +#: templates/default/base.html:169 +#: templates/default/collector.html:90 +#: templates/default/downloads.html:8 +#: templates/default/logs.html:9 +#: templates/default/queue.html:80 +#: templates/default/settings.html:9 msgid "Home" msgstr "" -#: templates/default/base.html:172 templates/default/collector.html:93 -#: templates/default/downloads.html:11 templates/default/logs.html:12 -#: templates/default/queue.html:75 templates/default/queue.html.py:76 -#: templates/default/queue.html:83 templates/default/settings.html:12 +#: templates/default/base.html:172 +#: templates/default/collector.html:93 +#: templates/default/downloads.html:11 +#: templates/default/logs.html:12 +#: templates/default/queue.html:75 +#: templates/default/queue.html.py:76 +#: templates/default/queue.html:83 +#: templates/default/settings.html:12 #: templates/default/window.html:29 msgid "Queue" msgstr "" -#: templates/default/base.html:175 templates/default/collector.html:85 -#: templates/default/collector.html:86 templates/default/collector.html:96 -#: templates/default/downloads.html:14 templates/default/logs.html:15 -#: templates/default/queue.html:86 templates/default/settings.html:15 +#: templates/default/base.html:175 +#: templates/default/collector.html:85 +#: templates/default/collector.html:86 +#: templates/default/collector.html:96 +#: templates/default/downloads.html:14 +#: templates/default/logs.html:15 +#: templates/default/queue.html:86 +#: templates/default/settings.html:15 #: templates/default/window.html:31 msgid "Collector" msgstr "" -#: templates/default/base.html:178 templates/default/collector.html:99 -#: templates/default/downloads.html:17 templates/default/downloads.html:28 -#: templates/default/logs.html:18 templates/default/queue.html:89 +#: templates/default/base.html:178 +#: templates/default/collector.html:99 +#: templates/default/downloads.html:17 +#: templates/default/downloads.html:28 +#: templates/default/logs.html:18 +#: templates/default/queue.html:89 #: templates/default/settings.html:18 msgid "Downloads" msgstr "" -#: templates/default/base.html:181 templates/default/collector.html:102 -#: templates/default/downloads.html:20 templates/default/logs.html:4 -#: templates/default/logs.html.py:5 templates/default/logs.html:21 -#: templates/default/queue.html:92 templates/default/settings.html:21 +#: templates/default/base.html:181 +#: templates/default/collector.html:102 +#: templates/default/downloads.html:20 +#: templates/default/logs.html:4 +#: templates/default/logs.html.py:5 +#: templates/default/logs.html:21 +#: templates/default/queue.html:92 +#: templates/default/settings.html:21 msgid "Logs" msgstr "" -#: templates/default/base.html:184 templates/default/collector.html:105 -#: templates/default/downloads.html:23 templates/default/logs.html:24 -#: templates/default/queue.html:95 templates/default/settings.html:4 -#: templates/default/settings.html.py:5 templates/default/settings.html:24 +#: templates/default/base.html:184 +#: templates/default/collector.html:105 +#: templates/default/downloads.html:23 +#: templates/default/logs.html:24 +#: templates/default/queue.html:95 +#: templates/default/settings.html:4 +#: templates/default/settings.html.py:5 +#: templates/default/settings.html:24 msgid "Config" msgstr "" @@ -152,7 +176,8 @@ msgstr "" msgid "Back to top" msgstr "" -#: templates/default/collector.html:114 templates/default/queue.html:104 +#: templates/default/collector.html:114 +#: templates/default/queue.html:104 msgid "Delete Package" msgstr "" @@ -164,15 +189,18 @@ msgstr "" msgid "Push Package to Queue" msgstr "" -#: templates/default/collector.html:131 templates/default/queue.html:119 +#: templates/default/collector.html:131 +#: templates/default/queue.html:119 msgid "Folder:" msgstr "" -#: templates/default/collector.html:133 templates/default/queue.html:121 +#: templates/default/collector.html:133 +#: templates/default/queue.html:121 msgid "Delete Link" msgstr "" -#: templates/default/collector.html:135 templates/default/queue.html:123 +#: templates/default/collector.html:135 +#: templates/default/queue.html:123 msgid "Restart Link" msgstr "" @@ -184,7 +212,8 @@ msgstr "" msgid "Active Downloads" msgstr "" -#: templates/default/home.html:199 templates/default/window.html:11 +#: templates/default/home.html:199 +#: templates/default/window.html:11 msgid "Name" msgstr "" @@ -240,7 +269,8 @@ msgstr "" msgid "Restart Package" msgstr "" -#: templates/default/window.html:9 templates/default/window.html.py:35 +#: templates/default/window.html:9 +#: templates/default/window.html.py:35 msgid "Add Package" msgstr "" @@ -275,3 +305,4 @@ msgstr "" #: templates/default/window.html:36 msgid "Reset" msgstr "" + diff --git a/module/web/locale/fr/LC_MESSAGES/django.po b/module/web/locale/fr/LC_MESSAGES/django.po index f4f85013b..cb9fdb79f 100644 --- a/module/web/locale/fr/LC_MESSAGES/django.po +++ b/module/web/locale/fr/LC_MESSAGES/django.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-24 13:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -22,9 +21,7 @@ msgid "waiting %s" msgstr "" #: pyload/views.py:26 -msgid "" -"Can't connect to pyLoad. Please check your configuration and make sure " -"pyLoad is running." +msgid "Can't connect to pyLoad. Please check your configuration and make sure pyLoad is running." msgstr "" #: pyload/views.py:47 @@ -35,7 +32,8 @@ msgstr "" msgid "Download directory not found." msgstr "" -#: templates/default/base.html:21 templates/default/base.html.py:217 +#: templates/default/base.html:21 +#: templates/default/base.html.py:217 msgid "Webinterface" msgstr "" @@ -43,13 +41,17 @@ msgstr "" msgid "Please Enter a packagename." msgstr "" -#: templates/default/base.html:85 templates/default/base.html.py:94 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:85 +#: templates/default/base.html.py:94 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "on" msgstr "" -#: templates/default/base.html:89 templates/default/base.html.py:98 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:89 +#: templates/default/base.html.py:98 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "off" msgstr "" @@ -65,46 +67,68 @@ msgstr "" msgid "Please Login!" msgstr "" -#: templates/default/base.html:169 templates/default/collector.html:90 -#: templates/default/downloads.html:8 templates/default/logs.html:9 -#: templates/default/queue.html:80 templates/default/settings.html:9 +#: templates/default/base.html:169 +#: templates/default/collector.html:90 +#: templates/default/downloads.html:8 +#: templates/default/logs.html:9 +#: templates/default/queue.html:80 +#: templates/default/settings.html:9 msgid "Home" msgstr "" -#: templates/default/base.html:172 templates/default/collector.html:93 -#: templates/default/downloads.html:11 templates/default/logs.html:12 -#: templates/default/queue.html:75 templates/default/queue.html.py:76 -#: templates/default/queue.html:83 templates/default/settings.html:12 +#: templates/default/base.html:172 +#: templates/default/collector.html:93 +#: templates/default/downloads.html:11 +#: templates/default/logs.html:12 +#: templates/default/queue.html:75 +#: templates/default/queue.html.py:76 +#: templates/default/queue.html:83 +#: templates/default/settings.html:12 #: templates/default/window.html:29 msgid "Queue" msgstr "" -#: templates/default/base.html:175 templates/default/collector.html:85 -#: templates/default/collector.html:86 templates/default/collector.html:96 -#: templates/default/downloads.html:14 templates/default/logs.html:15 -#: templates/default/queue.html:86 templates/default/settings.html:15 +#: templates/default/base.html:175 +#: templates/default/collector.html:85 +#: templates/default/collector.html:86 +#: templates/default/collector.html:96 +#: templates/default/downloads.html:14 +#: templates/default/logs.html:15 +#: templates/default/queue.html:86 +#: templates/default/settings.html:15 #: templates/default/window.html:31 msgid "Collector" msgstr "" -#: templates/default/base.html:178 templates/default/collector.html:99 -#: templates/default/downloads.html:17 templates/default/downloads.html:28 -#: templates/default/logs.html:18 templates/default/queue.html:89 +#: templates/default/base.html:178 +#: templates/default/collector.html:99 +#: templates/default/downloads.html:17 +#: templates/default/downloads.html:28 +#: templates/default/logs.html:18 +#: templates/default/queue.html:89 #: templates/default/settings.html:18 msgid "Downloads" msgstr "" -#: templates/default/base.html:181 templates/default/collector.html:102 -#: templates/default/downloads.html:20 templates/default/logs.html:4 -#: templates/default/logs.html.py:5 templates/default/logs.html:21 -#: templates/default/queue.html:92 templates/default/settings.html:21 +#: templates/default/base.html:181 +#: templates/default/collector.html:102 +#: templates/default/downloads.html:20 +#: templates/default/logs.html:4 +#: templates/default/logs.html.py:5 +#: templates/default/logs.html:21 +#: templates/default/queue.html:92 +#: templates/default/settings.html:21 msgid "Logs" msgstr "" -#: templates/default/base.html:184 templates/default/collector.html:105 -#: templates/default/downloads.html:23 templates/default/logs.html:24 -#: templates/default/queue.html:95 templates/default/settings.html:4 -#: templates/default/settings.html.py:5 templates/default/settings.html:24 +#: templates/default/base.html:184 +#: templates/default/collector.html:105 +#: templates/default/downloads.html:23 +#: templates/default/logs.html:24 +#: templates/default/queue.html:95 +#: templates/default/settings.html:4 +#: templates/default/settings.html.py:5 +#: templates/default/settings.html:24 msgid "Config" msgstr "" @@ -152,7 +176,8 @@ msgstr "" msgid "Back to top" msgstr "" -#: templates/default/collector.html:114 templates/default/queue.html:104 +#: templates/default/collector.html:114 +#: templates/default/queue.html:104 msgid "Delete Package" msgstr "" @@ -164,15 +189,18 @@ msgstr "" msgid "Push Package to Queue" msgstr "" -#: templates/default/collector.html:131 templates/default/queue.html:119 +#: templates/default/collector.html:131 +#: templates/default/queue.html:119 msgid "Folder:" msgstr "" -#: templates/default/collector.html:133 templates/default/queue.html:121 +#: templates/default/collector.html:133 +#: templates/default/queue.html:121 msgid "Delete Link" msgstr "" -#: templates/default/collector.html:135 templates/default/queue.html:123 +#: templates/default/collector.html:135 +#: templates/default/queue.html:123 msgid "Restart Link" msgstr "" @@ -184,7 +212,8 @@ msgstr "" msgid "Active Downloads" msgstr "" -#: templates/default/home.html:199 templates/default/window.html:11 +#: templates/default/home.html:199 +#: templates/default/window.html:11 msgid "Name" msgstr "" @@ -240,7 +269,8 @@ msgstr "" msgid "Restart Package" msgstr "" -#: templates/default/window.html:9 templates/default/window.html.py:35 +#: templates/default/window.html:9 +#: templates/default/window.html.py:35 msgid "Add Package" msgstr "" @@ -275,3 +305,4 @@ msgstr "" #: templates/default/window.html:36 msgid "Reset" msgstr "" + diff --git a/module/web/locale/it/LC_MESSAGES/django.po b/module/web/locale/it/LC_MESSAGES/django.po index f4f85013b..cb9fdb79f 100644 --- a/module/web/locale/it/LC_MESSAGES/django.po +++ b/module/web/locale/it/LC_MESSAGES/django.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-24 13:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -22,9 +21,7 @@ msgid "waiting %s" msgstr "" #: pyload/views.py:26 -msgid "" -"Can't connect to pyLoad. Please check your configuration and make sure " -"pyLoad is running." +msgid "Can't connect to pyLoad. Please check your configuration and make sure pyLoad is running." msgstr "" #: pyload/views.py:47 @@ -35,7 +32,8 @@ msgstr "" msgid "Download directory not found." msgstr "" -#: templates/default/base.html:21 templates/default/base.html.py:217 +#: templates/default/base.html:21 +#: templates/default/base.html.py:217 msgid "Webinterface" msgstr "" @@ -43,13 +41,17 @@ msgstr "" msgid "Please Enter a packagename." msgstr "" -#: templates/default/base.html:85 templates/default/base.html.py:94 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:85 +#: templates/default/base.html.py:94 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "on" msgstr "" -#: templates/default/base.html:89 templates/default/base.html.py:98 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:89 +#: templates/default/base.html.py:98 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "off" msgstr "" @@ -65,46 +67,68 @@ msgstr "" msgid "Please Login!" msgstr "" -#: templates/default/base.html:169 templates/default/collector.html:90 -#: templates/default/downloads.html:8 templates/default/logs.html:9 -#: templates/default/queue.html:80 templates/default/settings.html:9 +#: templates/default/base.html:169 +#: templates/default/collector.html:90 +#: templates/default/downloads.html:8 +#: templates/default/logs.html:9 +#: templates/default/queue.html:80 +#: templates/default/settings.html:9 msgid "Home" msgstr "" -#: templates/default/base.html:172 templates/default/collector.html:93 -#: templates/default/downloads.html:11 templates/default/logs.html:12 -#: templates/default/queue.html:75 templates/default/queue.html.py:76 -#: templates/default/queue.html:83 templates/default/settings.html:12 +#: templates/default/base.html:172 +#: templates/default/collector.html:93 +#: templates/default/downloads.html:11 +#: templates/default/logs.html:12 +#: templates/default/queue.html:75 +#: templates/default/queue.html.py:76 +#: templates/default/queue.html:83 +#: templates/default/settings.html:12 #: templates/default/window.html:29 msgid "Queue" msgstr "" -#: templates/default/base.html:175 templates/default/collector.html:85 -#: templates/default/collector.html:86 templates/default/collector.html:96 -#: templates/default/downloads.html:14 templates/default/logs.html:15 -#: templates/default/queue.html:86 templates/default/settings.html:15 +#: templates/default/base.html:175 +#: templates/default/collector.html:85 +#: templates/default/collector.html:86 +#: templates/default/collector.html:96 +#: templates/default/downloads.html:14 +#: templates/default/logs.html:15 +#: templates/default/queue.html:86 +#: templates/default/settings.html:15 #: templates/default/window.html:31 msgid "Collector" msgstr "" -#: templates/default/base.html:178 templates/default/collector.html:99 -#: templates/default/downloads.html:17 templates/default/downloads.html:28 -#: templates/default/logs.html:18 templates/default/queue.html:89 +#: templates/default/base.html:178 +#: templates/default/collector.html:99 +#: templates/default/downloads.html:17 +#: templates/default/downloads.html:28 +#: templates/default/logs.html:18 +#: templates/default/queue.html:89 #: templates/default/settings.html:18 msgid "Downloads" msgstr "" -#: templates/default/base.html:181 templates/default/collector.html:102 -#: templates/default/downloads.html:20 templates/default/logs.html:4 -#: templates/default/logs.html.py:5 templates/default/logs.html:21 -#: templates/default/queue.html:92 templates/default/settings.html:21 +#: templates/default/base.html:181 +#: templates/default/collector.html:102 +#: templates/default/downloads.html:20 +#: templates/default/logs.html:4 +#: templates/default/logs.html.py:5 +#: templates/default/logs.html:21 +#: templates/default/queue.html:92 +#: templates/default/settings.html:21 msgid "Logs" msgstr "" -#: templates/default/base.html:184 templates/default/collector.html:105 -#: templates/default/downloads.html:23 templates/default/logs.html:24 -#: templates/default/queue.html:95 templates/default/settings.html:4 -#: templates/default/settings.html.py:5 templates/default/settings.html:24 +#: templates/default/base.html:184 +#: templates/default/collector.html:105 +#: templates/default/downloads.html:23 +#: templates/default/logs.html:24 +#: templates/default/queue.html:95 +#: templates/default/settings.html:4 +#: templates/default/settings.html.py:5 +#: templates/default/settings.html:24 msgid "Config" msgstr "" @@ -152,7 +176,8 @@ msgstr "" msgid "Back to top" msgstr "" -#: templates/default/collector.html:114 templates/default/queue.html:104 +#: templates/default/collector.html:114 +#: templates/default/queue.html:104 msgid "Delete Package" msgstr "" @@ -164,15 +189,18 @@ msgstr "" msgid "Push Package to Queue" msgstr "" -#: templates/default/collector.html:131 templates/default/queue.html:119 +#: templates/default/collector.html:131 +#: templates/default/queue.html:119 msgid "Folder:" msgstr "" -#: templates/default/collector.html:133 templates/default/queue.html:121 +#: templates/default/collector.html:133 +#: templates/default/queue.html:121 msgid "Delete Link" msgstr "" -#: templates/default/collector.html:135 templates/default/queue.html:123 +#: templates/default/collector.html:135 +#: templates/default/queue.html:123 msgid "Restart Link" msgstr "" @@ -184,7 +212,8 @@ msgstr "" msgid "Active Downloads" msgstr "" -#: templates/default/home.html:199 templates/default/window.html:11 +#: templates/default/home.html:199 +#: templates/default/window.html:11 msgid "Name" msgstr "" @@ -240,7 +269,8 @@ msgstr "" msgid "Restart Package" msgstr "" -#: templates/default/window.html:9 templates/default/window.html.py:35 +#: templates/default/window.html:9 +#: templates/default/window.html.py:35 msgid "Add Package" msgstr "" @@ -275,3 +305,4 @@ msgstr "" #: templates/default/window.html:36 msgid "Reset" msgstr "" + diff --git a/module/web/locale/nl/LC_MESSAGES/django.po b/module/web/locale/nl/LC_MESSAGES/django.po index 9f6541fb9..8f821bff8 100755 --- a/module/web/locale/nl/LC_MESSAGES/django.po +++ b/module/web/locale/nl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-02-03 15:16+0000\n" -"PO-Revision-Date: 2010-03-24 15:27+0100\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: bauerj <jhnn.br@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" @@ -290,4 +290,3 @@ msgstr "" #~ msgid "Infos" #~ msgstr "Informatie" - diff --git a/module/web/locale/pl/LC_MESSAGES/django.po b/module/web/locale/pl/LC_MESSAGES/django.po index 64f29d66b..695a02217 100755 --- a/module/web/locale/pl/LC_MESSAGES/django.po +++ b/module/web/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-02-03 15:16+0000\n" -"PO-Revision-Date: 2010-03-24 15:27+0100\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: bauerj <jhnn.br@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" @@ -290,4 +290,3 @@ msgstr "" #~ msgid "Infos" #~ msgstr "Informacje" - diff --git a/module/web/locale/ro/LC_MESSAGES/django.po b/module/web/locale/ro/LC_MESSAGES/django.po index f4f85013b..cb9fdb79f 100644 --- a/module/web/locale/ro/LC_MESSAGES/django.po +++ b/module/web/locale/ro/LC_MESSAGES/django.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-24 13:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -22,9 +21,7 @@ msgid "waiting %s" msgstr "" #: pyload/views.py:26 -msgid "" -"Can't connect to pyLoad. Please check your configuration and make sure " -"pyLoad is running." +msgid "Can't connect to pyLoad. Please check your configuration and make sure pyLoad is running." msgstr "" #: pyload/views.py:47 @@ -35,7 +32,8 @@ msgstr "" msgid "Download directory not found." msgstr "" -#: templates/default/base.html:21 templates/default/base.html.py:217 +#: templates/default/base.html:21 +#: templates/default/base.html.py:217 msgid "Webinterface" msgstr "" @@ -43,13 +41,17 @@ msgstr "" msgid "Please Enter a packagename." msgstr "" -#: templates/default/base.html:85 templates/default/base.html.py:94 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:85 +#: templates/default/base.html.py:94 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "on" msgstr "" -#: templates/default/base.html:89 templates/default/base.html.py:98 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:89 +#: templates/default/base.html.py:98 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "off" msgstr "" @@ -65,46 +67,68 @@ msgstr "" msgid "Please Login!" msgstr "" -#: templates/default/base.html:169 templates/default/collector.html:90 -#: templates/default/downloads.html:8 templates/default/logs.html:9 -#: templates/default/queue.html:80 templates/default/settings.html:9 +#: templates/default/base.html:169 +#: templates/default/collector.html:90 +#: templates/default/downloads.html:8 +#: templates/default/logs.html:9 +#: templates/default/queue.html:80 +#: templates/default/settings.html:9 msgid "Home" msgstr "" -#: templates/default/base.html:172 templates/default/collector.html:93 -#: templates/default/downloads.html:11 templates/default/logs.html:12 -#: templates/default/queue.html:75 templates/default/queue.html.py:76 -#: templates/default/queue.html:83 templates/default/settings.html:12 +#: templates/default/base.html:172 +#: templates/default/collector.html:93 +#: templates/default/downloads.html:11 +#: templates/default/logs.html:12 +#: templates/default/queue.html:75 +#: templates/default/queue.html.py:76 +#: templates/default/queue.html:83 +#: templates/default/settings.html:12 #: templates/default/window.html:29 msgid "Queue" msgstr "" -#: templates/default/base.html:175 templates/default/collector.html:85 -#: templates/default/collector.html:86 templates/default/collector.html:96 -#: templates/default/downloads.html:14 templates/default/logs.html:15 -#: templates/default/queue.html:86 templates/default/settings.html:15 +#: templates/default/base.html:175 +#: templates/default/collector.html:85 +#: templates/default/collector.html:86 +#: templates/default/collector.html:96 +#: templates/default/downloads.html:14 +#: templates/default/logs.html:15 +#: templates/default/queue.html:86 +#: templates/default/settings.html:15 #: templates/default/window.html:31 msgid "Collector" msgstr "" -#: templates/default/base.html:178 templates/default/collector.html:99 -#: templates/default/downloads.html:17 templates/default/downloads.html:28 -#: templates/default/logs.html:18 templates/default/queue.html:89 +#: templates/default/base.html:178 +#: templates/default/collector.html:99 +#: templates/default/downloads.html:17 +#: templates/default/downloads.html:28 +#: templates/default/logs.html:18 +#: templates/default/queue.html:89 #: templates/default/settings.html:18 msgid "Downloads" msgstr "" -#: templates/default/base.html:181 templates/default/collector.html:102 -#: templates/default/downloads.html:20 templates/default/logs.html:4 -#: templates/default/logs.html.py:5 templates/default/logs.html:21 -#: templates/default/queue.html:92 templates/default/settings.html:21 +#: templates/default/base.html:181 +#: templates/default/collector.html:102 +#: templates/default/downloads.html:20 +#: templates/default/logs.html:4 +#: templates/default/logs.html.py:5 +#: templates/default/logs.html:21 +#: templates/default/queue.html:92 +#: templates/default/settings.html:21 msgid "Logs" msgstr "" -#: templates/default/base.html:184 templates/default/collector.html:105 -#: templates/default/downloads.html:23 templates/default/logs.html:24 -#: templates/default/queue.html:95 templates/default/settings.html:4 -#: templates/default/settings.html.py:5 templates/default/settings.html:24 +#: templates/default/base.html:184 +#: templates/default/collector.html:105 +#: templates/default/downloads.html:23 +#: templates/default/logs.html:24 +#: templates/default/queue.html:95 +#: templates/default/settings.html:4 +#: templates/default/settings.html.py:5 +#: templates/default/settings.html:24 msgid "Config" msgstr "" @@ -152,7 +176,8 @@ msgstr "" msgid "Back to top" msgstr "" -#: templates/default/collector.html:114 templates/default/queue.html:104 +#: templates/default/collector.html:114 +#: templates/default/queue.html:104 msgid "Delete Package" msgstr "" @@ -164,15 +189,18 @@ msgstr "" msgid "Push Package to Queue" msgstr "" -#: templates/default/collector.html:131 templates/default/queue.html:119 +#: templates/default/collector.html:131 +#: templates/default/queue.html:119 msgid "Folder:" msgstr "" -#: templates/default/collector.html:133 templates/default/queue.html:121 +#: templates/default/collector.html:133 +#: templates/default/queue.html:121 msgid "Delete Link" msgstr "" -#: templates/default/collector.html:135 templates/default/queue.html:123 +#: templates/default/collector.html:135 +#: templates/default/queue.html:123 msgid "Restart Link" msgstr "" @@ -184,7 +212,8 @@ msgstr "" msgid "Active Downloads" msgstr "" -#: templates/default/home.html:199 templates/default/window.html:11 +#: templates/default/home.html:199 +#: templates/default/window.html:11 msgid "Name" msgstr "" @@ -240,7 +269,8 @@ msgstr "" msgid "Restart Package" msgstr "" -#: templates/default/window.html:9 templates/default/window.html.py:35 +#: templates/default/window.html:9 +#: templates/default/window.html.py:35 msgid "Add Package" msgstr "" @@ -275,3 +305,4 @@ msgstr "" #: templates/default/window.html:36 msgid "Reset" msgstr "" + diff --git a/module/web/locale/ru/LC_MESSAGES/django.po b/module/web/locale/ru/LC_MESSAGES/django.po index f4f85013b..cb9fdb79f 100644 --- a/module/web/locale/ru/LC_MESSAGES/django.po +++ b/module/web/locale/ru/LC_MESSAGES/django.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-24 13:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -22,9 +21,7 @@ msgid "waiting %s" msgstr "" #: pyload/views.py:26 -msgid "" -"Can't connect to pyLoad. Please check your configuration and make sure " -"pyLoad is running." +msgid "Can't connect to pyLoad. Please check your configuration and make sure pyLoad is running." msgstr "" #: pyload/views.py:47 @@ -35,7 +32,8 @@ msgstr "" msgid "Download directory not found." msgstr "" -#: templates/default/base.html:21 templates/default/base.html.py:217 +#: templates/default/base.html:21 +#: templates/default/base.html.py:217 msgid "Webinterface" msgstr "" @@ -43,13 +41,17 @@ msgstr "" msgid "Please Enter a packagename." msgstr "" -#: templates/default/base.html:85 templates/default/base.html.py:94 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:85 +#: templates/default/base.html.py:94 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "on" msgstr "" -#: templates/default/base.html:89 templates/default/base.html.py:98 -#: templates/default/base.html:205 templates/default/base.html.py:206 +#: templates/default/base.html:89 +#: templates/default/base.html.py:98 +#: templates/default/base.html:205 +#: templates/default/base.html.py:206 msgid "off" msgstr "" @@ -65,46 +67,68 @@ msgstr "" msgid "Please Login!" msgstr "" -#: templates/default/base.html:169 templates/default/collector.html:90 -#: templates/default/downloads.html:8 templates/default/logs.html:9 -#: templates/default/queue.html:80 templates/default/settings.html:9 +#: templates/default/base.html:169 +#: templates/default/collector.html:90 +#: templates/default/downloads.html:8 +#: templates/default/logs.html:9 +#: templates/default/queue.html:80 +#: templates/default/settings.html:9 msgid "Home" msgstr "" -#: templates/default/base.html:172 templates/default/collector.html:93 -#: templates/default/downloads.html:11 templates/default/logs.html:12 -#: templates/default/queue.html:75 templates/default/queue.html.py:76 -#: templates/default/queue.html:83 templates/default/settings.html:12 +#: templates/default/base.html:172 +#: templates/default/collector.html:93 +#: templates/default/downloads.html:11 +#: templates/default/logs.html:12 +#: templates/default/queue.html:75 +#: templates/default/queue.html.py:76 +#: templates/default/queue.html:83 +#: templates/default/settings.html:12 #: templates/default/window.html:29 msgid "Queue" msgstr "" -#: templates/default/base.html:175 templates/default/collector.html:85 -#: templates/default/collector.html:86 templates/default/collector.html:96 -#: templates/default/downloads.html:14 templates/default/logs.html:15 -#: templates/default/queue.html:86 templates/default/settings.html:15 +#: templates/default/base.html:175 +#: templates/default/collector.html:85 +#: templates/default/collector.html:86 +#: templates/default/collector.html:96 +#: templates/default/downloads.html:14 +#: templates/default/logs.html:15 +#: templates/default/queue.html:86 +#: templates/default/settings.html:15 #: templates/default/window.html:31 msgid "Collector" msgstr "" -#: templates/default/base.html:178 templates/default/collector.html:99 -#: templates/default/downloads.html:17 templates/default/downloads.html:28 -#: templates/default/logs.html:18 templates/default/queue.html:89 +#: templates/default/base.html:178 +#: templates/default/collector.html:99 +#: templates/default/downloads.html:17 +#: templates/default/downloads.html:28 +#: templates/default/logs.html:18 +#: templates/default/queue.html:89 #: templates/default/settings.html:18 msgid "Downloads" msgstr "" -#: templates/default/base.html:181 templates/default/collector.html:102 -#: templates/default/downloads.html:20 templates/default/logs.html:4 -#: templates/default/logs.html.py:5 templates/default/logs.html:21 -#: templates/default/queue.html:92 templates/default/settings.html:21 +#: templates/default/base.html:181 +#: templates/default/collector.html:102 +#: templates/default/downloads.html:20 +#: templates/default/logs.html:4 +#: templates/default/logs.html.py:5 +#: templates/default/logs.html:21 +#: templates/default/queue.html:92 +#: templates/default/settings.html:21 msgid "Logs" msgstr "" -#: templates/default/base.html:184 templates/default/collector.html:105 -#: templates/default/downloads.html:23 templates/default/logs.html:24 -#: templates/default/queue.html:95 templates/default/settings.html:4 -#: templates/default/settings.html.py:5 templates/default/settings.html:24 +#: templates/default/base.html:184 +#: templates/default/collector.html:105 +#: templates/default/downloads.html:23 +#: templates/default/logs.html:24 +#: templates/default/queue.html:95 +#: templates/default/settings.html:4 +#: templates/default/settings.html.py:5 +#: templates/default/settings.html:24 msgid "Config" msgstr "" @@ -152,7 +176,8 @@ msgstr "" msgid "Back to top" msgstr "" -#: templates/default/collector.html:114 templates/default/queue.html:104 +#: templates/default/collector.html:114 +#: templates/default/queue.html:104 msgid "Delete Package" msgstr "" @@ -164,15 +189,18 @@ msgstr "" msgid "Push Package to Queue" msgstr "" -#: templates/default/collector.html:131 templates/default/queue.html:119 +#: templates/default/collector.html:131 +#: templates/default/queue.html:119 msgid "Folder:" msgstr "" -#: templates/default/collector.html:133 templates/default/queue.html:121 +#: templates/default/collector.html:133 +#: templates/default/queue.html:121 msgid "Delete Link" msgstr "" -#: templates/default/collector.html:135 templates/default/queue.html:123 +#: templates/default/collector.html:135 +#: templates/default/queue.html:123 msgid "Restart Link" msgstr "" @@ -184,7 +212,8 @@ msgstr "" msgid "Active Downloads" msgstr "" -#: templates/default/home.html:199 templates/default/window.html:11 +#: templates/default/home.html:199 +#: templates/default/window.html:11 msgid "Name" msgstr "" @@ -240,7 +269,8 @@ msgstr "" msgid "Restart Package" msgstr "" -#: templates/default/window.html:9 templates/default/window.html.py:35 +#: templates/default/window.html:9 +#: templates/default/window.html.py:35 msgid "Add Package" msgstr "" @@ -275,3 +305,4 @@ msgstr "" #: templates/default/window.html:36 msgid "Reset" msgstr "" + diff --git a/module/web/locale/tr/LC_MESSAGES/django.po b/module/web/locale/tr/LC_MESSAGES/django.po index 2c65bd38c..530d192b7 100755 --- a/module/web/locale/tr/LC_MESSAGES/django.po +++ b/module/web/locale/tr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-02-03 15:16+0000\n" -"PO-Revision-Date: 2010-03-24 15:25+0100\n" +"PO-Revision-Date: 2010-08-27 00:36+0100\n" "Last-Translator: bauerj <jhnn.br@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" diff --git a/module/web/settings.py b/module/web/settings.py index d5a070b69..7cd906759 100644 --- a/module/web/settings.py +++ b/module/web/settings.py @@ -8,7 +8,7 @@ import os import sys
import django
-SERVER_VERSION = "0.3.2"
+SERVER_VERSION = "0.4.1"
PROJECT_DIR = os.path.dirname(__file__)
@@ -27,6 +27,7 @@ sys.path.append(pypath) from module.ConfigParser import ConfigParser
config = ConfigParser()
+#os.chdir(PROJECT_DIR)
#DEBUG = config.get("general","debug")
|