diff options
author | grum <grum@piwigo.org> | 2008-08-03 07:48:39 +0000 |
---|---|---|
committer | grum <grum@piwigo.org> | 2008-08-03 07:48:39 +0000 |
commit | 7ebed797262c7f3371ae1b16ed455f7e9879caf0 (patch) | |
tree | 7abef8d2994ae2efa66f38e3027369c7ac0e3926 /plugins/AMenuManager/language | |
parent | ee0af5d43d607ffb969a10e6a21e9df923651d52 (diff) |
Asked by rvelices on this topic
http://forum.phpwebgallery.net/viewtopic.php?pid=92097#p92097
A plugin to integrate the menu class
see test_menu directory
A plugin to show how to use the menu class
see AMenuManager directory
And common classes needed for the AMenuManager plugin
see grum_plugins_classes-2 directory
See topic http://forum.phpwebgallery.net/viewtopic.php?pid=92637#p92637 for more
informations
git-svn-id: http://piwigo.org/svn/trunk@2466 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rwxr-xr-x | plugins/AMenuManager/language/en_UK/index.php | 33 | ||||
-rwxr-xr-x | plugins/AMenuManager/language/en_UK/plugin.lang.php | 58 | ||||
-rwxr-xr-x | plugins/AMenuManager/language/fr_FR/index.php | 33 | ||||
-rwxr-xr-x | plugins/AMenuManager/language/fr_FR/plugin.lang.php | 58 | ||||
-rwxr-xr-x | plugins/AMenuManager/language/index.php | 33 |
5 files changed, 215 insertions, 0 deletions
diff --git a/plugins/AMenuManager/language/en_UK/index.php b/plugins/AMenuManager/language/en_UK/index.php new file mode 100755 index 000000000..db1eae0d9 --- /dev/null +++ b/plugins/AMenuManager/language/en_UK/index.php @@ -0,0 +1,33 @@ +<?php +// +-----------------------------------------------------------------------+ +// | PhpWebGallery - a PHP based picture gallery | +// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | +// +-----------------------------------------------------------------------+ +// | file : $Id: index.php 1912 2007-03-16 06:30:07Z rub $ +// | last update : $Date: 2007-03-16 07:30:07 +0100 (ven, 16 mar 2007) $ +// | last modifier : $Author: rub $ +// | revision : $Revision: 1912 $ +// +-----------------------------------------------------------------------+ +// | This program is free software; you can redistribute it and/or modify | +// | it under the terms of the GNU General Public License as published by | +// | the Free Software Foundation | +// | | +// | This program is distributed in the hope that it will be useful, but | +// | WITHOUT ANY WARRANTY; without even the implied warranty of | +// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +// | General Public License for more details. | +// | | +// | You should have received a copy of the GNU General Public License | +// | along with this program; if not, write to the Free Software | +// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | +// | USA. | +// +-----------------------------------------------------------------------+ + +// Recursive call +$url = '../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?> diff --git a/plugins/AMenuManager/language/en_UK/plugin.lang.php b/plugins/AMenuManager/language/en_UK/plugin.lang.php new file mode 100755 index 000000000..79b1bdd11 --- /dev/null +++ b/plugins/AMenuManager/language/en_UK/plugin.lang.php @@ -0,0 +1,58 @@ +<?php + +$lang['Grum Plugin Classes is not installed'] = 'Plugin <b>Grum Plugin Classes</b> in not installed'; + +$lang['g002_title_page'] = 'Advanced Menu Management'; +$lang['g002_version'] = 'r'; + +$lang['g002_error_invalid_ajax_call'] = "Invalid function call !"; + +$lang['g002_setmenu'] = 'Menu management'; +$lang['g002_addlinks'] = 'Links'; +$lang['g002_randompict'] = 'Random picture'; +$lang['g002_personnalblock'] = 'Personalised menu'; + +$lang['g002_setmenu_nfo'] = 'Management of displayed menu\'s blocks'; +$lang['g002_addlinks_nfo'] = 'Menu\'s block allowing to display a list of hyperlink'; +$lang['g002_randompict_nfo'] = 'Menu\'s block allowing to display a random picture from the gallery'; +$lang['g002_personnalblock_nfo'] = 'Display personalised blocks into menu'; + + +$lang['g002_mode_new_window'] = 'New window'; +$lang['g002_mode_current_window'] = 'Current window'; +$lang['g002_addlink'] = 'Add a link'; +$lang['g002_label'] = 'Label'; +$lang['g002_url'] = 'URL'; +$lang['g002_mode'] = 'Mode'; +$lang['g002_icon'] = 'Representative picture'; +$lang['g002_visible'] = 'Visible'; +$lang['g002_linkslist'] = "Links list"; +$lang['g002_confirm_delete_link'] = "Delete link ?"; +$lang['g002_nolinks'] = 'No links'; +$lang['g002_link'] = 'link'; +$lang['g002_links'] = 'links'; + +$lang['g002_createoflink'] = 'Add link'; +$lang['g002_editoflink'] = 'Edit link'; +$lang['g002_createthelink'] = 'Add link'; +$lang['g002_editthelink'] = 'Edit link'; + +$lang['g002_configlinks'] = 'Links settings'; +$lang['g002_setting_link_block_menu'] = 'Menu integration'; +$lang['g002_setting_link_links']='Links'; +$lang['g002_setting_link_show_icon'] = 'Display links representative picture'; +$lang['g002_setting_link_block_active'] = 'Display block in menu'; +$lang['g002_setting_link_block_title'] = 'Block title'; +$lang['g002_apply'] = 'Apply'; + +$lang['g002_sectionslist'] = 'Menu\'s blocks'; + +$lang['g002_yesno_y'] = 'Yes'; +$lang['g002_yesno_n'] = 'No'; + +$lang['g002_owner'] = 'Owner'; +$lang['g002_sectionid'] = 'Identifier'; +$lang['g002_name'] = 'Label'; + + +?> diff --git a/plugins/AMenuManager/language/fr_FR/index.php b/plugins/AMenuManager/language/fr_FR/index.php new file mode 100755 index 000000000..db1eae0d9 --- /dev/null +++ b/plugins/AMenuManager/language/fr_FR/index.php @@ -0,0 +1,33 @@ +<?php +// +-----------------------------------------------------------------------+ +// | PhpWebGallery - a PHP based picture gallery | +// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | +// +-----------------------------------------------------------------------+ +// | file : $Id: index.php 1912 2007-03-16 06:30:07Z rub $ +// | last update : $Date: 2007-03-16 07:30:07 +0100 (ven, 16 mar 2007) $ +// | last modifier : $Author: rub $ +// | revision : $Revision: 1912 $ +// +-----------------------------------------------------------------------+ +// | This program is free software; you can redistribute it and/or modify | +// | it under the terms of the GNU General Public License as published by | +// | the Free Software Foundation | +// | | +// | This program is distributed in the hope that it will be useful, but | +// | WITHOUT ANY WARRANTY; without even the implied warranty of | +// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +// | General Public License for more details. | +// | | +// | You should have received a copy of the GNU General Public License | +// | along with this program; if not, write to the Free Software | +// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | +// | USA. | +// +-----------------------------------------------------------------------+ + +// Recursive call +$url = '../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?> diff --git a/plugins/AMenuManager/language/fr_FR/plugin.lang.php b/plugins/AMenuManager/language/fr_FR/plugin.lang.php new file mode 100755 index 000000000..828bf9d98 --- /dev/null +++ b/plugins/AMenuManager/language/fr_FR/plugin.lang.php @@ -0,0 +1,58 @@ +<?php + +$lang['Grum Plugin Classes is not installed'] = 'Le plugin <b>Grum Plugin Classes</b> n\'est pas installé'; + +$lang['g002_title_page'] = 'Gestion avancée du menu'; +$lang['g002_version'] = 'v'; + +$lang['g002_error_invalid_ajax_call'] = "Appel de fonction invalide !"; + +$lang['g002_setmenu'] = 'Gestion du menu'; +$lang['g002_addlinks'] = 'Liens'; +$lang['g002_randompict'] = 'Image aléatoire'; +$lang['g002_personnalblock'] = 'Menu personnalisé'; + +$lang['g002_setmenu_nfo'] = 'Gestion de l\'affichage des sections affichées dans le menu'; +$lang['g002_addlinks_nfo'] = 'Section permettant d\'afficher dans le menu une liste d\'hyperliens vers d\'autres sites internet'; +$lang['g002_randompict_nfo'] = 'Section permettant d\'afficher dans le menu une image prise au hasard dans la gallerie'; +$lang['g002_personnalblock_nfo'] = 'Afficher dans le menu des sections au contenu personnalisés'; + + +$lang['g002_mode_new_window'] = 'Nouvelle fenêtre'; +$lang['g002_mode_current_window'] = 'Fenêtre courante'; +$lang['g002_addlink'] = 'Ajouter un lien'; +$lang['g002_label'] = 'Libellé'; +$lang['g002_url'] = 'URL'; +$lang['g002_mode'] = 'Mode'; +$lang['g002_icon'] = 'Image'; +$lang['g002_visible'] = 'Visible'; +$lang['g002_linkslist'] = "Liste des liens"; +$lang['g002_confirm_delete_link'] = "Supprimer le lien ?"; +$lang['g002_nolinks'] = 'Pas de liens'; +$lang['g002_link'] = 'lien'; +$lang['g002_links'] = 'liens'; + +$lang['g002_createoflink'] = 'Ajout d\'un lien'; +$lang['g002_editoflink'] = 'Modification d\'un lien'; +$lang['g002_createthelink'] = 'Ajouter le lien'; +$lang['g002_editthelink'] = 'Modifier le lien'; + +$lang['g002_configlinks'] = 'Configuration des liens'; +$lang['g002_setting_link_block_menu'] = 'Intégration dans le menu'; +$lang['g002_setting_link_links']='Liens'; +$lang['g002_setting_link_show_icon'] = 'Afficher les icônes de liens'; +$lang['g002_setting_link_block_active'] = 'Afficher la section dans le menu'; +$lang['g002_setting_link_block_title'] = 'Titre de la section dans le menu'; +$lang['g002_apply'] = 'Appliquer'; + +$lang['g002_sectionslist'] = 'Sections du menu'; + +$lang['g002_yesno_y'] = 'Oui'; +$lang['g002_yesno_n'] = 'Non'; + +$lang['g002_owner'] = 'Propriétaire'; +$lang['g002_sectionid'] = 'Identifiant'; +$lang['g002_name'] = 'Libellé'; + + +?> diff --git a/plugins/AMenuManager/language/index.php b/plugins/AMenuManager/language/index.php new file mode 100755 index 000000000..db1eae0d9 --- /dev/null +++ b/plugins/AMenuManager/language/index.php @@ -0,0 +1,33 @@ +<?php +// +-----------------------------------------------------------------------+ +// | PhpWebGallery - a PHP based picture gallery | +// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | +// +-----------------------------------------------------------------------+ +// | file : $Id: index.php 1912 2007-03-16 06:30:07Z rub $ +// | last update : $Date: 2007-03-16 07:30:07 +0100 (ven, 16 mar 2007) $ +// | last modifier : $Author: rub $ +// | revision : $Revision: 1912 $ +// +-----------------------------------------------------------------------+ +// | This program is free software; you can redistribute it and/or modify | +// | it under the terms of the GNU General Public License as published by | +// | the Free Software Foundation | +// | | +// | This program is distributed in the hope that it will be useful, but | +// | WITHOUT ANY WARRANTY; without even the implied warranty of | +// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +// | General Public License for more details. | +// | | +// | You should have received a copy of the GNU General Public License | +// | along with this program; if not, write to the Free Software | +// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | +// | USA. | +// +-----------------------------------------------------------------------+ + +// Recursive call +$url = '../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?> |