diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index ce6c64879123..706be622f81e 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -3,6 +3,7 @@ * [*] Custom Post Types: Make custom post types with REST API and editor support available in My Site [#25849] * [*] Stop the media picker from removing gallery images when you cancel it in the experimental editor [#25866] * [*] Stats: Fix the screen getting stuck on a loading indicator for self-hosted sites that are not connected to Jetpack [#25858] +* [*] Stats: Rename the "Total Likes" and "Total Comments" Insights cards to "Likes" and "Comments" to match the 7 days of data they show [#23015] 27.1 ----- diff --git a/WordPress/Classes/ViewRelated/Stats/Helpers/StatSection.swift b/WordPress/Classes/ViewRelated/Stats/Helpers/StatSection.swift index 84843e099a23..a4fe611fa461 100644 --- a/WordPress/Classes/ViewRelated/Stats/Helpers/StatSection.swift +++ b/WordPress/Classes/ViewRelated/Stats/Helpers/StatSection.swift @@ -404,8 +404,8 @@ import WordPressShared static let latestPostSummary = NSLocalizedString("Latest Post Summary", comment: "Insights latest post summary header") static let allTimeStats = NSLocalizedString("All-Time", comment: "Insights 'All-Time' header") static let mostPopularTime = NSLocalizedString("stats.insights.mostPopularCard.title", value: "🔥 Most Popular Time", comment: "Insights 'Most Popular Time' header. Fire emoji should remain part of the string.") - static let likesTotals = NSLocalizedString("Total Likes", comment: "Insights 'Total Likes' header") - static let commentsTotals = NSLocalizedString("Total Comments", comment: "Insights 'Total Comments' header") + static let likesTotals = NSLocalizedString("stats.insights.likes.title", value: "Likes", comment: "Insights 'Likes' header") + static let commentsTotals = NSLocalizedString("stats.insights.comments.title", value: "Comments", comment: "Insights 'Comments' header") static let subscribersTotal = NSLocalizedString("stats.insights.totalSubscribers.title", value: "Total Subscribers", comment: "Insights 'Total Subscribers' header") static let publicize = NSLocalizedString("Jetpack Social Connections", comment: "Insights 'Jetpack Social Connections' header") static let todaysStats = NSLocalizedString("Today", comment: "Insights 'Today' header")