1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +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:
epriestley 2015-05-14 10:58:22 -07:00
parent 383633e63f
commit c6fa42b9c5

View file

@ -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() {