Change to use the term Syncing instead of Refreshing because we also use the indicator to do other types of syncing, like deleting feeds

This commit is contained in:
Maurice Parker
2022-11-11 19:41:36 -06:00
parent 985a606c3c
commit 63f15c99c9

View File

@@ -61,11 +61,11 @@ public struct CombinedRefreshProgress {
if isInprecise {
if numberOfDownloadsActive == 1 {
if let activeName = downloadProgressArray.first(where: { $0.isComplete == false })?.name {
let formatString = NSLocalizedString("Refreshing %@", comment: "Status bar progress")
let formatString = NSLocalizedString("Syncing %@", comment: "Status bar progress")
label = NSString(format: formatString as NSString, activeName) as String
}
} else {
let formatString = NSLocalizedString("Refreshing %@ accounts", comment: "Status bar progress")
let formatString = NSLocalizedString("Syncing %@ accounts", comment: "Status bar progress")
label = NSString(format: formatString as NSString, NSNumber(value: numberOfDownloadsActive)) as String
}
} else {