tui: fix title of "Edit Connection" form (rh #1090397)

Form titles should be in titlecase; this was the only one that wasn't.
This commit is contained in:
Dan Winship 2014-04-25 11:05:47 -04:00
parent a54fa87108
commit 0c2586a786

View file

@ -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);
}