Fixed VPN notification popup 15/90015/2 accepted/tizen/3.0/ivi/20161011.055328 accepted/tizen/3.0/mobile/20161015.033927 accepted/tizen/3.0/tv/20161016.005224 accepted/tizen/3.0/wearable/20161015.083541 accepted/tizen/common/20160928.164135 accepted/tizen/ivi/20160929.081227 accepted/tizen/mobile/20160929.081119 accepted/tizen/tv/20160929.081202 accepted/tizen/wearable/20160929.081038 submit/tizen/20160928.053415 submit/tizen_3.0_common/20161104.104000 submit/tizen_3.0_ivi/20161010.000005 submit/tizen_3.0_mobile/20161015.000005 submit/tizen_3.0_tv/20161015.000004 submit/tizen_3.0_wearable/20161015.000004
authorSeonah Moon <seonah1.moon@samsung.com>
Wed, 28 Sep 2016 04:42:24 +0000 (13:42 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Wed, 28 Sep 2016 05:14:53 +0000 (14:14 +0900)
- Add new string IDs for VPN popup
- Add dependency with vpn-service
- Add vpnsvc_up()/down()

Change-Id: I14d43617544a998149ed132b35768dd3e5f77a06
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
57 files changed:
CMakeLists.txt
include/net-popup-strings.h
include/net-popup-vpn.h [new file with mode: 0755]
packaging/net.netpopup.spec
po/ar.po
po/az.po
po/bg.po
po/ca.po
po/cs.po
po/da.po
po/de.po
po/el_GR.po
po/en.po
po/en_PH.po
po/en_US.po
po/es_ES.po
po/es_US.po
po/et.po
po/eu.po
po/fi.po
po/fr.po
po/fr_CA.po
po/ga.po
po/gl.po
po/hi.po
po/hr.po
po/hu.po
po/hy.po
po/is.po
po/it_IT.po
po/ja_JP.po
po/ka.po
po/kk.po
po/ko_KR.po
po/lt.po
po/lv.po
po/mk.po
po/nb.po
po/nl.po
po/pl.po
po/pt_BR.po
po/pt_PT.po
po/ro.po
po/ru_RU.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr_TR.po
po/uk.po
po/uz.po
po/zh_CN.po
po/zh_HK.po
po/zh_TW.po
resources/net.netpopup.xml
src/net-popup-vpn.c [new file with mode: 0755]
src/net-popup.c

index e0a304359856014a6dede9a7ceb3b3e641f23eba..0fc18bdc1ce4abfe595c76ab59e2eb20eed2edcc 100755 (executable)
@@ -1,7 +1,10 @@
 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
 PROJECT(net-popup C)
 
-SET(SRCS ${CMAKE_SOURCE_DIR}/src/net-popup.c)
+SET(SRCS
+       ${CMAKE_SOURCE_DIR}/src/net-popup.c
+       ${CMAKE_SOURCE_DIR}/src/net-popup-vpn.c)
+
 
 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
 SET(LOCALEDIR "${PREFIX}/share/locale")
@@ -30,7 +33,8 @@ pkg_check_modules(pkgs REQUIRED
        gio-unix-2.0
        appsvc
        vconf
-       efl-extension)
+       efl-extension
+       capi-vpnsvc)
 
 FOREACH(flag ${pkgs_CFLAGS})
        SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
index 2f65b0f949e2d14087ee40186459d3cb1e73bafc..08efab7dfc44aa92bd67216bc0762c72a6134711 100755 (executable)
 #define ALERT_STR_WIFI_TETHERING                       dgettext(PACKAGE, "IDS_MOBILEAP_MBODY_WI_FI_TETHERING")
 #define ALERT_STR_BT_TETHERING                         dgettext(PACKAGE, "IDS_MOBILEAP_BODY_BLUETOOTH_TETHERING")
 #define ALERT_STR_USB_TETHERING                                dgettext(PACKAGE, "IDS_MOBILEAP_MBODY_USB_TETHERING")
-#define ALERT_STR_VPN_TITLE                                    dgettext(PACKAGE, "IDS_ST_BODY_VPN")
-#define ALERT_STR_VPN_CONTENT                          dgettext(PACKAGE, "IDS_TPLATFORM_BODY_THIS_APPLICATION_CAN_SET_UP_AND_MANAGE_VIRTUAL_PRIVATE_NETWORK_SERVICES_HVPNS")
-
-
+#define ALERT_STR_VPN_CONNECT_TITLE                    dgettext(PACKAGE, "IDS_ST_HEADER_CONNECT_TO_VPN")
+#define ALERT_STR_VPN_DISCONNECT_TITLE         dgettext(PACKAGE, "IDS_ST_HEADER_DISCONNECT_FROM_VPN")
+#define ALERT_STR_VPN_CONNECT_CONTENT          dgettext(PACKAGE, "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE")
+#define ALERT_STR_VPN_DISCONNECT_CONTENT       dgettext(PACKAGE, "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE")
+#define ALERT_STR_VPN_CONNECT_BUTTON           dgettext(PACKAGE, "IDS_ST_BUTTON_CONNECT_ABB6")
+#define ALERT_STR_VPN_DISCONNECT_BUTTON                dgettext(PACKAGE, "IDS_ST_BUTTON_DISCONNECT_ABB5")
 
 #endif /* __DEF_NET_POPUP_STRINGS_H__ */
diff --git a/include/net-popup-vpn.h b/include/net-popup-vpn.h
new file mode 100755 (executable)
index 0000000..a9560f8
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+*  net-popup
+*
+* Copyright 2012  Samsung Electronics Co., Ltd
+*
+* Licensed under the Flora License, Version 1.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.tizenopensource.org/license
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/
+
+#ifndef __DEF_NET_POPUP_VPN_H__
+#define __DEF_NET_POPUP_VPN_H__
+
+#define VPNSVC_ERROR_CANCELED (TIZEN_ERROR_VPNSVC | 0x10)
+const char *__get_vpn_error_message(vpnsvc_error_e error);
+int _vpnsvc_up(char *iface_name);
+int _vpnsvc_down(char *iface_name);
+
+#endif /* __DEF_NET_POPUP_H__ */
index 74559bd498741bd204e3f3eb8cf4c7b94b6edec8..67a29135f21b060cdab693ff2530162e260463d6 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       net.netpopup
 Summary:    Network Notification Popup applicationa
-Version:    0.2.84
+Version:    0.2.85
 Release:    1
 Group:      App/Network
 License:    Flora-1.1
@@ -23,6 +23,7 @@ BuildRequires: pkgconfig(appsvc)
 BuildRequires: pkgconfig(vconf)
 BuildRequires: pkgconfig(efl-extension)
 BuildRequires: pkgconfig(libtzplatform-config)
