From 17ed9c420cee4b9f579b6647abe5ece57da1260e Mon Sep 17 00:00:00 2001 From: Tristan Chabredier Date: Fri, 4 Nov 2005 14:15:56 +0000 Subject: [PATCH] 2005-11-04 [wwp] 1.9.99cvs11 * src/gtk/about.c don't wrap or translate URIs, and a bit text format cleanup --- ChangeLog | 5 +++++ PATCHSETS | 1 + configure.ac | 2 +- src/gtk/about.c | 16 ++++++++-------- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5cffe7b63..2815778d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-04 [wwp] 1.9.99cvs11 + + * src/gtk/about.c + don't wrap or translate URIs, and a bit text format cleanup + 2005-11-04 [wwp] 1.9.99cvs10 * src/gtk/about.c diff --git a/PATCHSETS b/PATCHSETS index 847af3fd2..b8c940c8d 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -977,3 +977,4 @@ ( cvs diff -u -r 1.654.2.1019 -r 1.654.2.1020 configure.ac; cvs diff -u -r 1.9.2.8 -r 1.9.2.9 src/common/ssl.c; ) > 1.9.99cvs8.patchset ( cvs diff -u -r 1.9.2.9 -r 1.9.2.10 src/common/ssl.c; ) > 1.9.99cvs9.patchset ( cvs diff -u -r 1.4.2.22 -r 1.4.2.23 src/gtk/about.c; ) > 1.9.99cvs10.patchset +( cvs diff -u -r 1.4.2.23 -r 1.4.2.24 src/gtk/about.c; ) > 1.9.99cvs11.patchset diff --git a/configure.ac b/configure.ac index 5f1f7b7ab..064ef5ea1 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=99 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=10 +EXTRA_VERSION=11 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/gtk/about.c b/src/gtk/about.c index 650121da1..b59d91b4a 100644 --- a/src/gtk/about.c +++ b/src/gtk/about.c @@ -258,23 +258,23 @@ static void about_create(void) gtk_text_buffer_create_tag(buffer, "link", "foreground-gdk", &uri_color, "wrap-mode", GTK_WRAP_NONE, - "wrap-mode-set", TRUE, NULL); - gtk_text_buffer_insert(buffer, &iter, _("Sylpheed-Claws is a lightweight, fast and " + gtk_text_buffer_insert(buffer, &iter, _( + "Sylpheed-Claws is a lightweight, fast and " "highly-configurable e-mail client.\n\n" "For further information visit the Sylpheed-" - "Claws website, "), -1); + "Claws website:\n"), -1); gtk_text_buffer_insert_with_tags_by_name(buffer, &iter, HOMEPAGE_URI, -1, "link", NULL); - gtk_text_buffer_insert(buffer, &iter, _(".\n\n" + gtk_text_buffer_insert(buffer, &iter, _("\n\n" "Sylpheed-Claws is free software released " "under the GPL license. If you wish to donate " "to the Sylpheed-Claws project you can do " - "so at "), -1); + "so at:\n"), -1); gtk_text_buffer_insert_with_tags_by_name(buffer, &iter, DONATE_URI, -1, "link", NULL); - gtk_text_buffer_insert(buffer, &iter, _(".\n\n"), -1); + gtk_text_buffer_insert(buffer, &iter, _("\n"), -1); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolledwin, @@ -470,9 +470,9 @@ static void about_create(void) gtk_text_buffer_insert(buffer, &iter, _("This product includes software developed by the OpenSSL Project " "for use in the OpenSSL Toolkit ("), -1); - gtk_text_buffer_insert_with_tags_by_name(buffer, &iter, _("http://www.openssl.org/"), -1, + gtk_text_buffer_insert_with_tags_by_name(buffer, &iter, "http://www.openssl.org/", -1, "link", NULL); - gtk_text_buffer_insert(buffer, &iter, _(").\n\n"), -1); + gtk_text_buffer_insert(buffer, &iter, _(").\n"), -1); #endif gtk_notebook_append_page(GTK_NOTEBOOK(notebook), -- 2.25.1