Skip to content
Snippets Groups Projects
Verified Commit 347c7a03 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

fix var lang

parent ed9078b1
No related branches found
No related tags found
No related merge requests found
...@@ -155,6 +155,7 @@ ...@@ -155,6 +155,7 @@
"noResult": "No result", "noResult": "No result",
"informations": "Informations", "informations": "Informations",
"circuit": "Circuit", "circuit": "Circuit",
"actions": "Actions" "actions": "Actions",
"addNote": "Add note"
} }
} }
...@@ -155,6 +155,7 @@ ...@@ -155,6 +155,7 @@
"noResult": "Aucun résultat", "noResult": "Aucun résultat",
"informations": "Informations", "informations": "Informations",
"circuit": "Circuit", "circuit": "Circuit",
"actions": "Actions" "actions": "Actions",
"addNote": "Ajouter un commentaire"
} }
} }
<div class="modalContent"> <div class="modalContent">
<h1 mat-dialog-title><i class="fa fa-exclamation-triangle fa-2x"></i><br/>{{'lang.warning' | translate}} !</h1> <h1 mat-dialog-title><i class="fa fa-exclamation-triangle fa-2x"></i><br/>{{'lang.warning' | translate}} !</h1>
<div mat-dialog-content> <div mat-dialog-content>
<!--<p *ngIf="signaturesService.notesContent.length == 0 && signaturesService.signaturesContent.length == 0">{{'lang.refuseDocumentWithoutSignature' | translate}}</p>-->
<p>{{'lang.wouldLikeConfirm' | translate}}</p> <p>{{'lang.wouldLikeConfirm' | translate}}</p>
<p> <p>
<textarea [(ngModel)]="note" class="note" matInput placeholder="Ajouter un commentaire"></textarea> <textarea [(ngModel)]="note" class="note" matInput placeholder="{{'lang.addNote' | translate}}"></textarea>
</p> </p>
</div> </div>
<div mat-dialog-actions> <div mat-dialog-actions>
<button mat-icon-button class="close" (click)="this.dialogRef.close();"> <button mat-icon-button class="close" (click)="this.dialogRef.close();">
<mat-icon fontSet="fas" fontIcon="fa-times"></mat-icon> <mat-icon fontSet="fas" fontIcon="fa-times"></mat-icon>
</button> </button>
<!--<button class="actions btn" [disabled]="disableState" mat-button (click)="this.dialogRef.close('annotation');" *ngIf="signaturesService.notesContent.length == 0"><i class="fas fa-pen-alt fa-2x"></i> {{'lang.annotateDocument' | translate}}</button>-->
<button class="actions btn red" mat-button cdkFocusInitial (click)="confirmDoc();" [disabled]="disableState"><i class="fas fa-backspace fa-2x"></i> {{ msgButton | translate}}</button> <button class="actions btn red" mat-button cdkFocusInitial (click)="confirmDoc();" [disabled]="disableState"><i class="fas fa-backspace fa-2x"></i> {{ msgButton | translate}}</button>
</div> </div>
</div> </div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment