Route and Results buttons updated.
[speedfreak] / Server / system / config / inflector.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2
3 $config['uncountable'] = array
4 (
5         'access',
6         'advice',
7         'art',
8         'baggage',
9         'dances',
10         'equipment',
11         'fish',
12         'fuel',
13         'furniture',
14         'food',
15         'heat',
16         'honey',
17         'homework',
18         'impatience',
19         'information',
20         'knowledge',
21         'luggage',
22         'money',
23         'music',
24         'news',
25         'patience',
26         'progress',
27         'pollution',
28         'research',
29         'rice',
30         'sand',
31         'series',
32         'sheep',
33         'sms',
34         'species',
35         'staff',
36         'toothpaste',
37         'traffic',
38         'understanding',
39         'water',
40         'weather',
41         'work',
42 );
43
44 $config['irregular'] = array
45 (
46         'child' => 'children',
47         'clothes' => 'clothing',
48         'man' => 'men',
49         'movie' => 'movies',
50         'person' => 'people',
51         'woman' => 'women',
52         'mouse' => 'mice',
53         'goose' => 'geese',
54         'ox' => 'oxen',
55         'leaf' => 'leaves',
56         'course' => 'courses',
57         'size' => 'sizes',
58 );