Changeset 1737 in subversion


Ignore:
Timestamp:
Sep 5, 2008 5:41:27 AM (5 years ago)
Author:
thomasb
Message:

Better title for export icon + include source in export url

Location:
trunk/roundcubemail
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/js/app.js

    r1732 r1737  
    10071007      case 'export': 
    10081008        if (this.contact_list.rowcount > 0) { 
    1009           var add_url = ''; 
     1009          var add_url = (this.env.source ? '_source='+urlencode(this.env.source)+'&' : ''); 
    10101010          if (this.env.search_request) 
    1011             add_url = '_search='+this.env.search_request; 
     1011            add_url += '_search='+this.env.search_request; 
    10121012         
    10131013          this.goto_url('export', add_url); 
  • trunk/roundcubemail/program/localization/de_CH/labels.inc

    r1716 r1737  
    179179$labels['print'] = 'Drucken'; 
    180180$labels['export'] = 'Exportieren'; 
     181$labels['exportvcards'] = 'Kontakte im vCard-Format exportieren'; 
    181182$labels['previouspage'] = 'Eine Seite zurÃŒck'; 
    182183$labels['firstpage'] = 'Erste Seite'; 
  • trunk/roundcubemail/program/localization/de_DE/labels.inc

    r1671 r1737  
    178178$labels['print'] = 'Drucken'; 
    179179$labels['export'] = 'Exportieren'; 
     180$labels['exportvcards'] = 'Kontakte im vCard-Format exportieren'; 
    180181$labels['previouspage'] = 'Seite zurÃŒck'; 
    181182$labels['firstpage'] = 'Erste Seite'; 
  • trunk/roundcubemail/program/localization/en_US/labels.inc

    r1722 r1737  
    224224$labels['print']          = 'Print'; 
    225225$labels['export']         = 'Export'; 
     226$labels['exportvcards']   = 'Export contacts in vCard format'; 
    226227 
    227228$labels['previouspage']   = 'Show previous set'; 
  • trunk/roundcubemail/skins/default/templates/addressbook.html

    r1716 r1737  
    1616<roundcube:button command="delete" imageSel="/images/buttons/delete_sel.png" imageAct="/images/buttons/delete_act.png" imagePas="/images/buttons/delete_pas.png" width="32" height="32" title="deletecontact" /> 
    1717<roundcube:button command="compose" imageSel="/images/buttons/compose_sel.png" imageAct="/images/buttons/compose_act.png" imagePas="/images/buttons/compose_pas.png" width="32" height="32" title="composeto" /> 
    18 <roundcube:button command="import" imageSel="/images/buttons/download_sel.png" imageAct="/images/buttons/adr_import_act.png" imagePas="/images/buttons/adr_import_pas.png" width="32" height="32" title="importcontacts" /> 
    19 <roundcube:button command="export" imageSel="/images/buttons/download_sel.png" imageAct="/images/buttons/download_act.png" imagePas="/images/buttons/download_pas.png" width="32" height="32" title="export" /> 
     18<roundcube:button command="import" imageSel="/images/buttons/adr_import_sel.png" imageAct="/images/buttons/adr_import_act.png" imagePas="/images/buttons/adr_import_pas.png" width="32" height="32" title="importcontacts" /> 
     19<roundcube:button command="export" imageSel="/images/buttons/download_sel.png" imageAct="/images/buttons/download_act.png" imagePas="/images/buttons/download_pas.png" width="32" height="32" title="exportvcards" /> 
    2020</div> 
    2121 
Note: See TracChangeset for help on using the changeset viewer.