2005-03-11 [paul] 1.0.3cvs2.1

* ChangeLog.claws
	* configure.ac
	* po/POTFILES.in
	* src/plugins/trayicon/trayicon.c
		sync with HEAD
		add src/wizard.c to POTFILES.in
This commit is contained in:
Paul Mangan 2005-03-11 10:11:28 +00:00
parent b8181d9054
commit ee1544bb29
6 changed files with 18 additions and 2 deletions

View file

@ -1,3 +1,12 @@
2005-03-11 [paul] 1.0.3cvs2.1
* ChangeLog.claws
* configure.ac
* po/POTFILES.in
* src/plugins/trayicon/trayicon.c
sync with HEAD
add src/wizard.c to POTFILES.in
2005-03-11 [paul] 1.0.3cvs1.1
* ChangeLog

View file

@ -1,3 +1,8 @@
2005-03-11 [paul] 1.0.3cvs2
* src/plugins/trayicon/trayicon.c
make a string translatable
2005-03-11 [paul] 1.0.3cvs1
* po/ru.po

View file

@ -409,3 +409,4 @@
( cvs diff -u -r 1.11.2.8 -r 1.11.2.9 src/common/smtp.c; cvs diff -u -r 1.6.2.4 -r 1.6.2.5 src/common/smtp.h; ) > 1.0.1cvs22.1.patchset
( cvs diff -u -r 1.382.2.109 -r 1.382.2.110 src/compose.c; ) > 1.0.1cvs22.2.patchset
( cvs diff -u -r 1.396.2.22 -r 1.396.2.23 ChangeLog; cvs diff -u -r 1.2504.2.51 -r 1.2504.2.52 ChangeLog.claws; cvs diff -u -r 1.654.2.444 -r 1.654.2.445 configure.ac; cvs diff -u -r 1.58.2.7 -r 1.58.2.8 po/de.po; cvs diff -u -r 1.60.2.8 -r 1.60.2.9 po/es.po; cvs diff -u -r 1.42.2.8 -r 1.42.2.9 po/fr.po; cvs diff -u -r 1.34.2.7 -r 1.34.2.8 po/it.po; cvs diff -u -r 1.50.2.6 -r 1.50.2.7 po/pt_BR.po; cvs diff -u -r 1.17.2.5 -r 1.17.2.6 po/ru.po; cvs diff -u -r 1.2.2.9 -r 1.2.2.10 po/sk.po; cvs diff -u -r 1.17.2.9 -r 1.17.2.10 po/sr.po; cvs diff -u -r 1.5.2.5 -r 1.5.2.6 po/zh_CN.po; ) > 1.0.3cvs1.1.patchset
( cvs diff -u -r 1.2504.2.52 -r 1.2504.2.53 ChangeLog.claws; cvs diff -u -r 1.654.2.445 -r 1.654.2.446 configure.ac; cvs diff -u -r 1.53.2.8 -r 1.53.2.9 po/POTFILES.in; cvs diff -u -r 1.14.2.15 -r 1.14.2.16 src/plugins/trayicon/trayicon.c; ) > 1.0.3cvs2.1.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=0
MICRO_VERSION=3
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=1
EXTRA_VERSION=2
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=.1

View file

@ -112,3 +112,4 @@ src/summary_search.c
src/summaryview.c
src/textview.c
src/toolbar.c
src/wizard.c

View file

@ -142,7 +142,7 @@ static void update(void)
TrayIconType icontype = TRAYICON_NOTHING;
folder_count_total_msgs(&new, &unread, &unreadmarked, &total);
buf = g_strdup_printf("New %d, Unread: %d, Total: %d", new, unread, total);
buf = g_strdup_printf(_("New %d, Unread: %d, Total: %d"), new, unread, total);
gtk_tooltips_set_tip(tooltips, eventbox, buf, "");
g_free(buf);