Small text updates

This commit is contained in:
Calum Lind 2011-05-24 01:58:40 +01:00
parent 8464a938b2
commit bd43f3c464
4 changed files with 24 additions and 21 deletions

View File

@ -44,7 +44,7 @@ __plugin_name__ = "AutoAdd"
__author__ = "Chase Sterling, Pedro Algarvio" __author__ = "Chase Sterling, Pedro Algarvio"
__author_email__ = "chase.sterling@gmail.com, pedro@algarvio.me" __author_email__ = "chase.sterling@gmail.com, pedro@algarvio.me"
__version__ = "1.02" __version__ = "1.02"
__url__ = "http://forum.deluge-torrent.org/viewtopic.php?f=9&t=26775" __url__ = "http://dev.deluge-torrent.org/wiki/Plugins/AutoAdd"
__license__ = "GPLv3" __license__ = "GPLv3"
__description__ = "Monitors folders for .torrent files." __description__ = "Monitors folders for .torrent files."
__long_description__ = """""" __long_description__ = """"""

View File

@ -39,15 +39,11 @@ __author_email__ = "mvoncken@gmail.com"
__version__ = "0.1" __version__ = "0.1"
__url__ = "http://deluge-torrent.org" __url__ = "http://deluge-torrent.org"
__license__ = "GPLv3" __license__ = "GPLv3"
__description__ = "Label plugin." __description__ = "Allows labels to be assigned to torrents"
__long_description__ = """ __long_description__ = """
Label plugin. Allows labels to be assigned to torrents
Offers filters on state,tracker and keyword.
adds a tracker column.
future: Real labels.
Also offers filters on state, tracker and keywords
""" """
__pkg_data__ = {__plugin_name__.lower(): ["template/*", "data/*"]} __pkg_data__ = {__plugin_name__.lower(): ["template/*", "data/*"]}

View File

@ -46,10 +46,13 @@ __version__ = "0.1"
__url__ = "http://dev.deluge-torrent.org/" __url__ = "http://dev.deluge-torrent.org/"
__license__ = "GPLv3" __license__ = "GPLv3"
__description__ = "Plugin which provides notifications to Deluge." __description__ = "Plugin which provides notifications to Deluge."
__long_description__ = __description__ + """\ __long_description__ = """
Email, Popup, Blink and Sound notifications are supported. Plugin which provides notifications to Deluge
The plugin also allows other plugins to make use of itself for their own custom
notifications. Email, Popup, Blink and Sound notifications
The plugin also allows other plugins to make
use of itself for their own custom notifications
""" """
__pkg_data__ = {__plugin_name__.lower(): ["template/*", "data/*"]} __pkg_data__ = {__plugin_name__.lower(): ["template/*", "data/*"]}

View File

@ -56,10 +56,10 @@ class AboutDialog:
version = deluge.common.get_version() version = deluge.common.get_version()
self.about.set_copyright(u'Copyright \u00A9 2007-2009 Deluge Team') self.about.set_copyright(u'Copyright \u00A9 2007-2011 Deluge Team')
self.about.set_comments( self.about.set_comments(
"A peer-to-peer file sharing program\nutilizing the Bittorrent " "A peer-to-peer file sharing program\nutilizing the BitTorrent "
"protocol.\n\n" "protocol\n\n"
"Client Version: %s\n" % version) "Client Version: %s\n" % version)
self.about.set_version(version) self.about.set_version(version)
self.about.set_authors([ self.about.set_authors([
@ -253,17 +253,21 @@ class AboutDialog:
"This program is free software; you can redistribute it and/or " "This program is free software; you can redistribute it and/or "
"modify it under the terms of the GNU General Public License as " "modify it under the terms of the GNU General Public License as "
"published by the Free Software Foundation; either version 3 of " "published by the Free Software Foundation; either version 3 of "
"the License, or (at your option) any later version. This program " "the License, or (at your option) any later version. \n\n"
"This program "
"is distributed in the hope that it will be useful, but WITHOUT " "is distributed in the hope that it will be useful, but WITHOUT "
"ANY WARRANTY; without even the implied warranty of " "ANY WARRANTY; without even the implied warranty of "
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU "
"General Public License for more details. You should have received " "General Public License for more details. \n\n"
"You should have received "
"a copy of the GNU General Public License along with this program; " "a copy of the GNU General Public License along with this program; "
"if not, see <http://www.gnu.org/licenses>. In addition, as a " "if not, see <http://www.gnu.org/licenses>. \n\n"
"In addition, as a "
"special exception, the copyright holders give permission to link " "special exception, the copyright holders give permission to link "
"the code of portions of this program with the OpenSSL library. " "the code of portions of this program with the OpenSSL library. "
"You must obey the GNU General Public License in all respects for " "You must obey the GNU General Public License in all respects for "
"all of the code used other than OpenSSL. If you modify file(s) " "all of the code used other than OpenSSL. \n\n"
"If you modify file(s) "
"with this exception, you may extend this exception to your " "with this exception, you may extend this exception to your "
"version of the file(s), but you are not obligated to do so. If " "version of the file(s), but you are not obligated to do so. If "
"you do not wish to do so, delete this exception statement from " "you do not wish to do so, delete this exception statement from "
@ -271,7 +275,7 @@ class AboutDialog:
"source files in the program, then also delete it here." "source files in the program, then also delete it here."
)) ))
self.about.set_website("http://deluge-torrent.org") self.about.set_website("http://deluge-torrent.org")
self.about.set_website_label("http://deluge-torrent.org") self.about.set_website_label("www.deluge-torrent.org")
self.about.set_icon(common.get_deluge_icon()) self.about.set_icon(common.get_deluge_icon())
self.about.set_logo(gtk.gdk.pixbuf_new_from_file( self.about.set_logo(gtk.gdk.pixbuf_new_from_file(
@ -284,7 +288,7 @@ class AboutDialog:
self.about.get_comments() + "Server Version: %coreversion%\n") self.about.get_comments() + "Server Version: %coreversion%\n")
self.about.set_comments( self.about.set_comments(
self.about.get_comments() + "libtorrent Version: %ltversion%\n") self.about.get_comments() + "Libtorrent Version: %ltversion%\n")
def on_lt_version(result): def on_lt_version(result):
c = self.about.get_comments() c = self.about.get_comments()