Changeset 1948


Ignore:
Timestamp:
Apr 8, 2007, 11:29:12 PM (17 years ago)
Author:
rub
Message:

Issue 675:

On group list page, when user push on delete or default image buttons, the message is not enough significant. (Only "Are you sure").

Informations about buttons have added.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/language/en_UK.iso-8859-1/admin.lang.php

    r1932 r1948  
    5656$lang['A new version of PhpWebGallery is available.'] = 'A new version of PhpWebGallery is available.';
    5757$lang['Actions'] = 'Actions';
     58$lang['Action: '] = 'Action: ';
    5859$lang['Activate'] = 'Activate';
    5960$lang['Add/delete a permalink'] = 'Add/delete a permalink';
  • trunk/language/fr_FR.iso-8859-1/admin.lang.php

    r1932 r1948  
    5656$lang['A new version of PhpWebGallery is available.'] = 'Une nouvelle version de PhpWebGallery est disponible.';
    5757$lang['Actions'] = 'Actions';
     58$lang['Action: '] = 'Action: ';
    5859$lang['Activate'] = 'Activer';
    5960$lang['Add/delete a permalink'] = 'Ajouter/effacer un lien permanent';
  • trunk/template/yoga/admin/group_list.tpl

    r1900 r1948  
    3333    <td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td>
    3434    <td style="text-align:center;">
    35       <a href="{group.U_PERM}"><img src="{themeconf:icon_dir}/permissions.png" class="button" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
    36       <a href="{group.U_DELETE}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" alt="delete" title="{lang:delete}" {TAG_INPUT_ENABLED}/></a>
    37       <a href="{group.U_ISDEFAULT}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/toggle_is_default_group.png" class="button" style="border:none" alt="toggle_is_default_group" title="{lang:toggle_is_default_group}" {TAG_INPUT_ENABLED}/></a>
     35      <a href="{group.U_PERM}">
     36        <img src="{themeconf:icon_dir}/permissions.png" class="button" style="border:none" id="btn_permissions" alt="{lang:permissions}" title="{lang:permissions}" /></a>
     37      <a href="{group.U_DELETE}" onclick="return confirm('{lang:Action: }' + document.getElementById('btn_delete').title + '\n\n' + '{lang:Are you sure?}');">
     38        <img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" id="btn_delete" alt="{lang:delete}" title="{lang:delete}" {TAG_INPUT_ENABLED}/></a>
     39      <a href="{group.U_ISDEFAULT}" onclick="return confirm('{lang:Action: }' + document.getElementById('btn_toggle_is_default_group').title + '\n\n' + '{lang:Are you sure?}');">
     40        <img src="{themeconf:icon_dir}/toggle_is_default_group.png" class="button" style="border:none" id="btn_toggle_is_default_group" alt="{lang:toggle_is_default_group}" title="{lang:toggle_is_default_group}" {TAG_INPUT_ENABLED}/></a>
    3841    </td>
    3942  </tr>
Note: See TracChangeset for help on using the changeset viewer.