Files
gallery3/core/views/admin_block_welcome.html.php
Andy Staudacher ed7175092c Refactor all translation strings that have ambiguous placeholders.
E.g. "%link_startClick here%link_end" is now '<a href="%url">Click here</a>'.

Note: This isn't always the best solution. E.g. consider "Foo <a href='%url' class='gDialogLink'>bar</a>." Now the translator has to deal with 
preserving CSS classes too...
2009-03-21 07:44:46 +00:00

19 lines
866 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<p>
<?= t("This is your administration dashboard and it provides a quick overview of status messages, recent updates, and frequently used options. Add or remove blocks and rearrange them to tailor to your needs. The admin menu provides quick access to all of Gallery 3's options and settings. Here are a few of the most used options to get you started.") ?>
</p>
<ul>
<li>
<?= t('<a href="%url">General Settings</a> - General configuration options for your Gallery.',
array("url" => "#")) ?>
</li>
<li>
<?= t('<a href="%url">Modules</a> - Manage available and installed modules.',
array("url" => url::site("admin/modules"))) ?>
</li>
<li>
<?= t('<a href="">Presentation</a> - Choose a theme, set image sizes.',
array("url" => "#")) ?>
</li>
</ul>