This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/includes/kohana/system/config/inflector.php
2013-10-10 13:44:53 +11:00

99 lines
1.7 KiB
PHP

<?php defined('SYSPATH') OR die('No direct script access.');
return array(
'uncountable' => array(
'access',
'advice',
'aircraft',
'art',
'baggage',
'bison',
'dances',
'deer',
'equipment',
'fish',
'fuel',
'furniture',
'heat',
'honey',
'homework',
'impatience',
'information',
'knowledge',
'luggage',
'media',
'money',
'moose',
'music',
'news',
'patience',
'progress',
'pollution',
'research',
'rice',
'salmon',
'sand',
'series',
'sheep',
'sms',
'spam',
'species',
'staff',
'swine',
'toothpaste',
'traffic',
'understanding',
'water',
'weather',
'work',
),
'irregular' => array(
'appendix' => 'appendices',
'cactus' => 'cacti',
'calf' => 'calves',
'child' => 'children',
'crisis' => 'crises',
'criterion' => 'criteria',
'curriculum' => 'curricula',
'diagnosis' => 'diagnoses',
'elf' => 'elves',
'ellipsis' => 'ellipses',
'foot' => 'feet',
'goose' => 'geese',
'hero' => 'heroes',
'hoof' => 'hooves',
'hypothesis' => 'hypotheses',
'is' => 'are',
'knife' => 'knives',
'leaf' => 'leaves',
'life' => 'lives',
'loaf' => 'loaves',
'man' => 'men',
'mouse' => 'mice',
'nucleus' => 'nuclei',
'oasis' => 'oases',
'octopus' => 'octopi',
'ox' => 'oxen',
'paralysis' => 'paralyses',
'parenthesis' => 'parentheses',
'person' => 'people',
'phenomenon' => 'phenomena',
'potato' => 'potatoes',
'quiz' => 'quizzes',
'radius' => 'radii',
'scarf' => 'scarves',
'stimulus' => 'stimuli',
'syllabus' => 'syllabi',
'synthesis' => 'syntheses',
'thief' => 'thieves',
'tooth' => 'teeth',
'was' => 'were',
'wharf' => 'wharves',
'wife' => 'wives',
'woman' => 'women',
'release' => 'releases',
),
);