Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package NetworkManager-openvpn for 
openSUSE:Factory checked in at 2025-08-27 21:33:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/NetworkManager-openvpn (Old)
 and      /work/SRC/openSUSE:Factory/.NetworkManager-openvpn.new.30751 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "NetworkManager-openvpn"

Wed Aug 27 21:33:29 2025 rev:97 rq:1301470 version:1.12.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/NetworkManager-openvpn/NetworkManager-openvpn.changes
    2025-08-13 16:28:41.603861291 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-openvpn.new.30751/NetworkManager-openvpn.changes
 2025-08-27 21:33:39.664128390 +0200
@@ -1,0 +2,7 @@
+Tue Aug 26 12:22:22 UTC 2025 - Bjørn Lie <[email protected]>
+
+- Update to version 1.12.3:
+  + Fix bug that caused that the challenge prompt didn't appear if
+    it contained some special characters.
+
+-------------------------------------------------------------------

Old:
----
  NetworkManager-openvpn-1.12.2.tar.xz

New:
----
  NetworkManager-openvpn-1.12.3.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ NetworkManager-openvpn.spec ++++++
--- /var/tmp/diff_new_pack.li9LXU/_old  2025-08-27 21:33:40.320155819 +0200
+++ /var/tmp/diff_new_pack.li9LXU/_new  2025-08-27 21:33:40.324155987 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           NetworkManager-openvpn
-Version:        1.12.2
+Version:        1.12.3
 Release:        0
 Summary:        NetworkManager VPN support for OpenVPN
 License:        GPL-2.0-or-later

++++++ NetworkManager-openvpn-1.12.2.tar.xz -> 
NetworkManager-openvpn-1.12.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/NEWS 
new/NetworkManager-openvpn-1.12.3/NEWS
--- old/NetworkManager-openvpn-1.12.2/NEWS      2025-08-11 14:55:51.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/NEWS      2025-08-26 14:17:51.000000000 
+0200
@@ -1,4 +1,12 @@
 =======================================================
+NetworkManager-openvpn-1.12.3
+Overview of changes since NetworkManager-openvpn-1.12.2
+=======================================================
+
+* Fix bug that caused that the challenge prompt didn't
+  appear if it contained some special characters.
+
+=======================================================
 NetworkManager-openvpn-1.12.2
 Overview of changes since NetworkManager-openvpn-1.12.0
 =======================================================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/auth-dialog/main.c 
new/NetworkManager-openvpn-1.12.3/auth-dialog/main.c
--- old/NetworkManager-openvpn-1.12.2/auth-dialog/main.c        2025-08-11 
14:55:51.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/auth-dialog/main.c        2025-08-26 
14:17:51.000000000 +0200
@@ -492,7 +492,6 @@
        NoSecretsRequiredFunc no_secrets_required_func;
        AskUserFunc ask_user_func;
        FinishFunc finish_func;
-
        GOptionContext *context;
        GOptionEntry entries[] = {
                        { "reprompt", 'r', 0, G_OPTION_ARG_NONE, &retry, 
"Reprompt for passwords", NULL},
@@ -504,7 +503,9 @@
                        { "hint", 't', 0, G_OPTION_ARG_STRING_ARRAY, &hints, 
"Hints from the VPN plugin", NULL},
                        { NULL }
                };
+       GError *error = NULL;
 
+       setlocale (LC_ALL, "");
        bindtextdomain (GETTEXT_PACKAGE, NULL);
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
        textdomain (GETTEXT_PACKAGE);
@@ -514,7 +515,11 @@
 #if !GTK_CHECK_VERSION(4,0,0)
        g_option_context_add_group (context, gtk_get_option_group (FALSE));
 #endif
-       g_option_context_parse (context, &argc, &argv, NULL);
+       if (!g_option_context_parse (context, &argc, &argv, &error)) {
+               fprintf (stderr, "Error parsing options: %s\n", error->message);
+               g_error_free (error);
+               return 1;
+       }
        g_option_context_free (context);
 
        if (vpn_uuid == NULL || vpn_name == NULL || vpn_service == NULL) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/configure 
new/NetworkManager-openvpn-1.12.3/configure
--- old/NetworkManager-openvpn-1.12.2/configure 2025-08-11 14:57:06.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/configure 2025-08-26 14:19:30.000000000 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.72 for NetworkManager-openvpn 1.12.2.
+# Generated by GNU Autoconf 2.72 for NetworkManager-openvpn 1.12.3.
 #
 # Report bugs to 
<https://gitlab.gnome.org/GNOME/NetworkManager-openvpn/issues>.
 #
@@ -615,8 +615,8 @@
 # Identity of this package.
 PACKAGE_NAME='NetworkManager-openvpn'
 PACKAGE_TARNAME='NetworkManager-openvpn'
-PACKAGE_VERSION='1.12.2'
-PACKAGE_STRING='NetworkManager-openvpn 1.12.2'
+PACKAGE_VERSION='1.12.3'
+PACKAGE_STRING='NetworkManager-openvpn 1.12.3'
 
PACKAGE_BUGREPORT='https://gitlab.gnome.org/GNOME/NetworkManager-openvpn/issues'
 PACKAGE_URL=''
 
@@ -1433,7 +1433,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-'configure' configures NetworkManager-openvpn 1.12.2 to adapt to many kinds of 
systems.
+'configure' configures NetworkManager-openvpn 1.12.3 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1505,7 +1505,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of NetworkManager-openvpn 
1.12.2:";;
+     short | recursive ) echo "Configuration of NetworkManager-openvpn 
1.12.3:";;
    esac
   cat <<\_ACEOF
 
@@ -1665,7 +1665,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-NetworkManager-openvpn configure 1.12.2
+NetworkManager-openvpn configure 1.12.3
 generated by GNU Autoconf 2.72
 
 Copyright (C) 2023 Free Software Foundation, Inc.
@@ -2031,7 +2031,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by NetworkManager-openvpn $as_me 1.12.2, which was
+It was created by NetworkManager-openvpn $as_me 1.12.3, which was
 generated by GNU Autoconf 2.72.  Invocation command line was
 
   $ $0$ac_configure_args_raw
@@ -3507,7 +3507,7 @@
 
 # Define the identity of the package.
  PACKAGE='NetworkManager-openvpn'
- VERSION='1.12.2'
+ VERSION='1.12.3'
 
 
 printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -20487,7 +20487,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by NetworkManager-openvpn $as_me 1.12.2, which was
+This file was extended by NetworkManager-openvpn $as_me 1.12.3, which was
 generated by GNU Autoconf 2.72.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -20555,7 +20555,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config='$ac_cs_config_escaped'
 ac_cs_version="\\
-NetworkManager-openvpn config.status 1.12.2
+NetworkManager-openvpn config.status 1.12.3
 configured by $0, generated by GNU Autoconf 2.72,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/configure.ac 
new/NetworkManager-openvpn-1.12.3/configure.ac
--- old/NetworkManager-openvpn-1.12.2/configure.ac      2025-08-11 
14:55:51.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/configure.ac      2025-08-26 
14:17:51.000000000 +0200
@@ -1,7 +1,7 @@
 AC_PREREQ(2.52)
 
 AC_INIT(NetworkManager-openvpn,
-        1.12.2,
+        1.12.3,
         https://gitlab.gnome.org/GNOME/NetworkManager-openvpn/issues,
         NetworkManager-openvpn)
 AM_INIT_AUTOMAKE([1.9 foreign tar-ustar no-dist-gzip dist-xz -Wno-portability])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/NetworkManager-openvpn-1.12.2/po/NetworkManager-openvpn.pot 
new/NetworkManager-openvpn-1.12.3/po/NetworkManager-openvpn.pot
--- old/NetworkManager-openvpn-1.12.2/po/NetworkManager-openvpn.pot     
2025-08-11 14:57:15.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/NetworkManager-openvpn.pot     
2025-08-26 14:19:36.000000000 +0200
@@ -6,10 +6,10 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: NetworkManager-openvpn 1.12.2\n"
+"Project-Id-Version: NetworkManager-openvpn 1.12.3\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <[email protected]>\n"
@@ -101,7 +101,7 @@
 msgid "_HTTP proxy password:"
 msgstr ""
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ar.po 
new/NetworkManager-openvpn-1.12.3/po/ar.po
--- old/NetworkManager-openvpn-1.12.2/po/ar.po  2025-08-11 14:57:15.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ar.po  2025-08-26 14:19:36.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: Project\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2007-12-26 09:06+0100\n"
 "Last-Translator: Djihed Afifi <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -120,7 +120,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_كلمة السر:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "تحتاج إلى التوثيق لتَنفُذ إلى الشبكة الخاصة التخيلية '%s'."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/as.po 
new/NetworkManager-openvpn-1.12.3/po/as.po
--- old/NetworkManager-openvpn-1.12.2/po/as.po  2025-08-11 14:57:15.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/as.po  2025-08-26 14:19:36.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: as\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2009-07-16 15:11+0530\n"
 "Last-Translator: Amitakhya Phukan <[email protected]>\n"
 "Language-Team: Assamese <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "গুপ্তশব্দ:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Virtual Private Network '%s' অভিগম কৰিবলৈ আপুনি  প্ৰমাণীকৰণ কৰিব লাগিব 
।"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/be.po 
new/NetworkManager-openvpn-1.12.3/po/be.po
--- old/NetworkManager-openvpn-1.12.2/po/be.po  2025-08-11 14:57:15.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/be.po  2025-08-26 14:19:36.000000000 
+0200
@@ -5,7 +5,7 @@
 "Project-Id-Version: network-manager-openvpn.master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-09-11 17:34+0300\n"
 "Last-Translator: Yuri Matsuk <[email protected]>\n"
 "Language-Team: Belarusian <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Пароль да проксі-сервера:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/bg.po 
new/NetworkManager-openvpn-1.12.3/po/bg.po
--- old/NetworkManager-openvpn-1.12.2/po/bg.po  2025-08-11 14:57:15.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/bg.po  2025-08-26 14:19:36.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2010-10-02 10:52+0300\n"
 "Last-Translator: Krasimir Chonov <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
@@ -112,7 +112,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Парола за посредника:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Трябва да се идентифицирате, за да ползвате ВЧМ „%s“."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/bs.po 
new/NetworkManager-openvpn-1.12.3/po/bs.po
--- old/NetworkManager-openvpn-1.12.2/po/bs.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/bs.po  2025-08-26 14:19:36.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: bosnianuniversetranslation\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2015-03-02 14:49+0100\n"
 "Last-Translator: Samir Ribić <[email protected]>\n"
 "Language-Team: Bosnian <[email protected]>\n"
@@ -112,7 +112,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Proxy _Lozinka:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ca.po 
new/NetworkManager-openvpn-1.12.3/po/ca.po
--- old/NetworkManager-openvpn-1.12.2/po/ca.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ca.po  2025-08-26 14:19:36.000000000 
+0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: NetworkManager VERSION\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2024-08-23 05:01+0100\n"
 "Last-Translator: Carles Ferrando Garcia <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -116,7 +116,7 @@
 msgid "_HTTP proxy password:"
 msgstr "C_ontrasenya del servidor intermediari HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/[email protected] 
new/NetworkManager-openvpn-1.12.3/po/[email protected]
--- old/NetworkManager-openvpn-1.12.2/po/[email protected]       2025-08-11 
14:57:16.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/[email protected]       2025-08-26 
14:19:36.000000000 +0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: NetworkManager VERSION\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2009-05-10 12:43+0200\n"
 "Last-Translator: David Planella <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -118,7 +118,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Contrasenya:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/cs.po 
new/NetworkManager-openvpn-1.12.3/po/cs.po
--- old/NetworkManager-openvpn-1.12.2/po/cs.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/cs.po  2025-08-26 14:19:37.000000000 
+0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: network-manager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2022-03-16 13:36+0100\n"
 "Last-Translator: Marek Černocký <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -115,7 +115,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Heslo proxy pro _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Pro přístup do VPN „%s“ se musíte autentizovat."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/da.po 
new/NetworkManager-openvpn-1.12.3/po/da.po
--- old/NetworkManager-openvpn-1.12.2/po/da.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/da.po  2025-08-26 14:19:37.000000000 
+0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: NetworkManager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-02-18 18:58+0100\n"
 "Last-Translator: Alan Mortensen <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Adgangskode til _HTTP-proxy:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/de.po 
new/NetworkManager-openvpn-1.12.3/po/de.po
--- old/NetworkManager-openvpn-1.12.2/po/de.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/de.po  2025-08-26 14:19:37.000000000 
+0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2024-01-19 23:20+0100\n"
 "Last-Translator: Jürgen Benvenuti <[email protected]>\n"
 "Language-Team: Deutsch <[email protected]>\n"
@@ -119,7 +119,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Passwort für _HTTP-Proxy:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/dz.po 
new/NetworkManager-openvpn-1.12.3/po/dz.po
--- old/NetworkManager-openvpn-1.12.2/po/dz.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/dz.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: networkmanager-openvpn.networkmamager-0-6-0=release.pot\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2007-03-19 15:41+0530\n"
 "Last-Translator: sonam pelden <[email protected]>\n"
 "Language-Team: Dzongkha <[email protected]>\n"
@@ -118,7 +118,7 @@
 msgid "_HTTP proxy password:"
 msgstr "ཆོག་ཡིག: (_P)"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "བར་ཅུ་ཡལ་སྒེར་སྡེ་ཡོངས་འབྲེལ་'%s'འཛུལ་སྤྱོད་འབད་ནི་ལུ་ 
ཁྱོད་ཀྱིས་བདེན་བཤད་འབད་དགོ།"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/el.po 
new/NetworkManager-openvpn-1.12.3/po/el.po
--- old/NetworkManager-openvpn-1.12.2/po/el.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/el.po  2025-08-26 14:19:37.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: NetworkManager-openvpn.HEAD\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2016-04-17 21:54+0300\n"
 "Last-Translator: Tom Tryfonidis <[email protected]>\n"
 "Language-Team: [email protected]\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Κ_ωδικός πρόσβασης διαμεσολαβητή _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/en_GB.po 
new/NetworkManager-openvpn-1.12.3/po/en_GB.po
--- old/NetworkManager-openvpn-1.12.2/po/en_GB.po       2025-08-11 
14:57:16.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/en_GB.po       2025-08-26 
14:19:37.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: gnome-torrent\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2012-09-23 01:34-0400\n"
 "Last-Translator: Chris Leonard <[email protected]>\n"
 "Language-Team: Sugar Labs\n"
@@ -118,7 +118,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Proxy Passwor_d:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "You need to authenticate to access the Virtual Private Network '%s'."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/eo.po 
new/NetworkManager-openvpn-1.12.3/po/eo.po
--- old/NetworkManager-openvpn-1.12.2/po/eo.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/eo.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-11-23 20:10+0100\n"
 "Last-Translator: Kristjan SCHMIDT <[email protected]>\n"
 "Language-Team: Esperanto <[email protected]>\n"
