Caution: The documentation you are viewing is
for an older version of Zend Framework.
You can find the documentation of the current version at:
https://docs.zendframework.com/
Styling and Translations — Zend Framework 2 2.2.10 documentation
We’ve picked up the SkeletonApplication’s styling, which is fine, but we need to change the title and remove the copyright message.
The ZendSkeletonApplication is set up to use Zend\I18n’s translation functionality for all the text. It uses .po files that live in module/Application/language, and you need to use poedit to change the text. Start poedit and open module/Application/language/en_US.po. Click on “Skeleton Application” in the list of Original strings and then type in “Tutorial” as the translation.
Press Save in the toolbar and poedit will create an en_US.mo file for us. If you find that no .mo file is generated, check Preferences -> Editor -> Behavior and see if the checkbox marked Automatically compile .mo file on save is checked.
To remove the copyright message, we need to edit the Application module’s layout.phtml view script:
1 2 3 4 | // module/Application/view/layout/layout.phtml:
// Remove this line:
<p>© 2005 - 2013 by Zend Technologies Ltd. <?php echo $this->translate('All
rights reserved.') ?></p>
|
The page now looks ever so slightly better now!