From 45ea88cec48673303c1e23eacc3fcf8ad50091ff Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 17 Jul 2014 15:56:39 -0700 Subject: [PATCH] Add more columns to typeahead wire format debugging view Summary: Fixes T4420. This isn't perfect but is one step less janky, at least. Test Plan: Viewed debugging view at `/typeahead/class/`, no unlabeled columns. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T4420 Differential Revision: https://secure.phabricator.com/D9903 --- ...orTypeaheadModularDatasourceController.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php b/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php index 98c0d40d88..f08538977d 100644 --- a/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php +++ b/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php @@ -86,14 +86,17 @@ final class PhabricatorTypeaheadModularDatasourceController $table = new AphrontTableView($content); $table->setHeaders( array( - 'Name', - 'URI', - 'PHID', - 'Priority', - 'Display Name', - 'Display Type', - 'Image URI', - 'Priority Type', + pht('Name'), + pht('URI'), + pht('PHID'), + pht('Priority'), + pht('Display Name'), + pht('Display Type'), + pht('Image URI'), + pht('Priority Type'), + pht('Icon'), + pht('Closed'), + pht('Sprite'), )); $result_box = id(new PHUIObjectBoxView())