Welcome to mirror list, hosted at ThFree Co, Russian Federation.

en.json « lang - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4603ee3db64acd3ea02aa71f53ddca996a0739a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
{
    "General": {
        "Locale": "en_US.UTF-8",
        "TranslatorName": "-",
        "TranslatorEmail": "hello@piwik.org",
        "EnglishLanguageName": "English",
        "OriginalLanguageName": "English",
        "LayoutDirection": "ltr",
        "HelloUser": "Hello, %s!",
        "OpenSourceWebAnalytics": "Open Source Web Analytics",
        "DashboardForASpecificWebsite": "Dashboard for a specific website",
        "MultiSitesSummary": "All Websites",
        "AllWebsitesDashboard": "All Websites dashboard",
        "SingleWebsitesDashboard": "Single Website dashboard",
        "API": "API",
        "Documentation": "Documentation",
        "Forums": "Forums",
        "Live": "Live",
        "Remove": "Remove",
        "Flatten": "Flatten",
        "Widgets": "Widgets",
        "Settings": "Settings",
        "Password": "Password",
        "ChangePassword": "Change password",
        "GiveUsYourFeedback": "Give us Feedback!",
        "Unknown": "Unknown",
        "Never": "Never",
        "Required": "%s required",
        "NotValid": "%s is not valid",
        "NotDefined": "%s not defined",
        "Id": "Id",
        "IP": "IP",
        "Error": "Error",
        "Warning": "Warning",
        "Yes": "Yes",
        "No": "No",
        "Delete": "Delete",
        "Report": "Report",
        "Reports": "Reports",
        "RelatedReport": "Related report",
        "RelatedReports": "Related reports",
        "Metric": "Metric",
        "Metrics": "Metrics",
        "Edit": "Edit",
        "Download": "Download",
        "Upload": "Upload",
        "Ok": "Ok",
        "Close": "Close",
        "Cancel": "Cancel",
        "OrCancel": "or %s Cancel %s",
        "And": "and",
        "Logout": "Sign out",
        "Username": "Username",
        "Description": "Description",
        "Done": "Done",
        "PoweredBy": "Powered by",
        "MetricsToPlot": "Metrics to plot",
        "RowsToDisplay": "Rows to display",
        "MetricToPlot": "Metric to plot",
        "RecordsToPlot": "Records to plot",
        "Name": "Name",
        "More": "More",
        "MoreLowerCase": "more",
        "Value": "Value",
        "Total": "Total",
        "TotalVisitsPageviewsRevenue": "(Total: %s visits, %s pageviews, %s revenue)",
        "AverageOrderValue": "Average Order Value",
        "PurchasedProducts": "Purchased Products",
        "EcommerceOrders": "Ecommerce Orders",
        "AbandonedCarts": "Abandoned Carts",
        "TotalRevenue": "Total Revenue",
        "ProductRevenue": "Product Revenue",
        "AveragePrice": "Average Price",
        "AverageQuantity": "Average Quantity",
        "UniquePurchases": "Unique Purchases",
        "ProductConversionRate": "Product Conversion Rate",
        "Quantity": "Quantity",
        "Price": "Price",
        "Subtotal": "Subtotal",
        "Tax": "Tax",
        "Shipping": "Shipping",
        "Discount": "Discount",
        "Details": "Details",
        "Default": "Default",
        "Visit": "Visit",
        "FromReferrer": "from",
        "VisitorIP": "Visitor IP",
        "VisitorID": "Visitor ID",
        "VisitType": "Visitor type",
        "VisitTypeExample": "For example, to select all visitors who have returned to the website, including those who have bought something in their previous visits, the API request would contain %s",
        "DaysSinceLastVisit": "Days since last visit",
        "DaysSinceFirstVisit": "Days since first visit",
        "DaysSinceLastEcommerceOrder": "Days since last Ecommerce order",
        "NumberOfVisits": "Number of visits",
        "VisitConvertedGoal": "Visit converted at least one Goal",
        "VisitConvertedGoalId": "Visit converted a specific Goal Id",
        "EcommerceVisitStatusDesc": "Visit Ecommerce status at the end of the visit",
        "EcommerceVisitStatusEg": "For example, to select all visits that have made an Ecommerce order, the API request would contain %s",
        "VisitConvertedNGoals": "Visit converted %s Goals",
        "NewVisitor": "New Visitor",
        "NewVisits": "New visits",
        "ReturningVisitor": "Returning Visitor",
        "ReturningVisitorAllVisits": "View all visits",
        "Visitor": "Visitor",
        "Date": "Date",
        "Period": "Period",
        "ChooseDate": "Choose date",
        "Today": "Today",
        "Yesterday": "Yesterday",
        "CurrentWeek": "Current Week",
        "CurrentMonth": "Current Month",
        "CurrentYear": "Current Year",
        "DateRange": "Date range:",
        "DateRangeInPeriodList": "Date range",
        "DateRangeFromTo": "From %s to %s",
        "ApplyDateRange": "Apply Date Range",
        "InvalidDateRange": "Invalid Date Range, Please Try Again",
        "DateRangeFrom": "From",
        "DateRangeTo": "To",
        "LastDaysShort": "Last %s days",
        "PreviousDaysShort": "Previous %s days",
        "PreviousDays": "Previous %s days (not including today)",
        "LastDays": "Last %s days (including today)",
        "LoadingData": "Loading data...",
        "Loading": "Loading...",
        "GoTo": "Go to %s",
        "Next": "Next",
        "Previous": "Previous",
        "First": "First",
        "Search": "Search",
        "Others": "Others",
        "Table": "Table",
        "Piechart": "Piechart",
        "TagCloud": "Tag Cloud",
        "VBarGraph": "Vertical bar graph",
        "View": "View",
        "SaveImageOnYourComputer": "To save the image on your computer, right click on the image and select \"Save Image As...\"",
        "RefreshPage": "Refresh the page",
        "Refresh": "Refresh",
        "Visitors": "Visitors",
        "ExportThisReport": "Export this dataset in other formats",
        "ExportAsImage": "Export as Image",
        "Export": "Export",
        "ParameterMustIntegerBetween": "Parameter %s must be an integer value between %s and %s.",
        "YourChangesHaveBeenSaved": "Your changes have been saved.",
        "ErrorRequest": "Oops… problem during the request, please try again.",
        "Actions": "Actions",
        "Action": "Action",
        "ColumnNbUniqVisitors": "Unique visitors",
        "ColumnNbUniqVisitorsDocumentation": "The number of unduplicated visitors coming to your website. Every user is only counted once, even if he visits the website multiple times a day.",
        "ColumnNbVisits": "Visits",
        "ColumnNbVisitsDocumentation": "If a visitor comes to your website for the first time or if he visits a page more than 30 minutes after his last page view, this will be recorded as a new visit.",
        "ColumnPercentageVisits": "% Visits",
        "ColumnNbActions": "Actions",
        "ColumnNbActionsDocumentation": "The number of actions performed by your visitors. Actions can be page views, internal site searches, downloads or outlinks.",
        "Plugins": "Plugins",
        "Plugin": "Plugin",
        "Pages": "Pages",
        "EvolutionOverPeriod": "Evolution over the period",
        "Outlinks": "Outlinks",
        "Downloads": "Downloads",
        "NbActions": "Number of Actions",
        "NbSearches": "Number of Internal Searches",
        "ColumnRevenue": "Revenue",
        "ColumnKeyword": "Keyword",
        "ColumnMaxActions": "Maximum actions in one visit",
        "ColumnSumVisitLength": "Total time spent by visitors (in seconds)",
        "ColumnLabel": "Label",
        "ColumnConversionRate": "Conversion Rate",
        "ColumnConversionRateDocumentation": "The percentage of visits that triggered a goal conversion.",
        "ColumnActionsPerVisit": "Actions per Visit",
        "ColumnActionsPerVisitDocumentation": "The average number of actions (page views, site searches, downloads or outlinks) that were performed during the visits.",
        "VisitDuration": "Avg. Visit Duration (in seconds)",
        "ColumnAvgTimeOnSite": "Avg. Time on Website",
        "ColumnAvgTimeOnSiteDocumentation": "The average duration of a visit.",
        "ColumnVisitDuration": "Visit Duration (in seconds)",
        "ColumnBounceRate": "Bounce Rate",
        "ColumnBounceRateDocumentation": "The percentage of visits that only had a single pageview. This means, that the visitor left the website directly from the entrance page.",
        "ColumnBounceRateForPageDocumentation": "Percentage of visits that started and ended on this page.",
        "ColumnPageBounceRateDocumentation": "The percentage of visits that started on this page and left the website straight away.",
        "ColumnExitRate": "Exit rate",
        "ColumnExitRateDocumentation": "The percentage of visits that left the website after viewing this page.",
        "ColumnTotalPageviews": "Total Pageviews",
        "ColumnViewedAfterSearch": "Clicked in search results",
        "ColumnViewedAfterSearchDocumentation": "The number of times this Page was visited after a visitor did a search on your website, and clicked on this page in the search results.",
        "ColumnDestinationPage": "Destination Page",
        "ColumnPageviews": "Pageviews",
        "ColumnPageviewsDocumentation": "The number of times this page was visited.",
        "ColumnUniquePageviews": "Unique Pageviews",
        "ColumnUniquePageviewsDocumentation": "The number of visits that included this page. If a page was viewed multiple times during one visit, it is only counted once.",
        "ColumnBounces": "Bounces",
        "ColumnBouncesDocumentation": "Number of visits that started and ended on this page. This means that the visitor left the website after viewing only this page.",
        "ColumnUniqueEntrances": "Unique entrances",
        "ColumnEntrances": "Entrances",
        "ColumnEntrancesDocumentation": "Number of visits that started on this page.",
        "ColumnExits": "Exits",
        "ColumnUniqueExits": "Unique exits",
        "ColumnExitsDocumentation": "Number of visits that ended on this page.",
        "ColumnAverageTimeOnPage": "Avg. time on page",
        "TimeOnPage": "Time on page",
        "ColumnAverageTimeOnPageDocumentation": "The average amount of time visitors spent on this page (only the page, not the entire website).",
        "ColumnGenerationTime": "Generation time",
        "ColumnAverageGenerationTime": "Avg. generation time",
        "ColumnAverageGenerationTimeDocumentation": "The average time it took to generate the page. This metric includes the time it took the server to generate the web page, plus the time it took for the visitor to download the response from the server. A lower 'Avg. generation time' means a faster website for your visitors!",
        "ColumnValuePerVisit": "Revenue per Visit",
        "ColumnVisitsWithConversions": "Visits with Conversions",
        "VisitsWith": "Visits with %s",
        "YearsDays": "%1$s years %2$s days",
        "DaysHours": "%1$s days %2$s hours",
        "HoursMinutes": "%1$s hours %2$s min",
        "MinutesSeconds": "%1$s min %2$ss",
        "Seconds": "%ss",
        "Save": "Save",
        "Faq": "FAQ",
        "ForExampleShort": "eg.",
        "YouMustBeLoggedIn": "You must be logged in to access this functionnality.",
        "Website": "Website",
        "Overview": "Overview",
        "GeneralSettings": "General Settings",
        "AllowPiwikArchivingToTriggerBrowser": "Allow Piwik archiving to trigger when reports are viewed from the browser",
        "ArchivingInlineHelp": "For medium to high traffic websites, it is recommended to disable Piwik archiving to trigger from the browser. Instead, we recommend that you setup a cron job to process Piwik reports every hour.",
        "ArchivingTriggerDescription": "Recommended for larger Piwik installs, you need to %ssetup a cron job%s to process the reports automatically.",
        "SeeTheOfficialDocumentationForMoreInformation": "See the %sofficial documentation%s for more information.",
        "ReportsContainingTodayWillBeProcessedAtMostEvery": "Reports for today (or any other Date Range including today) will be processed at most every",
        "NSeconds": "%s seconds",
        "SmallTrafficYouCanLeaveDefault": "For small traffic websites, you can leave the default %s seconds, and access all reports in real time.",
        "MediumToHighTrafficItIsRecommendedTo": "For medium to high traffic websites, we recommend to process reports for today at most every half hour (%s seconds) or every hour (%s seconds).",
        "GraphHelp": "More information about displaying graphs in Piwik.",
        "NoDataForGraph": "No data for this graph.",
        "DataForThisGraphHasBeenPurged": "The data for this graph is more than %s months old and has been purged.",
        "NoDataForTagCloud": "No data for this tag cloud.",
        "DataForThisTagCloudHasBeenPurged": "The data for this tag cloud is more than %s months old and has been purged.",
        "DisplaySimpleTable": "Display simple table",
        "DisplayTableWithMoreMetrics": "Display a table with more metrics",
        "DisplayTableWithGoalMetrics": "Display a table with Goals metrics",
        "PiwikIsACollaborativeProjectYouCanContributeAndDonate": "%1$sPiwik%2$s is a collaborative project brought to you by the %7$sPiwik team%8$s members as well as many other contributors around the globe. If you're a fan of Piwik, you can help: find out %3$sHow to participate in Piwik%4$s, or %5$sdonate now%6$s to help fund Piwik 3.0!",
        "YouAreViewingDemoShortMessage": "You are currently viewing the demo of Piwik",
        "YouAreCurrentlyUsing": "You are currently using Piwik %s.",
        "DownloadFullVersion": "%1$sDownload%2$s the full version! Check out %3$s",
        "NewUpdatePiwikX": "New Update: Piwik %s",
        "AboutPiwikX": "About Piwik %s",
        "PiwikXIsAvailablePleaseUpdateNow": "Piwik %1$s is available. %2$sPlease update now!%3$s (see %4$schanges%5$s).",
        "PiwikXIsAvailablePleaseNotifyPiwikAdmin": "%1$s is available. Please notify the %2$sPiwik administrator%3$s.",
        "NewReportsWillBeProcessedByCron": "When Piwik archiving is not triggered by the browser, new reports will be processed by the crontab.",
        "ReportsWillBeProcessedAtMostEveryHour": "Reports will therefore be processed at most every hour.",
        "IfArchivingIsFastYouCanSetupCronRunMoreOften": "Assuming archiving is fast for your setup, you can setup the crontab to run more frequently.",
        "BackToPiwik": "Back to Piwik",
        "ClickHere": "Click here for more information.",
        "ShortMonth_1": "Jan",
        "ShortMonth_2": "Feb",
        "ShortMonth_3": "Mar",
        "ShortMonth_4": "Apr",
        "ShortMonth_5": "May",
        "ShortMonth_6": "Jun",
        "ShortMonth_7": "Jul",
        "ShortMonth_8": "Aug",
        "ShortMonth_9": "Sep",
        "ShortMonth_10": "Oct",
        "ShortMonth_11": "Nov",
        "ShortMonth_12": "Dec",
        "LongMonth_1": "January",
        "LongMonth_2": "February",
        "LongMonth_3": "March",
        "LongMonth_4": "April",
        "LongMonth_5": "May",
        "LongMonth_6": "June",
        "LongMonth_7": "July",
        "LongMonth_8": "August",
        "LongMonth_9": "September",
        "LongMonth_10": "October",
        "LongMonth_11": "November",
        "LongMonth_12": "December",
        "ShortDay_1": "Mon",
        "ShortDay_2": "Tue",
        "ShortDay_3": "Wed",
        "ShortDay_4": "Thu",
        "ShortDay_5": "Fri",
        "ShortDay_6": "Sat",
        "ShortDay_7": "Sun",
        "LongDay_1": "Monday",
        "LongDay_2": "Tuesday",
        "LongDay_3": "Wednesday",
        "LongDay_4": "Thursday",
        "LongDay_5": "Friday",
        "LongDay_6": "Saturday",
        "LongDay_7": "Sunday",
        "Daily": "Daily",
        "Weekly": "Weekly",
        "Monthly": "Monthly",
        "DailyReport": "daily",
        "WeeklyReport": "weekly",
        "MonthlyReport": "monthly",
        "YearlyReport": "yearly",
        "DailyReports": "Daily reports",
        "WeeklyReports": "Weekly reports",
        "MonthlyReports": "Monthly reports",
        "YearlyReports": "Yearly reports",
        "RangeReports": "Custom date ranges",
        "ContinueToPiwik": "Continue to Piwik",
        "HelpTranslatePiwik": "Maybe you would like to %1$shelp us improve the Piwik translations%2$s?",
        "ConfigFileIsNotWritable": "The Piwik configuration file %s is not writable, some of your changes might not be saved. %s Please change permissions of the config file to make it writable.",
        "StatisticsAreNotRecorded": "Piwik Visitor Tracking is currently disabled! Re-enable tracking by setting record_statistics = 1 in your config\/config.ini.php file.",
        "ExceptionDatabaseVersion": "Your %1$s version is %2$s but Piwik requires at least %3$s.",
        "ExceptionIncompatibleClientServerVersions": "Your %1$s client version is %2$s which is incompatible with server version %3$s.",
        "ExceptionMissingFile": "Missing file: %s",
        "ExceptionFilesizeMismatch": "File size mismatch: %1$s (expected length: %2$s, found: %3$s)",
        "ExceptionFileIntegrity": "Integrity check failed: %s",
        "ExceptionNonceMismatch": "Could not verify the security token on this form.",
        "PleaseSpecifyValue": "Please specify a value for '%s'.",
        "ExceptionMethodNotFound": "The method '%s' does not exist or is not available in the module '%s'.",
        "ExceptionInvalidRendererFormat": "Renderer format '%s' not valid. Try any of the following instead: %s.",
        "ExceptionInvalidReportRendererFormat": "Report format '%s' not valid. Try any of the following instead: %s.",
        "ExceptionInvalidStaticGraphType": "Static graph type '%s' not valid. Try any of the following instead: %s.",
        "ExceptionInvalidAggregateReportsFormat": "Aggregate reports format '%s' not valid. Try any of the following instead: %s.",
        "ExceptionInvalidPeriod": "The period '%s' is not supported. Try any of the following instead: %s",
        "ExceptionInvalidDateRange": "The date '%s' is not a correct date range. It should have the following format: %s.",
        "ExceptionUndeletableFile": "Unable to delete %s",
        "ExceptionPrivilege": "You can't access this resource as it requires a %s access.",
        "ExceptionPrivilegeAtLeastOneWebsite": "You can't access this resource as it requires an %s access for at least one website.",
        "ExceptionPrivilegeAccessWebsite": "You can't access this resource as it requires an %s access for the website id = %d.",
        "ExceptionInvalidArchiveTimeToLive": "Today archive time to live must be a number of seconds greater than zero",
        "ExceptionConfigurationFileNotFound": "The configuration file {%s} has not been found.",
        "ExceptionUnreadableFileDisabledMethod": "The configuration file {%s} could not be read. Your host may have disabled %s.",
        "ExceptionInvalidToken": "Token is not valid.",
        "ExceptionInvalidDateFormat": "Date format must be: %s or any keyword supported by the %s function (see %s for more information)",
        "ExceptionLanguageFileNotFound": "Language file '%s' not found.",
        "ExceptionUnableToStartSession": "Unable to start session.",
        "ExceptionCheckUserHasSuperUserAccessOrIsTheUser": "The user has to be either a Super User or the user '%s' itself.",
        "WarningFileIntegrityNoManifest": "File integrity check could not be performed due to missing manifest.inc.php.",
        "WarningFileIntegrityNoManifestDeployingFromGit": "If you are deploying Piwik from Git, this message is normal.",
        "WarningFileIntegrityNoMd5file": "File integrity check could not be completed due to missing md5_file() function.",
        "FileIntegrityWarningExplanation": "File integrity check failed and reported some errors. This is most likely due to a partial or failed upload of some of the Piwik files. You should reupload all the Piwik files in BINARY mode and refresh this page until it shows no error.",
        "UseSMTPServerForEmail": "Use SMTP server for e-mail",
        "SmtpServerAddress": "SMTP server address",
        "SmtpPort": "SMTP Port",
        "AuthenticationMethodSmtp": "Authentication method for SMTP",
        "SmtpUsername": "SMTP username",
        "SmtpPassword": "SMTP password",
        "SmtpEncryption": "SMTP encryption",
        "SelectYesIfYouWantToSendEmailsViaServer": "Select \"Yes\" if you want or have to send e-mail via a named server instead of the local mail function",
        "OptionalSmtpPort": "Optional. Defaults to 25 for unencrypted and TLS SMTP, and 465 for SSL SMTP.",
        "OnlyUsedIfUserPwdIsSet": "Only used if a username\/password is set, ask your provider if you are unsure which method to use.",
        "OnlyEnterIfRequired": "Only enter a username if your SMTP server requires it.",
        "OnlyEnterIfRequiredPassword": "Only enter a password if your SMTP server requires it.",
        "WarningPasswordStored": "%sWarning:%s This password will be stored in the config file visible to everybody who can access it.",
        "EncryptedSmtpTransport": "Enter the transport layer encryption required by your SMTP server.",
        "InvalidResponse": "The received data is invalid.",
        "ChooseLanguage": "Choose language",
        "ChoosePeriod": "Choose period",
        "ChooseWebsite": "Choose website",
        "Language": "Language",
        "PleaseUpdatePiwik": "Please update your Piwik",
        "RequestTimedOut": "A data request to %s timed out. Please try again.",
        "UsePlusMinusIconsDocumentation": "Use the plus and minus icons on the left to navigate.",
        "BrokenDownReportDocumentation": "It is broken down into various reports, which are displayed in sparklines at the bottom of the page. You can enlarge the graphs by clicking on the report you'd like to see.",
        "ChangeTagCloudView": "Please note, that you can view the report in other ways than as a tag cloud. Use the controls at the bottom of the report to do so.",
        "Recommended": "(recommended)",
        "NotRecommended": "(not recommended)",
        "Goal": "Goal",
        "Outlink": "Outlink",
        "Help": "Help",
        "DailySum": "daily sum",
        "AfterEntry": "after entering here",
        "Metadata": "Metadata",
        "XFromY": "%1$s from %2$s",
        "OneVisit": "1 visit",
        "NVisits": "%s visits",
        "OneAction": "1 action",
        "EvolutionSummaryGeneric": "%1$s in %2$s compared to %3$s in %4$s. Evolution: %5$s",
        "OneDay": "1 day",
        "NDays": "%s days",
        "OneMinute": "1 minute",
        "NMinutes": "%s minutes",
        "MainMetrics": "Main metrics",
        "Mobile": "Mobile",
        "Desktop": "Desktop",
        "Rows": "Rows",
        "GeneralInformation": "General Information",
        "ReportGeneratedFrom": "This report was generated using data from %s.",
        "ClickToChangePeriod": "Click again to change the period.",
        "NotInstalled": "Not Installed",
        "Installed": "Installed",
        "Broken": "Broken",
        "InfoFor": "Info for %s",
        "Add": "Add",
        "CannotUnzipFile": "Cannot unzip file %1$s: %2$s",
        "GetStarted": "Get started",
        "Continue": "Continue",
        "Note": "Note",
        "DownloadFail_FileExists": "The file %s already exists!",
        "DownloadPleaseRemoveExisting": "If you want it to be replaced, please remove the existing file.",
        "DownloadFail_HttpRequestFail": "Could not download the file! Something might be wrong with the website you're downloading from. You could try again later or get the file by yourself.",
        "DownloadFail_FileExistsContinue": "Trying to continue the download for %s, but a fully downloaded file already exists!",
        "Show": "show",
        "Hide": "hide",
        "Donate": "Donate",
        "MoreDetails": "More Details",
        "Source": "Source",
        "Options": "Options",
        "Matches": "Matches",
        "OperationEquals": "Equals",
        "OperationNotEquals": "Not Equals",
        "OperationAtMost": "At most",
        "OperationAtLeast": "At least",
        "OperationLessThan": "Less than",
        "OperationGreaterThan": "Greater than",
        "OperationContains": "Contains",
        "OperationDoesNotContain": "Does not contain",
        "OperationIs": "Is",
        "OperationIsNot": "Is not",
        "DefaultAppended": "(default)",
        "SearchNoResults": "No results",
        "ReadThisToLearnMore": "%1$sRead this to learn more.%2$s",
        "Summary": "Summary",
        "SeeAll": "see all",
        "YearShort": "yr",
        "DaySu": "Su",
        "DayMo": "Mo",
        "DayTu": "Tu",
        "DayWe": "We",
        "DayTh": "Th",
        "DayFr": "Fr",
        "DaySa": "Sa",
        "LoadingPopover": "Loading %s...",
        "LoadingPopoverFor": "Loading %s for",
        "RowEvolutionRowActionTooltipTitle": "Open Row Evolution",
        "RowEvolutionRowActionTooltip": "See how the metrics for this row changed over time",
        "TransitionsRowActionTooltipTitle": "Open Transitions",
        "TransitionsRowActionTooltip": "See what visitors did before and after viewing this page",
        "OverlayRowActionTooltipTitle": "Open Page Overlay",
        "OverlayRowActionTooltip": "See analytics data directly on your website (opens new tab)",
        "ReportRatioTooltip": "'%1$s' represents %2$s of %3$s %4$s with %5$s.",
        "TotalRatioTooltip": "This is %1$s of all %2$s %3$s.",
        "XComparedToY": "%1$s compared to %2$s",
        "JsTrackingTag": "JavaScript Tracking Code",
        "ViewDocumentationFor": "View documentation for %1$s",
        "WellDone": "Well done!",
        "All": "All",
        "Segment": "Segment",
        "TimeAgo": "%s ago"
    },
    "Actions": {
        "PluginDescription": "Reports about the page views, the outlinks and downloads. Outlinks and Downloads tracking is automatic! You can also track your internal website's Search Engine.",
        "SubmenuPagesEntry": "Entry pages",
        "WidgetPagesEntry": "Entry Pages",
        "SubmenuPagesExit": "Exit pages",
        "WidgetPagesExit": "Exit Pages",
        "EntryPageTitles": "Entry page titles",
        "WidgetEntryPageTitles": "Entry Page Titles",
        "ExitPageTitles": "Exit page titles",
        "WidgetExitPageTitles": "Exit Page Titles",
        "SubmenuPageTitles": "Page titles",
        "WidgetPageTitles": "Page Titles",
        "WidgetSearchKeywords": "Site Search Keywords",
        "WidgetSearchCategories": "Search Categories",
        "WidgetSearchNoResultKeywords": "Search Keywords with No Results",
        "WidgetPageUrlsFollowingSearch": "Pages Following a Site Search",
        "WidgetPageTitlesFollowingSearch": "Page Titles Following a Site Search",
        "PageUrls": "Page URLs",
        "SubmenuSitesearch": "Site Search",
        "PagesReportDocumentation": "This report contains information about the page URLs that have been visited. %s The table is organized hierarchically, the URLs are displayed as a folder structure.",
        "PageTitlesReportDocumentation": "This report contains information about the titles of the pages that have been visited. %s The page title is the HTML %s Tag that most browsers show in their window title.",
        "OutlinksReportDocumentation": "This report shows a hierarchical list of outlink URLs that were clicked by your visitors.",
        "OutlinkDocumentation": "An outlink is a link that leads the visitor away from your website (to another domain).",
        "DownloadsReportDocumentation": "In this report, you can see which files your visitors have downloaded. %s What Piwik counts as a download is the click on a download link. Whether the download was completed or not isn't known to Piwik.",
        "ColumnClicks": "Clicks",
        "ColumnClicksDocumentation": "The number of times this link was clicked.",
        "ColumnUniqueClicks": "Unique Clicks",
        "ColumnUniqueClicksDocumentation": "The number of visits that involved a click on this link. If a link was clicked multiple times during one visit, it is only counted once.",
        "ColumnUniqueDownloads": "Unique Downloads",
        "ColumnUniqueOutlinks": "Unique Outlinks",
        "ColumnPageName": "Page Name",
        "ColumnPageURL": "Page URL",
        "ColumnSearchCategory": "Search Category",
        "ColumnSearchResultsCount": "Search Results Count",
        "SiteSearchKeyword": "Keyword (Site Search)",
        "ColumnClickedURL": "Clicked URL",
        "ColumnDownloadURL": "Download URL",
        "ColumnEntryPageURL": "Entry Page URL",
        "ColumnEntryPageTitle": "Entry Page title",
        "ColumnExitPageURL": "Exit Page URL",
        "ColumnExitPageTitle": "Exit Page Title",
        "ColumnNoResultKeyword": "Keyword with No Search Result",
        "ColumnSearches": "Searches",
        "ColumnSiteSearchKeywords": "Unique Keywords",
        "ColumnSearchesDocumentation": "The number of visits that searched for this keyword on your website's search engine.",
        "ColumnSearchExits": "% Search Exits",
        "ColumnSearchExitsDocumentation": "The percentage of visits that left the website after searching for this Keyword on your Site Search engine.",
        "ColumnPagesPerSearch": "Search Results pages",
        "ColumnPagesPerSearchDocumentation": "Visitors will search on your website, and sometimes click \"next\" to view more results. This is the average number of search results pages viewed for this keyword.",
        "EntryPagesReportDocumentation": "This report contains information about the entry pages that were used during the specified period. An entry page is the first page that a user views during his visit. %s The entry URLs are displayed as a folder structure.",
        "EntryPageTitlesReportDocumentation": "This report contains information about the titles of entry pages that were used during the specified period.",
        "ExitPagesReportDocumentation": "This report contains information about the exit pages that occurred during the specified period. An exit page is the last page that a user views during his visit. %s The exit URLs are displayed as a folder structure.",
        "ExitPageTitlesReportDocumentation": "This report contains information about the titles of exit pages that occurred during the specified period.",
        "SiteSearchKeywordsDocumentation": "This report lists the Search Keywords that visitors searched for on your internal Search Engine.",
        "LearnMoreAboutSiteSearchLink": "Learn more about Tracking how your visitors use your Search engine.",
        "SiteSearchIntro": "Tracking searches that visitors make on your website is a very effective way to learn more about what your audience is looking for, it can help find ideas for new content, new Ecommerce products that potential customers might be searching for, and generally improve the visitors' experience on your website.",
        "SiteSearchCategories1": "This report lists the Categories that visitors selected when they made a Search on your website.",
        "SiteSearchCategories2": "For example, Ecommerce websites typically have a \"Category\" selector so that visitors can restrict their searches to all products in a specific Category.",
        "SiteSearchKeywordsNoResultDocumentation": "This report lists the Search Keywords that did not return any Search result: maybe the search engine algorithm can be improved, or maybe your visitors are looking for content that is not (yet) on your website?",
        "SiteSearchFollowingPagesDoc": "When visitors search on your website, they are looking for a particular page, content, product, or service. This report lists the pages that were clicked the most after an internal search. In other words, the list of pages the most searched for by visitors already on your website.",
        "AvgGenerationTimeTooltip": "Average based on %s hit(s) %s between %s and %s",
        "OneSearch": "1 search"
    },
    "API": {
        "PluginDescription": "All the data in Piwik is available through simple APIs. This plugin is the web service entry point, that you can call to get your Web Analytics data in xml, json, php, csv, etc.",
        "QuickDocumentationTitle": "API quick documentation",
        "GenerateVisits": "If you don't have data for today you can first generate some data using the %s plugin. You can enable the %s plugin, then click on the 'Visitor Generator' menu in the Piwik Admin area.",
        "MoreInformation": "For more information about the Piwik APIs, please have a look at the %s Introduction to Piwik API %s and the %s Piwik API Reference %s.",
        "UserAuthentication": "User authentication",
        "UsingTokenAuth": "If you want to %s request data within a script, a crontab, etc. %s you need to add the parameter %s to the API calls URLs that require authentication.",
        "KeepTokenSecret": "This token_auth is as secret as your login and password, %s do not share it%s!",
        "LoadedAPIs": "Successfully loaded %s APIs",
        "TopLinkTooltip": "Access your Web Analytics data programmatically through a simple API in json, xml, etc."
    },
    "CoreAdminHome": {
        "PluginDescription": "Administration area of Piwik.",
        "MenuDiagnostic": "Diagnostic",
        "MenuGeneralSettings": "General settings",
        "MenuManage": "Manage",
        "UpdateSettings": "Update settings",
        "ArchivingSettings": "Archiving settings",
        "SendPluginUpdateCommunication": "Send me an email notification when there is a new plugin update",
        "SendPluginUpdateCommunicationHelp": "An email will be sent to Super Users when there is a new version available for a plugin. ",
        "Administration": "Administration",
        "EmailServerSettings": "Email server settings",
        "OptOutForYourVisitors": "Piwik opt-out for your visitors",
        "OptOutExplanation": "Piwik is dedicated to providing privacy on the Internet. To provide your visitors with the choice of opting-out of Piwik Web Analytics, you can add the following HTML code on one of your website page, for example in a Privacy Policy page.",
        "OptOutExplanationBis": "This code will display an Iframe containing a link for your visitors to opt-out of Piwik by setting an opt-out cookie in their browsers. %s Click here%s to view the content that will be displayed by the iFrame.",
        "OptOutComplete": "Opt-out complete; your visits to this website will not be recorded by the Web Analytics tool.",
        "OptOutCompleteBis": "Note that if you clear your cookies, delete the opt-out cookie, or if you change computers or Web browsers, you will need to perform the opt-out procedure again.",
        "YouMayOptOut": "You may choose not to have a unique web analytics cookie identification number assigned to your computer to avoid the aggregation and analysis of data collected on this website.",
        "YouMayOptOutBis": "To make that choice, please click below to receive an opt-out cookie.",
        "YouAreOptedIn": "You are currently opted in.",
        "YouAreOptedOut": "You are currently opted out.",
        "ClickHereToOptOut": "Click here to opt out.",
        "ClickHereToOptIn": "Click here to opt in.",
        "BrandingSettings": "Branding settings",
        "CustomLogoHelpText": "You can customize the Piwik logo which will be displayed in the user interface and email reports.",
        "CustomLogoFeedbackInfo": "If you customize the Piwik logo, you might also be interested to hide the %s link in the top menu. To do so, you can disable the Feedback plugin in the %sManage Plugins%s page.",
        "UseCustomLogo": "Use a custom logo",
        "LogoUpload": "Select a Logo to upload",
        "LogoUploadHelp": "Please upload a file in %s formats with a minimum height of %s pixels.",
        "LogoNotWriteableInstruction": "To use your custom logo instead of the default Piwik logo, give write permission to this directory: %1$s Piwik needs write access for your logos stored in the files %2$s.",
        "TrustedHostSettings": "Trusted Piwik Hostname",
        "TrustedHostConfirm": "Are you sure you want to change the trusted Piwik hostname?",
        "PiwikIsInstalledAt": "Piwik is installed at",
        "ValidPiwikHostname": "Valid Piwik Hostname",
        "InvalidPluginsWarning": "The following plugins are not compatible with %1$s and could not be loaded: %2$s. ",
        "InvalidPluginsYouCanUninstall": "You can update or uninstall these plugins on the %1$sManage Plugins%2$s page.",
        "JSTrackingIntro1": "You can track visitors to your website many different ways. The recommended way to do it is through JavaScript. To use this method you must make sure every webpage of your website has some JavaScript code, which you can generate here.",
        "JSTrackingIntro2": "Once you have the JavaScript tracking code for your website, copy and paste it to all the pages you want to track with Piwik.",
        "JSTrackingIntro3": "In most websites, blogs, CMS, etc. you can use a pre-made plugin to do the technical work for you. (See our %1$slist of plugins used to integrate Piwik%2$s.) If no plugin exists you can edit your website templates and add this code in the \"footer\" file.",
        "JSTrackingIntro4": "If you don't want to use JavaScript to track visitors, %1$sgenerate an image tracking link below%2$s.",
        "JSTrackingIntro5": "If you want to do more than track page views, please check out the %1$sPiwik Javascript Tracking documentation%2$s for the list of available functions. Using these functions you can track goals, custom variables, ecommerce orders, abandoned carts and more.",
        "TrackingCode": "Tracking Code",
        "JSTracking_MergeSubdomains": "Track visitors across all subdomains of",
        "JSTracking_MergeSubdomainsDesc": "So if one visitor visits %1$s and %2$s, they will be counted as a unique visitor.",
        "JSTracking_MergeAliases": "In the \"Outlinks\" report, hide clicks to known alias URLs of",
        "JSTracking_MergeAliasesDesc": "So clicks on links to Alias URLs (eg. %s) will not be counted as \"Outlink\".",
        "JSTracking_GroupPageTitlesByDomain": "Prepend the site domain to the page title when tracking",
        "JSTracking_GroupPageTitlesByDomainDesc1": "So if someone visits the 'About' page on blog.%1$s it will be recorded as 'blog \/ About'. This is the easiest way to get an overview of your traffic by sub-domain.",
        "JSTracking_VisitorCustomVars": "Track custom variables for this visitor",
        "JSTracking_VisitorCustomVarsDesc": "For example, with variable name \"Type\" and value \"Customer\".",
        "JSTracking_PageCustomVars": "Track a custom variable for each page view",
        "JSTracking_PageCustomVarsDesc": "For example, with variable name \"Category\" and value \"White Papers\".",
        "JSTracking_EnableDoNotTrack": "Enable client side DoNotTrack detection",
        "JSTracking_EnableDoNotTrackDesc": "So tracking requests will not be sent if visitors do not wish to be tracked.",
        "JSTracking_EnableDoNotTrack_AlreadyEnabled": "Note: Server side DoNotTrack support has been enabled, so this option will have no effect.",
        "JSTracking_CustomCampaignQueryParam": "Use custom query parameter names for the campaign name & keyword",
        "JSTracking_CampaignNameParam": "Campaign Name parameter",
        "JSTracking_CampaignKwdParam": "Campaign Keyword parameter",
        "JSTracking_CodeNote": "Make sure this code is on every page of your website before the %1$s tag.",
        "JSTracking_CustomCampaignQueryParamDesc": "Note: %1$sPiwik will automatically detect Google Analytics parameters.%2$s",
        "ImageTrackingIntro1": "When a visitor has disabled JavaScript, or when JavaScript cannot be used, you can use an image tracking link to track visitors.",
        "ImageTrackingIntro2": "Generate the link below and copy-paste the generated HTML in the page. If you're using this as a fallback for JavaScript tracking, you can surround it in %1$s tags.",
        "ImageTrackingIntro3": "For the whole list of options you can use with an image tracking link, see the %1$sTracking API Documentation%2$s.",
        "ImageTracking": "Image Tracking",
        "TrackAGoal": "Track a goal",
        "WithOptionalRevenue": "with optional revenue",
        "ImageTrackingLink": "Image Tracking Link",
        "ImportingServerLogs": "Importing Server Logs",
        "ImportingServerLogsDesc": "An alternative to tracking visitors through the browser (either via JavaScript or an image link) is to continuously import server logs. Learn more about %1$sServer Log File Analytics%2$s.",
        "JavaScriptTracking": "JavaScript Tracking",
        "LatestStableRelease": "The latest stable release",
        "LatestBetaRelease": "The latest beta release",
        "ForBetaTestersOnly": "For beta testers only",
        "CheckReleaseGetVersion": "When checking for new version of Piwik, always get",
        "DevelopmentProcess": "While our %sdevelopment process%s includes thousands of automated tests, Beta Testers play a key role in achieving the \"No bug policy\" in Piwik.",
        "StableReleases": "If Piwik is a critical part of your business, we recommend you use the latest stable release. If you use the latest beta and you find a bug or have a suggestion, please %ssee here%s.",
        "PluginSettingsIntro": "Here you can change the settings for the following 3rd party plugins:",
        "PluginSettingsValueNotAllowed": "The value for field \"%s\" in plugin \"%s\" is not allowed",
        "PluginSettingChangeNotAllowed": "You are not allowed to change the value of the setting \"%s\" in plugin \"%s\"",
        "PluginSettings": "Plugin settings"
    },
    "CoreHome": {
        "InjectedHostWarningIntro": "You are now accessing Piwik from %1$s, but Piwik has been configured to run at this address: %2$s.",
        "InjectedHostSuperUserWarning": "Piwik may be misconfigured (for example, if Piwik was recently moved to a new server or URL). You can either %1$sclick here and add %2$s as the valid Piwik hostname (if you trust it)%3$s, or %4$sclick here and go to %5$s to access Piwik safely%6$s.",
        "InjectedHostNonSuperUserWarning": "%1$sClick here to access Piwik safely%2$s and remove this warning. You may also want to contact your Piwik administrator and notify them about this issue (%3$sclick here to email%4$s).",
        "InjectedHostEmailSubject": "Piwik was accessed with an unknown hostname: %s",
        "InjectedHostEmailBody": "Hello, I tried to access Piwik today and encountered the unknown hostname warning.",
        "CheckForUpdates": "Check for updates",
        "YouAreUsingTheLatestVersion": "You are using the latest version of Piwik!",
        "MakeADifference": "Make a difference: %1$sDonate now%2$s to fund Piwik 2.0!",
        "DonateCall1": "Piwik will always cost you nothing to use, but that doesn't mean it costs us nothing to make.",
        "DonateCall2": "Piwik needs your continued support to grow and thrive.",
        "DonateCall3": "If you feel that Piwik has added significant value to your business or endeavour, %1$splease consider donating!%2$s",
        "HowMuchIsPiwikWorth": "How much is Piwik worth to you?",
        "SupportPiwik": "Support Piwik!",
        "OnlyForSuperUserAccess": "This widget is only displayed to users having Super User access.",
        "DonateFormInstructions": "Click on the slider to select an amount, then click subscribe to donate.",
        "SubscribeAndBecomePiwikSupporter": "Proceed to a secure credit card payment page (Paypal) to become a Piwik Supporter!",
        "CheckPiwikOut": "Check Piwik out!",
        "CloseWidgetDirections": "You can close this widget by clicking on the 'X' icon at the top of the widget.",
        "ShareThis": "Share this",
        "ViewAllPiwikVideoTutorials": "View all Piwik Video Tutorials",
        "SharePiwikShort": "Piwik! Free and open source web analytics. Own your data.",
        "SharePiwikLong": "Hi! I just found a great piece of open source software: Piwik!\n\nPiwik will let you track visitors to your website for free. You should definitely check it out!",
        "PluginDescription": "Web Analytics Reports Structure.",
        "WebAnalyticsReports": "Web Analytics Reports",
        "NoPrivilegesAskPiwikAdmin": "You are logged in as '%s' but it seems you don't have any permission set in Piwik. %s Ask your Piwik administrator (click to email)%s to give you 'view' access to a website.",
        "JavascriptDisabled": "JavaScript must be enabled in order for you to use Piwik in standard view.<br \/>However, it seems JavaScript is either disabled or not supported by your browser.<br \/>To use standard view, enable JavaScript by changing your browser options, then %1$stry again%2$s.<br \/>",
        "ThereIsNoDataForThisReport": "There is no data for this report.",
        "DataForThisReportHasBeenPurged": "The data for this report is more than %s months old and has been purged.",
        "CategoryNoData": "No data in this category. Try to \"Include all population\".",
        "ShowJSCode": "Show the JavaScript code to insert",
        "IncludeRowsWithLowPopulation": "Rows with low population are hidden %s Show all rows",
        "ExcludeRowsWithLowPopulation": "All rows are shown %s Exclude low population",
        "DataTableIncludeAggregateRows": "Aggregate rows are hidden %s Show them",
        "DataTableExcludeAggregateRows": "Aggregate rows are shown %s Hide them",
        "Default": "default",
        "PageOf": "%1$s of %2$s",
        "FlattenDataTable": "The report is hierarchical %s Make it flat",
        "UnFlattenDataTable": "The report is flat %s Make it hierarchical",
        "DateFormat": "%longDay% %day% %longMonth% %longYear%",
        "ShortDateFormat": "%shortDay% %day% %shortMonth%",
        "ShortDateFormatWithYear": "%day% %shortMonth% %shortYear%",
        "ShortMonthFormat": "%shortMonth% %longYear%",
        "LongMonthFormat": "%longYear%, %longMonth%",
        "ShortWeekFormat": "%dayFrom% %shortMonthFrom% - %dayTo% %shortMonthTo% %shortYearTo%",
        "LongWeekFormat": "%dayFrom% %longMonthFrom% - %dayTo% %longMonthTo% %longYearTo%",
        "PeriodDay": "Day",
        "PeriodWeek": "Week",
        "PeriodMonth": "Month",
        "PeriodYear": "Year",
        "PeriodRange": "Range",
        "PeriodDays": "days",
        "PeriodWeeks": "weeks",
        "PeriodMonths": "months",
        "PeriodYears": "years",
        "ReportGeneratedOn": "Report generated on %s",
        "ReportGeneratedXAgo": "Report generated %s ago",
        "MakeOneTimeDonation": "Make a one time donation, instead.",
        "TableNoData": "No data for this table.",
        "ExternalHelp": "Help (opens in new tab)"
    },
    "PrivacyManager": {
        "TeaserHeadline": "Privacy Settings",
        "Teaser": "On this page, you can customize Piwik to make it privacy compliant with existing legislations, by: %s anonymizing the visitor IP%s, %s automatically remove old visitor logs from the database%s, and %s providing an Opt-out mechanism for your website%s.",
        "MenuPrivacySettings": "Privacy",
        "PluginDescription": "Customize Piwik to make it privacy compliant with existing legislations.",
        "UseAnonymizeIp": "Anonymize Visitors' IP addresses",
        "AnonymizeIpInlineHelp": "Anonymize the last byte(s) of visitors IP addresses to comply with your local privacy laws\/guidelines.",
        "AnonymizeIpDescription": "Select \"Yes\" if you want Piwik not to track fully qualified IP-Addresses.",
        "AnonymizeIpMaskLengtDescription": "Select how many bytes of the visitors' IPs should be masked.",
        "AnonymizeIpMaskLength": "%s byte(s) - e.g. %s",
        "DeleteDataSettings": "Delete old visitor logs and reports",
        "DeleteLogInfo": "Logs from the following tables will be deleted: %s",
        "UseDeleteLog": "Regularly delete old visitor logs from the database",
        "DeleteDataDescription": "You can configure Piwik to regularly delete old visitor logs and\/or processed reports to keep your database size small.",
        "DeleteDataDescription2": "If desired, pre-processed reports will not be deleted, only visit, pageview and conversion log data will be deleted. Or, the pre-processed reports can be deleted and the log data can be kept.",
        "DeleteLogDescription2": "When you enable automatic log deletion, you must ensure that all previous daily reports have been processed, so that no data is lost.",
        "DeleteLogsOlderThan": "Delete logs older than",
        "DeleteDataInterval": "Delete old data every",
        "DeleteMaxRows": "Maximum number of rows to delete in one run:",
        "DeleteMaxRowsNoLimit": "no limit",
        "LastDelete": "Last deletion was on",
        "NextDelete": "Next scheduled deletion in",
        "ClickHereSettings": "Click here to access the %s settings.",
        "LeastDaysInput": "Please specify a number of days greater than %s.",
        "LeastMonthsInput": "Please specify a number of months greater than %s.",
        "UseDeleteReports": "Regularly delete old reports from the database",
        "DeleteReportsOlderThan": "Delete reports older than",
        "DeleteReportsInfo": "If enabled, old reports will be deleted. %sWe recommend to enable only when your database space is limited.%s",
        "DeleteReportsInfo2": "If you have not enabled \"%s\", old reports will be recreated automatically when requested.",
        "DeleteReportsInfo3": "If you have enabled \"%s\", the data will be permanently lost.",
        "DeleteReportsDetailedInfo": "Data from the database numeric archive tables (%s) and blob archive tables (%s) will be deleted.",
        "DeleteSchedulingSettings": "Scheduling settings",
        "ReportsDataSavedEstimate": "Database size",
        "KeepBasicMetrics": "Keep basic metrics (visits, page views, bounce rate, goal conversions, ecommerce conversions, etc.)",
        "KeepDataFor": "Keep all data for:",
        "DeleteLogsConfirm": "You are about to enable log data deletion. If old log data is removed, and reports haven't already been created, you will not be able to see historical past analytics data. Are you sure you want to do this?",
        "DeleteReportsConfirm": "You are about to enable report data deletion. If old reports are removed, you will have to re-process them in order view them. Are you sure you want to do this?",
        "DeleteBothConfirm": "You are about to enable both log data deletion & report data deletion. This will permanently remove your ability to view old analytics data. Are you sure you want to do this?",
        "PurgeNow": "Purge DB Now",
        "PurgingData": "Purging data...",
        "SaveSettingsBeforePurge": "You have changed the data deletion settings. Please save them before starting a purge.",
        "PurgeNowConfirm": "You are about to permanently delete data from your database. Are you sure you want to continue?",
        "CurrentDBSize": "Current database size",
        "EstimatedDBSizeAfterPurge": "Estimated database size after purge",
        "EstimatedSpaceSaved": "Estimated space saved",
        "KeepReportSegments": "For kept data above, also keep segmented reports",
        "DoNotTrack_SupportDNTPreference": "Support Do Not Track preference",
        "DoNotTrack_Description": "Do Not Track is a technology and policy proposal that enables users to opt out of tracking by websites they do visit, including analytics services, advertising networks, and social platforms.",
        "DoNotTrack_Enabled": "You are currently respecting your users Privacy, Bravo!",
        "DoNotTrack_EnabledMoreInfo": "When users have set their web browser to \"I do not want to be tracked\" (DoNotTrack is enabled) then Piwik will not track these visits.",
        "DoNotTrack_Disabled": "Piwik is currently tracking all visitors, even when they specified \"I do not want to be tracked\" in their web browsers.",
        "DoNotTrack_DisabledMoreInfo": "We recommend to respect your visitors privacy and enable DoNotTrack support.",
        "DoNotTrack_Enable": "Enable Do Not Track support",
        "DoNotTrack_Disable": "Disable Do Not Track support",
        "GetPurgeEstimate": "Get purge estimate",
        "CannotLockSoDeleteLogActions": "The log_action table will not be purged: please grant the LOCK TABLES privilege to the '%s' MYSQL user.",
        "DBPurged": "DB purged.",
        "GeolocationAnonymizeIpNote": "Note: Geolocation will have approximately the same results with 1 byte anonymized. With 2 bytes or more, Geolocation will be inaccurate.",
        "UseAnonymizedIpForVisitEnrichment": "Also use the Anonymized IP addresses when enriching visits.",
        "UseAnonymizedIpForVisitEnrichmentNote": "Plugins such as Geo Location via IP and Provider improve visitor's metadata. By default these plugins use the anonymized IP addresses. If you select 'No', then the non-anonymized full IP address will be used instead, resulting in less privacy but better data accuracy.",
        "RecommendedForPrivacy": "(recommended for privacy)",
        "SeeAlsoOurOfficialGuidePrivacy": "See also our official guide: %sWeb Analytics Privacy%s"
    },
    "CorePluginsAdmin": {
        "PluginDescription": "Plugins Administration Interface.",
        "Themes": "Themes",
        "PluginsManagement": "Manage Plugins",
        "ThemesManagement": "Manage Themes",
        "MainDescription": "Plugins extend and expand the functionality of Piwik. Once a plugin is installed, you may activate it or deactivate it here.",
        "ThemesDescription": "Themes can change the appearance of Piwik user interface, and provide a completely new visual experience to enjoy your analytics reports.",
        "DoMoreContactPiwikAdmins": "To install a new plugin or a new theme, please get in touch with your Piwik admins.",
        "Theme": "Theme",
        "Version": "Version",
        "Status": "Status",
        "AuthorHomepage": "Author Homepage",
        "LicenseHomepage": "License Homepage",
        "PluginHomepage": "Plugin Homepage",
        "Activated": "Activated",
        "Active": "Active",
        "Inactive": "Inactive",
        "Deactivate": "Deactivate",
        "Activate": "Activate",
        "PluginRequirement": "%1$s requires %2$s.",
        "EmailToEnquireUpdatedVersion": "Please email %1$s and enquire an updated version of %2$s.",
        "MenuPlatform": "Platform",
        "Marketplace": "Marketplace",
        "PluginNotCompatibleWith": "%1$s plugin is not compatible with %2$s.",
        "PluginNotWorkingAlternative": "If you've been using this plugin, maybe you can find a more recent version in the Marketplace. If not, you may want to uninstall it.",
        "UninstallConfirm": "You are about to uninstall a plugin %s. The plugin will be completely removed from your platform and it won't be recoverable. Are you sure you want to do this?",
        "NoZipFileSelected": "Please select a ZIP file.",
        "SuccessfullyActicated": "You have successfully activated <strong>%s</strong>.",
        "ChangeSettingsPossible": "You can change %ssettings%s for this plugin.",
        "OriginCore": "Core",
        "OriginThirdParty": "Third-party",
        "Origin": "Origin",
        "InstallNewThemes": "Install new themes",
        "InstallNewPlugins": "Install new plugins",
        "TeaserExtendPiwik": "Extend Piwik with Plugins and Themes",
        "TeaserExtendPiwikByPlugin": "Extend Piwik by installing a new plugin",
        "TeaserExtendPiwikByTheme": "Enjoy another look & feel by installing a new theme",
        "TeaserExtendPiwikByUpload": "Extend Piwik by uploading a ZIP file",
        "BeCarefulUsingPlugins": "Plugins that are not authored by Piwik team must be used with care: we did not review them.",
        "BeCarefulUsingThemes": "Themes that are not authored by Piwik team must be used with care: we did not review them.",
        "NotAllowedToBrowseMarketplacePlugins": "You can browse the list of plugins that can be installed to customize or extend your Piwik platform. Please contact your administrator if you need any of these installed.",
        "NotAllowedToBrowseMarketplaceThemes": "You can browse the list of themes that can be installed to customize the appearance of the Piwik platform. Please contact your administrator to get any of these installed for you.",
        "AllowedUploadFormats": "You may upload a plugin or theme in .zip format via this page.",
        "UploadZipFile": "Upload ZIP file",
        "FeaturedPlugin": "Featured plugin",
        "NoPluginsFound": "No plugins found",
        "NoThemesFound": "No themes found",
        "SortByPopular": "popular",
        "SortByNewest": "newest",
        "SortByAlpha": "alpha",
        "InstallingPlugin": "Installing %s",
        "UpdatingPlugin": "Updating %s",
        "StepDownloadingThemeFromMarketplace": "Downloading theme from Marketplace",
        "StepUnzippingTheme": "Unzipping theme",
        "StepReplaceExistingTheme": "Replacing existing theme",
        "StepReplaceExistingPlugin": "Replacing existing plugin",
        "StepThemeSuccessfullyInstalled": "You have successfully installed the theme %1$s %2$s.",
        "StepThemeSuccessfullyUpdated": "You have successfully updated the theme %1$s %2$s.",
        "ActionActivateTheme": "Activate theme",
        "BackToExtendPiwik": "Back to Marketplace",
        "StepDownloadingPluginFromMarketplace": "Downloading plugin from Marketplace",
        "StepUnzippingPlugin": "Unzipping plugin",
        "StepPluginSuccessfullyInstalled": "You have successfully installed the plugin %1$s %2$s.",
        "StepPluginSuccessfullyUpdated": "You have successfully updated the plugin %1$s %2$s.",
        "ActionActivatePlugin": "Activate plugin",
        "ActionUninstall": "Uninstall",
        "ActionInstall": "Install",
        "Changelog": "Changelog",
        "Screenshots": "Screenshots",
        "Support": "Support",
        "PluginUpdateAvailable": "You are using version %s and a new version %s is available.",
        "ViewRepositoryChangelog": "View the changes",
        "History": "History",
        "PluginVersionInfo": "%1$s from %2$s",
        "PluginKeywords": "Keywords",
        "LastUpdated": "Last Updated",
        "Updated": "Updated",
        "Developer": "Developer",
        "Authors": "Authors",
        "Websites": "Websites",
        "PluginWebsite": "Plugin Website",
        "Activity": "Activity",
        "ByXDevelopers": "by %s developers",
        "LastCommitTime": "(last commit %s)",
        "InfoThemeIsUsedByOtherUsersAsWell": "Note: the other %1$s users registered in this Piwik are also using the theme %2$s.",
        "NumUpdatesAvailable": "%s Update(s) available",
        "InfoThemeUpdateIsRecommended": "Update your themes to enjoy the latest version.",
        "InfoPluginUpdateIsRecommended": "Update your plugins now to benefit from the latest improvements.",
        "NumDownloadsLatestVersion": "Latest version: %s Downloads",
        "EnjoyAnotherLookAndFeelOfThemes": "Enjoy another look & feel",
        "MarketplaceSellPluginSubject": "Marketplace - Sell Plugin",
        "DownloadAndInstallPluginsFromMarketplace": "You may automatically download and install new Plugins from the %sMarketplace%s.",
        "GetEarlyAccessForPaidPlugins": "Note: all plugins are available for free at present; in the future we will enable Paid Plugins in the Marketplace (%scontact us%s for early access).",
        "GetNewFunctionality": "Get new functionality",
        "ByInstallingNewPluginFromMarketplace": "by %sinstalling a new plugin from the Marketplace%s",
        "ByInstallingNewThemeFromMarketplace": "by %sinstalling a new theme from the Marketplace%s",
        "ByWritingOwnPlugin": "by %swriting your own plugin%s",
        "OrByUploadingAPlugin": "or by %suploading a plugin%s",
        "ByDesigningOwnTheme": "by %sdesigning your own theme%s",
        "OrByUploadingATheme": "or by %suploading a theme%s",
        "CorePluginTooltip": "Core plugins have no version since they are distributed with Piwik.",
        "MissingRequirementsNotice": "Please update %1$s %2$s to a newer version, %1$s %3$s is required."
    },
    "CoreUpdater": {
        "PluginDescription": "Piwik updating mechanism",
        "UpdateTitle": "Update",
        "DatabaseUpgradeRequired": "Database Upgrade Required",
        "YourDatabaseIsOutOfDate": "Your Piwik database is out-of-date, and must be upgraded before you can continue.",
        "PiwikWillBeUpgradedFromVersionXToVersionY": "Piwik database will be upgraded from version %1$s to the new version %2$s.",
        "TheFollowingPluginsWillBeUpgradedX": "The following plugins will be updated: %s.",
        "NoteForLargePiwikInstances": "Important notes for large Piwik installations",
        "HighTrafficPiwikServerEnableMaintenance": "If you manage a high traffic Piwik server, we recommend to %smomentarily disable visitor Tracking and put the Piwik User Interface in maintenance mode%s.",
        "TheUpgradeProcessMayFailExecuteCommand": "If you have a large Piwik database, updates might take too long to run in the browser. In this situation, you can execute the updates from your command line: %s",
        "YouCouldManuallyExecuteSqlQueries": "If you are not able to use the command line updater and if Piwik fails to upgrade (due to a timeout of the database, a browser timeout, or any other issue), you could manually execute the SQL queries to update Piwik.",
        "ClickHereToViewSqlQueries": "Click here to view and copy the list of SQL queries that will get executed",
        "NoteItIsExpectedThatQueriesFail": "Note: if you manually execute these queries, it is expected that some of them fail. In this case, simply ignore the errors, and run the next ones in the list.",
        "ReadyToGo": "Ready to go?",
        "TheUpgradeProcessMayTakeAWhilePleaseBePatient": "The database upgrade process may take a while, so please be patient.",
        "UpgradePiwik": "Upgrade Piwik",
        "ErrorDIYHelp": "If you are an advanced user and encounter an error in the database upgrade:",
        "ErrorDIYHelp_1": "identify and correct the source of the problem (e.g., memory_limit or max_execution_time)",
        "ErrorDIYHelp_2": "execute the remaining queries in the update that failed",
        "ErrorDIYHelp_3": "manually update the `option` table in your Piwik database, setting the value of version_core to the version of the failed update",
        "ErrorDIYHelp_4": "re-run the updater (through the browser or command-line) to continue with the remaining updates",
        "ErrorDIYHelp_5": "report the problem (and solution) so that Piwik can be improved",
        "HelpMessageContent": "Check the %1$s Piwik FAQ %2$s which explains most common errors during update. %3$s Ask your system administrator - they may be able to help you with the error which is most likely related to your server or MySQL setup.",
        "CriticalErrorDuringTheUpgradeProcess": "Critical Error during the update process:",
        "HelpMessageIntroductionWhenError": "The above is the core error message. It should help explain the cause, but if you require further help please:",
        "HelpMessageIntroductionWhenWarning": "The update completed successfuly, however there were issues during the process. Please read the above descriptions for details. For further help:",
        "UpgradeComplete": "Upgrade complete!",
        "WarningMessages": "Warning messages:",
        "ErrorDuringPluginsUpdates": "Error during plugin updates:",
        "WeAutomaticallyDeactivatedTheFollowingPlugins": "We automatically deactivated the following plugins: %s",
        "PiwikHasBeenSuccessfullyUpgraded": "Piwik has been successfully updated!",
        "UpdateAutomatically": "Update Automatically",
        "ThereIsNewVersionAvailableForUpdate": "There is a new version of Piwik available for update",
        "ThereIsNewPluginVersionAvailableForUpdate": "Some plugins you use have been updated on the Marketplace:",
        "YouCanUpgradeAutomaticallyOrDownloadPackage": "You can update to version %s automatically or download the package and install it manually:",
        "YouMustDownloadPackageOrFixPermissions": "Piwik is unable to overwrite your current installation. You can either fix the directory\/file permissions, or download the package and install version %s manually:",
        "DownloadX": "Download %s",
        "IncompatbilePluginsWillBeDisabledInfo": "Note: some plugins are not compatible with Piwik %s. They will be disabled when you upgrade:",
        "UpdateHasBeenCancelledExplanation": "Piwik One Click Update has been cancelled. If you can't fix the above error message, it is recommended that you manually update Piwik. %1$s Please check out the %2$sUpdate documentation%3$s to get started!",
        "DownloadingUpdateFromX": "Downloading update from %s",
        "UnpackingTheUpdate": "Unpacking the update",
        "VerifyingUnpackedFiles": "Verifying the unpacked files",
        "CreatingBackupOfConfigurationFile": "Creating a backup of the configuration file in %s",
        "DisablingIncompatiblePlugins": "Disabling incompatible plugins: %s",
        "InstallingTheLatestVersion": "Installing the latest version",
        "PiwikUpdatedSuccessfully": "Piwik updated successfully!",
        "EmptyDatabaseError": "Database %s is empty. You must edit or remove your Piwik configuration file.",
        "ExceptionAlreadyLatestVersion": "Your Piwik version %s is up to date.",
        "ExceptionArchiveIncompatible": "Incompatible archive: %s",
        "ExceptionArchiveEmpty": "Empty archive.",
        "ExceptionArchiveIncomplete": "Archive is incomplete: some files are missing (eg. %s).",
        "MajorUpdateWarning1": "This is a major update! It will take longer than usual.",
        "MajorUpdateWarning2": "The following advice is especially important for large installations.",
        "NotificationSubjectAvailableCoreUpdate": "New Piwik %s is available",
        "NotificationSubjectAvailablePluginUpdate": "Updates available for your Piwik plugins",
        "NotificationClickToUpdatePlugins": "Click here to update your plugins now:",
        "NotificationClickToUpdateThemes": "Click here to update your themes now:",
        "FeedbackRequest": "Feel free to share your ideas and suggestions with the Piwik Team here:"
    },
    "CustomVariables": {
        "PluginDescription": "Custom Variables are name,value pairs that you can set to a Visit using the Javascript API setVisitCustomVariables() function. Piwik will then report how many visits, pages, conversions for each of these custom names and values.",
        "CustomVariables": "Custom Variables",
        "ColumnCustomVariableName": "Custom Variable name",
        "ColumnCustomVariableValue": "Custom Variable value",
        "ScopeVisit": "scope visit",
        "ScopePage": "scope page",
        "TrackingHelp": "Help: %1$sTracking Custom Variables in Piwik%2$s",
        "CustomVariablesReportDocumentation": "This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values. %s For more information about Custom Variables in general, read the %sCustom Variables documentation on piwik.org%s"
    },
    "Dashboard": {
        "PluginDescription": "Your Web Analytics Dashboard. You can customize Your Dashboard: add new widgets, change the order of your widgets. Each user can access his own custom Dashboard.",
        "Dashboard": "Dashboard",
        "AddAWidget": "Add a widget",
        "DeleteWidgetConfirm": "Are you sure you want to delete this widget from the dashboard?",
        "SelectWidget": "Select the widget to add in the dashboard",
        "AddPreviewedWidget": "Click to add widget to the dashboard",
        "WidgetPreview": "Widget preview",
        "Maximise": "Maximise",
        "Minimise": "Minimise",
        "LoadingWidget": "Loading widget, please wait...",
        "WidgetNotFound": "Widget not found",
        "ResetDashboard": "Reset dashboard",
        "ResetDashboardConfirm": "Are you sure you want to reset your dashboard layout to the default Widgets selection?",
        "WidgetsAndDashboard": "Widgets & Dashboard",
        "ChangeDashboardLayout": "Change dashboard layout",
        "SelectDashboardLayout": "Please select your new dashboard layout",
        "DashboardOf": "Dashboard of %s",
        "ManageDashboard": "Manage dashboard",
        "CreateNewDashboard": "Create new dashboard",
        "RenameDashboard": "Rename dashboard",
        "DashboardName": "Dashboard name:",
        "EmptyDashboard": "Empty dashboard - Pick your favorite widgets",
        "DefaultDashboard": "Default dashboard - Using default widgets selection and columns layout",
        "RemoveDashboard": "Remove dashboard",
        "CopyDashboardToUser": "Copy dashboard to user",
        "DashboardCopied": "Current dashboard successfully copied to selected user.",
        "SetAsDefaultWidgets": "Set as default widgets selection",
        "SetAsDefaultWidgetsConfirm": "Are you sure you want to set the current widgets selection and dashboard layout as the default dashboard template?",
        "SetAsDefaultWidgetsConfirmHelp": "This widgets selection and dashboard columns layout will be used when any user creates a  new dashboard, or when \"%s\" feature is used.",
        "RemoveDashboardConfirm": "Are you sure you want to remove the dashboard \"%s\"?",
        "NotUndo": "You will not be able to undo this operation.",
        "DashboardEmptyNotification": "Your Dashboard does not contain any widgets. Start by adding some widgets or just reset the dashboard to the default widget selection.",
        "TopLinkTooltip": "View Web Analytics reports for %s."
    },
    "DoNotTrack": {
        "PluginDescription": "Ignore visits with X-Do-Not-Track or DNT header."
    },
    "Feedback": {
        "PluginDescription": "Send your Feedback to the Piwik Team. Share your ideas and suggestions with us!",
        "DoYouHaveBugReportOrFeatureRequest": "Do you have a bug to report or a feature request?",
        "ViewUserGuides": "Learn how to configure Piwik and how to effectively analyze your data with our %1$suser guides%2$s",
        "ViewAnswersToFAQ": "View answers to %sFrequently Asked Questions%s",
        "VisitTheForums": "Visit the %s Forums%s and get help from the community of Piwik users",
        "LearnWaysToParticipate": "Learn about all the ways you can %s participate%s",
        "HowToCreateIssue": "Please read the recommendations on writing a good %1$sbug report%2$s or %3$sfeature request%4$s. Then %5$sregister%6$s or %7$slogin%8$s on our issue tracker and create a %9$snew issue%10$s.",
        "SpecialRequest": "Do you have a special request for the Piwik team?",
        "ContactThePiwikTeam": "Contact the Piwik team!",
        "IWantTo": "I want to:",
        "SendFeedback": "Send Feedback",
        "ManuallySendEmailTo": "Please manually send your message to",
        "ThankYou": "Thank you for helping us to make Piwik better!",
        "RateFeatureTitle": "Do you like the '%s' feature? Please rate and leave a comment",
        "RateFeatureThankYouTitle": "Thank you for rating '%s'!",
        "RateFeatureLeaveMessageLike": "We are glad you like it! Please let us know what you like the most or if you have a feature request.",
        "RateFeatureLeaveMessageDislike": "We are sorry to hear you don't like it! Please let us know how we can improve.",
        "RateFeatureSendFeedbackInformation": "Your Piwik platform will send us (the Piwik team) an email (including your email address) so we can get in contact with you if you have any question.",
        "TopLinkTooltip": "Tell us what you think, or request Professional Support.",
        "WantToThankConsiderDonating": "Do you think Piwik is awesome and want to thank us?",
        "PrivacyClaim": "Piwik respects your %1$sprivacy%2$s and gives you full control over your data.",
        "GetInTouch": "We appreciate your feedback and always read all messages. Maybe you would like to share a business opportunity, hire a Piwik consultant, tell us a success story or simply say Hello!"
    },
    "Goals": {
        "Goals": "Goals",
        "EcommerceAndGoalsMenu": "Ecommerce & Goals",
        "Ecommerce": "Ecommerce",
        "EcommerceOverview": "Ecommerce Overview",
        "EcommerceOrder": "Ecommerce order",
        "EcommerceLog": "Ecommerce Log",
        "AbandonedCart": "Abandoned Cart",
        "LeftInCart": "%s left in cart",
        "GoalsOverview": "Goals Overview",
        "GoalsOverviewDocumentation": "This is an overview of your goal conversions. Initially, the graph shows the sum of all conversions. %s Below the graph, you can see conversion reports for each of your goals. The sparklines can be enlarged by clicking on them.",
        "SingleGoalOverviewDocumentation": "This is an overview of the conversions for a single goal. %s The sparklines below the graph can be enlarged by clicking on them.",
        "GoalsManagement": "Goals management",
        "EcommerceReports": "Ecommerce Reports",
        "YouCanEnableEcommerceReports": "You can enable %s for this website in the %s page.",
        "ConversionsOverviewBy": "Conversions overview by type of visit",
        "GoalConversionsBy": "Goal %s conversions by type of visit",
        "ViewGoalsBy": "View goals by %s",
        "PluginDescription": "Create Goals and see reports about your goal conversions: evolution over time, revenue per visit, conversions per referrer, per keyword, etc.",
        "ConversionByTypeReportDocumentation": "This report provides detailed information about the goal performance (conversions, conversion rates and revenue per visit) for each of the categories available in the left panel. %s Please click on one of the categories to view the report. %s For more information, read the %sTracking Goals documentation%s",
        "ColumnConversions": "Conversions",
        "ColumnConversionsDocumentation": "The number of conversions for %s.",
        "DocumentationRevenueGeneratedByProductSales": "Product sales. Excludes tax, shipping and discount",
        "ColumnRevenueDocumentation": "The total revenue generated by %s.",
        "ColumnConversionRateDocumentation": "The percentage of visits that triggered the goal %s.",
        "ColumnRevenuePerVisitDocumentation": "The total revenue generated by %s divided by the number of visits.",
        "ColumnAverageOrderRevenueDocumentation": "Average Order Value (AOV) is the total revenue from all Ecommerce Orders divided by the number of orders.",
        "ColumnPurchasedProductsDocumentation": "The number of purchased products is the sum of Product quantities sold in all Ecommerce orders.",
        "ColumnQuantityDocumentation": "Quantity is the total number of products sold for each %s.",
        "ColumnOrdersDocumentation": "The total number of Ecommerce orders which contained this %s at least once.",
        "ColumnAveragePriceDocumentation": "The average revenue for this %s.",
        "ColumnAverageQuantityDocumentation": "The average quantity of this %s sold in Ecommerce orders.",
        "ColumnVisitsProductDocumentation": "The number of visits on the Product\/Category page. This is also used to process the %s conversion rate. This metric is in the report if Ecommerce view tracking was setup on Product\/Category pages.",
        "ColumnConversionRateProductDocumentation": "The %s conversion rate is the number of orders containing this product divided by number of visits on the product page.",
        "ColumnVisits": "The total number of visits, regardless of whether a goal was triggered or not.",
        "GoalX": "Goal %s",
        "GoalConversion": "Goal conversion",
        "GoalConversions": "Goal conversions",
        "OverallRevenue": "%s overall revenue",
        "OverallConversionRate": "%s overall conversion rate (visits with a completed goal)",
        "Conversions": "%s conversions",
        "ConversionRate": "%s conversion rate",
        "NoGoalsNeedAccess": "Only an Administrator or a user with Super User access can add Goals for a given website. Please ask your Piwik administrator to set up a Goal for your website. <br>Tracking Goals is a great way to help understand and maximize your website performance!",
        "AddNewGoal": "Add a new Goal",
        "NewGoalIntro": "Goal Conversion tracking is one of the most efficient ways to measure and improve your business objectives.",
        "NewGoalDescription": "A Goal in Piwik is your strategy, your priority, and can entail many things: \"Downloaded brochure\", \"Registered newsletter\", \"Visited page services.html\", etc.",
        "NewWhatDoYouWantUsersToDo": "What do you want your users to do on your website?",
        "NewGoalYouWillBeAbleTo": "You will be able to view and analyse your performance for each Goal, and learn how to increase conversions, conversion rates and revenue per visit.",
        "AddNewGoalOrEditExistingGoal": "%sAdd a new Goal%s or %sEdit%s existing Goals",
        "AddGoal": "Add Goal",
        "UpdateGoal": "Update Goal",
        "DeleteGoalConfirm": "Are you sure you want to delete the Goal %s?",
        "CreateNewGOal": "Create a new Goal",
        "ViewAndEditGoals": "View and Edit Goals",
        "GoalName": "Goal Name",
        "GoalIsTriggered": "Goal is triggered",
        "GoalIsTriggeredWhen": "Goal is triggered when",
        "WhenVisitors": "when visitors",
        "WhereThe": "where the",
        "Manually": "manually",
        "ManuallyTriggeredUsingJavascriptFunction": "Goal is manually triggered using the JavaScript API trackGoal()",
        "VisitUrl": "Visit a given URL (page or group of pages)",
        "URL": "URL",
        "PageTitle": "Page Title",
        "Filename": "filename",
        "ExternalWebsiteUrl": "external website URL",
        "Download": "Download a file",
        "VisitPageTitle": "Visit a given Page Title",
        "ClickOutlink": "Click on a Link to an external website",
        "Optional": "(optional)",
        "WhereVisitedPageManuallyCallsJavascriptTrackerLearnMore": "where the visited page contains a call to the JavaScript 'trackGoal' method (%slearn more%s)",
        "AllowMultipleConversionsPerVisit": "Allow multiple conversions per visit",
        "DefaultGoalConvertedOncePerVisit": "(default) Goal can only be converted once per visit",
        "HelpOneConversionPerVisit": "If a Page matching this Goal is refreshed or viewed more than once in a Visit, the Goal will only be tracked the first time the page was loaded during this visit.",
        "AllowGoalConvertedMoreThanOncePerVisit": "Allow Goal to be converted more than once per visit",
        "DefaultRevenue": "Goal default revenue is",
        "DefaultRevenueHelp": "For example, a Contact Form submitted by a visitor may be worth $10 on average. Piwik will help you understand how well your visitors segments are performing.",
        "ConversionsOverview": "Conversions Overview",
        "BestCountries": "Your best converting countries are:",
        "BestKeywords": "Your top converting keywords are:",
        "BestReferrers": "Your best converting websites referrers are:",
        "ReturningVisitorsConversionRateIs": "Returning visitors conversion rate is %s",
        "NewVisitorsConversionRateIs": "New visitors conversion rate is %s",
        "Contains": "contains %s",
        "IsExactly": "is exactly %s",
        "MatchesExpression": "matches the expression %s",
        "CaseSensitive": "Case sensitive match",
        "Pattern": "Pattern",
        "ExceptionInvalidMatchingString": "If you choose 'exact match', the matching string must be a URL starting with %s. For example, '%s'.",
        "LearnMoreAboutGoalTrackingDocumentation": "Learn more about %s Tracking Goals in Piwik%s in the user documentation, or create a Goal now!",
        "ProductSKU": "Product SKU",
        "ProductName": "Product Name",
        "ProductCategory": "Product Category",
        "Products": "Products",
        "VisitsUntilConv": "Visits to Conversion",
        "DaysToConv": "Days to Conversion"
    },
    "Insights": {
        "OverviewWidgetTitle": "Insights Overview",
        "WidgetCategory": "Insights",
        "NoResultMatchesCriteria": "No rows match the criteria",
        "MoversAndShakersWidgetTitle": "Movers and Shakers",
        "TitleRowChangeDetails": "'%1$s' changed from %2$s (%3$s) to %4$s (%5$s) %6$s.",
        "TitleRowNewDetails": "'%1$s' increased by %2$s and is new compared to %3$s.",
        "TitleRowDisappearedDetails": "'%1$s' decreased by %2$s and disappeared in %3$s compared to %4$s.",
        "TitleRowMoverAndShaker": "This row had an higher impact than the average.",
        "IgnoredChanges": "Changes affecting less than %s visits were ignored.",
        "TitleConsideredInsightsGrowth": "The following rows have a growth of at least %1$s%% compared to %2$s.",
        "TitleConsideredInsightsChanges": "The rows increased or decreased by at least %1$s visits (%2$s%% of %3$s total visits).",
        "TitleConsideredMoversAndShakersGrowth": "%1$s changed from %2$s to %3$s compared to %4$s. Based on this an evolution of each row of %5$s%% is expected.",
        "TitleConsideredMoversAndShakersChanges": "Considered movers only if they grew by more than %1$s%% visits or shrank by less than %2$s%% visits, new entries only if they increased by more than %3$s%% visits (%4$s), and disappeared rows if they shrank by less than %5$s%% visits (%6$s).",
        "DatePeriodCombinationNotSupported": "It is not possible to generate insights for this date and period combination.",
        "ControlGrowthDescription": "Minimum growth of",
        "ControlComparedToDescription": "compared to the",
        "ControlFilterByDescription": "Show all, only movers, only new or only disappeared",
        "DayComparedToPreviousDay": "previous day",
        "DayComparedToPreviousWeek": "same day in the previous week",
        "DayComparedToPreviousYear": "same day in the previous year",
        "WeekComparedToPreviousWeek": "previous week",
        "MonthComparedToPreviousMonth": "previous month",
        "MonthComparedToPreviousYear": "same month in the previous year",
        "YearComparedToPreviousYear": "previous year",
        "Filter": "Filter",
        "FilterOnlyMovers": "Only movers",
        "FilterOnlyNew": "Only new",
        "FilterOnlyDisappeared": "Only disappeared",
        "FilterIncreaserAndDecreaser": "Increaser & decreaser",
        "FilterOnlyIncreaser": "Only increaser",
        "FilterOnlyDecreaser": "Only decreaser"
    },
    "Installation": {
        "PluginDescription": "Installation process of Piwik. The Installation is usually done once only. If the configuration file config\/config.inc.php is deleted, the installation will start again.",
        "Installation": "Installation",
        "InstallationStatus": "Installation status",
        "PercentDone": "%s %% Done",
        "NoConfigFound": "The Piwik configuration file couldn't be found and you are trying to access a Piwik page.<br \/><b>  » You can <a href='index.php'>install Piwik now<\/a><\/b><br \/><small>If you installed Piwik before and have some tables in your DB, don't worry, you can reuse the same tables and keep your existing data!<\/small>",
        "DatabaseSetup": "Database Setup",
        "DatabaseSetupServer": "Database Server",
        "DatabaseSetupLogin": "Login",
        "DatabaseSetupDatabaseName": "Database Name",
        "DatabaseSetupTablePrefix": "Table Prefix",
        "DatabaseSetupAdapter": "Adapter",
        "DatabaseErrorConnect": "Error while trying to connect to the database server",
        "DatabaseCheck": "Database Check",
        "DatabaseServerVersion": "Database server version",
        "DatabaseClientVersion": "Database client version",
        "DatabaseCreation": "Database creation",
        "PleaseFixTheFollowingErrors": "Please fix the following errors",
        "LargePiwikInstances": "Help for users with high traffic websites",
        "JsTagArchivingHelp1": "For medium and high traffic websites there are certain optimizations that should be made to help Piwik run faster (such as %1$ssetting up auto-archiving%2$s).",
        "Congratulations": "Congratulations",
        "CongratulationsHelp": "<p>Congratulations! Your Piwik installation is complete.<\/p><p>Make sure your JavaScript code is entered on your pages, and wait for your first visitors!<\/p>",
        "WelcomeToCommunity": "Welcome to the Piwik community!",
        "CollaborativeProject": "Piwik is a collaborative project, built with love by people from all over the world.",
        "GetInvolved": "If you like what you see, you can %1$sget involved%2$s.",
        "WeHopeYouWillEnjoyPiwik": "We hope you will enjoy using Piwik as much as we enjoy making it.",
        "HappyAnalysing": "Happy analysing!",
        "SiteSetup": "Please setup the first website you would like to track and analyse with Piwik:",
        "SetupWebsite": "Setup a Website",
        "SetupWebSiteName": "website name",
        "SetupWebSiteURL": "website URL",
        "Timezone": "website time zone",
        "SiteSetupFootnote": "Note: once the Piwik Install is finished, you will be able to add more Websites to track!",
        "SetupWebsiteError": "There was an error when adding the website",
        "SetupWebsiteSetupSuccess": "Website %s created with success!",
        "SuperUser": "Super User",
        "SuperUserSetupError": "There was an error when adding the Super User",
        "SuperUserSetupSuccess": "Super User created with success!",
        "SuperUserLogin": "super user login",
        "Password": "password",
        "PasswordRepeat": "password (repeat)",
        "Email": "email",
        "SecurityNewsletter": "email me with major Piwik upgrades and security alerts",
        "CommunityNewsletter": "email me with community updates (new plugins, new features, etc.)",
        "PasswordDoNotMatch": "password do not match",
        "Requirements": "Piwik Requirements",
        "Optional": "Optional",
        "Legend": "Legend",
        "Extension": "extension",
        "SystemCheck": "System Check",
        "RestartWebServer": "After making this change, restart your web server.",
        "SystemCheckPhp": "PHP version",
        "SystemCheckExtensions": "Other required extensions",
        "SystemCheckDatabaseHelp": "Piwik requires either the mysqli extension or both the PDO and pdo_mysql extensions.",
        "SystemCheckPdoAndMysqliHelp": "On a Linux server you can compile php with the following options: %1$s In your php.ini, add the following lines: %2$s",
        "SystemCheckPhpPdoAndMysqli": "More information on: %1$sPHP PDO%2$s and %3$sMYSQLI%4$s.",
        "SystemCheckWinPdoAndMysqliHelp": "On a Windows server you can add the following lines to your php.ini: %s",
        "SystemCheckSplHelp": "You need to configure and rebuild PHP with the Standard PHP Library (SPL) enabled (by default).",
        "SystemCheckZlibHelp": "You need to configure and rebuild PHP with \"zlib\" support enabled, --with-zlib.",
        "SystemCheckIconvHelp": "You need to configure and rebuild PHP with \"iconv\" support enabled, --with-iconv.",
        "SystemCheckOtherExtensions": "Other extensions",
        "SystemCheckWarnLibXmlHelp": "You should enable the \"libxml\" extension (e.g., \"install the php-libxml\" package) as it is required by other core PHP extensions.",
        "SystemCheckWarnJsonHelp": "You should enable \"json\" extension (e.g., install the \"php-json\" package) for better performance.",
        "SystemCheckWarnDomHelp": "You should enable the \"dom\" extension (e.g., install the \"php-dom\" and\/or \"php-xml\" package).",
        "SystemCheckWarnSimpleXMLHelp": "You should enable the \"SimpleXML\" extension (e.g., install the \"php-simplexml\" and\/or \"php-xml\" package).",
        "SystemCheckWriteDirs": "Directories with write access",
        "SystemCheckWriteDirsHelp": "To fix this error on your Linux system, try typing in the following command(s)",
        "SystemCheckMemoryLimit": "Memory limit",
        "SystemCheckMemoryLimitHelp": "On a high traffic website, the archiving process may require more memory than currently allowed.  If necessary, change the memory_limit directive in your php.ini file.",
        "SystemCheckOpenURL": "Open URL",
        "SystemCheckOpenURLHelp": "Newsletter subscriptions, update notifications, and one-click updates requires the \"curl\" extension, allow_url_fopen=On, or fsockopen() enabled.",
        "SystemCheckGDFreeType": "GD > 2.x + Freetype (graphics)",
        "SystemCheckGDHelp": "The sparklines (small graphs) and image graphs (in Piwik Mobile app and Email reports) will not work.",
        "SystemCheckFunctions": "Required functions",
        "SystemCheckOtherFunctions": "Other functions",
        "SystemCheckTimeLimitHelp": "On a high traffic website, executing the archiving process may require more time than currently allowed.  If necessary, change the max_execution_time directive in your php.ini file.",
        "SystemCheckMailHelp": "Feedback and Lost Password messages will not be sent without mail().",
        "SystemCheckParseIniFileHelp": "This built-in function has been disabled on your host. Piwik will attempt to emulate this function but may encounter further security restrictions. Tracker performance will also be impacted.",
        "SystemCheckGlobHelp": "This built-in function has been disabled on your host. Piwik will attempt to emulate this function but may encounter further security restrictions. Functionality may be impacted.",
        "SystemCheckDebugBacktraceHelp": "View::factory won't be able to create views for the calling module.",
        "SystemCheckCreateFunctionHelp": "Piwik uses anonymous functions for callbacks.",
        "SystemCheckEvalHelp": "Required by HTML QuickForm and Smarty templating system.",
        "SystemCheckGzcompressHelp": "You need to enable the zlib extension and gzcompress function.",
        "SystemCheckGzuncompressHelp": "You need to enable the zlib extension and gzuncompress function.",
        "SystemCheckPackHelp": "The pack() function is required to track visitors in Piwik.",
        "SystemCheckMbstring": "mbstring",
        "SystemCheckJsonHelp": "The php5-json extension is required for Piwik to read and write JSON data.",
        "SystemCheckMbstringExtensionHelp": "The mbstring extension is required for multibyte characters in API responses using comma-separated values (CSV) or tab-separated values (TSV).",
        "SystemCheckMbstringExtensionGeoIpHelp": "It is also required for the GeoIP integration to work.",
        "SystemCheckMbstringFuncOverloadHelp": "You should set mbstring.func_overload to \"0\".",
        "SystemCheckFileIntegrity": "File integrity",
        "SystemCheckAutoUpdateHelp": "Note: Piwik's One Click update requires write-permissions to the Piwik folder and its contents.",
        "SystemCheckError": "An error occured - must be fixed before you proceed",
        "SystemCheckWarning": "Piwik will work normally but some features may be missing",
        "SystemCheckSecureProtocol": "Secure protocol",
        "SystemCheckSecureProtocolHelp": "It appears you're using https with your web server. These lines will be added to config\/config.ini.php:",
        "SystemCheckTracker": "Tracker status",
        "SystemCheckTrackerHelp": "GET request to piwik.php failed.  Try whitelisting this URL from HTTP Authentication and disable mod_security (you may have to ask your webhost).",
        "Tables": "Creating the Tables",
        "ReusingTables": "Reusing the Tables",
        "TablesWithSameNamesFound": "Some %1$s tables in your database %2$s have the same names as the tables Piwik is trying to create",
        "TablesFound": "The following tables have been found in the database",
        "TablesWarningHelp": "Either choose to reuse the existing database tables or select a clean install to erase all existing data in the database.",
        "TablesReuse": "Reuse the existing tables",
        "TablesDelete": "Delete the detected tables",
        "TablesDeletedSuccess": "Existing Piwik tables deleted with success",
        "TablesCreatedSuccess": "Tables created with success!",
        "TablesUpdatedSuccess": "The database was successfully updated from %1$s to %2$s!",
        "GoBackAndDefinePrefix": "Go back and define a Prefix for the Piwik Tables",
        "ConfirmDeleteExistingTables": "Are you sure you want to delete the tables: %s from your database? WARNING: DATA FROM THESE TABLES CANNOT BE RECOVERED!",
        "Welcome": "Welcome!",
        "WelcomeHelp": "<p>Piwik is an open source web analytics software that makes it easy to get the information you want from your visitors.<\/p><p>This process is split up into %s easy steps and will take around 5 minutes.<\/p>",
        "ConfigurationHelp": "Your Piwik configuration file appears to be misconfigured.  You can either remove config\/config.ini.php and resume installation, or correct the database connection settings.",
        "ErrorInvalidState": "Error: it seems you tried to skip a step of the Installation process, or your cookies are disabled, or the Piwik configuration file was already created. %1$sMake sure your cookies are enabled%2$s and go back %3$s to the first page of the installation %4$s.",
        "InsufficientPrivilegesMain": "Either the Database does not exist (and could not be created), or the specified User has insufficient privileges. Database user must have the following privileges: %s",
        "InsufficientPrivilegesHelp": "You can add these privileges by using a tool such as phpMyAdmin or by executing the right SQL queries. If you don't know how to do these things, please ask your sysadmin to grant these privileges for you.",
        "SystemCheckSummaryThereWereErrors": "Uh-oh! Piwik has detected some %1$scritical issues%2$s with your Piwik setup. %3$sThese issues should be fixed immediately.%4$s",
        "SystemCheckSummaryThereWereWarnings": "There are some issues with your system. Piwik will run, but you might experience some minor problems.",
        "SystemCheckSummaryNoProblems": "Huzzah! There are no problems with your Piwik setup. Give yourself a pat on the back.",
        "SeeBelowForMoreInfo": "See below for more information.",
        "DatabaseAbilities": "Database abilities",
        "LoadDataInfileUnavailableHelp": "Using %1$s will greatly speed Piwik's archiving process up. To make it available to Piwik, try updating your PHP & MySQL software and make sure your database user has the %2$s privilege.",
        "LoadDataInfileRecommended": "If your Piwik server tracks high traffic websites (eg. > 100,000 pages per month), we recommend to try fix this problem.",
        "Filesystem": "Filesystem",
        "NfsFilesystemWarning": "Your server is using an NFS filesystem.",
        "NfsFilesystemWarningSuffixAdmin": "This means Piwik will be extremely slow when using file based sessions.",
        "NfsFilesystemWarningSuffixInstall": "Using file based sessions on NFS is extremely slow, so Piwik will use database sessions. If you have many concurrent dashboard users, you may need to increase the maximum number of client connections to the database server.",
        "JSTracking_Intro": "To track your web traffic with Piwik you need to make sure some extra code is added to each of your webpages.",
        "JSTracking_EndNote": "Note: After the installation process, you can generate customized tracking code in the %1$sTracking Code%2$s admin section."
    },
    "LanguagesManager": {
        "PluginDescription": "This plugin will display a list of the available languages for the Piwik interface. The language selected will be saved in the preferences for each user.",
        "AboutPiwikTranslations": "About Piwik translations"
    },
    "Live": {
        "PluginDescription": "Watch your visitors live in real-time!",
        "LinkVisitorLog": "View detailed visitor log",
        "VisitorsInRealTime": "Visitors in Real-time",
        "VisitorLog": "Visitor Log",
        "VisitorLogDocumentation": "This table shows the latest visits within the selected date range. You can see when a visitor's last visit occurred by hovering over the date of a visit. %s If the date range includes today, you can see your visitors real time! %s The data displayed here is always live, regardless of whether and how often you are using the archiving cron job.",
        "Referrer_URL": "Referrer URL",
        "LastMinutes": "Last %s minutes",
        "LastHours": "Last %s hours",
        "MorePagesNotDisplayed": "more pages by this visitor are not displayed",
        "GoalType": "Type",
        "PageRefreshed": "Number of times this page was viewed \/ refreshed in a row.",
        "KeywordRankedOnSearchResultForThisVisitor": "The keyword %1$s was ranked %2$s on the %3$s search result page for this visitor",
        "VisitorsLastVisit": "This visitor's last visit was %s days ago.",
        "NbVisitors": "%s visitors",
        "NbVisitor": "1 visitor",
        "RealTimeVisitorCount": "Real Time Visitor Count",
        "SimpleRealTimeWidget_Message": "%s and %s in the last %s",
        "ViewVisitorProfile": "View visitor profile",
        "VisitorProfile": "Visitor profile",
        "FirstVisit": "First visit",
        "LastVisit": "Last visit",
        "VisitSummary": "Spent a total of %1$s%2$s on the website%3$s, and %4$sviewed %5$s pages in %6$s visits.%7$s",
        "ConvertedNGoals": "Converted %s Goals",
        "EcommerceSummaryConversions": "%1$s%2$s orders for a total of %3$s%4$s, purchased %5$s items.",
        "AbandonedCartSummary": "%1$s%2$s abandoned carts%3$s and %4$s abandoned items %5$sworth a total of %6$s%7$s.",
        "VisitedPages": "Visited pages",
        "LoadMoreVisits": "Load more visits",
        "NoMoreVisits": "There are no more visits for this visitor.",
        "PreviousVisitor": "Previous visitor",
        "NextVisitor": "Next visitor",
        "ShowMap": "show map",
        "HideMap": "hide map",
        "VisitsFrom": "%1$s%2$s visits%3$s from",
        "ClickToViewMoreAboutVisit": "Click to view more information about this visit",
        "AveragePageGenerationTime": "Each page took on average %1$s to load for this visitor.",
        "CalculatedOverNPageViews": "Calculated using this visitor's last %1$s page views."
    },
    "Login": {
        "PluginDescription": "Login Authentication plugin, reading the credentials from the config\/config.ini.php file for the initial Super User, and from the Database for the other users. Can be easily replaced to introduce a new Authentication mechanism (OpenID, htaccess, custom Auth, etc.).",
        "LoginPasswordNotCorrect": "Wrong Username and password combination.",
        "PasswordRepeat": "Password (repeat)",
        "LoginOrEmail": "Username or E-mail",
        "RememberMe": "Remember Me",
        "LogIn": "Sign in",
        "LostYourPassword": "Lost your password?",
        "PasswordsDoNotMatch": "Passwords do not match.",
        "InvalidUsernameEmail": "Invalid username or e-mail address.",
        "InvalidNonceOrHeadersOrReferrer": "Form security failed. Please reload the form and check that your cookies are enabled. If you use a proxy server, you must %s configure Piwik to accept the proxy header%s that forwards the Host header. Also, check that your Referrer header is sent correctly.",
        "InvalidOrExpiredToken": "Token is invalid or has expired.",
        "MailTopicPasswordChange": "Confirm Password Change",
        "MailPasswordChangeBody": "Hi %1$s,\n\nA password reset request was received from %2$s. To confirm this password change so you can login with your new credentials, visit the following link:\n\n%3$s\n\nNote: this token will expire in 24 hours.\n\nAnd thank you for using Piwik!",
        "ConfirmationLinkSent": "A confirmation link has been sent to your inbox. Check your e-mail and visit this link to authorize your password change request.",
        "PasswordChanged": "Your password has been changed.",
        "ContactAdmin": "Possible reason: your host may have disabled the mail() function. <br \/>Please contact your Piwik administrator.",
        "ExceptionPasswordMD5HashExpected": "The password parameter is expected to be a MD5 hash of the password.",
        "ExceptionInvalidSuperUserAccessAuthenticationMethod": "A user with Super User access cannot be authenticated using the '%s' mechanism.",
        "ResetPasswordInstructions": "Enter a new password for your account."
    },
    "Mobile": {
        "Account": "Account",
        "Accounts": "Accounts",
        "AddAccount": "Add account",
        "AddPiwikDemo": "Add Piwik Demo",
        "AboutPiwikMobile": "About Piwik Mobile",
        "AnonymousTracking": "Anonymous tracking",
        "AskForAnonymousTrackingPermission": "When enabled, Piwik Mobile will send anonymous usage data to piwik.org. The intent is to use this data to help Piwik Mobile developers better understand how the app is used. Information sent is: menus and settings clicked on, OS name and version, any error displayed in Piwik Mobile. We will NOT track any of your analytics data. This anonymous data will never be made public. You can disable\/enable anonymous tracking in Settings at any time.",
        "Advanced": "Advanced",
        "ConfirmRemoveAccount": "Do you want to remove this account?",
        "ChooseHttpTimeout": "Choose HTTP timeout value",
        "ChooseMetric": "Choose Metric",
        "ChooseReport": "Choose a report",
        "EmailUs": "Email us",
        "HelpUsToImprovePiwikMobile": "Would you like to enable anonymous usage tracking in Piwik Mobile?",
        "HttpIsNotSecureWarning": "Your Piwik authorization token (token_auth) is sent in clear text if you use 'HTTP'. For this reason we recommend HTTPS for secure transport of data over the internet. Do you want to proceed?",
        "HowtoDeleteAnAccount": "Press long to remove an account.",
        "HowtoDeleteAnAccountOniOS": "Swipe right to left to delete an account",
        "HowtoLoginAnonymous": "Leave username and password empty for anonymous login",
        "LastUpdated": "Last Updated: %s",
        "LoginCredentials": "Credentials",
        "LoginUseHttps": "Use https",
        "LoadingReport": "Loading %s",
        "LoginToPiwikToChangeSettings": "Login to your Piwik server to create and update websites, users or to change General Settings like \"Report to load by default\".",
        "PullDownToRefresh": "Pull down to refresh...",
        "RatingNotNow": "Not now",
        "RatingNow": "OK, I'll rate it now",
        "RatingDontRemindMe": "Don't remind me",
        "RatingPleaseRateUs": "Piwik Mobile App is a Free Software, we would really appreciate if you took 1 minute to rate the app in the %s. If you have suggestions of new features or bug reports, please contact %s",
        "Reloading": "Reloading...",
        "ReleaseToRefresh": "Release to refresh...",
        "ShowAll": "Show all",
        "ShowLess": "Show less",
        "HttpTimeout": "HTTP Timeout",
        "VerifyAccount": "Verifying Account",
        "VerifyLoginData": "Make sure your username and password combination is correct.",
        "AnonymousAccess": "Anonymous access",
        "AccessUrlLabel": "Piwik Access Url",
        "EnableGraphsLabel": "Display graphs",
        "EvolutionGraph": "Historical Graph",
        "StaticGraph": "Overview Graph",
        "DefaultReportDate": "Report date",
        "MultiChartLabel": "Display sparklines",
        "NoAccountIsSelected": "You have to select an account. Add a new account if you haven't configured one.",
        "NetworkError": "Network Error",
        "NetworkErrorWithStatusCodeShort": "Network Error %s",
        "NetworkErrorWithStatusCode": "There was an error \"%s\". The request returned the status \"%s\". URL was \"%s\". Please check your entered URL and the error logs on this server for more information about the error and how to resolve it.",
        "NetworkNotReachable": "Network not reachable",
        "NavigationBack": "Back",
        "NoDataShort": "No Data",
        "NoVisitorsShort": "No Visitors",
        "NoWebsitesShort": "No Websites",
        "NoReportsShort": "No Reports",
        "NoPiwikAccount": "No Piwik Account?",
        "NoVisitorFound": "No visitor found",
        "NoWebsiteFound": "No website found",
        "RestrictedCompatibility": "Restricted compatibility",
        "RestrictedCompatibilityExplanation": "The Piwik version %s you are using is not fully supported by Piwik Mobile 2. You may experience some bugs. We recommend to either update Piwik to the latest version or to use Piwik Mobile 1.",
        "IncompatiblePiwikVersion": "The Piwik version you are using is incompatible with Piwik Mobile 2. Update your Piwik installation and try again or install Piwik Mobile 1.",
        "SaveSuccessError": "Piwik URL or username and password combination is wrong.",
        "SearchWebsite": "Search websites",
        "UseSearchBarHint": "Only the first %s websites are displayed here. Please use the search bar to access your other websites.",
        "RequestTimedOutShort": "Network Timeout Error",
        "TopVisitedWebsites": "Top visited websites",
        "TryIt": "Try It!",
        "YouAreOffline": "Sorry, you are currently offline"
    },
    "MobileMessaging": {
        "Exception_UnknownProvider": "Provider name '%s' unknown. Try any of the following instead: %s.",
        "PluginDescription": "Create and download custom SMS reports and have them sent to your mobile on a daily, weekly or monthly basis.",
        "TopMenu": "Email & SMS Reports",
        "TopLinkTooltip": "Get Web Analytics Reports delivered to your email inbox or your mobile phone!",
        "SettingsMenu": "Mobile Messaging",
        "Settings_SuperAdmin": "Super User Settings",
        "VerificationText": "Code is %s. To validate your phone number and receive Piwik SMS reports please copy this code in the form accessible via Piwik > %s > %s.",
        "PhoneNumbers": "Phone Numbers",
        "Settings_LetUsersManageAPICredential": "Allow users to manage their own SMS API credentials",
        "Settings_LetUsersManageAPICredential_No_Help": "All users are able to receive SMS Reports and will use your account's credits.",
        "Settings_LetUsersManageAPICredential_Yes_Help": "Each user will be able to setup their own SMS API Account and will not use your credit.",
        "Settings_SMSProvider": "SMS Provider",
        "Settings_SMSAPIAccount": "Manage SMS API Account",
        "Settings_PhoneNumbers_Help": "Before receiving SMS (text messages) reports on a phone, the phone number must be entered below.",
        "Settings_PhoneNumbers_HelpAdd": "When you click \"Add\", a SMS containing a code will be sent to the phone. The user receiving the code should then login to Piwik, click on Settings, then click on Mobile Messaging. After entering the code, the user will be able to receive text reports on his phone.",
        "Settings_PhoneNumbers_CountryCode_Help": "If you do not know the phone country code, look for your country here",
        "Settings_PhoneNumbers_Add": "Add a new Phone Number",
        "Settings_VerificationCodeJustSent": "We just sent a SMS to this number with a code: please enter this code above and click \"Validate\".",
        "Settings_PhoneActivated": "Phone number validated! You can now receive SMS with your stats.",
        "Settings_InvalidActivationCode": "Code entered was not valid, please try again.",
        "Settings_CountryCode": "Country Code",
        "Settings_PhoneNumber": "Phone Number",
        "Settings_ManagePhoneNumbers": "Manage Phone Numbers",
        "Settings_PleaseSignUp": "To create SMS reports and receive short text messages with your websites' stats on your mobile phone, please sign up with the SMS API and enter your information below.",
        "Settings_APIKey": "API Key",
        "Settings_ValidatePhoneNumber": "Validate",
        "Settings_SuspiciousPhoneNumber": "If you don't receive the text message, you may try without the leading zero. ie. %s",
        "Settings_CredentialNotProvidedByAdmin": "Before you can create and manage phone numbers, please ask your administrator to connect Piwik to an SMS Account.",
        "Settings_CredentialNotProvided": "Before you can create and manage phone numbers, please connect Piwik to your SMS Account above.",
        "Settings_CredentialProvided": "Your %s SMS API account is correctly configured!",
        "Settings_UpdateOrDeleteAccount": "You can also %supdate%s or %sdelete%s this account.",
        "Settings_DeleteAccountConfirm": "Are you sure you want to delete this SMS account?",
        "MobileReport_NoPhoneNumbers": "Please activate at least one phone number by accessing",
        "MobileReport_MobileMessagingSettingsLink": "the Mobile Messaging settings page",
        "MobileReport_AdditionalPhoneNumbers": "You can add more phone numbers by accessing",
        "SMS_Content_Too_Long": "[too long]",
        "MultiSites_Must_Be_Activated": "To generate SMS texts of your website stats, please enable the MultiSites plugin in Piwik."
    },
    "MultiSites": {
        "PluginDescription": "Displays multi-site executive summary\/statistics. Currently maintained as a core Piwik plugin.",
        "Evolution": "Evolution",
        "TopLinkTooltip": "Compare Web Analytics stats for all of your Websites.",
        "LoadingWebsites": "Loading websites"
    },
    "Provider": {
        "PluginDescription": "Reports the Provider of the visitors.",
        "WidgetProviders": "Providers",
        "ColumnProvider": "Provider",
        "SubmenuLocationsProvider": "Locations & Provider",
        "ProviderReportDocumentation": "This report shows which Internet Service Providers your visitors used to access the website. You can click on a provider name for more details. %s If Piwik can't determine a visitor's provider, it is listed as IP."
    },
    "Referrers": {
        "PluginDescription": "Reports the Referrers data: Search Engines, Keywords, Websites, Campaign Tracking, Direct Entry.",
        "Referrer": "Referrer",
        "Referrers": "Referrers",
        "ReferrersOverview": "Referrers Overview",
        "EvolutionDocumentation": "This is an overview of the referrers that led visitors to your website.",
        "EvolutionDocumentationMoreInfo": "For more information about the different referrer types, see the documentation of the %s table.",
        "SearchEngines": "Search Engines",
        "SearchEnginesReportDocumentation": "This report shows which search engines referred users to your website. %s By clicking on a row in the table, you can see what users were searching for using a specific search engine.",
        "Keywords": "Keywords",
        "KeywordsReportDocumentation": "This report shows which keywords users were searching for before they were referred to your website. %s By clicking on a row in the table, you can see the distribution of search engines that were queried for the keyword.",
        "DirectEntry": "Direct Entry",
        "Websites": "Websites",
        "Socials": "Social Networks",
        "AllReferrersReportDocumentation": "This report shows all your Referrers in one unified report, listing all Websites, Search keywords and Campaigns used by your visitors to find your website.",
        "WebsitesReportDocumentation": "In this table, you can see which websites referred visitors to your site. %s By clicking on a row in the table, you can see which URLs the links to your website were on.",
        "SocialsReportDocumentation": "This report shows which social networks led visitors to your website.<br \/>By clicking on a row in the table, you can see from which social network pages visitors came to your website.",
        "Campaigns": "Campaigns",
        "CampaignsReportDocumentation": "This report shows which campaigns led visitors to your website. %s For more information about tracking campaigns, read the %scampaigns documentation on piwik.org%s",
        "Type": "Referrer Type",
        "TypeReportDocumentation": "This table contains information about the distribution of the referrer types.",
        "DirectEntryDocumentation": "A visitor has entered the URL in his browser and started browsing on your website - he entered the website directly.",
        "SearchEnginesDocumentation": "A visitor was referred to your website by a search engine. %s See the %s report for more details.",
        "WebsitesDocumentation": "The visitor followed a link on antoher website that led to your site. %s See the %s report for more details.",
        "CampaignsDocumentation": "Visitors that came to your website as the result of a campaign. %s See the %s report for more details.",
        "ColumnSearchEngine": "Search Engine",
        "ColumnWebsite": "Website",
        "ColumnWebsitePage": "Website Page",
        "ColumnSocial": "Social network",
        "ColumnCampaign": "Campaign",
        "CampaignFooterHelp": "Help: %sTracking Campaigns in Piwik %s URL Builder tool%s",
        "ReferrerName": "Referrer Name",
        "DetailsByReferrerType": "Details by Referrer Type",
        "TypeDirectEntries": "%s direct entries",
        "TypeSearchEngines": "%s from search engines",
        "TypeWebsites": "%s from websites",
        "TypeCampaigns": "%s from campaigns",
        "Distinct": "Distinct Referrers by Referrer Type",
        "DistinctSearchEngines": "distinct search engines",
        "DistinctKeywords": "distinct keywords",
        "DistinctCampaigns": "distinct campaigns",
        "DistinctWebsites": "distinct websites",
        "UsingNDistinctUrls": "(using %s distinct urls)",
        "SubmenuSearchEngines": "Search Engines & Keywords",
        "SubmenuWebsites": "Websites & Social",
        "WidgetKeywords": "Keywords",
        "WidgetExternalWebsites": "Referrer Websites",
        "WidgetSocials": "List of social networks",
        "SocialFooterMessage": "This is a subset of the Websites report to the left. It filters out other websites so you can compare your social network referrers directly.",
        "WidgetGetAll": "All Referrers",
        "ViewReferrersBy": "View Referrers by %s",
        "ViewAllReferrers": "View all Referrers",
        "XPercentOfVisits": "%s%% of visits",
        "WidgetTopKeywordsForPages": "Top Keywords for Page URL"
    },
    "SEO": {
        "SeoRankings": "SEO Rankings",
        "AlexaRank": "Alexa Rank",
        "DomainAge": "Domain Age",
        "Rank": "Rank",
        "Google_IndexedPages": "Google indexed pages",
        "Bing_IndexedPages": "Bing indexed pages",
        "Dmoz": "DMOZ entries",
        "SEORankingsFor": "SEO Rankings for %s",
        "ExternalBacklinks": "External Backlinks (Majestic)",
        "ReferrerDomains": "Referrer Domains (Majestic)",
        "ViewBacklinksOnMajesticSEO": "View External Backlinks report on MajesticSEO.com"
    },
    "SitesManager": {
        "PluginDescription": "Websites Management in Piwik: Add a new Website, Edit an existing one, Show the JavaScript code to include on your pages. All the actions are also available through the API.",
        "Sites": "Websites",
        "TrackingTags": "Tracking code for %s",
        "WebsitesManagement": "Websites Management",
        "MainDescription": "Your Web Analytics reports need Websites! Add, update, delete Websites, and show the JavaScript to insert in your pages.",
        "YouCurrentlyHaveAccessToNWebsites": "You currently have access to %s websites.",
        "OnlyOneSiteAtTime": "You can only edit one website at a time. Please Save or Cancel your current modifications to the website %s.",
        "JsTrackingTagHelp": "Here is the JavaScript Tracking code to include on all your pages",
        "ShowTrackingTag": "View Tracking code",
        "NoWebsites": "You don't have any website to administrate.",
        "AddSite": "Add a new website",
        "NotFound": "No websites found for",
        "AliasUrlHelp": "It is recommended, but not required, to specify the various URLs, one per line, that your visitors use to access this website. Alias URLs for a website will not appear in the Referrers > Websites report. Note that it is not necessary to specify the URLs with and without 'www' as Piwik automatically considers both.",
        "Urls": "URLs",
        "DeleteConfirm": "Are you sure you want to delete the website %s?",
        "ExceptionDeleteSite": "It is not possible to delete this website as it is the only registered website. Add a new website first, then delete this one.",
        "ExceptionNoUrl": "You must specify at least one URL for the website.",
        "ExceptionEmptyName": "The website name can't be empty.",
        "ExceptionInvalidUrl": "The url '%s' is not a valid URL.",
        "ExceptionInvalidTimezone": "The timezone \"%s\" is not valid. Please enter a valid timezone.",
        "ExceptionInvalidCurrency": "The currency \"%s\" is not valid. Please enter a valid currency symbol (eg. %s)",
        "ExceptionInvalidIPFormat": "The IP to exclude \"%s\" does not have a valid IP format (eg. %s).",
        "SuperUserAccessCan": "A user with Super User access can also %s specify global settings%s for new websites.",
        "ExcludedIps": "Excluded IPs",
        "GlobalListExcludedIps": "Global list of Excluded IPs",
        "ExcludedUserAgents": "Excluded User Agents",
        "GlobalListExcludedUserAgents": "Global list of user agents to exclude",
        "GlobalListExcludedUserAgents_Desc": "If the visitor's user agent string contains any of the strings you specify, the visitor will be excluded from Piwik.",
        "GlobalExcludedUserAgentHelp1": "Enter the list of user agents to exclude from being tracked by Piwik.",
        "GlobalExcludedUserAgentHelp2": "You can use this to exclude some bots from being tracked.",
        "ListOfIpsToBeExcludedOnAllWebsites": "The IPs below will be excluded from being tracked on all websites.",
        "ExcludedParameters": "Excluded Parameters",
        "GlobalListExcludedQueryParameters": "Global list of Query URL parameters to exclude",
        "ListOfQueryParametersToBeExcludedOnAllWebsites": "The Query URLs parameters below will be excluded from URLs on all websites.",
        "ListOfQueryParametersToExclude": "Enter the list of URL Query Parameters, one per line, to exclude from the Page URLs reports.",
        "PiwikWillAutomaticallyExcludeCommonSessionParameters": "Piwik will automatically exclude the common session parameters (%s).",
        "HelpExcludedIps": "Enter the list of IPs, one per line, that you wish to exclude from being tracked by Piwik. You can use wildcards, eg. %1$s or %2$s",
        "YourCurrentIpAddressIs": "Your current IP address is %s",
        "SelectACity": "Select a city",
        "ChooseCityInSameTimezoneAsYou": "Choose a city in the same time zone as you.",
        "ChangingYourTimezoneWillOnlyAffectDataForward": "Changing your time zone will only affect data going forward, and will not be applied retroactively.",
        "AdvancedTimezoneSupportNotFound": "Advanced timezones support was not found in your PHP (supported in PHP>=5.2). You can still choose a manual UTC offset.",
        "UTCTimeIs": "UTC time is %s.",
        "Timezone": "Time zone",
        "GlobalWebsitesSettings": "Global websites settings",
        "DefaultTimezoneForNewWebsites": "Default Time zone for new websites",
        "SelectDefaultTimezone": "You can select the time zone to select by default for new websites.",
        "Currency": "Currency",
        "CurrencySymbolWillBeUsedForGoals": "The Currency symbol will be displayed next to Goals revenues.",
        "DefaultCurrencyForNewWebsites": "Default Currency for new websites",
        "SelectDefaultCurrency": "You can select the currency to set by default for new websites.",
        "EnableEcommerce": "Ecommerce enabled",
        "NotAnEcommerceSite": "Not an Ecommerce site",
        "EnableSiteSearch": "Site Search tracking enabled",
        "DisableSiteSearch": "Do not track Site Search",
        "EcommerceHelp": "When enabled, the \"Goals\" report will have a new \"Ecommerce\" section.",
        "PiwikOffersEcommerceAnalytics": "Piwik allows for advanced Ecommerce Analytics tracking & reporting. Learn more about %s Ecommerce Analytics%s.",
        "TrackingSiteSearch": "Tracking Internal Site Search",
        "SiteSearchUse": "You can use Piwik to track and report what visitors are searching in your website's internal search engine.",
        "SearchKeywordParametersDesc": "Enter a comma separated list of all query parameter names containing the site search keyword.",
        "SearchCategoryDesc": "Piwik can also track the Search category for each internal site search keyword.",
        "SearchCategoryParametersDesc": "You may enter a comma-separated list of query parameters specifying the search category.",
        "SearchParametersNote": "Note: the Query parameters and Category parameters will be used only for websites which have Site Search enabled but left these parameters empty.",
        "SearchParametersNote2": "To disable Site Search for new websites, leave these two fields empty.",
        "SearchKeywordLabel": "Query parameter",
        "SearchCategoryLabel": "Category parameter",
        "SearchUseDefault": "Use %sdefault%s Site Search parameters",
        "EnableSiteSpecificUserAgentExclude": "Enable website specific user agent exclusion.",
        "EnableSiteSpecificUserAgentExclude_Help": "If you need to exclude different user agents for different websites, check this box, click save and %1$sadd the user agents above%2$s.",
        "KeepURLFragments": "Page URL fragments tracking",
        "KeepURLFragmentsHelp": "If the checkbox below is unchecked, Page URL fragments (everything after the %1$s) will be removed when tracking: %2$s will be tracked as %3$s",
        "KeepURLFragmentsHelp2": "You can also override this setting for individual websites above.",
        "KeepURLFragmentsLong": "Keep Page URL fragments when tracking Page URLs"
    },
    "UserCountry": {
        "PluginDescription": "Reports information regarding visitor location, including country, region, city and geographic coordinates (latitude\/longitude).",
        "Country": "Country",
        "Continent": "Continent",
        "Region": "Region",
        "City": "City",
        "FromDifferentCities": "different cities",
        "CityAndCountry": "%1$s, %2$s",
        "Latitude": "Latitude",
        "Longitude": "Longitude",
        "Organization": "Organization",
        "DistinctCountries": "%s distinct countries",
        "Location": "Location",
        "Geolocation": "Geolocation",
        "SubmenuLocations": "Locations",
        "WidgetLocation": "Visitor Location",
        "country_ac": "Ascension Islands",
        "country_ad": "Andorra",
        "country_ae": "United Arab Emirates",
        "country_af": "Afghanistan",
        "country_ag": "Antigua and Barbuda",
        "country_ai": "Anguilla",
        "country_al": "Albania",
        "country_am": "Armenia",
        "country_an": "Netherlands Antilles",
        "country_ao": "Angola",
        "country_aq": "Antarctica",
        "country_ar": "Argentina",
        "country_as": "American Samoa",
        "country_at": "Austria",
        "country_au": "Australia",
        "country_aw": "Aruba",
        "country_ax": "Aland Islands",
        "country_az": "Azerbaijan",
        "country_ba": "Bosnia and Herzegovina",
        "country_bb": "Barbados",
        "country_bd": "Bangladesh",
        "country_be": "Belgium",
        "country_bf": "Burkina Faso",
        "country_bg": "Bulgaria",
        "country_bh": "Bahrain",
        "country_bi": "Burundi",
        "country_bj": "Benin",
        "country_bl": "Saint Barthelemy",
        "country_bm": "Bermuda",
        "country_bn": "Brunei Darussalum",
        "country_bo": "Bolivia, Plurinational State of",
        "country_bq": "Bonaire, Sint Eustatius and Saba",
        "country_br": "Brazil",
        "country_bs": "Bahamas",
        "country_bt": "Bhutan",
        "country_bu": "Burma",
        "country_bv": "Bouvet Island",
        "country_bw": "Botswana",
        "country_by": "Belarus",
        "country_bz": "Belize",
        "country_ca": "Canada",
        "country_cc": "Cocos (Keeling) Islands",
        "country_cd": "Congo, The Democratic Republic of the",
        "country_cf": "Central African Republic",
        "country_cg": "Congo",
        "country_ch": "Switzerland",
        "country_ci": "Cote D'Ivoire",
        "country_ck": "Cook Islands",
        "country_cl": "Chile",
        "country_cm": "Cameroon",
        "country_cn": "China",
        "country_co": "Colombia",
        "country_cp": "Clipperton Island",
        "country_cr": "Costa Rica",
        "country_cs": "Serbia Montenegro",
        "country_cu": "Cuba",
        "country_cv": "Cape Verde",
        "country_cw": "Curaçao",
        "country_cx": "Christmas Island",
        "country_cy": "Cyprus",
        "country_cz": "Czech Republic",
        "country_de": "Germany",
        "country_dg": "Diego Garcia",
        "country_dj": "Djibouti",
        "country_dk": "Denmark",
        "country_dm": "Dominica",
        "country_do": "Dominican Republic",
        "country_dz": "Algeria",
        "country_ea": "Ceuta, Melilla",
        "country_ec": "Ecuador",
        "country_ee": "Estonia",
        "country_eg": "Egypt",
        "country_eh": "Western Sahara",
        "country_er": "Eritrea",
        "country_es": "Spain",
        "country_et": "Ethiopia",
        "country_eu": "European Union",
        "country_fi": "Finland",
        "country_fj": "Fiji",
        "country_fk": "Falkland Islands (Malvinas)",
        "country_fm": "Micronesia, Federated States of",
        "country_fo": "Faroe Islands",
        "country_fr": "France",
        "country_fx": "France, Metropolitan",
        "country_ga": "Gabon",
        "country_gb": "United Kingdom",
        "country_gd": "Grenada",
        "country_ge": "Georgia",
        "country_gf": "French Guiana",
        "country_gg": "Guernsey",
        "country_gh": "Ghana",
        "country_gi": "Gibraltar",
        "country_gl": "Greenland",
        "country_gm": "Gambia",
        "country_gn": "Guinea",
        "country_gp": "Guadeloupe",
        "country_gq": "Equatorial Guinea",
        "country_gr": "Greece",
        "country_gs": "South Georgia and the South Sandwich Islands",
        "country_gt": "Guatemala",
        "country_gu": "Guam",
        "country_gw": "Guinea-Bissau",
        "country_gy": "Guyana",
        "country_hk": "Hong Kong",
        "country_hm": "Heard Island and McDonald Islands",
        "country_hn": "Honduras",
        "country_hr": "Croatia",
        "country_ht": "Haiti",
        "country_hu": "Hungary",
        "country_ic": "Canary Islands",
        "country_id": "Indonesia",
        "country_ie": "Ireland",
        "country_il": "Israel",
        "country_im": "Isle of Man",
        "country_in": "India",
        "country_io": "British Indian Ocean Territory",
        "country_iq": "Iraq",
        "country_ir": "Iran, Islamic Republic of",
        "country_is": "Iceland",
        "country_it": "Italy",
        "country_je": "Jersey",
        "country_jm": "Jamaica",
        "country_jo": "Jordan",
        "country_jp": "Japan",
        "country_ke": "Kenya",
        "country_kg": "Kyrgyzstan",
        "country_kh": "Cambodia",
        "country_ki": "Kiribati",
        "country_km": "Comoros",
        "country_kn": "Saint Kitts and Nevis",
        "country_kp": "Korea, Democratic People's Republic of",
        "country_kr": "Korea, Republic of",
        "country_kw": "Kuwait",
        "country_ky": "Cayman Islands",
        "country_kz": "Kazakhstan",
        "country_la": "Lao People's Democratic Republic",
        "country_lb": "Lebanon",
        "country_lc": "Saint Lucia",
        "country_li": "Liechtenstein",
        "country_lk": "Sri Lanka",
        "country_lr": "Liberia",
        "country_ls": "Lesotho",
        "country_lt": "Lithuania",
        "country_lu": "Luxembourg",
        "country_lv": "Latvia",
        "country_ly": "Libya",
        "country_ma": "Morocco",
        "country_mc": "Monaco",
        "country_md": "Moldova, Republic of",
        "country_me": "Montenegro",
        "country_mf": "Saint Martin (French part)",
        "country_mg": "Madagascar",
        "country_mh": "Marshall Islands",
        "country_mk": "Macedonia, the Former Yugoslav Republic of",
        "country_ml": "Mali",
        "country_mm": "Myanmar",
        "country_mn": "Mongolia",
        "country_mo": "Macau",
        "country_mp": "Northern Mariana Islands",
        "country_mq": "Martinique",
        "country_mr": "Mauritania",
        "country_ms": "Montserrat",
        "country_mt": "Malta",
        "country_mu": "Mauritius",
        "country_mv": "Maldives",
        "country_mw": "Malawi",
        "country_mx": "Mexico",
        "country_my": "Malaysia",
        "country_mz": "Mozambique",
        "country_na": "Namibia",
        "country_nc": "New Caledonia",
        "country_ne": "Niger",
        "country_nf": "Norfolk Island",
        "country_ng": "Nigeria",
        "country_ni": "Nicaragua",
        "country_nl": "Netherlands",
        "country_no": "Norway",
        "country_np": "Nepal",
        "country_nr": "Nauru",
        "country_nt": "Neutral Zone",
        "country_nu": "Niue",
        "country_nz": "New Zealand",
        "country_om": "Oman",
        "country_pa": "Panama",
        "country_pe": "Peru",
        "country_pf": "French Polynesia",
        "country_pg": "Papua New Guinea",
        "country_ph": "Philippines",
        "country_pk": "Pakistan",
        "country_pl": "Poland",
        "country_pm": "Saint Pierre and Miquelon",
        "country_pn": "Pitcairn",
        "country_pr": "Puerto Rico",
        "country_ps": "Palestinian Territory, Occupied",
        "country_pt": "Portugal",
        "country_pw": "Palau",
        "country_py": "Paraguay",
        "country_qa": "Qatar",
        "country_re": "Reunion",
        "country_ro": "Romania",
        "country_rs": "Serbia",
        "country_ru": "Russian Federation",
        "country_rw": "Rwanda",
        "country_sa": "Saudi Arabia",
        "country_sb": "Solomon Islands",
        "country_sc": "Seychelles",
        "country_sd": "Sudan",
        "country_se": "Sweden",
        "country_sf": "Finland",
        "country_sg": "Singapore",
        "country_sh": "Saint Helena, Ascension and Tristan da Cunha",
        "country_si": "Slovenia",
        "country_sj": "Svalbard and Jan Mayen",
        "country_sk": "Slovakia",
        "country_sl": "Sierra Leone",
        "country_sm": "San Marino",
        "country_sn": "Senegal",
        "country_so": "Somalia",
        "country_sr": "Suriname",
        "country_ss": "South Sudan",
        "country_st": "Sao Tome and Principe",
        "country_su": "Old U.S.S.R",
        "country_sx": "Sint Maarten (Dutch part)",
        "country_sv": "El Salvador",
        "country_sy": "Syrian Arab Republic",
        "country_sz": "Swaziland",
        "country_ta": "Tristan da Cunha",
        "country_tc": "Turks and Caicos Islands",
        "country_td": "Chad",
        "country_tf": "French Southern Territories",
        "country_tg": "Togo",
        "country_th": "Thailand",
        "country_tj": "Tajikistan",
        "country_tk": "Tokelau",
        "country_tl": "Timor-Leste",
        "country_tm": "Turkmenistan",
        "country_tn": "Tunisia",
        "country_to": "Tonga",
        "country_tp": "East Timor",
        "country_tr": "Turkey",
        "country_tt": "Trinidad and Tobago",
        "country_tv": "Tuvalu",
        "country_tw": "Taiwan, Province of China",
        "country_tz": "Tanzania, United Republic of",
        "country_ti": "Tibet",
        "country_ua": "Ukraine",
        "country_ug": "Uganda",
        "country_uk": "United Kingdom",
        "country_um": "United States Minor Outlying Islands",
        "country_us": "United States",
        "country_uy": "Uruguay",
        "country_uz": "Uzbekistan",
        "country_va": "Holy See (Vatican city state)",
        "country_vc": "Saint Vincent and the Grenadines",
        "country_ve": "Venezuela, Bolivarian Republic of",
        "country_vg": "Virgin Islands, British",
        "country_vi": "Virgin Islands, U.S.",
        "country_vn": "Vietnam",
        "country_vu": "Vanuatu",
        "country_wf": "Wallis and Futuna",
        "country_ws": "Samoa",
        "country_ye": "Yemen",
        "country_yt": "Mayotte",
        "country_yu": "Yugoslavia",
        "country_za": "South Africa",
        "country_zm": "Zambia",
        "country_zr": "Zaire",
        "country_zw": "Zimbabwe",
        "country_a1": "Anonymous Proxy",
        "country_a2": "Satellite Provider",
        "country_ap": "Asia\/Pacific Region",
        "country_o1": "Other Country",
        "country_cat": "Catalan-speaking communities",
        "continent_eur": "Europe",
        "continent_afr": "Africa",
        "continent_ant": "Antarctica",
        "continent_asi": "Asia",
        "continent_amn": "North America",
        "continent_amc": "Central America",
        "continent_ams": "South America",
        "continent_oce": "Oceania",
        "HttpServerModule": "HTTP Server Module",
        "GeoIPDatabases": "GeoIP Databases",
        "PiwikNotManagingGeoIPDBs": "Piwik is not currently managing any GeoIP databases.",
        "IWantToDownloadFreeGeoIP": "I want to download the free GeoIP database...",
        "DefaultLocationProviderDesc1": "The default location provider guesses a visitor's country based on the language they use.",
        "DefaultLocationProviderDesc2": "This is not very accurate, so %1$swe recommend installing and using %2$sGeoIP%3$s.%4$s",
        "HowToInstallGeoIPDatabases": "How do I get the GeoIP databases?",
        "GeoIpLocationProviderDesc_Php1": "This location provider is the most simple to install as it does not require server configuration (ideal for shared hosting!). It uses a GeoIP database and MaxMind's PHP API to accurately determine the location of your visitors.",
        "GeoIpLocationProviderDesc_Php2": "If your website gets a lot of traffic, you may find that this location provider is too slow. In this case, you should install the %1$sPECL extension%2$s or a %3$sserver module%4$s.",
        "GeoIpLocationProviderDesc_ServerBased1": "This location provider uses the GeoIP module that has been installed in your HTTP server. This provider is fast and accurate, but %1$scan only be used with normal browser tracking.%2$s",
        "GeoIpLocationProviderDesc_ServerBased2": "If you have to import log files or do something else that requires setting IP addresses, use the %1$sPECL GeoIP implementation (recommended)%2$s or the %3$sPHP GeoIP implementation%4$s.",
        "GeoIpLocationProviderDesc_ServerBasedAnonWarn": "Note: IP anonymization has no effect on the locations reported by this provider. Before using it with IP anonymization, make sure this does not violate any privacy laws you may be subject to.",
        "GeolocationPageDesc": "On this page you can change how Piwik determines visitor locations.",
        "CurrentLocationIntro": "According to this provider, your current location is",
        "CannotFindPeclGeoIPDb": "Could not find a country, region or city database for the GeoIP PECL module. Make sure your GeoIP database is located in %1$s and is named %2$s or %3$s otherwise the PECL module will not notice it.",
        "PeclGeoIPNoDBDir": "The PECL module is looking for databases in %1$s, but this directory does not exist. Please create it and add the GeoIP databases to it. Alternatively, you can set %2$s to the correct directory in your php.ini file.",
        "PeclGeoLiteError": "Your GeoIP database in %1$s is named %2$s. Unfortunately, the PECL module will not recognize it with this name. Please rename it to %3$s.",
        "GeoIpLocationProviderDesc_Pecl1": "This location provider uses a GeoIP database and a PECL module to accurately and efficiently determine the location of your visitors.",
        "GeoIpLocationProviderDesc_Pecl2": "There are no limitations with this provider, so it is the one we recommend using.",
        "GeoIPImplHasAccessTo": "This GeoIP implementation has access to the following types of databases",
        "CannotFindGeoIPServerVar": "The %s variable is not set. Your server may not be configured correctly.",
        "GeoIPCannotFindMbstringExtension": "Cannot find the %1$s function. Please make sure the %2$s extension is installed and loaded.",
        "InvalidGeoIPUpdatePeriod": "Invalid period for the GeoIP updater: %1$s. Valid values are %2$s.",
        "LocationProvider": "Location Provider",
        "TestIPLocatorFailed": "Piwik tried checking the location of a known IP address (%1$s), but your server returned %2$s. If this provider were configured correctly, it would return  %3$s.",
        "CannotLocalizeLocalIP": "IP address %s is a local address and cannot be geolocated.",
        "HowToSetupGeoIP": "How to setup accurate geolocation with GeoIP",
        "HowToSetupGeoIPIntro": "You do not appear to have accurate Geolocation setup. This is a useful feature and without it you will not see accurate and complete location information for your visitors. Here's how you can quickly start using it:",
        "HowToSetupGeoIP_Step1": "%1$sDownload%2$s the GeoLite City database from %3$sMaxMind%4$s.",
        "HowToSetupGeoIP_Step2": "Extract this file and copy the result, %1$s into the %2$smisc%3$s Piwik subdirectory (you can do this either by FTP or SSH).",
        "HowToSetupGeoIP_Step3": "Reload this screen. The %1$sGeoIP (PHP)%2$s provider will now be %3$sInstalled%4$s. Select it.",
        "HowToSetupGeoIP_Step4": "And you're done! You've just setup Piwik to use GeoIP which means you'll be able to see the regions and cities of your visitors along with very accurate country information.",
        "getCountryDocumentation": "This report shows which country your visitors were in when they accessed your website.",
        "getContinentDocumentation": "This report shows which continent your visitors were in when they accessed your website.",
        "getRegionDocumentation": "This report shows which region your visitors were in when they accessed your website.",
        "getCityDocumentation": "This report shows the cities your visitors were in when they accessed your website.",
        "GeoIPDocumentationSuffix": "In order to see data for this report, you must setup GeoIP in the Geolocation admin tab. The commercial %1$sMaxmind%2$s GeoIP databases are more accurate than the free ones. To see how accurate they are, click %3$shere%4$s.",
        "NoDataForGeoIPReport1": "There is no data for this report because there is either no location data available or visitor IP addresses cannot be geolocated.",
        "NoDataForGeoIPReport2": "To enable accurate geolocation, change the settings %1$shere%2$s and use a %3$scity level database%4$s.",
        "ToGeolocateOldVisits": "To get location data for your old visits, use the script described %1$shere%2$s.",
        "GeoIPPeclCustomDirNotSet": "The %s PHP ini option is not set.",
        "GeoIPServerVarsFound": "Piwik detects the following GeoIP %s variables",
        "GeoIpLocationProviderNotRecomnended": "Geolocation works, but you are not using one of the recommended providers.",
        "AssumingNonApache": "Cannot find apache_get_modules function, assuming non-Apache webserver.",
        "FoundApacheModules": "Piwik found the following Apache modules",
        "GeoIPNoServerVars": "Piwik cannot find any GeoIP %s variables.",
        "IPurchasedGeoIPDBs": "I purchased more %1$saccurate databases from MaxMind%2$s and want to setup automatic updates.",
        "GeoIPUpdaterInstructions": "Enter the download links for your databases below. If you've purchased databases from %3$sMaxMind%4$s, you can find these links %1$shere%2$s. Please contact %3$sMaxMind%4$s if you have trouble accessing them.",
        "GeoIPUpdaterIntro": "Piwik is currently managing updates for the following GeoIP databases",
        "LocationDatabase": "Location Database",
        "LocationDatabaseHint": "A location database is either a country, region or city database.",
        "ISPDatabase": "ISP Database",
        "OrgDatabase": "Organization Database",
        "DownloadingDb": "Downloading %s",
        "CannotSetupGeoIPAutoUpdating": "It seems like you're storing your GeoIP databases outside of Piwik (we can tell since there are no databases in the misc subdirectory, but your GeoIP is working). Piwik cannot automatically update your GeoIP databases if they are located outside of the misc directory.",
        "CannotListContent": "Couldn't list content for %1$s: %2$s",
        "CannotFindGeoIPDatabaseInArchive": "Cannot find %1$s file in tar archive %2$s!",
        "CannotUnzipDatFile": "Could not unzip dat file in %1$s: %2$s",
        "UnsupportedArchiveType": "Encountered unsupported archive type %1$s.",
        "ThisUrlIsNotAValidGeoIPDB": "The downloaded file is not a valid GeoIP database. Please re-check the URL or download the file manually.",
        "FatalErrorDuringDownload": "A fatal error occurred while downloading this file. There might be something wrong with your internet connection, with the GeoIP database you downloaded or Piwik. Try downloading and installing it manually.",
        "SetupAutomaticUpdatesOfGeoIP": "Setup automatic updates of GeoIP databases",
        "DownloadNewDatabasesEvery": "Update databases every",
        "GeoLiteCityLink": "If you're using the GeoLite City database, use this link: %1$s%2$s%3$s.",
        "UpdaterWasLastRun": "The updater was last run on %s.",
        "UpdaterHasNotBeenRun": "The updater has never been run.",
        "HowToInstallApacheModule": "How do I install the GeoIP module for Apache?",
        "HowToInstallNginxModule": "How do I install the GeoIP module for Nginx?",
        "HowToInstallGeoIpPecl": "How do I install the GeoIP PECL extension?",
        "GeoIPIncorrectDatabaseFormat": "Your GeoIP database does not seem to have the correct format. It may be corrupt. Make sure you are using the binary version and try replacing it with another copy.",
        "DefaultLocationProviderExplanation": "You are using the default location provider, which means Piwik will guess the visitor's location based on the language they use. %1$sRead this%2$s to learn how to setup more accurate geolocation.",
        "UpdaterWillRunNext": "It is next scheduled to run on %s.",
        "UpdaterIsNotScheduledToRun": "It is not scheduled to run in the future.",
        "UpdaterScheduledForNextRun": "It is scheduled to run during the next archive.php cron execution."
    },
    "UserCountryMap": {
        "map": "map",
        "VisitorMap": "Visitor Map",
        "Countries": "Countries",
        "Regions": "Regions",
        "Cities": "Cities",
        "WorldWide": "World-Wide",
        "AndNOthers": "and %s others",
        "None": "None",
        "Unlocated": "<b>%s<\/b> %p of the visits from %c couldn't be geo located.",
        "NoVisit": "No visit",
        "RealTimeMap": "Real-time Map",
        "Seconds": "seconds",
        "SecondsAgo": "%s seconds ago",
        "Minutes": "minutes",
        "MinutesAgo": "%s minutes ago",
        "Hours": "hours",
        "HoursAgo": "%s hours ago",
        "DaysAgo": "%s days ago",
        "ShowingVisits": "Geo-located visits of last",
        "Searches": "%s searches",
        "GoalConversions": "%s goal conversions"
    },
    "UserSettings": {
        "PluginDescription": "Reports various User Settings: Browser, Browser Family, Operating System, Plugins, Resolution, Global Settings.",
        "VisitorSettings": "Visitor Settings",
        "BrowserFamilies": "Browser families",
        "Browsers": "Browsers",
        "BrowserWithNoPluginsEnabled": "%1$s with no plugins enabled",
        "BrowserWithPluginsEnabled": "%1$s with plugins %2$s enabled",
        "Configurations": "Configurations",
        "WidgetGlobalVisitorsDocumentation": "This report shows the most common overall configurations that your visitors had. A configuration is the combination of an operating system, a browser type and a screen resolution.",
        "WidgetPluginsDocumentation": "This report shows which browser plugins your visitors had enabled. This information might be important for choosing the right way to deliver your content.",
        "OperatingSystems": "Operating systems",
        "OperatingSystemFamily": "Operating system family",
        "Resolutions": "Resolutions",
        "WideScreen": "Wide Screen",
        "ColumnBrowserFamily": "Browser family",
        "ColumnBrowser": "Browser",
        "ColumnBrowserVersion": "Browser version",
        "ColumnConfiguration": "Configuration",
        "ColumnOperatingSystem": "Operating system",
        "ColumnResolution": "Resolution",
        "ColumnTypeOfScreen": "Type of screen",
        "WidgetResolutions": "Screen Resolution",
        "WidgetBrowsers": "Visitor Browser",
        "WidgetBrowserVersion": "Browser Version",
        "WidgetBrowsersDocumentation": "This report contains information about what kind of browser your visitors were using. Each browser version is listed separately.",
        "WidgetPlugins": "Browser Plugins",
        "PluginDetectionDoesNotWorkInIE": "Note: Plugins detection doesn't work in Internet Explorer. This report is only based on non-IE browsers.",
        "WidgetWidescreen": "Normal \/ Widescreen",
        "WidgetBrowserFamilies": "Browser Family",
        "WidgetBrowserFamiliesDocumentation": "This chart shows your visitors' browsers broken down into browser families. %s The most important information for web developers is what kind of rendering engine their visitors are using. The labels contain the names of the engines followed by the most common browser using that engine in brackets.",
        "WidgetOperatingSystems": "Operating System",
        "WidgetGlobalVisitors": "Visitor Configuration",
        "GamingConsole": "Gaming Console",
        "MobileVsDesktop": "Mobile vs Desktop",
        "BrowserLanguage": "Browser language",
        "LanguageCode": "Language code",
        "Language_aa": "Afar",
        "Language_ab": "Abkhazian",
        "Language_ae": "Avestan",
        "Language_af": "Afrikaans",
        "Language_ak": "Akan",
        "Language_am": "Amharic",
        "Language_an": "Aragonese",
        "Language_ar": "Arabic",
        "Language_as": "Assamese",
        "Language_av": "Avaric",
        "Language_ay": "Aymara",
        "Language_az": "Azerbaijani",
        "Language_ba": "Bashkir",
        "Language_be": "Belarusian",
        "Language_bg": "Bulgarian",
        "Language_bh": "Bihari",
        "Language_bi": "Bislama",
        "Language_bm": "Bambara",
        "Language_bn": "Bengali",
        "Language_bo": "Tibetan",
        "Language_br": "Breton",
        "Language_bs": "Bosnian",
        "Language_ca": "Catalan",
        "Language_ce": "Chechen",
        "Language_ch": "Chamorro",
        "Language_co": "Corsican",
        "Language_cr": "Cree",
        "Language_cs": "Czech",
        "Language_cu": "Church Slavic",
        "Language_cv": "Chuvash",
        "Language_cy": "Welsh",
        "Language_da": "Danish",
        "Language_de": "German",
        "Language_dv": "Divehi",
        "Language_dz": "Dzongkha",
        "Language_ee": "Ewe",
        "Language_el": "Greek",
        "Language_en": "English",
        "Language_eo": "Esperanto",
        "Language_es": "Spanish",
        "Language_et": "Estonian",
        "Language_eu": "Basque",
        "Language_fa": "Persian",
        "Language_ff": "Fulah",
        "Language_fi": "Finnish",
        "Language_fj": "Fijian",
        "Language_fo": "Faroese",
        "Language_fr": "French",
        "Language_fy": "Western Frisian",
        "Language_ga": "Irish",
        "Language_gd": "Scottish Gaelic",
        "Language_gl": "Galician",
        "Language_gn": "Guarani",
        "Language_gu": "Gujarati",
        "Language_gv": "Manx",
        "Language_ha": "Hausa",
        "Language_he": "Hebrew",
        "Language_hi": "Hindi",
        "Language_ho": "Hiri Motu",
        "Language_hr": "Croatian",
        "Language_ht": "Haitian Creole",
        "Language_hu": "Hungarian",
        "Language_hy": "Armenian",
        "Language_hz": "Herero",
        "Language_ia": "Interlingua",
        "Language_id": "Indonesian",
        "Language_ie": "Interlingue",
        "Language_ig": "Igbo",
        "Language_ii": "Sichuan Yi",
        "Language_ik": "Inupiaq",
        "Language_io": "Ido",
        "Language_is": "Icelandic",
        "Language_it": "Italian",
        "Language_iu": "Inuktitut",
        "Language_ja": "Japanese",
        "Language_jv": "Javanese",
        "Language_ka": "Georgian",
        "Language_kg": "Kongo",
        "Language_ki": "Kukuyu",
        "Language_kj": "Kuanyama",
        "Language_kk": "Kazakh",
        "Language_kl": "Greenlandic",
        "Language_km": "Central Khmer",
        "Language_kn": "Kannada",
        "Language_ko": "Korean",
        "Language_kr": "Kanuri",
        "Language_ks": "Kashmiri",
        "Language_ku": "Kurdish",
        "Language_kv": "Komi",
        "Language_kw": "Cornish",
        "Language_ky": "Kirghiz",
        "Language_la": "Latin",
        "Language_lb": "Luxembourgish",
        "Language_lg": "Ganda",
        "Language_li": "Limburgish",
        "Language_ln": "Lingala",
        "Language_lo": "Lao",
        "Language_lt": "Lithuanian",
        "Language_lu": "Luba-Katanga",
        "Language_lv": "Latvian",
        "Language_mg": "Malagasy",
        "Language_mh": "Marshallese",
        "Language_mi": "Maori",
        "Language_mk": "Macedonian",
        "Language_ml": "Malayalam",
        "Language_mn": "Mongolian",
        "Language_mr": "Marathi",
        "Language_ms": "Malay",
        "Language_mt": "Maltese",
        "Language_my": "Burmese",
        "Language_na": "Nauru",
        "Language_nb": "Norwegian Bokma°l",
        "Language_nd": "North Ndebele",
        "Language_ne": "Nepali",
        "Language_ng": "Ndonga",
        "Language_nl": "Dutch",
        "Language_nn": "Norwegian Nynorsk",
        "Language_no": "Norwegian",
        "Language_nr": "South Ndebele",
        "Language_nv": "Navajo",
        "Language_ny": "Chichewa",
        "Language_oc": "Occitan",
        "Language_oj": "Ojibwa",
        "Language_om": "Oroma",
        "Language_or": "Oriya",
        "Language_os": "Ossetian",
        "Language_pa": "Panjabi",
        "Language_pi": "Pali",
        "Language_pl": "Polish",
        "Language_ps": "Pashto",
        "Language_pt": "Portuguese",
        "Language_qu": "Quechua",
        "Language_rm": "Raeto-Romance",
        "Language_rn": "Rundi",
        "Language_ro": "Romanian",
        "Language_ru": "Russian",
        "Language_rw": "Kinyarwanda",
        "Language_sa": "Sanskrit",
        "Language_sc": "Sardinian",
        "Language_sd": "Sindhi",
        "Language_se": "Northern Sami",
        "Language_sg": "Sango",
        "Language_si": "Sinhala",
        "Language_sk": "Slovak",
        "Language_sl": "Slovenian",
        "Language_sm": "Samoan",
        "Language_sn": "Shona",
        "Language_so": "Somali",
        "Language_sq": "Albanian",
        "Language_sr": "Serbian",
        "Language_ss": "Swati",
        "Language_st": "Sotho",
        "Language_su": "Sundanese",
        "Language_sv": "Swedish",
        "Language_sw": "Swahili",
        "Language_ta": "Tamil",
        "Language_te": "Telugu",
        "Language_tg": "Tajik",
        "Language_th": "Thai",
        "Language_ti": "Tigrinya",
        "Language_tk": "Turkmen",
        "Language_tl": "Tagalog",
        "Language_tn": "Tswana",
        "Language_to": "Tonga",
        "Language_tr": "Turkish",
        "Language_ts": "Tsonga",
        "Language_tt": "Tatar",
        "Language_tw": "Twi",
        "Language_ty": "Tahitian",
        "Language_ug": "Uighur",
        "Language_uk": "Ukrainian",
        "Language_ur": "Urdu",
        "Language_uz": "Uzbek",
        "Language_ve": "Venda",
        "Language_vi": "Vietnamese",
        "Language_vo": "Volapük",
        "Language_wa": "Walloon",
        "Language_wo": "Wolof",
        "Language_xh": "Xhosa",
        "Language_yi": "Yiddish",
        "Language_yo": "Yoruba",
        "Language_za": "Chuang",
        "Language_zh": "Chinese",
        "Language_zu": "Zulu"
    },
    "UsersManager": {
        "PluginDescription": "Users Management in Piwik: add a new User, edit an existing one, update the permissions. All the actions are also available through the API.",
        "UsersManagement": "Users Management",
        "UsersManagementMainDescription": "Create new users or update the existing users. You can then set their permissions above.",
        "SuperUserAccessManagement": "Manage Super User access",
        "SuperUserAccessManagementMainDescription": "Super users have the highest permissions. They can perform all administrative tasks such as adding new websites to monitor, adding users, changing user permissions, activating and deactivating plugins and even installing new plugins from the Marketplace.",
        "SuperUserAccessManagementGrantMore": "You can grant Super User access to other users of Piwik here. Please use this feature carefully.",
        "NoUsersExist": "There are no users yet.",
        "ConfirmGrantSuperUserAccess": "Do you really want to grant '%s' Super User access? Warning: the user will have access to all websites and will be able to perform administrative tasks.",
        "ConfirmProhibitOtherUsersSuperUserAccess": "Do you really want to remove Super User access from '%s'? The user will lose all permissions and access to all websites. Make sure to set permissions to needed websites afterwards if necessary.",
        "ConfirmProhibitMySuperUserAccess": "%s, do you really want to remove your own Super User access? You will lose all permissions and access to all websites and will be logged out from Piwik.",
        "ThereAreCurrentlyNRegisteredUsers": "There are currently %s registered users.",
        "ManageAccess": "Manage access",
        "MainDescription": "Decide which users have which Piwik access on your Websites. You can also set the permissions on all the Websites at once.",
        "AllWebsites": "All websites",
        "ApplyToAllWebsites": "Apply to all websites",
        "User": "User",
        "PrivNone": "No access",
        "PrivView": "View",
        "PrivAdmin": "Admin",
        "ChangeAllConfirm": "Are you sure you want to change '%s' permissions on all the websites?",
        "ChangePasswordConfirm": "Changing the password will also change the user's token_auth. Do you really want to continue?",
        "AnonymousUserHasViewAccess": "Note: the %1$s user has %2$s access to this website.",
        "AnonymousUserHasViewAccess2": "Your analytics reports and your visitors information are publicly viewable.",
        "Email": "Email",
        "Alias": "Alias",
        "ReportToLoadByDefault": "Report to load by default",
        "ReportDateToLoadByDefault": "Report date to load by default",
        "ForAnonymousUsersReportDateToLoadByDefault": "For anonymous users, report date to load by default",
        "ExcludeVisitsViaCookie": "Exclude your visits using a cookie",
        "YourVisitsAreIgnoredOnDomain": "%sYour visits are ignored by Piwik on %s %s (the Piwik ignore cookie was found in your browser).",
        "YourVisitsAreNotIgnored": "%sYour visits are not ignored by Piwik%s (the Piwik ignore cookie was not found in your browser).",
        "ClickHereToDeleteTheCookie": "Click here to delete the cookie and have Piwik track your visits",
        "ClickHereToSetTheCookieOnDomain": "Click here to set a cookie that will exclude your visits on websites tracked by Piwik on %s",
        "AddUser": "Add a new user",
        "MenuUsers": "Users",
        "MenuUserSettings": "User settings",
        "MenuAnonymousUserSettings": "Anonymous user settings",
        "NoteNoAnonymousUserAccessSettingsWontBeUsed2": "Note: You cannot change the settings in this section, because you do not have any website that can be accessed by the anonymous user.",
        "WhenUsersAreNotLoggedInAndVisitPiwikTheyShouldAccess": "When users are not logged in and visit Piwik, they should access",
        "IfYouWouldLikeToChangeThePasswordTypeANewOne": "If you would like to change the password type a new one. Otherwise leave this blank.",
        "TypeYourPasswordAgain": "Type your new password again.",
        "TheLoginScreen": "The login screen",
        "DeleteConfirm": "Are you sure you want to delete the user %s?",
        "YourUsernameCannotBeChanged": "Your username cannot be changed.",
        "ExceptionLoginExists": "Login '%s' already exists.",
        "ExceptionEmailExists": "User with email '%s' already exists.",
        "ExceptionInvalidLoginFormat": "The login must be between %1$s and %2$s characters long and contain only letters, numbers, or the characters '_' or '-' or '.' or '@' or '+'",
        "ExceptionInvalidPassword": "The password length must be between %1$s and %2$s characters.",
        "ExceptionInvalidEmail": "The email doesn't have a valid format.",
        "ExceptionDeleteDoesNotExist": "User '%s' doesn't exist therefore it can't be deleted.",
        "ExceptionDeleteOnlyUserWithSuperUserAccess": "Deleting user '%s' is not possible. ",
        "ExceptionRemoveSuperUserAccessOnlySuperUser": "Removing the Super User access from user '%s' is not possible.",
        "ExceptionYouMustGrantSuperUserAccessFirst": "There has to be at least one user with Super User access. Please grant Super User access to another user first.",
        "ExceptionAdminAnonymous": "You cannot grant 'admin' access to the 'anonymous' user.",
        "ExceptionEditAnonymous": "The anonymous user cannot be edited or deleted. It is used by Piwik to define a user that has not logged in yet. For example, you can make your statistics public by granting the 'view' access to the 'anonymous' user.",
        "ExceptionSuperUserAccess": "This user has Super User access and has already permission to access and modify all websites in Piwik. You may remove the Super User access from this user and try again.",
        "ExceptionUserDoesNotExist": "User '%s' doesn't exist.",
        "ExceptionAccessValues": "The parameter access must have one of the following values : [ %s ]",
        "ExceptionPasswordMD5HashExpected": "UsersManager.getTokenAuth is expecting a MD5-hashed password (32 chars long string). Please call the md5() function on the password before calling this method.",
        "InjectedHostCannotChangePwd": "You are currently visiting with an unknown host (%1$s). You cannot change your password until this problem is fixed.",
        "EmailYourAdministrator": "%1$sE-mail your administrator about this problem%2$s.",
        "LastSeen": "Last seen"
    },
    "VisitFrequency": {
        "PluginDescription": "Reports various statistics about the Returning Visitor versus the First time visitor.",
        "ColumnReturningVisits": "Returning Visits",
        "ReturningVisitsDocumentation": "This is an overview of the returning visits.",
        "ReturningVisitDocumentation": "A returning visit is (as opposed to a new visit) made by someone who has visited the website at least once before.",
        "ColumnActionsByReturningVisits": "Actions by Returning Visits",
        "ColumnAverageVisitDurationForReturningVisitors": "Avg. Duration of a Returning Visit (in sec)",
        "ColumnBounceRateForReturningVisits": "Bounce Rate for Returning Visits",
        "ColumnBounceCountForReturningVisits": "Bounce Count for Returning Visits",
        "ColumnAvgActionsPerReturningVisit": "Avg. Actions per Returning Visit",
        "ColumnMaxActionsInReturningVisit": "Maximum actions in one returning visit",
        "ColumnUniqueReturningVisitors": "Unique returning visitors",
        "ColumnNbReturningVisitsConverted": "Number of converted returning visits",
        "ColumnSumVisitLengthReturning": "Total time spent by returning visitors (in seconds)",
        "ReturnVisits": "%s returning visits",
        "ReturnActions": "%s actions by the returning visits",
        "ReturnAvgActions": "%s actions per returning visit",
        "ReturnAverageVisitDuration": "%s average visit duration for returning visitors",
        "ReturnBounceRate": "%s returning visits have bounced (left the website after one page)",
        "WidgetOverview": "Frequency Overview",
        "WidgetGraphReturning": "Returning Visits Over Time",
        "SubmenuFrequency": "Frequency"
    },
    "VisitorInterest": {
        "PluginDescription": "Reports about the Visitor Interest: number of pages viewed, time spent on the Website.",
        "VisitsPerDuration": "Visits per visit duration",
        "VisitsPerNbOfPages": "Visits per number of pages",
        "ColumnVisitDuration": "Visit duration",
        "ColumnPagesPerVisit": "Pages per visit",
        "visitsByVisitCount": "Visits by Visit Number",
        "VisitNum": "Visit number",
        "WidgetLengths": "Length of Visits",
        "WidgetLengthsDocumentation": "In this report, you can see how many visits had a certain total duration. Initially, the report is shown as a tag cloud, more common durations are displayed in a larger font.",
        "WidgetPages": "Pages per Visit",
        "WidgetPagesDocumentation": "In this report, you can see how many visits involved a certain number of pageviews. Initially, the report is shown as a tag cloud, more common numbers of pages are displayed in a larger font.",
        "WidgetVisitsByNumDocumentation": "In this report, you can see the number of visits who were the Nth visit, ie. visitors who visited your website at least N times.",
        "Engagement": "Engagement",
        "OneMinute": "1 min",
        "PlusXMin": "%s min",
        "BetweenXYMinutes": "%1$s-%2$s min",
        "OnePage": "1 page",
        "NPages": "%s pages",
        "BetweenXYSeconds": "%1$s-%2$ss",
        "VisitsByDaysSinceLast": "Visits by days since last visit",
        "WidgetVisitsByDaysSinceLast": "Visits by Days Since Last Visit",
        "WidgetVisitsByDaysSinceLastDocumentation": "In this report, you can see how many visits were from visitors whose last visit was a certain number of days ago."
    },
    "VisitsSummary": {
        "PluginDescription": "Reports the general Analytics numbers: visits, unique visitors, number of actions, Bounce Rate, etc.",
        "VisitsSummary": "Visits Summary",
        "VisitsSummaryDocumentation": "This is an overview of the visit evolution.",
        "NbUniqueVisitors": "%s unique visitors",
        "NbActionsDescription": "%s actions",
        "NbPageviewsDescription": "%s pageviews",
        "NbUniquePageviewsDescription": "%s unique pageviews",
        "NbDownloadsDescription": "%s downloads",
        "NbUniqueDownloadsDescription": "%s unique downloads",
        "NbOutlinksDescription": "%s outlinks",
        "NbSearchesDescription": "%s total searches on your website",
        "NbKeywordsDescription": "%s unique keywords",
        "NbUniqueOutlinksDescription": "%s unique outlinks",
        "AverageVisitDuration": "%s average visit duration",
        "MaxNbActions": "%s max actions in one visit",
        "NbActionsPerVisit": "%s actions (page views, downloads, outlinks and internal site searches) per visit",
        "NbVisitsBounced": "%s visits have bounced (left the website after one page)",
        "AverageGenerationTime": "%s average generation time",
        "GenerateTime": "%s seconds to generate the page",
        "GenerateQueries": "%s queries executed",
        "WidgetLastVisits": "Visits Over Time",
        "WidgetVisits": "Visits Overview",
        "WidgetOverviewGraph": "Visits Overview (with graph)"
    },
    "VisitTime": {
        "PluginDescription": "Reports the Local and Server time. Server time information can be useful to schedule a maintenance on the Website.",
        "LocalTime": "Visits per local time",
        "ServerTime": "Visits per server time",
        "ColumnServerTime": "Server time",
        "ColumnLocalTime": "Local time",
        "WidgetLocalTime": "Visits by Local Time",
        "WidgetLocalTimeDocumentation": "This graph shows what time it was in the %s visitors' time zones %s during their visits.",
        "WidgetServerTime": "Visits by Server Time",
        "WidgetServerTimeDocumentation": "This graph shows what time it was in the %s server's time zone %s during the visits.",
        "SubmenuTimes": "Times",
        "NHour": "%sh",
        "VisitsByDayOfWeek": "Visits by Day of Week",
        "DayOfWeek": "Day of the week",
        "WidgetByDayOfWeekDocumentation": "This graph shows the number of visits your website received on each day of the week."
    },
    "Widgetize": {
        "PluginDescription": "The plugin makes it very easy to export any Piwik Widget in your Blog, Website or on Igoogle and Netvibes!",
        "TopLinkTooltip": "Export Piwik Reports as Widgets and embed the Dashboard in your app as an iframe.",
        "OpenInNewWindow": "Open in a new window"
    },
    "ScheduledReports": {
        "PluginDescription": "Create and download your custom reports, and have them emailed daily, weekly or monthly.",
        "ManageEmailReports": "Manage Email Reports",
        "EmailReports": "Email Reports",
        "SendReportNow": "Send Report now",
        "EmailSchedule": "Email Schedule",
        "SendReportTo": "Send report to",
        "NoRecipients": "This report has no recipients",
        "ReportType": "Send report via",
        "ReportFormat": "Report Format",
        "AggregateReportsFormat": "(optional) Display options",
        "AggregateReportsFormat_TablesOnly": "(default) Display Report tables (Graphs only for key metrics)",
        "AggregateReportsFormat_GraphsOnly": "Display Graphs only (no report tables)",
        "AggregateReportsFormat_TablesAndGraphs": "Display Report tables and Graphs for all reports",
        "DisplayFormat_TablesOnly": "Display Tables only (no graphs)",
        "SentToMe": "Send to me",
        "EvolutionGraph": "Show Historical Graphs for the top %s values",
        "CreateAndScheduleReport": "Create and Schedule a report",
        "CancelAndReturnToReports": "Cancel and %sreturn to the list of reports%s",
        "DescriptionOnFirstPage": "The report description will be displayed on the first page of the report.",
        "Segment_Help": "You can select an existing custom segment to apply to data in this email report. You may create and edit custom segments in your dashboard %s(click here to open)%s, then click on the \"%s\" box, then \"%s\".",
        "Segment_Deletion_Error": "This segment cannot be deleted or made invisible to other users because it is used to generate email report(s) %s. Please retry after removing this segment from this report(s).",
        "WeeklyScheduleHelp": "Weekly schedule: report will be sent on Monday of each week.",
        "MonthlyScheduleHelp": "Monthly schedule: report will be sent the first day of each month.",
        "ReportHour": "Send report at",
        "OClock": "o'clock",
        "AlsoSendReportToTheseEmails": "Also send the report to these emails (one email per line):",
        "ReportsIncluded": "Statistics included",
        "CreateReport": "Create Report",
        "UpdateReport": "Update Report",
        "PiwikReports": "Piwik Reports",
        "EmailHello": "Hello,",
        "PleaseFindAttachedFile": "Please find in attached file your %1$s report for %2$s.",
        "PleaseFindBelow": "Please find below your %1$s report for %2$s.",
        "SegmentAppliedToReports": "The segment '%s' is applied to the reports.",
        "CustomVisitorSegment": "Custom Visitor Segment:",
        "AreYouSureDeleteReport": "Are you sure you want to delete this report and its schedule?",
        "ThereIsNoReportToManage": "There is no report to manage for website %s",
        "MustBeLoggedIn": "You must be logged in to create and schedule custom reports.",
        "FrontPage": "Front Page",
        "TableOfContent": "Report list",
        "TopOfReport": "Back to top",
        "Pagination": "Page %s of %s",
        "ReportIncludeNWebsites": "The report will include main metrics for all websites that have at least one visit (from the %s websites currently available).",
        "TopLinkTooltip": "Create Email Reports to get Piwik stats delivered to your email or your customers' address automatically!",
        "ReportSent": "Report sent",
        "ReportUpdated": "Report updated"
    },
    "ImageGraph": {
        "PluginDescription": "Generate beautiful static PNG Graph images for any Piwik report.",
        "ColumnOrdinateMissing": "The column '%s' was not found in this report. Try any of %s"
    },
    "RowEvolution": {
        "MetricsFor": "Metrics for %s",
        "AvailableMetrics": "Available metrics",
        "MetricBetweenText": "from %s to %s",
        "MetricMinMax": "%1$s ranged between %2$s and %3$s over the period",
        "MetricChangeText": "%s change over the period",
        "Documentation": "Click the metrics to display them in the large evolution graph. Use shift-click to display multiple metrics at once.",
        "CompareRows": "Compare records",
        "ComparingRecords": "Comparing %s rows",
        "CompareDocumentation": "Click the link below and open this popup for another row from the same table to compare multiple records.<br \/>Use shift-click to mark the row for comparison without opening this popup.",
        "PickARow": "Pick a row to compare",
        "PickAnotherRow": "Pick another row to compare",
        "MultiRowEvolutionTitle": "Evolution of multiple rows"
    },
    "Transitions": {
        "PluginDescription": "Reports about previous and following actions for each page URL.",
        "IncomingTraffic": "Incoming traffic",
        "OutgoingTraffic": "Outgoing traffic",
        "XOfAllPageviews": "%s of all views of this page",
        "LoopsInline": "%s page reloads",
        "XOutOfYVisits": "%s (out of %s)",
        "FromPreviousPages": "From Internal Pages",
        "FromPreviousPagesInline": "%s from internal pages",
        "FromPreviousSiteSearches": "From Internal Search",
        "FromPreviousSiteSearchesInline": "%s from internal searches",
        "ToFollowingSiteSearches": "Internal Searches",
        "ToFollowingSiteSearchesInline": "%s internal searches",
        "ToFollowingPages": "To Internal Pages",
        "ToFollowingPagesInline": "%s to internal pages",
        "DirectEntries": "Direct Entries",
        "FromSearchEngines": "From Search Engines",
        "FromWebsites": "From Websites",
        "FromCampaigns": "From Campaigns",
        "ExitsInline": "%s exits",
        "BouncesInline": "%s bounces",
        "ShareOfAllPageviews": "This page had %s pageviews (%s of all pageviews)",
        "NoDataForAction": "There's no data for %s",
        "NoDataForActionDetails": "Either the action had no pageviews during the period %s or it is invalid.",
        "ErrorBack": "Go back to the previous action"
    },
    "Overlay": {
        "Overlay": "Page Overlay",
        "PluginDescription": "See analytics data as an overlay on your actual website.",
        "Location": "Location",
        "NoData": "There is no data for this page during the selected period.",
        "OpenFullScreen": "Go full screen (no sidebar)",
        "OneClick": "1 click",
        "Clicks": "%s clicks",
        "ClicksFromXLinks": "%1$s clicks from one of %2$s links",
        "Link": "Link",
        "RedirectUrlError": "You are attempting to open Page Overlay for the URL \"%s\". %s None of the domains from the Piwik settings matches the link.",
        "RedirectUrlErrorUser": "Ask your administrator to add the domain as an additional URL.",
        "RedirectUrlErrorAdmin": "You can add the domain as an additional URL %sin the settings%s.",
        "Domain": "Domain",
        "ErrorNotLoading": "The Page Overlay session couldn't be launched yet.",
        "ErrorNotLoadingDetails": "Maybe the page loaded on the right doesn't have the Piwik tracker code. In this case, try launching Overlay for a different page from the pages report.",
        "ErrorNotLoadingDetailsSSL": "Since you're using Piwik over https, the most likely cause is that your website doesn't support SSL. Try using Piwik over http.",
        "ErrorNotLoadingLink": "Click here to get more tips for troubleshooting"
    },
    "Annotations": {
        "PluginDescription": "Allows you to attach notes to different days to mark changes made to your website, save analyses you make regarding your data and share your thoughts with your colleagues. By annotating your data, you will make sure you remember why your data looks the way it does.",
        "Annotations": "Annotations",
        "EnterAnnotationText": "Enter your note...",
        "IconDesc": "View notes for this date range.",
        "IconDescHideNotes": "Hide notes for this date range.",
        "NoAnnotations": "There are no annotations for this date range.",
        "InlineQuickHelp": "You can create annotations to mark special events (like a new blog post, or website redesign), to save your data analyses or to save anything else you think is important.",
        "ViewAndAddAnnotations": "View and add annotations for %s...",
        "HideAnnotationsFor": "Hide annotations for %s...",
        "AddAnnotationsFor": "Add annotations for %s...",
        "ClickToEdit": "Click to edit this annotation.",
        "ClickToDelete": "Click to delete this annotation.",
        "ClickToStarOrUnstar": "Click to star or unstar this annotation.",
        "YouCannotModifyThisNote": "You cannot modify this annotation, because you did not create it, nor do you have admin access for this site.",
        "CreateNewAnnotation": "Create a new annotation...",
        "LoginToAnnotate": "Login to create an annotation.",
        "AnnotationOnDate": "Annotation on %1$s: %2$s",
        "ClickToEditOrAdd": "Click to edit or add a new annotation."
    },
    "SegmentEditor": {
        "AddNewSegment": "Add new segment",
        "SelectSegmentOfVisitors": "Select a segment of visitors:",
        "YouMustBeLoggedInToCreateSegments": "You must be logged in to create and edit custom visitor segments.",
        "DragDropCondition": "Drag &amp; Drop condition",
        "OperatorAND": "AND",
        "OperatorOR": "OR",
        "DefaultAllVisits": "All visits",
        "AddANDorORCondition": "Add %s condition",
        "ThisSegmentIsVisibleTo": "This segment is visible to:",
        "VisibleToMe": "me",
        "VisibleToAllUsers": "all users",
        "SegmentIsDisplayedForWebsite": "and displayed for",
        "SegmentDisplayedThisWebsiteOnly": "this website only",
        "SegmentDisplayedAllWebsites": "all websites",
        "SaveAndApply": "Save & Apply",
        "AreYouSureDeleteSegment": "Are you sure you want to delete this segment?",
        "ChooseASegment": "Choose a segment",
        "LoadingSegmentedDataMayTakeSomeTime": "Processing segmented visitor data may take a few minutes...",
        "AutoArchiveRealTime": "segmented reports are processed in real time",
        "AutoArchivePreProcessed": "segmented reports are pre-processed (faster, requires archive.php cron)",
        "SegmentNotApplied": "Segment '%s' not applied",
        "SegmentNotAppliedMessage": "You are requesting data for the Custom Segment '%s', this Piwik configuration currently prevents real time processing of reports for performance reasons.",
        "DataAvailableAtLaterDate": "Your segmented analytics reports will be available later. We apologize for the inconvenience.",
        "YouMayChangeSetting": "Alternatively you may change the setting in the config file (%s), or edit this Segment and choose '%s'."
    }
}