mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
- And refactor printf to our string interpolation / pluralization syntax - Also, a slight change to the translations_incomings table, using binary(16) instead of char(32) as message key.
19 lines
1.0 KiB
PHP
19 lines
1.0 KiB
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("{{link_start}}General Settings{{link_end}} - General configuation options for your Gallery.",
|
|
array("link_start" => "<a href=\"#\">", "link_end" => "</a>")) ?>
|
|
</li>
|
|
<li>
|
|
<?= t("{{link_start}}Modules{{link_end}} - Manage available and installed modules.",
|
|
array("link_start" => "<a href=\"" . url::site("admin/modules") . "\">", "link_end" => "</a>")) ?>
|
|
</li>
|
|
<li>
|
|
<?= t("{{link_start}}Presentation{{link_end}} - Choose a theme, set image sizes.",
|
|
array("link_start" => "<a href=\"#\">", "link_end" => "</a>")) ?>
|
|
</li>
|
|
</ul>
|