simple rss move and touchups

This commit is contained in:
Marcos Pinto 2007-08-05 22:32:11 +00:00
commit a5411fbcd9
8 changed files with 307 additions and 170 deletions

View file

@ -1,23 +0,0 @@
plugin_name = _("RSS Broadcatcher")
plugin_author = "Mark Adamson"
plugin_version = "1.0"
plugin_description = _("""
Download Torrents automatically from RSS Feeds
The latest version of my RSS autodownloader, which uses the Universal Feed parser (http://feedparser.org/). Add RSS feeds on the 'Feeds' tab, then add filters for TV shows (or whatever) on the 'Filters' tab. Double-click entries on the 'Torrents' tab to download extra torrents from the feeds. The Options are pretty self-explanatary.
Please message me (SatNav) on the forums and let me know how you get on..
Enjoy!""")
def deluge_init(deluge_path):
global path
path = deluge_path
from RSS.plugin import plugin_RSS
def enable(core, interface):
global path
return plugin_RSS(path, core, interface)

View file

@ -0,0 +1,23 @@
plugin_name = _("Simple RSS")
plugin_author = "Mark Adamson"
plugin_version = "1.0"
plugin_description = _("""
Download Torrents automatically from SimpleRSS Feeds
Add RSS feeds on the 'Feeds' tab, then add filters for TV shows (or whatever) on the 'Filters' tab. Double-click entries on the 'Torrents' tab to download extra torrents from the feeds. The Options are pretty self-explanatary.
Please message me (SatNav) on the forums and let me know how you get on..
Enjoy!""")
def deluge_init(deluge_path):
global path
path = deluge_path
from SimpleRSS.plugin import plugin_SimpleRSS
def enable(core, interface):
global path
return plugin_SimpleRSS(path, core, interface)

View file

@ -1,6 +1,6 @@
class plugin_RSS: class plugin_SimpleRSS:
def __init__(self, path, deluge_core, deluge_interface): def __init__(self, path, deluge_core, deluge_interface):
#set up system thingies #set up system thingies
import gtk, gtk.glade, os, ConfigParser, feedparser import gtk, gtk.glade, os, ConfigParser, feedparser
@ -103,7 +103,7 @@ class plugin_RSS:
icon.set_from_file(self.path + "/rss.png") # Toolbar items should be 22x22 pixel images icon.set_from_file(self.path + "/rss.png") # Toolbar items should be 22x22 pixel images
self.button = gtk.ToolButton(icon_widget=icon, label=_("RSS")) self.button = gtk.ToolButton(icon_widget=icon, label=_("RSS"))
self.ttips = gtk.Tooltips() self.ttips = gtk.Tooltips()
self.button.set_tooltip(self.ttips, _("RSS Broadcatcher")) self.button.set_tooltip(self.ttips, _("SimpleRSS Broadcatcher"))
self.button.connect("clicked", self.rss_clicked) # Connect the signal handler for the button self.button.connect("clicked", self.rss_clicked) # Connect the signal handler for the button
self.toolbar.add(self.button) # Add button to toolbar self.toolbar.add(self.button) # Add button to toolbar
self.button.show_all() # Show the button self.button.show_all() # Show the button

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

