summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>