mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
String translate improvements
CURA-7090
This commit is contained in:
parent
2e0fef3bd4
commit
a08bea1376
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ UM.Dialog{
|
||||||
maximumHeight: minimumHeight
|
maximumHeight: minimumHeight
|
||||||
margin: 0
|
margin: 0
|
||||||
|
|
||||||
property string actionButtonText: subscribedPackagesModel.hasIncompatiblePackages && !subscribedPackagesModel.hasCompatiblePackages ? "Dismiss" : "Next"
|
property string actionButtonText: subscribedPackagesModel.hasIncompatiblePackages && !subscribedPackagesModel.hasCompatiblePackages ? catalog.i18nc("@button", "Dismiss") : catalog.i18nc("@button", "Next")
|
||||||
|
|
||||||
Rectangle
|
Rectangle
|
||||||
{
|
{
|
||||||
|
@ -140,7 +140,7 @@ UM.Dialog{
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
anchors.margins: UM.Theme.getSize("default_margin").height
|
anchors.margins: UM.Theme.getSize("default_margin").height
|
||||||
text: catalog.i18nc("@button", actionButtonText)
|
text: actionButtonText
|
||||||
onClicked: accept()
|
onClicked: accept()
|
||||||
leftPadding: UM.Theme.getSize("dialog_primary_button_padding").width
|
leftPadding: UM.Theme.getSize("dialog_primary_button_padding").width
|
||||||
rightPadding: UM.Theme.getSize("dialog_primary_button_padding").width
|
rightPadding: UM.Theme.getSize("dialog_primary_button_padding").width
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue