diff --git a/lang/fr.json b/lang/fr.json index d3dbe6e8ea5fab941fd0b8c34e942e0511ba758b..bbaa38a0e8549cd62c49ad1735d3bc60c09ee7f1 100755 --- a/lang/fr.json +++ b/lang/fr.json @@ -699,6 +699,7 @@ "refusedStatus": "Le document a été refusé", "errorStatus": "Une erreur est survenue !", "noneStatus": "Aucune action n'a été effectuée", - "cannotManageSignatures": "Le prépositionnement des signatures <b>n'est pas pris en compte</b> par le connecteur associé" + "cannotManageSignatures": "Le prépositionnement des signatures <b>n'est pas pris en compte</b> par le connecteur associé", + "signatureReplication": "Réplication de la griffe effectuée" } } diff --git a/src/frontend/app/documentSignList/document-sign-list.component.ts b/src/frontend/app/documentSignList/document-sign-list.component.ts index 43d8210e94dd542719507d535a732a7e6496bbca..4530afcc7714d4b1c6c282e34bda854facbebfb4 100644 --- a/src/frontend/app/documentSignList/document-sign-list.component.ts +++ b/src/frontend/app/documentSignList/document-sign-list.component.ts @@ -74,11 +74,11 @@ export class DocumentSignListComponent implements OnInit { this.signaturesService.signaturesContent[index].push(JSON.parse(JSON.stringify(this.signaturesService.signaturesContent[this.signaturesService.currentPage][i]))); } } + this.notificationService.success(this.translate.instant('lang.signatureReplication')); this.localStorage.save(this.signaturesService.mainDocumentId.toString(), JSON.stringify({ 'sign': this.signaturesService.signaturesContent, 'note': this.signaturesService.notesContent })); } }); - - this.menuSign.closeMenu(); + this.menuSign?.closeMenu(); } deleteSignature(i: number) {