mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user