I am in Phab, on the task T117662.
At the top, the page says: “1 Story Points”
This is incorrect.
This has to be corrected into: “1 Story Point”, in singular.
Thank you.
I am in Phab, on the task T117662.
At the top, the page says: “1 Story Points”
This is incorrect.
This has to be corrected into: “1 Story Point”, in singular.
Thank you.
We use a custom name "Story Points" instead of "Points" but the thingy at the top comes from src/applications/maniphest/controller/ManiphestTaskDetailController.php in upstream:
$points_name = pht('%s %s',
$task->getPoints(),
ManiphestTaskPoints::getPointsLabel());src/applications/maniphest/constants/ManiphestTaskPoints.php does return idx($config, 'label', pht('Points'));
So I don't see how to add an overwrite array in src/infrastructure/internationalization/translation/PhabricatorUSEnglishTranslation.php as that string is constructed and thus generic ('%s %s').
See https://secure.phabricator.com/T5267#199219 for more details.