[gnome-control-center] network: Set the connection editor title for VPN
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center] network: Set the connection editor title for VPN
- Date: Mon, 15 Apr 2013 12:27:35 +0000 (UTC)
commit 58a09ae1a7ef1f03611188bfa9bb6f2a100541b1
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Apr 12 21:59:09 2013 -0400
network: Set the connection editor title for VPN
https://bugzilla.gnome.org/show_bug.cgi?id=693780
panels/network/net-vpn.c | 9 +++++++++
1 file changed, 9 insertions(+)
---
diff --git a/panels/network/net-vpn.c b/panels/network/net-vpn.c
index 61ed8cc..944a616 100644
--- a/panels/network/net-vpn.c
+++ b/panels/network/net-vpn.c
@@ -277,6 +277,10 @@ nm_device_refresh_vpn_ui (NetVpn *vpn)
/* update title */
widget = GTK_WIDGET (gtk_builder_get_object (priv->builder,
"label_device"));
+ /* Translators: this is the title of the connection details
+ * window for vpn connections, it is also used to display
+ * vpn connections in the device list.
+ */
title = g_strdup_printf (_("%s VPN"), nm_connection_get_id (vpn->priv->connection));
net_object_set_title (NET_OBJECT (vpn), title);
gtk_label_set_label (GTK_LABEL (widget), title);
@@ -400,6 +404,7 @@ vpn_proxy_edit (NetObject *object)
NetConnectionEditor *editor;
NMClient *client;
NMRemoteSettings *settings;
+ gchar *title;
button = GTK_WIDGET (gtk_builder_get_object (vpn->priv->builder,
"button_options"));
@@ -411,6 +416,10 @@ vpn_proxy_edit (NetObject *object)
editor = net_connection_editor_new (GTK_WINDOW (window),
vpn->priv->connection,
NULL, NULL, client, settings);
+ title = g_strdup_printf (_("%s VPN"), nm_connection_get_id (vpn->priv->connection));
+ net_connection_editor_set_title (editor, title);
+ g_free (title);
+
g_signal_connect (editor, "done", G_CALLBACK (editor_done), vpn);
net_connection_editor_run (editor);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]