summaryrefslogtreecommitdiffhomepage
path: root/android/app/src
diff options
context:
space:
mode:
authorDavid Göransson <david.goransson@mullvad.net>2025-03-21 13:04:00 +0100
committerDavid Göransson <david.goransson@mullvad.net>2025-03-21 23:11:47 +0100
commit3a954d2f9df684c54cc909a1a0dc37112d87e018 (patch)
tree4fe1e78e5fdf8a842718993e0a517ba3018c27b4 /android/app/src
parente73812ed314821a046b614b5a262b8986271d8b7 (diff)
downloadmullvadvpn-3a954d2f9df684c54cc909a1a0dc37112d87e018.tar.xz
mullvadvpn-3a954d2f9df684c54cc909a1a0dc37112d87e018.zip
Fix duplicate IPv4 string
Diffstat (limited to 'android/app/src')
-rw-r--r--android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/ConnectionDetailPanel.kt2
-rw-r--r--android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/VpnSettingsScreen.kt2
2 files changed, 2 insertions, 2 deletions
diff --git a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/ConnectionDetailPanel.kt b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/ConnectionDetailPanel.kt
index 7d4e2a5838..8640dc67bd 100644
--- a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/ConnectionDetailPanel.kt
+++ b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/ConnectionDetailPanel.kt
@@ -105,7 +105,7 @@ fun ConnectionDetails(
buildString {
append(stringResource(R.string.connection_details_out))
append(SPACE_CHAR)
- append(stringResource(R.string.connection_details_ipv4))
+ append(stringResource(R.string.ipv4))
},
color = MaterialTheme.colorScheme.onSurfaceVariant,
style = MaterialTheme.typography.bodySmall,
diff --git a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/VpnSettingsScreen.kt b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/VpnSettingsScreen.kt
index 8a43327fd3..4652a87e75 100644
--- a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/VpnSettingsScreen.kt
+++ b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/VpnSettingsScreen.kt
@@ -667,7 +667,7 @@ fun VpnSettingsScreen(
}
itemWithDivider {
SelectableCell(
- title = stringResource(id = R.string.device_ip_version_ipv4),
+ title = stringResource(id = R.string.ipv4),
isSelected = state.deviceIpVersion.getOrNull() == IpVersion.IPV4,
onCellClicked = { onSelectDeviceIpVersion(Constraint.Only(IpVersion.IPV4)) },
)