Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2020-08-21 17:39:42 +0300
committerGhostkeeper <rubend@tutanota.com>2020-08-21 17:40:24 +0300
commit222d6604e03a106cdac1353cbffd7929597cba8b (patch)
treed4d8ec4ea740a29471854c590c83f86c281c4bd1 /resources
parent87fb495e07d97a5b1f6b4101d4da9a09a1277245 (diff)
Clarifications and fixes to source strings
Found during work on CURA-7622.
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Account/UserOperations.qml4
-rw-r--r--resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml4
-rw-r--r--resources/qml/ObjectItemButton.qml2
3 files changed, 5 insertions, 5 deletions
diff --git a/resources/qml/Account/UserOperations.qml b/resources/qml/Account/UserOperations.qml
index e996e41b20..19e92e0249 100644
--- a/resources/qml/Account/UserOperations.qml
+++ b/resources/qml/Account/UserOperations.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2018 Ultimaker B.V.
+// Copyright (c) 2020 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.10
@@ -96,7 +96,7 @@ Column
id: cloudButton
width: UM.Theme.getSize("account_button").width
height: UM.Theme.getSize("account_button").height
- text: catalog.i18nc("@button", "Ultimaker Digital Factory")
+ text: "Ultimaker Digital Factory"
onClicked: Qt.openUrlExternally(CuraApplication.ultimakerDigitalFactoryUrl)
fixedWidthMode: false
}
diff --git a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml
index a22a5ca4f4..6e3f6d1aad 100644
--- a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml
+++ b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2017 Ultimaker B.V.
+// Copyright (c) 2020 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.1
@@ -54,7 +54,7 @@ UM.Dialog
Label
{
- text: catalog.i18nc("@text:window, %1 is a profile name", "You have customized some profile settings.\nWould you like to Keep these changed settings after switching profiles?\nAlternatively, you can Discard the changes to load the defaults from '%1'.").arg(Cura.MachineManager.activeQualityDisplayNameMap["main"])
+ text: catalog.i18nc("@text:window, %1 is a profile name", "You have customized some profile settings.\nWould you like to Keep these changed settings after switching profiles?\nAlternatively, you can discard the changes to load the defaults from '%1'.").arg(Cura.MachineManager.activeQualityDisplayNameMap["main"])
anchors.margins: UM.Theme.getSize("default_margin").width
wrapMode: Text.WordWrap
}
diff --git a/resources/qml/ObjectItemButton.qml b/resources/qml/ObjectItemButton.qml
index 9244fa6391..f0cbc97bfa 100644
--- a/resources/qml/ObjectItemButton.qml
+++ b/resources/qml/ObjectItemButton.qml
@@ -115,7 +115,7 @@ Button
if (perObjectSettingsCount != "")
{
result += "<br>" + catalog.i18ncp(
- "@label", "Overrides %1 setting.", "Overrides %1 settings.", perObjectSettingsCount
+ "@label %1 is the number of settings it overrides.", "Overrides %1 setting.", "Overrides %1 settings.", perObjectSettingsCount
).arg(perObjectSettingsCount);
}
return result;