From 0c2586a7861cdf8b79deaf4a90cc5967574521f7 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 25 Apr 2014 11:05:47 -0400 Subject: [PATCH] tui: fix title of "Edit Connection" form (rh #1090397) Form titles should be in titlecase; this was the only one that wasn't. --- tui/nmt-editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/nmt-editor.c b/tui/nmt-editor.c index c570842a42..b204a5c861 100644 --- a/tui/nmt-editor.c +++ b/tui/nmt-editor.c @@ -92,7 +92,7 @@ nmt_editor_new (NMConnection *connection) return g_object_new (NMT_TYPE_EDITOR, "connection", connection, "type-data", type_data, - "title", _("Edit connection"), + "title", _("Edit Connection"), "fullscreen-vertical", TRUE, NULL); }