conjugate 1.3.11 → 1.3.12
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.
data/conjugate.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'conjugate'
|
|
3
|
-
s.version = '1.3.
|
|
3
|
+
s.version = '1.3.12'
|
|
4
4
|
s.date = '2012-02-15'
|
|
5
5
|
s.summary = "Conjugate Verbs using a version of the templates defined here http://en.wiktionary.org/wiki/Category:Spanish_verb_inflection-table_templates"
|
|
6
6
|
s.description = s.summary
|
|
@@ -1140,7 +1140,6 @@ SpanishIrregularVerbs = {
|
|
|
1140
1140
|
'controvertir' => :ir_e_ie_i,
|
|
1141
1141
|
'convertir' => :ir_e_ie_i,
|
|
1142
1142
|
'convertirse' => :ir_e_ie_i,
|
|
1143
|
-
'desmentir' => :ir_e_ie_i,
|
|
1144
1143
|
'diferir' => :ir_e_ie_i,
|
|
1145
1144
|
'digerir' => :ir_e_ie_i,
|
|
1146
1145
|
'disentir' => :ir_e_ie_i,
|
|
@@ -1170,6 +1169,9 @@ SpanishIrregularVerbs = {
|
|
|
1170
1169
|
'zaherir' => :ir_e_ie_i,
|
|
1171
1170
|
|
|
1172
1171
|
|
|
1172
|
+
'desmentir' => :ir_desmentir,
|
|
1173
|
+
|
|
1174
|
+
|
|
1173
1175
|
'prohibir' => :ir_i_í,
|
|
1174
1176
|
'cohibir' => :ir_i_í,
|
|
1175
1177
|
|
|
@@ -3521,6 +3521,50 @@ SpanishTemplates = {
|
|
|
3521
3521
|
:ellos => "{{{1}}}e{{{2}}}irían"
|
|
3522
3522
|
}
|
|
3523
3523
|
},
|
|
3524
|
+
|
|
3525
|
+
:ir_desmentir => {
|
|
3526
|
+
:infinitive => "{{{1}}}e{{{2}}}e{{{3}}}ir",
|
|
3527
|
+
:present => {
|
|
3528
|
+
:yo => "{{{1}}}e{{{2}}}ie{{{3}}}o",
|
|
3529
|
+
:tu => "{{{1}}}e{{{2}}}ie{{{3}}}es",
|
|
3530
|
+
:el => "{{{1}}}e{{{2}}}ie{{{3}}}e",
|
|
3531
|
+
:nosotros => "{{{1}}}e{{{2}}}e{{{3}}}imos",
|
|
3532
|
+
:vosotros => "{{{1}}}e{{{2}}}e{{{3}}}ís",
|
|
3533
|
+
:ellos => "{{{1}}}e{{{2}}}ie{{{3}}}en"
|
|
3534
|
+
},
|
|
3535
|
+
:imperfect => {
|
|
3536
|
+
:yo => "{{{1}}}e{{{2}}}ía",
|
|
3537
|
+
:tu => "{{{1}}}e{{{2}}}ías",
|
|
3538
|
+
:el => "{{{1}}}e{{{2}}}ía",
|
|
3539
|
+
:nosotros => "{{{1}}}e{{{2}}}íamos",
|
|
3540
|
+
:vosotros => "{{{1}}}e{{{2}}}íais",
|
|
3541
|
+
:ellos => "{{{1}}}e{{{2}}}ían"
|
|
3542
|
+
},
|
|
3543
|
+
:preterite => {
|
|
3544
|
+
:yo => "{{{1}}}e{{{2}}}í",
|
|
3545
|
+
:tu => "{{{1}}}e{{{2}}}iste",
|
|
3546
|
+
:el => "{{{1}}}i{{{2}}}ió",
|
|
3547
|
+
:nosotros => "{{{1}}}e{{{2}}}imos",
|
|
3548
|
+
:vosotros => "{{{1}}}e{{{2}}}isteis",
|
|
3549
|
+
:ellos => "{{{1}}}i{{{2}}}ieron"
|
|
3550
|
+
},
|
|
3551
|
+
:future => {
|
|
3552
|
+
:yo => "{{{1}}}e{{{2}}}iré",
|
|
3553
|
+
:tu => "{{{1}}}e{{{2}}}irás",
|
|
3554
|
+
:el => "{{{1}}}e{{{2}}}irá",
|
|
3555
|
+
:nosotros => "{{{1}}}e{{{2}}}iremos",
|
|
3556
|
+
:vosotros => "{{{1}}}e{{{2}}}iréis",
|
|
3557
|
+
:ellos => "{{{1}}}e{{{2}}}irán"
|
|
3558
|
+
},
|
|
3559
|
+
:conditional => {
|
|
3560
|
+
:yo => "{{{1}}}e{{{2}}}iría",
|
|
3561
|
+
:tu => "{{{1}}}e{{{2}}}irías",
|
|
3562
|
+
:el => "{{{1}}}e{{{2}}}iría",
|
|
3563
|
+
:nosotros => "{{{1}}}e{{{2}}}iríamos",
|
|
3564
|
+
:vosotros => "{{{1}}}e{{{2}}}iríais",
|
|
3565
|
+
:ellos => "{{{1}}}e{{{2}}}irían"
|
|
3566
|
+
}
|
|
3567
|
+
},
|
|
3524
3568
|
|
|
3525
3569
|
:ir_i_í => {
|
|
3526
3570
|
:infinitive => "{{{1}}}i{{{2}}}ir",
|