UNPKG

spanishconjugator

Version:

A npm package for spanish conjugation by mood, tense and pronoun

89 lines (87 loc) 2.39 kB
const irregulars_dictionary = { 'ir':{ 'indicitive':{ 'present':{ 'yo':'voy', 'tu':'vas', 'usted':'va', 'nosotros':'vamos', 'vosotros':'vais', 'ustedes':'van' }, 'imperfect':{ 'yo':'iba', 'tu':'ibas', 'usted':'iba', 'nosotros':'íbamos', 'vosotros':'ibais', 'ustedes':'iban' }, 'preterite':{ 'yo':'fui', 'tu':'fuiste', 'usted':'fue', 'nosotros':'fuimos', 'vosotros':'fuisteis', 'ustedes':'fueron' } } }, 'ser':{ 'indicitive':{ 'present':{ 'yo':'soy', 'tu':'eres', 'usted':'es', 'nosotros':'somos', 'vosotros':'sois', 'ustedes':'son' }, 'imperfect':{ 'yo':'era', 'tu':'eras', 'usted':'era', 'nosotros':'éramos', 'vosotros':'erais', 'ustedes':'eran' }, 'preterite':{ 'yo':'fui', 'tu':'fuiste', 'usted':'fue', 'nosotros':'fuimos', 'vosotros':'fuisteis', 'ustedes':'fueron' } } }, 'ver':{ 'indicitive':{ 'present':{ 'yo':'veo', 'tu':'ves', 'usted':'ve', 'nosotros':'vemos', 'vosotros':'veis', 'ustedes':'ven' }, 'imperfect':{ 'yo':'veía', 'tu':'veías', 'usted':'veía', 'nosotros':'veíamos', 'vosotros':'veíais', 'ustedes':'veían' }, 'preterite':{ 'yo':'vi', 'tu':'vistes', 'usted':'viste', 'nosotros':'vimos', 'vosotros':'visteis', 'ustedes':'vieron' } } }, } module.exports.irregulars_dictionary = irregulars_dictionary;