Skip to content

Commit 76f749b

Browse files
committed
Simplify Data.qml
1 parent 6fb74b9 commit 76f749b

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

inst/qml/Data.qml

+5-11
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ import JASP 1.0
2424
Form
2525
{
2626

27-
info: qsTr("This example shows how to load a dataset and perform a simple operation on it") // Used for populating the info tab
27+
info: qsTr("This example shows how to load a dataset and perform a simple operation on it. \
28+
Specifically, it concatenates the values of a column. \n
29+
e.g.: [1, 2, 3] -> '123'") // Used for populating the info tab
2830

2931
Text
3032
{
31-
text: qsTr("This example shows how to load a dataset and perform a simple operation on it")
33+
text: qsTr("This example shows how to load a dataset and perform a simple operation on it.")
3234
}
3335

3436
VariablesForm
@@ -38,15 +40,7 @@ Form
3840
AssignedVariablesList {
3941
name: "ts"
4042
label: qsTr("Times (t)")
41-
info: qsTr("This info entry adds documentation to the (i) icon in the analysis file. E.g., Specify variable containing the time.")
42-
singleVariable: true
43-
allowedColumns: ["scale"]
44-
}
45-
46-
AssignedVariablesList {
47-
name: "xs"
48-
label: qsTr("Positions (x)")
49-
info: qsTr("This info entry adds documentation to the (i) icon in the analysis file. E.g., Specify variable containing the positions.")
43+
info: qsTr("Vector representing times")
5044
singleVariable: true
5145
allowedColumns: ["scale"]
5246
}

0 commit comments

Comments
 (0)