Remove translations from DataCollectionsContent

Contribute to CURA-10208
This commit is contained in:
jspijker 2023-03-06 11:59:08 +01:00
parent 769a3a97b6
commit e64e090814
2 changed files with 10 additions and 55 deletions

View file

@ -3,7 +3,6 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# #
#, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
@ -1966,7 +1965,6 @@ msgid "Dismiss"
msgstr "" msgstr ""
#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
#: resources/qml/WelcomePages/DataCollectionsContent.qml:118
#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
#: resources/qml/WelcomePages/WhatsNewContent.qml:175 #: resources/qml/WelcomePages/WhatsNewContent.qml:175
msgctxt "@button" msgctxt "@button"
@ -6468,48 +6466,6 @@ msgctxt "@text"
msgid "Create a free UltiMaker Account" msgid "Create a free UltiMaker Account"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:24
msgctxt "@label"
msgid "Help us to improve UltiMaker Cura"
msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:56
msgctxt "@text"
msgid ""
"UltiMaker Cura collects anonymous data to improve print quality and user "
"experience, including:"
msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:68
msgctxt "@text"
msgid "Machine types"
msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:74
msgctxt "@text"
msgid "Material usage"
msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:80
msgctxt "@text"
msgid "Number of slices"
msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:86
msgctxt "@text"
msgid "Print settings"
msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:99
msgctxt "@text"
msgid ""
"Data collected by UltiMaker Cura will not contain any personal information."
msgstr ""
#: resources/qml/WelcomePages/DataCollectionsContent.qml:100
msgctxt "@text"
msgid "More information"
msgstr ""
#: resources/qml/WelcomePages/DropDownWidget.qml:93 #: resources/qml/WelcomePages/DropDownWidget.qml:93
msgctxt "@label" msgctxt "@label"

View file

@ -10,18 +10,17 @@ import Cura 1.1 as Cura
// //
// This component contains the content for the "Help us to improve Ultimaker Cura" page of the welcome on-boarding process. // This component contains the content for the "Help us to improve Ultimaker Cura" page of the welcome on-boarding process.
// This dialog is currently only shown during on-boarding and therefore only shown in English
// //
Item Item
{ {
UM.I18nCatalog { id: catalog; name: "cura" }
UM.Label UM.Label
{ {
id: titleLabel id: titleLabel
anchors.top: parent.top anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
text: catalog.i18nc("@label", "Help us to improve UltiMaker Cura") text: "Help us to improve UltiMaker Cura"
color: UM.Theme.getColor("primary_button") color: UM.Theme.getColor("primary_button")
font: UM.Theme.getFont("huge") font: UM.Theme.getFont("huge")
} }
@ -53,7 +52,7 @@ Item
width: parent.width width: parent.width
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
text: catalog.i18nc("@text", "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:") text: "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:"
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
font: UM.Theme.getFont("medium") font: UM.Theme.getFont("medium")
} }
@ -65,25 +64,25 @@ Item
ImageTile ImageTile
{ {
text: catalog.i18nc("@text", "Machine types") text: "Machine types"
imageSource: UM.Theme.getImage("first_run_machine_types") imageSource: UM.Theme.getImage("first_run_machine_types")
} }
ImageTile ImageTile
{ {
text: catalog.i18nc("@text", "Material usage") text: "Material usage"
imageSource: UM.Theme.getImage("first_run_material_usage") imageSource: UM.Theme.getImage("first_run_material_usage")
} }
ImageTile ImageTile
{ {
text: catalog.i18nc("@text", "Number of slices") text: "Number of slices"
imageSource: UM.Theme.getImage("first_run_number_slices") imageSource: UM.Theme.getImage("first_run_number_slices")
} }
ImageTile ImageTile
{ {
text: catalog.i18nc("@text", "Print settings") text: "Print settings"
imageSource: UM.Theme.getImage("first_run_print_settings") imageSource: UM.Theme.getImage("first_run_print_settings")
} }
} }
@ -96,8 +95,8 @@ Item
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
text: text:
{ {
var t = catalog.i18nc("@text", "Data collected by UltiMaker Cura will not contain any personal information.") var t = "Data collected by UltiMaker Cura will not contain any personal information."
var t2 = catalog.i18nc("@text", "More information") var t2 = "More information"
t += " <a href='https://notusedref'>" + t2 + "</a>" t += " <a href='https://notusedref'>" + t2 + "</a>"
return t return t
} }
@ -115,7 +114,7 @@ Item
id: getStartedButton id: getStartedButton
anchors.right: parent.right anchors.right: parent.right
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
text: catalog.i18nc("@button", "Next") text: "Next"
onClicked: base.showNextPage() onClicked: base.showNextPage()
} }
} }