Rename Orthogonal to Orthographic everywhere

This commit is contained in:
Ghostkeeper 2019-07-30 17:35:40 +02:00
parent 2ce567ccfe
commit 846cbe79a3
No known key found for this signature in database
GPG key ID: 86BEF881AE2CF276
5 changed files with 24 additions and 6 deletions

View file

@ -368,7 +368,7 @@ UM.PreferencesPage
{
width: childrenRect.width;
height: childrenRect.height;
text: zoomToMouseCheckbox.enabled ? catalog.i18nc("@info:tooltip", "Should zooming move in the direction of the mouse?") : catalog.i18nc("@info:tooltip", "Zooming towards the mouse is not supported in the orthogonal perspective.")
text: zoomToMouseCheckbox.enabled ? catalog.i18nc("@info:tooltip", "Should zooming move in the direction of the mouse?") : catalog.i18nc("@info:tooltip", "Zooming towards the mouse is not supported in the orthographic perspective.")
CheckBox
{
@ -389,7 +389,7 @@ UM.PreferencesPage
{
return;
}
zoomToMouseCheckbox.enabled = UM.Preferences.getValue("general/camera_perspective_mode") !== "orthogonal";
zoomToMouseCheckbox.enabled = UM.Preferences.getValue("general/camera_perspective_mode") !== "orthographic";
zoomToMouseCheckbox.checked = boolCheck(UM.Preferences.getValue("view/zoom_to_mouse")) && zoomToMouseCheckbox.enabled;
}
}
@ -481,7 +481,7 @@ UM.PreferencesPage
Component.onCompleted: {
append({ text: catalog.i18n("Perspective"), code: "perspective" })
append({ text: catalog.i18n("Orthogonal"), code: "orthogonal" })
append({ text: catalog.i18n("Orthographic"), code: "orthographic" })
}
}