Skip to content

Commit

Permalink
fix some 2nd person conjugations
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoontz committed Jul 13, 2024
1 parent cbdbff9 commit aad56a3
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions resources/español/morphology/verbs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

;; 2nd person
;; informal
{:g [#"^(.+)ar$" "$1es"]
:p [#"^(.+)es$" "$1ar"]
{:g [#"^(.+)ar$" "$1as"]
:p [#"^(.+)as$" "$1ar"]
:u {:cat :verb
:infl :present
:agr {:number :sing
Expand Down Expand Up @@ -190,10 +190,19 @@
:person :1st}}}

{:g [#"^(.+[aie]r)$" "$1ás"]
:p [#"^(.+)ás$" "$1"]
:p [#"^(.+)ás$" "$1"]
:u {:cat :verb
:infl :future
:agr {:number :sing
:agr {:formal? false
:number :sing
:person :2nd}}}

{:g [#"^(.+[aie]r)$" "$1á"]
:p [#"^(.+)á$" "$1"]
:u {:cat :verb
:infl :future
:agr {:formal? true
:number :sing
:person :2nd}}}

{:g [#"^(.+[aie]r)$" "$1á"]
Expand Down Expand Up @@ -247,6 +256,15 @@
:u {:cat :verb
:infl :conditional
:agr {:number :sing
:formal? false
:person :2nd}}}

{:g [#"^(.+[aie]r)$" "$1ía"]
:p [#"^(.+[aie]r)ía$" "$1"]
:u {:cat :verb
:infl :conditional
:agr {:number :sing
:formal? true
:person :2nd}}}

{:g [#"^(.+[aie]r)$" "$1ía"]
Expand All @@ -271,8 +289,8 @@
:formal? false
:person :2nd}}}

{:g [#"^(.+[aie]r)$" "$1ía"]
:p [#"^(.+[aie]r)ía$" "$1"]
{:g [#"^(.+[aie]r)$" "$1ían"]
:p [#"^(.+[aie]r)ían$" "$1"]
:u {:cat :verb
:infl :conditional
:agr {:number :plur
Expand Down

0 comments on commit aad56a3

Please sign in to comment.