@ -26,9 +26,9 @@ plugins/TorrentPeers/__init__.py
plugins/TorrentPeers/tab_peers.py plugins/TorrentPeers/tab_peers.py
plugins/TorrentCreator/torrentcreator.glade plugins/TorrentCreator/torrentcreator.glade
plugins/TorrentCreator/__init__.py plugins/TorrentCreator/__init__.py
plugins/RSS/rss.glade plugins/SimpleRSS/rss.glade
plugins/RSS/__init__.py plugins/SimpleRSS/__init__.py
plugins/RSS/plugin.py plugins/SimpleRSS/plugin.py
plugins/TorrentNotification/notification_preferences.glade plugins/TorrentNotification/notification_preferences.glade
plugins/TorrentNotification/__init__.py plugins/TorrentNotification/__init__.py
plugins/NetworkHealth/__init__.py plugins/NetworkHealth/__init__.py

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-08-05 04:33-0500\n" "POT-Creation-Date: 2007-08-05 17:07-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -141,6 +141,7 @@ msgid "Size"
msgstr "" msgstr ""
#: glade/delugegtk.glade:920 src/interface.py:528 #: glade/delugegtk.glade:920 src/interface.py:528
#: plugins/AdvancedRSS/FlexRSS.glade:137
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -153,13 +154,13 @@ msgstr ""
msgid "Peers" msgid "Peers"
msgstr "" msgstr ""
#: glade/delugegtk.glade:947 src/interface.py:531 src/interface.py:941 #: glade/delugegtk.glade:947 src/interface.py:531 src/interface.py:939
#: src/interface.py:954 plugins/TorrentPeers/tab_peers.py:42 #: src/interface.py:952 plugins/TorrentPeers/tab_peers.py:42
msgid "Down Speed" msgid "Down Speed"
msgstr "" msgstr ""
#: glade/delugegtk.glade:956 src/interface.py:532 src/interface.py:942 #: glade/delugegtk.glade:956 src/interface.py:532 src/interface.py:940
#: src/interface.py:955 plugins/TorrentPeers/tab_peers.py:44 #: src/interface.py:953 plugins/TorrentPeers/tab_peers.py:44
msgid "Up Speed" msgid "Up Speed"
msgstr "" msgstr ""
@ -688,7 +689,7 @@ msgid "<b>Updates</b>"
msgstr "" msgstr ""
#: glade/preferences_dialog.glade:2272 #: glade/preferences_dialog.glade:2272
#: plugins/EventLogging/event_logging_preferences.glade:270 #: plugins/EventLogging/event_logging_preferences.glade:50
#: plugins/EventLogging/tab_log.py:187 #: plugins/EventLogging/tab_log.py:187
msgid "Other" msgid "Other"
msgstr "" msgstr ""
@ -775,7 +776,7 @@ msgid "KiB/s"
msgstr "" msgstr ""
#: src/interface.py:234 src/interface.py:305 src/interface.py:329 #: src/interface.py:234 src/interface.py:305 src/interface.py:329
#: src/interface.py:922 src/interface.py:931 src/interface.py:935 #: src/interface.py:920 src/interface.py:929 src/interface.py:933
#: plugins/SpeedLimiter/__init__.py:119 plugins/SpeedLimiter/__init__.py:150 #: plugins/SpeedLimiter/__init__.py:119 plugins/SpeedLimiter/__init__.py:150
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
@ -816,8 +817,11 @@ msgstr ""
msgid "Unknown" msgid "Unknown"
msgstr "" msgstr ""
#: src/interface.py:526 plugins/RSS/plugin.py:36 plugins/RSS/plugin.py:44 #: src/interface.py:526 plugins/SimpleRSS/plugin.py:37
#: plugins/RSS/plugin.py:51 plugins/TorrentSearch/plugin.py:20 #: plugins/SimpleRSS/plugin.py:45 plugins/SimpleRSS/plugin.py:52
#: plugins/TorrentSearch/plugin.py:20 plugins/AdvancedRSS/FlexRSS.glade:178
#: plugins/AdvancedRSS/FlexRSS.glade:378
#: plugins/AdvancedRSS/FlexRSS.glade:1030
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -829,68 +833,68 @@ msgstr ""
msgid "Ratio" msgid "Ratio"
msgstr "" msgstr ""
#: src/interface.py:718 #: src/interface.py:716
#, python-format #, python-format
msgid "Paused %s" msgid "Paused %s"
msgstr "" msgstr ""
#: src/interface.py:820 src/core.py:609 #: src/interface.py:818 src/core.py:609
msgid "" msgid ""
"You cannot move torrent to a different partition. Please fix your " "You cannot move torrent to a different partition. Please fix your "
"preferences" "preferences"
msgstr "" msgstr ""
#: src/interface.py:941 #: src/interface.py:939
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: src/interface.py:951 #: src/interface.py:949
msgid "DHT" msgid "DHT"
msgstr "" msgstr ""
#: src/interface.py:954 #: src/interface.py:952
msgid "Deluge Bittorrent Client" msgid "Deluge Bittorrent Client"
msgstr "" msgstr ""
#: src/interface.py:955 #: src/interface.py:953
msgid "Total Downloaded" msgid "Total Downloaded"
msgstr "" msgstr ""
#: src/interface.py:956 #: src/interface.py:954
msgid "Total Uploaded" msgid "Total Uploaded"
msgstr "" msgstr ""
#: src/interface.py:1051 #: src/interface.py:1049
msgid "" msgid ""
"An error occured while trying to add the torrent. It's possible your ." "An error occured while trying to add the torrent. It's possible your ."
"torrent file is corrupted." "torrent file is corrupted."
msgstr "" msgstr ""
#: src/interface.py:1069 #: src/interface.py:1067
msgid "Unknown duplicate torrent error." msgid "Unknown duplicate torrent error."
msgstr "" msgstr ""
#: src/interface.py:1073 #: src/interface.py:1071
msgid "There is not enough free disk space to complete your download." msgid "There is not enough free disk space to complete your download."
msgstr "" msgstr ""
#: src/interface.py:1074 #: src/interface.py:1072
msgid "Space Needed:" msgid "Space Needed:"
msgstr "" msgstr ""
#: src/interface.py:1075 #: src/interface.py:1073
msgid "Available Space:" msgid "Available Space:"
msgstr "" msgstr ""
#: src/interface.py:1089 #: src/interface.py:1087
msgid "Add torrent from URL" msgid "Add torrent from URL"
msgstr "" msgstr ""
#: src/interface.py:1093 #: src/interface.py:1091
msgid "Enter the URL of the .torrent to download" msgid "Enter the URL of the .torrent to download"
msgstr "" msgstr ""
#: src/interface.py:1145 #: src/interface.py:1143
msgid "Warning - all downloaded files for this torrent will be deleted!" msgid "Warning - all downloaded files for this torrent will be deleted!"
msgstr "" msgstr ""
@ -973,31 +977,31 @@ msgid ""
"readd this torrent." "readd this torrent."
msgstr "" msgstr ""
#: src/dialogs.py:322 #: src/dialogs.py:332
msgid "Plugin" msgid "Plugin"
msgstr "" msgstr ""
#: src/dialogs.py:324 #: src/dialogs.py:334 plugins/AdvancedRSS/FlexRSS.glade:104
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/dialogs.py:392 #: src/dialogs.py:406
msgid "translator-credits" msgid "translator-credits"
msgstr "" msgstr ""
#: src/dialogs.py:432 #: src/dialogs.py:446
msgid "Choose a .torrent file" msgid "Choose a .torrent file"
msgstr "" msgstr ""
#: src/dialogs.py:437 #: src/dialogs.py:451
msgid "Torrent files" msgid "Torrent files"
msgstr "" msgstr ""
#: src/dialogs.py:441 #: src/dialogs.py:455
msgid "All files" msgid "All files"
msgstr "" msgstr ""
#: src/dialogs.py:462 #: src/dialogs.py:476
msgid "Choose a download directory" msgid "Choose a download directory"
msgstr "" msgstr ""
@ -1269,107 +1273,112 @@ msgstr ""
msgid "Deluge" msgid "Deluge"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:7 #: plugins/SimpleRSS/rss.glade:7
msgid "RSS Broadcatcher Settings" msgid "RSS Broadcatcher Settings"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:86 #: plugins/SimpleRSS/rss.glade:87
msgid "Feed Name:" msgid "Feed Name:"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:150 #: plugins/SimpleRSS/rss.glade:151
msgid "Feed URL:" msgid "Feed URL:"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:282 #: plugins/SimpleRSS/rss.glade:283 plugins/AdvancedRSS/FlexRSS.glade:242
msgid "Feeds" msgid "Feeds"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:384 plugins/RSS/plugin.py:43 #: plugins/SimpleRSS/rss.glade:385 plugins/SimpleRSS/plugin.py:44
#: plugins/AdvancedRSS/FlexRSS.glade:402
msgid "Feed" msgid "Feed"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:412 #: plugins/SimpleRSS/rss.glade:413
msgid "Filter Exp:" msgid "Filter Exp:"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:441 #: plugins/SimpleRSS/rss.glade:442
msgid "Filter Name:" msgid "Filter Name:"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:542 #: plugins/SimpleRSS/rss.glade:543 plugins/AdvancedRSS/FlexRSS.glade:850
msgid "Filters" msgid "Filters"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:563 #: plugins/SimpleRSS/rss.glade:564
msgid " Feed: " msgid " Feed: "
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:616 #: plugins/SimpleRSS/rss.glade:617
msgid "Torrents" msgid "Torrents"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:659 #: plugins/SimpleRSS/rss.glade:660
msgid "Update Interval (seconds): " msgid "Update Interval (seconds): "
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:728 #: plugins/SimpleRSS/rss.glade:729
msgid "Check feeds on Deluge start" msgid "Check feeds on Deluge start"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:780 #: plugins/SimpleRSS/rss.glade:781
msgid "Check Feeds Now" msgid "Check Feeds Now"
msgstr "" msgstr ""
#: plugins/RSS/rss.glade:835 #: plugins/SimpleRSS/rss.glade:836
msgid "Options" msgid "Options"
msgstr "" msgstr ""
#: plugins/RSS/__init__.py:1 plugins/RSS/plugin.py:103 #: plugins/SimpleRSS/__init__.py:1
msgid "RSS Broadcatcher" msgid "Simple RSS"
msgstr "" msgstr ""
#: plugins/RSS/__init__.py:4 #: plugins/SimpleRSS/__init__.py:4
msgid "" msgid ""
"\n" "\n"
"Download Torrents automatically from RSS Feeds\n" "Download Torrents automatically from SimpleRSS Feeds\n"
"\n" "\n"
"The latest version of my RSS autodownloader, which uses the Universal Feed " "Add RSS feeds on the 'Feeds' tab, then add filters for TV shows (or "
"parser (http://feedparser.org/). Add RSS feeds on the 'Feeds' tab, then add " "whatever) on the 'Filters' tab. Double-click entries on the 'Torrents' tab "
"filters for TV shows (or whatever) on the 'Filters' tab. Double-click " "to download extra torrents from the feeds. The Options are pretty self-"
"entries on the 'Torrents' tab to download extra torrents from the feeds. The " "explanatary.\n"
"Options are pretty self-explanatary.\n"
"\n" "\n"
"Please message me (SatNav) on the forums and let me know how you get on..\n" "Please message me (SatNav) on the forums and let me know how you get on..\n"
"\n" "\n"
"Enjoy!" "Enjoy!"
msgstr "" msgstr ""
#: plugins/RSS/plugin.py:37 plugins/RSS/plugin.py:45 #: plugins/SimpleRSS/plugin.py:38 plugins/SimpleRSS/plugin.py:46
#: plugins/AdvancedRSS/FlexRSS.glade:164
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: plugins/RSS/plugin.py:38 #: plugins/SimpleRSS/plugin.py:39
msgid "Last Entry Date" msgid "Last Entry Date"
msgstr "" msgstr ""
#: plugins/RSS/plugin.py:46 #: plugins/SimpleRSS/plugin.py:47
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: plugins/RSS/plugin.py:101 #: plugins/SimpleRSS/plugin.py:104
msgid "RSS" msgid "RSS"
msgstr "" msgstr ""
#: plugins/RSS/plugin.py:186 plugins/RSS/plugin.py:190 #: plugins/SimpleRSS/plugin.py:106
#: plugins/RSS/plugin.py:191 plugins/RSS/plugin.py:192 msgid "SimpleRSS Broadcatcher"
#: plugins/RSS/plugin.py:194 plugins/RSS/plugin.py:195 msgstr ""
#: plugins/RSS/plugin.py:196
#: plugins/SimpleRSS/plugin.py:189 plugins/SimpleRSS/plugin.py:193
#: plugins/SimpleRSS/plugin.py:194 plugins/SimpleRSS/plugin.py:195
#: plugins/SimpleRSS/plugin.py:197 plugins/SimpleRSS/plugin.py:198
#: plugins/SimpleRSS/plugin.py:199
msgid "New Filter" msgid "New Filter"
msgstr "" msgstr ""
#: plugins/RSS/plugin.py:265 plugins/RSS/plugin.py:400 #: plugins/SimpleRSS/plugin.py:268 plugins/SimpleRSS/plugin.py:403
#: plugins/RSS/plugin.py:401 #: plugins/SimpleRSS/plugin.py:404
msgid "All" msgid "All"
msgstr "" msgstr ""
@ -1377,20 +1386,16 @@ msgstr ""
msgid "Torrent Notification Preferences" msgid "Torrent Notification Preferences"
msgstr "" msgstr ""
#: plugins/TorrentNotification/notification_preferences.glade:24 #: plugins/TorrentNotification/notification_preferences.glade:25
msgid "Enable event sound (requires pygame)" msgid "Enable event sound (requires pygame)"
msgstr "" msgstr ""
#: plugins/TorrentNotification/notification_preferences.glade:37
msgid "Select A File"
msgstr ""
#: plugins/TorrentNotification/notification_preferences.glade:57 #: plugins/TorrentNotification/notification_preferences.glade:57
msgid "Enable blinking tray icon" msgid "Enable popup notification (requires python-notify)"
msgstr "" msgstr ""
#: plugins/TorrentNotification/notification_preferences.glade:67 #: plugins/TorrentNotification/notification_preferences.glade:71
msgid "Enable popup notification (requires python-notify)" msgid "Enable blinking tray icon"
msgstr "" msgstr ""
#: plugins/TorrentNotification/__init__.py:19 #: plugins/TorrentNotification/__init__.py:19
@ -1403,11 +1408,11 @@ msgid ""
"notification" "notification"
msgstr "" msgstr ""
#: plugins/TorrentNotification/__init__.py:93 #: plugins/TorrentNotification/__init__.py:96
msgid "Torrent complete" msgid "Torrent complete"
msgstr "" msgstr ""
#: plugins/TorrentNotification/__init__.py:94 #: plugins/TorrentNotification/__init__.py:97
#: plugins/TorrentFiles/__init__.py:54 #: plugins/TorrentFiles/__init__.py:54
msgid "Files" msgid "Files"
msgstr "" msgstr ""
@ -1431,97 +1436,97 @@ msgstr ""
msgid "Event Logging Preferences" msgid "Event Logging Preferences"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:23 #: plugins/EventLogging/event_logging_preferences.glade:25
msgid "Select events to log" msgid "Enable log files"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:30 #: plugins/EventLogging/event_logging_preferences.glade:39
#: plugins/EventLogging/tab_log.py:39 msgid "Log files"
msgid "Torrent finished"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:45 #: plugins/EventLogging/event_logging_preferences.glade:65
msgid "Peer messages" #: plugins/EventLogging/tab_log.py:179
msgid "Peer blocked"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:60 #: plugins/EventLogging/event_logging_preferences.glade:80
#: plugins/EventLogging/tab_log.py:55 #: plugins/EventLogging/tab_log.py:169
msgid "Invalid request" msgid "Block finished"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:75 #: plugins/EventLogging/event_logging_preferences.glade:95
#: plugins/EventLogging/tab_log.py:64 #: plugins/EventLogging/tab_log.py:158
msgid "File error" msgid "Block downloading"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:90 #: plugins/EventLogging/event_logging_preferences.glade:110
#: plugins/EventLogging/tab_log.py:73
msgid "Hash failed error"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:105
#: plugins/EventLogging/tab_log.py:83
msgid "Peer ban error"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:120
#: plugins/EventLogging/tab_log.py:92
msgid "Fastresume rejected error"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:135
#: plugins/EventLogging/tab_log.py:101
msgid "Tracker announce"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:150
#: plugins/EventLogging/tab_log.py:110
msgid "Tracker reply"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:165
#: plugins/EventLogging/tab_log.py:119
msgid "Tracker alert"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:180
#: plugins/EventLogging/tab_log.py:130
msgid "Tracker warning"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:195
#: plugins/EventLogging/tab_log.py:139
msgid "Storage moved"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:210
#: plugins/EventLogging/tab_log.py:148 plugins/TorrentPieces/tab_pieces.py:157 #: plugins/EventLogging/tab_log.py:148 plugins/TorrentPieces/tab_pieces.py:157
#: plugins/TorrentPieces/tab_pieces.py:206 #: plugins/TorrentPieces/tab_pieces.py:206
#: plugins/TorrentPieces/tab_pieces.py:282 #: plugins/TorrentPieces/tab_pieces.py:282
msgid "Piece finished" msgid "Piece finished"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:225 #: plugins/EventLogging/event_logging_preferences.glade:125
#: plugins/EventLogging/tab_log.py:158 #: plugins/EventLogging/tab_log.py:139
msgid "Block downloading" msgid "Storage moved"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:240 #: plugins/EventLogging/event_logging_preferences.glade:140
#: plugins/EventLogging/tab_log.py:169 #: plugins/EventLogging/tab_log.py:130
msgid "Block finished" msgid "Tracker warning"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:255 #: plugins/EventLogging/event_logging_preferences.glade:155
#: plugins/EventLogging/tab_log.py:179 #: plugins/EventLogging/tab_log.py:119
msgid "Peer blocked" msgid "Tracker alert"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:284 #: plugins/EventLogging/event_logging_preferences.glade:170
msgid "Log files" #: plugins/EventLogging/tab_log.py:110
msgid "Tracker reply"
msgstr "" msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:295 #: plugins/EventLogging/event_logging_preferences.glade:185
msgid "Enable log files" #: plugins/EventLogging/tab_log.py:101
msgid "Tracker announce"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:200
#: plugins/EventLogging/tab_log.py:92
msgid "Fastresume rejected error"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:215
#: plugins/EventLogging/tab_log.py:83
msgid "Peer ban error"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:230
#: plugins/EventLogging/tab_log.py:73
msgid "Hash failed error"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:245
#: plugins/EventLogging/tab_log.py:64
msgid "File error"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:260
#: plugins/EventLogging/tab_log.py:55
msgid "Invalid request"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:275
msgid "Peer messages"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:290
#: plugins/EventLogging/tab_log.py:39
msgid "Torrent finished"
msgstr ""
#: plugins/EventLogging/event_logging_preferences.glade:304
msgid "Select events to log"
msgstr "" msgstr ""
#: plugins/EventLogging/__init__.py:19 #: plugins/EventLogging/__init__.py:19
@ -1552,7 +1557,7 @@ msgid ""
"New events are now displayed at the top.\n" "New events are now displayed at the top.\n"
msgstr "" msgstr ""
#: plugins/EventLogging/__init__.py:86 #: plugins/EventLogging/__init__.py:89
msgid "Event Log" msgid "Event Log"
msgstr "" msgstr ""
@ -1806,3 +1811,135 @@ msgid ""
"\n" "\n"
"This is just the files tab as a plugin.\n" "This is just the files tab as a plugin.\n"
msgstr "" msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:7
msgid "FlexRSS"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:115
msgid "Disabled"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:150
msgid "Update Interval"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:191
msgid "900"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:361
msgid ""
"Generic\n"
"TV Show\n"
"TV Show (dated)"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:389
msgid "Type"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:444
msgid "<b>Information</b>"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:516
msgid "<b>Patterns</b>"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:560
msgid "Doesn't Match"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:576
msgid "Season"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:583
msgid "Episode"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:625
msgid "Year"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:632
msgid "Month"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:643
msgid "Day"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:710
msgid "<b>Test</b>"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:743
msgid "Deluge default"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:758
msgid "Choose:"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:788
msgid "<b>Output</b>"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:883
msgid "Show button on toolbar."
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:900
msgid "<b>Interface</b>"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:955
msgid "gtk-new"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:967
msgid "gtk-save"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:982
msgid "gtk-delete"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:1006
msgid "Domain"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:1017
msgid "Path"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:1043
msgid "Value"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:1116
msgid "<b>Cookies</b>"
msgstr ""
#: plugins/AdvancedRSS/FlexRSS.glade:1138
msgid "Configuration"
msgstr ""
#: plugins/AdvancedRSS/__init__.py:1
msgid "Advanced RSS"
msgstr ""
#: plugins/AdvancedRSS/__init__.py:4
msgid ""
"\n"
"Advanced RSS scraper\n"
"\n"
"This plugin is similar in purpose to Mark Adamson's excellent Simple RSS, "
"but targets a more advanced audience. It is extremely powerful, "
"configurable, unforgiving, and difficult.\n"
"\n"
"Filters use regular expressions with named patterns and strptime(3)-like "
"format filters to match items."
msgstr ""