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

add target quick search info + fix typist null in attach list

parent 82e4d046
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@
<div class="col-md-6">
<mat-form-field>
<input matInput title="{{attachment.firstname_typist}} {{attachment.lastname_typist}}"
[value]="attachment.firstname_typist+' '+attachment.lastname_typist"
[value]="attachment.lastname_typist != null ? attachment.firstname_typist+' '+attachment.lastname_typist : lang.undefined"
placeholder="{{lang.by}}" disabled>
</mat-form-field>
</div>
......
......@@ -13,11 +13,10 @@
<input #searchHome type="submit" name="submit" value="" style="display:none">
</form>
<button (click)="showSearchInput()" mat-icon-button *ngIf="!mobileMode && hideSearch" style="opacity:0.5;">
<button title="{{lang.quickSearchInfo + ' : '+ lang.quickSearchTarget}}" (click)="showSearchInput()" mat-icon-button *ngIf="!mobileMode && hideSearch" style="opacity:0.5;">
<mat-icon class="fa fa-search" style="font-size:22px;"></mat-icon>
</button>
<button mat-icon-button [matMenuTriggerFor]="applications" *ngIf="!mobileMode" matTooltip="{{lang.menu}}">
<mat-icon class="fa fa-th" style="font-size:22px;"></mat-icon>
</button>
......
......@@ -4,7 +4,7 @@
<input type="hidden" name="baskets_clause" value="true">
<mat-form-field id="searchInput" floatLabel="never" style="width:100%">
<input matInput type="text" name="welcome" placeholder="{{lang.searchMails}}" style="width:100%">
<button mat-button matSuffix mat-icon-button type="submit" aria-label="Clear" style="opacity:0.5;">
<button title="{{lang.quickSearchInfo + ' : '+ lang.quickSearchTarget}}" mat-button matSuffix mat-icon-button type="submit" aria-label="Clear" style="opacity:0.5;">
<mat-icon class="fa fa-search"></mat-icon>
</button>
</mat-form-field>
......
......@@ -937,4 +937,6 @@ export const LANG_EN = {
"addPerson" : "Add a person",
"actionDone" : "Action done",
"actionMassForbidden" : "This action is forbidden in mass",
"quickSearchInfo" : "Target search ",
"quickSearchTarget" : "subject (mail / attachment), chrono number (courrier / attachment), reference mail, notes content, barcode, attachment contact (society / lastanme / firstname)",
};
......@@ -964,4 +964,6 @@ export const LANG_FR = {
"addPerson" : "Ajouter une personne",
"actionDone" : "Action effectuée",
"actionMassForbidden" : "Cette action n\'est pas utilisable en masse",
"quickSearchInfo" : "Cible de la recherche",
"quickSearchTarget" : "sujet (courrier / pièce jointe), numéro chrono (courrier / pièce jointe), référence courrier expéditeur, contenu d\'annotations, code à barre, contact pièce jointe (société / nom / prénom)",
};
......@@ -965,4 +965,6 @@ export const LANG_NL = {
"addPerson" : "Add a person", //_TO_TRANSLATE
"actionDone" : "Action effectuée", //_TO_TRANSLATE
"actionMassForbidden" : "This action is forbidden in mass", //_TO_TRANSLATE
"quickSearchInfo" : "Target search ", //_TO_TRANSLATE
"quickSearchTarget" : "subject (mail / attachment), chrono number (courrier / attachment), reference mail, notes content, barcode, attachment contact (society / lastanme / firstname)", //_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