summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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: ""
)