From a7a430c7236d27a2d3fba609d1c2f899b1ef461b Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Thu, 27 Jan 2022 21:48:03 +0100 Subject: [PATCH] Translatable "%1: " strings. --- LogarithmPlotter/i18n/lp_de.ts | 10 ++++++++++ LogarithmPlotter/i18n/lp_en.ts | 10 ++++++++++ LogarithmPlotter/i18n/lp_es.ts | 10 ++++++++++ LogarithmPlotter/i18n/lp_fr.ts | 10 ++++++++++ LogarithmPlotter/i18n/lp_hu.ts | 10 ++++++++++ LogarithmPlotter/i18n/lp_nb_NO.ts | 10 ++++++++++ LogarithmPlotter/i18n/lp_template.ts | 10 ++++++++++ .../LogarithmPlotter/Setting/ComboBoxSetting.qml | 2 +- .../eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml | 2 +- .../eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml | 2 +- 10 files changed, 73 insertions(+), 3 deletions(-) diff --git a/LogarithmPlotter/i18n/lp_de.ts b/LogarithmPlotter/i18n/lp_de.ts index 16a0eb7..6ff715b 100644 --- a/LogarithmPlotter/i18n/lp_de.ts +++ b/LogarithmPlotter/i18n/lp_de.ts @@ -484,6 +484,16 @@ Diese Einstellungen können jederzeit über das Menü "Einstellungen" Hinweis: Verwenden Sie %1[n], um sich auf %1ₙ zu beziehen, %1[n+1] für %1ₙ₊₁… + + control + + + + + %1: + + + function diff --git a/LogarithmPlotter/i18n/lp_en.ts b/LogarithmPlotter/i18n/lp_en.ts index 75227d5..856b2d4 100644 --- a/LogarithmPlotter/i18n/lp_en.ts +++ b/LogarithmPlotter/i18n/lp_en.ts @@ -484,6 +484,16 @@ These settings can be changed at any time from the "Settings" menu.Note: Use %1[n] to refer to %1ₙ, %1[n+1] for %1ₙ₊₁… + + control + + + + + %1: + + + function diff --git a/LogarithmPlotter/i18n/lp_es.ts b/LogarithmPlotter/i18n/lp_es.ts index 50d03a8..3de5818 100644 --- a/LogarithmPlotter/i18n/lp_es.ts +++ b/LogarithmPlotter/i18n/lp_es.ts @@ -483,6 +483,16 @@ These settings can be changed at any time from the "Settings" menu. + + control + + + + + %1: + + + function diff --git a/LogarithmPlotter/i18n/lp_fr.ts b/LogarithmPlotter/i18n/lp_fr.ts index dc6b6b3..c4430fc 100644 --- a/LogarithmPlotter/i18n/lp_fr.ts +++ b/LogarithmPlotter/i18n/lp_fr.ts @@ -493,6 +493,16 @@ These settings can always be changed at any time from the "Settings" m Note : Utilisez %1[n] pour faire référence à %1ₙ, %1[n+1] pour %1ₙ₊₁… + + control + + + + + %1: + + + function diff --git a/LogarithmPlotter/i18n/lp_hu.ts b/LogarithmPlotter/i18n/lp_hu.ts index 49833c7..054074e 100644 --- a/LogarithmPlotter/i18n/lp_hu.ts +++ b/LogarithmPlotter/i18n/lp_hu.ts @@ -484,6 +484,16 @@ Ezek a beállítások bármikor módosíthatók a „Beállítások” menüben. Megjegyzés: A(z) %1[n] használatával hivatkozhat erre: %1ₙ, a(z) %1[n+1] használatával hivatkozhat erre: %1ₙ₊₁, … + + control + + + + + %1: + + + function diff --git a/LogarithmPlotter/i18n/lp_nb_NO.ts b/LogarithmPlotter/i18n/lp_nb_NO.ts index d4a9437..038638f 100644 --- a/LogarithmPlotter/i18n/lp_nb_NO.ts +++ b/LogarithmPlotter/i18n/lp_nb_NO.ts @@ -484,6 +484,16 @@ Disse innstillingene kan endres når som helst fra «Innstillinger»-menyen. + + control + + + + + %1: + + + function diff --git a/LogarithmPlotter/i18n/lp_template.ts b/LogarithmPlotter/i18n/lp_template.ts index 728fd51..2fe8096 100644 --- a/LogarithmPlotter/i18n/lp_template.ts +++ b/LogarithmPlotter/i18n/lp_template.ts @@ -483,6 +483,16 @@ These settings can be changed at any time from the "Settings" menu. + + control + + + + + %1: + + + function diff --git a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml index 6af4631..39a3834 100644 --- a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml +++ b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml @@ -54,7 +54,7 @@ Item { height: 30 anchors.top: parent.top verticalAlignment: TextInput.AlignVCenter - text: control.label +": " + text: qsTranslate("control", "%1: ").arg(control.label) } ComboBox { diff --git a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml index 4579bbf..b658bb6 100644 --- a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml +++ b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml @@ -37,7 +37,7 @@ Column { id: labelItem height: 30 verticalAlignment: TextInput.AlignVCenter - text: control.label +": " + text: qsTranslate("control", "%1: ").arg(control.label) } } diff --git a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml index 0b7ed9f..ae44044 100644 --- a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml +++ b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml @@ -51,7 +51,7 @@ Item { anchors.top: parent.top verticalAlignment: TextInput.AlignVCenter //color: sysPalette.windowText - text: control.label +": " + text: qsTranslate("control", "%1: ").arg(control.label) }