diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-01-12 01:25:24 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-01-13 14:56:56 +0100 |
commit | 5bdb265cec05efa811f5818bb92a97c4a211712d (patch) | |
tree | bae9d321a0855074399f2726158221c1cef302aa /libcaja-private | |
parent | ed977d25e487400f547997f95802d139e4fce26b (diff) | |
download | caja-5bdb265cec05efa811f5818bb92a97c4a211712d.tar.bz2 caja-5bdb265cec05efa811f5818bb92a97c4a211712d.tar.xz |
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
Diffstat (limited to 'libcaja-private')
-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), |