aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog8
-rw-r--r--addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in2
-rw-r--r--addressbook/gui/component/addressbook-migrate.c2
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/migration.c2
5 files changed, 16 insertions, 3 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);
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index e388f51b23..02da8640ee 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-12 Matthew Barnes <mbarnes@redhat.com>
+
+ * gui/migration.c:
+ Fix TeX-style quotes. (#547372)
+
2008-08-12 Dmitrijs Ledkovs <dmitrij.ledkov@gmail.com>
** Fixes bug #498095
diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c
index 4c3cb53210..462a62b1b6 100644
--- a/calendar/gui/migration.c
+++ b/calendar/gui/migration.c
@@ -192,7 +192,7 @@ dialog_set_folder_name (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 (label, text);
g_free (text);