diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-06-17 09:37:42 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-06-17 09:37:42 +0000 |
| commit | 11897b13b65c8fa6d619f27dcb69e3c16baec280 (patch) | |
| tree | c6b9abe260f5694b5683ca6899721372dfadbd57 | |
| parent | 2d1d43e58a77199f3c7cb9324580b20e08361886 (diff) | |
- Use more descriptive labels for group actions
git-svn-id: https://svn.roundcube.net/trunk@4864 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/localization/en_US/labels.inc | 2 | ||||
| -rw-r--r-- | roundcubemail/program/localization/pl_PL/labels.inc | 2 | ||||
| -rw-r--r-- | roundcubemail/skins/default/templates/addressbook.html | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/roundcubemail/program/localization/en_US/labels.inc b/roundcubemail/program/localization/en_US/labels.inc index e6927e89b..abc04601d 100644 --- a/roundcubemail/program/localization/en_US/labels.inc +++ b/roundcubemail/program/localization/en_US/labels.inc @@ -313,6 +313,8 @@ $labels['export'] = 'Export'; $labels['exportvcards'] = 'Export contacts in vCard format'; $labels['newcontactgroup'] = 'Create new contact group'; $labels['groupactions'] = 'Actions for contact groups...'; +$labels['grouprename'] = 'Rename group'; +$labels['groupdelete'] = 'Delete group'; $labels['previouspage'] = 'Show previous page'; $labels['firstpage'] = 'Show first page'; diff --git a/roundcubemail/program/localization/pl_PL/labels.inc b/roundcubemail/program/localization/pl_PL/labels.inc index f51e2e0d2..adb33e9d0 100644 --- a/roundcubemail/program/localization/pl_PL/labels.inc +++ b/roundcubemail/program/localization/pl_PL/labels.inc @@ -414,5 +414,7 @@ $labels['search'] = 'Szukaj'; $labels['advsearch'] = 'Wyszukiwanie zaawansowane'; $labels['other'] = 'Inne'; $labels['importtarget'] = 'Dodaj nowe kontakty do książki adresowej:'; +$labels['grouprename'] = 'Zmień nazwę grupy'; +$labels['groupdelete'] = 'Usuń grupę'; ?> diff --git a/roundcubemail/skins/default/templates/addressbook.html b/roundcubemail/skins/default/templates/addressbook.html index f0df02e7a..3ac8c122b 100644 --- a/roundcubemail/skins/default/templates/addressbook.html +++ b/roundcubemail/skins/default/templates/addressbook.html @@ -59,8 +59,8 @@ <div id="groupoptionsmenu" class="popupmenu"> <ul> - <li><roundcube:button command="group-rename" label="rename" classAct="active" /></li> - <li><roundcube:button command="group-delete" label="delete" classAct="active" /></li> + <li><roundcube:button command="group-rename" label="grouprename" classAct="active" /></li> + <li><roundcube:button command="group-delete" label="groupdelete" classAct="active" /></li> <roundcube:container name="groupoptions" id="groupoptionsmenu" /> </ul> </div> |