@@ -105,7 +105,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_Pasvorto:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/es.po 
new/NetworkManager-openvpn-1.12.3/po/es.po
--- old/NetworkManager-openvpn-1.12.2/po/es.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/es.po  2025-08-26 14:19:37.000000000 
+0200
@@ -18,7 +18,7 @@
 "Project-Id-Version: NetworkManager-openvpn.HEAD\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2022-03-17 11:45+0100\n"
 "Last-Translator: Daniel Mustieles García <[email protected]>\n"
 "Language-Team: Spanish - Spain <[email protected]>\n"
@@ -121,7 +121,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Contraseña del proxy _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Debe autenticarse para acceder a la red privada virtual «%s»."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/et.po 
new/NetworkManager-openvpn-1.12.3/po/et.po
--- old/NetworkManager-openvpn-1.12.2/po/et.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/et.po  2025-08-26 14:19:37.000000000 
+0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: NetworkManager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-03-15 08:45+0300\n"
 "Last-Translator: Mattias Põldaru <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -114,7 +114,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Proksi parool:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "VPN-võrgule '%s' ligipääsuks pead end autentima."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/eu.po 
new/NetworkManager-openvpn-1.12.3/po/eu.po
--- old/NetworkManager-openvpn-1.12.2/po/eu.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/eu.po  2025-08-26 14:19:37.000000000 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2023-04-10 18:58+0100\n"
 "Last-Translator: Asier Sarasua Garmendia <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP proxyaren pasahitza:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Autentifikatu egin behar duzu “%s” Sare Birtual Pribatura sartzeko."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/fa.po 
new/NetworkManager-openvpn-1.12.3/po/fa.po
--- old/NetworkManager-openvpn-1.12.2/po/fa.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/fa.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2010-10-20 23:48+0330\n"
 "Last-Translator: Arash Mousavi <[email protected]>\n"
 "Language-Team: Persian\n"
@@ -110,7 +110,7 @@
 msgid "_HTTP proxy password:"
 msgstr "گذرواژه پیشکار:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "برای دسترسی به شبکه خصوصی مجازی «%s» احتیاج به تایید هویت دارید."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/fi.po 
new/NetworkManager-openvpn-1.12.3/po/fi.po
--- old/NetworkManager-openvpn-1.12.2/po/fi.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/fi.po  2025-08-26 14:19:37.000000000 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: NetworkManager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2023-08-27 19:58+0300\n"
 "Last-Translator: Jiri Grönroos <[email protected]>\n"
 "Language-Team: suomi <[email protected]>\n"
@@ -114,7 +114,7 @@
 msgid "_HTTP proxy password:"
 msgstr "HTTP-välityspalvelimen _salasana:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Yhteydenotto VPN-verkkoon “%s” vaatii tunnistautumisen."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/fr.po 
new/NetworkManager-openvpn-1.12.3/po/fr.po
--- old/NetworkManager-openvpn-1.12.2/po/fr.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/fr.po  2025-08-26 14:19:37.000000000 
+0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: NetworkManager-openvpn HEAD\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2020-02-04 14:54+0100\n"
 "Last-Translator: Guillaume Bernard <[email protected]>\n"
 "Language-Team: français <[email protected]>\n"
@@ -120,7 +120,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Mot de passe du serveur mandataire :"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Authentifiez-vous pour accéder au réseau privé virtuel « %s »."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/fur.po 
new/NetworkManager-openvpn-1.12.3/po/fur.po
--- old/NetworkManager-openvpn-1.12.2/po/fur.po 2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/fur.po 2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2021-01-17 13:41+0100\n"
 "Last-Translator: Fabio Tomat <[email protected]>\n"
 "Language-Team: Friulian <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Password dal proxy _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Si scugne autenticâsi par jentrâ te Rêt Privade Virtuâl “%s”."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/gl.po 
new/NetworkManager-openvpn-1.12.3/po/gl.po
--- old/NetworkManager-openvpn-1.12.2/po/gl.po  2025-08-11 14:57:16.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/gl.po  2025-08-26 14:19:37.000000000 
+0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: gl\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2023-08-16 12:24+0200\n"
 "Last-Translator: marcos <[email protected]>\n"
 "Language-Team: galego\n"
@@ -114,7 +114,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Contrasinal do proxy _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Precisa autenticarse para acceder á rede privada virtual (VPN) «%s»."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/gu.po 
new/NetworkManager-openvpn-1.12.3/po/gu.po
--- old/NetworkManager-openvpn-1.12.2/po/gu.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/gu.po  2025-08-26 14:19:37.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: gu\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-02-18 11:13+0530\n"
 "Last-Translator: Sweta Kothari <[email protected]>\n"
 "Language-Team: Gujarati\n"
@@ -110,7 +110,7 @@
 msgid "_HTTP proxy password:"
 msgstr "પાસવર્ડ (_P):"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "વર્ચ્યુઅલ ખાનગી નેટવર્ક '%s' ને દાખલ કરવા માટે તમારે સત્તાધિકરણની જરૂર 
છે."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/he.po 
new/NetworkManager-openvpn-1.12.3/po/he.po
--- old/NetworkManager-openvpn-1.12.2/po/he.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/he.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-01-19 14:15+0200\n"
 "Last-Translator: Yaron Shahrabani <[email protected]>\n"
 "Language-Team: Hebrew <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_סיסמת מתווך HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "עליך להתאמת כדי לגשת לרשת הווירטואלית הפרטית „%s”."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/hi.po 
new/NetworkManager-openvpn-1.12.3/po/hi.po
--- old/NetworkManager-openvpn-1.12.2/po/hi.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/hi.po  2025-08-26 14:19:37.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: NetworkManager-openvpn main\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2024-06-21 22:41+0530\n"
 "Last-Translator: Scrambled777 <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
@@ -108,7 +108,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP प्रॉक्सी पासवर्ड:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "आपको वर्चुअल प्राइवेट नेटवर्क “%s” तक पहुंचने के लिए प्रमाणित करने की 
आवश्यकता है।"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/hr.po 
new/NetworkManager-openvpn-1.12.3/po/hr.po
--- old/NetworkManager-openvpn-1.12.2/po/hr.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/hr.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2022-08-31 19:06+0200\n"
 "Last-Translator: gogo <[email protected]>\n"
 "Language-Team: Croatian <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP proxy lozinka:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Potrebna je ovjera za pristup virtualnoj privatnoj mreži “%s”."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/hu.po 
new/NetworkManager-openvpn-1.12.3/po/hu.po
--- old/NetworkManager-openvpn-1.12.2/po/hu.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/hu.po  2025-08-26 14:19:37.000000000 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2024-05-19 12:06+0200\n"
 "Last-Translator: Balázs Úr <ur.balazs at fsf dot hu>\n"
 "Language-Team: Hungarian <openscope at fsf dot hu>\n"
@@ -111,7 +111,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP-proxy jelszava:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Hitelesítenie kell magát a(z) „%s” virtuális magánhálózat eléréséhez."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/id.po 
new/NetworkManager-openvpn-1.12.3/po/id.po
--- old/NetworkManager-openvpn-1.12.2/po/id.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/id.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openvpn main\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2022-11-27 18:16+0700\n"
 "Last-Translator: Andika Triwidada <[email protected]>\n"
 "Language-Team: GNOME Indonesian Translation Team <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Sandi proksi _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/it.po 
new/NetworkManager-openvpn-1.12.3/po/it.po
--- old/NetworkManager-openvpn-1.12.2/po/it.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/it.po  2025-08-26 14:19:37.000000000 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: network-manager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2021-03-16 09:38+0100\n"
 "Last-Translator: Milo Casagrande <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Password pro_xy HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ja.po 
new/NetworkManager-openvpn-1.12.3/po/ja.po
--- old/NetworkManager-openvpn-1.12.2/po/ja.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ja.po  2025-08-26 14:19:37.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: NetworkManager-openvpn HEAD\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2020-05-10 21:00+0900\n"
 "Last-Translator: sicklylife <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -107,7 +107,7 @@
 msgid "_HTTP proxy password:"
 msgstr "HTTP プロキシパスワード(_H):"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "仮想プライベートネットワーク“%s”にアクセスするには認証が必要です。"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ka.po 
new/NetworkManager-openvpn-1.12.3/po/ka.po
--- old/NetworkManager-openvpn-1.12.2/po/ka.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ka.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-02-13 05:28+0100\n"
 "Last-Translator: Ekaterine Papava <[email protected]>\n"
 "Language-Team: \n"
@@ -105,7 +105,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP პროქსის პაროლი:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "VPN \"%s\"-თან წვდომისთვის საჭიროა ავთენტიკაცია."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/kn.po 
new/NetworkManager-openvpn-1.12.3/po/kn.po
--- old/NetworkManager-openvpn-1.12.2/po/kn.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/kn.po  2025-08-26 14:19:37.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: network-manager-openvpn.master.kn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2009-10-30 12:23+0530\n"
 "Last-Translator: Shankar Prasad <[email protected]>\n"
 "Language-Team: Kannada <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "ಗುಪ್ತಪದ:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "ನೀವು ವರ್ಚುವಲ್ ಪ್ರೈವೇಟ್ ನೆಟ್‌ವರ್ಕ್ '%s' ಅನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು 
ದೃಢೀಕರಿಸಬೇಕಾಗುತ್ತದೆ."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ko.po 
new/NetworkManager-openvpn-1.12.3/po/ko.po
--- old/NetworkManager-openvpn-1.12.2/po/ko.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ko.po  2025-08-26 14:19:37.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: nm-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-02-27 15:45+0900\n"
 "Last-Translator: Changwoo Ryu <[email protected]>\n"
 "Language-Team: GNOME Korea <[email protected]>\n"
@@ -116,7 +116,7 @@
 msgid "_HTTP proxy password:"
 msgstr "암호(_P):"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "가상 사설 네트워크 '%s'에 접근할 때 인증이 필요합니다."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/lt.po 
