From 63f15c99c9c12bc2e32443d01578e34a570c411e Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Fri, 11 Nov 2022 19:41:36 -0600 Subject: [PATCH] Change to use the term Syncing instead of Refreshing because we also use the indicator to do other types of syncing, like deleting feeds --- Account/Sources/Account/CombinedRefreshProgress.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Account/Sources/Account/CombinedRefreshProgress.swift b/Account/Sources/Account/CombinedRefreshProgress.swift index d4885cc3d..0020b94a6 100644 --- a/Account/Sources/Account/CombinedRefreshProgress.swift +++ b/Account/Sources/Account/CombinedRefreshProgress.swift @@ -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 {