root/trunk/system/config/inflector.php

Revision 3326, 0.7 kB (checked in by Shadowhand, 2 months ago)

Core cleanup:

  • Removed SYSPATH check from all files
  • Changed copyrights to 2007-2008 where they had not been updated
  • Started to add @example doc comments
Line 
1<?php
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    'toothpaste',
36    'traffic',
37    'understanding',
38    'water',
39    'weather',
40    'work',
41);
42
43$config['irregular'] = array
44(
45    'child' => 'children',
46    'clothes' => 'clothing',
47    'man' => 'men',
48    'movie' => 'movies',
49    'person' => 'people',
50    'woman' => 'women',
51    'mouse' => 'mice',
52    'goose' => 'geese',
53    'ox' => 'oxen',
54    'leaf' => 'leaves',
55);
Note: See TracBrowser for help on using the browser.