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

FIX #11271 TIME 0:10 fix category label in form

parent 5a4bcfc3
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<div *ngIf="this['indexingModels_'+category].length > 0 || adminMode" class="banner" <div *ngIf="this['indexingModels_'+category].length > 0 || adminMode" class="banner"
[style.borderColor]="currentPriorityColor"> [style.borderColor]="currentPriorityColor">
<div class="title" [style.color]="currentPriorityColor"> <div class="title" [style.color]="currentPriorityColor">
{{category === 'mail' ? lang[currentCategory] : lang[category] | uppercase}} {{lang[category] | uppercase}} <small *ngIf="category === 'mail'" style="font-size: 50%;padding-right: 10px;" [title]="lang.category_id">{{lang['indexing_' + currentCategory]}}</small>
<div class="title-divider"></div> <div class="title-divider"></div>
</div> </div>
<div class="content"> <div class="content">
......
...@@ -1170,4 +1170,8 @@ export const LANG_FR = { ...@@ -1170,4 +1170,8 @@ export const LANG_FR = {
"eraseValue" : "Effacer la valeur", "eraseValue" : "Effacer la valeur",
"todayDate" : "Date du jour", "todayDate" : "Date du jour",
"noDefaultIndexingModel" : "Aucun modèle par défaut trouvé, chargement du premier de la liste.", "noDefaultIndexingModel" : "Aucun modèle par défaut trouvé, chargement du premier de la liste.",
"indexing_incoming" : "arrivée",
"indexing_outgoing" : "départ",
"indexing_internal" : "interne",
"indexing_ged_doc" : "GED",
}; };
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