From 2a4821a3e4809be0dc094a84a502daf01efe439c Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Mon, 21 Aug 2006 19:27:57 +0000 Subject: [PATCH] 2006-08-21 [colin] 2.4.0cvs69 * src/plugins/trayicon/trayicon.c Add more strings for translation; patch by Pawel --- ChangeLog | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/plugins/trayicon/trayicon.c | 6 +++--- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ae8734d55..256a3d9bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-08-21 [colin] 2.4.0cvs69 + + * src/plugins/trayicon/trayicon.c + Add more strings for translation; patch + by Pawel + 2006-08-21 [colin] 2.4.0cvs68 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index 1cdd0352e..5e963bd34 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1760,3 +1760,4 @@ ( cvs diff -u -r 1.8.2.6 -r 1.8.2.7 po/ko.po; cvs diff -u -r 1.5.2.17 -r 1.5.2.18 po/zh_CN.po; ) > 2.4.0cvs66.patchset ( cvs diff -u -r 1.17.2.24 -r 1.17.2.25 src/alertpanel.c; cvs diff -u -r 1.274.2.138 -r 1.274.2.139 src/mainwindow.c; cvs diff -u -r 1.83.2.80 -r 1.83.2.81 src/mimeview.c; cvs diff -u -r 1.2.2.17 -r 1.2.2.18 src/gtk/inputdialog.c; cvs diff -u -r 1.1.2.16 -r 1.1.2.17 src/plugins/pgpcore/passphrase.c; ) > 2.4.0cvs67.patchset ( cvs diff -u -r 1.382.2.303 -r 1.382.2.304 src/compose.c; cvs diff -u -r 1.75.2.29 -r 1.75.2.30 src/matcher.c; cvs diff -u -r 1.16.2.34 -r 1.16.2.35 src/msgcache.c; ) > 2.4.0cvs68.patchset +( cvs diff -u -r 1.14.2.35 -r 1.14.2.36 src/plugins/trayicon/trayicon.c; ) > 2.4.0cvs69.patchset diff --git a/configure.ac b/configure.ac index 5495065d9..6ed9de545 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=4 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=68 +EXTRA_VERSION=69 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/plugins/trayicon/trayicon.c b/src/plugins/trayicon/trayicon.c index 1e6f13af8..613ebe6a5 100644 --- a/src/plugins/trayicon/trayicon.c +++ b/src/plugins/trayicon/trayicon.c @@ -273,18 +273,18 @@ static void create_trayicon() int plugin_init(gchar **error) { if ((sylpheed_get_version() > VERSION_NUMERIC)) { - *error = g_strdup("Your version of Sylpheed-Claws is newer than the version the Trayicon plugin was built with"); + *error = g_strdup(_("Your version of Sylpheed-Claws is newer than the version the Trayicon plugin was built with")); return -1; } if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(0, 9, 3, 86))) { - *error = g_strdup("Your version of Sylpheed-Claws is too old for the Trayicon plugin"); + *error = g_strdup(_("Your version of Sylpheed-Claws is too old for the Trayicon plugin")); return -1; } hook_id = hooks_register_hook (FOLDER_ITEM_UPDATE_HOOKLIST, folder_item_update_hook, NULL); if (hook_id == -1) { - *error = g_strdup("Failed to register folder item update hook"); + *error = g_strdup(_("Failed to register folder item update hook")); return -1; } -- 2.25.1