summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-22 19:46:40 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-22 19:46:40 +0000
commit37d24e863c7a1356fb66d374810411537af80841 (patch)
tree20e475e791c6d2954d3247df76e77c992fca7d5f
parent47d068e4a8159031a1d8d07b7661f39e62256417 (diff)
Internationalize welcome block.
-rw-r--r--core/views/admin_block_welcome.html.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/core/views/admin_block_welcome.html.php b/core/views/admin_block_welcome.html.php
index d4ae475a..c75ec097 100644
--- a/core/views/admin_block_welcome.html.php
+++ b/core/views/admin_block_welcome.html.php
@@ -1,12 +1,15 @@
<? defined("SYSPATH") or die("No direct script access."); ?>
<p>
- 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.
+ <?= _("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><a href="#">General Settings</a> - General configuation options for your Gallery.</li>
- <li><a href="#">Modules</a> - Manage available and installed modules.</li>
- <li><a href="#">Presentation</a> - Choose a theme, set image sizes.</li>
+ <li>
+ <?= sprintf(_("%sGeneral Settings%s - General configuation options for your Gallery."), "<a href=\"#\">", "</a>") ?>
+ </li>
+ <li>
+ <?= sprintf(_("%sModules%s - Manage available and installed modules."), "<a href=\"" . url::site("admin/modules") . "\">", "</a>") ?>
+ </li>
+ <li>
+ <?= sprintf(_("%sPresentation%s - Choose a theme, set image sizes."), "<a href=\"#\">", "</a>") ?>
+ </li>
</ul>