Small text updates

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

View File

@ -43,7 +43,7 @@ __plugin_name__ = "AutoAdd"
__author__ = "Chase Sterling"
__author_email__ = "chase.sterling@gmail.com"
__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"
__description__ = "Monitors folders for .torrent files."
__long_description__ = """"""

View File

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

View File

@ -46,10 +46,13 @@ __version__ = "0.1"
__url__ = "http://dev.deluge-torrent.org/"
__license__ = "GPLv3"
__description__ = "Plugin which provides notifications to Deluge."
__long_description__ = __description__ + """\
Email, Popup, Blink and Sound notifications are supported.
The plugin also allows other plugins to make use of itself for their own custom
notifications.
__long_description__ = """
Plugin which provides notifications to Deluge
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/*"]}

View File

@ -56,10 +56,10 @@ class AboutDialog:
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(
"A peer-to-peer file sharing program\nutilizing the Bittorrent "
"protocol.\n\n"
"A peer-to-peer file sharing program\nutilizing the BitTorrent "
"protocol\n\n"
"Client Version: %s\n" % version)
self.about.set_version(version)
self.about.set_authors([
@ -253,17 +253,21 @@ class AboutDialog:
"This program is free software; you can redistribute it and/or "
"modify it under the terms of the GNU General Public License as "
"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 "
"ANY WARRANTY; without even the implied warranty of "
"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; "
"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 "
"the code of portions of this program with the OpenSSL library. "
"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 "
"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 "
@ -271,7 +275,7 @@ class AboutDialog:
"source files in the program, then also delete it here."
))
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_logo(gtk.gdk.pixbuf_new_from_file(
@ -284,7 +288,7 @@ class AboutDialog:
self.about.get_comments() + "Server Version: %coreversion%\n")
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):
c = self.about.get_comments()