mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
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:
parent
f675c48e35
commit
50449158bc
18 changed files with 67 additions and 67 deletions
|
@ -17,7 +17,7 @@ Window {
|
|||
maximumWidth: width
|
||||
minimumHeight: 125
|
||||
height: Math.min(750, cl.implicitHeight)
|
||||
title: qsTr("Advanced options")
|
||||
title: qsTr("OS Customization")
|
||||
|
||||
property bool initialized: false
|
||||
property bool hasSavedSettings: false
|
||||
|
@ -49,7 +49,7 @@ Window {
|
|||
|
||||
RowLayout {
|
||||
Label {
|
||||
text: qsTr("Image customization options")
|
||||
text: qsTr("OS 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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue