From f820e05400fd678aa3c122be56871c4e4675b6b5 Mon Sep 17 00:00:00 2001 From: Povilas Staskus Date: Wed, 24 Apr 2024 16:17:17 +0300 Subject: [PATCH] Rename Followers to Subscribers in People and Person VCs --- .../Classes/ViewRelated/People/PeopleViewController.swift | 4 ++-- .../Classes/ViewRelated/People/PersonViewController.swift | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/WordPress/Classes/ViewRelated/People/PeopleViewController.swift b/WordPress/Classes/ViewRelated/People/PeopleViewController.swift index 7a9ef4efce15..52cb9b0e885c 100644 --- a/WordPress/Classes/ViewRelated/People/PeopleViewController.swift +++ b/WordPress/Classes/ViewRelated/People/PeopleViewController.swift @@ -263,11 +263,11 @@ extension PeopleViewController { case .users: return NSLocalizedString("Users", comment: "Blog Users") case .followers: - return NSLocalizedString("Followers", comment: "Blog Followers") + return NSLocalizedString("users.list.title.subscribers", value: "Subscribers", comment: "Site Subscribers") case .viewers: return NSLocalizedString("Viewers", comment: "Blog Viewers") case .email: - return NSLocalizedString("Email Followers", comment: "Blog Email Followers") + return NSLocalizedString("users.list.title.subscribers", value: "Email Subscribers", comment: "Site Email Subscribers") } } diff --git a/WordPress/Classes/ViewRelated/People/PersonViewController.swift b/WordPress/Classes/ViewRelated/People/PersonViewController.swift index 680f9f6c19b2..4617f0f635fd 100644 --- a/WordPress/Classes/ViewRelated/People/PersonViewController.swift +++ b/WordPress/Classes/ViewRelated/People/PersonViewController.swift @@ -28,13 +28,13 @@ final class PersonViewController: UITableViewController { var title: String { switch self { case .User: - return NSLocalizedString("Blog's User", comment: "Blog's User Profile. Displayed when the name is empty!") + return NSLocalizedString("user.details.title.user", value: "Site's User", comment: "Sites's User Profile. Displayed when the name is empty!") case .Follower: - return NSLocalizedString("Blog's Follower", comment: "Blog's Follower Profile. Displayed when the name is empty!") + return NSLocalizedString("user.details.title.subscriber", value: "Site's Subscriber", comment: "Site's Subscriber Profile. Displayed when the name is empty!") case .Viewer: - return NSLocalizedString("Blog's Viewer", comment: "Blog's Viewer Profile. Displayed when the name is empty!") + return NSLocalizedString("user.details.title.viewer", value: "Site's Viewer", comment: "Site's Viewers Profile. Displayed when the name is empty!") case .Email: - return NSLocalizedString("Blog's Email Follower", comment: "Blog's Email Follower Profile. Displayed when the name is empty!") + return NSLocalizedString("user.details.title.emailSubscriber", value: "Site's Email Subscriber", comment: "Site's Email Subscriber Profile. Displayed when the name is empty!") } } }