[gnome-control-center/gnome-3-8] network: Set the connection editor title for VPN



commit c11307b5f9b754939fac8ab187d6cf2de94113c7
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]