For this line:
src/applications/audit/constants/PhabricatorAuditActionConstants.php: self::ACCEPT => pht("Accept Commit \xE2\x9C\x94"),
I tried first:
"Accept Commit \xE2\x9C\x94": "添加审核人\xE2\x9C\x94",
Phabricator throws error:
The given value must be valid JSON. This means, among other things, that you must wrap strings in double-quotes.
Then I tried:
"Accept Commit \\xE2\\x9C\\x94": "添加审核人\\xE2\\x9C\\x94",
It won't cause errors but also doesn't take effect. So now I am stuck with this half-done dropdown:
How do I properly escape the \ character?