diff options
author | Claude Paroz <claudep@src.gnome.org> | 2007-07-21 00:07:11 +0800 |
---|---|---|
committer | Claude Paroz <claudep@src.gnome.org> | 2007-07-21 00:07:11 +0800 |
commit | e26eff7832d087ffaf83ebc1b3fc480e03eb4bcc (patch) | |
tree | d12e4352b73c643eca5fcacacdda215a1854720c | |
parent | 2edaf2d67d0024f3509f250be88d139453e9427a (diff) | |
download | gsoc2013-evolution-e26eff7832d087ffaf83ebc1b3fc480e03eb4bcc.tar.gz gsoc2013-evolution-e26eff7832d087ffaf83ebc1b3fc480e03eb4bcc.tar.zst gsoc2013-evolution-e26eff7832d087ffaf83ebc1b3fc480e03eb4bcc.zip |
Minor typos in strings.
svn path=/trunk/; revision=33825
-rw-r--r-- | addressbook/ChangeLog | 4 | ||||
-rw-r--r-- | addressbook/tools/evolution-addressbook-export.c | 2 | ||||
-rw-r--r-- | plugins/itip-formatter/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/itip-formatter/itip-view.c | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index ce31151e85..af142b141f 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,7 @@ +2007-07-20 Claude Paroz <claude@2xlibre.net> + + * tools/evolution-addressbook-export.c: Minor typo. + 2007-07-09 Matthew Barnes <mbarnes@redhat.com> * gui/widgets/e-addressbook-view.c: (init_collection) diff --git a/addressbook/tools/evolution-addressbook-export.c b/addressbook/tools/evolution-addressbook-export.c index b99925d279..47ccd2a41f 100644 --- a/addressbook/tools/evolution-addressbook-export.c +++ b/addressbook/tools/evolution-addressbook-export.c @@ -60,7 +60,7 @@ static GOptionEntry entries[] = { N_("Export in asynchronous mode") }, { "size", '\0', 0, G_OPTION_ARG_INT, &opt_file_size, - N_("The number of cards in out output file in asynchronous mode, " + N_("The number of cards in one output file in asynchronous mode, " "default size 100."), N_("NUMBER") }, { G_OPTION_REMAINING, '\0', 0, diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog index 371e3670a9..8e2e2e3aef 100644 --- a/plugins/itip-formatter/ChangeLog +++ b/plugins/itip-formatter/ChangeLog @@ -1,3 +1,7 @@ +2007-07-20 Claude Paroz <claude@2xlibre.net> + + * itip-view.c: (set_tasklist_sender_text): Added omitted %s formatter. + 2007-07-09 Chenthill Palanisamy <pchenthill@novell.com> * itip-formatter.c: (format_itip_object): Fixed a build break. diff --git a/plugins/itip-formatter/itip-view.c b/plugins/itip-formatter/itip-view.c index d3995dd2e7..b2b71970a3 100644 --- a/plugins/itip-formatter/itip-view.c +++ b/plugins/itip-formatter/itip-view.c @@ -471,7 +471,7 @@ set_tasklist_sender_text (ItipView *view) break; case ITIP_VIEW_MODE_REPLY: if (priv->attendee_sentby) - sender = g_strdup_printf (_("<b>%s</b> through has sent back the following assigned task response:"), attendee, priv->attendee_sentby); + sender = g_strdup_printf (_("<b>%s</b> through %s has sent back the following assigned task response:"), attendee, priv->attendee_sentby); else sender = g_strdup_printf (_("<b>%s</b> has sent back the following assigned task response:"), attendee); break; |