mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Add missing translation markers
This commit is contained in:
parent
ef62725cc1
commit
acf5120cff
13 changed files with 76 additions and 40 deletions
|
@ -9,7 +9,22 @@ Rectangle
|
|||
|
||||
Text
|
||||
{
|
||||
text: manager.progress == 0 ? "Starting firmware update, may take a while.": manager.progress > 99 ? "Firmware update completed.": "Updating firmware."
|
||||
text: {
|
||||
if (manager.progress == 0)
|
||||
{
|
||||
//: Firmware update status label
|
||||
return qsTr("Starting firmware update, this may take a while.")
|
||||
}
|
||||
else if (manager.progress > 99)
|
||||
{
|
||||
//: Firmware update status label
|
||||
return qsTr("Firmware update completed.")
|
||||
}
|
||||
else
|
||||
{
|
||||
//: Firmware update status label
|
||||
return qsTr("Updating firmware.")
|
||||
}
|
||||
}
|
||||
ProgressBar
|
||||
{
|
||||
|
@ -26,4 +41,4 @@ Rectangle
|
|||
height: 25
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue