Skip to content
Snippets Groups Projects
Verified Commit 4a297f9d authored by Florian Azizian's avatar Florian Azizian
Browse files

FEAT #13481 TIME 0:10 title on close/open side panel button

parent 4e527c98
No related branches found
No related tags found
No related merge requests found
<div class="bg-head-title-label" *ngIf="headerService.sideNavLeft !== undefined"> <div class="bg-head-title-label" *ngIf="headerService.sideNavLeft !== undefined">
<button *ngIf="!headerService.sideNavLeft.opened" mat-icon-button (click)="headerService.sideNavLeft.open()" style="font-size:20px;"> <button *ngIf="!headerService.sideNavLeft.opened" mat-icon-button (click)="headerService.sideNavLeft.open()" style="font-size:20px;" title="{{lang.openSidePanel}}">
<mat-icon class="fa fa-stream"></mat-icon> <mat-icon class="fa fa-stream"></mat-icon>
</button> </button>
<i *ngIf="headerService.headerMessageIcon !== ''" class="{{headerService.headerMessageIcon}} headerIcon"></i> {{headerService.headerMessage}} <span class="admin-toolbar-title-small">{{headerService.subHeaderMessage}}</span> <i *ngIf="headerService.headerMessageIcon !== ''" class="{{headerService.headerMessageIcon}} headerIcon"></i> {{headerService.headerMessage}} <span class="admin-toolbar-title-small">{{headerService.subHeaderMessage}}</span>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
</button> </button>
</div> </div>
<div class="panelHeader-button"> <div class="panelHeader-button">
<button mat-icon-button (click)="headerService.sideNavLeft.close()"> <button mat-icon-button (click)="headerService.sideNavLeft.close()" title="{{lang.closeSidePanel}}">
<mat-icon fontSet="fas" fontIcon="fa-stream" style="transform: rotate(180deg);"></mat-icon> <mat-icon fontSet="fas" fontIcon="fa-stream" style="transform: rotate(180deg);"></mat-icon>
</button> </button>
</div> </div>
......
...@@ -1603,4 +1603,6 @@ export const LANG_EN = { ...@@ -1603,4 +1603,6 @@ export const LANG_EN = {
"addNoteToNumericPackage" : "Add a note Ajouter to sending mail", "addNoteToNumericPackage" : "Add a note Ajouter to sending mail",
"mainDocNumericPackage" : "Main document of sending mail", "mainDocNumericPackage" : "Main document of sending mail",
"attachmentsNumericPackage" : "Attachments of sending mail", "attachmentsNumericPackage" : "Attachments of sending mail",
"closeSidePanel" : "Close side panel",
"openSidePanel" : "Open side panel",
}; };
...@@ -1642,4 +1642,6 @@ export const LANG_FR = { ...@@ -1642,4 +1642,6 @@ export const LANG_FR = {
"addNoteToNumericPackage" : "Ajouter une annotation au courrier à transmettre", "addNoteToNumericPackage" : "Ajouter une annotation au courrier à transmettre",
"mainDocNumericPackage" : "Document principal du courrier à transmettre", "mainDocNumericPackage" : "Document principal du courrier à transmettre",
"attachmentsNumericPackage" : "Pièces attachés du courrier à transmettre", "attachmentsNumericPackage" : "Pièces attachés du courrier à transmettre",
"closeSidePanel" : "Fermer le panneau latéral",
"openSidePanel" : "Ouvrir le panneau latéral",
}; };
...@@ -1628,4 +1628,6 @@ export const LANG_NL = { ...@@ -1628,4 +1628,6 @@ export const LANG_NL = {
"addNoteToNumericPackage" : "Add a note Ajouter to sending mail", //_TO_TRANSLATE "addNoteToNumericPackage" : "Add a note Ajouter to sending mail", //_TO_TRANSLATE
"mainDocNumericPackage" : "Main document of sending mail", //_TO_TRANSLATE "mainDocNumericPackage" : "Main document of sending mail", //_TO_TRANSLATE
"attachmentsNumericPackage" : "Attachments of sending mail", //_TO_TRANSLATE "attachmentsNumericPackage" : "Attachments of sending mail", //_TO_TRANSLATE
"closeSidePanel" : "Close side panel", //_TO_TRANSLATE
"openSidePanel" : "Open side panel", //_TO_TRANSLATE
}; };
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