diff options
Diffstat (limited to 'libcaja-private/caja-file-conflict-dialog.c')
-rw-r--r-- | libcaja-private/caja-file-conflict-dialog.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libcaja-private/caja-file-conflict-dialog.c b/libcaja-private/caja-file-conflict-dialog.c index 45012e60..bbb1225b 100644 --- a/libcaja-private/caja-file-conflict-dialog.c +++ b/libcaja-private/caja-file-conflict-dialog.c @@ -281,14 +281,14 @@ 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), @@ -314,14 +314,14 @@ 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), |