refinerycms-registrations 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/app/assets/images/refinery/race_registrations/admin/chosen-sprite.png +0 -0
  2. data/app/assets/images/refinery/race_registrations/down_arrow.png +0 -0
  3. data/app/assets/images/refinery/race_registrations/up_arrow.png +0 -0
  4. data/app/assets/javascripts/refinery/race_registrations/admin/jquery.chosen.min.js +10 -0
  5. data/app/assets/javascripts/refinery/race_registrations/admin/race_registrations.js +53 -0
  6. data/app/assets/javascripts/refinery/race_registrations/race_registrations.js +41 -0
  7. data/app/assets/stylesheets/refinery/race_registrations/admin/chosen.css.scss +396 -0
  8. data/app/assets/stylesheets/refinery/race_registrations/admin/race_registrations.css.scss +13 -0
  9. data/app/assets/stylesheets/refinery/race_registrations/admin/sortable_table.css.scss +40 -0
  10. data/app/assets/stylesheets/refinery/race_registrations/race_registrations.css.scss +74 -0
  11. data/app/controllers/refinery/race_registrations/admin/categories_controller.rb +33 -0
  12. data/app/controllers/refinery/race_registrations/admin/groups_controller.rb +13 -0
  13. data/app/controllers/refinery/race_registrations/admin/people_controller.rb +89 -0
  14. data/app/controllers/refinery/race_registrations/admin/registrations_controller.rb +13 -0
  15. data/app/controllers/refinery/race_registrations/categories_controller.rb +17 -0
  16. data/app/controllers/refinery/race_registrations/people_controller.rb +36 -0
  17. data/app/controllers/refinery/race_registrations/registrations_controller.rb +40 -0
  18. data/app/helpers/refinery/race_registrations/admin/people_helper.rb +23 -0
  19. data/app/helpers/refinery/race_registrations/registrations_helper.rb +23 -0
  20. data/app/models/refinery/race_registrations/category.rb +17 -0
  21. data/app/models/refinery/race_registrations/group.rb +20 -0
  22. data/app/models/refinery/race_registrations/group_category.rb +8 -0
  23. data/app/models/refinery/race_registrations/person.rb +53 -0
  24. data/app/models/refinery/race_registrations/registration.rb +37 -0
  25. data/app/views/layouts/print.html.erb +14 -0
  26. data/app/views/refinery/pages/registration_list.html.erb +15 -0
  27. data/app/views/refinery/race_registrations/admin/_submenu.html.erb +77 -0
  28. data/app/views/refinery/race_registrations/admin/categories/_categories.html.erb +2 -0
  29. data/app/views/refinery/race_registrations/admin/categories/_category.html.erb +20 -0
  30. data/app/views/refinery/race_registrations/admin/categories/_form.html.erb +17 -0
  31. data/app/views/refinery/race_registrations/admin/categories/_records.html.erb +18 -0
  32. data/app/views/refinery/race_registrations/admin/categories/_sortable_list.html.erb +5 -0
  33. data/app/views/refinery/race_registrations/admin/categories/edit.html.erb +1 -0
  34. data/app/views/refinery/race_registrations/admin/categories/index.html.erb +5 -0
  35. data/app/views/refinery/race_registrations/admin/categories/new.html.erb +1 -0
  36. data/app/views/refinery/race_registrations/admin/groups/_form.html.erb +23 -0
  37. data/app/views/refinery/race_registrations/admin/groups/_group.html.erb +20 -0
  38. data/app/views/refinery/race_registrations/admin/groups/_groups.html.erb +2 -0
  39. data/app/views/refinery/race_registrations/admin/groups/_records.html.erb +18 -0
  40. data/app/views/refinery/race_registrations/admin/groups/_sortable_list.html.erb +5 -0
  41. data/app/views/refinery/race_registrations/admin/groups/edit.html.erb +1 -0
  42. data/app/views/refinery/race_registrations/admin/groups/index.html.erb +5 -0
  43. data/app/views/refinery/race_registrations/admin/groups/new.html.erb +1 -0
  44. data/app/views/refinery/race_registrations/admin/people/_form.html.erb +82 -0
  45. data/app/views/refinery/race_registrations/admin/people/_people.html.erb +14 -0
  46. data/app/views/refinery/race_registrations/admin/people/_person.html.erb +21 -0
  47. data/app/views/refinery/race_registrations/admin/people/_records.html.erb +11 -0
  48. data/app/views/refinery/race_registrations/admin/people/edit.html.erb +1 -0
  49. data/app/views/refinery/race_registrations/admin/people/index.html.erb +27 -0
  50. data/app/views/refinery/race_registrations/admin/people/index.js.erb +3 -0
  51. data/app/views/refinery/race_registrations/admin/people/new.html.erb +1 -0
  52. data/app/views/refinery/race_registrations/admin/registrations/_form.html.erb +54 -0
  53. data/app/views/refinery/race_registrations/admin/registrations/_records.html.erb +18 -0
  54. data/app/views/refinery/race_registrations/admin/registrations/_registration.html.erb +20 -0
  55. data/app/views/refinery/race_registrations/admin/registrations/_registrations.html.erb +2 -0
  56. data/app/views/refinery/race_registrations/admin/registrations/_sortable_list.html.erb +5 -0
  57. data/app/views/refinery/race_registrations/admin/registrations/edit.html.erb +1 -0
  58. data/app/views/refinery/race_registrations/admin/registrations/index.html.erb +5 -0
  59. data/app/views/refinery/race_registrations/admin/registrations/new.html.erb +1 -0
  60. data/app/views/refinery/race_registrations/categories/index.html.erb +11 -0
  61. data/app/views/refinery/race_registrations/categories/show.html.erb +27 -0
  62. data/app/views/refinery/race_registrations/groups/index.html.erb +11 -0
  63. data/app/views/refinery/race_registrations/groups/show.html.erb +27 -0
  64. data/app/views/refinery/race_registrations/people/_form.html.erb +81 -0
  65. data/app/views/refinery/race_registrations/people/_form_header.html.erb +8 -0
  66. data/app/views/refinery/race_registrations/people/new.html.erb +28 -0
  67. data/app/views/refinery/race_registrations/registrations/_registration.html.erb +47 -0
  68. data/app/views/refinery/race_registrations/registrations/_registration_chooser.html.erb +7 -0
  69. data/app/views/refinery/race_registrations/registrations/show.html.erb +21 -0
  70. data/config/initializers/refinery/core.rb +8 -0
  71. data/config/locales/en.yml +136 -0
  72. data/config/locales/es.yml +141 -0
  73. data/config/locales/fr.yml +139 -0
  74. data/config/locales/humanizer.de.yml +43 -0
  75. data/config/locales/humanizer.en.yml +43 -0
  76. data/config/locales/humanizer.es.yml +43 -0
  77. data/config/locales/humanizer.fi.yml +43 -0
  78. data/config/locales/humanizer.fr.yml +43 -0
  79. data/config/locales/humanizer.it.yml +43 -0
  80. data/config/locales/humanizer.nl.yml +43 -0
  81. data/config/locales/humanizer.pl.yml +43 -0
  82. data/config/locales/humanizer.pt-BR.yml +43 -0
  83. data/config/locales/humanizer.pt-PT.yml +43 -0
  84. data/config/locales/humanizer.ru.yml +43 -0
  85. data/config/locales/humanizer.sk.yml +9 -0
  86. data/config/locales/humanizer.zh-CN.yml +43 -0
  87. data/config/locales/nb.yml +141 -0
  88. data/config/locales/nl.yml +141 -0
  89. data/config/locales/sk.yml +138 -0
  90. data/config/routes.rb +44 -0
  91. data/db/migrate/1_create_race_registrations_registrations.rb +31 -0
  92. data/db/migrate/2_create_race_registrations_people.rb +33 -0
  93. data/db/migrate/3_create_race_registrations_categories.rb +26 -0
  94. data/db/migrate/4_create_race_registrations_groups.rb +26 -0
  95. data/db/migrate/5_create_race_registrations_group_categories.rb +18 -0
  96. data/db/migrate/6_add_registration_id_to_people.rb +20 -0
  97. data/db/migrate/7_add_group_id_to_registrations.rb +13 -0
  98. data/db/seeds.rb +51 -0
  99. data/lib/generators/refinery/registrations_generator.rb +18 -0
  100. data/lib/refinery/registrations.rb +22 -0
  101. data/lib/refinery/registrations/configuration.rb +11 -0
  102. data/lib/refinery/registrations/engine.rb +31 -0
  103. data/lib/refinery/registrations/extensions/pages_controller_extension.rb +18 -0
  104. data/lib/refinerycms-registrations.rb +1 -0
  105. data/lib/tasks/refinery/registrations.rake +13 -0
  106. data/readme.md +95 -0
  107. metadata +182 -0
