mirror of
https://github.com/kbenestad/invoice.git
synced 2026-06-18 08:04:32 +00:00
Rename total-local key to total-foreign with corrected label text
https://claude.ai/code/session_0127ywsQA7qWcX3tGX4itqN5
This commit is contained in:
parent
40d4bae612
commit
dd8bc3ac16
2 changed files with 6 additions and 6 deletions
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue