Use long dash for excluded migration profiles

This commit is contained in:
Davide 2024-11-17 16:26:22 +01:00
parent 01e0559060
commit a2f17cc905
No known key found for this signature in database
GPG Key ID: A48836171C759F5E
3 changed files with 4 additions and 2 deletions

View File

@ -278,7 +278,7 @@ private extension MigrateContentView.ListView {
func icon(forStatus status: MigrationStatus) -> some View {
switch status {
case .excluded:
Text("--")
Text(Strings.Unlocalized.longDash)
case .pending:
ProgressView()

View File

@ -146,7 +146,7 @@ private extension MigrateContentView.TableView {
var statusView: some View {
switch status {
case .excluded:
Text("--")
Text(Strings.Unlocalized.longDash)
case .pending:
ThemeImage(.progress)

View File

@ -118,6 +118,8 @@ extension Strings {
public static let ipv6 = "IPv6"
public static let longDash = ""
public static let mtu = "MTU"
public static let openVPN = "OpenVPN"