summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormojganii <mojgan.jelodar@codic.se>2025-02-05 15:09:50 +0100
committerBug Magnet <marco.nikic@mullvad.net>2025-02-06 13:24:27 +0100
commit82335203f06eaea53b4d4fcf26710affbf41f978 (patch)
tree320ee68381df41e9ff0c9d8ca7e1e1d2d4b9ea5a
parente3869af68f08cfc38e79f9a13073ea9bdb3e1908 (diff)
downloadmullvadvpn-82335203f06eaea53b4d4fcf26710affbf41f978.tar.xz
mullvadvpn-82335203f06eaea53b4d4fcf26710affbf41f978.zip
Fix copyrights in server ip override
-rw-r--r--ios/MullvadVPN/Coordinators/Settings/APIAccess/AboutViewController.swift6
-rw-r--r--ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideCoordinator.swift2
-rw-r--r--ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideViewController.swift12
3 files changed, 10 insertions, 10 deletions
diff --git a/ios/MullvadVPN/Coordinators/Settings/APIAccess/AboutViewController.swift b/ios/MullvadVPN/Coordinators/Settings/APIAccess/AboutViewController.swift
index 710a689c56..0752fee599 100644
--- a/ios/MullvadVPN/Coordinators/Settings/APIAccess/AboutViewController.swift
+++ b/ios/MullvadVPN/Coordinators/Settings/APIAccess/AboutViewController.swift
@@ -57,7 +57,7 @@ class AboutViewController: UIViewController {
label.text = header
label.font = .systemFont(ofSize: 28, weight: .bold)
- label.textColor = .white
+ label.textColor = .primaryTextColor
label.numberOfLines = 0
label.textAlignment = .center
@@ -70,7 +70,7 @@ class AboutViewController: UIViewController {
label.text = preamble
label.font = .systemFont(ofSize: 18)
- label.textColor = .white
+ label.textColor = .primaryTextColor
label.numberOfLines = 0
label.textAlignment = .center
@@ -83,7 +83,7 @@ class AboutViewController: UIViewController {
label.text = text
label.font = .systemFont(ofSize: 15)
- label.textColor = .white
+ label.textColor = .secondaryTextColor
label.numberOfLines = 0
contentView.addArrangedSubview(label)
diff --git a/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideCoordinator.swift b/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideCoordinator.swift
index 43db6d09cd..6e43027a95 100644
--- a/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideCoordinator.swift
+++ b/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideCoordinator.swift
@@ -52,7 +52,7 @@ extension IPOverrideCoordinator: @preconcurrency IPOverrideViewControllerDelegat
let header = NSLocalizedString(
"IP_OVERRIDE_HEADER",
tableName: "IPOverride",
- value: "IP Override",
+ value: "Server IP override",
comment: ""
)
let body = [
diff --git a/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideViewController.swift b/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideViewController.swift
index 57e5cac3f3..5ccbf82744 100644
--- a/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideViewController.swift
+++ b/ios/MullvadVPN/Coordinators/Settings/IPOverride/IPOverrideViewController.swift
@@ -82,15 +82,15 @@ class IPOverrideViewController: UIViewController {
private func addHeaderView() {
let body = NSLocalizedString(
- "ACCESS_METHOD_HEADER_BODY",
- tableName: "APIAccess",
- value: "Manage default and setup custom methods to access the Mullvad API.",
+ "IP_OVERRIDE_HEADER_BODY",
+ tableName: "IPOverride",
+ value: "Import files or text with the new IP addresses for the servers in the Select location view.",
comment: ""
)
let link = NSLocalizedString(
- "ACCESS_METHOD_HEADER_LINK",
- tableName: "APIAccess",
- value: "About API access...",
+ "IP_OVERRIDE_HEADER_LINK",
+ tableName: "IPOverride",
+ value: "About Server IP override...",
comment: ""
)