Better title for export icon + include source in export url

release-0.6
thomascube 16 years ago
parent c505e59a6d
commit a6d7a9f791

@ -1006,9 +1006,9 @@ function rcube_webmail()
case 'export': case 'export':
if (this.contact_list.rowcount > 0) { if (this.contact_list.rowcount > 0) {
var add_url = ''; var add_url = (this.env.source ? '_source='+urlencode(this.env.source)+'&' : '');
if (this.env.search_request) if (this.env.search_request)
add_url = '_search='+this.env.search_request; add_url += '_search='+this.env.search_request;
this.goto_url('export', add_url); this.goto_url('export', add_url);
} }

@ -178,6 +178,7 @@ $labels['composeto'] = 'Nachricht verfassen';
$labels['contactsfromto'] = 'Kontakte $from bis $to von $count'; $labels['contactsfromto'] = 'Kontakte $from bis $to von $count';
$labels['print'] = 'Drucken'; $labels['print'] = 'Drucken';
$labels['export'] = 'Exportieren'; $labels['export'] = 'Exportieren';
$labels['exportvcards'] = 'Kontakte im vCard-Format exportieren';
$labels['previouspage'] = 'Eine Seite zurück'; $labels['previouspage'] = 'Eine Seite zurück';
$labels['firstpage'] = 'Erste Seite'; $labels['firstpage'] = 'Erste Seite';
$labels['nextpage'] = 'Nächste Seite'; $labels['nextpage'] = 'Nächste Seite';

@ -177,6 +177,7 @@ $labels['composeto'] = 'Nachricht verfassen';
$labels['contactsfromto'] = 'Kontakte $from bis $to von $count'; $labels['contactsfromto'] = 'Kontakte $from bis $to von $count';
$labels['print'] = 'Drucken'; $labels['print'] = 'Drucken';
$labels['export'] = 'Exportieren'; $labels['export'] = 'Exportieren';
$labels['exportvcards'] = 'Kontakte im vCard-Format exportieren';
$labels['previouspage'] = 'Seite zurück'; $labels['previouspage'] = 'Seite zurück';
$labels['firstpage'] = 'Erste Seite'; $labels['firstpage'] = 'Erste Seite';
$labels['nextpage'] = 'Nächste Seite'; $labels['nextpage'] = 'Nächste Seite';

@ -223,6 +223,7 @@ $labels['composeto'] = 'Compose mail to';
$labels['contactsfromto'] = 'Contacts $from to $to of $count'; $labels['contactsfromto'] = 'Contacts $from to $to of $count';
$labels['print'] = 'Print'; $labels['print'] = 'Print';
$labels['export'] = 'Export'; $labels['export'] = 'Export';
$labels['exportvcards'] = 'Export contacts in vCard format';
$labels['previouspage'] = 'Show previous set'; $labels['previouspage'] = 'Show previous set';
$labels['firstpage'] = 'Show first set'; $labels['firstpage'] = 'Show first set';

@ -15,8 +15,8 @@
<roundcube:button command="add" imageSel="/images/buttons/add_contact_sel.png" imageAct="/images/buttons/add_contact_act.png" imagePas="/images/buttons/add_contact_pas.png" width="32" height="32" title="newcontact" /> <roundcube:button command="add" imageSel="/images/buttons/add_contact_sel.png" imageAct="/images/buttons/add_contact_act.png" imagePas="/images/buttons/add_contact_pas.png" width="32" height="32" title="newcontact" />
<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" /> <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" />
<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" /> <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" />
<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" /> <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" />
<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" /> <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" />
</div> </div>
<div id="quicksearchbar"> <div id="quicksearchbar">

Loading…
Cancel
Save