asker-tool 2.1.7 → 2.2.3
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.
- checksums.yaml +4 -4
- data/{LICENSE.txt → LICENSE} +0 -0
- data/README.md +14 -15
- data/bin/asker +1 -1
- data/lib/asker/ai/ai.rb +6 -3
- data/lib/asker/ai/ai_calculate.rb +20 -6
- data/lib/asker/ai/concept_ai.rb +12 -3
- data/lib/asker/ai/question.rb +28 -6
- data/lib/asker/ai/stages/base_stage.rb +45 -6
- data/lib/asker/ai/stages/stage_b.rb +90 -49
- data/lib/asker/ai/stages/stage_d.rb +69 -90
- data/lib/asker/ai/stages/stage_f.rb +47 -38
- data/lib/asker/ai/stages/stage_i.rb +79 -92
- data/lib/asker/ai/stages/stage_s.rb +41 -36
- data/lib/asker/ai/stages/stage_t.rb +114 -73
- data/lib/asker/application.rb +7 -16
- data/lib/asker/check_input/check_haml_data.rb +264 -0
- data/lib/asker/check_input/check_table.rb +104 -0
- data/lib/asker/check_input.rb +51 -0
- data/lib/asker/cli.rb +47 -44
- data/lib/asker/data/code.rb +5 -16
- data/lib/asker/data/concept.rb +71 -24
- data/lib/asker/data/project_data.rb +63 -0
- data/lib/asker/data/table.rb +2 -0
- data/lib/asker/data/template.rb +3 -1
- data/lib/asker/data/world.rb +8 -16
- data/lib/asker/displayer/code_displayer.rb +7 -0
- data/lib/asker/displayer/concept_ai_displayer.erb +10 -0
- data/lib/asker/displayer/concept_ai_displayer.rb +24 -22
- data/lib/asker/displayer/concept_displayer.rb +9 -4
- data/lib/asker/displayer/stats_displayer.rb +8 -0
- data/lib/asker/exporter/concept_ai_gift_exporter.rb +7 -11
- data/lib/asker/exporter/concept_ai_moodle_exporter.rb +45 -0
- data/lib/asker/exporter/concept_ai_yaml_exporter.rb +6 -3
- data/lib/asker/exporter/concept_doc_exporter.rb +12 -2
- data/lib/asker/exporter/data_gift_exporter.rb +31 -0
- data/lib/asker/exporter/output_file_exporter.rb +9 -6
- data/lib/asker/files/{config.ini → asker.ini} +14 -4
- data/lib/asker/files/language/du/connectors.yaml +81 -0
- data/lib/asker/files/language/du/mistakes.yaml +82 -0
- data/lib/asker/files/language/du/templates.yaml +28 -49
- data/lib/asker/files/language/en/templates.yaml +19 -19
- data/lib/asker/files/language/es/mistakes.yaml +9 -7
- data/lib/asker/files/language/es/templates.yaml +19 -19
- data/lib/asker/files/language/fr/connectors.yaml +68 -84
- data/lib/asker/files/language/fr/templates.yaml +22 -22
- data/lib/asker/formatter/concept_doc_formatter.rb +0 -4
- data/lib/asker/formatter/concept_string_formatter.rb +7 -4
- data/lib/asker/formatter/moodle/matching.erb +38 -0
- data/lib/asker/formatter/moodle/multichoice.erb +49 -0
- data/lib/asker/formatter/moodle/shortanswer.erb +30 -0
- data/lib/asker/formatter/moodle/truefalse.erb +47 -0
- data/lib/asker/formatter/question_gift_formatter.rb +21 -19
- data/lib/asker/formatter/question_moodle_formatter.rb +27 -0
- data/lib/asker/lang/lang_factory.rb +7 -1
- data/lib/asker/loader/code_loader.rb +1 -1
- data/lib/asker/loader/content_loader.rb +12 -14
- data/lib/asker/loader/directory_loader.rb +1 -8
- data/lib/asker/loader/embedded_file.rb +42 -0
- data/lib/asker/loader/file_loader.rb +1 -6
- data/lib/asker/loader/haml_loader.rb +9 -5
- data/lib/asker/loader/image_url_loader.rb +8 -9
- data/lib/asker/loader/input_loader.rb +5 -6
- data/lib/asker/loader/project_loader.rb +18 -10
- data/lib/asker/logger.rb +36 -9
- data/lib/asker/skeleton.rb +3 -2
- data/lib/asker/version.rb +9 -0
- data/lib/asker.rb +72 -43
- metadata +60 -18
- data/lib/asker/checker.rb +0 -455
- data/lib/asker/project.rb +0 -146
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'concept_ai_gift_exporter'
|
4
|
+
require_relative 'code_gift_exporter'
|
5
|
+
require_relative '../version'
|
6
|
+
require_relative '../application'
|
7
|
+
|
8
|
+
# Export Data (ConceptIA and Code) to gift to outputfile
|
9
|
+
module DataGiftExporter
|
10
|
+
##
|
11
|
+
# Export an array of Data (ConceptAI and Code objects) into GIFT outpufile
|
12
|
+
# @param data (Hash)
|
13
|
+
# @param project (Project)
|
14
|
+
def self.export_all(data, project)
|
15
|
+
file = File.open(project.get(:outputpath), 'w')
|
16
|
+
file.write('// ' + ('=' * 50) + "\n")
|
17
|
+
file.write("// Created by : #{Version::NAME}")
|
18
|
+
file.write(" (version #{Version::VERSION})\n")
|
19
|
+
file.write("// File : #{project.get(:outputname)}\n")
|
20
|
+
file.write("// Time : #{Time.new}\n")
|
21
|
+
file.write("// Author : David Vargas Ruiz\n")
|
22
|
+
file.write('// ' + ('=' * 50) + "\n\n")
|
23
|
+
category = Application.instance.config['questions']['category']
|
24
|
+
file.write("$CATEGORY: $course$/#{category}\n") unless category.nil?
|
25
|
+
|
26
|
+
ConceptAIGiftExporter.export_all(data[:concepts_ai], file)
|
27
|
+
CodeGiftExporter.export_all(data[:codes_ai], file)
|
28
|
+
|
29
|
+
file.close
|
30
|
+
end
|
31
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require_relative '
|
2
|
-
require_relative 'code_gift_exporter'
|
1
|
+
require_relative 'concept_ai_moodle_exporter'
|
3
2
|
require_relative 'concept_ai_yaml_exporter'
|
4
3
|
require_relative 'concept_doc_exporter'
|
4
|
+
require_relative 'data_gift_exporter'
|
5
5
|
|
6
6
|
# Export Output data:
|
7
7
|
# * Gift (ConceptAI, Code)
|
@@ -9,10 +9,13 @@ require_relative 'concept_doc_exporter'
|
|
9
9
|
# * Doc (txt)
|
10
10
|
module OutputFileExporter
|
11
11
|
def self.export(data, project)
|
12
|
-
|
12
|
+
config = Application.instance.config
|
13
|
+
DataGiftExporter.export_all(data, project) if config['output']['gift'] == 'yes'
|
14
|
+
ConceptAIYAMLExporter.export_all(data[:concepts_ai], project) if config['output']['yaml'] == 'yes'
|
15
|
+
ConceptDocExporter.export_all(data[:concepts], project) if config['output']['doc'] == 'yes'
|
16
|
+
# ConceptAIGiftExporter.export_all(data[:concepts_ai], project) if config['output']['gift'] == 'yes'
|
17
|
+
# CodeGiftExporter.export_all(data[:codes_ai], project.get(:outputfile)) if config['output']['gift'] == 'yes'
|
13
18
|
# UNDER DEVELOPMENT
|
14
|
-
|
15
|
-
ConceptAIYAMLExporter.export_all(data[:concepts_ai], project)
|
16
|
-
ConceptDocExporter.export_all(data[:concepts], project.get(:lessonfile))
|
19
|
+
ConceptAIMoodleExporter.export_all(data[:concepts_ai], project) if config['output']['moodle'] == 'yes'
|
17
20
|
end
|
18
21
|
end
|
@@ -1,10 +1,7 @@
|
|
1
1
|
[global]
|
2
2
|
; Connect Google and download find images URLs
|
3
3
|
; Accept yes|no
|
4
|
-
internet =
|
5
|
-
|
6
|
-
; Output files will be save into output folder.
|
7
|
-
outputdir = output
|
4
|
+
internet = yes
|
8
5
|
|
9
6
|
; Display on screen messages about program progress
|
10
7
|
; Accept yes|no
|
@@ -14,6 +11,17 @@ color = yes
|
|
14
11
|
; Accept resume|default
|
15
12
|
show_mode = default
|
16
13
|
|
14
|
+
[output]
|
15
|
+
; Output files will be save into output folder.
|
16
|
+
folder = output
|
17
|
+
|
18
|
+
; List of output files
|
19
|
+
; Accept yes|no
|
20
|
+
gift = yes
|
21
|
+
doc = yes
|
22
|
+
yaml = yes
|
23
|
+
moodle = yes
|
24
|
+
|
17
25
|
[languages]
|
18
26
|
; Default code language
|
19
27
|
default = en
|
@@ -22,6 +30,8 @@ default = en
|
|
22
30
|
; Accept yes|no
|
23
31
|
en = yes
|
24
32
|
es = yes
|
33
|
+
fr = yes
|
34
|
+
du = yes
|
25
35
|
javascript = yes
|
26
36
|
math = no
|
27
37
|
python = yes
|
@@ -0,0 +1,81 @@
|
|
1
|
+
---
|
2
|
+
- '[*]'
|
3
|
+
- zu
|
4
|
+
- Wildleder
|
5
|
+
- niedrig
|
6
|
+
- jeden
|
7
|
+
- wie
|
8
|
+
- Wie
|
9
|
+
- mit
|
10
|
+
- gegen
|
11
|
+
- wann
|
12
|
+
- wie viel
|
13
|
+
- welcher
|
14
|
+
- von
|
15
|
+
- des
|
16
|
+
- schon
|
17
|
+
- seit
|
18
|
+
- e
|
19
|
+
- im
|
20
|
+
- zwischen
|
21
|
+
- er
|
22
|
+
- er
|
23
|
+
- sie
|
24
|
+
- Sie
|
25
|
+
- es
|
26
|
+
- ist
|
27
|
+
- Das
|
28
|
+
- Das
|
29
|
+
- jene
|
30
|
+
- Osten
|
31
|
+
- Dies
|
32
|
+
- ist
|
33
|
+
- diese
|
34
|
+
- Richtung
|
35
|
+
- bis
|
36
|
+
- um
|
37
|
+
- das
|
38
|
+
- was
|
39
|
+
- ihm
|
40
|
+
- Sie
|
41
|
+
- Mehr
|
42
|
+
- Plus
|
43
|
+
- mich
|
44
|
+
- ICH
|
45
|
+
- sehr
|
46
|
+
- Viele
|
47
|
+
- viel
|
48
|
+
- Nein
|
49
|
+
- wir
|
50
|
+
- USA
|
51
|
+
- oder
|
52
|
+
- zum
|
53
|
+
- aber
|
54
|
+
- durch
|
55
|
+
- Warum
|
56
|
+
- als
|
57
|
+
- WHO
|
58
|
+
- Ja
|
59
|
+
- ohne
|
60
|
+
- auf
|
61
|
+
- alles
|
62
|
+
- jeder
|
63
|
+
- nach dem
|
64
|
+
- Sie
|
65
|
+
- Ich
|
66
|
+
- weiß
|
67
|
+
- ihr
|
68
|
+
- deine
|
69
|
+
- Besitzen
|
70
|
+
- Bergwerk
|
71
|
+
- oder
|
72
|
+
- ein
|
73
|
+
- einer
|
74
|
+
- etwas
|
75
|
+
- ein
|
76
|
+
- Nagel
|
77
|
+
- Sie
|
78
|
+
- deine
|
79
|
+
- unsere
|
80
|
+
- und
|
81
|
+
- mich
|
@@ -0,0 +1,82 @@
|
|
1
|
+
---
|
2
|
+
:a: 'á,e,o,ha'
|
3
|
+
:"a ": 'as '
|
4
|
+
:"as ": 'a ,os '
|
5
|
+
:á: 'a,é,há'
|
6
|
+
:al: 'ar,la'
|
7
|
+
:ar: 'al'
|
8
|
+
:b: 'v'
|
9
|
+
:c: 's,k'
|
10
|
+
:ca: 'ka'
|
11
|
+
:ce: 'se,que'
|
12
|
+
:ci: 'si,qui'
|
13
|
+
:co: 'ko'
|
14
|
+
:cu: 'ku,qu'
|
15
|
+
:e: 'é,a,he'
|
16
|
+
:é: 'e,hé'
|
17
|
+
:el: 'er'
|
18
|
+
:er: 'el'
|
19
|
+
:g: 'j'
|
20
|
+
:h: ' ,n'
|
21
|
+
:ha: 'a'
|
22
|
+
:he: 'e'
|
23
|
+
:hi: 'i'
|
24
|
+
:ho: 'o'
|
25
|
+
:hu: 'u'
|
26
|
+
:i: 'y,l'
|
27
|
+
:í: 'i,y'
|
28
|
+
:j: 'g'
|
29
|
+
:k: 'q'
|
30
|
+
:l: 'r'
|
31
|
+
:lla: 'ya'
|
32
|
+
:lle: 'ye'
|
33
|
+
:lli: 'yi'
|
34
|
+
:llo: 'yo'
|
35
|
+
:llu: 'yu'
|
36
|
+
:n: 'm,ñ'
|
37
|
+
:ñ: 'n'
|
38
|
+
:m: 'n'
|
39
|
+
:mb: 'nb'
|
40
|
+
:mp: 'np'
|
41
|
+
:o: 'ó,e'
|
42
|
+
:"o ": 'os '
|
43
|
+
:ó: 'o'
|
44
|
+
:ol: 'or'
|
45
|
+
:or: 'ol'
|
46
|
+
:os : 'o ,as '
|
47
|
+
:oha: 'oa'
|
48
|
+
:p: 'q,o'
|
49
|
+
:que: 'ke'
|
50
|
+
:qui: 'ki'
|
51
|
+
:s: 'z,a'
|
52
|
+
:sa: 'za'
|
53
|
+
:se: 'ce,ze'
|
54
|
+
:si: 'ci,zi'
|
55
|
+
:so: 'zo'
|
56
|
+
:su: 'zu'
|
57
|
+
:st: 'ts'
|
58
|
+
:t: 'f,p'
|
59
|
+
:u: 'ú'
|
60
|
+
:ú: 'u'
|
61
|
+
:ul: 'ur'
|
62
|
+
:ur: 'ul'
|
63
|
+
:v: 'b,w'
|
64
|
+
:w: 'v, gu'
|
65
|
+
:wa: 'gua'
|
66
|
+
:we: 'gue'
|
67
|
+
:wi: 'gui'
|
68
|
+
:wo: 'guo'
|
69
|
+
:x: 'ks,k,s'
|
70
|
+
:y: 'i,v'
|
71
|
+
:" y ": ' e '
|
72
|
+
:ya: 'lla'
|
73
|
+
:ye: 'lle'
|
74
|
+
:yi: 'lli'
|
75
|
+
:yo: 'llo'
|
76
|
+
:yu: 'llu'
|
77
|
+
:z: 's'
|
78
|
+
:za: 'sa'
|
79
|
+
:ze: 'se'
|
80
|
+
:zi: 'si'
|
81
|
+
:zo: 'so'
|
82
|
+
:zu: 'su'
|
@@ -1,50 +1,29 @@
|
|
1
1
|
---
|
2
|
-
:none:
|
3
|
-
:error: Fehler
|
4
|
-
:misspelling: Rechtschreibfehler
|
5
|
-
:true: richtig
|
6
|
-
:false: falsch
|
7
|
-
:d1: 'Bedeutung
|
8
|
-
:d2: 'Bedeutung des Begriffs <b><%=text1%></b
|
9
|
-
:d3: 'Bedeutung des Begriffs <b><%=text1%></b
|
10
|
-
:d4: 'Bedeutung des Begriffs <b><%=text1%></b
|
11
|
-
|
12
|
-
:
|
13
|
-
:
|
14
|
-
:
|
15
|
-
:
|
16
|
-
:
|
17
|
-
:
|
18
|
-
:
|
19
|
-
:
|
20
|
-
:
|
21
|
-
:
|
22
|
-
:
|
23
|
-
:
|
24
|
-
:
|
25
|
-
:
|
26
|
-
:
|
27
|
-
:
|
28
|
-
:
|
29
|
-
:
|
30
|
-
:code1: '<pre><%=text1%></pre><br/><p>Escribir el número de línea donde está el primer error. Escribir 0 si no hay ningún error.</p>'
|
31
|
-
|
32
|
-
B1: In Bezug auf den Begriff (+++++), verbinden Sie die passenden Begriffe.
|
33
|
-
F1: Die folgenden Elemente sind (+++++) des Begriffs (++++)
|
34
|
-
F2: Die folgenden Elemente sind (+++++) Wählen Sie die Antwortmöglichkeit aus, die nicht zum Begriff (++++) passt
|
35
|
-
F3: Die folgenden Elemente sind (+++++) des Begriffs (++++) (Setzen Sie die Wörter in die Lücken ein)
|
36
|
-
I1: Wählen Sie die Antwortmöglichkeit, die am besten zu dem gezeigten Bild passt.
|
37
|
-
I2: Das gezeigte Bild gehört zu (++++)
|
38
|
-
I3: Setzen Sie die Antwort ein (+++), die am besten zu dem gezeigten Bild passt.
|
39
|
-
I4: Bedeutung (Setzen Sie die Wörter in die Lücken ein)
|
40
|
-
S1: Beziehen Sie sich auf den Begriff (+++++) und ordnen Sie die richtigen Lösungen zu.
|
41
|
-
T1: Begriff / Wählen Sie die richtige Lösung aus.
|
42
|
-
T2: Begriff / Wählen Sie die richtige Lösung aus.
|
43
|
-
T3: Begriff / Wählen Sie die richtige Lösung aus.
|
44
|
-
T4: Begriff / Wählen Sie die richtige Lösung aus.
|
45
|
-
T5: Begriff / Die Lösung ist richtig
|
46
|
-
T6: Begriff / Die Lösung ist richtig
|
47
|
-
T7: Begriff / Die Lösung ist richtig
|
48
|
-
T8: Begriff / Vervollständigen Sie / Schreiben Sie einen Begriff
|
49
|
-
T9: Begriff / Verbinden Sie / Schreiben Sie fogende Begriffe
|
50
|
-
Code1: Nennen Sie die Nummer der Zeile, in der sich der erste Fehler befindet / Wenn es keinen Fehler gibt, setzen Sie 0 ein.
|
2
|
+
:none: 'keine Antwort ist richtig'
|
3
|
+
:error: 'Fehler'
|
4
|
+
:misspelling: 'Rechtschreibfehler'
|
5
|
+
:true: 'richtig'
|
6
|
+
:false: 'falsch'
|
7
|
+
:d1: 'Bedeutung: <i><%=text1%></i><br/> Wählen Sie die dazu passende Option aus, die am besten zu der vorstehenden Bedeutung passt.<br/>'
|
8
|
+
:d2: 'Bedeutung des Begriffs <b><%=text1%></b>:<br/> <i><%=text2%></i><br/>'
|
9
|
+
:d3: 'Bedeutung des Begriffs <b><%=text1%></b>:<br/> <i><%=text2%></i><br/></br><p>Bemerkung: Ein Fragezeichnen stellt einen Buchstaben dar, und ein Sternchen steht für ein Wort oder mehrere Wörter.</p>'
|
10
|
+
:d4: 'Bedeutung des Begriffs <b><%=text1%></b>:<br/> <i><%=text2%></i><br/><br/>(Setzen Sie die Wörter in die Lücken ein)'
|
11
|
+
:b1: 'In Bezug auf den Begriff <b><%=text1%></b>, verbinden Sie "<%=text2%>" die passenden Begriffe "<%=text3%>".<br/>'
|
12
|
+
:f1: 'Die folgenden Elemente sind "<%=text2%>" des Begriffs <b><%=text1%></b>:<ul><li><%=text3%></li></ul>'
|
13
|
+
:f2: 'Die folgenden Elemente sind "<%=text2%>".<br/>Wählen Sie die Antwortmöglichkeit aus, die nicht zum Begriff <b><%=text1%></b> passt.'
|
14
|
+
:f3: 'Die folgenden Elemente sind "<%=text2%>" des Begriffs <b><%=text1%></b>:<br><p><%=text3%></p>(Setzen Sie die Wörter in die Lücken ein)'
|
15
|
+
:i1: '<%=text1%><br/>EWählen Sie die Antwortmöglichkeit, die am besten zu dem gezeigten Bild passt.<br/>'
|
16
|
+
:i2: '<%=text1%><br/>Das gezeigte Bild gehört zu <b><%=text2%></b>.'
|
17
|
+
:i3: '<%=text1%><br/>Setzen Sie die Antwort ein <%=text2%>, qdie am besten zu dem gezeigten Bild passt.<br/>'
|
18
|
+
:i4: '<%=text1%><br/>Bedeutung: <i><%=text2%></i><br/><br/>(Setzen Sie die Wörter in die Lücken ein)'
|
19
|
+
:s1: 'Beziehen Sie sich auf den Begriff <b><%=text1%></b>, und ordnen Sie die "<%=text2%>" richtigen Lösungen zu "<%=text3%>".<br/>'
|
20
|
+
:t1table: 'Begriff <b><%=text1%></b><br/><%=text2%>: [*]<br/><%=text3%>: "<%=text4%>"<br/>Wählen Sie die richtige Lösung aus.<br/>'
|
21
|
+
:t2table: 'Begriff <b><%=text1%></b><br/><%=text2%>: [*]<br/><%=text3%>: "<%=text4%>"<br/>EWählen Sie die richtige Lösung aus.<br/>'
|
22
|
+
:t3table: 'Begriff <b><%=text1%></b><br/><%=text2%>: "<%=text3%>"<br/><%=text4%>: [*]<br/>Wählen Sie die richtige Lösung aus.<br/>'
|
23
|
+
:t4table: 'Begriff <b><%=text1%></b><br/><%=text2%>: "<%=text3%>"<br/><%=text4%>: [*]<br/>EWählen Sie die richtige Lösung aus.<br/>'
|
24
|
+
:t5table: 'Begriff <b><%=text1%></b><br/>Die Lösung ist richtig:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
25
|
+
:t6table: 'Begriff <b><%=text1%></b><br/>Die Lösung ist richtig:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
26
|
+
:t7table: 'Begriff <b><%=text1%></b><br/>Die Lösung ist richtig:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
27
|
+
:t8table: 'Begriff <b><%=text1%></b><br/>Vervollständigen Sie / Schreiben Sie einen Begriff:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: [*]</li></ul>Escribir una palabra.<br/>'
|
28
|
+
:t9table: 'Begriff <b><%=text1%></b><br/>Verbinden Sie / Schreiben Sie fogende Begriffe:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: <%=text5%></li></ul>Escribir <%=text6%> palabras.<br/>'
|
29
|
+
:code1: '<pre><%=text1%></pre><br/><p>Nennen Sie die Nummer der Zeile, in der sich der erste Fehler befindet / Wenn es keinen Fehler gibt, setzen Sie 0 ein.</p>'
|
@@ -4,26 +4,26 @@
|
|
4
4
|
:misspelling: 'Misspelling'
|
5
5
|
:true: 'True'
|
6
6
|
:false: 'False'
|
7
|
-
:d1: 'Definition
|
8
|
-
:d2: 'Definition of <b><%=text1%></b
|
9
|
-
:d3: 'Definition of <b><%=text1%></b
|
10
|
-
:d4: 'Definition of <b><%=text1%></b
|
7
|
+
:d1: 'Definition: <i><%=text1%></i><br/>Choose the best association for the previous definition.<br/>'
|
8
|
+
:d2: 'Definition of <b><%=text1%></b>:<br/> <i><%=text2%></i><br/>'
|
9
|
+
:d3: 'Definition of <b><%=text1%></b>:<br/> <i><%=text2%></i><br/><p>Note: Every ? symbol represents one letter, and * severals.</p>'
|
10
|
+
:d4: 'Definition of <b><%=text1%></b>:<br/> <i><%=text2%></i><br/><br/>(Put every word into the right position)'
|
11
11
|
:b1: 'Related with concept <b><%=text1%></b>, associate every "<%=text2%>" with their "<%=text3%>".<br/>'
|
12
|
-
:f1: 'The next items are "<%=text2%>" from <b><%=text1%></b> concept
|
12
|
+
:f1: 'The next items are "<%=text2%>" from <b><%=text1%></b> concept:<br/><ul><li><%=text3%></li></ul>'
|
13
13
|
:f2: 'The next items are "<%=text2%>".<br/>Choose the option that not belongs concept <b><%=text1%></b>.'
|
14
|
-
:f3: 'The next items are "
|
15
|
-
:i1: '
|
16
|
-
:i2: '
|
17
|
-
:i3: '
|
18
|
-
:i4: '
|
14
|
+
:f3: 'The next items are "<%=text2%>" from <b><%=text1%></b> concept:<br><p><%=text3%></p>(Put every word into the right position)'
|
15
|
+
:i1: '<%=text1%><br/>Choose the best association for the previous image.<br/>'
|
16
|
+
:i2: '<%=text1%><br/>The previous image/text corresponds to <b><%=text2%></b>.'
|
17
|
+
:i3: '<%=text1%><br/>Write the best answer <%=text2%>, for the previous image.<br/>'
|
18
|
+
:i4: '<%=text1%><br/>Definition:<br/> <i><%=text2%></i><br/><br/>(Put every word in the right text position)'
|
19
19
|
:s1: "About <b><%=text1%></b> concept, sort every \"<%=text2%>\", so It is true that \"<%=text3%>\".<br/>"
|
20
|
-
:t1table: '<b>Concept <%=text1%></b><br/><%=text2
|
21
|
-
:t2table: '<b>Concept <%=text1%></b><br/><%=text2
|
22
|
-
:t3table: '<b>Concept <%=text1%></b><br/><%=text2
|
23
|
-
:t4table: '<b>Concept <%=text1%></b><br/><%=text2
|
24
|
-
:t5table: '<b>Concept <%=text1%></b><br/>The next association is right
|
25
|
-
:t6table: '<b>Concept <%=text1%></b><br/>The next association is right
|
26
|
-
:t7table: '<b>Concept <%=text1%></b><br/>The next association is right
|
27
|
-
:t8table: '<b>Concept <%=text1%></b><br/>Complete the next association
|
28
|
-
:t9table: '<b>Concept <%=text1%></b><br/>Complete the next association
|
20
|
+
:t1table: '<b>Concept <%=text1%></b><br/><%=text2%>: [*]<br/><%=text3%>: "<%=text4%>"<br/>Choose the right answer.<br/>'
|
21
|
+
:t2table: '<b>Concept <%=text1%></b><br/><%=text2%>: [*]<br/><%=text3%>: "<%=text4%>"<br/>Choose the right answer.<br/>'
|
22
|
+
:t3table: '<b>Concept <%=text1%></b><br/><%=text2%>: "<%=text3%>"<br/><%=text4%>: [*]<br/>Choose the right answer.<br/>'
|
23
|
+
:t4table: '<b>Concept <%=text1%></b><br/><%=text2%>: "<%=text3%>"<br/><%=text4%>: [*]<br/>Choose the right answer.<br/>'
|
24
|
+
:t5table: '<b>Concept <%=text1%></b><br/>The next association is right:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
25
|
+
:t6table: '<b>Concept <%=text1%></b><br/>The next association is right:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
26
|
+
:t7table: '<b>Concept <%=text1%></b><br/>The next association is right:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
27
|
+
:t8table: '<b>Concept <%=text1%></b><br/>Complete the next association:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: [*]</li></ul>Write only one word.<br/>'
|
28
|
+
:t9table: '<b>Concept <%=text1%></b><br/>Complete the next association:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: <%=text5%></li></ul>Write <%=text6%> words.<br/>'
|
29
29
|
:code1: '<pre><%=text1%></pre><br/><p>Write the number of the first wrong line. Write 0 if there is no fail.</p>'
|
@@ -12,21 +12,23 @@
|
|
12
12
|
:ci: 'si,qui'
|
13
13
|
:co: 'ko'
|
14
14
|
:cu: 'ku,qu'
|
15
|
-
:e: '
|
16
|
-
|
17
|
-
|
18
|
-
:
|
15
|
+
:e: 'é'
|
16
|
+
:" e": 'he'
|
17
|
+
:é: 'e'
|
18
|
+
:" é": 'hé'
|
19
|
+
:"el ": 'er '
|
20
|
+
:"er ": 'el '
|
19
21
|
:g: 'j'
|
20
|
-
:h: '
|
22
|
+
:h: ' '
|
21
23
|
:ha: 'a'
|
22
24
|
:he: 'e'
|
23
25
|
:hi: 'i'
|
24
26
|
:ho: 'o'
|
25
27
|
:hu: 'u'
|
26
|
-
:i: '
|
28
|
+
:i: 'y'
|
27
29
|
:í: 'i,y'
|
28
30
|
:j: 'g'
|
29
|
-
:k: 'q'
|
31
|
+
:k: 'q,c'
|
30
32
|
:l: 'r'
|
31
33
|
:lla: 'ya'
|
32
34
|
:lle: 'ye'
|
@@ -4,26 +4,26 @@
|
|
4
4
|
:misspelling: 'Error ortográfico'
|
5
5
|
:true: 'Verdadero'
|
6
6
|
:false: 'Falso'
|
7
|
-
:d1: 'Definición
|
8
|
-
:d2: 'Definición de <b><%=text1%></b
|
9
|
-
:d3: 'Definición de <b><%=text1%></b
|
10
|
-
:d4: 'Definición de <b><%=text1%></b
|
7
|
+
:d1: 'Definición: <i><%=text1%></i><br/>Elige la opción que mejor se corresponda con la definición anterior.<br/>'
|
8
|
+
:d2: 'Definición de <b><%=text1%></b>:<br/> <i><%=text2%></i><br/>'
|
9
|
+
:d3: 'Definición de <b><%=text1%></b>:<br/> <i><%=text2%></i><br/></br><p>Nota: Cada símbolo ? representa una letra, y * a una o varias palabras.</p>'
|
10
|
+
:d4: 'Definición de <b><%=text1%></b>:<br/> <i><%=text2%></i><br/><br/>(Coloca cada palabra en su posición correcta dentro del texto)'
|
11
11
|
:b1: 'En relación al concepto <b><%=text1%></b>, asocia cada "<%=text2%>" con su "<%=text3%>".<br/>'
|
12
|
-
:f1: 'Los siguientes elementos son "<%=text2%>" del concepto <b><%=text1%></b
|
12
|
+
:f1: 'Los siguientes elementos son "<%=text2%>" del concepto <b><%=text1%></b>:<ul><li><%=text3%></li></ul>'
|
13
13
|
:f2: 'Los siguientes elementos son "<%=text2%>".<br/>Selecciona la opción que no pertenezca al concepto <b><%=text1%></b>.'
|
14
|
-
:f3: 'Los siguientes elementos son "<%=text2%>" del concepto <b><%=text1%></b
|
15
|
-
:i1: '
|
16
|
-
:i2: '
|
17
|
-
:i3: '
|
18
|
-
:i4: '
|
14
|
+
:f3: 'Los siguientes elementos son "<%=text2%>" del concepto <b><%=text1%></b>:<br><p><%=text3%></p>(Coloca cada palabra en su posición correcta dentro del texto)'
|
15
|
+
:i1: '<%=text1%><br/>Elige la opción que mejor se corresponda con la imagen anterior.<br/>'
|
16
|
+
:i2: '<%=text1%><br/>La imagen/texto anterior corresponde a <b><%=text2%></b>.'
|
17
|
+
:i3: '<%=text1%><br/>Escribe la opción <%=text2%>, que mejor corresponda con la imagen anterior.<br/>'
|
18
|
+
:i4: '<%=text1%><br/>Definición: <i><%=text2%></i><br/><br/>(Coloca cada palabra en su posición correcta dentro del texto)'
|
19
19
|
:s1: 'En relación al concepto <b><%=text1%></b>, ordena cada/las/los "<%=text2%>" de modo que se cumpla el criterio "<%=text3%>".<br/>'
|
20
|
-
:t1table: 'Concepto <b><%=text1%></b><br/><%=text2
|
21
|
-
:t2table: 'Concepto <b><%=text1%></b><br/><%=text2
|
22
|
-
:t3table: 'Concepto <b><%=text1%></b><br/><%=text2
|
23
|
-
:t4table: 'Concepto <b><%=text1%></b><br/><%=text2
|
24
|
-
:t5table: 'Concepto <b><%=text1%></b><br/>La asociación siguiente es correcta
|
25
|
-
:t6table: 'Concepto <b><%=text1%></b><br/>La asociación siguiente es correcta
|
26
|
-
:t7table: 'Concepto <b><%=text1%></b><br/>La asociación siguiente es correcta
|
27
|
-
:t8table: 'Concepto <b><%=text1%></b><br/>Completa la siguiente asociación
|
28
|
-
:t9table: 'Concepto <b><%=text1%></b><br/>Completa la siguiente asociación
|
20
|
+
:t1table: 'Concepto <b><%=text1%></b><br/><%=text2%>: [*]<br/><%=text3%>: "<%=text4%>"<br/>Elige la opción correcta.<br/>'
|
21
|
+
:t2table: 'Concepto <b><%=text1%></b><br/><%=text2%>: [*]<br/><%=text3%>: "<%=text4%>"<br/>Elige la opción correcta.<br/>'
|
22
|
+
:t3table: 'Concepto <b><%=text1%></b><br/><%=text2%>: "<%=text3%>"<br/><%=text4%>: [*]<br/>Elige la opción correcta.<br/>'
|
23
|
+
:t4table: 'Concepto <b><%=text1%></b><br/><%=text2%>: "<%=text3%>"<br/><%=text4%>: [*]<br/>Elige la opción correcta.<br/>'
|
24
|
+
:t5table: 'Concepto <b><%=text1%></b><br/>La asociación siguiente es correcta:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
25
|
+
:t6table: 'Concepto <b><%=text1%></b><br/>La asociación siguiente es correcta:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
26
|
+
:t7table: 'Concepto <b><%=text1%></b><br/>La asociación siguiente es correcta:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: "<%=text5%>"</li></ul>'
|
27
|
+
:t8table: 'Concepto <b><%=text1%></b><br/>Completa la siguiente asociación:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: [*]</li></ul>Escribir una palabra.<br/>'
|
28
|
+
:t9table: 'Concepto <b><%=text1%></b><br/>Completa la siguiente asociación:<br/><ul><li><%=text2%>: "<%=text3%>"</li><li><%=text4%>: <%=text5%></li></ul>Escribir <%=text6%> palabras.<br/>'
|
29
29
|
:code1: '<pre><%=text1%></pre><br/><p>Escribir el número de línea donde está el primer error. Escribir 0 si no hay ningún error.</p>'
|