Skip to content

Commit

Permalink
Fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
JTPetter committed Apr 15, 2024
1 parent adbe9d0 commit 9b0bfd1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions inst/qml/doeAnalysis.qml
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ Form

CheckBox
{
name: "plotPareto"
label: qsTr("Pareto Plot of Effects")
name: "plotPareto"
label: qsTr("Pareto plot of effects")
}
}

Expand Down
8 changes: 4 additions & 4 deletions inst/qml/doeResponseSurfaceMethodology.qml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ Form
RadioButtonGroup
{
name : "designType"
title : qsTr("Design Type")
title : qsTr("Design type")

RadioButton { name: "centralCompositeDesign"; label: qsTr("Central Composite Design"); checked: true; id: centralCompositeDesign }
RadioButton { name: "boxBehnkenDesign"; label: qsTr("Box-Behnken Design"); }
RadioButton { name: "centralCompositeDesign"; label: qsTr("Central composite design"); checked: true; id: centralCompositeDesign }
RadioButton { name: "boxBehnkenDesign"; label: qsTr("Box-Behnken design"); }

}

Expand Down Expand Up @@ -344,7 +344,7 @@ Form
RadioButtonGroup
{
name: "centerPointType"
title: qsTr("Center Points")
title: qsTr("Center points")

RadioButton { name: "default"; label: qsTr("Default"); checked: true }
RadioButton { name: "custom"; label: qsTr("Custom");
Expand Down

0 comments on commit 9b0bfd1

Please sign in to comment.