plural-en.py 320 B

12345678910111213141516
  1. #!/usr/bin/env python
  2. {
  3. # "singular form (0)": ["first plural form (1)", "second plural form (2)", ...],
  4. 'account': ['accounts'],
  5. 'book': ['books'],
  6. 'is': ['are'],
  7. 'man': ['men'],
  8. 'miss': ['misses'],
  9. 'person': ['people'],
  10. 'quark': ['quarks'],
  11. 'shop': ['shops'],
  12. 'this': ['these'],
  13. 'was': ['were'],
  14. 'woman': ['women'],
  15. }