Module: deluge
Branch: master
Commit: bd43f3c464c513a93b846d166fea3b2c04b3a39e

Author: Calum Lind <[email protected]>
Date:   Tue May 24 01:58:40 2011 +0100

Small text updates

---

 deluge/plugins/autoadd/setup.py       |    2 +-
 deluge/plugins/label/setup.py         |   10 +++-------
 deluge/plugins/notifications/setup.py |   11 +++++++----
 deluge/ui/gtkui/aboutdialog.py        |   22 +++++++++++++---------
 4 files changed, 24 insertions(+), 21 deletions(-)

diff --git a/deluge/plugins/autoadd/setup.py b/deluge/plugins/autoadd/setup.py
index 5ce62fe..fc563fa 100644
--- a/deluge/plugins/autoadd/setup.py
+++ b/deluge/plugins/autoadd/setup.py
@@ -44,7 +44,7 @@ __plugin_name__ = "AutoAdd"
 __author__ = "Chase Sterling, Pedro Algarvio"
 __author_email__ = "[email protected], [email protected]"
 __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__ = """"""
diff --git a/deluge/plugins/label/setup.py b/deluge/plugins/label/setup.py
index 4fc3444..d196eda 100644
--- a/deluge/plugins/label/setup.py
+++ b/deluge/plugins/label/setup.py
@@ -39,15 +39,11 @@ __author_email__ = "[email protected]"
 __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/*"]}
 
diff --git a/deluge/plugins/notifications/setup.py 
b/deluge/plugins/notifications/setup.py
index b9834ff..a12a67e 100755
--- a/deluge/plugins/notifications/setup.py
+++ b/deluge/plugins/notifications/setup.py
@@ -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/*"]}
 
diff --git a/deluge/ui/gtkui/aboutdialog.py b/deluge/ui/gtkui/aboutdialog.py
index 13199bc..3d91609 100644
--- a/deluge/ui/gtkui/aboutdialog.py
+++ b/deluge/ui/gtkui/aboutdialog.py
@@ -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()

-- 
You received this message because you are subscribed to the Google Groups 
"deluge-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/deluge-commit?hl=en.

Reply via email to