mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Mark some strings for translation
Summary: Add some more `pht`izations. Test Plan: Eyeball it. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D13198
This commit is contained in:
parent
c36a825f5c
commit
7d15b85a1b
2 changed files with 5 additions and 5 deletions
|
@ -349,9 +349,9 @@ EOTEXT
|
|||
$table = id(new PhutilConsoleTable())
|
||||
->setShowHeader(false)
|
||||
->addColumn('current', array('title' => ''))
|
||||
->addColumn('name', array('title' => 'Name'))
|
||||
->addColumn('status', array('title' => 'Status'))
|
||||
->addColumn('descr', array('title' => 'Description'));
|
||||
->addColumn('name', array('title' => pht('Name')))
|
||||
->addColumn('status', array('title' => pht('Status')))
|
||||
->addColumn('descr', array('title' => pht('Description')));
|
||||
|
||||
foreach ($out as $line) {
|
||||
$table->addRow(array(
|
||||
|
|
|
@ -83,8 +83,8 @@ EOTEXT
|
|||
$table = id(new PhutilConsoleTable())
|
||||
->setShowHeader(false)
|
||||
->addColumn('exists', array('title' => ''))
|
||||
->addColumn('status', array('title' => 'Status'))
|
||||
->addColumn('title', array('title' => 'Title'));
|
||||
->addColumn('status', array('title' => pht('Status')))
|
||||
->addColumn('title', array('title' => pht('Title')));
|
||||
|
||||
$info = isort($info, 'sort');
|
||||
foreach ($info as $key => $spec) {
|
||||
|
|
Loading…
Reference in a new issue