humanizer 2.4.1 → 2.4.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### Humanizer 2.4.2 (2011-01-08)
2
+
3
+ * Added translations: Spanish.
4
+
5
+
1
6
  ### Humanizer 2.4.1 (2010-12-16)
2
7
 
3
8
  * Fixes a bug when the humanizer_question_id is given as a String.
data/README.md CHANGED
@@ -70,6 +70,7 @@ Humanizer is licensed under the MIT License, for more details see the LICENSE fi
70
70
  * Dutch by [Joren De Groof](http://github.com/joren)
71
71
  * Brazilian Portuguese by [Britto](http://github.com/britto)
72
72
  * Russian by [Shark](http://github.com/Serheo)
73
+ * Spanish by [Juanjo Bazán](https://github.com/xuanxu)
73
74
 
74
75
  ## Contributors
75
76
 
@@ -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"
@@ -1,3 +1,3 @@
1
1
  module Humanizer
2
- VERSION = "2.4.1"
2
+ VERSION = "2.4.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 4
8
- - 1
9
- version: 2.4.1
8
+ - 2
9
+ version: 2.4.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Antti Akonniemi
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-16 00:00:00 +02:00
18
+ date: 2011-01-09 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -95,6 +95,7 @@ files:
95
95
  - README.md
96
96
  - lib/generators/templates/locales/de.yml
97
97
  - lib/generators/templates/locales/en.yml
98
+ - lib/generators/templates/locales/es.yml
98
99
  - lib/generators/templates/locales/fi.yml
99
100
  - lib/generators/templates/locales/fr.yml
100
101
  - lib/generators/templates/locales/nl.yml