From 8ea4faf0d349870ad445e60a0bccee74e248094b Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Thu, 18 Nov 2010 17:45:47 -0500 Subject: [PATCH] The colon is a bit unneccessary and looks a bit ugly --- gtk/gtkopenwithdialog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkopenwithdialog.c b/gtk/gtkopenwithdialog.c index c3b069cf5d..acc0bbf7c3 100644 --- a/gtk/gtkopenwithdialog.c +++ b/gtk/gtkopenwithdialog.c @@ -249,12 +249,12 @@ set_dialog_properties (GtkOpenWithDialog *self) if (name != NULL) { /* Translators: %s is a filename */ - label = g_strdup_printf (_("Select an application to open \"%s\":"), name); + label = g_strdup_printf (_("Select an application to open \"%s\""), name); } else { /* Translators: %s is a file type description */ - label = g_strdup_printf (_("Select an application for \"%s\" files:"), + label = g_strdup_printf (_("Select an application for \"%s\" files"), g_content_type_is_unknown (self->priv->content_type) ? self->priv->content_type : description); }