From 0a0183b0b9d1b3c11471d2404446a172cd3bb710 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 26 Oct 2007 02:56:52 +0000 Subject: [PATCH] add description to about dialog --- TODO | 5 ++--- po/deluge.pot | 18 +++++++++--------- src/dialogs.py | 2 ++ 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/TODO b/TODO index 425541231..4ac9f0bb9 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,5 @@ for 0.5.7 1. manual recheck 2. preference for .torrent location - 3. tweak about menu for description - 4. have blocklist detect 7zip files and popup a warning instead of crashing - 5. add auto-pickup folder + 3. have blocklist detect 7zip files and popup a warning instead of crashing + 4. add auto-pickup folder diff --git a/po/deluge.pot b/po/deluge.pot index e037583c1..c3e2d397c 100644 --- a/po/deluge.pot +++ b/po/deluge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-10-22 22:35-0500\n" +"POT-Creation-Date: 2007-10-25 21:56-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -140,7 +140,7 @@ msgstr "" msgid "_Columns" msgstr "" -#: glade/delugegtk.glade:947 src/interface.py:596 src/files.py:79 +#: glade/delugegtk.glade:947 src/interface.py:596 src/files.py:80 msgid "Size" msgstr "" @@ -1156,11 +1156,11 @@ msgstr "" msgid "Filename" msgstr "" -#: src/files.py:81 +#: src/files.py:82 msgid "Priority" msgstr "" -#: src/files.py:103 +#: src/files.py:104 msgid "" "File priority can only be set when using full allocation.\n" "Please change your preference to disable compact allocation, then remove and " @@ -1175,11 +1175,11 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/dialogs.py:433 +#: src/dialogs.py:435 msgid "translator-credits" msgstr "" -#: src/dialogs.py:434 +#: src/dialogs.py:436 msgid "" "Deluge is free software, you can redistribute it and/or\n" "modify it under the terms of the GNU General Public\n" @@ -1196,15 +1196,15 @@ msgid "" "1301 USA" msgstr "" -#: src/dialogs.py:474 +#: src/dialogs.py:476 msgid "Choose a .torrent file" msgstr "" -#: src/dialogs.py:479 +#: src/dialogs.py:481 msgid "Torrent files" msgstr "" -#: src/dialogs.py:483 +#: src/dialogs.py:485 msgid "All files" msgstr "" diff --git a/src/dialogs.py b/src/dialogs.py index fc0cd1172..d9710438b 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -428,6 +428,8 @@ def show_about_dialog(window): abt.set_transient_for(window) abt.set_name(common.PROGRAM_NAME) abt.set_version(common.PROGRAM_VERSION) + abt.set_comments("Deluge is a full-featured BitTorrent\nclient for Linux, Mac OS X and Windows") + abt.set_documenters(["Marcos Pinto"]) abt.set_authors(["Zach Tibbitts", "Alon Zakai", "Marcos Pinto", "Andrew Resch", "Alex Dedul"]) abt.set_artists(["Andrew Wedderburn"]) abt.set_translator_credits(_("translator-credits"))