inflector.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. return [
  3. 'uncountable' => [
  4. 'access',
  5. 'advice',
  6. 'aircraft',
  7. 'art',
  8. 'baggage',
  9. 'bison',
  10. 'dances',
  11. 'deer',
  12. 'equipment',
  13. 'fish',
  14. 'fuel',
  15. 'furniture',
  16. 'heat',
  17. 'honey',
  18. 'homework',
  19. 'impatience',
  20. 'information',
  21. 'knowledge',
  22. 'luggage',
  23. 'media',
  24. 'money',
  25. 'moose',
  26. 'music',
  27. 'news',
  28. 'patience',
  29. 'progress',
  30. 'pollution',
  31. 'research',
  32. 'rice',
  33. 'salmon',
  34. 'sand',
  35. 'series',
  36. 'sheep',
  37. 'sms',
  38. 'spam',
  39. 'species',
  40. 'staff',
  41. 'swine',
  42. 'toothpaste',
  43. 'traffic',
  44. 'understanding',
  45. 'water',
  46. 'weather',
  47. 'work',
  48. ],
  49. 'irregular' => [
  50. 'appendix' => 'appendices',
  51. 'cactus' => 'cacti',
  52. 'calf' => 'calves',
  53. 'child' => 'children',
  54. 'crisis' => 'crises',
  55. 'criterion' => 'criteria',
  56. 'curriculum' => 'curricula',
  57. 'diagnosis' => 'diagnoses',
  58. 'elf' => 'elves',
  59. 'ellipsis' => 'ellipses',
  60. 'foot' => 'feet',
  61. 'goose' => 'geese',
  62. 'hero' => 'heroes',
  63. 'hoof' => 'hooves',
  64. 'hypothesis' => 'hypotheses',
  65. 'is' => 'are',
  66. 'knife' => 'knives',
  67. 'leaf' => 'leaves',
  68. 'life' => 'lives',
  69. 'loaf' => 'loaves',
  70. 'man' => 'men',
  71. 'mouse' => 'mice',
  72. 'nucleus' => 'nuclei',
  73. 'oasis' => 'oases',
  74. 'octopus' => 'octopi',
  75. 'ox' => 'oxen',
  76. 'paralysis' => 'paralyses',
  77. 'parenthesis' => 'parentheses',
  78. 'person' => 'people',
  79. 'phenomenon' => 'phenomena',
  80. 'potato' => 'potatoes',
  81. 'quiz' => 'quizzes',
  82. 'radius' => 'radii',
  83. 'scarf' => 'scarves',
  84. 'stimulus' => 'stimuli',
  85. 'syllabus' => 'syllabi',
  86. 'synthesis' => 'syntheses',
  87. 'thief' => 'thieves',
  88. 'tooth' => 'teeth',
  89. 'was' => 'were',
  90. 'wharf' => 'wharves',
  91. 'wife' => 'wives',
  92. 'woman' => 'women',
  93. 'release' => 'releases',
  94. ],
  95. ];