From eaedf717bdf742c4940da0b82574cbdc02d89d90 Mon Sep 17 00:00:00 2001 From: "hamza.hramchi" <hamza.hramchi@xelians.fr> Date: Thu, 29 Oct 2020 09:33:04 +0100 Subject: [PATCH] FEAT #15056 TIME 0:01 fix language variable --- src/frontend/app/actions/actions-list.component.ts | 2 +- .../folder/folder-action-list/folder-action-list.component.ts | 2 +- .../home/followed-action-list/followed-action-list.component.ts | 2 +- src/frontend/app/process/process.component.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/frontend/app/actions/actions-list.component.ts b/src/frontend/app/actions/actions-list.component.ts index bbfa004bf91..55d64e5b9b4 100644 --- a/src/frontend/app/actions/actions-list.component.ts +++ b/src/frontend/app/actions/actions-list.component.ts @@ -161,7 +161,7 @@ export class ActionsListComponent implements OnInit { if (value) { this.notify.success(this.translate.instant('lang.retentionRuleFrozen')); } else { - this.notify.success(this.translate.instant('lang.retentionRuleUnfreezed')); + this.notify.success(this.translate.instant('lang.retentionRuleUnfrozen')); } this.refreshList(); diff --git a/src/frontend/app/folder/folder-action-list/folder-action-list.component.ts b/src/frontend/app/folder/folder-action-list/folder-action-list.component.ts index e8d1fb2a0a8..10e308e3058 100644 --- a/src/frontend/app/folder/folder-action-list/folder-action-list.component.ts +++ b/src/frontend/app/folder/folder-action-list/folder-action-list.component.ts @@ -167,7 +167,7 @@ export class FolderActionListComponent implements OnInit { if (value) { this.notify.success(this.translate.instant('lang.retentionRuleFrozen')); } else { - this.notify.success(this.translate.instant('lang.retentionRuleUnfreezed')); + this.notify.success(this.translate.instant('lang.retentionRuleUnfrozen')); } this.refreshList(); diff --git a/src/frontend/app/home/followed-action-list/followed-action-list.component.ts b/src/frontend/app/home/followed-action-list/followed-action-list.component.ts index b5016d1cb52..a63f75c343a 100644 --- a/src/frontend/app/home/followed-action-list/followed-action-list.component.ts +++ b/src/frontend/app/home/followed-action-list/followed-action-list.component.ts @@ -143,7 +143,7 @@ export class FollowedActionListComponent implements OnInit { if (value) { this.notify.success(this.translate.instant('lang.retentionRuleFrozen')); } else { - this.notify.success(this.translate.instant('lang.retentionRuleUnfreezed')); + this.notify.success(this.translate.instant('lang.retentionRuleUnfrozen')); } this.refreshList(); diff --git a/src/frontend/app/process/process.component.ts b/src/frontend/app/process/process.component.ts index c13a6a53b50..f073cee7204 100755 --- a/src/frontend/app/process/process.component.ts +++ b/src/frontend/app/process/process.component.ts @@ -845,7 +845,7 @@ export class ProcessComponent implements OnInit, OnDestroy { if (this.resourceFreezed) { this.notify.success(this.translate.instant('lang.retentionRuleFrozen')); } else { - this.notify.success(this.translate.instant('lang.retentionRuleUnfreezed')); + this.notify.success(this.translate.instant('lang.retentionRuleUnfrozen')); } } ), -- GitLab