Changeset 5323 for extensions
- Timestamp:
- Mar 24, 2010, 11:26:25 PM (15 years ago)
- Location:
- extensions/pwgCumulus
- Files:
-
- 2 added
- 4 deleted
- 17 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
extensions/pwgCumulus/CHANGELOG
r5201 r5323 1 pwgCumulus 0.4.0 - 2010-03-24 2 ================================ 3 * traduction en espagnol, hongrois 4 * préparation pour gettext (les clés de traduction sont les valeurs en anglais) 5 1 6 pwgCumulus 0.3.0 - 2009-02-28 2 7 ================================ -
extensions/pwgCumulus/MANIFEST
r5201 r5323 3 3 ./MANIFEST 4 4 ./maintain.inc.php 5 ./rsync_exclude.txt 5 6 ./template/tags.tpl 6 7 ./template/admin.tpl … … 9 10 ./main.inc.php 10 11 ./default_values.inc.php 12 ./language/fr_FR/description.txt 11 13 ./language/fr_FR/plugin.lang.php 14 ./language/templates/plugin.lang.php 12 15 ./language/en_UK/plugin.lang.php 16 ./language/es_ES/description.txt 17 ./language/es_ES/plugin.lang.php 18 ./language/hu_HU/description.txt 19 ./language/hu_HU/plugin.lang.php 13 20 ./CHANGELOG 14 21 ./include/pwgCumulusContent.class.php -
extensions/pwgCumulus/admin.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | … … 32 32 33 33 if (!empty($_POST['submit'])) { 34 Log::getInstance()->debug($_POST); 34 35 if (!empty($_POST['pwg_cumulus_width']) && intval($_POST['pwg_cumulus_width'])!=$me->pwg_cumulus_width) { 35 36 $me->pwg_cumulus_width = intval($_POST['pwg_cumulus_width']); 36 array_push($GLOBALS['page']['infos'], $lang[' pwg_cumulus_width_changed']);37 array_push($GLOBALS['page']['infos'], $lang['Width updated']); 37 38 $save_config = true; 38 39 } 39 40 if (!empty($_POST['pwg_cumulus_height']) && intval($_POST['pwg_cumulus_height'])!=$me->pwg_cumulus_height) { 40 41 $me->pwg_cumulus_height = intval($_POST['pwg_cumulus_height']); 41 array_push($GLOBALS['page']['infos'], $lang[' pwg_cumulus_height_changed']);42 array_push($GLOBALS['page']['infos'], $lang['Height updated']); 42 43 $save_config = true; 43 44 } 44 45 if (!empty($_POST['pwg_cumulus_coeff']) && intval($_POST['pwg_cumulus_coeff'])!=$me->pwg_cumulus_coeff) { 45 46 $me->pwg_cumulus_coeff = intval($_POST['pwg_cumulus_coeff']); 46 array_push($GLOBALS['page']['infos'], $lang[' pwg_cumulus_coeff_changed']);47 array_push($GLOBALS['page']['infos'], $lang['Coefficient for tags size updated']); 47 48 $save_config = true; 48 49 } 49 50 50 51 if (!empty($_POST['pwg_cumulus_color1']) && trim($_POST['pwg_cumulus_color1'])!=$me->pwg_cumulus_color1) { 51 // $me->pwg_cumulus_color1 = trim($_POST['pwg_cumulus_color1'], " /\n\t\r\0\x0B");52 52 $me->pwg_cumulus_color1 = $_POST['pwg_cumulus_color1']; 53 array_push($GLOBALS['page']['infos'], $lang[' pwg_cumulus_color1_changed']);53 array_push($GLOBALS['page']['infos'], $lang['Color 1 updated']); 54 54 $save_config = true; 55 55 } 56 56 if (!empty($_POST['pwg_cumulus_color2']) && trim($_POST['pwg_cumulus_color2'])!=$me->pwg_cumulus_color2) { 57 // $me->pwg_cumulus_color2 = trim($_POST['pwg_cumulus_color2'], " /\n\t\r\0\x0B");58 57 $me->pwg_cumulus_color2 = $_POST['pwg_cumulus_color2']; 59 array_push($GLOBALS['page']['infos'], $lang[' pwg_cumulus_color2_changed']);58 array_push($GLOBALS['page']['infos'], $lang['Color 2 updated']); 60 59 $save_config = true; 61 60 } 62 61 if (!empty($_POST['pwg_cumulus_hicolor']) && trim($_POST['pwg_cumulus_hicolor'])!=$me->pwg_cumulus_hicolor) { 63 // $me->pwg_cumulus_hicolor = trim($_POST['pwg_cumulus_hicolor'], " /\n\t\r\0\x0B");64 62 $me->pwg_cumulus_hicolor = $_POST['pwg_cumulus_hicolor']; 65 array_push($GLOBALS['page']['infos'], $lang[' pwg_cumulus_hicolor_changed']);63 array_push($GLOBALS['page']['infos'], $lang['Mouseover color updated']); 66 64 $save_config = true; 67 65 } … … 89 87 PWG_CUMULUS_PLUGIN_CSS, 90 88 'admin' 91 92 89 ) 90 ); 93 91 $GLOBALS['template']->append('head_elements', 94 92 sprintf($css_format, 95 93 PWG_CUMULUS_PLUGIN_CSS, 96 94 'farbtastic' 97 98 95 ) 96 ); 99 97 $GLOBALS['template']->func_known_script(array('id' => 'farbtastic', 100 98 'src' => PWG_CUMULUS_PLUGIN_JS. '/farbtastic.js' 101 99 ), 102 100 $GLOBALS['template']->smarty 103 101 ); 104 102 105 103 -
extensions/pwgCumulus/css/admin.css
r5201 r5323 1 1 form fieldset { 2 2 text-align: left; 3 } 4 5 pre { 6 margin-left: 20px; 7 background-color: #444444; 8 padding: 1em; 9 color: #FFFFFF; 3 10 } 4 11 -
extensions/pwgCumulus/default_values.inc.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/pwgCumulus/include/pwgCumulusConfig.class.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/pwgCumulus/include/pwgCumulusContent.class.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/pwgCumulus/init.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/pwgCumulus/language/en_UK/plugin.lang.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 Nicolas Roudairehttp://www.nikrou.net |5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | … … 20 20 // +-----------------------------------------------------------------------+ 21 21 22 $lang[' pwg_cumulus_title'] = "Cumulus Tags Cloud Plugin";23 $lang[' pwg_cumulus_intro'] = "That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way.";24 $lang[' pwg_cumulus_info'] = "Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file <strong>config_local.inc.php</strong> : <br>\$conf['tags_default_display_mode'] = 'cumulus';";25 $lang[' pwg_cumulus_dimensions'] = "Animation width and height";26 $lang[' pwg_cumulus_width'] = "Width";27 $lang[' pwg_cumulus_height'] = "Height";28 $lang[' pwg_cumulus_tags_size'] = "Tags size";29 $lang[' pwg_cumulus_coeff'] = "Coefficient";30 $lang[' pwg_cumulus_width_changed'] = "Width updated";31 $lang[' pwg_cumulus_height_changed'] = "Height updated";32 $lang[' pwg_cumulus_coeff_changed'] = "Coefficient for tags size updated";33 $lang[' show tag cloud in cumulus mode'] = "Show tag cloud in cumulus mode";34 $lang[' pwg_cumulus_color1'] = "Color 1";35 $lang[' pwg_cumulus_color2'] = "Color 2";36 $lang[' pwg_cumulus_hicolor'] = "Hover color";37 $lang[' pwg_cumulus_color1_changed'] = "Color 1 updated";38 $lang[' pwg_cumulus_color2_changed'] = "Color 2 updated";39 $lang[' pwg_cumulus_hicolor_changed'] = "Hover color updated";22 $lang['Cumulus Tags Cloud Plugin'] = "Cumulus Tags Cloud Plugin"; 23 $lang['That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way.'] = "That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way."; 24 $lang['Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file'] = "Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file"; 25 $lang['Animation width and height'] = "Animation width and height"; 26 $lang['Width'] = "Width"; 27 $lang['Height'] = "Height"; 28 $lang['Tags size'] = "Tags size"; 29 $lang['Coefficient'] = "Coefficient"; 30 $lang['Width updated'] = "Width updated"; 31 $lang['Height updated'] = "Height updated"; 32 $lang['Coefficient for tags size updated'] = "Coefficient for tags size updated"; 33 $lang['Show tag cloud in cumulus mode'] = "Show tag cloud in cumulus mode"; 34 $lang['Color 1'] = "Color 1"; 35 $lang['Color 2'] = "Color 2"; 36 $lang['Mouseover color'] = "Hover color"; 37 $lang['Color 1 updated'] = "Color 1 updated"; 38 $lang['Color 2 updated'] = "Color 2 updated"; 39 $lang['Mouseover color updated'] = "Hover color updated"; 40 40 ?> -
extensions/pwgCumulus/language/es_ES/plugin.lang.php
r5320 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 Nicolas Roudairehttp://www.nikrou.net |5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | … … 20 20 // +-----------------------------------------------------------------------+ 21 21 22 $lang[' pwg_cumulus_title'] = "Plugin Cumulus Tags Cloud";23 $lang[' pwg_cumulus_intro'] = "Este plugin permite fijar una nube de etiquetas en forma de una animación flash 3D.";24 $lang[' pwg_cumulus_info'] = "Usted puede escoger este modo de fijación de la nube de pintadas añadiendo el modo por defecto en el fichero de configuración <strong>config_local.inc.php</strong> : <br>\$conf['tags_default_display_mode'] = 'cumulus';";25 $lang[' pwg_cumulus_dimensions'] = "Dimensiones de la animación";26 $lang[' pwg_cumulus_width'] = "Anchura";27 $lang[' pwg_cumulus_height'] = "Altura";28 $lang[' pwg_cumulus_tags_size'] = "Talla de etiquetas";29 $lang[' pwg_cumulus_coeff'] = "Coeficiente";30 $lang[' pwg_cumulus_width_changed'] = "La anchura ha sido puesta al día";31 $lang[' pwg_cumulus_height_changed'] = "La altura ha sido puesta al día";32 $lang[' pwg_cumulus_coeff_changed'] = "El coeficiente multiplicador de etiquetas ha sido puesto al día";33 $lang[' show tag cloud in cumulus mode'] = "Utilizar el modo cúmulo para fijar la nube de etiquetas";34 $lang[' pwg_cumulus_color1'] = "Color 1";35 $lang[' pwg_cumulus_color2'] = "Color 2";36 $lang[' pwg_cumulus_hicolor'] = "Color al sobrevuelo";37 $lang[' pwg_cumulus_color1_changed'] = "El color 1 ha sido puesto al día";38 $lang[' pwg_cumulus_color2_changed'] = "El color 2 ha sido puesto al día";39 $lang[' pwg_cumulus_hicolor_changed'] = "Color de planeo puesto al día";22 $lang['Cumulus Tags Cloud Plugin'] = "Plugin Cumulus Tags Cloud"; 23 $lang['That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way.'] = "Este plugin permite fijar una nube de etiquetas en forma de una animación flash 3D."; 24 $lang['Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file'] = "Usted puede escoger este modo de fijación de la nube de pintadas añadiendo el modo por defecto en el fichero de configuración"; 25 $lang['Animation width and height'] = "Dimensiones de la animación"; 26 $lang['Width'] = "Anchura"; 27 $lang['Height'] = "Altura"; 28 $lang['Tags size'] = "Talla de etiquetas"; 29 $lang['Coefficient'] = "Coeficiente"; 30 $lang['Width updated'] = "La anchura ha sido puesta al día"; 31 $lang['Height updated'] = "La altura ha sido puesta al día"; 32 $lang['Coefficient for tags size updated'] = "El coeficiente multiplicador de etiquetas ha sido puesto al día"; 33 $lang['Show tag cloud in cumulus mode'] = "Utilizar el modo cúmulo para fijar la nube de etiquetas"; 34 $lang['Color 1'] = "Color 1"; 35 $lang['Color 2'] = "Color 2"; 36 $lang['Mouseover color'] = "Color al sobrevuelo"; 37 $lang['Color 1 updated'] = "El color 1 ha sido puesto al día"; 38 $lang['Color 2 updated'] = "El color 2 ha sido puesto al día"; 39 $lang['Mouseover color updated'] = "Color de planeo puesto al día"; 40 40 ?> -
extensions/pwgCumulus/language/fr_FR/plugin.lang.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 Nicolas Roudairehttp://www.nikrou.net |5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | … … 20 20 // +-----------------------------------------------------------------------+ 21 21 22 $lang[' pwg_cumulus_title'] = "Plugin Cumulus Tags Cloud";23 $lang[' pwg_cumulus_intro'] = "Ce plugin permet d'afficher un nuage de tags sous forme d'une animation flash en 3D.";24 $lang[' pwg_cumulus_info'] = "Vous pouvez choisir ce mode d'affichage du nuage de tags en ajoutant le mode par défaut dans le fichier de configuration <strong>config_local.inc.php</strong> : <br>\$conf['tags_default_display_mode'] = 'cumulus';";25 $lang[' pwg_cumulus_dimensions'] = "Dimensions de l'animation";26 $lang[' pwg_cumulus_width'] = "Largeur";27 $lang[' pwg_cumulus_height'] = "Hauteur";28 $lang[' pwg_cumulus_tags_size'] = "Taille des tags";29 $lang[' pwg_cumulus_coeff'] = "Coefficient";30 $lang[' pwg_cumulus_width_changed'] = "La largeur a été mise à jour";31 $lang[' pwg_cumulus_height_changed'] = "La hauteur a été mise à jour";32 $lang[' pwg_cumulus_coeff_changed'] = "Le coefficient multiplicateur des tags a été mis à jour";33 $lang[' show tag cloud in cumulus mode'] = "Utiliser le mode cumulus pour afficher le nuage de tags";34 $lang[' pwg_cumulus_color1'] = "Couleur 1";35 $lang[' pwg_cumulus_color2'] = "Couleur 2";36 $lang[' pwg_cumulus_hicolor'] = "Couleur au survol";37 $lang[' pwg_cumulus_color1_changed'] = "La couleur 1 a été mise à jour";38 $lang[' pwg_cumulus_color2_changed'] = "La couleur 2 a été mise à jour";39 $lang[' pwg_cumulus_hicolor_changed'] = "La couleur hicolor a été mise à jour";22 $lang['Cumulus Tags Cloud Plugin'] = "Plugin Cumulus Tags Cloud"; 23 $lang['That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way.'] = "Ce plugin permet d'afficher un nuage de tags sous forme d'une animation flash en 3D."; 24 $lang['Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file'] = "Vous pouvez choisir ce mode d'affichage du nuage de tags en ajoutant le mode par défaut dans le fichier de configuration"; 25 $lang['Animation width and height'] = "Dimensions de l'animation"; 26 $lang['Width'] = "Largeur"; 27 $lang['Height'] = "Hauteur"; 28 $lang['Tags size'] = "Taille des tags"; 29 $lang['Coefficient'] = "Coefficient"; 30 $lang['Width updated'] = "La largeur a été mise à jour"; 31 $lang['Height updated'] = "La hauteur a été mise à jour"; 32 $lang['Coefficient for tags size updated'] = "Le coefficient multiplicateur des tags a été mis à jour"; 33 $lang['Show tag cloud in cumulus mode'] = "Utiliser le mode cumulus pour afficher le nuage de tags"; 34 $lang['Color 1'] = "Couleur 1"; 35 $lang['Color 2'] = "Couleur 2"; 36 $lang['Mouseover color'] = "Couleur au survol"; 37 $lang['Color 1 updated'] = "La couleur 1 a été mise à jour"; 38 $lang['Color 2 updated'] = "La couleur 2 a été mise à jour"; 39 $lang['Mouseover color updated'] = "La couleur hicolor a été mise à jour"; 40 40 ?> -
extensions/pwgCumulus/language/hu_HU/plugin.lang.php
r5303 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 Nicolas Roudairehttp://www.nikrou.net |5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | … … 20 20 // +-----------------------------------------------------------------------+ 21 21 22 $lang['pwg_cumulus_title'] = "Cumulus Címkefelhő Flash bővítmény"; 23 $lang['pwg_cumulus_intro'] = "Ez a bővítmény 3D-ben forgatja a címkéket flash használatával. Címkefelhőként működik, izgalmas vizuális effekt."; 24 $lang['pwg_cumulus_info'] = "Kiválaszthatja a címkék alapértelmezett megjelenési módját a konfigurációs fájl módosításával <strong>config_local.inc.php</strong> : <br>\$conf['tags_default_display_mode'] = 'cumulus';"; 25 $lang['pwg_cumulus_dimensions'] = "Animációs ablak méretei"; 26 $lang['pwg_cumulus_width'] = "Magasság"; 27 $lang['pwg_cumulus_height'] = "Szélesség"; 28 $lang['pwg_cumulus_tags_size'] = "Címkék méretaránya"; 29 $lang['pwg_cumulus_coeff'] = "Betűarány"; 30 $lang['pwg_cumulus_width_changed'] = "Magasság módosítva"; 31 $lang['pwg_cumulus_height_changed'] = "Szélesség módosítva"; 32 $lang['pwg_cumulus_coeff_changed'] = "Címke betüaránya módosítva"; 33 $lang['show tag cloud in cumulus mode'] = "Cumulus Flash címkefelhő"; 34 $lang['pwg_cumulus_color1'] = "Szín 1"; 35 $lang['pwg_cumulus_color2'] = "Szín 2"; 36 $lang['pwg_cumulus_hicolor'] = "Lebegő címke színe"; 37 $lang['pwg_cumulus_color1_changed'] = "Szín 1 módosítva"; 38 $lang['pwg_cumulus_color2_changed'] = "Szín 2 módosítva"; 39 $lang['pwg_cumulus_hicolor_changed'] = "Lebegő címke színe módosítva"; 40 $lang['pwg_cumulus_colors'] = "Cumulus színei"; 22 $lang['Cumulus Tags Cloud Plugin'] = "Cumulus Címkefelhő Flash bővítmény"; 23 $lang['That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way.'] = "Ez a bővítmény 3D-ben forgatja a címkéket flash használatával. Címkefelhőként működik, izgalmas vizuális effekt."; 24 $lang['Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file'] = "Kiválaszthatja a címkék alapértelmezett megjelenési módját a konfigurációs fájl módosításával"; 25 $lang['Animation width and height'] = "Animációs ablak méretei"; 26 $lang['Width'] = "Magasság"; 27 $lang['Height'] = "Szélesség"; 28 $lang['Tags size'] = "Címkék méretaránya"; 29 $lang['Coefficient'] = "Betűarány"; 30 $lang['Width updated'] = "Magasság módosítva"; 31 $lang['Height updated'] = "Szélesség módosítva"; 32 $lang['Coefficient for tags size updated'] = "Címke betüaránya módosítva"; 33 $lang['Show tag cloud in cumulus mode'] = "Cumulus Flash címkefelhő"; 34 $lang['Color 1'] = "Szín 1"; 35 $lang['Color 2'] = "Szín 2"; 36 $lang['Mouseover color'] = "Lebegő címke színe"; 37 $lang['Color 1 updated'] = "Szín 1 módosítva"; 38 $lang['Color 2 updated'] = "Szín 2 módosítva"; 39 $lang['Mouseover color updated'] = "Lebegő címke színe módosítva"; 41 40 ?> -
extensions/pwgCumulus/language/templates/plugin.lang.php
r5320 r5323 22 22 $lang['pwg_cumulus_title'] = "Cumulus Tags Cloud Plugin"; 23 23 $lang['pwg_cumulus_intro'] = "That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way."; 24 $lang['pwg_cumulus_info'] = "Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file <strong>config_local.inc.php</strong> : <br>\$conf['tags_default_display_mode'] = 'cumulus';";24 $lang['pwg_cumulus_info'] = "Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file"; 25 25 $lang['pwg_cumulus_dimensions'] = "Animation width and height"; 26 26 $lang['pwg_cumulus_width'] = "Width"; … … 34 34 $lang['pwg_cumulus_color1'] = "Color 1"; 35 35 $lang['pwg_cumulus_color2'] = "Color 2"; 36 $lang['pwg_cumulus_hicolor'] = " Hover color";36 $lang['pwg_cumulus_hicolor'] = "Mouseover color"; 37 37 $lang['pwg_cumulus_color1_changed'] = "Color 1 updated"; 38 38 $lang['pwg_cumulus_color2_changed'] = "Color 2 updated"; 39 $lang['pwg_cumulus_hicolor_changed'] = " Hover color updated";39 $lang['pwg_cumulus_hicolor_changed'] = "Mouseover color updated"; 40 40 ?> -
extensions/pwgCumulus/main.inc.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | … … 22 22 /* 23 23 Plugin Name: pwgCumulus 24 Version: 0. 3.024 Version: 0.4.0 25 25 Description: add an amazing tag cloud 26 26 Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=263 -
extensions/pwgCumulus/maintain.inc.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/pwgCumulus/public.php
r5201 r5323 3 3 // | pwgCumulus - a plugin for Piwigo | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2009 5 // | Copyright(C) 2009-2010 Nicolas Roudaire http://www.nikrou.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | … … 24 24 $public_content = new pwgCumulusContent($plugin_config); 25 25 26 add_event_handler('loc_begin_page_header', array($public_content, 'loc_begin_page_header')); 26 add_event_handler('loc_begin_page_header', 27 array($public_content, 'loc_begin_page_header') 28 ); 27 29 ?> -
extensions/pwgCumulus/template/admin.tpl
r5201 r5323 1 1 <div class="titrePage"> 2 <h2>{' pwg_cumulus_title'|@translate}</h2>2 <h2>{'Cumulus Tags Cloud Plugin'|@translate}</h2> 3 3 </div> 4 4 5 5 <p> 6 {' pwg_cumulus_intro'|@translate}6 {'That plugin display tags using a flash movie that rotates them in 3D. It works like a regular tags cloud but in a more amazing and exciting way.'|@translate} 7 7 </p> 8 8 9 9 <p> 10 {'pwg_cumulus_info'|@translate} 11 </p> 10 {'Vous can choose that mode for tags default display mode by adding (or changing) in the configuration file'|@translate} <strong>include/config_local.inc.php</strong> :<p> 11 <pre> 12 $conf['tags_default_display_mode'] = 'cumulus'; 13 </pre> 12 14 13 15 <form method="post" action="" class="general"> 14 16 <fieldset> 15 <legend>{' pwg_cumulus_dimensions'|@translate}</legend>17 <legend>{'Animation width and height'|@translate}</legend> 16 18 <p class="field"> 17 <label>{' pwg_cumulus_width'|@translate}19 <label>{'Width'|@translate} 18 20 <input type="text" name="pwg_cumulus_width" value="{$PWG_CUMULUS_WIDTH}"> 19 21 </label> 20 22 </p> 21 23 <p class="field"> 22 <label>{' pwg_cumulus_height'|@translate}24 <label>{'Height'|@translate} 23 25 <input type="text" name="pwg_cumulus_height" value="{$PWG_CUMULUS_HEIGHT}"> 24 26 </label> … … 27 29 28 30 <fieldset> 29 <legend>{' pwg_cumulus_tags_size'|@translate}</legend>31 <legend>{'Tags size'|@translate}</legend> 30 32 <p class="field"> 31 <label>{' pwg_cumulus_coeff'|@translate}33 <label>{'Coefficient'|@translate} 32 34 <input type="text" name="pwg_cumulus_coeff" value="{$PWG_CUMULUS_COEFF}"> 33 35 </label> … … 39 41 <div id="picker" style="float: right;"></div> 40 42 <p class="field"> 41 <label>{' pwg_cumulus_color1'|@translate}43 <label>{'Color 1'|@translate} 42 44 <input class="colorwell" type="text" name="pwg_cumulus_color1" value="{$PWG_CUMULUS_COLOR1}"> 43 45 </label> 44 46 </p> 45 47 <p class="field"> 46 <label>{' pwg_cumulus_color2'|@translate}48 <label>{'Color 2'|@translate} 47 49 <input class="colorwell" type="text" name="pwg_cumulus_color2" value="{$PWG_CUMULUS_COLOR2}"> 48 50 </label> 49 51 </p> 50 52 <p class="field"> 51 <label>{' pwg_cumulus_hicolor'|@translate}53 <label>{'Mouseover color'|@translate} 52 54 <input class="colorwell" type="text" name="pwg_cumulus_hicolor" value="{$PWG_CUMULUS_HICOLOR}"> 53 55 </label> -
extensions/pwgCumulus/template/tags.tpl
r5201 r5323 5 5 6 6 {if $display_mode != 'letters'} 7 <li><a href="{$U_LETTERS}" title="{' group byletters'|@translate}" rel="nofollow"><img src="{$themeconf.icon_dir}/tag_letters.png" class="button" alt="{'letters'|@translate}"></a></li>7 <li><a href="{$U_LETTERS}" title="{'letters'|@translate}" rel="nofollow"><img src="{$themeconf.icon_dir}/tag_letters.png" class="button" alt="{'letters'|@translate}"></a></li> 8 8 {/if} 9 9 10 10 {if $display_mode != 'cumulus'} 11 <li><a href="{$PWG_CUMULUS_HREF}" title="{' show tag cloud in cumulus mode'|@translate}" rel="nofollow"><img src="{$PWG_CUMULUS_IMGS}/cumulus3d.png" class="button" alt="{'cumulus cloud'|@translate}"></a></li>11 <li><a href="{$PWG_CUMULUS_HREF}" title="{'cumulus cloud'|@translate}" rel="nofollow"><img src="{$PWG_CUMULUS_IMGS}/cumulus3d.png" class="button" alt="{'cumulus cloud'|@translate}"></a></li> 12 12 {/if} 13 13 14 14 {if $display_mode != 'cloud'} 15 <li><a href="{$U_CLOUD}" title="{' show tagcloud'|@translate}" rel="nofollow"><img src="{$themeconf.icon_dir}/tag_cloud.png" class="button" alt="{'cloud'|@translate}"></a></li>15 <li><a href="{$U_CLOUD}" title="{'cloud'|@translate}" rel="nofollow"><img src="{$themeconf.icon_dir}/tag_cloud.png" class="button" alt="{'cloud'|@translate}"></a></li> 16 16 {/if} 17 17 18 <li><a href="{$U_HOME}" title="{' return to homepage'|@translate}"><img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li>18 <li><a href="{$U_HOME}" title="{'home'|@translate}"><img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li> 19 19 </ul> 20 20 <h2>{'Tags'|@translate}</h2>
Note: See TracChangeset
for help on using the changeset viewer.