fix engrish
authorColin Leroy <colin@colino.net>
Fri, 9 Jul 2004 07:37:47 +0000 (07:37 +0000)
committerColin Leroy <colin@colino.net>
Fri, 9 Jul 2004 07:37:47 +0000 (07:37 +0000)
ChangeLog-gtk2.claws
PATCHSETS
configure.ac
src/messageview.c

index e043189501bf75c270244733895f11d96509d2ba..98421e2b1ad469d5ec8dbaae821cc575b41aba39 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-09 [colin]     0.9.11cvs17.18
+
+       * src/messageview.c
+               Fix Engrish
+
 2004-07-09 [colin]     0.9.11cvs17.17
 
        * src/pop.c
 2004-07-09 [colin]     0.9.11cvs17.17
 
        * src/pop.c
index 91fbb2966e67c453ec73985acc0485cc368824ca..0a51e33a81070374612dfd6942d50faec6e7518a 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
@@ -11,3 +11,4 @@
 ( cvs diff -u -r 1.6.2.1 -r 1.6.2.2 src/common/smtp.h; ) > 0.9.11cvs17.15.patchset
 ( cvs diff -u -r 1.94.2.11 -r 1.94.2.12 src/messageview.c; cvs diff -u -r 1.5.2.3 -r 1.5.2.4 src/noticeview.c; cvs diff -u -r 1.3.8.1 -r 1.3.8.2 src/noticeview.h; cvs diff -u -r 1.56.2.5 -r 1.56.2.6 src/pop.c; cvs diff -u -r 1.17.2.4 -r 1.17.2.5 src/pop.h; ) > 0.9.11cvs17.16.patchset
 ( cvs diff -u -r 1.56.2.6 -r 1.56.2.7 src/pop.c; cvs diff -u -r 1.94.2.12 -r 1.94.2.13 src/messageview.c; ) > 0.9.11cvs17.17.patchset
 ( cvs diff -u -r 1.6.2.1 -r 1.6.2.2 src/common/smtp.h; ) > 0.9.11cvs17.15.patchset
 ( cvs diff -u -r 1.94.2.11 -r 1.94.2.12 src/messageview.c; cvs diff -u -r 1.5.2.3 -r 1.5.2.4 src/noticeview.c; cvs diff -u -r 1.3.8.1 -r 1.3.8.2 src/noticeview.h; cvs diff -u -r 1.56.2.5 -r 1.56.2.6 src/pop.c; cvs diff -u -r 1.17.2.4 -r 1.17.2.5 src/pop.h; ) > 0.9.11cvs17.16.patchset
 ( cvs diff -u -r 1.56.2.6 -r 1.56.2.7 src/pop.c; cvs diff -u -r 1.94.2.12 -r 1.94.2.13 src/messageview.c; ) > 0.9.11cvs17.17.patchset
+( cvs diff -u -r 1.94.2.13 -r 1.94.2.14 src/messageview.c; ) > 0.9.11cvs17.18.patchset
index 985f81565141f4f7ba56ddeb6d5105fea9c23cad..3c04d2952f1cafed63bdee33e79e0bdbfcff5ccd 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=11
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=11
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=17.17
+EXTRA_VERSION=17.18
 EXTRA_RELEASE=
 
 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
 EXTRA_RELEASE=
 
 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
index bac3e9e11c65d9fb782e97d6eb1a67d52749f163..2379d06c3ac586cd2da6e1b8b75d3f888d334e89 100644 (file)
@@ -1075,7 +1075,7 @@ static void partial_recv_show(NoticeView *noticeview, MsgInfo *msginfo)
        switch (msginfo->planned_download) {
        case 0: /* unknown yet */
                text = g_strdup_printf(_("This message has been partially "
        switch (msginfo->planned_download) {
        case 0: /* unknown yet */
                text = g_strdup_printf(_("This message has been partially "
-                               "retrieved;\nit is %s large."),
+                               "retrieved;\nit is %s."),
                                to_human_readable(
                                        (off_t)(msginfo->total_size)));
                button1 = _("Mark for download");
                                to_human_readable(
                                        (off_t)(msginfo->total_size)));
                button1 = _("Mark for download");
@@ -1086,7 +1086,7 @@ static void partial_recv_show(NoticeView *noticeview, MsgInfo *msginfo)
        case 1:
                text = g_strdup_printf(_("This message has been partially "
                                "retrieved and is planned for "
        case 1:
                text = g_strdup_printf(_("This message has been partially "
                                "retrieved and is planned for "
-                               "download;\nit is %s large."),
+                               "download;\nit is %s."),
                                to_human_readable(
                                        (off_t)(msginfo->total_size)));
                button1 = _("Mark for deletion");
                                to_human_readable(
                                        (off_t)(msginfo->total_size)));
                button1 = _("Mark for deletion");
@@ -1095,7 +1095,7 @@ static void partial_recv_show(NoticeView *noticeview, MsgInfo *msginfo)
        case -1:
                text = g_strdup_printf(_("This message has been partially "
                                "retrieved and is planned for "
        case -1:
                text = g_strdup_printf(_("This message has been partially "
                                "retrieved and is planned for "
-                               "deletion;\nit is %s large."),
+                               "deletion;\nit is %s."),
                                to_human_readable(
                                        (off_t)(msginfo->total_size)));
                button1 = _("Mark for download");
                                to_human_readable(
                                        (off_t)(msginfo->total_size)));
                button1 = _("Mark for download");