[CHANGE] Extracted all strings into the Localizable.strings

This commit is contained in:
Fabian Thies
2023-01-16 21:23:16 +01:00
parent 0000610b9d
commit f90bf3bfcf
9 changed files with 91 additions and 24 deletions

View File

@@ -44,10 +44,10 @@ struct AppPillButton: View {
return DateFormatterHelper.string(forExpirationDate: installedApp.expirationDate)
}
return "Open"
return L10n.AppPillButton.open
}
return "Free"
return L10n.AppPillButton.free
}
var body: some View {

View File

@@ -26,7 +26,7 @@ struct AppRowView: View {
Text(app.name)
.bold()
Text(storeApp?.developerName ?? "Sideloaded")
Text(storeApp?.developerName ?? L10n.AppRowView.sideloaded)
.font(.callout)
.foregroundColor(.secondary)