@@ -0,0 +1,43 @@
1
+ de:
2
+ humanizer:
3
+ validation:
4
+ error: "Sie sind kein Mensch"
5
+ questions:
6
+ - question: "Zwei plus zwei?"
7
+ answers: ["4", "vier"]
8
+ - question: "Alle meine Entchen, schwimmen auf dem..."
9
+ answer: see
10
+ - question: "Welche Zahl kommt vor der Zwölf?"
11
+ answers: ["11", "elf"]
12
+ - question: "Fünf mal zwei ergibt?"
13
+ answers: ["10", "zehn"]
14
+ - question: "Die nächste Zahl der Serie: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "fünfzehn"]
16
+ - question: "Wieviel ist fünf mal fünf?"
17
+ answers: ["25", "fünfundzwanzig"]
18
+ - question: "Zehn geteilt durch zwei ist?"
19
+ answers: ["5", "fünf"]
20
+ - question: "Welcher Tag folgt auf den Montag?"
21
+ answer: "dienstag"
22
+ - question: "Wie lautet der letzte Monat des Jahres?"
23
+ answer: "dezember"
24
+ - question: "Wie viele Minuten hat eine Stunde?"
25
+ answers: ["60", "sechzig"]
26
+ - question: "Was ist das Gegenteil von oben?"
27
+ answer: "unten"
28
+ - question: "Was ist das Gegenteil von Norden?"
29
+ answer: "süden"
30
+ - question: "Was ist das Gegenteil von schlecht?"
31
+ answer: "gut"
32
+ - question: "Wieviel ist 4 mal vier?"
33
+ answers: ["16", "sechzehn"]
34
+ - question: "Welche Zahl folgt auf die 20?"
35
+ answers: ["21", "einundzwanzig"]
36
+ - question: "Welcher Monat kommt vor dem Juli?"
37
+ answer: "juni"
38
+ - question: "Wieviel ist fünfzehn geteilt durch drei?"
39
+ answer: ["fünf", "5"]
40
+ - question: "Wieviel ist 14 minus 4?"
41
+ answers: ["10", "zehn"]
42
+ - question: "Was folgt als nächstes? Montag, Dienstag, Mittwoch, ..."
43
+ answer: "donnerstag"
@@ -0,0 +1,43 @@
1
+ en:
2
+ humanizer:
3
+ validation:
4
+ error: You're not a human
5
+ questions:
6
+ - question: Two plus two?
7
+ answers: ["4", "four"]
8
+ - question: Jack and Jill went up the...
9
+ answer: hill
10
+ - question: What is the number before twelve?
11
+ answers: ["11", "eleven"]
12
+ - question: Five times two is what?
13
+ answers: ["10", "ten"]
14
+ - question: "Insert the next number in this sequence: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "fifteen"]
16
+ - question: "What is five times five?"
17
+ answers: ["25", "twenty-five"]
18
+ - question: "Ten divided by two is what?"
19
+ answers: ["5", "five"]
20
+ - question: What day comes after Monday?
21
+ answer: "tuesday"
22
+ - question: What is the last month of the year?
23
+ answer: "december"
24
+ - question: How many minutes are in an hour?
25
+ answers: ["60", "sixty"]
26
+ - question: What is the opposite of down?
27
+ answer: "up"
28
+ - question: What is the opposite of north?
29
+ answer: "south"
30
+ - question: What is the opposite of bad?
31
+ answer: "good"
32
+ - question: What is 4 times four?
33
+ answers: ["16", "sixteen"]
34
+ - question: What number comes after 20?
35
+ answers: ["21", "twenty-one"]
36
+ - question: What month comes before July?
37
+ answer: "june"
38
+ - question: What is fifteen divided by three?
39
+ answer: ["five", "5"]
40
+ - question: What is 14 minus 4?
41
+ answers: ["10", "ten"]
42
+ - question: "What comes next? Monday, Tuesday, Wednesday.."
43
+ answer: "Thursday"
@@ -0,0 +1,43 @@
1
+ es:
2
+ humanizer:
3
+ validation:
4
+ error: Usted no es humano
5
+ questions:
6
+ - question: "¿Dos más dos?"
7
+ answers: ["4", "cuatro"]
8
+ - question: "La paciencia es la madre de la..."
9
+ answer: "ciencia"
10
+ - question: "¿Qué número va antes del doce?"
11
+ answers: ["11", "once"]
12
+ - question: "¿Cuánto es cinco por dos?"
13
+ answers: ["10", "diez"]
14
+ - question: "Inserta el siguiente número de esta secuencia: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "quince"]
16
+ - question: "¿Cuánto es cinco por cinco?"
17
+ answers: ["25", "veinticinco"]
18
+ - question: "¿Cuánto es diez dividido entre dos?"
19
+ answers: ["5", "cinco"]
20
+ - question: "¿Qué día va detrás del lunes?"
21
+ answer: "martes"
22
+ - question: "¿Cual es el último mes del año?"
23
+ answer: "diciembre"
24
+ - question: "¿Cuántos minutos tiene una hora?"
25
+ answers: ["60", "sesenta"]
26
+ - question: "¿Cual es el opuesto de arriba?"
27
+ answer: "abajo"
28
+ - question: "¿Cual es el opuesto de norte?"
29
+ answer: "sur"
30
+ - question: "¿Cual es el opuesto de malo?"
31
+ answer: "bueno"
32
+ - question: "¿Cuánto es cuatro por 4?"
33
+ answers: ["16", "dieciseis"]
34
+ - question: "¿Qué número va después del 20?"
35
+ answers: ["21", "veintiuno"]
36
+ - question: "¿Qué mes va antes de julio?"
37
+ answer: "junio"
38
+ - question: "¿Cuánto es quince dividido entre tres?"
39
+ answer: ["cinco", "5"]
40
+ - question: "¿Cuánto es 14 menos 4?"
41
+ answers: ["10", "diez"]
42
+ - question: "¿Qué va después? Lunes, Martes, Miércoles..."
43
+ answer: "Jueves"
@@ -0,0 +1,43 @@
1
+ fi:
2
+ humanizer:
3
+ validation:
4
+ error: Et ole ihminen
5
+ questions:
6
+ - question: Kaksi plus kaksi?
7
+ answers: ["4", "neljä"]
8
+ - question: Loppu hyvin, kaikki...
9
+ answer: hyvin
10
+ - question: Kahtatoista edeltävä numero?
11
+ answers: ["11", "yksitoista"]
12
+ - question: Viisi kertaa kaksi on?
13
+ answers: ["10", "kymmenen"]
14
+ - question: "Seuraava numero tässä sarjassa: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "viisitoista"]
16
+ - question: "Viisi kertaa viisi on?"
17
+ answers: ["25", "kaksikymmentäviisi"]
18
+ - question: "Kymmenen jaettuna kahdella on?"
19
+ answers: ["5", "viisi"]
20
+ - question: Maanantaita seuraava päivä on?
21
+ answer: "tiistai"
22
+ - question: Mikä on vuoden viimeinen päivä?
23
+ answer: "joulukuu"
24
+ - question: Kuinka monta minuuttia on tunnissa?
25
+ answers: ["60", "kuusikymmentä"]
26
+ - question: Vastakohta sanalle 'alas'?
27
+ answer: "ylös"
28
+ - question: Pohjoisen vastakohta?
29
+ answer: "etelä"
30
+ - question: Huonon vastakohta?
31
+ answer: "hyvä"
32
+ - question: Kuinka paljon on 4 kertaa neljä?
33
+ answers: ["16", "kuusitoista"]
34
+ - question: Mikä numero tulee kahdenkymmenen jälkeen?
35
+ answers: ["21", "kaksikymmentäyksi"]
36
+ - question: Heinäkuuta edeltävä kuukausi on?
37
+ answer: "kesäkuu"
38
+ - question: Mitä on viisitoista jaettuna kolmella?
39
+ answer: ["viisi", "5"]
40
+ - question: Mitä on 14 miinus 4?
41
+ answers: ["10", "kymmenen"]
42
+ - question: "Mikä tulee seuraavaksi? Maanantai, Tiistai, Keskiviikko..."
43
+ answer: "Torstai"
@@ -0,0 +1,43 @@
1
+ fr:
2
+ humanizer:
3
+ validation:
4
+ error: Vous n'êtes pas humain
5
+ questions:
6
+ - question: Deux plus deux font?
7
+ answers: ["4", "quatre"]
8
+ - question: "Liberté, Égalité,..."
9
+ answer: fraternité
10
+ - question: Quel est le chiffre qui précède douze?
11
+ answers: ["11", "onze"]
12
+ - question: Cinq fois deux font?
13
+ answers: ["10", "dix"]
14
+ - question: "Quel chiffre qui suivra? 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "quinze"]
16
+ - question: "Cinq fois cinq ne font pas dix mais?"
17
+ answers: ["25", "vingt-cinq"]
18
+ - question: "Dix divisé par deux fait?"
19
+ answers: ["5", "cinq"]
20
+ - question: Le jour de la semaine qui succède au dimanche est le...?
21
+ answer: ["lundi", "le lundi"]
22
+ - question: Quel est le dernier mois de l'année'?
23
+ answer: "décembre"
24
+ - question: L'heure correspond à combien de minutes?
25
+ answers: ["60", "soixante"]
26
+ - question: Le contraire de 'haut' est?
27
+ answer: "bas"
28
+ - question: Le sens inverse du Nord?
29
+ answer: ["sud", "le sud"]
30
+ - question: Quel est le contraire du bien?
31
+ answer: ["mal", "le mal"]
32
+ - question: Que font 4 fois quatre?
33
+ answers: ["16", "seize"]
34
+ - question: Quel chiffre suit 20?
35
+ answers: ["21", "vingt-et-un"]
36
+ - question: Quel mois précède Juillet?
37
+ answer: "juin"
38
+ - question: Quinze divisé par 3 font?
39
+ answer: ["cinq", "5"]
40
+ - question: Quatorze moins 4 font?
41
+ answers: ["10", "dix"]
42
+ - question: "Le suivant est? lundi, mardi, mercredi.."
43
+ answer: "jeudi"
@@ -0,0 +1,43 @@
1
+ it:
2
+ humanizer:
3
+ validation:
4
+ error: Non sei un umano
5
+ questions:
6
+ - question: Due più due?
7
+ answers: ["4", "quattro"]
8
+ - question: Chi va a Roma perde la...
9
+ answer: "poltrona"
10
+ - question: Qual è il numero precedente al dodici?
11
+ answers: ["11", "undici"]
12
+ - question: Cinque volte due fa?
13
+ answers: ["10", "dieci"]
14
+ - question: "Inserisci il prossimo numero di questa sequenza: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "quindici"]
16
+ - question: "Quanto fa cinque volte cinque?"
17
+ answers: ["25", "venticinque"]
18
+ - question: "Dieci diviso due fa?"
19
+ answers: ["5", "cinque"]
20
+ - question: Che giorno viene dopo lunedì?
21
+ answers: ["martedì", "martedi"]
22
+ - question: Qual è l'ultimo mese dell'anno?
23
+ answer: "dicembre"
24
+ - question: Quanti minuti ci sono in un'ora?
25
+ answers: ["60", "sessanta"]
26
+ - question: Qual è il contrario di giù?
27
+ answers: ["su", "sù"]
28
+ - question: Qual è la direzione opposta al nord?
29
+ answer: "sud"
30
+ - question: Qual è il contrario di cattivo?
31
+ answer: "buono"
32
+ - question: Quanto fa 4 volte quattro?
33
+ answers: ["16", "sedici"]
34
+ - question: Che numero viene dopo il 20?
35
+ answers: ["21", "ventuno"]
36
+ - question: Che mese viene prima di luglio?
37
+ answer: "giugno"
38
+ - question: Quanto fa quindici dviso tre?
39
+ answers: ["cinque", "5"]
40
+ - question: Quanto fa 14 meno 4?
41
+ answers: ["10", "dieci"]
42
+ - question: "Cosa viene dopo? Lunedì, martedì, mercoledì, .."
43
+ answers: ["Giovedì", "Giovedi", "giovedì", "giovedi"]
@@ -0,0 +1,43 @@
1
+ nl:
2
+ humanizer:
3
+ validation:
4
+ error: U bent geen mens
5
+ questions:
6
+ - question: Twee plus twee?
7
+ answers: ["4", "vier"]
8
+ - question: "Een twee drie vier, hoedje van..."
9
+ answer: papier
10
+ - question: Wat is het nummer tussen tien en twaalf?
11
+ answers: ["11", "elf"]
12
+ - question: Vijf maal twee is hoeveel?
13
+ answers: ["10", "tien"]
14
+ - question: "Vul het volgende nummer in deze rij aan: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "vijftien"]
16
+ - question: "Wat is vijf maail vijf?"
17
+ answers: ["25", "vijfentwintig"]
18
+ - question: "Tein gedeeld door twee is hoeveel?"
19
+ answers: ["5", "vijf"]
20
+ - question: Welke dag komt er na maandag?
21
+ answer: "dinsdag"
22
+ - question: Wat is de laatste maand van het jaar?
23
+ answer: "december"
24
+ - question: Hoeveel minuten zitten er in een uur?
25
+ answers: ["60", "zestig"]
26
+ - question: Wat is het omgkeerde van benden?
27
+ answer: "boven"
28
+ - question: Wat is het omgekeerde van zuid?
29
+ answer: ["noord", "noorden"]
30
+ - question: Wat is het omgekeerde van slecht?
31
+ answer: "goed"
32
+ - question: Hoeveel is 4 maal vier?
33
+ answers: ["16", "zestien"]
34
+ - question: Welk getal komt er na 20?
35
+ answers: ["21", "eenentwintig"]
36
+ - question: Welke maand komt er voor juli?
37
+ answer: "juni"
38
+ - question: Hoeveel is vijftien gedeeld door drie?
39
+ answer: ["vijf", "5"]
40
+ - question: Hoeveel is 14 min 4?
41
+ answers: ["10", "tien"]
42
+ - question: "Wat is het volgende? Maandag, dinsdag, woensdag..."
43
+ answer: "donderdag"
@@ -0,0 +1,43 @@
1
+ pl:
2
+ humanizer:
3
+ validation:
4
+ error: Nie jesteś człowiekiem
5
+ questions:
6
+ - question: Dwa plus dwa?
7
+ answers: ["4", "cztery"]
8
+ - question: Wlazł kotek na...
9
+ answer: płotek
10
+ - question: Jaka jest liczba poprzedzająca dwanaście?
11
+ answers: ["11", "jedenaście"]
12
+ - question: Pięć razy dwa to?
13
+ answers: ["10", "dziesięć"]
14
+ - question: "Wstaw następną w kolejności liczbę: 10, 11, 12, 13, 14, ..."
15
+ answers: ["15", "piętnaście"]
16
+ - question: "Ile to jest pięć razy pięć?"
17
+ answers: ["25", "dwadzieścia pięć"]
18
+ - question: "Ile to jest dziesięć dzielone na dwa?"
19
+ answers: ["5", "pięć"]
20
+ - question: Jaki dzień następuje po poniedziałku?
21
+ answer: "wtorek"
22
+ - question: Jaki jest ostatni miesiąc roku?
23
+ answer: "grudzień"
24
+ - question: Ile jest minut w godzinie?
25
+ answers: ["60", "sześćdziesiąt"]
26
+ - question: Jakie jest przeciwieństwo słowa góra?
27
+ answer: "dół"
28
+ - question: Jakie jest przeciwieństwo słowa północ?
29
+ answer: "południe"
30
+ - question: Jakie jest przeciwieństwo słowa zły?
31
+ answer: "dobry"
32
+ - question: Ile to jest 4 razy cztery?
33
+ answers: ["16", "szesnaście"]
34
+ - question: Jaka jest liczba po 20?
35
+ answers: ["21", "dwadzieścia jeden"]
36
+ - question: Jaki jest miesiąc przed lipcem?
37
+ answer: "czerwiec"
38
+ - question: Ile to jest piętnaście dzielone na trzy?
39
+ answer: ["pięć", "5"]
40
+ - question: Ile to jest 14 minus 4?
41
+ answers: ["10", "dziesięć"]
42
+ - question: "Co jest następne? Poniedziałek, wtorek, środa, ..."
43
+ answer: "Czwartek"
@@ -0,0 +1,43 @@
1
+ pt-BR:
2
+ humanizer:
3
+ validation:
4
+ error: Você não é humano
5
+ questions:
6
+ - question: Dois mais dois?
7
+ answers: ["4", "quatro"]
8
+ - question: "Água mole em pedra dura, tanto bate até que..."
9
+ answer: fura
10
+ - question: Que número vem antes de doze?
11
+ answers: ["11", "onze"]
12
+ - question: Quanto é cinco vezes dois?
13
+ answers: ["10", "dez"]
14
+ - question: "Coloque o próximo número na sequência: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "quinze"]
16
+ - question: Quanto é cinco vezes cinco?
17
+ answers: ["25", "vinte e cinco"]
18
+ - question: Quanto é dez dividido por dois?
19
+ answers: ["5", "cinco"]
20
+ - question: Que dia vem depois da segunda-feira?
21
+ answers: ["terça", "terça-feira"]
22
+ - question: Qual é o último mês do ano?
23
+ answer: "dezembro"
24
+ - question: Quantos minutos tem uma hora?
25
+ answers: ["60", "sessenta"]
26
+ - question: Qual é o contrário de alto?
27
+ answer: "baixo"
28
+ - question: Qual é o contrário de norte?
29
+ answer: "sul"
30
+ - question: Qual é o contrário de ruim?
31
+ answer: "bom"
32
+ - question: Quanto é 4 vezes quatro?
33
+ answers: ["16", "dezesseis"]
34
+ - question: Que número vem depois de 20?
35
+ answers: ["21", "vinte e um"]
36
+ - question: Que mês vem antes de julho?
37
+ answer: "junho"
38
+ - question: Quanto é quinze dividido por três?
39
+ answer: ["cinco", "5"]
40
+ - question: Quanto é 14 menos 4?
41
+ answers: ["10", "dez"]
42
+ - question: "O que vem em seguida? segunda, terça, quarta, ..."
43
+ answers: ["quinta", "quinta-feira"]
@@ -0,0 +1,43 @@
1
+ pt-PT:
2
+ humanizer:
3
+ validation:
4
+ error: Você não é humano
5
+ questions:
6
+ - question: Dois mais dois?
7
+ answers: ["4", "quatro"]
8
+ - question: "Água mole em pedra dura, tanto bate até que..."
9
+ answer: fura
10
+ - question: Que número vem antes de doze?
11
+ answers: ["11", "onze"]
12
+ - question: Cinco vezes dois?
13
+ answers: ["10", "dez"]
14
+ - question: "Coloque o próximo número na sequência: 10, 11, 12, 13, 14, .."
15
+ answers: ["15", "quinze"]
16
+ - question: Cinco vezes cinco?
17
+ answers: ["25", "vinte e cinco"]
18
+ - question: Quanto é dez dividido por dois?
19
+ answers: ["5", "cinco"]
20
+ - question: Que dia vem depois da segunda-feira?
21
+ answers: ["terça", "terça-feira"]
22
+ - question: Qual é o último mês do ano?
23
+ answer: "dezembro"
24
+ - question: Quantos minutos tem uma hora?
25
+ answers: ["60", "sessenta"]
26
+ - question: Qual é o contrário de alto?
27
+ answer: "baixo"
28
+ - question: Qual é o contrário de norte?
29
+ answer: "sul"
30
+ - question: Qual é o contrário de mau?
31
+ answer: "bom"
32
+ - question: Quanto é quatro vezes quatro?
33
+ answers: ["16", "dezasseis"]
34
+ - question: Que número vem depois de vinte?
35
+ answers: ["21", "vinte e um"]
36
+ - question: Que mês vem antes de julho?
37
+ answer: "junho"
38
+ - question: Quanto é quinze dividido por três?
39
+ answer: ["cinco", "5"]
40
+ - question: Quanto é 14 menos 4?
41
+ answers: ["10", "dez"]
42
+ - question: "Qual é o próximo? segunda, terça, quarta, ..."
43
+ answers: ["quinta", "quinta-feira"]