Skip to content

Commit

Permalink
fix : ortograph mistake "Vericalised" instead of "Verticalised" in th…
Browse files Browse the repository at this point in the history
…e calculation report
  • Loading branch information
chantrenne committed Jul 31, 2024
1 parent b5a4c2c commit de04778
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/html/visu_comp.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const translation_fr={
"Normalized residuals distribution": "Répartition des résidus normalisés",
"Not enough observations": "Pas assez d'observations",
"Not enough redundancy": "Pas assez de redondance",
"Not vericalized": "Non verticalisé",
"Not verticalized": "Non verticalisé",
"Number and nature of active observations": "Nombre et nature des observations actives",
"Obs": "Obs",
"Observation": "Observation",
Expand Down Expand Up @@ -3110,7 +3110,7 @@ function show_similarities(){
let td_vert=document.createElement("td");
td_vert.setAttribute('rowspan',2);
td_vert.title=_("Is subframe z forced to be aligned with vertical?");
td_vert.innerHTML=(basc.vertical?_("Verticalized"):_("Not vericalized"))
td_vert.innerHTML=(basc.vertical?_("Verticalized"):_("Not verticalized"))
new_tr.appendChild(td_vert);

//Case T
Expand Down

0 comments on commit de04778

Please sign in to comment.