summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-04-06 03:14:13 +0000
committerBharat Mediratta <bharat@menalto.com>2009-04-06 03:14:13 +0000
commit292b51ddd34e7d304ad30bcbdea08154bdcc1d4d (patch)
tree4d114a0d8aed87116974b8c36c36d0f1fe87b6cc
parent8ae2305289d0f4aa5168921efcab07030b934ee5 (diff)
Rework the links section of the "Welcome to Gallery3" block so that
the links work and it's more helpful. In the process, rename the Presentation menu to be Appearance because that makes more sense to me (and at least one other user who wrote about it on -devel).
-rw-r--r--core/helpers/core_menu.php4
-rw-r--r--core/views/admin_block_welcome.html.php14
2 files changed, 10 insertions, 8 deletions
diff --git a/core/helpers/core_menu.php b/core/helpers/core_menu.php
index 2da94c6d..5f5cfe5a 100644
--- a/core/helpers/core_menu.php
+++ b/core/helpers/core_menu.php
@@ -136,8 +136,8 @@ class core_menu_Core {
->id("content_menu")
->label(t("Content")))
->append(Menu::factory("submenu")
- ->id("presentation_menu")
- ->label(t("Presentation"))
+ ->id("appareance_menu")
+ ->label(t("Appearance"))
->append(Menu::factory("link")
->id("themes")
->label(t("Themes"))
diff --git a/core/views/admin_block_welcome.html.php b/core/views/admin_block_welcome.html.php
index a11f2489..f3e61f59 100644
--- a/core/views/admin_block_welcome.html.php
+++ b/core/views/admin_block_welcome.html.php
@@ -4,15 +4,17 @@
</p>
<ul>
<li>
- <?= t('<a href="%url">General Settings</a> - General configuration options for your Gallery.',
- array("url" => "#")) ?>
+ <?= t("General Settings - choose your <a href=\"%graphics_url\">graphics</a> and <a \"%language_url\">language</a> settings.",
+ array("graphics_url" => url::site("admin/graphics"),
+ "language_url" => url::site("admin/languages"))) ?>
</li>
<li>
- <?= t('<a href="%url">Modules</a> - Manage available and installed modules.',
- array("url" => url::site("admin/modules"))) ?>
+ <?= t("Appearance - <a href=\"%theme_url\">choose a theme</a>, or <a href=\"%theme_details_url\">customize the way it looks</a>.",
+ array("theme_url" => url::site("admin/theme"),
+ "theme_details_url" => url::site("admin/theme_details"))) ?>
</li>
<li>
- <?= t('<a href="">Presentation</a> - Choose a theme, set image sizes.',
- array("url" => "#")) ?>
+ <?= t("Customize - <a href=\"%modules_url\">install modules</a> to add cool features!",
+ array("modules_url" => url::site("admin/modules"))) ?>
</li>
</ul>