conjugate 1.4.11 → 1.4.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.4.
|
|
3
|
+
s.version = '1.4.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
|
|
@@ -5219,7 +5219,60 @@ FrenchTemplates = {
|
|
|
5219
5219
|
|
|
5220
5220
|
:present_participle => "{{{1}}}yant",
|
|
5221
5221
|
:past_participle => "{{{1}}}yé"
|
|
5222
|
+
},
|
|
5223
|
+
|
|
5224
|
+
:revoir => {
|
|
5225
|
+
:infinitive => "revoir",
|
|
5226
|
+
|
|
5227
|
+
:present => {
|
|
5228
|
+
:je => "revois",
|
|
5229
|
+
:tu => "revois",
|
|
5230
|
+
:il => "revoit",
|
|
5231
|
+
:nous => "revoyons",
|
|
5232
|
+
:vous => "revoyez",
|
|
5233
|
+
"ils" => "revoient"
|
|
5234
|
+
},
|
|
5235
|
+
|
|
5236
|
+
:imperfect => {
|
|
5237
|
+
:je => "revoyais",
|
|
5238
|
+
:tu => "revoyais",
|
|
5239
|
+
:il => "revoyait",
|
|
5240
|
+
:nous => "revoyions",
|
|
5241
|
+
:vous => "revoyiez",
|
|
5242
|
+
:ils => "revoyaient"
|
|
5243
|
+
}
|
|
5244
|
+
|
|
5245
|
+
:past_historic => {
|
|
5246
|
+
:je => "revis",
|
|
5247
|
+
:tu => "revis",
|
|
5248
|
+
:il => "revit",
|
|
5249
|
+
:nous => "revîmes",
|
|
5250
|
+
:vous => "revîtes",
|
|
5251
|
+
:ils => "revirent"
|
|
5252
|
+
},
|
|
5253
|
+
|
|
5254
|
+
:future => {
|
|
5255
|
+
:je => "reverrai",
|
|
5256
|
+
:tu => "reverras",
|
|
5257
|
+
:il => "reverra",
|
|
5258
|
+
:nous => "reverrons",
|
|
5259
|
+
:vous => "reverrez",
|
|
5260
|
+
:ils => "reverront"
|
|
5261
|
+
},
|
|
5262
|
+
:conditional => {
|
|
5263
|
+
:je => "reverrais",
|
|
5264
|
+
:tu => "reverrais",
|
|
5265
|
+
:il => "reverrait",
|
|
5266
|
+
:nous => "reverrions",
|
|
5267
|
+
:vous => "reverriez",
|
|
5268
|
+
:ils => "reverraient"
|
|
5269
|
+
},
|
|
5270
|
+
|
|
5271
|
+
:present_participle => "revoyant",
|
|
5272
|
+
:past_participle => "revu"
|
|
5222
5273
|
}
|
|
5274
|
+
|
|
5275
|
+
|
|
5223
5276
|
|
|
5224
5277
|
|
|
5225
5278
|
}
|