conjugate 1.4.14 → 1.4.15
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.4.
|
|
3
|
+
s.version = '1.4.15'
|
|
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
|
|
@@ -5271,9 +5271,59 @@ FrenchTemplates = {
|
|
|
5271
5271
|
|
|
5272
5272
|
:present_participle => "revoyant",
|
|
5273
5273
|
:past_participle => "revu"
|
|
5274
|
-
}
|
|
5274
|
+
},
|
|
5275
5275
|
|
|
5276
|
-
|
|
5276
|
+
:dormir => {
|
|
5277
|
+
:infinitive => "dormir",
|
|
5278
|
+
|
|
5279
|
+
:present => {
|
|
5280
|
+
:je => "dors",
|
|
5281
|
+
:tu => "dors",
|
|
5282
|
+
:il => "dort",
|
|
5283
|
+
:nous => "dormons",
|
|
5284
|
+
:vous => "dormez",
|
|
5285
|
+
:ils => "dorment"
|
|
5286
|
+
},
|
|
5287
|
+
|
|
5288
|
+
:imperfect => {
|
|
5289
|
+
:je => "dormais",
|
|
5290
|
+
:tu => "dormais",
|
|
5291
|
+
:il => "dormait",
|
|
5292
|
+
:nous => "dormions",
|
|
5293
|
+
:vous => "dormiez",
|
|
5294
|
+
:ils => "dormaient"
|
|
5295
|
+
},
|
|
5296
|
+
|
|
5297
|
+
:past_historic => {
|
|
5298
|
+
:je => "dormis",
|
|
5299
|
+
:tu => "dormis",
|
|
5300
|
+
:il => "dormit",
|
|
5301
|
+
:nous => "dormîmes",
|
|
5302
|
+
:vous => "dormîtes",
|
|
5303
|
+
:ils => "dormirent"
|
|
5304
|
+
},
|
|
5305
|
+
|
|
5306
|
+
:future => {
|
|
5307
|
+
:je => "dormirai",
|
|
5308
|
+
:tu => "dormiras",
|
|
5309
|
+
:il => "dormira",
|
|
5310
|
+
:nous => "dormirons",
|
|
5311
|
+
:vous => "dormirez",
|
|
5312
|
+
:ils => "dormiront"
|
|
5313
|
+
},
|
|
5314
|
+
|
|
5315
|
+
:conditional => {
|
|
5316
|
+
:je => "dormirais",
|
|
5317
|
+
:tu => "dormirais",
|
|
5318
|
+
:il => "dormirait",
|
|
5319
|
+
:nous => "dormirions",
|
|
5320
|
+
:vous => "dormiriez",
|
|
5321
|
+
:ils => "dormiraient"
|
|
5322
|
+
},
|
|
5323
|
+
|
|
5324
|
+
:present_participle => "dormant",
|
|
5325
|
+
:past_participle => "dormi"
|
|
5326
|
+
}
|
|
5277
5327
|
|
|
5278
5328
|
|
|
5279
5329
|
}
|