From 3d1a276753962f903a8c27af2fe54a524d61909d Mon Sep 17 00:00:00 2001 From: Christopher Hargarten Date: Mon, 20 Aug 2018 20:56:32 -0500 Subject: mime-actions: fix unhandled type dialog header The 'Could not display' dialog is, admittedly, pretty ugly. It's not properly capitalized, and, full stops do come across as rude to the user. This properly cases & removes the full stop from the unhandled type dialog header. https://gitlab.gnome.org/GNOME/nautilus/issues/583 --- src/nautilus-mime-actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nautilus-mime-actions.c') diff --git a/src/nautilus-mime-actions.c b/src/nautilus-mime-actions.c index 8f691b4f3..56feb82e9 100644 --- a/src/nautilus-mime-actions.c +++ b/src/nautilus-mime-actions.c @@ -1011,7 +1011,7 @@ get_application_no_mime_type_handler_message (NautilusFile *file, * white space then the text-wrapping code is too stupid to wrap it. */ uri_for_display = eel_str_middle_truncate (name, MAX_URI_IN_DIALOG_LENGTH); - error_message = g_strdup_printf (_("Could not display ā€œ%sā€."), uri_for_display); + error_message = g_strdup_printf (_("Could Not Display ā€œ%sā€"), uri_for_display); g_free (uri_for_display); g_free (name); -- cgit v1.2.1