diff --git a/src/applications/config/option/PhabricatorUIConfigOptions.php b/src/applications/config/option/PhabricatorUIConfigOptions.php --- a/src/applications/config/option/PhabricatorUIConfigOptions.php +++ b/src/applications/config/option/PhabricatorUIConfigOptions.php @@ -29,7 +29,7 @@ 'dark' => pht('Dark'), ); - $example = <<newOption('ui.favicons', 'wild', array()) - ->setSummary(pht('Customize favicons.')) - ->setDescription(pht('Customize favicons.')) - ->setLocked(true), + ->setSummary(pht('Allows you to customize favicons.')) + ->setDescription( + pht( + "Allows you to customize favicons. \n\n". + " - Files must be square images, and should be PNG files.\n". + " - Upload the file and grab the PHID for your image with `file.search` API.\n\n". + "These keys are supported:\n\n". + " - **source**: The PHID of the file.\n". + " - **width**: The width of the image in pixel.\n". + " - **height**: The height of the image in pixel." + )) + ->setLocked(true) + ->addExample($faviconexample, pht('Basic Example')), $this->newOption('ui.footer-items', $footer_type, array()) ->setSummary( pht( @@ -84,7 +104,7 @@ " - `href` Optionally, the link target of the item. You can ". " omit this if you just want a piece of text, like a copyright ". " notice.")) - ->addExample($example, pht('Basic Example')), + ->addExample($footerexample, pht('Basic Example')), ); }