diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 8 | ||||
-rw-r--r-- | addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in | 2 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-migrate.c | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 88089025f1..892a7bce87 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,11 @@ +2008-08-12 Matthew Barnes <mbarnes@redhat.com> + + * gui/component/GNOME_Evolution_Addressbook.server.in.in: + Fix a typo. (#547369) + + * gui/component/addressbook-migrate.c: + Fix TeX-style quotes. (#547372) + 2008-08-12 Milan Crha <mcrha@redhat.com> ** Fix for bug #547308 diff --git a/addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in b/addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in index 4fe2ce7a6a..823d5bd89f 100644 --- a/addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in +++ b/addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in @@ -102,7 +102,7 @@ <oaf_attribute name="evolution2:config_item:priority" type="string" value="-6"/> <oaf_attribute name="name" type="string" - _value="Evolution S/Mime Certificate Management Control"/> + _value="Evolution S/MIME Certificate Management Control"/> </oaf_server> diff --git a/addressbook/gui/component/addressbook-migrate.c b/addressbook/gui/component/addressbook-migrate.c index 5b73f7ae1e..e6d5616e13 100644 --- a/addressbook/gui/component/addressbook-migrate.c +++ b/addressbook/gui/component/addressbook-migrate.c @@ -122,7 +122,7 @@ dialog_set_folder_name (MigrationContext *context, const char *folder_name) { char *text; - text = g_strdup_printf (_("Migrating `%s':"), folder_name); + text = g_strdup_printf (_("Migrating '%s':"), folder_name); gtk_label_set_text (GTK_LABEL (context->folder_label), text); g_free (text); |