diff options
Diffstat (limited to 'core/controllers/admin_themes.php')
-rw-r--r-- | core/controllers/admin_themes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/admin_themes.php b/core/controllers/admin_themes.php index 8d810bb7..b2e0b0e2 100644 --- a/core/controllers/admin_themes.php +++ b/core/controllers/admin_themes.php @@ -63,11 +63,11 @@ class Admin_Themes_Controller extends Admin_Controller { if ($type == "admin" && $info->admin) { module::set_var("core", "active_admin_theme", $theme_name); - message::success(t("Successfully changed your site theme to <b>{{theme_name}}</b>", + message::success(t("Successfully changed your admin theme to <b>{{theme_name}}</b>", array("theme_name" => $info->name))); } else if ($type == "site" && $info->site) { module::set_var("core", "active_site_theme", $theme_name); - message::success(t("Successfully changed your admin theme to <b>{{theme_name}}</b>", + message::success(t("Successfully changed your Gallery theme to <b>{{theme_name}}</b>", array("theme_name" => $info->name))); } |