Skip to content

Commit c5503fd

Browse files
committed
fix: replace em dashes with middle dots in user-facing strings
1 parent a6aa039 commit c5503fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TableProMobile/TableProMobile/AppState.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ final class AppState {
191191
let items = connections.map { conn in
192192
let attributes = CSSearchableItemAttributeSet(contentType: .item)
193193
attributes.title = conn.name.isEmpty ? conn.host : conn.name
194-
attributes.contentDescription = "\(conn.type.rawValue) \(conn.host):\(conn.port)"
194+
attributes.contentDescription = "\(conn.type.rawValue) · \(conn.host):\(conn.port)"
195195
return CSSearchableItem(
196196
uniqueIdentifier: conn.id.uuidString,
197197
domainIdentifier: "com.TablePro.connections",

TableProMobile/TableProMobile/Intents/ConnectionEntity.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct ConnectionEntity: AppEntity {
1818
var displayRepresentation: DisplayRepresentation {
1919
DisplayRepresentation(
2020
title: "\(name)",
21-
subtitle: "\(databaseType) \(host)"
21+
subtitle: "\(databaseType) · \(host)"
2222
)
2323
}
2424
}

0 commit comments

Comments
 (0)