Skip to content

Commit 5a0f79d

Browse files
committed
Fix some translations
1 parent 42c57d8 commit 5a0f79d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Sources/SwiftExtras/Extensions/Date+.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,4 +360,3 @@ extension Date {
360360
return "\(hour):\(minute)"
361361
}
362362
}
363-

Sources/SwiftExtras/SwiftUI/SESettingsView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public struct SESettingsView<TopContent: View, BottomContent: View>: View {
241241
if let createdBy {
242242
HStack(spacing: 2) {
243243
Text("Created by", bundle: Bundle.module)
244-
Text(verbatim: .init(createdBy))
244+
Text(.init(createdBy))
245245
}
246246
}
247247
}
@@ -466,7 +466,7 @@ public struct SESettingsView<TopContent: View, BottomContent: View>: View {
466466
HStack(spacing: 2) {
467467
Text("Created by", bundle: Bundle.module) +
468468
Text(verbatim: " ") +
469-
Text(verbatim: .init(createdBy))
469+
Text(.init(createdBy))
470470
}
471471
}
472472
}

0 commit comments

Comments
 (0)