+BuildRequires: pkgconfig(capi-vpnsvc)
 BuildRequires: gettext
 BuildRequires: edje-tools
 
index 0e43cfaaba969ab1136c0791f21a053a066a97fd..5e65cc5647590e6b2dee1ae4f82d35ac39301d44 100755 (executable)
--- a/po/ar.po
+++ b/po/ar.po
@@ -70,3 +70,21 @@ msgstr "يتعذر التوصيل."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "الخدمة غير متوفرة، حاول ثانية."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "قطع الاتصال"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "سيتم قطع اتصال جهازك من خدمة الشبكة الخاصة الظاهرية (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "قطع الاتصال من شبكة VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "اتصال"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "سيتم توصيل جهازك بخدمة الشبكة الخاصة الظاهرية (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "الاتصال بشبكة VPN"
+
index beed44f4276384184a13a6193677b79b7bf97fca..3d0618346cf4971d838101547f445c772a1196a8 100755 (executable)
--- a/po/az.po
+++ b/po/az.po
@@ -70,3 +70,21 @@ msgstr "Qoşulmaq mümkün deyil."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Xidmətdən istifadə etmək mümkün deyil. Bir az sonra cəhd edin."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Bağlan-ı kəs"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Cihazınız virtual şəxsi şəbəkə (VPN) xidmətindən ayrılacaq."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN-dən ayır"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Qoşul"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Cihazınız virtual şəxsi şəbəkə (VPN) xidmətinə qoşulacaq."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN-ə qoşul"
+
index 7a3c762b7c7974aed6c2888e75c616a23cca773f..29fb0bd86564f14d024307062687dd2fad34ad1a 100755 (executable)
--- a/po/bg.po
+++ b/po/bg.po
@@ -70,3 +70,21 @@ msgstr "Не може да се свърже."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Услугата не е достъпна. опитайте отново."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Прекъс. вр."
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Устройството ви ще бъде изключено от услугата за виртуални частни мрежи (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Изключване от VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Свързване"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Устройството ви ще бъде свързано към услугата за виртуални частни мрежи (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Свързване с VPN"
+
index 25a152ec6a8c139c3902c7cd6162ec272ccee980..a30e627e91429a5b94cff057c824b92c027621b6 100755 (executable)
--- a/po/ca.po
+++ b/po/ca.po
@@ -70,3 +70,21 @@ msgstr "No es pot connectar"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Servei no disponible. Intenti-ho més tard."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Desconnectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "El dispositiu es desconnectarà del servei de xarxa privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Desconnectar de VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Connectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "El dispositiu es connectarà al servei de xarxa privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Connectar a VPN"
+
index a51228e6d9b7def1b08e44242bfc95823edf10c4..58ebe45e27a1edb59710e94d6dd35133cbd0ff2a 100755 (executable)
--- a/po/cs.po
+++ b/po/cs.po
@@ -70,3 +70,21 @@ msgstr "Nelze se připojit."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Služba je nedostupná. opakujte akci později."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Odpojit"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Zařízení bude odpojeno od služby VPN (virtuální privátní síť)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Odpojit od VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Připojit"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Zařízení bude připojeno ke službě VPN (virtuální privátní síť)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Připojit k VPN"
+
index f71eb8f9585d54ac2fcff7df66e34e40c67acdfe..473da6154a663a49930f38fdddcc279e091829f7 100755 (executable)
--- a/po/da.po
+++ b/po/da.po
@@ -70,3 +70,21 @@ msgstr "Der kan ikke oprettes forbindelse."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Tjenesten er ikke tilgængelig. Prøv igen senere."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Afbryd forb."
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Forbindelsen mellem din enhed og VPN-tjenesten vil blive afbrudt."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Afbryd forbindelse til VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Forbind"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Din enhed vil blive forbundet med VPN-tjenesten."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Opret forbindelse til VPN"
+
index 09ba124bffbc86249a128c7883fdb090e82004eb..cb634a6175885aa75e9c697711b7b3f6bb3d5846 100755 (executable)
--- a/po/de.po
+++ b/po/de.po
@@ -70,3 +70,21 @@ msgstr "Verbinden nicht möglich"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Dienst nicht verfügbar. Später erneut versuchen"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Trennen"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ihr Gerät trennt eine Verbindung mit dem VPN (Virtual Privat Network)-Dienst."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Trennen der VPN-Verbindung"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Verbinden"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ihr Gerät stellt eine Verbindung mit dem VPN (Virtual Privat Network)-Dienst her."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Verbinden mit VPN"
+
index db373eeffedf46169379b5ca203737c018b96aff..9e377ed88f17f32150a999586839c7ead10bb179 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Δεν είναι δυνατή η σύνδεση."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Η υπηρεσία δεν είναι διαθέσιμη, δοκιμάστε αργότερα!."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Αποσύνδεση"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Η συσκευή σας θα αποσυνδεθεί από την υπηρεσία εικονικού ιδιωτικού δικτύου (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Αποσύνδεση από VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Σύνδεση"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Η συσκευή σας θα συνδεθεί στην υπηρεσία εικονικού ιδιωτικού δικτύου (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Σύνδεση στο VPN"
+
index 8778ebd849ba1374434e028375bb42a341bd9d95..94f1004ed7fca7b7f30ae8badc3b34d21e31afb4 100755 (executable)
--- a/po/en.po
+++ b/po/en.po
@@ -70,3 +70,21 @@ msgstr "Unable to connect."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Service not available. Try later."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Disconnect"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Your device will be disconnected from the virtual private network (VPN) service."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Disconnect from VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Connect"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Your device will be connected to the virtual private network (VPN) service."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Connect to VPN"
+
index 292e6ad3c3c276e159de1d7ff8480aa48e9bb212..45ae126ea04cd9ebbb830b3ae2934c8e30ea403b 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Unable to connect."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Service is temporarily offline. Try again later"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Disconnect"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Your device will be disconnected from the virtual private network (VPN) service."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Disconnect from VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Connect"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Your device will be connected to the virtual private network (VPN) service."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Connect to VPN"
+
index ddb7710785613259916de51d28bfef8c3535f510..01117f0e403e4577b83114633cd636ac7dabab4d 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Unable to connect."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Service unavailable. Try later."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Disconnect"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Your device will be disconnected from the virtual private network (VPN) service."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Disconnect from VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Connect"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Your device will be connected to the virtual private network (VPN) service."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Connect to VPN"
+
index 7d8d85fac743d60bdc0968e7ca0c89e411932527..52166dafc10f955914989b3e15b9c9ddff4d2ddd 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "No se puede conectar"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Servicio no disponible. Inténtelo más tarde."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Desconectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Su dispositivo se desconectará del servicio de red privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Desconectar de VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Conectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Su dispositivo se conectará al servicio de red privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Conectar a VPN"
+
index 0731d1557317dcaf3f4b84f66c4a61f6b5e33430..e55071f92df56801de725c9b77497c932ca28d98 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Error al conectar."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Servicio no disponible. Inténtelo más tarde."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Desconectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Su dispositivo se desconectará del servicio de red privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Desconectar de VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Conectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Su dispositivo se conectará al servicio de red privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Conectar a VPN"
+
index 728e865f4d51e8b5a0c2950d050245568d0e7175..e02043a649190c38cade0d4f4f22a0f95d71b171 100755 (executable)
--- a/po/et.po
+++ b/po/et.po
@@ -70,3 +70,21 @@ msgstr "Ei saa ühendada."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Teenus ei ole saadaval. proovi hiljem."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Katk. ühen."
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Teie seadme ühendus virtuaalsete privaatvõrkude (VPN) teenusega katkestatakse."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN-iga ühenduse lahutamine"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Ühenda"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Teie seade ühendatakse virtuaalsete privaatvõrkude (VPN) teenusega."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN-iga ühenduse loomine"
+
index 5d56ee442a21b00f7a71edeb8e4e7517ead28a96..5b23278a9d85f76b1b5fe8a2295f59638e95efd0 100755 (executable)
--- a/po/eu.po
+++ b/po/eu.po
@@ -70,3 +70,21 @@ msgstr "Ezin da konektatu"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Zerbitzua ez dago eskuragarri. Geroago saiatu."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Deskonektatu"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Zure gailua sare pribatu birtualaren (VPN) zerbitzutik deskonektatuko da."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Deskonektatu VPNtik"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Konektatu"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Zure gailua sare pribatu birtualaren (VPN) zerbitzura konektatuko da."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Konektatu VPNra"
+
index f97a72deb891527f537e1c4139d33f95e52f77c4..895defb6789817c8b2f59d08192340e142c75f91 100755 (executable)
--- a/po/fi.po
+++ b/po/fi.po
@@ -70,3 +70,21 @@ msgstr "Yhdistäminen epäonnistui."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Palvelu ei ole saatavilla. Yritä myöhemmin uudelleen."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Katk. yhteys"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Laitteesi yhteys katkaistaan näennäiseen yksityisverkkopalveluun (VPN-palveluun)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Katkaise VPN-yhteys"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Yhdistä"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Laitteesi yhdistetään näennäiseen yksityisverkkopalveluun (VPN-palveluun)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Muodosta VPN-yhteys"
+
index 4ae066b52b07cd0d6a69d16be6c91b794357413b..1fe7c71440268ae6813deaf99e65c8d65c3377bd 100755 (executable)
--- a/po/fr.po
+++ b/po/fr.po
@@ -70,3 +70,21 @@ msgstr "Connexion impossible"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Service non disponible. Réessayez plus tard."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Déconnecter"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Votre appareil va être déconnecté du service de réseau privé virtuel (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Déconnexion du VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Connecter"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Votre appareil va être connecté au service de réseau privé virtuel (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Connexion au VPN"
+
index 30d587947ffe8d413a8c22f1cabd72f7f4457628..ed5bf87a49127a7e8defe3d9939732c144f4e721 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Connexion impossible."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Service non disponible. Réessayez plus tard."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Déconnecter"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Votre appareil va être déconnecté du service de réseau privé virtuel (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Déconnexion du VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Connecter"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Votre appareil va être connecté au service de réseau privé virtuel (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Connexion au VPN"
+
index 029240d23d680483c8e92fbf27df208c9c8f4fa6..b610999c3d2638af2e9be2c11c4a09a11438475d 100755 (executable)
--- a/po/ga.po
+++ b/po/ga.po
@@ -70,3 +70,21 @@ msgstr "Ní féidir nascadh."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Níl seirbhís ar fáil. Triail arís níos moille."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Dínasc"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Dínascfar do ghléas ón tseirbhís líonra phríobháidigh fhíorúil (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Dínasc ó VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Nasc"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Nascfar do ghléas leis an tseirbhís líonra phríobháidigh fhíorúil (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Nasc le VPN"
+
index 59fae43962bb9ce7f20b23d39e5585696519a101..eb44dc6497f258780fed30af4ad99ee2474d23f1 100755 (executable)
--- a/po/gl.po
+++ b/po/gl.po
@@ -70,3 +70,21 @@ msgstr "Non se pode conectar"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Servizo non dispoñible. Inténteo máis tarde."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Desconectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "O teu dispositivo estará desconectado do servizo de rede privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Desconectar de VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Conectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "O teu dispositivo estará conectado ao servizo de rede privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Conectar á VPN"
+
index cab3baff9834112fc97a0ab19e2af520efc73788..3d51c7995042493f0dd50c8deeb22635007a03bb 100755 (executable)
--- a/po/hi.po
+++ b/po/hi.po
@@ -70,3 +70,21 @@ msgstr "कनेक्‍ट करने में अक्षम।"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "सेवा अनुपलब्‍ध। बाद में कोशिश करें।"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "डिस्कनेक्ट"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "आपका डिवाइस वर्चुअल प्राइवेट नेटवर्क (VPN) सेवा से डिस्कनेक्ट किया जाएगा।"
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN से डिस्कनेक्ट करें"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "कनेक्ट करें"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "आपका डिवाइस वर्चुअल प्राइवेट नेटवर्क (VPN) सेवा से कनेक्ट किया जाएगा।"
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN से कनेक्ट करें"
+
index c96ba30ded9e0b29621384d25220ca8e3b666794..8c677ed85cb5acf6d93bde0c224958b295896647 100755 (executable)
--- a/po/hr.po
+++ b/po/hr.po
@@ -70,3 +70,21 @@ msgstr "Spajanje nemoguće."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Usluga nije dostupna, Pokušajte poslije!."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Prekini vezu"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Uređaj će biti odspojen od usluge virtualne privatne mreže (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Odspajanje s VPN-a"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Poveži"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Uređaj će se povezati na uslugu virtualne privatne mreže (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Povezivanje na VPN"
+
index dfedbe3635a37e6f20f8f65768ca170b11bfaa80..f7caa41f001edb1ad5d654affea25b8a9a65d13e 100755 (executable)
--- a/po/hu.po
+++ b/po/hu.po
@@ -70,3 +70,21 @@ msgstr "A csatlakozás sikertelen."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "A szolgáltatás nem elérhető. próbálja meg később."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Leválasztás"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Az eszközt le fogja választani a virtuális magánhálózatról (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN-kapcsolat bontása"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Kapcsolódás"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Az eszköz csatlakozni fog a virtuális magánhálózathoz (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Kapcsolódás VPN-hez"
+
index 01bcfaf444873713bd42748d0e074a3638e069e0..02dab4d9eccd1ed08c2abaf1be01473919595ea4 100755 (executable)
--- a/po/hy.po
+++ b/po/hy.po
@@ -70,3 +70,21 @@ msgstr "Հնարավոր չէ միանալ:"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Ծառայությունը հասանելի չէ. Փորձեք ավելի ուշ:"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Անջատել"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ձեր սարքը կանջատվի վիրտուալ մասնավոր ցանցի (VPN) ծառայությունից:"
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Անջատել VPN-ից"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Միացնել"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ձեր սարքը կմիացվի վիրտուալ մասնավոր ցանցի (VPN) ծառայությանը:"
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Միացնել VPN-ին"
+
index f68aad02b360c72af7cb5642539c26fe9790f654..6eeb293ab9c5b5ce02877d9b8242905f3b5eafb8 100755 (executable)
--- a/po/is.po
+++ b/po/is.po
@@ -70,3 +70,21 @@ msgstr "Mistókst að tengja."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Þjónustan er ekki tiltæk. Reyndu síðar."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Aftengja"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Tækið verður aftengt frá VPN-þjónustunni."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Aftengjast VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Tengjast"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Tækið verður tengt við VPN-þjónustuna."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Tengjast VPN"
+
index 1d4459110923bfe83123da0c71f5641982023bc3..f055c3f57e43f9518c92e0b43637b093e3498927 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Impossibile stabilire connessione."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Servizio non disponibile. Riprovare più tardi."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Disconnetti"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Il dispositivo verrà disconnesso dal servizio Virtual Private Network (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Disconnetti da VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Connetti"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Il dispositivo verrà connesso al servizio Virtual Private Network (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Connetti a VPN"
+
index 5b4a927d02616130fc5a35ee1200a0aba5c8f63f..be3c3c9734d11914dbb949a0e4ae58de3d2b49ee 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "接続できません。"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "サービスを利用できません。後ほどお試しください。"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "接続を解除"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "端末とVPNサービスの接続を解除します。"
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPNとの接続を解除"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "接続"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "端末をVPNサービスに接続します。"
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPNに接続"
+
index 097d35d87971c1b95656c5a9e320b3a8253296c2..620541548f592713fafce5053fc023b362df65c4 100755 (executable)
--- a/po/ka.po
+++ b/po/ka.po
@@ -70,3 +70,21 @@ msgstr "ვერ დაუკავშირდებით."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "მომსახურება არ არის. მოგვიანებით ცადეთ."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "გამორთვა"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "თქვენი მოწყობილობა შეწყვეტს კავშირს ვიზუალური პერსონალური ქსელის (VPN) სერვისთან."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN-დან გათიშვა"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "დაკავშირება"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "თქვენი მოწყობილობა დაუკავშირდება ვიზუალური პერსონალური ქსელის (VPN) სერვისს."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN-თან დაკავშირება"
+
index 4eafaaafbced8728bcfa2f5ef01f5ce3243185ae..fe5b9178c3ced349b694b05126995f365b90b3dc 100755 (executable)
--- a/po/kk.po
+++ b/po/kk.po
@@ -70,3 +70,21 @@ msgstr "Қосылу мүмкін емес."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Қызмет Жоқ. Кейінрек Қайталаңыз."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Ажырату"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Құрылғыңыз виртуалды жеке желі (VPN) қызметінен ажыратылады."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN желісінен ажырату"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Қосылу"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Құрылғыңыз виртуалды жеке желі (VPN) қызметіне қосылады."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN желісіне қосылу"
+
index 770b92ec02862e558ccfde4ed660840e0858064d..30e619a985c5832a878ae885c05015a74bf408c0 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "연결할 수 없습니다."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "서비스를 이용할 수 없습니다. 나중에 시도하세요."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "연결 해제"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "디바이스와 가상사설망(VPN) 서비스 연결이 해제됩니다."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN에서 연결 해제"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "연결"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "디바이스와 가상사설망(VPN) 서비스가 연결됩니다."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN에 연결"
+
index 8cb92148c636df7264ff70d0eef1bcc085c81e3c..b0297b584af3e88338c855b0c7d080e387b1d25c 100755 (executable)
--- a/po/lt.po
+++ b/po/lt.po
@@ -70,3 +70,21 @@ msgstr "Neįmanoma prijungti."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Paslauga neteikiama. pamėginkite vėliau."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Atsijungti"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Jūsų įrenginys bus atjungtas nuo virtualaus privataus tinklo (VPN) paslaugos."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Atsijungti nuo VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Jungtis"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Jūsų įrenginys bus prijungtas prie virtualaus privataus tinklo (VPN) paslaugos."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Prisijungti prie VPN"
+
index 8598739e8b4f104f279688efc7598a9a3af15908..25f6e469b2971bf869a8643455ce2a0e7894348e 100755 (executable)
--- a/po/lv.po
+++ b/po/lv.po
@@ -70,3 +70,21 @@ msgstr "Nevar izveidot savienojumu."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Pakalpojums nav pieejams. mēģiniet vēlāk."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Atvienot"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ierīce tiks atvienota no virtuālā privātā tīkla (VPN) pakalpojuma."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Atvienot no VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Savienot"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ierīce tiks savienota ar virtuālā privātā tīkla (VPN) pakalpojumu."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Izveidot savienojumu ar VPN"
+
index 9de221ef9f207fd2c646e80b34ed7f210c3526a2..89793c3cb24102a00e5dc5a5bf19dfb59f459c76 100755 (executable)
--- a/po/mk.po
+++ b/po/mk.po
@@ -70,3 +70,21 @@ msgstr "Не е можно поврзување."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Услугата е недостапна. обидете се подоцна."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Прек. врска"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Врската на Вашиот уред со услугата за виртуелна приватна мрежа (VPN) ќе се прекине."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Прекини врска од VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Поврзи"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Вашиот уред ќе се поврзе со услугата за виртуелна приватна мрежа (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Поврзи се со VPN"
+
index bd91d8a630d8265ce8944242dd205a4c82344be3..665f10ff7f5f1dc8c74e8928d903c98bc59e4f18 100755 (executable)
--- a/po/nb.po
+++ b/po/nb.po
@@ -70,3 +70,21 @@ msgstr "Kan ikke opprette forbindelse."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Tjenester er ikke tilgjengelig. forsøk senere."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Koble fra"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Enheten din blir koblet fra tjenesten for det virtuelle private nettverket (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Koble fra VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Koble til"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Enheten din blir koblet til tjenesten for det virtuelle private nettverket (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Koble til VPN"
+
index e49548b904bf092d96966b996de25f96ed82d578..6bcc4d7389fa14a7fa30a3a8f5d1b5b7611c1a32 100755 (executable)
--- a/po/nl.po
+++ b/po/nl.po
@@ -70,3 +70,21 @@ msgstr "Verbinding mislukt."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Dienst niet beschikbaar. Probeer het later opnieuw."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Verb. verbr."
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "De verbinding van uw apparaat met de VPN-service (Virtual Private Network) wordt verbroken."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Verbinding met VPN verbreken"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Verbinden"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Uw apparaat wordt verbonden met de VPN-service (Virtual Private Network)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Verbinden met VPN"
+
index 2a3b04d068cc0ab0faa0dc4fa7268c5087ea59a7..2efc8358fdacc6219b0b0ffa8c633725688453d6 100755 (executable)
--- a/po/pl.po
+++ b/po/pl.po
@@ -70,3 +70,21 @@ msgstr "Nie można połączyć."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Usługa niedostępna. Spróbuj później."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Rozłącz"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Urządzenie zostanie rozłączone z usługą wirtualnej sieci prywatnej (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Rozłączanie z siecią VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Połącz"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Urządzenie zostanie połączone z usługą wirtualnej sieci prywatnej (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Łączenie z siecią VPN"
+
index 5bc31b09f5623ac9bbe3773c3c799d0290bba66b..e0daf2674181c8982f73ae3554c830eaca8633ca 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Impossível conectar."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Serviço indisponível. Tente mais tarde."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Desconectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Seu aparelho será desconectado do serviço de VPN (rede privada virtual)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Desconectar da VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Conectar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Seu aparelho será conectado ao serviço de VPN (rede privada virtual)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Conectar à VPN"
+
index c6283b02b570ca638b8a73aa38e1593c8a86c3bb..8c62116c2ded8c3b785f2d57da7ab52c07f8e89f 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Impossível ligar."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Serviço indisponível. tente mais tarde."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Desligar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "O seu dispositivo será desligado do serviço de rede privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Desligar da VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Ligar"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "O seu dispositivo será ligado ao serviço de rede privada virtual (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Ligar à VPN"
+
index c2b04a8cad5c56d3150c2fd4845dbe00f3c4d2da..80c21a33b3c4739df4e11a2375fcd2f17e59832f 100755 (executable)
--- a/po/ro.po
+++ b/po/ro.po
@@ -70,3 +70,21 @@ msgstr "Conectare imposibilă"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Serviciu indisponibil, încercați mai târziu!."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Deconectare"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Dispozitivul va fi deconectat de la serviciul de rețea virtuală privată (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Deconectare de la VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Conectare"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Dispozitivul va fi conectat la serviciul de rețea virtuală privată (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Conectare la VPN"
+
index 62dffbfbf96d8247b8760000abdf7776aac26d27..85bad88d731ec42ca05a097d0094802e88b3e5c4 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Невозможно подключиться."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Услуга недоступна. повторите попытку позже."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Отключить"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ваше устройство будет отключено от виртуальной частной сети (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Отключение от VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Подключить"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ваше устройство будет подключено к виртуальной частной сети (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Подключение к VPN"
+
index 4ca7873bf450b500a5e668388f962b6766bc5c9d..241ea2e7eed81c91e920c0b4ff5537eff5b63ebe 100755 (executable)
--- a/po/sk.po
+++ b/po/sk.po
@@ -70,3 +70,21 @@ msgstr "Nedá sa spojiť."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Služba je nedostupná. skúste to znova."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Odpojiť"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Vaše zariadenie sa odpojí od služby virtuálnej súkromnej siete (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Odpojenie od siete VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Pripojiť"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Vaše zariadenie sa pripojí k službe virtuálnej súkromnej siete (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Pripojenie k sieti VPN"
+
index e681d36368adbd1c4d7afa64750680d0d8e467ab..6ee4365f46f7f6a2694e335e3fb8aa3b9ecea943 100755 (executable)
--- a/po/sl.po
+++ b/po/sl.po
@@ -70,3 +70,21 @@ msgstr "Ni mogoče povezati."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Storitve ni na voljo. poskusite znova."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Prek. povez."
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Povezava vaše naprave s storitvijo VPN (navidezno zasebno omrežje) bo prekinjena."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Prekinitev povezave z VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Poveži"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Povezava vaše naprave s storitvijo VPN (navidezno zasebno omrežje) bo vzpostavljena."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Povezava z VPN"
+
index 331d1a7471ab7e539e761a3f03d5d8cc011f9e6b..de201a706d1a2140e1fd5f98a83a5eae991abd8e 100755 (executable)
--- a/po/sr.po
+++ b/po/sr.po
@@ -70,3 +70,21 @@ msgstr "Povezivanje nemoguće."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Usluga nedostupna. probaj kasnije."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Prekini vezu"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Prekinuće se veza vašeg uređaja i usluge virtuelne privatne mreže (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Prekinite vezu sa VPN uslugom"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Poveži se"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Vaš uređaj će se povezati na uslugu virtuelne privatne mreže (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Povežite se na VPN"
+
index 980cbe31e227eb8d1a1a63ff0648a6e6f861d2c5..f6782278be430841877e43f4fe2954f169abde67 100755 (executable)
--- a/po/sv.po
+++ b/po/sv.po
@@ -70,3 +70,21 @@ msgstr "Det gick inte att ansluta."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Tjänsten är inte tillgänglig. försök senare."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Koppla ifrån"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Enheten kopplas bort från VPN-tjänsten (virtuellt privat nätverk)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Koppla ifrån VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Anslut"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Enheten ansluts till en VPN-tjänst (virtuellt privat nätverk)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Anslut till VPN"
+
index 287563c8b4a5aee25587b8797959912bc35d925f..a149854cd42ad46f685f03fcecbb7ce84201ac36 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "Bağlantı başarısız."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Hizmete Erişilemiyor. Daha Sonra Deneyin."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Bağlntyı kes"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Cihazınızın sanal özel ağ (VPN) servisiyle bağlantısı kesilecek."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN bağlantısını kes"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Bağlan"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Cihazınız sanal özel ağ (VPN) servisine bağlanacak."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN'ye bağlan"
+
index f4e20559cf3afb55158f5c08515db5eeeda4a55b..29a226426d2500c2e04364ab5f2ec322d959e4aa 100755 (executable)
--- a/po/uk.po
+++ b/po/uk.po
@@ -70,3 +70,21 @@ msgstr "Неможливо з’єднатися."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Послуга недоступна. спробуйте пізніше."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Відключити"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ваш пристрій буде відключено від віртуальної приватної мережі (VPN)."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "Відключення від VPN"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Підключити"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Ваш пристрій буде підключено до віртуальної приватної мережі (VPN)."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "Підключення до VPN"
+
index fcfe9af30539667f73b1f11b7837ab7029209fa4..ccf35618491b09f434d4aa1506a2f1910ab374b5 100755 (executable)
--- a/po/uz.po
+++ b/po/uz.po
@@ -70,3 +70,21 @@ msgstr "Ulanib bo‘lmaydi."
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "Xizmatdan foydalanib bo‘lmaydi. Keyinroq urinib ko‘ring."
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "Uzish"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Qurilmangiz virtual shaxsiy tarmoq (VPN) xizmatidan uziladi."
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "VPN’dan uzish"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "Ulanish"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "Qurilmangiz virtual shaxsiy tarmoq (VPN) xizmatiga ulanadi."
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "VPN’ga ulanish"
+
index b093499ce3ec1731dbe3416935745559c1a1a450..40500fdb6dfd2617675aaa7592076eae10f88338 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "无法连接。"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "服务不可用。稍后再试。"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "断开连接"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "您的设备将从虚拟专用网络 (VPN) 服务断开连接。"
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "从 VPN 断开连接"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "连接"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "您的设备将连接至虚拟专用网络 (VPN) 服务。"
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "连接至 VPN"
+
index 168daa0e0b6d8af6a35d7d463f2a133af6a43caa..68c16068b6a79f45d58e19a183bc9a3347259b0b 100755 (executable)
@@ -70,3 +70,21 @@ msgstr "無法連接。"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "無可用服務。請稍後再試。"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "中斷連接"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "您的裝置將從虛擬私人網絡 (VPN) 服務中斷連接。"
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "從 VPN 中斷連接"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "連接"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "您的裝置將連接至虛擬私人網絡 (VPN) 服務。"
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "連接至 VPN"
+
index 46d3ea15d7c56ed3337a4f0576749ca11415079b..2ce31fd4c95a70404cd8d17887259151ee8a89f3 100755 (executable)
@@ -50,7 +50,7 @@ msgid "IDS_MOBILEAP_BODY_BLUETOOTH_TETHERING"
 msgstr "藍牙網路共享"
 
 msgid "IDS_MOBILEAP_MBODY_USB_TETHERING"
-msgstr "USB數據連線"
+msgstr "USB 網路共享"
 
 msgid "IDS_MOBILEAP_MBODY_WI_FI_TETHERING"
 msgstr "Wi-Fi 網路共享"
@@ -70,3 +70,21 @@ msgstr "無法連線。"
 msgid "IDS_IM_POP_SERVICE_NOT_AVAIL"
 msgstr "無法使用服務。請稍後再試。"
 
+msgid "IDS_ST_BUTTON_DISCONNECT_ABB5"
+msgstr "中斷連接"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_DISCONNECTED_FROM_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "您的裝置將從虛擬私人網路 (VPN) 中斷。"
+
+msgid "IDS_ST_HEADER_DISCONNECT_FROM_VPN"
+msgstr "中斷 VPN 連線"
+
+msgid "IDS_ST_BUTTON_CONNECT_ABB6"
+msgstr "連接"
+
+msgid "IDS_ST_POP_YOUR_DEVICE_WILL_BE_CONNECTED_TO_THE_VIRTUAL_PRIVATE_NETWORK_HVPN_SERVICE"
+msgstr "您的裝置將連接到虛擬私人網路 (VPN)。"
+
+msgid "IDS_ST_HEADER_CONNECT_TO_VPN"
+msgstr "連接 VPN"
+
index e0623e212d3a2364f6c17e9cbec1ffb71d56ae39..5106dcedcc034bf8b4e03d4ff9cead96c22be008 100755 (executable)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="net.netpopup" api-version="2.4" version="2.4" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="net.netpopup" api-version="3.0" version="3.0" install-location="internal-only">
        <label>Network popup</label>
        <description>Network popup</description>
        <ui-application appid="net.netpopup" exec="/usr/bin/net-popup" nodisplay="true" multiple="true" type="capp" taskmanage="false">
@@ -10,5 +10,7 @@
        </ui-application>
        <privileges>
                <privilege>http://tizen.org/privilege/notification</privilege>
+               <privilege>http://tizen.org/privilege/vpnservice</privilege>
+               <privilege>http://tizen.org/privilege/internet</privilege>
        </privileges>
 </manifest>
diff --git a/src/net-popup-vpn.c b/src/net-popup-vpn.c
new file mode 100755 (executable)
index 0000000..efea756
--- /dev/null
@@ -0,0 +1,117 @@
+/*
+*  net-popup
+*
+* Copyright 2012  Samsung Electronics Co., Ltd
+*
+* Licensed under the Flora License, Version 1.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.tizenopensource.org/license
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/
+
+#include <glib.h>
+#include <stdio.h>
+#include <vpn_service.h>
+#include <vpn_service_internal.h>
+
+#include "net-popup.h"
+#include "net-popup-vpn.h"
+#include "net-popup-strings.h"
+
+#define VPNSVC_ERROR_CANCELED (TIZEN_ERROR_VPNSVC | 0x10)
+
+static vpnsvc_h vpnsvc = NULL;
+
+const char *__get_vpn_error_message(vpnsvc_error_e error)
+{
+       switch (error) {
+       case VPNSVC_ERROR_NONE:
+               return "VPNSVC_ERROR_NONE";
+       case VPNSVC_ERROR_INVALID_PARAMETER:
+               return "VPNSVC_ERROR_INVALID_PARAMETER";
+       case VPNSVC_ERROR_OUT_OF_MEMORY:
+               return "VPNSVC_ERROR_OUT_OF_MEMORY";
+       case VPNSVC_ERROR_PERMISSION_DENIED:
+               return "VPNSVC_ERROR_PERMISSION_DENIED";
+       case VPNSVC_ERROR_NO_SUCH_FILE:
+               return "VPNSVC_ERROR_NO_SUCH_FILE";
+       case VPNSVC_ERROR_IO_ERROR:
+               return "VPNSVC_ERROR_IO_ERROR";
+       case VPNSVC_ERROR_TIMEOUT:
+               return "VPNSVC_ERROR_TIMEOUT";
+       case VPNSVC_ERROR_IPC_FAILED:
+               return "VPNSVC_ERROR_IPC_FAILED";
+       case VPNSVC_ERROR_NOT_SUPPORTED:
+               return "VPNSVC_ERROR_NOT_SUPPORTED";
+       default:
+               return "VPNSVC_ERROR_CANCELED";
+       }
+}
+
+int _vpnsvc_up(char *iface_name)
+{
+       int ret = VPNSVC_ERROR_NONE;
+
+       ret = vpnsvc_create(&vpnsvc);
+       if (ret != VPNSVC_ERROR_NONE) {
+               log_print(NET_POPUP, "Failed to create vpnsvc handle");
+               goto EXIT;
+       }
+
+       ret = vpnsvc_set_iface_name(vpnsvc, iface_name);
+       if (ret != VPNSVC_ERROR_NONE) {
+               log_print(NET_POPUP, "Failed to create vpnsvc handle");
+               goto EXIT;
+       }
+
+       ret = vpnsvc_up(vpnsvc);
+       if (ret != VPNSVC_ERROR_NONE) {
+               log_print(NET_POPUP, "Failed to up vpnsvc interface");
+               goto EXIT;
+       }
+
+EXIT:
+       if (vpnsvc) {
+               vpnsvc_destroy(vpnsvc);
+               vpnsvc = NULL;
+       }
+
+       return ret;
+}
+
+int _vpnsvc_down(char *iface_name)
+{
+       int ret = vpnsvc_create(&vpnsvc);
+       if (ret != VPNSVC_ERROR_NONE) {
+               log_print(NET_POPUP, "Failed to create vpnsvc handle");
+               goto EXIT;
+       }
+
+       ret = vpnsvc_set_iface_name(vpnsvc, iface_name);
+       if (ret != VPNSVC_ERROR_NONE) {
+               log_print(NET_POPUP, "Failed to create vpnsvc handle");
+               goto EXIT;
+       }
+
+       ret = vpnsvc_down(vpnsvc);
+       if (ret != VPNSVC_ERROR_NONE) {
+               log_print(NET_POPUP, "Failed to down vpnsvc interface");
+               goto EXIT;
+       }
+
+EXIT:
+       if (vpnsvc) {
+               vpnsvc_destroy(vpnsvc);
+               vpnsvc = NULL;
+       }
+
+       return ret;
+}
index 3e8a6803558854f16ca68567143c59bd441c1f96..ff1029f674c8aafafe2eeb27327f3fefe65abafc 100755 (executable)
 #include <dbus/dbus.h>
 #include <efl_extension.h>
 #include <tzplatform_config.h>
+#include <vpn_service.h>
+#include <vpn_service_internal.h>
 
 #include "net-popup.h"
+#include "net-popup-vpn.h"
 #include "net-popup-strings.h"
 
 #define NET_WIFIQS_APPID       "net.wifi-qs"
@@ -84,6 +87,9 @@ static char * resp_popup_mode = NULL;
 static GDBusConnection *conn = NULL;
 static GDBusProxy *proxy = NULL;
 
+/* vpn-service popup */
+static char *iface_name = NULL;
+
 static int __net_popup_show_notification(app_control_h request, void *data);
 static int __toast_popup_show(app_control_h request, void *data);
 static int __net_popup_show_popup(app_control_h request, void *data);
@@ -92,10 +98,9 @@ static void __net_popup_del_found_ap_noti(void);
 static void __net_popup_add_portal_noti(app_control_h request);
 static void __net_popup_del_portal_noti(void);
 static void __net_popup_show_popup_with_user_resp(app_control_h request, void *data);
-static void __net_popup_show_popup_for_vpn_service(app_control_h request, void *data);
+static void __net_popup_show_vpn_popup(app_control_h request, void *data);
 static int _net_popup_send_user_resp(char *resp, Eina_Bool state);
 
-
 GDBusProxy *__net_popup_init_dbus(void)
 {
        log_print(NET_POPUP, "__net_popup_init_dbus()\n");
@@ -257,6 +262,7 @@ static void __net_popup_service_cb(app_control_h request, void *data)
        log_print(NET_POPUP, "__net_popup_service_cb()\n");
 
        int ret = 0;
+       char *operation = NULL;
        char *type = NULL;
 
        if (ecore_event_evas_handler == NULL) {
@@ -264,15 +270,17 @@ static void __net_popup_service_cb(app_control_h request, void *data)
                                __key_release_event_cb, NULL);
        }
 
-#if 0
-       if (ecore_event_evas_quick_panel_handler == NULL) {
-               ecore_event_evas_quick_panel_handler = ecore_event_handler_add(
-                               ECORE_X_EVENT_CLIENT_MESSAGE, _ecore_event_client_message_cb, NULL);
+       ret = app_control_get_operation(request, &operation);
+       if (APP_CONTROL_ERROR_NONE != ret)
+               log_print(NET_POPUP, "Failed to get operation ret= %d", ret);
+
+       if (operation != NULL && g_str_equal(operation, APP_CONTROL_OPERATION_SETTING_VPN)) {
+               app_control_clone(&g_req_handle, request);
+               __net_popup_show_vpn_popup(request, data);
+               return;
        }
-#endif
 
        ret = app_control_get_extra_data(request, "_SYSPOPUP_TYPE_", &type);
-
        if (APP_CONTROL_ERROR_NONE != ret) {
                log_print(NET_POPUP, "Failed to get _SYSPOPUP_TYPE_ ret = %d", ret);
                g_free(type);
@@ -304,13 +312,11 @@ static void __net_popup_service_cb(app_control_h request, void *data)
        } else if (g_str_equal(type, "popup_user_resp")) {
                app_control_clone(&g_req_handle, request);
                __net_popup_show_popup_with_user_resp(request, data);
-       } else if(g_str_equal(type, "popup_vpn_service")){
-               app_control_clone(&g_req_handle, request);
-               __net_popup_show_popup_for_vpn_service(request, data);
        }else {
                __net_popup_show_notification(request, data);
                elm_exit();
        }
+
        g_free(type);
 
        return;
@@ -635,25 +641,99 @@ void _tethering_wifi_ap_btn_yes_cb(void *data, Evas_Object *obj, void *event_inf
        elm_exit();
 }
 
-void _vpn_btn_yes_cb(void *data, Evas_Object *obj, void *event_info)
+static void _vpn_send_result(int result)
+{
+       log_print(NET_POPUP, "Send the result of vpn-service to the caller");
+
+       int ret = 0;
+       app_control_h reply = NULL;
+       app_control_result_e resp_code;
+
+       ret = app_control_create(&reply);
+       if (APP_CONTROL_ERROR_NONE != ret) {
+               log_print(NET_POPUP, "Failed to create service ret = %d", ret);
+               app_control_destroy(g_req_handle);
+               g_req_handle = NULL;
+               return;
+       }
+
+       if (result == VPNSVC_ERROR_NONE)
+               resp_code = APP_CONTROL_RESULT_SUCCEEDED;
+       else if (result == VPNSVC_ERROR_CANCELED)
+               resp_code = APP_CONTROL_RESULT_CANCELED;
+       else
+               resp_code = APP_CONTROL_RESULT_FAILED;
+
+       ret = app_control_add_extra_data(reply, APP_CONTROL_DATA_TEXT, __get_vpn_error_message(result));
+       if (APP_CONTROL_ERROR_NONE == ret) {
+               ret = app_control_reply_to_launch_request(reply, g_req_handle, resp_code);
+               if (APP_CONTROL_ERROR_NONE == ret)
+                       log_print(NET_POPUP, "Service reply success");
+               else
+                       log_print(NET_POPUP, "Service reply failed ret = %d", ret);
+       } else {
+               log_print(NET_POPUP, "Service data addition failed ret = %d", ret);
+       }
+
+       app_control_destroy(reply);
+       app_control_destroy(g_req_handle);
+       g_req_handle = NULL;
+
+       return;
+}
+
+void _vpn_btn_connect_cb(void *data, Evas_Object *obj, void *event_info)
 {
-       log_print(NET_POPUP, "+");
+       log_print(NET_POPUP, "_vpn_btn_connect_cb()");
        Evas_Object *popup = (Evas_Object *)data;
+       int ret = VPNSVC_ERROR_NONE;
 
+       ret = _vpnsvc_up(iface_name);
+       _vpn_send_result(ret);
+
+       if (iface_name)
+               g_free(iface_name);
        if (popup)
                evas_object_del(popup);
        if (obj)
                evas_object_del(obj);
 
-       /* TODO: Enable VPN service */
+       elm_exit();
+}
+
+void _vpn_btn_disconnect_cb(void *data, Evas_Object *obj, void *event_info)
+{
+       log_print(NET_POPUP, "_vpn_btn_disconnect_cb()");
+       Evas_Object *popup = (Evas_Object *)data;
+       int ret = VPNSVC_ERROR_NONE;
+
+       ret = _vpnsvc_down(iface_name);
+       _vpn_send_result(ret);
+
+       if (iface_name)
+               g_free(iface_name);
+       if (popup)
+               evas_object_del(popup);
+       if (obj)
+               evas_object_del(obj);
 
        elm_exit();
 }
 
 void _vpn_btn_no_cb(void *data, Evas_Object *obj, void *event_info)
 {
-       log_print(NET_POPUP, "vpn - cancel");
-       evas_object_del(obj);
+       log_print(NET_POPUP, "_vpn_btn_no_cb()");
+       Evas_Object *popup = (Evas_Object *)data;
+
+       _vpn_send_result(VPNSVC_ERROR_CANCELED);
+
+       if (iface_name)
+               g_free(iface_name);
+       if (popup)
+               evas_object_del(popup);
+       if (obj)
+               evas_object_del(obj);
+
        elm_exit();
 }
 
@@ -752,19 +832,60 @@ static void __net_popup_show_popup_with_user_resp(app_control_h request,
        }
 }
 
-static void __net_popup_show_popup_for_vpn_service(app_control_h request, void *data)
+static void __net_popup_show_vpn_popup(app_control_h request, void *data)
 {
        Evas_Object *win;
        Evas_Object *popup;
        Evas_Object *button1;
        Evas_Object *button2;
+       char *type = NULL;
+       char *title = NULL;
+       char *content = NULL;
+       char *ok_btn = NULL;
+       void *ok_cb = NULL;
+
+       log_print(NET_POPUP, "__net_popup_show_vpn_popup");
+
+       int ret = app_control_get_extra_data(request, APP_CONTROL_DATA_TYPE, &type);
+       if (APP_CONTROL_ERROR_NONE != ret) {
+               log_print(NET_POPUP, "Failed to get APP_CONTROL_DATA_TYPE ret = %d", ret);
+               elm_exit();
+               return;
+       }
+
+       ret = app_control_get_extra_data(request, APP_CONTROL_DATA_NAME, &iface_name);
+       if (APP_CONTROL_ERROR_NONE != ret) {
+               log_print(NET_POPUP, "Failed to get APP_CONTROL_DATA_NAME ret = %d", ret);
+               elm_exit();
+               return;
+       }
+       log_print(NET_POPUP, "type(%s) name(%s)", type, iface_name);
+
+       if (strcmp(type, "up") == 0) {
+               title = ALERT_STR_VPN_CONNECT_TITLE;
+               content = ALERT_STR_VPN_CONNECT_CONTENT;
+               ok_btn = ALERT_STR_VPN_CONNECT_BUTTON;
+               ok_cb = _vpn_btn_connect_cb;
+       } else if (strcmp(type, "down") == 0) {
+               title = ALERT_STR_VPN_DISCONNECT_TITLE;
+               content = ALERT_STR_VPN_DISCONNECT_CONTENT;
+               ok_btn = ALERT_STR_VPN_DISCONNECT_BUTTON;
+               ok_cb = _vpn_btn_disconnect_cb;
+       } else {
+               log_print(NET_POPUP, "Invalid appcontrol value");
+               elm_exit();
+               return;
+       }
+
+       log_print(NET_POPUP, "title(%s) content(%s) ok(%s)", title, content, ok_btn);
 
        win = __net_popup_create_win();
 
        popup = elm_popup_add(win);
        evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-       elm_object_text_set(popup, ALERT_STR_VPN_CONTENT);
-       elm_object_part_text_set(popup, "title,text", ALERT_STR_VPN_TITLE);
+
+       elm_object_text_set(popup, content);
+       elm_object_part_text_set(popup, "title,text", title);
 
        /* Cancel button */
        button1 = elm_button_add(popup);
@@ -776,9 +897,9 @@ static void __net_popup_show_popup_for_vpn_service(app_control_h request, void *
        /* OK button */
        button2 = elm_button_add(popup);
        elm_object_style_set(button2, "bottom");
-       elm_object_text_set(button2, ALERT_STR_OK);
+       elm_object_text_set(button2, ok_btn);
        elm_object_part_content_set(popup, "button2", button2);
-       evas_object_smart_callback_add(button2, "clicked", _vpn_btn_yes_cb, popup);
+       evas_object_smart_callback_add(button2, "clicked", ok_cb, popup);
 
        evas_object_show(popup);
        evas_object_show(win);