diff options
author | William Jon McCann <jmccann@redhat.com> | 2012-08-14 14:47:15 -0400 |
---|---|---|
committer | William Jon McCann <jmccann@redhat.com> | 2012-08-15 09:39:24 -0400 |
commit | d064618f50c39f9791ec41488aca4b45906ac0af (patch) | |
tree | 088450ccc4a65dace9b362ad360ca586cd12afae /libnautilus-private/nautilus-file-conflict-dialog.c | |
parent | 27436d97015484fb1525027cfd908310d4eaf004 (diff) | |
download | nautilus-d064618f50c39f9791ec41488aca4b45906ac0af.tar.gz |
Don't use italic in the file conflict dialog
It adds nothing and makes the text harder to read.
Diffstat (limited to 'libnautilus-private/nautilus-file-conflict-dialog.c')
-rw-r--r-- | libnautilus-private/nautilus-file-conflict-dialog.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libnautilus-private/nautilus-file-conflict-dialog.c b/libnautilus-private/nautilus-file-conflict-dialog.c index 186d9217f..7290fe414 100644 --- a/libnautilus-private/nautilus-file-conflict-dialog.c +++ b/libnautilus-private/nautilus-file-conflict-dialog.c @@ -250,13 +250,13 @@ file_list_ready_cb (GList *files, str = g_string_new (NULL); g_string_append_printf (str, "<b>%s</b>\n", _("Original file")); - g_string_append_printf (str, "<i>%s</i> %s\n", _("Size:"), size); + g_string_append_printf (str, "%s %s\n", _("Size:"), size); if (should_show_type) { - g_string_append_printf (str, "<i>%s</i> %s\n", _("Type:"), type); + g_string_append_printf (str, "%s %s\n", _("Type:"), type); } - g_string_append_printf (str, "<i>%s</i> %s", _("Last modified:"), date); + g_string_append_printf (str, "%s %s", _("Last modified:"), date); label_text = str->str; gtk_label_set_markup (GTK_LABEL (label), @@ -281,13 +281,13 @@ file_list_ready_cb (GList *files, } g_string_append_printf (str, "<b>%s</b>\n", _("Replace with")); - g_string_append_printf (str, "<i>%s</i> %s\n", _("Size:"), size); + g_string_append_printf (str, "%s %s\n", _("Size:"), size); if (should_show_type) { - g_string_append_printf (str, "<i>%s</i> %s\n", _("Type:"), type); + g_string_append_printf (str, "%s %s\n", _("Type:"), type); } - g_string_append_printf (str, "<i>%s</i> %s", _("Last modified:"), date); + g_string_append_printf (str, "%s %s", _("Last modified:"), date); label_text = g_string_free (str, FALSE); gtk_label_set_markup (GTK_LABEL (label), |