Rename total-local key to total-foreign with corrected label text

https://claude.ai/code/session_0127ywsQA7qWcX3tGX4itqN5
This commit is contained in:
Claude 2026-05-29 15:31:26 +00:00
parent 40d4bae612
commit dd8bc3ac16
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View file

@ -369,11 +369,11 @@ translations:
de: Preis je Einheit (Fremdwährung) de: Preis je Einheit (Fremdwährung)
fr: Prix par unité (devise étrangère) fr: Prix par unité (devise étrangère)
"no": Pris per enhet (utenlandsk valuta) "no": Pris per enhet (utenlandsk valuta)
total-local: total-foreign:
en: Line total (local currency) en: Line total in foreign currency
de: Zeilenbetrag (Landeswährung) de: Zeilenbetrag (Fremdwährung)
fr: Total ligne (devise locale) fr: Total ligne en devise étrangère
"no": Linjebeløp (lokal valuta) "no": Linjebeløp i utenlandsk valuta
add-line: add-line:
en: "+ Add new line" en: "+ Add new line"
de: "+ Neue Zeile hinzufügen" de: "+ Neue Zeile hinzufügen"

View file

@ -889,7 +889,7 @@ function toggleFx(i) {
<input type="number" id="fper-${i}" value="" min="0" step="any" oninput="calcFxFromPer(${i})"> <input type="number" id="fper-${i}" value="" min="0" step="any" oninput="calcFxFromPer(${i})">
</div> </div>
</div> </div>
<div class="fx-note">${t("total-local")}: <strong id="fltot-${i}">0.00</strong></div> <div class="fx-note">${t("total-foreign")}: <strong id="fltot-${i}">0.00</strong></div>
</td>`; </td>`;
lr?.insertAdjacentElement("afterend", fxTr); lr?.insertAdjacentElement("afterend", fxTr);
calcLine(i); calcLine(i);