Revert "i18n: Advanced Settings -> OS Customisation"

This reverts commit 2fb58dc01c.

The original commit included an unexpected deletion of _all_
translations in certain languages. This was unintented, and appears to
have been a merging artefact.

This change will be re-submitted as a separate PR.
This commit is contained in:
Tom Dewey tom.dewey@raspberrypi.com 2023-10-16 13:05:15 +01:00
parent e8d7de934f
commit a5c736f230
18 changed files with 3681 additions and 2804 deletions

View file

@ -17,7 +17,7 @@ Window {
maximumWidth: width
minimumHeight: 125
height: Math.min(750, cl.implicitHeight)
title: qsTr("OS Customization")
title: qsTr("Advanced options")
property bool initialized: false
property bool hasSavedSettings: false
@ -49,7 +49,7 @@ Window {
RowLayout {
Label {
text: qsTr("OS customization options")
text: qsTr("Image customization options")
}
ComboBox {
id: comboSaveSettings
@ -539,7 +539,7 @@ Window {
/* Lacking an easy cross-platform to fetch keyboard layout
from host system, just default to "gb" for people in
UK time zone for now, and "us" for everyone else */
if (tz === "Europe/London") {
if (tz == "Europe/London") {
fieldKeyboardLayout.currentIndex = fieldKeyboardLayout.find("gb")
} else {
fieldKeyboardLayout.currentIndex = fieldKeyboardLayout.find("us")