Translatable "%1: " strings.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2022-01-27 21:48:03 +01:00
parent 36e3c3cba2
commit a7a430c723
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
10 changed files with 73 additions and 3 deletions

View file

@ -484,6 +484,16 @@ Diese Einstellungen können jederzeit über das Menü "Einstellungen"
<translation>Hinweis: Verwenden Sie %1[n], um sich auf %1 zu beziehen, %1[n+1] für %1</translation>
</message>
</context>
<context>
<name>control</name>
<message>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml" line="57"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml" line="40"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml" line="54"/>
<source>%1: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>function</name>
<message>

View file

@ -484,6 +484,16 @@ These settings can be changed at any time from the &quot;Settings&quot; menu.</t
<translation>Note: Use %1[n] to refer to %1, %1[n+1] for %1</translation>
</message>
</context>
<context>
<name>control</name>
<message>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml" line="57"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml" line="40"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml" line="54"/>
<source>%1: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>function</name>
<message>

View file

@ -483,6 +483,16 @@ These settings can be changed at any time from the &quot;Settings&quot; menu.</s
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>control</name>
<message>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml" line="57"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml" line="40"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml" line="54"/>
<source>%1: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>function</name>
<message>

View file

@ -493,6 +493,16 @@ These settings can always be changed at any time from the &quot;Settings&quot; m
<translation>Note : Utilisez %1[n] pour faire référence à %1, %1[n+1] pour %1</translation>
</message>
</context>
<context>
<name>control</name>
<message>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml" line="57"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml" line="40"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml" line="54"/>
<source>%1: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>function</name>
<message>

View file

@ -484,6 +484,16 @@ Ezek a beállítások bármikor módosíthatók a „Beállítások” menüben.
<translation>Megjegyzés: A(z) %1[n] használatával hivatkozhat erre: %1, a(z) %1[n+1] használatával hivatkozhat erre: %1, </translation>
</message>
</context>
<context>
<name>control</name>
<message>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml" line="57"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml" line="40"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml" line="54"/>
<source>%1: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>function</name>
<message>

View file

@ -484,6 +484,16 @@ Disse innstillingene kan endres når som helst fra «Innstillinger»-menyen.</tr
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>control</name>
<message>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml" line="57"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml" line="40"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml" line="54"/>
<source>%1: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>function</name>
<message>

View file

@ -483,6 +483,16 @@ These settings can be changed at any time from the &quot;Settings&quot; menu.</s
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>control</name>
<message>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ComboBoxSetting.qml" line="57"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/ListSetting.qml" line="40"/>
<location filename="../qml/eu/ad5001/LogarithmPlotter/Setting/TextSetting.qml" line="54"/>
<source>%1: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>function</name>
<message>

View file

@ -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 {

View file

@ -37,7 +37,7 @@ Column {
id: labelItem
height: 30
verticalAlignment: TextInput.AlignVCenter
text: control.label +": "
text: qsTranslate("control", "%1: ").arg(control.label)
}
}

View file

@ -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)
}