From 5bdb265cec05efa811f5818bb92a97c4a211712d Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Tue, 12 Jan 2016 01:25:24 +0100 Subject: file-conflict-dialog: Don't use italic fonts It adds nothing and makes the text harder to read. taken from: https://git.gnome.org/browse/nautilus/commit/?id=d064618 --- libcaja-private/caja-file-conflict-dialog.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libcaja-private/caja-file-conflict-dialog.c') 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, "%s\n", _("Original file")); - g_string_append_printf (str, "%s %s\n", _("Size:"), size); + g_string_append_printf (str, "%s %s\n", _("Size:"), size); if (should_show_type) { - g_string_append_printf (str, "%s %s\n", _("Type:"), type); + g_string_append_printf (str, "%s %s\n", _("Type:"), type); } - g_string_append_printf (str, "%s %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, "%s\n", _("Replace with")); - g_string_append_printf (str, "%s %s\n", _("Size:"), size); + g_string_append_printf (str, "%s %s\n", _("Size:"), size); if (should_show_type) { - g_string_append_printf (str, "%s %s\n", _("Type:"), type); + g_string_append_printf (str, "%s %s\n", _("Type:"), type); } - g_string_append_printf (str, "%s %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), -- cgit v1.2.1