Changeset 5323 for extensions/pwgCumulus


Ignore:
Timestamp:
Mar 24, 2010, 11:26:25 PM (14 years ago)
Author:
nikrou
Message:

Update translation keys (prepare for gettext)

Location:
extensions/pwgCumulus
Files:
2 added
4 deleted
17 edited
1 copied

Legend:

Unmodified
Added
Removed
  • extensions/pwgCumulus/CHANGELOG

    r5201 r5323  
     1pwgCumulus 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
    16pwgCumulus 0.3.0 - 2009-02-28
    27================================
  • extensions/pwgCumulus/MANIFEST

    r5201 r5323  
    33./MANIFEST
    44./maintain.inc.php
     5./rsync_exclude.txt
    56./template/tags.tpl
    67./template/admin.tpl
     
    910./main.inc.php
    1011./default_values.inc.php
     12./language/fr_FR/description.txt
    1113./language/fr_FR/plugin.lang.php
     14./language/templates/plugin.lang.php
    1215./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
    1320./CHANGELOG
    1421./include/pwgCumulusContent.class.php
  • extensions/pwgCumulus/admin.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
     
    3232
    3333if (!empty($_POST['submit'])) {
     34  Log::getInstance()->debug($_POST);
    3435  if (!empty($_POST['pwg_cumulus_width']) && intval($_POST['pwg_cumulus_width'])!=$me->pwg_cumulus_width) {
    3536    $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']);
    3738    $save_config = true;
    3839  }
    3940  if (!empty($_POST['pwg_cumulus_height']) && intval($_POST['pwg_cumulus_height'])!=$me->pwg_cumulus_height) {
    4041    $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']);
    4243    $save_config = true;
    4344  }
    4445  if (!empty($_POST['pwg_cumulus_coeff']) && intval($_POST['pwg_cumulus_coeff'])!=$me->pwg_cumulus_coeff) {
    4546    $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']);
    4748    $save_config = true;
    4849  }
    4950
    5051  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");
    5252    $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']);
    5454    $save_config = true;
    5555  }
    5656  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");
    5857    $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']);
    6059    $save_config = true;
    6160  }
    6261  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");
    6462    $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']);
    6664    $save_config = true;
    6765  }
     
    8987                                       PWG_CUMULUS_PLUGIN_CSS,
    9088                                       'admin'
    91                                        )
    92                                );
     89                                 )
     90    );
    9391  $GLOBALS['template']->append('head_elements',
    9492                               sprintf($css_format,
    9593                                       PWG_CUMULUS_PLUGIN_CSS,
    9694                                       'farbtastic'
    97                                        )
    98                                );
     95                                 )
     96    );
    9997  $GLOBALS['template']->func_known_script(array('id' => 'farbtastic',
    10098                                                'src' => PWG_CUMULUS_PLUGIN_JS. '/farbtastic.js'
    101                                                 ),
     99                                            ),
    102100                                          $GLOBALS['template']->smarty
    103                                           );
     101    );
    104102
    105103
  • extensions/pwgCumulus/css/admin.css

    r5201 r5323  
    11form fieldset {
    22  text-align: left;
     3}
     4
     5pre {
     6  margin-left: 20px;
     7  background-color: #444444;
     8  padding: 1em;
     9  color: #FFFFFF;
    310}
    411
  • extensions/pwgCumulus/default_values.inc.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
  • extensions/pwgCumulus/include/pwgCumulusConfig.class.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
  • extensions/pwgCumulus/include/pwgCumulusContent.class.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
  • extensions/pwgCumulus/init.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
  • extensions/pwgCumulus/language/en_UK/plugin.lang.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010      Nicolas Roudaire   http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
     
    2020// +-----------------------------------------------------------------------+
    2121
    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>&nbsp;:&nbsp;<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";
    4040?>
  • extensions/pwgCumulus/language/es_ES/plugin.lang.php

    r5320 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010      Nicolas Roudaire   http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
     
    2020// +-----------------------------------------------------------------------+
    2121
    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>&nbsp;:&nbsp;<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";
    4040?>
  • extensions/pwgCumulus/language/fr_FR/plugin.lang.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010      Nicolas Roudaire   http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
     
    2020// +-----------------------------------------------------------------------+
    2121
    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>&nbsp;:&nbsp;<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";
    4040?>
  • extensions/pwgCumulus/language/hu_HU/plugin.lang.php

    r5303 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010      Nicolas Roudaire   http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
     
    2020// +-----------------------------------------------------------------------+
    2121
    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>&nbsp;:&nbsp;<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";
    4140?>
  • extensions/pwgCumulus/language/templates/plugin.lang.php

    r5320 r5323  
    2222$lang['pwg_cumulus_title'] = "Cumulus Tags Cloud Plugin";
    2323$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>&nbsp;:&nbsp;<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";
    2525$lang['pwg_cumulus_dimensions'] = "Animation width and height";
    2626$lang['pwg_cumulus_width'] = "Width";
     
    3434$lang['pwg_cumulus_color1'] = "Color 1";
    3535$lang['pwg_cumulus_color2'] = "Color 2";
    36 $lang['pwg_cumulus_hicolor'] = "Hover color";
     36$lang['pwg_cumulus_hicolor'] = "Mouseover color";
    3737$lang['pwg_cumulus_color1_changed'] = "Color 1 updated";
    3838$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";
    4040?>
  • extensions/pwgCumulus/main.inc.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
     
    2222/*
    2323Plugin Name: pwgCumulus
    24 Version: 0.3.0
     24Version: 0.4.0
    2525Description: add an amazing tag cloud
    2626Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=263
  • extensions/pwgCumulus/maintain.inc.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
  • extensions/pwgCumulus/public.php

    r5201 r5323  
    33// | pwgCumulus  - a plugin for Piwigo                                     |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2009-2010 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
     
    2424$public_content = new pwgCumulusContent($plugin_config);
    2525
    26 add_event_handler('loc_begin_page_header', array($public_content, 'loc_begin_page_header'));
     26add_event_handler('loc_begin_page_header',
     27                  array($public_content, 'loc_begin_page_header')
     28  );
    2729?>
  • extensions/pwgCumulus/template/admin.tpl

    r5201 r5323  
    11<div class="titrePage">
    2   <h2>{'pwg_cumulus_title'|@translate}</h2>
     2  <h2>{'Cumulus Tags Cloud Plugin'|@translate}</h2>
    33</div>
    44
    55<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}
    77</p>
    88
    99<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>
    1214
    1315<form method="post" action="" class="general">
    1416<fieldset>
    15   <legend>{'pwg_cumulus_dimensions'|@translate}</legend>
     17  <legend>{'Animation width and height'|@translate}</legend>
    1618  <p class="field">
    17     <label>{'pwg_cumulus_width'|@translate}
     19    <label>{'Width'|@translate}
    1820      <input type="text" name="pwg_cumulus_width" value="{$PWG_CUMULUS_WIDTH}">
    1921    </label>
    2022  </p>
    2123  <p class="field">
    22     <label>{'pwg_cumulus_height'|@translate}
     24    <label>{'Height'|@translate}
    2325      <input type="text" name="pwg_cumulus_height" value="{$PWG_CUMULUS_HEIGHT}">
    2426    </label>
     
    2729
    2830<fieldset>
    29   <legend>{'pwg_cumulus_tags_size'|@translate}</legend>
     31  <legend>{'Tags size'|@translate}</legend>
    3032  <p class="field">
    31     <label>{'pwg_cumulus_coeff'|@translate}
     33    <label>{'Coefficient'|@translate}
    3234      <input type="text" name="pwg_cumulus_coeff" value="{$PWG_CUMULUS_COEFF}">
    3335    </label>     
     
    3941  <div id="picker" style="float: right;"></div>
    4042  <p class="field">
    41     <label>{'pwg_cumulus_color1'|@translate}
     43    <label>{'Color 1'|@translate}
    4244      <input class="colorwell" type="text" name="pwg_cumulus_color1" value="{$PWG_CUMULUS_COLOR1}">
    4345    </label>     
    4446  </p>
    4547  <p class="field">
    46     <label>{'pwg_cumulus_color2'|@translate}
     48    <label>{'Color 2'|@translate}
    4749      <input class="colorwell" type="text" name="pwg_cumulus_color2" value="{$PWG_CUMULUS_COLOR2}">
    4850    </label>     
    4951  </p>
    5052  <p class="field">
    51     <label>{'pwg_cumulus_hicolor'|@translate}
     53    <label>{'Mouseover color'|@translate}
    5254      <input class="colorwell" type="text" name="pwg_cumulus_hicolor" value="{$PWG_CUMULUS_HICOLOR}">
    5355    </label>     
  • extensions/pwgCumulus/template/tags.tpl

    r5201 r5323  
    55
    66      {if $display_mode != 'letters'}
    7       <li><a href="{$U_LETTERS}" title="{'group by letters'|@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>
    88      {/if}
    99
    1010      {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>
    1212      {/if}
    1313
    1414      {if $display_mode != 'cloud'}
    15       <li><a href="{$U_CLOUD}" title="{'show tag cloud'|@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>
    1616      {/if}
    1717
    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>
    1919    </ul>
    2020    <h2>{'Tags'|@translate}</h2>
Note: See TracChangeset for help on using the changeset viewer.