Pull request 112: TRUST-223 change field name

Squashed commit of the following:

commit 0b6dc56256cfd740c856c2ba67cd67a8e9f6271d
Author: Konstantin Gorynin <k.goryinin@adguard.com>
Date:   Thu Mar 12 14:17:06 2026 +0300

    label updated

commit 465153df23590501b82324f8e2f95c6692781248
Merge: df1e57d 7811d11
Author: Konstantin Gorynin <k.goryinin@adguard.com>
Date:   Thu Mar 12 14:08:13 2026 +0300

    Merge branch 'master' of ssh://bit.int.agrd.dev:7999/adguard-core-libs/vpn-oss-gui into feature/TRUST-223-change-field-name

commit df1e57dbfa563740d57b371fbb4ffc6380fa54d6
Author: Konstantin Gorynin <k.goryinin@adguard.com>
Date:   Wed Feb 25 13:57:36 2026 +0200

    locale updated
This commit is contained in:
Konstantin Gorynin
2026-03-12 17:32:16 +00:00
parent 7811d11ce7
commit 3358a90e07
3 changed files with 6 additions and 5 deletions
+3 -2
View File
@@ -32,7 +32,7 @@
"dnsServersWrongFieldError": "Use IP addresses, tls://, https://, quic://, or h3://",
"urlWrongFieldError": "Please check the URL: it looks incorrect",
"pleaseFillField": "Please fill out this field",
"editProfile": "Edit profile",
"editProfileName": "Edit name",
"deleteProfile": "Delete profile",
"deleteProfileDialogTitle": "Delete profile?",
"addProfile": "Add profile",
@@ -114,5 +114,6 @@
"quic": "QUIC",
"http2": "HTTP/2",
"bypass": "Bypass",
"vpn": "Vpn"
"vpn": "Vpn",
"profileNameLabel": "Profile name"
}
@@ -47,7 +47,7 @@ class RoutingCard extends StatelessWidget {
),
const SizedBox(width: 12),
Text(
context.ln.editProfile,
context.ln.editProfileName,
style: context.textTheme.bodyLarge,
),
],
@@ -50,12 +50,12 @@ class _RoutingEditNameDialogState extends State<RoutingEditNameDialog> {
);
return CustomAlertDialog(
title: context.ln.editProfile,
title: context.ln.editProfileName,
scrollable: true,
content: Padding(
padding: const EdgeInsets.only(top: 24),
child: CustomTextField(
label: context.ln.routingProfile,
label: context.ln.profileNameLabel,
value: _routingName,
error: error?.toLocalizedString(context),
onChanged: (name) => _onRoutingNameChanged(name, error != null),