diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2017-09-20 03:06:15 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2017-09-20 03:06:15 -0700 |
| commit | 6e46f042fdc30507b1add6432124d80f20dc86f5 (patch) | |
| tree | 186e462945800478f05dd23b2ab62e1fbc4e7afe /lib/plurals.nom | |
| parent | a6cd8907c8ff03a07f9a706abe01c81e63d25d79 (diff) | |
Mostly working overhaul again that strips out ending lines with "..",
and simplifies a lot of the code. Also stripped out Expression, which
was just a useless level of indirection.
Diffstat (limited to 'lib/plurals.nom')
| -rw-r--r-- | lib/plurals.nom | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/plurals.nom b/lib/plurals.nom index cf77f05..9df4060 100644 --- a/lib/plurals.nom +++ b/lib/plurals.nom @@ -18,18 +18,18 @@ with secrets: | return key |end}) - rule: the plural of %singular is %plural ..=: + rule [the plural of %singular is %plural] =: (secret %plurals)->%singular =: %plural (secret %singulars)->%plural =: %singular (secret %canonicals)->%plural =: %singular - rule: singular %plural ..=: + rule [singular %plural] =: %plural in (secret %singulars) - rule: plural %singular ..=: + rule [plural %singular] =: %singular in (secret %plurals) - rule: canonicalize %item-name ..=: + rule [canonicalize %item-name] =: %item-name in (secret %canonicals) - rule: rules that change plurals ..=: ["the plural of % is %"] + rule [rules that change plurals] =: ["the plural of % is %"] |
