Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorCoreConfigOptions.php
| Show First 20 Lines • Show All 106 Lines • ▼ Show 20 Lines | return array( | ||||
| array( | array( | ||||
| pht('Serious business'), | pht('Serious business'), | ||||
| pht('Shenanigans'), // That should be interesting to translate. :P | pht('Shenanigans'), // That should be interesting to translate. :P | ||||
| )) | )) | ||||
| ->setSummary( | ->setSummary( | ||||
| pht("Should Phabricator be serious?")) | pht("Should Phabricator be serious?")) | ||||
| ->setDescription( | ->setDescription( | ||||
| pht( | pht( | ||||
| "By default, Phabricator includes some silly nonsense in the UI, ". | 'By default, Phabricator includes some flavor text in the UI, '. | ||||
| "such as a submit button called 'Clowncopterize' in Differential ". | 'like a prompt to "Weigh In" rather than "Add Comment" in '. | ||||
| "and a call to 'Leap Into Action'. If you'd prefer more ". | 'Maniphest. If you\'d prefer more traditional UI strings like '. | ||||
| "traditional UI strings like 'Submit', you can set this flag to ". | '"Add Comment", you can set this flag to disable most of the '. | ||||
| "disable most of the jokes and easter eggs.")), | 'extra flavor.')), | ||||
| $this->newOption('environment.append-paths', 'list<string>', $paths) | $this->newOption('environment.append-paths', 'list<string>', $paths) | ||||
| ->setSummary( | ->setSummary( | ||||
| pht("These paths get appended to your \$PATH envrionment variable.")) | pht("These paths get appended to your \$PATH envrionment variable.")) | ||||
| ->setDescription( | ->setDescription( | ||||
| pht( | pht( | ||||
| "Phabricator occasionally shells out to other binaries on the ". | "Phabricator occasionally shells out to other binaries on the ". | ||||
| "server. An example of this is the `pygmentize` command, used ". | "server. An example of this is the `pygmentize` command, used ". | ||||
| "to syntax-highlight code written in languages other than PHP. ". | "to syntax-highlight code written in languages other than PHP. ". | ||||
| ▲ Show 20 Lines • Show All 123 Lines • Show Last 20 Lines | |||||