i18n: Advanced settings -> OS customization

Per a request from the Raspberry Pi Communications team, change
'Advanced Settings' and 'Image customization' to read 'OS
customization'.

This is to avoid amibuguity in the English, where Image_r_ and Image may
be conflated when reading at speed.

Regrettably, this breaks the existing translations. To prevent
confusion, explicitly delete the existing translations - as they're almost
certainly not valid with the reworded meaning.
This commit is contained in:
Tom Dewey tom.dewey@raspberrypi.com 2023-10-16 13:09:34 +01:00
parent f675c48e35
commit 50449158bc
18 changed files with 67 additions and 67 deletions

View file

@ -70,7 +70,7 @@ Popup {
Layout.topMargin: 10
font.family: roboto.name
font.bold: true
text: qsTr("Use image customisation?")
text: qsTr("Use OS customization?")
}
Text {
@ -85,7 +85,7 @@ Popup {
Layout.topMargin: 25
Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter
Accessible.name: text.replace(/<\/?[^>]+(>|$)/g, "")
text: qsTr("Would you like to apply image customization settings?")
text: qsTr("Would you like to apply OS customization settings?")
}
RowLayout {
@ -95,10 +95,10 @@ Popup {
id: buttons
ImButton {
text: qsTr("NO")
text: qsTr("EDIT SETTINGS")
onClicked: {
msgpopup.close()
msgpopup.no()
msgpopup.editSettings()
}
Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff"
Material.background: "#c51a4a"
@ -127,10 +127,10 @@ Popup {
}
ImButton {
text: qsTr("EDIT SETTINGS")
text: qsTr("NO")
onClicked: {
msgpopup.close()
msgpopup.editSettings()
msgpopup.no()
}
Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff"
Material.background: "#c51a4a"