new/NetworkManager-openvpn-1.12.3/po/lt.po
--- old/NetworkManager-openvpn-1.12.2/po/lt.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/lt.po  2025-08-26 14:19:37.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: NetworkManager-openvpn HEAD\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2024-03-16 23:19+0200\n"
 "Last-Translator: Aurimas Černius <[email protected]>\n"
 "Language-Team: Lietuvių <[email protected]>\n"
@@ -111,7 +111,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP įgaliotojo serverio slaptažodis:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/lv.po 
new/NetworkManager-openvpn-1.12.3/po/lv.po
--- old/NetworkManager-openvpn-1.12.2/po/lv.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/lv.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager OpenVPN plugin\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2018-03-25 20:16+0200\n"
 "Last-Translator: Rudolfs Mazurs <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
@@ -115,7 +115,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP starpnieka parole:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/mk.po 
new/NetworkManager-openvpn-1.12.3/po/mk.po
--- old/NetworkManager-openvpn-1.12.2/po/mk.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/mk.po  2025-08-26 14:19:37.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: NetworkManager-openvpn.HEAD\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2007-12-02 18:53+0100\n"
 "Last-Translator: Arangel Angov <[email protected]>\n"
 "Language-Team: Macedonian <[email protected]>\n"
@@ -117,7 +117,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_Лозинка:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/mr.po 
new/NetworkManager-openvpn-1.12.3/po/mr.po
--- old/NetworkManager-openvpn-1.12.2/po/mr.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/mr.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openvpn.master.mr\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2009-06-09 14:53+0530\n"
 "Last-Translator: Sandeep Shedmake <[email protected]>\n"
 "Language-Team: marathi\n"
@@ -112,7 +112,7 @@
 msgid "_HTTP proxy password:"
 msgstr "परवलीचा शब्द:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Virtual Private Network '%s' करीता प्रवेशसाठी तुम्हाला ओळख पटवावी 
लागेल."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/nb.po 
new/NetworkManager-openvpn-1.12.3/po/nb.po
--- old/NetworkManager-openvpn-1.12.2/po/nb.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/nb.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2012-11-06 07:25+0100\n"
 "Last-Translator: Kjartan Maraas <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Passord for proxy:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/nl.po 
new/NetworkManager-openvpn-1.12.3/po/nl.po
--- old/NetworkManager-openvpn-1.12.2/po/nl.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/nl.po  2025-08-26 14:19:37.000000000 
+0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: NetworkManager-vpnc\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2022-03-25 21:30+0100\n"
 "Last-Translator: Nathan Follens <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -117,7 +117,7 @@
 
 # eigenlijk: moet er een aanmeldingscontrole worden uitgevoerd,
 # maar het gaat erom dat er een wachtwoord moet worden gegeven
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/pa.po 
new/NetworkManager-openvpn-1.12.3/po/pa.po
--- old/NetworkManager-openvpn-1.12.2/po/pa.po  2025-08-11 14:57:17.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/pa.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openconnect master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2012-08-19 15:58+0530\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi/Panjabi <[email protected]>\n"
@@ -112,7 +112,7 @@
 msgid "_HTTP proxy password:"
 msgstr "ਪਰਾਸਕੀ ਪਾਸਵਰਡ(_d):"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "ਤੁਹਾਨੂੰ ਵੁਰਚੁਅਲ ਪ੍ਰਾਈਵੇਟ ਨੈੱਟਵਰਕ (VPN) '%s' ਦੀ ਵਰਤੋਂ ਵਾਸਤੇ ਪਰਮਾਣਿਤ ਹੋਣ 
ਦੀ ਲੋੜ ਹੈ।"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/pl.po 
new/NetworkManager-openvpn-1.12.3/po/pl.po
--- old/NetworkManager-openvpn-1.12.2/po/pl.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/pl.po  2025-08-26 14:19:37.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: NetworkManager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2024-09-15 19:14+0200\n"
 "Last-Translator: Piotr Drąg <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_Hasło pośrednika HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ps.po 
new/NetworkManager-openvpn-1.12.3/po/ps.po
--- old/NetworkManager-openvpn-1.12.2/po/ps.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ps.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager-openvpn.head\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2008-08-19 09:14-0800\n"
 "Last-Translator: Zabeeh Khan <[email protected]>\n"
 "Language-Team: Pashto <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "_HTTP proxy password:"
 msgstr ":تېرنويې_"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/pt.po 
new/NetworkManager-openvpn-1.12.3/po/pt.po
--- old/NetworkManager-openvpn-1.12.2/po/pt.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/pt.po  2025-08-26 14:19:37.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: 2.26\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2015-11-13 08:24+0000\n"
 "Last-Translator: <>\n"
 "Language-Team: Pedro Albuquerque\n"
@@ -116,7 +116,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Senha do proxy _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Tem de se autenticar para aceder à rede privada virtual (VPN) \"%s\"."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/pt_BR.po 
new/NetworkManager-openvpn-1.12.3/po/pt_BR.po
--- old/NetworkManager-openvpn-1.12.2/po/pt_BR.po       2025-08-11 
14:57:18.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/pt_BR.po       2025-08-26 
14:19:37.000000000 +0200
@@ -20,7 +20,7 @@
 "Project-Id-Version: NetworkManager-OpenVPN\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-03-24 17:18-0300\n"
 "Last-Translator: Álvaro Burns <>\n"
 "Language-Team: Brazilian Portuguese <https://br.gnome.org/traducao>\n"
@@ -120,7 +120,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Senha do proxy _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Você precisa se autenticar para acessar a Rede Privada Virtual “%s”."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ro.po 
new/NetworkManager-openvpn-1.12.3/po/ro.po
--- old/NetworkManager-openvpn-1.12.2/po/ro.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ro.po  2025-08-26 14:19:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openvpn NETWORKMANAGER_0_7\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2012-08-05 21:52+0200\n"
 "Last-Translator: Daniel Șerbănescu <[email protected]>\n"
 "Language-Team: Gnome Romanian Translation Team\n"
@@ -114,7 +114,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Parolă:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ru.po 
new/NetworkManager-openvpn-1.12.3/po/ru.po
--- old/NetworkManager-openvpn-1.12.2/po/ru.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ru.po  2025-08-26 14:19:38.000000000 
+0200
@@ -17,7 +17,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-01-27 17:56+0300\n"
 "Last-Translator: Дронова Юлия <[email protected]>\n"
 "Language-Team: RU\n"
@@ -120,7 +120,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Пароль _прокси HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Для доступа к частной виртуальной сети “%s” требуется аутентификация"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/sk.po 
new/NetworkManager-openvpn-1.12.3/po/sk.po
--- old/NetworkManager-openvpn-1.12.2/po/sk.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/sk.po  2025-08-26 14:19:38.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2020-09-07 16:03+0200\n"
 "Last-Translator: Dušan Kazik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Heslo proxy _HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/sl.po 
new/NetworkManager-openvpn-1.12.3/po/sl.po
--- old/NetworkManager-openvpn-1.12.2/po/sl.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/sl.po  2025-08-26 14:19:38.000000000 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-03-25 10:18+0100\n"
 "Last-Translator: Martin Srebotnjak <[email protected]>\n"
 "Language-Team: Slovenian GNOME Translation Team <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Geslo _posredniškega strežnika HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Dostop do navideznega zasebnega omrežja »%s« zahteva overitev."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/sr.po 
new/NetworkManager-openvpn-1.12.3/po/sr.po
--- old/NetworkManager-openvpn-1.12.2/po/sr.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/sr.po  2025-08-26 14:19:38.000000000 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2022-10-19 10:16+0200\n"
 "Last-Translator: Мирослав Николић <[email protected]>\n"
 "Language-Team: Serbian <српски <[email protected]>>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Лозинка _ХТТП посредника:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/[email protected] 
new/NetworkManager-openvpn-1.12.3/po/[email protected]
--- old/NetworkManager-openvpn-1.12.2/po/[email protected]  2025-08-11 
14:57:18.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/[email protected]  2025-08-26 
14:19:38.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2018-02-24 20:05+0200\n"
 "Last-Translator: Miroslav Nikolić <[email protected]>\n"
 "Language-Team: srpski <[email protected]>\n"
@@ -116,7 +116,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Lozinka _HTTP posrednika:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/sv.po 
new/NetworkManager-openvpn-1.12.3/po/sv.po
--- old/NetworkManager-openvpn-1.12.2/po/sv.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/sv.po  2025-08-26 14:19:38.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: NetworkManager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-03-25 22:24+0100\n"
 "Last-Translator: Anders Jonsson <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "_HTTP proxy password:"
 msgstr "Lösenord för _HTTP-proxy:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ta.po 
new/NetworkManager-openvpn-1.12.3/po/ta.po
--- old/NetworkManager-openvpn-1.12.2/po/ta.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ta.po  2025-08-26 14:19:38.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: network-manager-openvpn.master.ta\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2009-10-30 12:25+0530\n"
 "Last-Translator: I. Felix <[email protected]>\n"
 "Language-Team: Tamil <[email protected]>\n"
@@ -117,7 +117,7 @@
 msgid "_HTTP proxy password:"
 msgstr "கடவுச்சொல்:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "மெய்நிகர் தனிப்பட்ட பிணைய '%s'ஐ அணுக உங்களுக்கு அங்கீகாரம் 
தேவைப்படுகிறது."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/te.po 
new/NetworkManager-openvpn-1.12.3/po/te.po
--- old/NetworkManager-openvpn-1.12.2/po/te.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/te.po  2025-08-26 14:19:38.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: network-manager-openvpn.master.te\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2009-10-27 19:25+0530\n"
 "Last-Translator: Krishna Babu K <[email protected]>\n"
 "Language-Team: Telugu <[email protected]>\n"
@@ -115,7 +115,7 @@
 msgid "_HTTP proxy password:"
 msgstr "సంకేతపదము:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "వర్చ్యువల్ వ్యక్తిగత నెట్వర్కు '%s'ను యాక్సిస్ చేయుటకు మీరు 
