From e730f55e8857bd9a32d05d83150953f4e1557601 Mon Sep 17 00:00:00 2001 From: epriestley Date: Sun, 14 Mar 2021 12:59:47 -0700 Subject: [PATCH] Retitle "Recently Open Revisions" panel to "Recent Open Revisions" Summary: Ref T13639. In D17754, this: > OPEN REVISIONS > Recently updated open revisions affecting this file. ...was simplified into: > RECENTLY OPEN REVISIONS This is a bit misleading, since the panel doesn't contain "recently open" results. Use "Recent Open" instead, which is a bit more consistent with other product text. This is still slightly misleading, but probably close enough. Test Plan: Read text. Maniphest Tasks: T13639 Differential Revision: https://secure.phabricator.com/D21612 --- .../diffusion/controller/DiffusionBrowseController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/diffusion/controller/DiffusionBrowseController.php b/src/applications/diffusion/controller/DiffusionBrowseController.php index 76efa41866..042c21d232 100644 --- a/src/applications/diffusion/controller/DiffusionBrowseController.php +++ b/src/applications/diffusion/controller/DiffusionBrowseController.php @@ -963,7 +963,7 @@ final class DiffusionBrowseController extends DiffusionController { } $header = id(new PHUIHeaderView()) - ->setHeader(pht('Recently Open Revisions')); + ->setHeader(pht('Recent Open Revisions')); $list = id(new DifferentialRevisionListView()) ->setViewer($viewer)