We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93e37e9 commit 63b4183Copy full SHA for 63b4183
src/applications/oauthserver/controller/PhabricatorOAuthServerAuthController.php
@@ -136,7 +136,8 @@ public function processRequest() {
136
137
// display time -- make a nice form for the user to grant the client
138
// access to the granularity specified by $scope
139
- $title = 'Authorize '.$client->getName().'?';
+ $name = $client->getName();
140
+ $title = pht('Authorize %s?', $name);
141
$panel = new AphrontPanelView();
142
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
143
$panel->setHeader($title);
0 commit comments