PluginProbe
M Chart / 1.0
M Chart v1.0
2.3.2 2.3.1 2.3 2.2.2 2.2.1 2.2 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10 1.10.1 1.11 1.11.1 1.11.2 1.12 1.2 1.2.1 1.3 1.3.1 1.3.2 All 53 releases
← All changes | components/array-default-unit-terms.php +37 -38 1.101.0 View file →
@@ -4,49 +4,48 @@
4 4 * An array of unit terms to generate for the user
5 5 */
6 6
7 7 return array(
8 - esc_html__( 'Time', 'm-chart' ) => array(
9 - esc_html__( 'Seconds', 'm-chart' ),
10 - esc_html__( 'Minutes', 'm-chart' ),
11 - esc_html__( 'Hours', 'm-chart' ),
12 - esc_html__( 'Days', 'm-chart' ),
13 - esc_html__( 'Weeks', 'm-chart' ),
14 - esc_html__( 'Months', 'm-chart' ),
15 - esc_html__( 'Quarter', 'm-chart' ),
16 - esc_html__( 'Years', 'm-chart' ),
17 - esc_html__( 'Decades', 'm-chart' ),
18 - esc_html__( 'Centuries', 'm-chart' ),
8 + 'Time' => array(
9 + 'Seconds',
10 + 'Minutes',
11 + 'Hours',
12 + 'Days',
13 + 'Weeks',
14 + 'Months',
15 + 'Quarter',
16 + 'Years',
17 + 'Decades',
18 + 'Centuries',
19 19 ),
20 - esc_html__( 'Money', 'm-chart' ) => array(
21 - esc_html__( 'USD', 'm-chart' ),
22 - esc_html__( 'EUR', 'm-chart' ),
23 - esc_html__( 'GBP', 'm-chart' ),
24 - esc_html__( 'JPY', 'm-chart' ),
25 - esc_html__( 'CNY', 'm-chart' ),
20 + 'Money' => array(
21 + 'USD',
22 + 'GBP',
23 + 'JPY',
24 + 'CNY',
26 25 ),
27 - esc_html__( 'Length', 'm-chart' ) => array(
28 - esc_html__( 'Inch', 'm-chart' ),
29 - esc_html__( 'Foot', 'm-chart' ),
30 - esc_html__( 'Yard', 'm-chart' ),
31 - esc_html__( 'Mile', 'm-chart' ),
32 - esc_html__( 'Millimeter', 'm-chart' ),
33 - esc_html__( 'Centimeter', 'm-chart' ),
34 - esc_html__( 'Meter', 'm-chart' ),
35 - esc_html__( 'Kilometer', 'm-chart' ),
26 + 'Length' => array(
27 + 'Inch',
28 + 'Foot',
29 + 'Yard',
30 + 'Mile',
31 + 'Millimeter',
32 + 'Centimeter',
33 + 'Meter',
34 + 'Kilometer',
36 35 ),
37 - esc_html__( 'Other', 'm-chart' ) => array(
38 - esc_html__( 'Percent', 'm-chart' ),
36 + 'Other' => array(
37 + 'Percent',
39 38 ),
40 - esc_html__( 'Website/Traffic', 'm-chart' ) => array(
41 - esc_html__( 'Visitors', 'm-chart' ),
42 - esc_html__( 'Unique Visitors', 'm-chart' ),
43 - esc_html__( 'Clicks', 'm-chart' ),
44 - esc_html__( 'Referrers', 'm-chart' ),
45 - esc_html__( 'Active Users', 'm-chart' ),
46 - esc_html__( 'Pages', 'm-chart' ),
39 + 'Website/Traffic' => array(
40 + 'Visitors',
41 + 'Unique Visitors',
42 + 'Clicks',
43 + 'Referrers',
44 + 'Active Users',
45 + 'Pages',
47 46 ),
48 - esc_html__( 'Sales', 'm-chart' ) => array(
49 - esc_html__( 'Units', 'm-chart' ),
50 - esc_html__( 'CPM', 'm-chart' ),
47 + 'Sales' => array(
48 + 'Units',
49 + 'CPM',
51 50 ),
52 51 );