mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Improve translation of an "arc land" string
Summary: This lost formatting in a pht() conversion; give the bold back and make it properly translatable. Test Plan: Will land. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D12843
This commit is contained in:
parent
383633e63f
commit
c6fa42b9c5
1 changed files with 18 additions and 6 deletions
|
@ -25,6 +25,9 @@ final class ArcanistLandWorkflow extends ArcanistWorkflow {
|
|||
private $revision;
|
||||
private $messageFile;
|
||||
|
||||
const REFTYPE_BRANCH = 'branch';
|
||||
const REFTYPE_BOOKMARK = 'bookmark';
|
||||
|
||||
public function getRevisionDict() {
|
||||
return $this->revision;
|
||||
}
|
||||
|
@ -401,12 +404,21 @@ EOTEXT
|
|||
$repository_api->execxLocal('checkout %s', $this->branch);
|
||||
}
|
||||
|
||||
echo phutil_console_format(
|
||||
"%s\n",
|
||||
pht(
|
||||
'Switched to %s **%s**. Identifying and merging...',
|
||||
$this->branchType,
|
||||
$this->branch));
|
||||
switch ($this->branchType) {
|
||||
case self::REFTYPE_BOOKMARK:
|
||||
$message = pht(
|
||||
'Switched to bookmark **%s**. Identifying and merging...',
|
||||
$this->branch);
|
||||
break;
|
||||
case self::REFTYPE_BRANCH:
|
||||
default:
|
||||
$message = pht(
|
||||
'Switched to branch **%s**. Identifying and merging...',
|
||||
$this->branch);
|
||||
break;
|
||||
}
|
||||
|
||||
echo phutil_console_format($message."\n");
|
||||
}
|
||||
|
||||
private function printPendingCommits() {
|
||||
|
|
Loading…
Reference in a new issue