mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
Use the translation keys of task component (#2530)
This commit is contained in:
committed by
Eugenio Romano
parent
fad5118bb6
commit
c958d4a2fe
@@ -11,9 +11,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</adf-empty-list>
|
</adf-empty-list>
|
||||||
<data-columns>
|
<data-columns>
|
||||||
<data-column key="icon" type="icon" srTitle="ADF-DOCUMENT-LIST.LAYOUT.THUMBNAIL" [sortable]="false"></data-column>
|
<data-column key="icon" type="icon" srTitle="ADF_TASK_LIST.PROPERTIES.THUMBNAIL" [sortable]="false"></data-column>
|
||||||
<data-column key="name" type="text" title="ADF-DOCUMENT-LIST.LAYOUT.NAME" class="full-width ellipsis-cell" [sortable]="true"></data-column>
|
<data-column key="name" type="text" title="ADF_TASK_LIST.PROPERTIES.NAME" class="full-width ellipsis-cell" [sortable]="true"></data-column>
|
||||||
<data-column key="created" type="date" format="shortDate" title="ADF-DOCUMENT-LIST.LAYOUT.CREATED"></data-column>
|
<data-column key="created" type="date" format="shortDate" title="ADF_TASK_LIST.PROPERTIES.CREATED"></data-column>
|
||||||
</data-columns>
|
</data-columns>
|
||||||
<loading-content-template>
|
<loading-content-template>
|
||||||
<ng-template>
|
<ng-template>
|
||||||
@@ -22,4 +22,4 @@
|
|||||||
</mat-progress-spinner>
|
</mat-progress-spinner>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</loading-content-template>
|
</loading-content-template>
|
||||||
</adf-datatable>
|
</adf-datatable>
|
||||||
|
@@ -130,17 +130,17 @@ export class TaskAttachmentListComponent implements OnChanges {
|
|||||||
|
|
||||||
onShowRowActionsMenu(event: any) {
|
onShowRowActionsMenu(event: any) {
|
||||||
let viewAction = {
|
let viewAction = {
|
||||||
title: 'ADF-DOCUMENT-LIST.MENU_ACTIONS.VIEW',
|
title: 'ADF_TASK_LIST.MENU_ACTIONS.VIEW',
|
||||||
name: 'view'
|
name: 'view'
|
||||||
};
|
};
|
||||||
|
|
||||||
let removeAction = {
|
let removeAction = {
|
||||||
title: 'ADF-DOCUMENT-LIST.MENU_ACTIONS.REMOVE',
|
title: 'ADF_TASK_LIST.MENU_ACTIONS.REMOVE',
|
||||||
name: 'remove'
|
name: 'remove'
|
||||||
};
|
};
|
||||||
|
|
||||||
let downloadAction = {
|
let downloadAction = {
|
||||||
title: 'ADF-DOCUMENT-LIST.MENU_ACTIONS.DOWNLOAD',
|
title: 'ADF_TASK_LIST.MENU_ACTIONS.DOWNLOAD',
|
||||||
name: 'download'
|
name: 'download'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -10,6 +10,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"PROPERTIES": {
|
"PROPERTIES": {
|
||||||
|
"THUMBNAIL": "Thumbnail",
|
||||||
"NAME": "Name",
|
"NAME": "Name",
|
||||||
"ASSIGNEE": "Assignee",
|
"ASSIGNEE": "Assignee",
|
||||||
"ASSIGNEE_DEFAULT": "No assignee",
|
"ASSIGNEE_DEFAULT": "No assignee",
|
||||||
@@ -29,6 +30,11 @@
|
|||||||
"FORM_NAME": "Form Name",
|
"FORM_NAME": "Form Name",
|
||||||
"FORM_NAME_DEFAULT": "No form"
|
"FORM_NAME_DEFAULT": "No form"
|
||||||
},
|
},
|
||||||
|
"MENU_ACTIONS": {
|
||||||
|
"VIEW": "View",
|
||||||
|
"REMOVE": "Remove",
|
||||||
|
"DOWNLOAD": "Download"
|
||||||
|
},
|
||||||
"DETAILS": {
|
"DETAILS": {
|
||||||
"LABELS": {
|
"LABELS": {
|
||||||
"INFO_DRAWER_TITLE": "Activities",
|
"INFO_DRAWER_TITLE": "Activities",
|
||||||
|
Reference in New Issue
Block a user