array-default-unit-terms.php in M Chart 1.0, at components/array-default-unit-terms.php
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * An array of unit terms to generate for the user |
| 5 | */ |
| 6 | |
| 7 | return array( |
| 8 | 'Time' => array( |
| 9 | 'Seconds', |
| 10 | 'Minutes', |
| 11 | 'Hours', |
| 12 | 'Days', |
| 13 | 'Weeks', |
| 14 | 'Months', |
| 15 | 'Quarter', |
| 16 | 'Years', |
| 17 | 'Decades', |
| 18 | 'Centuries', |
| 19 | ), |
| 20 | 'Money' => array( |
| 21 | 'USD', |
| 22 | 'GBP', |
| 23 | 'JPY', |
| 24 | 'CNY', |
| 25 | ), |
| 26 | 'Length' => array( |
| 27 | 'Inch', |
| 28 | 'Foot', |
| 29 | 'Yard', |
| 30 | 'Mile', |
| 31 | 'Millimeter', |
| 32 | 'Centimeter', |
| 33 | 'Meter', |
| 34 | 'Kilometer', |
| 35 | ), |
| 36 | 'Other' => array( |
| 37 | 'Percent', |
| 38 | ), |
| 39 | 'Website/Traffic' => array( |
| 40 | 'Visitors', |
| 41 | 'Unique Visitors', |
| 42 | 'Clicks', |
| 43 | 'Referrers', |
| 44 | 'Active Users', |
| 45 | 'Pages', |
| 46 | ), |
| 47 | 'Sales' => array( |
| 48 | 'Units', |
| 49 | 'CPM', |
| 50 | ), |
| 51 | ); |