Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----
Expand Down
4 changes: 2 additions & 2 deletions WordPress/Classes/ViewRelated/Stats/Helpers/StatSection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down