aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2010-04-14 19:46:39 +0000
committernikrou <nikrou@piwigo.org>2010-04-14 19:46:39 +0000
commit90253ebf732535a81572ecd4025032876663e134 (patch)
tree61bd53722914dd6243b6c2f7cf379b8e38112d96
parentce82578b0478108e16b8d6e9a16216df68f2608b (diff)
Bug 1542 fixed : add message when changing order of items
git-svn-id: http://piwigo.org/svn/trunk@5853 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/menubar.php2
-rw-r--r--language/en_UK/admin.lang.php2
-rw-r--r--language/fr_FR/admin.lang.php2
-rw-r--r--language/templates/admin.lang.php2
4 files changed, 8 insertions, 0 deletions
diff --git a/admin/menubar.php b/admin/menubar.php
index 8fa9585e3..1449b4510 100644
--- a/admin/menubar.php
+++ b/admin/menubar.php
@@ -147,6 +147,8 @@ UPDATE '.CONFIG_TABLE.'
WHERE param=\'blk_'.addslashes($menu->get_id()).'\'
';
pwg_query($query);
+
+ array_push($page['infos'], l10n('Order of menubar items has been updated successfully.'));
}
make_consecutive( $mb_conf );
diff --git a/language/en_UK/admin.lang.php b/language/en_UK/admin.lang.php
index fddbe328e..f3ebabc33 100644
--- a/language/en_UK/admin.lang.php
+++ b/language/en_UK/admin.lang.php
@@ -764,4 +764,6 @@ $lang['There is no other language available.'] = 'There is no other language ava
$lang['There is no other plugin available.'] = 'There is no other plugin available.';
$lang['There is no other theme available.'] = 'There is no other theme available.';
$lang['Add another set of photos'] = 'Add another set of photos';
+
+$lang['Order of menubar items has been updated successfully.'] = 'Order of menubar items has been updated successfully.';
?>
diff --git a/language/fr_FR/admin.lang.php b/language/fr_FR/admin.lang.php
index 3dab4a4b4..8a71eb3ab 100644
--- a/language/fr_FR/admin.lang.php
+++ b/language/fr_FR/admin.lang.php
@@ -769,4 +769,6 @@ $lang['There is no other plugin available.'] = 'Il n\'y a pas d\'autre plugin di
$lang['There is no other theme available.'] = 'Il n\'y a pas d\'autre thème disponible.';
$lang['delete'] = 'effacer';
$lang['Add another set of photos'] = 'Ajouter d\'autres photos';
+
+$lang['Order of menubar items has been updated successfully.'] = 'L\'ordre des éléments du menu a été mis à jour avec succès.';
?>
diff --git a/language/templates/admin.lang.php b/language/templates/admin.lang.php
index 63b818c39..695674163 100644
--- a/language/templates/admin.lang.php
+++ b/language/templates/admin.lang.php
@@ -673,4 +673,6 @@ $lang['Installed Themes'] = "Installed Themes";
$lang['Add New Theme'] = "Add New Theme";
$lang['Forbid this theme to users'] = "Forbid this theme to users";
$lang['Set as default theme for unregistered and new users'] = "Set as default theme for unregistered and new users";
+
+$lang['Order of menubar items has been updated successfully.'] = 'Order of menubar items has been updated successfully.';
?>