mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
[ADF-1616] download zip dialog title (#2397)
This commit is contained in:
parent
d789f84ed5
commit
809e14d641
@ -24,13 +24,15 @@ import { AlfrescoApiService } from './../services/alfresco-api.service';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'adf-download-zip-dialog',
|
selector: 'adf-download-zip-dialog',
|
||||||
template: `
|
template: `
|
||||||
<h1 md-dialog-title>Download as ZIP</h1>
|
<h1 md-dialog-title>{{ 'CORE.DIALOG.DOWNLOAD_ZIP.TITLE' | translate }}</h1>
|
||||||
<div md-dialog-content>
|
<div md-dialog-content>
|
||||||
<md-progress-bar color="primary" mode="indeterminate"></md-progress-bar>
|
<md-progress-bar color="primary" mode="indeterminate"></md-progress-bar>
|
||||||
</div>
|
</div>
|
||||||
<div md-dialog-actions>
|
<div md-dialog-actions>
|
||||||
<span class="spacer"></span>
|
<span class="spacer"></span>
|
||||||
<button md-button color="primary" (click)="cancelDownload()">Cancel</button>
|
<button md-button color="primary" (click)="cancelDownload()">
|
||||||
|
{{ 'CORE.DIALOG.DOWNLOAD_ZIP.ACTIONS.CANCEL' | translate }}
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
`,
|
`,
|
||||||
styles: [`
|
styles: [`
|
||||||
|
@ -5,6 +5,14 @@
|
|||||||
"ITEMS_PER_PAGE": "Items per page",
|
"ITEMS_PER_PAGE": "Items per page",
|
||||||
"CURRENT_PAGE": "Page {{ number }}",
|
"CURRENT_PAGE": "Page {{ number }}",
|
||||||
"TOTAL_PAGES": "of {{ total }}"
|
"TOTAL_PAGES": "of {{ total }}"
|
||||||
|
},
|
||||||
|
"DIALOG": {
|
||||||
|
"DOWNLOAD_ZIP": {
|
||||||
|
"ACTIONS": {
|
||||||
|
"CANCEL": "Cancel"
|
||||||
|
},
|
||||||
|
"TITLE": "Adding files to zip, this could take a few minutes"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user