mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 18:22:41 +01:00
Fix two strings with missing pht()
Summary: Fixes T12517. Test Plan: Viewed Config application; viewed repository list. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12517 Differential Revision: https://secure.phabricator.com/D17639
This commit is contained in:
parent
0bf106eeea
commit
7707685733
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ final class PhabricatorConfigApplication extends PhabricatorApplication {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName() {
|
public function getName() {
|
||||||
return 'Config';
|
return pht('Config');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getShortDescription() {
|
public function getShortDescription() {
|
||||||
|
|
|
@ -14,7 +14,7 @@ final class DiffusionRepositoryListController extends DiffusionController {
|
||||||
->setName(pht('Commits'));
|
->setName(pht('Commits'));
|
||||||
|
|
||||||
$items[] = id(new PHUIListItemView())
|
$items[] = id(new PHUIListItemView())
|
||||||
->setName('Browse Commits')
|
->setName(pht('Browse Commits'))
|
||||||
->setHref($this->getApplicationURI('commit/'));
|
->setHref($this->getApplicationURI('commit/'));
|
||||||
|
|
||||||
return id(new PhabricatorRepositorySearchEngine())
|
return id(new PhabricatorRepositorySearchEngine())
|
||||||
|
|
Loading…
Reference in a new issue