Localizations fixes

This commit is contained in:
Arkadiusz Fal
2022-10-12 18:49:47 +02:00
parent ba9460483f
commit fb1358cfc3
3 changed files with 5 additions and 6 deletions

View File

@@ -46,9 +46,9 @@ struct AdvancedSettings: View {
#endif
} label: {
#if os(macOS)
let labelText = "Open logs in Finder"
let labelText = "Open logs in Finder".localized()
#else
let labelText = "Share Logs..."
let labelText = "Share Logs...".localized()
#endif
Text(labelText)
}

View File

@@ -45,7 +45,7 @@ struct PopularView: View {
refreshControl.endRefreshing()
}
.onFailure { error in
NavigationModel.shared.presentAlert(title: "Could not refresh Trending", message: error.userMessage)
NavigationModel.shared.presentAlert(title: "Could not refresh Popular", message: error.userMessage)
}
}
.backport