దృవీకరింపబడవలసి వుంది."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/th.po 
new/NetworkManager-openvpn-1.12.3/po/th.po
--- old/NetworkManager-openvpn-1.12.2/po/th.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/th.po  2025-08-26 14:19:38.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: NetworkManager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2007-02-02 20:53+0700\n"
 "Last-Translator: Theppitak Karoonboonyanan <[email protected]>\n"
 "Language-Team: Thai <l10n.opentle.org>\n"
@@ -108,7 +108,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_รหัสผ่าน:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "คุณจะต้องยืนยันตัวบุคคลเพื่อเข้าใช้ Virtual Private Network '%s'"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/tr.po 
new/NetworkManager-openvpn-1.12.3/po/tr.po
--- old/NetworkManager-openvpn-1.12.2/po/tr.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/tr.po  2025-08-26 14:19:38.000000000 
+0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: network-manager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2024-05-01 08:00+0300\n"
 "Last-Translator: Emin Tufan Çetin <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP vekil sunucu parolası:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/ug.po 
new/NetworkManager-openvpn-1.12.3/po/ug.po
--- old/NetworkManager-openvpn-1.12.2/po/ug.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/ug.po  2025-08-26 14:19:38.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: network-manager-openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-01-31 15:04+0000\n"
 "Last-Translator: Gheyret Kenji <[email protected]>\n"
 "Language-Team: Uyghur Computer Science Association <[email protected]>\n"
@@ -107,7 +107,7 @@
 msgid "_HTTP proxy password:"
 msgstr "ئىم(_P):"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/uk.po 
new/NetworkManager-openvpn-1.12.3/po/uk.po
--- old/NetworkManager-openvpn-1.12.2/po/uk.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/uk.po  2025-08-26 14:19:38.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: NetworkManager openvpn\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2025-03-24 22:46+0200\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -111,7 +111,7 @@
 msgid "_HTTP proxy password:"
 msgstr "П_ароль проксі-сервера HTTP:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/vi.po 
new/NetworkManager-openvpn-1.12.3/po/vi.po
--- old/NetworkManager-openvpn-1.12.2/po/vi.po  2025-08-11 14:57:18.000000000 
+0200
+++ new/NetworkManager-openvpn-1.12.3/po/vi.po  2025-08-26 14:19:38.000000000 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: NetworkManager-openvpn GNOME TRUNK\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2008-06-06 14:34+0930\n"
 "Last-Translator: Clytie Siddall <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
@@ -116,7 +116,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_Mật khẩu :"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "Bạn cần phải xác thực để truy cập Mạng Riêng Ảo (VPN) « %s »."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/zh_CN.po 
new/NetworkManager-openvpn-1.12.3/po/zh_CN.po
--- old/NetworkManager-openvpn-1.12.2/po/zh_CN.po       2025-08-11 
14:57:18.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/zh_CN.po       2025-08-26 
14:19:38.000000000 +0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: NetworkManager-openvpn master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2023-08-04 15:45-0400\n"
 "Last-Translator: Dingzhong Chen <[email protected]>\n"
 "Language-Team: Chinese - China <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "_HTTP proxy password:"
 msgstr "_HTTP 代理密码:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "您需要进行身份验证才能访问虚拟专用网络“%s”。"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/zh_HK.po 
new/NetworkManager-openvpn-1.12.3/po/zh_HK.po
--- old/NetworkManager-openvpn-1.12.2/po/zh_HK.po       2025-08-11 
14:57:19.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/zh_HK.po       2025-08-26 
14:19:38.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager-openvpn 0.8.1\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-01-25 19:37+0800\n"
 "Last-Translator: Chao-Hsiung Liao <[email protected]>\n"
 "Language-Team: Chinese (Hong Kong) <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "密碼:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "你需要驗證才能存取虛擬私人網絡「%s」。"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openvpn-1.12.2/po/zh_TW.po 
new/NetworkManager-openvpn-1.12.3/po/zh_TW.po
--- old/NetworkManager-openvpn-1.12.2/po/zh_TW.po       2025-08-11 
14:57:19.000000000 +0200
+++ new/NetworkManager-openvpn-1.12.3/po/zh_TW.po       2025-08-26 
14:19:38.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: NetworkManager-openvpn 0.8.1\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/NetworkManager-";
 "openvpn/\n"
-"POT-Creation-Date: 2025-08-11 12:57+0000\n"
+"POT-Creation-Date: 2025-08-26 12:19+0000\n"
 "PO-Revision-Date: 2011-01-25 17:31+0800\n"
 "Last-Translator: Chao-Hsiung Liao <[email protected]>\n"
 "Language-Team: Chinese (traditional) <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "_HTTP proxy password:"
 msgstr "密碼:"
 
-#: auth-dialog/main.c:553
+#: auth-dialog/main.c:558
 #, fuzzy, c-format
 msgid "You need to authenticate to access the Virtual Private Network “%s”."
 msgstr "您需要驗證才能存取虛擬私人網路「%s」。"

Reply via email to