[Pkg-utopia-maintainers] Bug#1112323: trixie-pu: package network-manager-openvpn/1.12.3-1~deb13u1

Michael Biebl biebl at debian.org
Thu Aug 28 14:07:22 BST 2025


Package: release.debian.org
Severity: normal
Tags: trixie
X-Debbugs-Cc: network-manager-openvpn at packages.debian.org
Control: affects -1 + src:network-manager-openvpn
User: release.debian.org at packages.debian.org
Usertags: pu

There was as bugfix release of NetworkManager-openvpn
https://lists.freedesktop.org/archives/networkmanager/2025-August/000434.html

Its release notes say

"
It contains the fix for an important bug that was reported after the
previous release a few weeks ago, so it is recommended that distros
that already shipped 1.12.2 update as soon as possible:
https://bugzilla.redhat.com/show_bug.cgi?id=2388442
"

Debian trixie does ship 1.12.2, so is affected.

It's about 2FA being broken when non-ASCII characters are being used.


I did not test this specific code path and there are no automated tests
for it either. That said, the original bug reporter confirmed that it fixed his problem:
https://bugzilla.redhat.com/show_bug.cgi?id=2388442#c5

A full debdiff is attached.

Regards
Michael
-------------- next part --------------
diff --git a/NEWS b/NEWS
index b75da78..63cb56d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+=======================================================
+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 --git a/auth-dialog/main.c b/auth-dialog/main.c
index 0dd1269..c5907ab 100644
--- a/auth-dialog/main.c
+++ b/auth-dialog/main.c
@@ -492,7 +492,6 @@ main (int argc, char *argv[])
 	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 @@ main (int argc, char *argv[])
 			{ "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 @@ main (int argc, char *argv[])
 #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 --git a/configure b/configure
index 13d56eb..66b62d5 100755
--- a/configure
+++ b/configure
@@ -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 @@ MAKEFLAGS=
 # 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 @@ if test "$ac_init_help" = "long"; then
   # 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 @@ fi
 
 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 @@ fi
 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 @@ cat >config.log <<_ACEOF
 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 @@ fi
 
 # 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 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # 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 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
 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 --git a/configure.ac b/configure.ac
index ca6b69c..7837e29 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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 --git a/debian/changelog b/debian/changelog
index 036703b..90084e3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+network-manager-openvpn (1.12.3-1~deb13u1) trixie; urgency=medium
+
+  * Switch debian-branch to debian/trixie
+  * Rebuild for trixie
+
+ -- Michael Biebl <biebl at debian.org>  Thu, 28 Aug 2025 14:42:11 +0200
+
+network-manager-openvpn (1.12.3-1) unstable; urgency=medium
+
+  * New upstream version 1.12.3
+
+ -- Michael Biebl <biebl at debian.org>  Tue, 26 Aug 2025 19:04:29 +0200
+
 network-manager-openvpn (1.12.2-2) unstable; urgency=medium
 
   * Rename debian-branch to debian/latest as per DEP-14
diff --git a/debian/gbp.conf b/debian/gbp.conf
index 8a4d588..3477505 100644
--- a/debian/gbp.conf
+++ b/debian/gbp.conf
@@ -1,5 +1,5 @@
 [DEFAULT]
 pristine-tar = True
 patch-numbers = False
-debian-branch = debian/latest
+debian-branch = debian/trixie
 upstream-branch = upstream/latest
diff --git a/po/NetworkManager-openvpn.pot b/po/NetworkManager-openvpn.pot
index 05dfb49..255a945 100644
--- a/po/NetworkManager-openvpn.pot
+++ b/po/NetworkManager-openvpn.pot
@@ -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 at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -101,7 +101,7 @@ msgstr ""
 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 --git a/po/ar.po b/po/ar.po
index 11a64ce..fd01f89 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -10,7 +10,7 @@ msgstr ""
 "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 <djihed at gmail.com>\n"
 "Language-Team: Arabic <doc at arabeyes.org>\n"
@@ -120,7 +120,7 @@ msgstr "???? ?? ??_?????:"
 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 --git a/po/as.po b/po/as.po
index 4a13fbd..60e6d13 100644
--- a/po/as.po
+++ b/po/as.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <aphukan at fedoraproject.org>\n"
 "Language-Team: Assamese <fedora-trans-as at redhat.com>\n"
@@ -113,7 +113,7 @@ msgstr "??????????? ????????? (_w):"
 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 --git a/po/be.po b/po/be.po
index c603641..fc93520 100644
--- a/po/be.po
+++ b/po/be.po
@@ -5,7 +5,7 @@ msgstr ""
 "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 <yuri at matsuk.net>\n"
 "Language-Team: Belarusian <i18n-bel-gnome at googlegroups.com>\n"
@@ -109,7 +109,7 @@ msgstr "_?????? ?? ???????????:"
 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 --git a/po/bg.po b/po/bg.po
index 002865b..57390db 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <mk2616 at abv.bg>\n"
 "Language-Team: Bulgarian <dict at fsa-bg.org>\n"
@@ -112,7 +112,7 @@ msgstr "?????? ?? _???????????:"
 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 --git a/po/bs.po b/po/bs.po
index 0665167..0923a0b 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -8,7 +8,7 @@ msgstr ""
 "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? <megaribi at epn.ba>\n"
 "Language-Team: Bosnian <bs at li.org>\n"
@@ -112,7 +112,7 @@ msgstr "Potvrdite loz_inku:"
 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 --git a/po/ca.po b/po/ca.po
index 76b1e66..8f1be55 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -15,7 +15,7 @@ msgstr ""
 "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 <carles.ferrando at gmail.com>\n"
 "Language-Team: Catalan <info at softcatala.org>\n"
@@ -116,7 +116,7 @@ msgstr "Contrasenya del _certificat:"
 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 --git a/po/ca at valencia.po b/po/ca at valencia.po
index 779db2e..77fd923 100644
--- a/po/ca at valencia.po
+++ b/po/ca at valencia.po
@@ -12,7 +12,7 @@ msgstr ""
 "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 <david.planella at gmail.com>\n"
 "Language-Team: Catalan <tradgnome at softcatala.org>\n"
@@ -118,7 +118,7 @@ msgstr "Contrasenya del _certificat:"
 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 --git a/po/cs.po b/po/cs.po
index e5a36d0..fc1762e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -12,7 +12,7 @@ msgstr ""
 "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? <marek at manet.cz>\n"
 "Language-Team: Czech <gnome-cs-list at gnome.org>\n"
@@ -115,7 +115,7 @@ msgstr "Heslo _certifik?tu:"
 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 --git a/po/da.po b/po/da.po
index cc34eef..56a1fbd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "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 <alanmortensen.am at gmail.com>\n"
 "Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
@@ -113,7 +113,7 @@ msgstr "Ad_gangskode til certifikat:"
 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 --git a/po/de.po b/po/de.po
index 40bdf66..1b58e93 100644
--- a/po/de.po
+++ b/po/de.po
@@ -15,7 +15,7 @@ msgstr ""
 "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 <gastornis at posteo.org>\n"
 "Language-Team: Deutsch <gnome-de at gnome.org>\n"
@@ -119,7 +119,7 @@ msgstr "Zertifikatspass_wort:"
 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 --git a/po/dz.po b/po/dz.po
index db8a40b..a435d88 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <sonaa_peldn at yahoo.com>\n"
 "Language-Team: Dzongkha <pgeyleg at dit.gov.bt>\n"
@@ -118,7 +118,7 @@ msgstr "???????????????:"
 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 --git a/po/el.po b/po/el.po
index 4c7dd5a..666ff16 100644
--- a/po/el.po
+++ b/po/el.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <tomtryf at gmail.com>\n"
 "Language-Team: team at gnome.gr\n"
@@ -113,7 +113,7 @@ msgstr "_??????? ????????? ??????????????:"
 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 --git a/po/en_GB.po b/po/en_GB.po
index da0b075..5d7c394 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <cjlhomeaddress at gmail.com>\n"
 "Language-Team: Sugar Labs\n"
@@ -118,7 +118,7 @@ msgstr "Certificate pass_word:"
 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 --git a/po/eo.po b/po/eo.po
index 0eebafd..f7d0243 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <kristjan.schmidt at googlemail.com>\n"
 "Language-Team: Esperanto <gnome-l10n-eo at lists.launchpad.net>\n"
@@ -105,7 +105,7 @@ msgstr ""
 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 --git a/po/es.po b/po/es.po
index f6b2cfd..89106d2 100644
--- a/po/es.po
+++ b/po/es.po
@@ -18,7 +18,7 @@ msgstr ""
 "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 <daniel.mustieles at gmail.com>\n"
 "Language-Team: Spanish - Spain <gnome-es-list at gnome.org>\n"
@@ -121,7 +121,7 @@ msgstr "_Contrase?a del certificado:"
 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 --git a/po/et.po b/po/et.po
index 849f011..1f08c95 100644
--- a/po/et.po
+++ b/po/et.po
@@ -12,7 +12,7 @@ msgstr ""
 "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 <mahfiaz at gmail.com>\n"
 "Language-Team: Estonian <gnome-et at linux.ee>\n"
@@ -114,7 +114,7 @@ msgstr "Sertifikaadi _parool:"
 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 --git a/po/eu.po b/po/eu.po
index 494b91c..a264ed2 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -11,7 +11,7 @@ msgstr ""
 "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 <asiersarasua at ni.eus>\n"
 "Language-Team: Basque <librezale at librezale.eus>\n"
@@ -110,7 +110,7 @@ msgstr "_Ziurtagiriaren pasahitza:"
 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 --git a/po/fa.po b/po/fa.po
index cce660d..4877150 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <mousavi.arash at gmail.com>\n"
 "Language-Team: Persian\n"
@@ -110,7 +110,7 @@ msgstr "_????????? ???????:"
 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 --git a/po/fi.po b/po/fi.po
index 42a2fef..46723b4 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -11,7 +11,7 @@ msgstr ""
 "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 <jiri.gronroos+l10n at iki.fi>\n"
 "Language-Team: suomi <gnome-fi-laatu at lists.sourceforge.net>\n"
@@ -114,7 +114,7 @@ msgstr "Varmenteen _salasana:"
 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 --git a/po/fr.po b/po/fr.po
index 4b1b1c9..db99c8e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -16,7 +16,7 @@ msgstr ""
 "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 <filorin at gmx.com>\n"
 "Language-Team: fran?ais <gnomefr at traduc.org>\n"
@@ -120,7 +120,7 @@ msgstr "_Mot de passe du certificat?:"
 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 --git a/po/fur.po b/po/fur.po
index e594175..a3ef848 100644
--- a/po/fur.po
+++ b/po/fur.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <f.t.public at gmail.com>\n"
 "Language-Team: Friulian <fur at li.org>\n"
@@ -109,7 +109,7 @@ msgstr "Pass_word dal certific?t:"
 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 --git a/po/gl.po b/po/gl.po
index 5a61438..aa69ce5 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -13,7 +13,7 @@ msgstr ""
 "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 <marcoslansgarza at gmail.com>\n"
 "Language-Team: galego\n"
@@ -114,7 +114,7 @@ msgstr "_Contrasinal do certificado:"
 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 --git a/po/gu.po b/po/gu.po
index c79bc14..37cd331 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <swkothar at redhat.com>\n"
 "Language-Team: Gujarati\n"
@@ -110,7 +110,7 @@ msgstr "?????????? ??????? (_w):"
 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 --git a/po/he.po b/po/he.po
index 49d745e..264e7aa 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <sh.yaron at gmail.com>\n"
 "Language-Team: Hebrew <sh.yaron at gmail.com>\n"
@@ -109,7 +109,7 @@ msgstr "????? ?_?????:"
 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 --git a/po/hi.po b/po/hi.po
index e6b95af..697197e 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <weblate.scrambled777 at simplelogin.com>\n"
 "Language-Team: Hindi <indlinux-hindi at lists.sourceforge.net>\n"
@@ -108,7 +108,7 @@ msgstr "?????????? ??????? (_w):"
 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 --git a/po/hr.po b/po/hr.po
index ae654f8..3b81cba 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <trebelnik2 at gmail.com>\n"
 "Language-Team: Croatian <hr at li.org>\n"
@@ -109,7 +109,7 @@ msgstr "Ovjerena loz_inka:"
 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 --git a/po/hu.po b/po/hu.po
index e4ab54b..583e2de 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -11,7 +11,7 @@ msgstr ""
 "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 @@ msgstr "Tan?s?tv?ny _jelszava:"
 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 --git a/po/id.po b/po/id.po
index 20a751c..d004f73 100644
--- a/po/id.po
+++ b/po/id.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <andika at gmail.com>\n"
 "Language-Team: GNOME Indonesian Translation Team <gnome at i15n.org>\n"
@@ -109,7 +109,7 @@ msgstr "_Kata sandi sertifikat:"
 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 --git a/po/it.po b/po/it.po
index aa7aecf..e966808 100644
--- a/po/it.po
+++ b/po/it.po
@@ -11,7 +11,7 @@ msgstr ""
 "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 <milo at milo.name>\n"
 "Language-Team: Italian <tp at lists.linux.it>\n"
@@ -113,7 +113,7 @@ msgstr "Pass_word del certificato:"
 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 --git a/po/ja.po b/po/ja.po
index 10f8d05..cd4612c 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -10,7 +10,7 @@ msgstr ""
 "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 <translation at sicklylife.jp>\n"
 "Language-Team: Japanese <gnome-translation at gnome.gr.jp>\n"
@@ -107,7 +107,7 @@ msgstr "???????(_W):"
 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 --git a/po/ka.po b/po/ka.po
index 2680530..ee6b968 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <papava.e at gtu.ge>\n"
 "Language-Team: \n"
@@ -105,7 +105,7 @@ msgstr "???????????? _??????:"
 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 --git a/po/kn.po b/po/kn.po
index 78aa053..b3504be 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <svenkate at redhat.com>\n"
 "Language-Team: Kannada <en at li.org>\n"
@@ -113,7 +113,7 @@ msgstr "??????????? ???????(_w):"
 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 --git a/po/ko.po b/po/ko.po
index 914f9cc..8c2e699 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -10,7 +10,7 @@ msgstr ""
 "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 <cwryu at debian.org>\n"
 "Language-Team: GNOME Korea <gnome-kr at googlegroups.com>\n"
@@ -116,7 +116,7 @@ msgstr "??? ??(_W):"
 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 --git a/po/lt.po b/po/lt.po
index afb8996..a747d1c 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <aurisc4 at gmail.com>\n"
 "Language-Team: Lietuvi? <gnome-lt at lists.akl.lt>\n"
@@ -111,7 +111,7 @@ msgstr "Liudijimo slapta?o_dis:"
 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 --git a/po/lv.po b/po/lv.po
index 7745d52..233fa59 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <rudolfs.mazurs at gmail.com>\n"
 "Language-Team: Latvian <lata-l10n at googlegroups.com>\n"
@@ -115,7 +115,7 @@ msgstr "Sertifik?ta _parole:"
 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 --git a/po/mk.po b/po/mk.po
index f03b74c..91eab0d 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <arangel at linux.net.mk>\n"
 "Language-Team: Macedonian <ossm-members at hedona.on.net.mk>\n"
@@ -117,7 +117,7 @@ msgstr "?????_?? ?? ??????????:"
 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 --git a/po/mr.po b/po/mr.po
index 8646a5e..fd009e5 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <sandeep.shedmake at gmail.com>\n"
 "Language-Team: marathi\n"
@@ -112,7 +112,7 @@ msgstr "?????????? ??????? ???? (_w):"
 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 --git a/po/nb.po b/po/nb.po
index 108b322..cb81201 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <kmaraas at gnome.org>\n"
 "Language-Team: Norwegian Bokm?l <i18n-nb at lister.ping.uio.no>\n"
@@ -110,7 +110,7 @@ msgstr "Pass_ord for sertifikat:"
 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 --git a/po/nl.po b/po/nl.po
index b8e0eef..dd68aaa 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -13,7 +13,7 @@ msgstr ""
 "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 <nfollens at gnome.org>\n"
 "Language-Team: Dutch <gnome-nl-list at gnome.org>\n"
@@ -117,7 +117,7 @@ msgstr "Wachtwoord voor _HTTP-proxy:"
 
 # 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 --git a/po/pa.po b/po/pa.po
index d55ee17..b99c688 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <aalam at users.sf.net>\n"
 "Language-Team: Punjabi/Panjabi <kde-i18n-doc at kde.org>\n"
@@ -112,7 +112,7 @@ msgstr "????????? ??????(_w):"
 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 --git a/po/pl.po b/po/pl.po
index 17526ae..6c2efc8 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -10,7 +10,7 @@ msgstr ""
 "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 <piotrdrag at gmail.com>\n"
 "Language-Team: Polish <community-poland at mozilla.org>\n"
@@ -110,7 +110,7 @@ msgstr "Has?o _certyfikatu:"
 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 --git a/po/ps.po b/po/ps.po
index a8b005c..89664d2 100644
--- a/po/ps.po
+++ b/po/ps.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <zabeehkhan at gmail.com>\n"
 "Language-Team: Pashto <pathanisation at googlegroups.com>\n"
@@ -110,7 +110,7 @@ msgstr "? ?????? ???_????:"
 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 --git a/po/pt.po b/po/pt.po
index 297b075..45e0e3c 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -10,7 +10,7 @@ msgstr ""
 "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 @@ msgstr "_Senha do certificado:"
 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 --git a/po/pt_BR.po b/po/pt_BR.po
index d80f7ef..42fd99c 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -20,7 +20,7 @@ msgstr ""
 "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 @@ msgstr "Sen_ha do certificado:"
 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 --git a/po/ro.po b/po/ro.po
index 09cc1a6..2aaada1 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <daniel at serbanescu.dk>\n"
 "Language-Team: Gnome Romanian Translation Team\n"
@@ -114,7 +114,7 @@ msgstr "Paro_l? certificat?:"
 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 --git a/po/ru.po b/po/ru.po
index 56e6886..ae72225 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -17,7 +17,7 @@ msgstr ""
 "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: ??????? ???? <juliette.tux at gmail.com>\n"
 "Language-Team: RU\n"
@@ -120,7 +120,7 @@ msgstr "?????? ?????_??????:"
 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 --git a/po/sk.po b/po/sk.po
index 1138b74..c4ed79d 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <prescott66 at gmail.com>\n"
 "Language-Team: Slovak <sk-i18n at lists.linux.sk>\n"
@@ -109,7 +109,7 @@ msgstr "Hes_lo certifik?tu:"
 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 --git a/po/sl.po b/po/sl.po
index 0cf05ef..90f05e4 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -11,7 +11,7 @@ msgstr ""
 "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 <miles at filmsi.net>\n"
 "Language-Team: Slovenian GNOME Translation Team <gnome-si at googlegroups.com>\n"
@@ -113,7 +113,7 @@ msgstr "G_eslo potrdila:"
 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 --git a/po/sr.po b/po/sr.po
index e9b4bd1..914074e 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -11,7 +11,7 @@ msgstr ""
 "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: ???????? ??????? <miroslavnikolic at rocketmail.com>\n"
 "Language-Team: Serbian <?????? <gnome-sr at googlegroups.org>>\n"
@@ -113,7 +113,7 @@ msgstr "??????? _???????:"
 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 --git a/po/sr at latin.po b/po/sr at latin.po
index 340699b..da222e5 100644
--- a/po/sr at latin.po
+++ b/po/sr at latin.po
@@ -9,7 +9,7 @@ msgstr ""
 "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? <miroslavnikolic at rocketmail.com>\n"
 "Language-Team: srpski <gnome-sr at googlegroups.org>\n"
@@ -116,7 +116,7 @@ msgstr "Lozinka _uverenja:"
 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 --git a/po/sv.po b/po/sv.po
index a34a3e5..0c75742 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,7 +10,7 @@ msgstr ""
 "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 <anders.jonsson at norsjovallen.se>\n"
 "Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -110,7 +110,7 @@ msgstr "Certifikatl?se_nord:"
 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 --git a/po/ta.po b/po/ta.po
index b1a1ddb..fb50dc5 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -10,7 +10,7 @@ msgstr ""
 "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 <ifelix at redhat.com>\n"
 "Language-Team: Tamil <fedora-trans-ta at redhat.com>\n"
@@ -117,7 +117,7 @@ msgstr "????????? ?????????? (_w):"
 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 --git a/po/te.po b/po/te.po
index 41eedf6..6049b7a 100644
--- a/po/te.po
+++ b/po/te.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <kkrothap at redhat.com>\n"
 "Language-Team: Telugu <en at li.org>\n"
@@ -115,7 +115,7 @@ msgstr "????????????? ????????? (_w)
 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 --git a/po/th.po b/po/th.po
index 57b9070..03ff3e7 100644
--- a/po/th.po
+++ b/po/th.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <thep at linux.thai.net>\n"
 "Language-Team: Thai <l10n.opentle.org>\n"
@@ -108,7 +108,7 @@ msgstr "_????????????????:"
 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 --git a/po/tr.po b/po/tr.po
index 87c8e8f..88044d7 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -13,7 +13,7 @@ msgstr ""
 "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 <etcetin at gmail.com>\n"
 "Language-Team: Turkish <takim at gnome.org.tr>\n"
@@ -113,7 +113,7 @@ msgstr "Sertifika paro_las?:"
 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 --git a/po/ug.po b/po/ug.po
index 81cda74..3cd2d76 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <gheyret at yahoo.com>\n"
 "Language-Team: Uyghur Computer Science Association <UKIJ at yahoogroups.com>\n"
@@ -107,7 +107,7 @@ msgstr "????????? ????(_W):"
 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 --git a/po/uk.po b/po/uk.po
index 05f5405..e03c78b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -9,7 +9,7 @@ msgstr ""
 "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 <yurchor at ukr.net>\n"
 "Language-Team: Ukrainian <trans-uk at lists.fedoraproject.org>\n"
@@ -111,7 +111,7 @@ msgstr "??_???? ???????????:"
 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 --git a/po/vi.po b/po/vi.po
index 7d05ece..7f1b86a 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -7,7 +7,7 @@ msgstr ""
 "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 <clytie at riverland.net.au>\n"
 "Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
@@ -116,7 +116,7 @@ msgstr "M?t _kh?u ch?ng nh?n:"
 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 --git a/po/zh_CN.po b/po/zh_CN.po
index 5fb813e..ed78a7e 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -12,7 +12,7 @@ msgstr ""
 "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 <wsxy162 at gmail.com>\n"
 "Language-Team: Chinese - China <i18n-zh at googlegroups.com>\n"
@@ -113,7 +113,7 @@ msgstr "????(_W)?"
 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 --git a/po/zh_HK.po b/po/zh_HK.po
index b7b699c..20ed4ff 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <j_h_liau at yahoo.com.tw>\n"
 "Language-Team: Chinese (Hong Kong) <community at linuxhall.org>\n"
@@ -109,7 +109,7 @@ msgstr "????(_W):"
 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 --git a/po/zh_TW.po b/po/zh_TW.po
index 8893fed..92e7ee9 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -8,7 +8,7 @@ msgstr ""
 "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 <j_h_liau at yahoo.com.tw>\n"
 "Language-Team: Chinese (traditional) <community at linuxhall.org>\n"
@@ -109,7 +109,7 @@ msgstr "????(_W):"
 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??"


More information about the Pkg-utopia-maintainers mailing list