mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-18 09:48:39 +01:00
Double escape %N (%%N) for pht in Releeph project editor
Summary: Oops, `pht()` interpolates percent escape sequences, but this is a literal "%N". Test Plan: Edit a Releeph project; notice no errors. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5897
This commit is contained in:
parent
83bb113be7
commit
00cc6b1ba5
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ final class ReleephProjectEditController extends ReleephController {
|
||||||
->setValue($release_counter)
|
->setValue($release_counter)
|
||||||
->setName('releaseCounter')
|
->setName('releaseCounter')
|
||||||
->setCaption(
|
->setCaption(
|
||||||
pht("Used by the command line branch cutter's %N field")))
|
pht("Used by the command line branch cutter's %%N field")))
|
||||||
->appendChild(
|
->appendChild(
|
||||||
id(new AphrontFormTextAreaControl())
|
id(new AphrontFormTextAreaControl())
|
||||||
->setLabel(pht('Pick Instructions'))
|
->setLabel(pht('Pick Instructions'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue