mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Clarify language when Autoclose is disabled for a repository
Summary: Fixes T12051, adds additional language. Test Plan: Disable Autoclose in Actions, see updated language under Branches. {F5147291} Reviewers: epriestley Reviewed By: epriestley Spies: Korvin Maniphest Tasks: T12051 Differential Revision: https://secure.phabricator.com/D18482
This commit is contained in:
parent
37843127e9
commit
b8b701faf7
1 changed files with 11 additions and 2 deletions
|
@ -86,8 +86,11 @@ final class DiffusionRepositoryBranchesManagementPanel
|
|||
$repository->getHumanReadableDetail('close-commits-filter', array()),
|
||||
phutil_tag('em', array(), pht('Autoclose On All Branches')));
|
||||
|
||||
$autoclose_disabled = false;
|
||||
if ($repository->getDetail('disable-autoclose')) {
|
||||
$autoclose_only = phutil_tag('em', array(), pht('Disabled'));
|
||||
$autoclose_disabled = true;
|
||||
$autoclose_only =
|
||||
phutil_tag('em', array(), pht('Autoclose has been disabled'));
|
||||
}
|
||||
|
||||
$view->addProperty(pht('Autoclose Only'), $autoclose_only);
|
||||
|
@ -133,12 +136,18 @@ final class DiffusionRepositoryBranchesManagementPanel
|
|||
$status = pht('Open');
|
||||
}
|
||||
|
||||
if ($autoclose_disabled) {
|
||||
$autoclose_status = pht('Disabled (Repository)');
|
||||
} else {
|
||||
$autoclose_status = pht('Off');
|
||||
}
|
||||
|
||||
$rows[] = array(
|
||||
$icon,
|
||||
$branch_name,
|
||||
$status,
|
||||
$tracking ? pht('Tracking') : pht('Off'),
|
||||
$autoclosing ? pht('Autoclose On') : pht('Off'),
|
||||
$autoclosing ? pht('Autoclose On') : $autoclose_status,
|
||||
);
|
||||
}
|
||||
$branch_table = new AphrontTableView($rows);
|
||||
|
|
Loading…
Reference in a new issue