diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-09-22 20:36:12 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-09-22 20:36:12 -0700 |
commit | 91c99c9627c8a6352054200d242fd81e963a1c73 (patch) | |
tree | 932b88144172709ebdb3a27531cf81dc3904c608 /modules/gallery/controllers/admin_languages.php | |
parent | 28060d9dce3128cb0254d61a66d865fe8f4e1583 (diff) |
Simplify the "unchanged" status message.
Diffstat (limited to 'modules/gallery/controllers/admin_languages.php')
-rw-r--r-- | modules/gallery/controllers/admin_languages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/admin_languages.php b/modules/gallery/controllers/admin_languages.php index 42968b43..a9693d21 100644 --- a/modules/gallery/controllers/admin_languages.php +++ b/modules/gallery/controllers/admin_languages.php @@ -89,7 +89,7 @@ class Admin_Languages_Controller extends Admin_Controller { } else if (!$old_key && $new_key) { message::success(t("Your API key has been saved.")); } else if ($old_key && $new_key && $old_key == $new_key) { - message::info(t("Your API key was not changed as it was identical to the current key.")); + message::info(t("Your API key was not changed.")); } log::success(t("gallery"), t("l10n_client API key changed.")); |