Changeset 12999


Ignore:
Timestamp:
Jan 30, 2012, 11:07:09 PM (12 years ago)
Author:
ddtddt
Message:

[extensions] - delete_hit_rate - rename key language to EN

Location:
extensions/delete_hit_rate
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • extensions/delete_hit_rate/admin/admin.php

    r12402 r12999  
    2323$tabsheet = new tabsheet();
    2424$tabsheet->add('pdhr',
    25                l10n('pdhr_onglet_all'),
     25               l10n('Purge All'),
    2626               $my_base_url.'&tab=pdhr');
    2727
     
    4141
    4242//purge photo
    43 if (isset($_POST['pdhr_all_h']))
     43if (isset($_POST['Purge all hits on all pictures gallery']))
    4444        {
    4545        $query = '
     
    4949$result = pwg_query($query);
    5050
    51         array_push( $page['infos'], l10n('pdhr_all_hok') );
     51        array_push( $page['infos'], l10n('Hit purge completed successfully') );
    5252       
    5353        }
    5454       
    55 if (isset($_POST['pdhr_all_r']))
     55if (isset($_POST['Purge all rate on all pictures gallery']))
    5656        {
    5757        $query = '
     
    6666$result = pwg_query($query);
    6767
    68         array_push( $page['infos'], l10n('pdhr_all_rok') );
     68        array_push( $page['infos'], l10n('Rate purge completed successfully') );
    6969       
    7070        }
  • extensions/delete_hit_rate/admin/admin.tpl

    r9796 r12999  
    77                <form method="post" >
    88                        <div style="text-align:center;">
    9                                 <input class="submit" name="pdhr_all_h" type="submit" "onclick="return confirm('{'Are you sure?'|@translate}');" value="{'pdhr_all_h'|@translate|@escape:'javascript'}" {$TAG_INPUT_ENABLED} />
    10                                 <input class="submit" name="pdhr_all_r" type="submit" "onclick="return confirm('{'Are you sure?'|@translate}');" value="{'pdhr_all_r'|@translate|@escape:'javascript'}" {$TAG_INPUT_ENABLED} />
     9                                <input class="submit" name="pdhr_all_h" type="submit" "onclick="return confirm('{'Are you sure?'|@translate}');" value="{'Purge all hits on all pictures gallery'|@translate|@escape:'javascript'}" {$TAG_INPUT_ENABLED} />
     10                                <input class="submit" name="pdhr_all_r" type="submit" "onclick="return confirm('{'Are you sure?'|@translate}');" value="{'Purge all rate on all pictures gallery'|@translate|@escape:'javascript'}" {$TAG_INPUT_ENABLED} />
    1111                        </div>
    1212                </form>
  • extensions/delete_hit_rate/initadmin.php

    r12402 r12999  
    3434                <form method="post" >
    3535                        <fieldset>
    36                                 <legend>{\'pdhr_l\'|@translate}</legend>
     36                                <legend>{\'Purge - Plugin Delete Hit/Rate\'|@translate}</legend>
    3737                                        <div style="text-align:center;">
    38                                         <input class="submit" name="plugdphphoto" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'pdhr_photo_h\'|@translate}" {$TAG_INPUT_ENABLED} />
    39                                         <input class="submit" name="plugdprphoto" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'pdhr_photo_r\'|@translate}" {$TAG_INPUT_ENABLED} />
     38                                        <input class="submit" name="plugdphphoto" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'Purge hit of the photo\'|@translate}" {$TAG_INPUT_ENABLED} />
     39                                        <input class="submit" name="plugdprphoto" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'Purge rate of the photo\'|@translate}" {$TAG_INPUT_ENABLED} />
    4040                                        </div>
    4141                        </fieldset>
     
    9595                <form method="post" >
    9696                        <fieldset>
    97                                 <legend>{\'pdhr_l\'|@translate}</legend>
     97                                <legend>{\'Purge - Plugin Delete Hit/Rate\'|@translate}</legend>
    9898                                        <div style="text-align:center;">
    99                                         <input class="submit" name="plugdphA" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'pdhr_album_h\'|@translate}" {$TAG_INPUT_ENABLED} />
    100                                         <input class="submit" name="plugdprA" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'pdhr_album_r\'|@translate}" {$TAG_INPUT_ENABLED} />
     99                                        <input class="submit" name="plugdphA" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'Purge hits on all pictures album\'|@translate}" {$TAG_INPUT_ENABLED} />
     100                                        <input class="submit" name="plugdprA" type="submit" onclick="return confirm(\'{\'Are you sure?\'|@translate|@escape:\'javascript\'}\');" value="{\'Purge rates on all pictures album\'|@translate}" {$TAG_INPUT_ENABLED} />
    101101                                        </div>
    102102                        </fieldset>
  • extensions/delete_hit_rate/language/en_UK/plugin.lang.php

    r9796 r12999  
    11<?php
    22
    3 $lang['pdhr_onglet_all'] = 'Purge All';
    4 $lang['pdhr_all_h'] = 'Purge all hits on all pictures gallery';
    5 $lang['pdhr_all_hok'] = 'Hit purge completed successfully';
    6 $lang['pdhr_all_r'] = 'Purge all rate on all pictures gallery';
    7 $lang['pdhr_all_rok'] = 'Rate purge completed successfully';
    8 $lang['pdhr_l'] = 'Purge - Plugin Delete Hit/Rate';
    9 $lang['pdhr_photo_h'] = 'Purge hit of the photo';
    10 $lang['pdhr_photo_r'] = 'Purge rate of the photo';
    11 $lang['pdhr_album_h'] = 'Purge hits on all pictures album';
    12 $lang['pdhr_album_r'] = 'Purge rates on all pictures album';
     3$lang['Purge All'] = 'Purge All';
     4$lang['Purge all hits on all pictures gallery'] = 'Purge all hits on all pictures gallery';
     5$lang['Hit purge completed successfully'] = 'Hit purge completed successfully';
     6$lang['Purge all rate on all pictures gallery'] = 'Purge all rate on all pictures gallery';
     7$lang['Rate purge completed successfully'] = 'Rate purge completed successfully';
     8$lang['Purge - Plugin Delete Hit/Rate'] = 'Purge - Plugin Delete Hit/Rate';
     9$lang['Purge hit of the photo'] = 'Purge hit of the photo';
     10$lang['Purge rate of the photo'] = 'Purge rate of the photo';
     11$lang['Purge hits on all pictures album'] = 'Purge hits on all pictures album';
     12$lang['Purge rates on all pictures album'] = 'Purge rates on all pictures album';
    1313
    1414?>
  • extensions/delete_hit_rate/language/fr_FR/plugin.lang.php

    r9796 r12999  
    11<?php
    22
    3 $lang['pdhr_onglet_all'] = 'Purge Total';
    4 $lang['pdhr_all_h'] = 'Purger tous les hits de la galerie';
    5 $lang['pdhr_all_hok'] = 'Purge totale des hits effectuée avec succès';
    6 $lang['pdhr_all_r'] = 'Purger toutes les notes de la galerie';
    7 $lang['pdhr_all_rok'] = 'Purge total des notes effectuée avec succès';
    8 $lang['pdhr_l'] = 'Purger - Plugin Delete Hit/Rate';
    9 $lang['pdhr_photo_h'] = 'Purger le hit de la photo';
    10 $lang['pdhr_photo_r'] = 'Purger la note de la photo';
    11 $lang['pdhr_album_h'] = 'Purger les hits de toutes les photos de l\'album';
    12 $lang['pdhr_album_r'] = 'Purger les notes de toutes les photos de l\'album';
     3$lang['Purge All'] = 'Purge Total';
     4$lang['Purge all hits on all pictures gallery'] = 'Purger tous les hits de la galerie';
     5$lang['Hit purge completed successfully'] = 'Purge totale des hits effectuée avec succès';
     6$lang['Purge all rate on all pictures gallery'] = 'Purger toutes les notes de la galerie';
     7$lang['Rate purge completed successfully'] = 'Purge total des notes effectuée avec succès';
     8$lang['Purge - Plugin Delete Hit/Rate'] = 'Purger - Plugin Delete Hit/Rate';
     9$lang['Purge hit of the photo'] = 'Purger le hit de la photo';
     10$lang['Purge rate of the photo'] = 'Purger la note de la photo';
     11$lang['Purge hits on all pictures album'] = 'Purger les hits de toutes les photos de l\'album';
     12$lang['Purge rates on all pictures album'] = 'Purger les notes de toutes les photos de l\'album';
    1313
    1414?>
  • extensions/delete_hit_rate/language/hu_HU/plugin.lang.php

    r12571 r12999  
    11<?php
    2 // +-----------------------------------------------------------------------+
    3 // | Piwigo - a PHP based photo gallery                                    |
    4 // +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2008-2009 Piwigo Team                  http://piwigo.org |
    6 // | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
    7 // | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
    8 // +-----------------------------------------------------------------------+
    9 // | This program is free software; you can redistribute it and/or modify  |
    10 // | it under the terms of the GNU General Public License as published by  |
    11 // | the Free Software Foundation                                          |
    12 // |                                                                       |
    13 // | This program is distributed in the hope that it will be useful, but   |
    14 // | WITHOUT ANY WARRANTY; without even the implied warranty of            |
    15 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
    16 // | General Public License for more details.                              |
    17 // |                                                                       |
    18 // | You should have received a copy of the GNU General Public License     |
    19 // | along with this program; if not, write to the Free Software           |
    20 // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
    21 // | USA.                                                                  |
    22 // +-----------------------------------------------------------------------+
    23 $lang['pdhr_album_h'] = 'Összes kép találat törlése az albumban';
    24 $lang['pdhr_album_r'] = 'Összes kép értékelés törlése az albumban';
    25 $lang['pdhr_all_h'] = 'Az összes kép találat törlése a galériában';
    26 $lang['pdhr_all_hok'] = 'A találat törlése sikeres';
    27 $lang['pdhr_all_r'] = 'Az összes kép értékelés törlése a galériában';
    28 $lang['pdhr_all_rok'] = 'Az értékelés törlése sikeres';
    29 $lang['pdhr_l'] = 'Tisztítás - Találat/Értékelés törlése bővítmény';
    30 $lang['pdhr_onglet_all'] = 'Összes találat törlése';
    31 $lang['pdhr_photo_h'] = 'Kép találatok törlése';
    32 $lang['pdhr_photo_r'] = 'Kép értékelések törlése';
     2$lang['Purge hits on all pictures album'] = 'Összes kép találat törlése az albumban';
     3$lang['Purge rates on all pictures album'] = 'Összes kép értékelés törlése az albumban';
     4$lang['Purge all hits on all pictures gallery'] = 'Az összes kép találat törlése a galériában';
     5$lang['Hit purge completed successfully'] = 'A találat törlése sikeres';
     6$lang['Purge all rate on all pictures gallery'] = 'Az összes kép értékelés törlése a galériában';
     7$lang['Rate purge completed successfully'] = 'Az értékelés törlése sikeres';
     8$lang['Purge - Plugin Delete Hit/Rate'] = 'Tisztítás - Találat/Értékelés törlése bővítmény';
     9$lang['Purge All'] = 'Összes találat törlése';
     10$lang['Purge hit of the photo'] = 'Kép találatok törlése';
     11$lang['Purge rate of the photo'] = 'Kép értékelések törlése';
    3312?>
  • extensions/delete_hit_rate/language/it_IT/plugin.lang.php

    r10287 r12999  
    11<?php
    2 
    3 $lang['pdhr_onglet_all'] = 'Cancellazione Totale';
    4 $lang['pdhr_all_h'] = 'Cancella il numero di viste di tutte le foto della galleria';
    5 $lang['pdhr_all_hok'] = 'Cancellazione del numero delle viste completata con successo';
    6 $lang['pdhr_all_r'] = 'Cancella tutti i voti della galleria';
    7 $lang['pdhr_all_rok'] = 'Cancellazione dei voti completata con successo';
    8 $lang['pdhr_l'] = 'Cancellazione - Plugin Delete Hit/Rate';
    9 $lang['pdhr_photo_h'] = 'Cancellare il numero di visite della foto';
    10 $lang['pdhr_photo_r'] = 'Cancellare la nota della foto';
    11 $lang['pdhr_album_h'] = 'Cancellare il numero di visite di tutte le foto dell\'album';
    12 $lang['pdhr_album_r'] = 'Cancellare le note di tutte le foto dell\'album';
    13 
     2$lang['Purge All'] = 'Cancellazione Totale';
     3$lang['Purge all hits on all pictures gallery'] = 'Cancella il numero di viste di tutte le foto della galleria';
     4$lang['Hit purge completed successfully'] = 'Cancellazione del numero delle viste completata con successo';
     5$lang['Purge all rate on all pictures gallery'] = 'Cancella tutti i voti della galleria';
     6$lang['Rate purge completed successfully'] = 'Cancellazione dei voti completata con successo';
     7$lang['Purge - Plugin Delete Hit/Rate'] = 'Cancellazione - Plugin Delete Hit/Rate';
     8$lang['Purge hit of the photo'] = 'Cancellare il numero di visite della foto';
     9$lang['Purge rate of the photo'] = 'Cancellare la nota della foto';
     10$lang['Purge hits on all pictures album'] = 'Cancellare il numero di visite di tutte le foto dell\'album';
     11$lang['Purge rates on all pictures album'] = 'Cancellare le note di tutte le foto dell\'album';
    1412?>
Note: See TracChangeset for help on using the changeset viewer.