Use long dash for excluded migration profiles
This commit is contained in:
parent
01e0559060
commit
a2f17cc905
|
@ -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()
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue