PrintSetupSelector: "G code" -> "G-code"

Noticed that "g-code" is written at some places with and without a hyphen.
Since it think it should be written with, I'm correcting it at this point.
This commit is contained in:
Thomas Karl Pietrowski 2019-03-22 19:42:01 +01:00 committed by GitHub
parent ac5428a2e4
commit 8b0e1e9f5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ Cura.ExpandableComponent
contentPadding: UM.Theme.getSize("default_lining").width contentPadding: UM.Theme.getSize("default_lining").width
contentHeaderTitle: catalog.i18nc("@label", "Print settings") contentHeaderTitle: catalog.i18nc("@label", "Print settings")
enabled: !preSlicedData enabled: !preSlicedData
disabledText: catalog.i18nc("@label shown when we load a Gcode file", "Print setup disabled. G code file can not be modified.") disabledText: catalog.i18nc("@label shown when we load a Gcode file", "Print setup disabled. G-code file can not be modified.")
UM.I18nCatalog UM.I18nCatalog
{ {
@ -32,4 +32,4 @@ Cura.ExpandableComponent
onExpandedChanged: UM.Preferences.setValue("view/settings_visible", expanded) onExpandedChanged: UM.Preferences.setValue("view/settings_visible", expanded)
Component.onCompleted: expanded = UM.Preferences.getValue("view/settings_visible") Component.onCompleted: expanded = UM.Preferences.getValue("view/settings_visible")
} }