mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
[ADF-2183] fixed translation on no permission tooltip (#2857)
This commit is contained in:
parent
28e9697604
commit
c4d9f9c829
@ -2,7 +2,7 @@
|
|||||||
"title": "Willkommen",
|
"title": "Willkommen",
|
||||||
"VERSION": {
|
"VERSION": {
|
||||||
"NO_PERMISSION": "Sie verfügen nicht über die nötige Berechtigung, um Versionen dieses Inhalts zu verwalten",
|
"NO_PERMISSION": "Sie verfügen nicht über die nötige Berechtigung, um Versionen dieses Inhalts zu verwalten",
|
||||||
"NO_PERMISSION_EVENT": "Sie verfügen nicht über die nötige Berechtigung ('${event.permission}'), um ${event.action} zu ${event.type}",
|
"NO_PERMISSION_EVENT": "Sie verfügen nicht über die nötige Berechtigung {{permission}}, um {{action}} zu {{type}}",
|
||||||
"CHOOSE_FILE": "Wählen Sie eine Datei aus, um ihre Versionen anzuzeigen"
|
"CHOOSE_FILE": "Wählen Sie eine Datei aus, um ihre Versionen anzuzeigen"
|
||||||
},
|
},
|
||||||
"APP_LAYOUT": {
|
"APP_LAYOUT": {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"title": "Welcome",
|
"title": "Welcome",
|
||||||
"VERSION": {
|
"VERSION": {
|
||||||
"NO_PERMISSION": "You don't have permission to manage versions of this content",
|
"NO_PERMISSION": "You don't have permission to manage versions of this content",
|
||||||
"NO_PERMISSION_EVENT": "You don't have ${event.permission} permission to ${event.action} the ${event.type}",
|
"NO_PERMISSION_EVENT": "You don't have {{permission}} permission to {{action}} the {{type}}",
|
||||||
"CHOOSE_FILE": "Select a file to see its versions",
|
"CHOOSE_FILE": "Select a file to see its versions",
|
||||||
"DIALOG": {
|
"DIALOG": {
|
||||||
"CLOSE": "Close",
|
"CLOSE": "Close",
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"title": "Benvenuto",
|
"title": "Benvenuto",
|
||||||
"VERSION": {
|
"VERSION": {
|
||||||
"NO_PERMISSION": "Non hai il permesso di gestire versioni di questo contenuto",
|
"NO_PERMISSION": "Non hai il permesso di gestire versioni di questo contenuto",
|
||||||
"NO_PERMISSION_EVENT": "Non hai il permesso ${event.permission} di ${event.action} ${event.type}",
|
"NO_PERMISSION_EVENT": "Non hai il permesso {{permission}} di {{action}} {{type}}",
|
||||||
"CHOOSE_FILE": "Seleziona un file per visualizzarne le versioni"
|
"CHOOSE_FILE": "Seleziona un file per visualizzarne le versioni"
|
||||||
},
|
},
|
||||||
"APP_LAYOUT": {
|
"APP_LAYOUT": {
|
||||||
|
@ -263,7 +263,7 @@ export class FilesComponent implements OnInit, OnChanges, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
handlePermissionError(event: any) {
|
handlePermissionError(event: any) {
|
||||||
this.translateService.get('OPERATION.ERROR.NO_PERMISSION_EVENT', {
|
this.translateService.get('VERSION.NO_PERMISSION_EVENT', {
|
||||||
permission: event.permission,
|
permission: event.permission,
|
||||||
action: event.action,
|
action: event.action,
|
||||||
type: event.type
|
type: event.type
|
||||||
|
Loading…
x
Reference in New Issue
Block a user