@pie-element/math-templated 3.7.3-next.6 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/configure/CHANGELOG.md +17 -0
- package/configure/package.json +2 -2
- package/controller/CHANGELOG.md +18 -0
- package/controller/package.json +3 -3
- package/module/configure.js +133 -101
- package/module/controller.js +26 -8
- package/module/element.js +3187 -3018
- package/module/manifest.json +2 -2
- package/module/print.js +3187 -3018
- package/package.json +3 -3
package/module/controller.js
CHANGED
|
@@ -3815,8 +3815,16 @@ var _default = {
|
|
|
3815
3815
|
},
|
|
3816
3816
|
charting: {
|
|
3817
3817
|
addCategory: 'Add category',
|
|
3818
|
+
actions: 'Actions',
|
|
3819
|
+
add: 'Add',
|
|
3820
|
+
"delete": 'Delete',
|
|
3818
3821
|
newLabel: 'New label',
|
|
3819
|
-
reachedLimit_other: "There can't be more than {{count}} categories."
|
|
3822
|
+
reachedLimit_other: "There can't be more than {{count}} categories.",
|
|
3823
|
+
keyLegend: {
|
|
3824
|
+
incorrectAnswer: 'Student incorrect answer',
|
|
3825
|
+
correctAnswer: 'Student correct answer',
|
|
3826
|
+
correctKeyAnswer: 'Answer key correct'
|
|
3827
|
+
}
|
|
3820
3828
|
},
|
|
3821
3829
|
graphing: {
|
|
3822
3830
|
point: 'Point',
|
|
@@ -3845,9 +3853,10 @@ var _default = {
|
|
|
3845
3853
|
minmaxSelections_range: 'Select between {{minSelections}} and {{maxSelections}}.'
|
|
3846
3854
|
},
|
|
3847
3855
|
selectText: {
|
|
3848
|
-
correctAnswerSelected: 'Correct
|
|
3849
|
-
correctAnswerNotSelected: 'Correct
|
|
3850
|
-
incorrectSelection: 'Incorrect
|
|
3856
|
+
correctAnswerSelected: 'Correct',
|
|
3857
|
+
correctAnswerNotSelected: 'Correct Answer Not Selected',
|
|
3858
|
+
incorrectSelection: 'Incorrect Selection',
|
|
3859
|
+
key: 'Key'
|
|
3851
3860
|
}
|
|
3852
3861
|
},
|
|
3853
3862
|
common: {
|
|
@@ -3912,8 +3921,16 @@ var _default = {
|
|
|
3912
3921
|
},
|
|
3913
3922
|
charting: {
|
|
3914
3923
|
addCategory: 'Añadir categoría',
|
|
3924
|
+
actions: 'Acciones',
|
|
3925
|
+
add: 'Añadir',
|
|
3926
|
+
"delete": 'Eliminar',
|
|
3915
3927
|
newLabel: 'Nueva etiqueta',
|
|
3916
|
-
reachedLimit_other: 'No puede haber más de {{count}} categorías.'
|
|
3928
|
+
reachedLimit_other: 'No puede haber más de {{count}} categorías.',
|
|
3929
|
+
keyLegend: {
|
|
3930
|
+
incorrectAnswer: 'Respuesta incorrecta del estudiante',
|
|
3931
|
+
correctAnswer: 'Respuesta correcta del estudiante',
|
|
3932
|
+
correctKeyAnswer: 'Clave de respuesta correcta'
|
|
3933
|
+
}
|
|
3917
3934
|
},
|
|
3918
3935
|
graphing: {
|
|
3919
3936
|
point: 'Punto',
|
|
@@ -3942,9 +3959,10 @@ var _default = {
|
|
|
3942
3959
|
minmaxSelections_range: 'Seleccione entre {{minSelections}} y {{maxSelections}}.'
|
|
3943
3960
|
},
|
|
3944
3961
|
selectText: {
|
|
3945
|
-
correctAnswerSelected: 'Respuesta
|
|
3946
|
-
correctAnswerNotSelected: 'Respuesta
|
|
3947
|
-
incorrectSelection: 'Selección
|
|
3962
|
+
correctAnswerSelected: 'Respuesta Correcta',
|
|
3963
|
+
correctAnswerNotSelected: 'Respuesta Correcta No Seleccionada',
|
|
3964
|
+
incorrectSelection: 'Selección Incorrecta',
|
|
3965
|
+
key: 'Clave'
|
|
3948
3966
|
}
|
|
3949
3967
|
},
|
|
3950
3968
|
common: {
|