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

en.php « lang - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 421ce1b82e21ec06b4236308f01a5eaac111077c (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
<?php
$translations = array(
	'General_Locale' => 'en_EN.UTF-8',
	'General_TranslatorName' => '-',
	'General_TranslatorEmail' => 'hello@piwik.org',
	'General_EnglishLanguageName' => 'English',
	'General_OriginalLanguageName' => 'English',
	'General_HelloUser' => 'Hello, %s!',
	'General_OpenSourceWebAnalytics' => 'Open Source Web Analytics',
	'General_Dashboard' => 'Dashboard',
	'General_DashboardForASpecificWebsite' => 'Dashboard for a specific website',
	'General_MultiSitesSummary' => 'All Websites',
	'General_AllWebsitesDashboard' => 'All Websites dashboard',
	'General_API' => 'API',
	'General_Widgets' => 'Widgets',
	'General_Settings' => 'Settings',
	'General_GiveUsYourFeedback' => 'Give us Feedback!',
	'General_Unknown' => 'Unknown',
	'General_Required' => '%s required',
	'General_NotValid' => '%s is not valid',
	'General_Error' => 'Error',
	'General_Warning' => 'Warning',
	'General_BackToHomepage' => 'Back to Piwik homepage',
	'General_Yes' => 'Yes',
	'General_No' => 'No',
	'General_Delete' => 'Delete',
	'General_Edit' => 'Edit',
	'General_Ok' => 'Ok',
	'General_Close' => 'Close',
	'General_OrCancel' => 'or %s Cancel %s',
	'General_Logout' => 'Sign out',
	'General_Username' => 'Username',
	'General_Done' => 'Done',
	'General_Details' => 'Details',
	'General_Default' => 'Default',
	'General_LoadingData' => 'Loading data...',
	'General_Loading' => 'Loading...',
	'General_GoTo' => 'Go to %s',
	'General_YourChangesHaveBeenSaved' => 'Your changes have been saved.',
	'General_ErrorRequest' => 'Oops&hellip; problem during the request, please try again.',
	'General_Next' => 'Next',
	'General_Previous' => 'Previous',
	'General_Search' => 'Search',
	'General_Others' => 'Others',
	'General_Table' => 'Table',
	'General_Piechart' => 'Piechart',
	'General_TagCloud' => 'Tag Cloud',
	'General_VBarGraph' => 'Vertical bar graph',
	'General_Export' => 'Export',
	'General_ExportAsImage_js' => 'Export as Image',
	'General_SaveImageOnYourComputer_js' => 'To save the image on your computer, right click on the image and select "Save Image As..."',
	'General_Refresh' => 'Refresh the page',
	'General_Today' => 'Today',
	'General_Yesterday' => 'Yesterday',
	'General_CurrentWeek' => 'Current Week',
	'General_CurrentMonth' => 'Current Month',
	'General_CurrentYear' => 'Current Year',
	'General_Visitors' => 'Visitors',
	'General_ColumnNbUniqVisitors' => 'Unique visitors',
	'General_ColumnNbVisits' => 'Visits',
	'General_ColumnNbActions' => 'Actions',
	'General_ColumnMaxActions' => 'Maximum actions in one visit',
	'General_ColumnSumVisitLength' => 'Total time spent by visitors (in seconds)',
	'General_ColumnLabel' => 'Label',
	'General_ColumnActionsPerVisit' => 'Actions per Visit',
	'General_ColumnAvgTimeOnSite' => 'Avg. Time on Website',
	'General_ColumnBounceRate' => 'Bounce Rate',
	'General_PageBounceRateDefinition' => 'The percentage of visits that started on this page, and left the website straight away.',
	'General_ColumnExitRate' => 'Exit rate',
	'General_PageExitRateDefinition' => 'The percentage of visits on this page that left the website straight away.',
	'General_ColumnPageviews' => 'Pageviews',
	'General_ColumnUniquePageviews' => 'Unique Pageviews',
	'General_ColumnBounces' => 'Bounces',
	'General_BouncesDefinition' => 'Number of visits that started on this page and left the website straight away.',
	'General_ColumnEntrances' => 'Entrances',
	'General_EntrancesDefinition' => 'Number of visits that started on this page.',
	'General_ColumnExits' => 'Exits',
	'General_ExitsDefinition' => 'Number of visits that ended on this page.',
	'General_ColumnAverageTimeOnPage' => 'Avg. time on page',
	'General_AverageTimeOnPageDefinition' => 'The average amount of time visitors spent on this page.',
	'General_ColumnValuePerVisit' => 'Value per Visit',
	'General_ColumnVisitsWithConversions' => 'Visits with Conversions',
	'General_DaysHours' => '%1$s days %2$s hours',
	'General_HoursMinutes' => '%1$s hours %2$s min',
	'General_MinutesSeconds' => '%1$s min %2$ss',
	'General_Seconds' => '%ss',
	'General_Save' => 'Save',
	'General_ForExampleShort' => 'eg.',
	'General_Website' => 'Website',
	'General_GeneralSettings' => 'General Settings',
	'General_AllowPiwikArchivingToTriggerBrowser' => 'Allow Piwik archiving to trigger when reports are viewed from the browser',
	'General_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.',
	'General_ArchivingTriggerDescription' => 'Recommended for larger Piwik installs, you need to %ssetup a cron job%s to process the reports automatically.',
	'General_SeeTheOfficialDocumentationForMoreInformation' => 'See the %sofficial documentation%s for more information.',
	'General_ReportsForTodayWillBeProcessedAtMostEvery' => 'Reports for today will be processed at most every',
	'General_NSeconds' => '%s seconds',
	'General_SmallTrafficYouCanLeaveDefault' => 'For small traffic websites, you can leave the default %s seconds, and access all reports in real time.',
	'General_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).',
	'General_RequiresFlash' => 'Displaying Graphs in Piwik requires Flash',
	'General_GraphHelp' => 'More information about displaying graphs in Piwik.',
	'General_NoDataForGraph' => 'No data for this graph.',
	'General_NoDataForTagCloud' => 'No data for this tag cloud.',
	'General_DisplayNormalTable' => 'Display normal table',
	'General_DisplayMoreData' => 'Display more data',
	'General_DisplayGoals' => 'Display Goals',
	'General_PiwikIsACollaborativeProjectYouCanContribute' => '%1$s Piwik %2$s is a collaborative project. %3$s If you\'re a fan of Piwik, you can help! Check out %4$s How to participate in Piwik?%5$s',
	'General_YouAreCurrentlyViewingDemoOfPiwik' => 'You are currently viewing the demo of %1$s; %2$sdownload%3$s the full version! Check out %4$s',
	'General_PiwikXIsAvailablePleaseUpdateNow' => 'Piwik %1$s is available. %2$s Please update now!%3$s (see %4$s changes%5$s).',
	'General_PiwikXIsAvailablePleaseNotifyPiwikAdmin' => '%s is available. Please notify the site administrator.',
	'General_BackToPiwik' => 'Back to Piwik',
	'General_ShortMonth_1' => 'Jan',
	'General_ShortMonth_2' => 'Feb',
	'General_ShortMonth_3' => 'Mar',
	'General_ShortMonth_4' => 'Apr',
	'General_ShortMonth_5' => 'May',
	'General_ShortMonth_6' => 'Jun',
	'General_ShortMonth_7' => 'Jul',
	'General_ShortMonth_8' => 'Aug',
	'General_ShortMonth_9' => 'Sep',
	'General_ShortMonth_10' => 'Oct',
	'General_ShortMonth_11' => 'Nov',
	'General_ShortMonth_12' => 'Dec',
	'General_LongMonth_1' => 'January',
	'General_LongMonth_2' => 'February',
	'General_LongMonth_3' => 'March',
	'General_LongMonth_4' => 'April',
	'General_LongMonth_5' => 'May',
	'General_LongMonth_6' => 'June',
	'General_LongMonth_7' => 'July',
	'General_LongMonth_8' => 'August',
	'General_LongMonth_9' => 'September',
	'General_LongMonth_10' => 'October',
	'General_LongMonth_11' => 'November',
	'General_LongMonth_12' => 'December',
	'General_ShortDay_1' => 'Mon',
	'General_ShortDay_2' => 'Tue',
	'General_ShortDay_3' => 'Wed',
	'General_ShortDay_4' => 'Thu',
	'General_ShortDay_5' => 'Fri',
	'General_ShortDay_6' => 'Sat',
	'General_ShortDay_7' => 'Sun',
	'General_LongDay_1' => 'Monday',
	'General_LongDay_2' => 'Tuesday',
	'General_LongDay_3' => 'Wednesday',
	'General_LongDay_4' => 'Thursday',
	'General_LongDay_5' => 'Friday',
	'General_LongDay_6' => 'Saturday',
	'General_LongDay_7' => 'Sunday',
	'General_ConfigFileIsNotWritable' => 'The Piwik configuration file %s is not writable, your changes will not be saved. %s Please change permissions of the config file to make it writable.',
	'General_ExceptionDatabaseVersion' => 'Your %1$s version is %2$s but Piwik requires at least %3$s.',
	'General_ExceptionIncompatibleClientServerVersions' => 'Your %1$s client version is %2$s which is incompatible with server version %3$s.',
	'General_ExceptionMissingFile' => 'Missing file: %s',
	'General_ExceptionFilesizeMismatch' => 'File size mismatch: %1$s (expected length: %2$s, found: %3$s)',
	'General_ExceptionFileIntegrity' => 'Integrity check failed: %s',
	'General_ExceptionNonceMismatch' => 'Could not verify the security token on this form.',
	'General_ExceptionVariableNotFound' => 'The required variable \'%s\' is not correct or has not been found in the API Request.',
	'General_ExceptionMethodNotFound' => 'The method \'%s\' does not exist or is not available in the module \'%s\'.',			
	'General_ExceptionSubtableNotFoundInArchive' => 'You are requesting a precise subTable but there is not such data in the Archive.',			
	'General_ExceptionInvalidRendererFormat' => 'Renderer format \'%s\' not valid. Try any of the following instead: %s.',			
	'General_ExceptionInvalidPeriod' => 'The period \'%s\' is not supported. Try any of the following instead: %s',
	'General_ExceptionInvalidDateRange' => 'The date \'%s\' is not a correct date range. It should have the following format: %s.',
	'General_ExceptionGoalNotFound' => 'The goal id = %s couldn\'t be found.',
	'General_ExceptionInvalidGoalPattern' => 'Pattern type %s not valid.',
	'General_ExceptionInvalidIdsite' => 'The \'idsite\' in the request is invalid.',	
	'General_ExceptionUndeletableFile' => 'Unable to delete %s', 
	'General_ExceptionPrivilege' => 'You can\'t access this resource as it requires a %s access.', 
	'General_ExceptionPrivilegeAtLeastOneWebsite' => 'You can\'t access this resource as it requires an %s access for at least one website.', 
	'General_ExceptionPrivilegeAccessWebsite' => 'You can\'t access this resource as it requires an %s access for the website id = %d.', 
	'General_ExceptionInvalidArchiveTimeToLive' => 'Today archive time to live must be a number of seconds greater than zero', 
	'General_ExceptionConfigurationFileNotFound' => 'The configuration file {%s} has not been found.', 
	'General_ExceptionUnreadableFileDisabledMethod' => 'The configuration file {%s} could not be read. Your host may have disabled %s.', 
	'General_ExceptionInvalidToken' => 'Token is not valid.', 
	'General_ExceptionInvalidDateFormat' => 'Date format must be: %s or any keyword supported by the %s function (see %s for more information)', 
	'General_ExceptionLanguageFileNotFound' => 'Language file \'%s\' not found.', 
	'General_WarningFileIntegritySkipped' => 'Development environment detected. File integrity check skipped.',
	'General_WarningFileIntegrityNoManifest' => 'File integrity check could not be performed due to missing manifest.inc.php.',
	'General_WarningFileIntegrityNoMd5file' => 'File integrity check could not be completed due to missing md5_file() function.',
	'General_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 and refresh this page until it shows no error.',
	'Actions_PluginDescription' => 'Reports about the page views, the outlinks and downloads. Outlinks and Downloads tracking is automatic!',
	'Actions_Actions' => 'Actions',
	'Actions_SubmenuPages' => 'Pages',
	'Actions_SubmenuPagesEntry' => 'Entry pages',
	'Actions_SubmenuPagesExit' => 'Exit pages',
	'Actions_SubmenuPageTitles' => 'Page titles',
	'Actions_SubmenuOutlinks' => 'Outlinks',
	'Actions_SubmenuDownloads' => 'Downloads',
	'Actions_ColumnClicks' => 'Clicks',
	'Actions_ColumnUniqueClicks' => 'Unique Clicks',
	'Actions_ColumnDownloads' => 'Downloads',
	'Actions_ColumnUniqueDownloads' => 'Unique Downloads',
	'Actions_ColumnPageName' => 'Page Name',
	'Actions_ColumnPageURL' => 'Page URL',
	'Actions_ColumnClickedURL' => 'Clicked URL',
	'Actions_ColumnDownloadURL' => 'Download URL',
	'AnonymizeIP_PluginDescription' => 'Anonymize the last byte of visitors IP addresses to comply with your local privacy laws/guidelines.',
	'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.',
	'API_QuickDocumentationTitle' => 'API quick documentation',
	'API_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. ',
	'API_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.',
	'API_UserAuthentication' => 'User authentication',
	'API_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.',
	'API_KeepTokenSecret' => 'This token_auth is as secret as your login and password, %s do not share it%s!',
	'API_LoadedAPIs' => 'Successfully loaded %s APIs',
	'CoreAdminHome_PluginDescription' => 'Administration area of Piwik.',
	'CoreAdminHome_MenuGeneralSettings' => 'General settings',
	'CoreAdminHome_Administration' => 'Administration',
	'CoreHome_PluginDescription' => 'Web Analytics Reports Structure.',
	'CoreHome_WebAnalyticsReports' => 'Web Analytics Reports',
	'CoreHome_NoPrivileges' => 'You are logged in as \'%s\' but it seems you don\'t have any permission set in Piwik.<br />Ask your Piwik administrator to give you \'view\' access to a website.',
	'CoreHome_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 />',
	'CoreHome_TableNoData' => 'No data for this table.',
	'CoreHome_CategoryNoData' => 'No data in this category. Try to "Include all population".',
	'CoreHome_ShowJSCode' => 'Show the JavaScript code to insert',
	'CoreHome_IncludeAllPopulation_js' => 'Include all population',
	'CoreHome_ExcludeLowPopulation_js' => 'Exclude low population',
	'CoreHome_PageOf_js' => '%1$s of %2$s',
	'CoreHome_Loading_js' => 'Loading...',
	'CoreHome_DayFormat' => '%longDay% %day% %longMonth% %longYear%',
	'CoreHome_PeriodDay' => 'Day',
	'CoreHome_PeriodWeek' => 'Week',
	'CoreHome_PeriodMonth' => 'Month',
	'CoreHome_PeriodYear' => 'Year',
	'CoreHome_PeriodDays' => 'days',
	'CoreHome_PeriodWeeks' => 'weeks',
	'CoreHome_PeriodMonths' => 'months',
	'CoreHome_PeriodYears' => 'years',
	'CoreHome_DaySu_js' => 'Su',
	'CoreHome_DayMo_js' => 'Mo',
	'CoreHome_DayTu_js' => 'Tu',
	'CoreHome_DayWe_js' => 'We',
	'CoreHome_DayTh_js' => 'Th',
	'CoreHome_DayFr_js' => 'Fr',
	'CoreHome_DaySa_js' => 'Sa',
	'CoreHome_ShortDay_1_js' => 'Sun',
	'CoreHome_ShortDay_2_js' => 'Mon',
	'CoreHome_ShortDay_3_js' => 'Tue',
	'CoreHome_ShortDay_4_js' => 'Wed',
	'CoreHome_ShortDay_5_js' => 'Thu',
	'CoreHome_ShortDay_6_js' => 'Fri',
	'CoreHome_ShortDay_7_js' => 'Sat',
	'CoreHome_LongDay_1_js' => 'Sunday',
	'CoreHome_LongDay_2_js' => 'Monday',
	'CoreHome_LongDay_3_js' => 'Tuesday',
	'CoreHome_LongDay_4_js' => 'Wednesday',
	'CoreHome_LongDay_5_js' => 'Thursday',
	'CoreHome_LongDay_6_js' => 'Friday',
	'CoreHome_LongDay_7_js' => 'Saturday',
	'CoreHome_ShortMonth_1_js' => 'Jan',
	'CoreHome_ShortMonth_2_js' => 'Feb',
	'CoreHome_ShortMonth_3_js' => 'Mar',
	'CoreHome_ShortMonth_4_js' => 'Apr',
	'CoreHome_ShortMonth_5_js' => 'May',
	'CoreHome_ShortMonth_6_js' => 'Jun',
	'CoreHome_ShortMonth_7_js' => 'Jul',
	'CoreHome_ShortMonth_8_js' => 'Aug',
	'CoreHome_ShortMonth_9_js' => 'Sep',
	'CoreHome_ShortMonth_10_js' => 'Oct',
	'CoreHome_ShortMonth_11_js' => 'Nov',
	'CoreHome_ShortMonth_12_js' => 'Dec',
	'CoreHome_MonthJanuary_js' => 'January',
	'CoreHome_MonthFebruary_js' => 'February',
	'CoreHome_MonthMarch_js' => 'March',
	'CoreHome_MonthApril_js' => 'April',
	'CoreHome_MonthMay_js' => 'May',
	'CoreHome_MonthJune_js' => 'June',
	'CoreHome_MonthJuly_js' => 'July',
	'CoreHome_MonthAugust_js' => 'August',
	'CoreHome_MonthSeptember_js' => 'September',
	'CoreHome_MonthOctober_js' => 'October',
	'CoreHome_MonthNovember_js' => 'November',
	'CoreHome_MonthDecember_js' => 'December',
	'CorePluginsAdmin_PluginDescription' => 'Plugins Administration Interface.',
	'CorePluginsAdmin_Plugins' => 'Plugins',
	'CorePluginsAdmin_PluginsManagement' => 'Plugins Management',
	'CorePluginsAdmin_MainDescription' => 'Plugins extend and expand the functionality of Piwik. Once a plugin is installed, you may activate it or deactivate it here.',
	'CorePluginsAdmin_Plugin' => 'Plugin',
	'CorePluginsAdmin_Version' => 'Version',
	'CorePluginsAdmin_Description' => 'Description',
	'CorePluginsAdmin_Status' => 'Status',
	'CorePluginsAdmin_Action' => 'Action',
	'CorePluginsAdmin_PluginHomepage' => 'Plugin Homepage',
	'CorePluginsAdmin_Activated' => 'Activated',
	'CorePluginsAdmin_Active' => 'Active',
	'CorePluginsAdmin_Inactive' => 'Inactive',
	'CorePluginsAdmin_ActivatedHelp' => 'This plugin cannot be deactivated',
	'CorePluginsAdmin_Deactivate' => 'Deactivate',
	'CorePluginsAdmin_Activate' => 'Activate',
	'CorePluginsAdmin_MenuPlugins' => 'Plugins',
	'CoreUpdater_PluginDescription' => 'Piwik updating mechanism',
	'CoreUpdater_UpdateTitle' => 'Update',
	'CoreUpdater_DatabaseUpgradeRequired' => 'Database Upgrade Required',
	'CoreUpdater_YourDatabaseIsOutOfDate' => 'Your Piwik database is out-of-date, and must be upgraded before you can continue.',
	'CoreUpdater_PiwikWillBeUpgradedFromVersionXToVersionY' => 'Piwik database will be upgraded from version %1$s to the new version %2$s.',
	'CoreUpdater_TheFollowingPluginsWillBeUpgradedX' => 'The following plugins will be updated: %s.',
	'CoreUpdater_NoteForLargePiwikInstances' => 'Important note for large Piwik installations',
	'CoreUpdater_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',
	'CoreUpdater_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.',
	'CoreUpdater_ClickHereToViewSqlQueries' => 'Click here to view and copy the list of SQL queries that will get executed',
	'CoreUpdater_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.',
	'CoreUpdater_ReadyToGo' => 'Ready to go?',
	'CoreUpdater_TheUpgradeProcessMayTakeAWhilePleaseBePatient' => 'The database upgrade process may take a while, so please be patient.',
	'CoreUpdater_UpgradePiwik' => 'Upgrade Piwik',
	'CoreUpdater_ErrorDIYHelp' => 'If you are an advanced user and encounter an error in the database upgrade:',
	'CoreUpdater_ErrorDIYHelp_1' => 'identify and correct the source of the problem (e.g., memory_limit or max_execution_time)',
	'CoreUpdater_ErrorDIYHelp_2' => 'execute the remaining queries in the update that failed',
	'CoreUpdater_ErrorDIYHelp_3' => 'manually update the `option` table in your Piwik database, setting the value of version_core to the version of the failed update',
	'CoreUpdater_ErrorDIYHelp_4' => 're-run the updater (through the browser or command-line) to continue with the remaining updates',
	'CoreUpdater_ErrorDIYHelp_5' => 'report the problem (and solution) so that Piwik can be improved',
	'CoreUpdater_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.',
	'CoreUpdater_CriticalErrorDuringTheUpgradeProcess' => 'Critical Error during the update process:',
	'CoreUpdater_HelpMessageIntroductionWhenError' => 'The above is the core error message. It should help explain the cause, but if you require further help please:',
	'CoreUpdater_HelpMessageIntroductionWhenWarning' => 'The update completed successfuly, however there were issues during the process. Please read the above descriptions for details. For further help:',
	'CoreUpdater_UpgradeComplete' => 'Upgrade complete!',
	'CoreUpdater_WarningMessages' => 'Warning messages:',
	'CoreUpdater_ErrorDuringPluginsUpdates' => 'Error during plugin updates:',
	'CoreUpdater_WeAutomaticallyDeactivatedTheFollowingPlugins' => 'We automatically deactivated the following plugins: %s',
	'CoreUpdater_PiwikHasBeenSuccessfullyUpgraded' => 'Piwik has been successfully updated!',
	'CoreUpdater_ContinueToPiwik' => 'Continue to Piwik',
	'CoreUpdater_UpdateAutomatically' => 'Update Automatically',
	'CoreUpdater_ThereIsNewVersionAvailableForUpdate' => 'There is a new version of Piwik available for update',
	'CoreUpdater_YouCanUpgradeAutomaticallyOrDownloadPackage' => 'You can update to version %s automatically or download the package and install it manually:',
	'CoreUpdater_DownloadX' => 'Download %s',
	'CoreUpdater_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!',
	'CoreUpdater_DownloadingUpdateFromX' => 'Downloading update from %s',
	'CoreUpdater_UnpackingTheUpdate' => 'Unpacking the update',
	'CoreUpdater_VerifyingUnpackedFiles' => 'Verifying the unpacked files',
	'CoreUpdater_CreatingBackupOfConfigurationFile' => 'Creating a backup of the configuration file in %s',
	'CoreUpdater_InstallingTheLatestVersion' => 'Installing the latest version',
	'CoreUpdater_PiwikUpdatedSuccessfully' => 'Piwik updated successfully!',
	'CoreUpdater_EmptyDatabaseError' => 'Database %s is empty. You must edit or remove your Piwik configuration file.',
	'CoreUpdater_ExceptionAlreadyLatestVersion' => 'Your Piwik version %s is up to date.',
	'CoreUpdater_ExceptionArchiveIncompatible' => 'Incompatible archive: %s',
	'CoreUpdater_ExceptionArchiveEmpty' => 'Empty archive.',
	'CoreUpdater_ExceptionArchiveIncomplete' => 'Archive is incomplete: some files are missing (eg. %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' => 'Dashboard',
	'Dashboard_AddWidget' => 'Add a widget...',
	'Dashboard_DeleteWidgetConfirm' => 'Are you sure you want to delete this widget from the dashboard?',
	'Dashboard_SelectWidget' => 'Select the widget to add in the dashboard',
	'Dashboard_AddPreviewedWidget_js' => 'Add previewed widget to the dashboard',
	'Dashboard_WidgetPreview_js' => 'Widget preview',
	'Dashboard_Close_js' => 'Close',
	'Dashboard_TitleWidgetInDashboard_js' => 'Widget already in dashboard',
	'Dashboard_TitleClickToAdd_js' => 'Click to add to dashboard',
	'Dashboard_LoadingWidget_js' => 'Loading widget, please wait...',
	'Dashboard_WidgetNotFound_js' => 'Widget not found',
	'DBStats_PluginDescription' => 'This plugin reports the MySQL database usage by Piwik tables.',
	'DBStats_DatabaseUsage' => 'Database usage',
	'DBStats_MainDescription' => 'Piwik is storing all your web analytics data in the MySQL database. Currently, Piwik tables are using %s.',
	'DBStats_LearnMore' => 'To learn more about how Piwik processes data and how to make Piwik work well for medium and high traffic websites, check out the documentation %s.',
	'DBStats_Table' => 'Table',
	'DBStats_RowCount' => 'Row count',
	'DBStats_DataSize' => 'Data size',
	'DBStats_IndexSize' => 'Index size',
	'DBStats_TotalSize' => 'Total size',
	'ExampleAPI_PluginDescription' => 'Example Plugin: How to create an API for your plugin, to export your data in multiple formats without any special coding?',
	'ExampleFeedburner_PluginDescription' => 'Example Plugin: How to display your Feedburner subscriber in a Widget in the Dashboard?',
	'ExampleRssWidget_PluginDescription' => 'Example Plugin: How to create a new widget that reads a RSS feed?',
	'ExampleUI_PluginDescription' => 'Example Plugin: This plugin shows how to work with the Piwik UI: create tables, graphs, etc.',
	'Feedback_PluginDescription' => 'Send your Feedback to the Piwik Team. Share your ideas and suggestions with us!',
	'Feedback_DoYouHaveBugReportOrFeatureRequest' => 'Do you have a bug to report or a feature request?',
	'Feedback_ViewAnswersToFAQ' => 'View answers to %s Frequently Asked Questions%s',
	'Feedback_WhyAreMyVisitsNoTracked' => 'Why aren\'t visits to my website being tracked?',
	'Feedback_HowToExclude' => 'How do I exclude tracking of my visits?',
	'Feedback_WhyWrongCountry' => 'Why does Piwik show my visit from the wrong country?',
	'Feedback_HowToAnonymizeIP' => 'How do I mask visitor IP addresses in my database?',
	'Feedback_VisitTheForums' => 'Visit the %s Forums%s',
	'Feedback_LearnWaysToParticipate' => 'Learn about all the ways you can %s participate%s',
	'Feedback_SpecialRequest' => 'Do you have a special request for the Piwik team?',
	'Feedback_ContactThePiwikTeam' => 'Contact the Piwik team!',
	'Feedback_IWantTo' => 'I want to:',
	'Feedback_CategoryShareStory' => 'Share a Piwik success story',
	'Feedback_CategorySponsor' => 'Sponsor Piwik',
	'Feedback_CategoryHire' => 'Hire a Piwik consultant',
	'Feedback_CategorySecurity' => 'Report a security issue',
	'Feedback_MyEmailAddress' => 'My email address:',
	'Feedback_MyMessage' => 'My message:',
	'Feedback_DetailsPlease' => '(please include details)',
	'Feedback_SendFeedback' => 'Send Feedback',
	'Feedback_ManuallySendEmailTo' => 'Please manually send your message to',
	'Feedback_MessageSent' => 'Your message was sent to the Piwik team.',
	'Feedback_ThankYou' => 'Thank you for helping us to make Piwik better!',
	'Feedback_ThePiwikTeam' => 'The Piwik Team',
	'Feedback_ExceptionBodyLength' => 'Message must be at least %s characters long.',
	'Feedback_ExceptionNoUrls' => 'The message cannot contain a URL, to avoid spam messages.',
	'Goals_Goals' => 'Goals',
	'Goals_Overview' => 'Overview',
	'Goals_GoalsOverview' => 'Goals overview',
	'Goals_GoalsManagement' => 'Goals management',
	'Goals_ConversionsOverviewBySegment' => 'Conversions overview by segment',
	'Goals_GoalConversionsBySegment' => 'Goal %s conversions by segment',
	'Goals_ViewGoalsBySegment' => 'View goals by %s',
	'Goals_PluginDescription' => 'Create Goals and see reports about your goal conversions: evolution over time, revenue per visit, conversions per referer, per keyword, etc.',
	'Goals_ColumnConversions' => 'Conversions',
	'Goals_ColumnConversionRate' => 'Conversion Rate',
	'Goals_ColumnRevenue' => 'Revenue',
	'Goals_GoalX' => 'Goal %s',
    'Goals_OverallRevenue' => '%s overall revenue',
    'Goals_OverallConversionRate' => '%s overall conversion rate (visits with a completed goal)',
    'Goals_Conversions' => '%s conversions',
    'Goals_ConversionRate' => '%s conversion rate',
    'Goals_NoGoalsNeedAccess' => 'Only an Administrator or the Super User 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!',
    'Goals_AddNewGoal' => 'Add a new Goal',
	'Goals_AddNewGoalOrEditExistingGoal' => '%sAdd a new Goal%s or %sEdit%s existing Goals',
    'Goals_AddGoal_js' => 'Add Goal',
    'Goals_UpdateGoal_js' => 'Update Goal',
    'Goals_DeleteGoalConfirm_js' => 'Are you sure you want to delete the Goal %s?',
	'Goals_CreateNewGOal' => 'Create a new Goal',
	'Goals_ViewAndEditGoals' => 'View and Edit Goals',
    'Goals_GoalName' => 'Goal Name',
    'Goals_GoalIsTriggered' => 'Goal is triggered',
    'Goals_GoalIsTriggeredWhen' => 'Goal is triggered when',
    'Goals_WhenVisitors' => 'when visitors',
	'Goals_WhereThe' => 'where the',
    'Goals_Manually' => 'manually',
    'Goals_ManuallyTriggeredUsingJavascriptFunction' => 'Goal is manually triggered using the Javascript API trackGoal()',
    'Goals_VisitUrl' => 'Visit a given URL (page or group of pages)',
	'Goals_URL' => 'URL',
	'Goals_Filename' => 'filename',
	'Goals_ExternalWebsiteUrl' => 'external website URL',
    'Goals_Download' => 'Download a file',
    'Goals_ClickOutlink' => 'Click on a Link to an external website',
    'Goals_Optional' => '(optional)',
	'Goals_WhereVisitedPageManuallyCallsJavascriptTrackerLearnMore' => 'where the visited page contains a call to the JavaScript piwikTracker.trackGoal() method (%slearn more%s)',
    'Goals_DefaultRevenue' => 'Goal default revenue is',
    'Goals_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.',
    'Goals_ConversionsOverview' => 'Conversions Overview',
    'Goals_BestCountries' => 'Your best converting countries are:',
    'Goals_BestKeywords' => 'Your top converting keywords are:',
    'Goals_BestReferers' => 'Your best converting websites referers are:',
    'Goals_ReturningVisitorsConversionRateIs' => 'Returning visitors conversion rate is %s',
    'Goals_NewVisitorsConversionRateIs' => 'New visitors conversion rate is %s',
    'Goals_Contains' => 'contains %s',
    'Goals_IsExactly' => 'is exactly %s',
    'Goals_MatchesExpression' => 'matches the expression %s',
    'Goals_CaseSensitive' => 'Case sensitive match',
    'Goals_Pattern' => 'Pattern',
	'Goals_ExceptionInvalidMatchingString' => 'If you choose \'exact match\', the matching string must be a URL starting with %s. For example, \'%s\'.',
	'Goals_LearnMoreAboutGoalTrackingDocumentation'	=> 'Learn more about %s Tracking Goals in Piwik%s in the user documentation.',
	'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' => 'Installation',
	'Installation_InstallationStatus' => 'Installation status',
	'Installation_PercentDone' => '%s %% Done',
	'Installation_NoConfigFound' => 'The Piwik configuration file couldn\'t be found and you are trying to access a Piwik page.<br /><b>&nbsp;&nbsp;&raquo; 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>',
	'Installation_DatabaseSetup' => 'Database setup',
	'Installation_DatabaseSetupServer' => 'database server',
	'Installation_DatabaseSetupLogin' => 'login',
	'Installation_DatabaseSetupPassword' => 'password',
	'Installation_DatabaseSetupDatabaseName' => 'database name',
	'Installation_DatabaseSetupTablePrefix' => 'table prefix',
	'Installation_DatabaseSetupAdapter' => 'adapter',
	'Installation_DatabaseErrorConnect' => 'Error while trying to connect to the database server',
	'Installation_DatabaseCheck' => 'Database check',
	'Installation_DatabaseServerVersion' => 'Database server version',
	'Installation_DatabaseClientVersion' => 'Database client version',
	'Installation_DatabaseCreation' => 'Database creation',
	'Installation_PleaseFixTheFollowingErrors' => 'Please fix the following errors',
	'Installation_JsTag' => 'JavaScript tag',
	'Installation_JsTagHelp' => '<p>To count all visitors, you must insert the JavaScript code on all of your pages.</p><p>Your pages do not have to be made with PHP, Piwik will work on all kinds of pages (whether it is HTML, ASP, Perl or any other languages).</p><p>Here is the code you have to insert: (copy and paste on all your pages) </p>',
	'Installation_JsTagHelpTitle' => 'How to insert the tag in your websites?',
	'Installation_LargePiwikInstances' => 'Help for large Piwik instances',
	'Installation_JsTagArchivingHelp' => 'For medium and high traffic websites, check out the  <a target="_blank" href="http://piwik.org/docs/setup-auto-archiving/">How to setup auto archiving page</a> to make Piwik run really fast!',
	'Installation_Congratulations' => 'Congratulations',
	'Installation_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>',
	'Installation_ContinueToPiwik' => 'Continue to Piwik',
	'Installation_SetupWebsite' => 'Setup a website',
	'Installation_SetupWebSiteName' => 'website name',
	'Installation_SetupWebSiteURL' => 'website URL',
	'Installation_Timezone' => 'website time zone',
	'Installation_SetupWebsiteError' => 'There was an error when adding the website',
	'Installation_SetupWebsiteSetupSuccess' => 'Website %s created with success!',
	'Installation_GeneralSetup' => 'General Setup',
	'Installation_GeneralSetupSuccess' => 'General Setup configured with success',
	'Installation_SuperUserLogin' => 'super user login',
	'Installation_Password' => 'password',
	'Installation_PasswordRepeat' => 'password (repeat)',
	'Installation_Email' => 'email',
	'Installation_SecurityNewsletter' => 'email me with major Piwik upgrades and security alerts',
	'Installation_CommunityNewsletter' => 'email me with community updates (new plugins, new features, etc.)',
	'Installation_PasswordDoNotMatch' => 'password do not match',
	'Installation_SubmitGo' => 'Go!',
	'Installation_Requirements' => 'Piwik Requirements',
	'Installation_Optional' => 'Optional',
	'Installation_Legend' => 'Legend',
	'Installation_Extension' => 'extension',
	'Installation_SystemCheck' => 'System check',
	'Installation_SystemCheckPhp' => 'PHP version',
	'Installation_SystemCheckExtensions' => 'Other required extensions',
	'Installation_SystemCheckDatabaseHelp' => 'Piwik requires either the mysqli extension or both the PDO and pdo_mysql extensions.',
	'Installation_SystemCheckPdoAndMysqliHelp' => "On a Linux server you can compile php with the following options: %1\$s\nIn your php.ini, add the following lines: %2\$s",
	'Installation_SystemCheckPhpPdoAndMysqliSite' => 'More information on: <a style="color:red" href="http://php.net/pdo">PHP PDO</a> and <a style="color:red" href="http://php.net/mysqli">MYSQLI</a>.',
	'Installation_SystemCheckWinPdoAndMysqliHelp' => 'On a Windows server you can add the following lines to your php.ini: %s',
	'Installation_SystemCheckSplHelp' => 'You need to configure and rebuild PHP with the Standard PHP Library (SPL) enabled (by default).',
	'Installation_SystemCheckZlibHelp' => 'You need to configure and rebuild PHP with "zlib" support enabled, --with-zlib.',
	'Installation_SystemCheckIconvHelp' => 'You need to configure and rebuild PHP with "iconv" support enabled, --with-iconv.',
	'Installation_SystemCheckDomHelp' => 'DOM is part of PHP core. You probably need to install the dom module, e.g., php-5-dom.',
	'Installation_SystemCheckJson' => 'JSON',
	'Installation_SystemCheckJsonHelp' => 'You need to configure and rebuild PHP with either "json" or "xml" extensions enabled.',
	'Installation_SystemCheckJsonSite' => 'More information on: <a style="color:red" href="http://php.net/json">PHP JSON</a>.',
	'Installation_SystemCheckXml' => 'XML',
	'Installation_SystemCheckXmlHelp' => 'Some third-party plugins and developer libraries may require the "xml" extension.',
	'Installation_SystemCheckXmlSite' => 'More information on: <a style="color:red" href="http://php.net/xml">PHP XML</a>.',
	'Installation_SystemCheckWriteDirs' => 'Directories with write access',
	'Installation_SystemCheckWriteDirsHelp' => 'To fix this error on your Linux system, try typing in the following command(s)',
	'Installation_SystemCheckMemoryLimit' => 'Memory limit',
	'Installation_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.',
	'Installation_SystemCheckOpenURL' => 'Open URL',
	'Installation_SystemCheckOpenURLHelp' => 'Newsletter subscriptions, update notifications, and one-click updates requires the "curl" extension, allow_url_fopen=On, or fsockopen() enabled.',
	'Installation_SystemCheckGD' => 'GD &gt; 2.x (graphics)',
	'Installation_SystemCheckGDHelp' => 'The sparklines (small graphs) will not work.',
	'Installation_SystemCheckFunctions' => 'Required functions',
	'Installation_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.',
	'Installation_SystemCheckMailHelp' => 'Feedback and Lost Password messages will not be sent without mail().',
	'Installation_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.',
	'Installation_SystemCheckDebugBacktraceHelp' => 'View::factory won\'t be able to create views for the calling module.',
	'Installation_SystemCheckCreateFunctionHelp' => 'Piwik uses anonymous functions for callbacks.',
	'Installation_SystemCheckEvalHelp' => 'Required by HTML QuickForm and Smarty templating system.',
	'Installation_SystemCheckMbstring' => 'mbstring',
	'Installation_SystemCheckMbstringHelp' => 'You should set mbstring.func_overload to "0".',
	'Installation_SystemCheckFileIntegrity' => 'File integrity',
	'Installation_SystemCheckError' => 'An error occured - must be fixed before you proceed',
	'Installation_SystemCheckWarning' => 'Piwik will work normally but some features may be missing',
	'Installation_SystemCheckProtocol' => 'Protocol',
	'Installation_SystemCheckProtocolHelp' => 'If you are behind a reverse proxy, add these lines to config/config.ini.php under the [General] section:',
	'Installation_SystemCheckIpv4' => 'IPv4',
	'Installation_SystemCheckIpv4Help' => 'You should disable IPv6 in your web server configuration.',
	'Installation_Tables' => 'Creating the tables',
	'Installation_TablesWithSameNamesFound' => 'Some %1$s tables in your database %2$s have the same names as the tables Piwik is trying to create',
	'Installation_TablesFound' => 'The following tables have been found in the database',
	'Installation_TablesWarningHelp' => 'Either choose to reuse the existing database tables or select a clean install to erase all existing data in the database.',
	'Installation_TablesReuse' => 'Reuse the existing tables',
	'Installation_TablesDelete' => 'Delete the detected tables',
	'Installation_TablesDeletedSuccess' => 'Existing Piwik tables deleted with success',
	'Installation_TablesCreatedSuccess' => 'Tables created with success!',
	'Installation_DatabaseCreatedSuccess' => 'Database %s created with success!',
	'Installation_GoBackAndDefinePrefix' => 'Go back and define a Prefix for the Piwik Tables',
	'Installation_ConfirmDeleteExistingTables' => 'Are you sure you want to delete the tables: %s from your database? WARNING: DATA FROM THESE TABLES CANNOT BE RECOVERED!',
	'Installation_Welcome' => 'Welcome!',
	'Installation_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>',
	'Installation_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.',
	'Installation_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.',
	'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.',
	'LanguagesManager_AboutPiwikTranslations' => 'About Piwik translations',
	'Live_PluginDescription' => 'Spy on your visitors, live, in real-time!',
	'Live_VisitorLog' => 'Visitor Log',
	'Live_Date' => 'Date',
	'Live_Time' => 'Time',
	'Live_Referrer_URL' => 'Referrer URL',
	'Live_Last30Minutes' => 'Last 30 minutes',
	'Login_PluginDescription' => 'Login Authentication plugin, reading the credentials from the config/config.inc.php file for the 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.).',
	'Login_LoginPasswordNotCorrect' => 'Username &amp; Password not correct',
	'Login_Password' => 'Password',
	'Login_PasswordRepeat' => 'Password (repeat)',
	'Login_ChangePassword' => 'Change password',
	'Login_LoginOrEmail' => 'Username or E-mail',
	'Login_LogIn' => 'Sign in',
	'Login_Logout' => 'Sign out',
	'Login_LostYourPassword' => 'Lost your password?',
	'Login_RemindPassword' => 'Send password reset',
	'Login_PasswordResetToken' => 'Password reset token',
	'Login_PasswordReminder' => 'Please enter your username or e-mail address. You will receive an e-mail with information to reset your password.',
	'Login_PasswordsDoNotMatch' => 'Passwords do not match.',
	'Login_PasswordSuccessfullyChanged' => 'Password successfully changed!',
	'Login_InvalidUsernameEmail' => 'Invalid username and/or e-mail address',
	'Login_InvalidNonceOrReferer' => 'Form security key is invalid or has expired. Please reload the form and check that your cookies are enabled.',
	'Login_InvalidOrExpiredToken' => 'Token is invalid or has expired.',
	'Login_MailTopicPasswordRecovery' => 'Password recovery',
	'Login_MailPasswordRecoveryBody' => "Hi %1\$s,\n\nA password reset request was received from %2\$s.\n\nTo reset your password:\n\n1) Go to the Password Reset Form at:\n\t%3\$s\n\n2) Enter the following token:\n\t%4\$s\n\n3) Fill out the form (entering your new password twice) and submit.\n\nNote: this token will expire in 24 hrs.",
	'Login_PasswordSent' => 'Information to reset your password has been sent. Check your e-mail.',
	'Login_ContactAdmin' => 'Possible reason: your host may have disabled the mail() function. <br />Please contact your Piwik administrator.',
	'Login_ExceptionPasswordMD5HashExpected' => 'The password parameter is expected to be a MD5 hash of the password.', 
	'Login_ExceptionInvalidSuperUserAuthenticationMethod' => 'The Super User cannot be authenticated using the \'%s\' mechanism.', 
	'MultiSites_PluginDescription' => 'Displays multi-site executive summary/statistics. Currently maintained as a core Piwik plugin.',
	'MultiSites_Evolution' => 'Evolution',
	'Provider_PluginDescription' => 'Reports the Provider of the visitors.',
	'Provider_WidgetProviders' => 'Providers',
	'Provider_ColumnProvider' => 'Provider',
	'Provider_SubmenuLocationsProvider' => 'Locations &amp; Provider',
	'Referers_PluginDescription' => 'Reports the Referers data: Search Engines, Keywords, Websites, Campaign Tracking, Direct Entry.',
	'Referers_Referers' => 'Referers',
	'Referers_SearchEngines' => 'Search Engines',
	'Referers_Keywords' => 'Keywords',
	'Referers_DirectEntry' => 'Direct Entry',
	'Referers_Websites' => 'Websites',
	'Referers_Campaigns' => 'Campaigns',
	'Referers_MetricsFromRefererTypeGraphLegend' => '%1$s (from %2$s)',
	'Referers_Evolution' => 'Evolution over the period',
	'Referers_Type' => 'Referer Type',
	'Referers_ColumnRefererType' => 'Referer Type',
	'Referers_ColumnSearchEngine' => 'Search Engine',
	'Referers_ColumnWebsite' => 'Website',
	'Referers_ColumnWebsitePage' => 'Website Page',
	'Referers_ColumnKeyword' => 'Keyword',
	'Referers_ColumnCampaign' => 'Campaign',
	'Referers_DetailsByRefererType' => 'Details by Referer Type',
	'Referers_TypeDirectEntries' => '%s direct entries',
	'Referers_TypeSearchEngines' => '%s from search engines',
	'Referers_TypeWebsites' => '%s from websites',
	'Referers_TypeCampaigns' => '%s from campaigns',
	'Referers_Distinct' => 'Distinct Referers by Referer Type',
	'Referers_DistinctSearchEngines' => 'distinct search engines',
	'Referers_DistinctKeywords' => 'distinct keywords',
	'Referers_DistinctCampaigns' => 'distinct campaigns',
	'Referers_DistinctWebsites' => 'distinct websites',
	'Referers_UsingNDistinctUrls' => ' (using %s distinct urls)',
	'Referers_SubmenuEvolution' => 'Evolution',
	'Referers_SubmenuSearchEngines' => 'Search Engines &amp; Keywords',
	'Referers_SubmenuWebsites' => 'Websites',
	'Referers_SubmenuCampaigns' => 'Campaigns',
	'Referers_WidgetKeywords' => 'List of Keywords',
	'Referers_WidgetCampaigns' => 'List of Campaigns',
	'Referers_WidgetExternalWebsites' => 'List of external Websites',
	'Referers_WidgetSearchEngines' => 'Best search engines',
	'Referers_WidgetOverview' => 'Overview',
	'SecurityInfo_PluginDescription' => 'Based on PhpSecInfo from the PHP Security Consortium, this plugin provides security information about your PHP environment and offers suggestions for improvement. It is a tool in a multilayered security approach. It does not replace secure development practices nor audit the code/application.',
	'SecurityInfo_Security' => 'Security',
	'SecurityInfo_SecurityInformation' => 'PHP Security Information',
	'SecurityInfo_Test' => 'Test',
	'SecurityInfo_Result' => 'Result',
	'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.',
	'SitesManager_Sites' => 'Websites',
	'SitesManager_WebsitesManagement' => 'Websites Management',
	'SitesManager_MainDescription' => 'Your Web Analytics reports need Websites! Add, update, delete Websites, and show the JavaScript to insert in your pages.',
	'SitesManager_JsTrackingTag' => 'JavaScript Tracking Tag',
	'SitesManager_JsTrackingTagHelp' => 'Here is the JavaScript Tracking tag to include on all your pages',
	'SitesManager_ShowTrackingTag' => 'show tracking tag',
	'SitesManager_NoWebsites' => 'You don\'t have any website to administrate.',
	'SitesManager_AddSite' => 'Add a new website',
	'SitesManager_AliasUrlHelp' => "It is recommended, but not required, to specify the various URLs, one per line, that your visitors use to access this website.\nAlias URLs for a website will not appear in the Referers > Websites report.\nNote that it is not necessary to specify the URLs with and without 'www' as Piwik automatically considers both.",
    'SitesManager_Id' => 'Id',
	'SitesManager_Name' => 'Name',
	'SitesManager_Urls' => 'URLs',
	'SitesManager_MenuSites' => 'Websites',
	'SitesManager_DeleteConfirm_js' => 'Are you sure you want to delete the website %s?',
	'SitesManager_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.',
	'SitesManager_ExceptionNoUrl' => 'You must specify at least one URL for the website.',
	'SitesManager_ExceptionEmptyName' => 'The website name can\'t be empty.',
	'SitesManager_ExceptionInvalidUrl' => 'The url \'%s\' is not a valid URL.',
	'SitesManager_ExceptionInvalidTimezone' => 'The timezone "%s" is not valid. Please enter a valid timezone.', 
	'SitesManager_ExceptionInvalidCurrency' => 'The currency "%s" is not valid. Please enter a valid currency symbol (eg. %s)', 
	'SitesManager_ExceptionInvalidIPFormat' => 'The IP to exclude "%s" does not have a valid IP format (eg. %s).', 
	'SitesManager_SuperUserCan' => 'The Super User can also %s specify global settings%s for new websites.',
    'SitesManager_ExcludedIps' => 'Excluded IPs',
	'SitesManager_GlobalListExcludedIps' => 'Global list of Excluded IPs',
    'SitesManager_ListOfIpsToBeExcludedOnAllWebsites' => 'The IPs below will be excluded from being tracked on all websites.',
	'SitesManager_ExcludedParameters' => 'Excluded Parameters',
	'SitesManager_GlobalListExcludedQueryParameters' => 'Global list of Query URL parameters to exclude',
    'SitesManager_ListOfQueryParametersToBeExcludedOnAllWebsites' => 'The Query URLs parameters below will be excluded from URLs on all websites.',
	'SitesManager_ListOfQueryParametersToExclude' => 'Enter the list of URL Query Parameters, one per line, to exclude from the Page URLs reports.',
	'SitesManager_PiwikWillAutomaticallyExcludeCommonSessionParameters' => 'Piwik will automatically exclude the common session parameters (%s).',
	'SitesManager_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',
	'SitesManager_YourCurrentIpAddressIs' => 'Your current IP address is %s',
	'SitesManager_SelectACity' => 'Select a city',
	'SitesManager_ChooseCityInSameTimezoneAsYou' => 'Choose a city in the same time zone as you.',
	'SitesManager_ChangingYourTimezoneWillOnlyAffectDataForward' => 'Changing your time zone will only affect data going forward, and will not be applied retroactively.',
	'SitesManager_AdvancedTimezoneSupportNotFound' => 'Advanced timezones support was not found in your PHP (supported in PHP>=5.2). You can still choose a manual UTC offset.',
	'SitesManager_UTCTimeIs' => 'UTC time is %s.',
	'SitesManager_Timezone' => 'Time zone',
	'SitesManager_GlobalWebsitesSettings' => 'Global websites settings',
	'SitesManager_DefaultTimezoneForNewWebsites' => 'Default Time zone for new websites',
	'SitesManager_SelectDefaultTimezone' => 'You can select the time zone to select by default for new websites.',
	'SitesManager_Currency' => 'Currency',
	'SitesManager_CurrencySymbolWillBeUsedForGoals' => 'The Currency symbol will be displayed next to Goals revenues.',
	'SitesManager_DefaultCurrencyForNewWebsites' => 'Default Currency for new websites',
	'SitesManager_SelectDefaultCurrency' => 'You can select the currency to set by default for new websites.',
	'SitesManager_Save_js' => 'Save',
	'SitesManager_Cancel_js' => 'Cancel',
	'TranslationsAdmin_PluginDescription' => 'Help translate Piwik into your language.',
	'TranslationsAdmin_MenuTranslations' => 'Translations',
	'TranslationsAdmin_MenuLanguages' => 'Languages',
	'TranslationsAdmin_Plugin' => 'Plugin',
	'TranslationsAdmin_Definition' => 'Definition',
	'TranslationsAdmin_DefaultString' => 'Default string (English)',
	'TranslationsAdmin_TranslationString' => 'Translation string (current language: %s)',
	'TranslationsAdmin_Translations' => 'Translations',
	'TranslationsAdmin_FixPermissions' => 'Please fix filesystem permissions',
	'TranslationsAdmin_AvailableLanguages' => 'Available languages',
	'TranslationsAdmin_AddLanguage' => 'Add language',
	'TranslationsAdmin_LanguageCode' => 'Language code',
	'TranslationsAdmin_Export' => 'Export language',
	'TranslationsAdmin_Import' => 'Import language',
	'UserCountry_PluginDescription' => 'Reports the Country of the visitors.',
	'UserCountry_Country' => 'Country',
	'UserCountry_Continent' => 'Continent',
	'UserCountry_DistinctCountries' => '%s distinct countries',
	'UserCountry_Location' => 'Location',
	'UserCountry_SubmenuLocations' => 'Locations',
	'UserCountry_WidgetContinents' => 'Visitor continents',
	'UserCountry_WidgetCountries' => 'Visitor countries',
	'UserCountry_country_ac' => 'Ascension Islands',
	'UserCountry_country_ad' => 'Andorra',
	'UserCountry_country_ae' => 'United Arab Emirates',
	'UserCountry_country_af' => 'Afghanistan',
	'UserCountry_country_ag' => 'Antigua and Barbuda',
	'UserCountry_country_ai' => 'Anguilla',
	'UserCountry_country_al' => 'Albania',
	'UserCountry_country_am' => 'Armenia',
	'UserCountry_country_an' => 'Netherlands Antilles',
	'UserCountry_country_ao' => 'Angola',
	'UserCountry_country_aq' => 'Antarctica',
	'UserCountry_country_ar' => 'Argentina',
	'UserCountry_country_as' => 'American Samoa',
	'UserCountry_country_at' => 'Austria',
	'UserCountry_country_au' => 'Australia',
	'UserCountry_country_aw' => 'Aruba',
	'UserCountry_country_ax' => 'Aland Islands',
	'UserCountry_country_az' => 'Azerbaijan',
	'UserCountry_country_ba' => 'Bosnia and Herzegovina',
	'UserCountry_country_bb' => 'Barbados',
	'UserCountry_country_bd' => 'Bangladesh',
	'UserCountry_country_be' => 'Belgium',
	'UserCountry_country_bf' => 'Burkina Faso',
	'UserCountry_country_bg' => 'Bulgaria',
	'UserCountry_country_bh' => 'Bahrain',
	'UserCountry_country_bi' => 'Burundi',
	'UserCountry_country_bj' => 'Benin',
	'UserCountry_country_bl' => 'Saint Barthelemy',
	'UserCountry_country_bm' => 'Bermuda',
	'UserCountry_country_bn' => 'Bruneo',
	'UserCountry_country_bo' => 'Bolivia',
	'UserCountry_country_br' => 'Brazil',
	'UserCountry_country_bs' => 'Bahamas',
	'UserCountry_country_bt' => 'Bhutan',
	'UserCountry_country_bu' => 'Burma',
	'UserCountry_country_bv' => 'Bouvet Island',
	'UserCountry_country_bw' => 'Botswana',
	'UserCountry_country_by' => 'Belarus',
	'UserCountry_country_bz' => 'Belize',
	'UserCountry_country_ca' => 'Canada',
	'UserCountry_country_cc' => 'Cocos (Keeling) Islands',
	'UserCountry_country_cd' => 'Congo, The Democratic Republic of the',
	'UserCountry_country_cf' => 'Central African Republic',
	'UserCountry_country_cg' => 'Congo',
	'UserCountry_country_ch' => 'Switzerland',
	'UserCountry_country_ci' => 'Cote D\'Ivoire',
	'UserCountry_country_ck' => 'Cook Islands',
	'UserCountry_country_cl' => 'Chile',
	'UserCountry_country_cm' => 'Cameroon',
	'UserCountry_country_cn' => 'China',
	'UserCountry_country_co' => 'Colombia',
	'UserCountry_country_cp' => 'Clipperton Island',
	'UserCountry_country_cr' => 'Costa Rica',
	'UserCountry_country_cs' => 'Serbia Montenegro',
	'UserCountry_country_cu' => 'Cuba',
	'UserCountry_country_cv' => 'Cape Verde',
	'UserCountry_country_cx' => 'Christmas Island',
	'UserCountry_country_cy' => 'Cyprus',
	'UserCountry_country_cz' => 'Czech Republic',
	'UserCountry_country_de' => 'Germany',
	'UserCountry_country_dg' => 'Diego Garcia',
	'UserCountry_country_dj' => 'Djibouti',
	'UserCountry_country_dk' => 'Denmark',
	'UserCountry_country_dm' => 'Dominica',
	'UserCountry_country_do' => 'Dominican Republic',
	'UserCountry_country_dz' => 'Algeria',
	'UserCountry_country_ea' => 'Ceuta, Melilla',
	'UserCountry_country_ec' => 'Ecuador',
	'UserCountry_country_ee' => 'Estonia',
	'UserCountry_country_eg' => 'Egypt',
	'UserCountry_country_eh' => 'Western Sahara',
	'UserCountry_country_er' => 'Eritrea',
	'UserCountry_country_es' => 'Spain',
	'UserCountry_country_et' => 'Ethiopia',
	'UserCountry_country_eu' => 'European Union',
	'UserCountry_country_fi' => 'Finland',
	'UserCountry_country_fj' => 'Fiji',
	'UserCountry_country_fk' => 'Falkland Islands (Malvinas)',
	'UserCountry_country_fm' => 'Micronesia, Federated States of',
	'UserCountry_country_fo' => 'Faroe Islands',
	'UserCountry_country_fr' => 'France',
	'UserCountry_country_fx' => 'France, Metropolitan',
	'UserCountry_country_ga' => 'Gabon',
	'UserCountry_country_gb' => 'Great Britain',
	'UserCountry_country_gd' => 'Grenada',
	'UserCountry_country_ge' => 'Georgia',
	'UserCountry_country_gf' => 'French Guyana',
	'UserCountry_country_gg' => 'Guernsey',
	'UserCountry_country_gh' => 'Ghana',
	'UserCountry_country_gi' => 'Gibraltar',
	'UserCountry_country_gl' => 'Greenland',
	'UserCountry_country_gm' => 'Gambia',
	'UserCountry_country_gn' => 'Guinea',
	'UserCountry_country_gp' => 'Guadeloupe',
	'UserCountry_country_gq' => 'Equatorial Guinea',
	'UserCountry_country_gr' => 'Greece',
	'UserCountry_country_gs' => 'South Georgia and the South Sandwich Islands',
	'UserCountry_country_gt' => 'Guatemala',
	'UserCountry_country_gu' => 'Guam',
	'UserCountry_country_gw' => 'Guinea-Bissau',
	'UserCountry_country_gy' => 'Guyana',
	'UserCountry_country_hk' => 'Hong Kong',
	'UserCountry_country_hm' => 'Heard Island and McDonald Islands',
	'UserCountry_country_hn' => 'Honduras',
	'UserCountry_country_hr' => 'Croatia',
	'UserCountry_country_ht' => 'Haiti',
	'UserCountry_country_hu' => 'Hungary',
	'UserCountry_country_ic' => 'Canary Islands',
	'UserCountry_country_id' => 'Indonesia',
	'UserCountry_country_ie' => 'Ireland',
	'UserCountry_country_il' => 'Israel',
	'UserCountry_country_im' => 'Man Island',
	'UserCountry_country_in' => 'India',
	'UserCountry_country_io' => 'British Indian Ocean Territory',
	'UserCountry_country_iq' => 'Iraq',
	'UserCountry_country_ir' => 'Iran, Islamic Republic of',
	'UserCountry_country_is' => 'Iceland',
	'UserCountry_country_it' => 'Italy',
	'UserCountry_country_je' => 'Jersey',
	'UserCountry_country_jm' => 'Jamaica',
	'UserCountry_country_jo' => 'Jordan',
	'UserCountry_country_jp' => 'Japan',
	'UserCountry_country_ke' => 'Kenya',
	'UserCountry_country_kg' => 'Kyrgyzstan',
	'UserCountry_country_kh' => 'Cambodia',
	'UserCountry_country_ki' => 'Kiribati',
	'UserCountry_country_km' => 'Comoros',
	'UserCountry_country_kn' => 'Saint Kitts and Nevis',
	'UserCountry_country_kp' => 'Korea, Democratic People\'s Republic of',
	'UserCountry_country_kr' => 'Korea, Republic of',
	'UserCountry_country_kw' => 'Kuwait',
	'UserCountry_country_ky' => 'Cayman Islands',
	'UserCountry_country_kz' => 'Kazakhstan',
	'UserCountry_country_la' => 'Laos',
	'UserCountry_country_lb' => 'Lebanon',
	'UserCountry_country_lc' => 'Saint Lucia',
	'UserCountry_country_li' => 'Liechtenstein',
	'UserCountry_country_lk' => 'Sri Lanka',
	'UserCountry_country_lr' => 'Liberia',
	'UserCountry_country_ls' => 'Lesotho',
	'UserCountry_country_lt' => 'Lithuania',
	'UserCountry_country_lu' => 'Luxembourg',
	'UserCountry_country_lv' => 'Latvia',
	'UserCountry_country_ly' => 'Libya',
	'UserCountry_country_ma' => 'Morocco',
	'UserCountry_country_mc' => 'Monaco',
	'UserCountry_country_md' => 'Moldova, Republic of',
	'UserCountry_country_me' => 'Montenegro',
	'UserCountry_country_mf' => 'Saint Martin',
	'UserCountry_country_mg' => 'Madagascar',
	'UserCountry_country_mh' => 'Marshall Islands',
	'UserCountry_country_mk' => 'Macedonia',
	'UserCountry_country_ml' => 'Mali',
	'UserCountry_country_mm' => 'Myanmar',
	'UserCountry_country_mn' => 'Mongolia',
	'UserCountry_country_mo' => 'Macau',
	'UserCountry_country_mp' => 'Northern Mariana Islands',
	'UserCountry_country_mq' => 'Martinique',
	'UserCountry_country_mr' => 'Mauritania',
	'UserCountry_country_ms' => 'Montserrat',
	'UserCountry_country_mt' => 'Malta',
	'UserCountry_country_mu' => 'Mauritius',
	'UserCountry_country_mv' => 'Maldives',
	'UserCountry_country_mw' => 'Malawi',
	'UserCountry_country_mx' => 'Mexico',
	'UserCountry_country_my' => 'Malaysia',
	'UserCountry_country_mz' => 'Mozambique',
	'UserCountry_country_na' => 'Namibia',
	'UserCountry_country_nc' => 'New Caledonia',
	'UserCountry_country_ne' => 'Niger',
	'UserCountry_country_nf' => 'Norfolk Island',
	'UserCountry_country_ng' => 'Nigeria',
	'UserCountry_country_ni' => 'Nicaragua',
	'UserCountry_country_nl' => 'Netherlands',
	'UserCountry_country_no' => 'Norway',
	'UserCountry_country_np' => 'Nepal',
	'UserCountry_country_nr' => 'Nauru',
	'UserCountry_country_nt' => 'Neutral Zone',
	'UserCountry_country_nu' => 'Niue',
	'UserCountry_country_nz' => 'New Zealand',
	'UserCountry_country_om' => 'Oman',
	'UserCountry_country_pa' => 'Panama',
	'UserCountry_country_pe' => 'Peru',
	'UserCountry_country_pf' => 'French Polynesia',
	'UserCountry_country_pg' => 'Papua New Guinea',
	'UserCountry_country_ph' => 'Philippines',
	'UserCountry_country_pk' => 'Pakistan',
	'UserCountry_country_pl' => 'Poland',
	'UserCountry_country_pm' => 'Saint Pierre and Miquelon',
	'UserCountry_country_pn' => 'Pitcairn',
	'UserCountry_country_pr' => 'Puerto Rico',
	'UserCountry_country_ps' => 'Palestinian Territory',
	'UserCountry_country_pt' => 'Portugal',
	'UserCountry_country_pw' => 'Palau',
	'UserCountry_country_py' => 'Paraguay',
	'UserCountry_country_qa' => 'Qatar',
	'UserCountry_country_re' => 'Reunion Island',
	'UserCountry_country_ro' => 'Romania',
	'UserCountry_country_ru' => 'Russia',
	'UserCountry_country_rs' => 'Serbia',
	'UserCountry_country_rw' => 'Rwanda',
	'UserCountry_country_sa' => 'Saudi Arabia',
	'UserCountry_country_sb' => 'Solomon Islands',
	'UserCountry_country_sc' => 'Seychelles',
	'UserCountry_country_sd' => 'Sudan',
	'UserCountry_country_se' => 'Sweden',
	'UserCountry_country_sf' => 'Finland',
	'UserCountry_country_sg' => 'Singapore',
	'UserCountry_country_sh' => 'Saint Helena',
	'UserCountry_country_si' => 'Slovenia',
	'UserCountry_country_sj' => 'Svalbard',
	'UserCountry_country_sk' => 'Slovakia',
	'UserCountry_country_sl' => 'Sierra Leone',
	'UserCountry_country_sm' => 'San Marino',
	'UserCountry_country_sn' => 'Senegal',
	'UserCountry_country_so' => 'Somalia',
	'UserCountry_country_sr' => 'Suriname',
	'UserCountry_country_st' => 'Sao Tome and Principe',
	'UserCountry_country_su' => 'Old U.S.S.R',
	'UserCountry_country_sv' => 'El Salvador',
	'UserCountry_country_sy' => 'Syrian Arab Republic',
	'UserCountry_country_sz' => 'Swaziland',
	'UserCountry_country_ta' => 'Tristan da Cunha',
	'UserCountry_country_tc' => 'Turks and Caicos Islands',
	'UserCountry_country_td' => 'Chad',
	'UserCountry_country_tf' => 'French Southern Territories',
	'UserCountry_country_tg' => 'Togo',
	'UserCountry_country_th' => 'Thailand',
	'UserCountry_country_tj' => 'Tajikistan',
	'UserCountry_country_tk' => 'Tokelau',
	'UserCountry_country_tl' => 'East Timor',
	'UserCountry_country_tm' => 'Turkmenistan',
	'UserCountry_country_tn' => 'Tunisia',
	'UserCountry_country_to' => 'Tonga',
	'UserCountry_country_tp' => 'East Timor',
	'UserCountry_country_tr' => 'Turkey',
	'UserCountry_country_tt' => 'Trinidad and Tobago',
	'UserCountry_country_tv' => 'Tuvalu',
	'UserCountry_country_tw' => 'Taiwan',
	'UserCountry_country_tz' => 'Tanzania, United Republic of',
	'UserCountry_country_ua' => 'Ukraine',
	'UserCountry_country_ug' => 'Uganda',
	'UserCountry_country_uk' => 'United Kingdom',
	'UserCountry_country_um' => 'United States Minor Outlying Islands',
	'UserCountry_country_us' => 'United States',
	'UserCountry_country_uy' => 'Uruguay',
	'UserCountry_country_uz' => 'Uzbekistan',
	'UserCountry_country_va' => 'Vatican City',
	'UserCountry_country_vc' => 'Saint Vincent and the Grenadines',
	'UserCountry_country_ve' => 'Venezuela',
	'UserCountry_country_vg' => 'Virgin Islands, British',
	'UserCountry_country_vi' => 'Virgin Islands, U.S.',
	'UserCountry_country_vn' => 'Vietnam',
	'UserCountry_country_vu' => 'Vanuatu',
	'UserCountry_country_wf' => 'Wallis and Futuna',
	'UserCountry_country_ws' => 'Samoa',
	'UserCountry_country_ye' => 'Yemen',
	'UserCountry_country_yt' => 'Mayotte',
	'UserCountry_country_yu' => 'Yugoslavia',
	'UserCountry_country_za' => 'South Africa',
	'UserCountry_country_zm' => 'Zambia',
	'UserCountry_country_zr' => 'Zaire',
	'UserCountry_country_zw' => 'Zimbabwe',
	'UserCountry_continent_eur' => 'Europe',
	'UserCountry_continent_afr' => 'Africa',
	'UserCountry_continent_asi' => 'Asia',
	'UserCountry_continent_ams' => 'South and Central America',
	'UserCountry_continent_amn' => 'North America',
	'UserCountry_continent_oce' => 'Oceania',
	'UserSettings_PluginDescription' => 'Reports various User Settings: Browser, Browser Family, Operating System, Plugins, Resolution, Global Settings.',
	'UserSettings_VisitorSettings' => 'Visitor Settings',
	'UserSettings_BrowserFamilies' => 'Browser families',
	'UserSettings_Browsers' => 'Browsers',
	'UserSettings_Plugins' => 'Plugins',
	'UserSettings_Configurations' => 'Configurations',
	'UserSettings_OperatingSystems' => 'Operating systems',
	'UserSettings_Resolutions' => 'Resolutions',
	'UserSettings_WideScreen' => 'Wide Screen',
	'UserSettings_ColumnBrowserFamily' => 'Browser family',
	'UserSettings_ColumnBrowser' => 'Browser',
	'UserSettings_ColumnPlugin' => 'Plugin',
	'UserSettings_ColumnConfiguration' => 'Configuration',
	'UserSettings_ColumnOperatingSystem' => 'Operating system',
	'UserSettings_ColumnResolution' => 'Resolution',
	'UserSettings_ColumnTypeOfScreen' => 'Type of screen',
	'UserSettings_WidgetResolutions' => 'Screen resolutions',
	'UserSettings_WidgetBrowsers' => 'Visitor browsers',
	'UserSettings_WidgetPlugins' => 'List of Plugins',
	'UserSettings_WidgetWidescreen' => 'Normal / Widescreen',
	'UserSettings_WidgetBrowserFamilies' => 'Browsers by family',
	'UserSettings_WidgetOperatingSystems' => 'Operating systems',
	'UserSettings_WidgetGlobalVisitors' => 'Global visitors configuration',
	'UserSettings_SubmenuSettings' => 'Settings',
	'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.',
	'UsersManager_UsersManagement' => 'Users Management',
	'UsersManager_UsersManagementMainDescription' => 'Create new users or update the existing users. You can then set their permissions above.',
	'UsersManager_ManageAccess' => 'Manage access',
	'UsersManager_MainDescription' => 'Decide which users have which Piwik access on your Websites. You can also set the permissions on all the Websites at once.',
	'UsersManager_Sites' => 'Websites',
	'UsersManager_AllWebsites' => 'All websites',
	'UsersManager_ApplyToAllWebsites' => 'Apply to all websites',
	'UsersManager_User' => 'User',
	'UsersManager_PrivNone' => 'No access',
	'UsersManager_PrivView' => 'View',
	'UsersManager_PrivAdmin' => 'Admin',
	'UsersManager_ChangeAllConfirm' => 'Are you sure you want to change \'%s\' permissions on all the websites?',
	'UsersManager_Password' => 'Password',
	'UsersManager_Email' => 'Email',
	'UsersManager_Alias' => 'Alias',
	'UsersManager_TheSuperUserAliasCannotBeChanged' => 'The Super User alias cannot be changed.',
	'UsersManager_ReportToLoadByDefault' => 'Report to load by default',
	'UsersManager_ReportDateToLoadByDefault' => 'Report date to load by default',
	'UsersManager_ForAnonymousUsersReportDateToLoadByDefault' => 'For anonymous users, report date to load by default',
	'UsersManager_ExcludeVisitsViaCookie' => 'Exclude your visits using a cookie',
	'UsersManager_YourVisitsAreIgnoredOnDomain' => '%sYour visits are ignored by Piwik on %s %s (the Piwik ignore cookie was found in your browser).',
	'UsersManager_YourVisitsAreNotIgnored' => '%sYour visits are not ignored by Piwik%s (the Piwik ignore cookie was not found in your browser).',
	'UsersManager_ClickHereToDeleteTheCookie' => 'Click here to delete the cookie and have Piwik track your visits',
	'UsersManager_ClickHereToSetTheCookieOnDomain' => 'Click here to set a cookie that will exclude your visits on websites tracked by Piwik on %s',
	'UsersManager_Edit' => 'Edit',
	'UsersManager_AddUser' => 'Add a new user',
	'UsersManager_MenuUsers' => 'Users',
	'UsersManager_MenuUserSettings' => 'User settings',
	'UsersManager_MenuAnonymousUserSettings' => 'Anonymous user settings',
	'UsersManager_NoteNoAnonymousUserAccessSettingsWontBeUsed' => 'Note: You do not have any website that the anonymous user can access, the following settings won\'t be used.',
	'UsersManager_WhenUsersAreNotLoggedInAndVisitPiwikTheyShouldAccess' => 'When users are not logged in and visit Piwik, they should access',
	'UsersManager_ChangePassword' => 'Change password',
	'UsersManager_IfYouWouldLikeToChangeThePasswordTypeANewOne' => 'If you would like to change the password type a new one. Otherwise leave this blank.',
	'UsersManager_TypeYourPasswordAgain' => 'Type your new password again.',
	'UsersManager_TheLoginScreen' => 'The login screen',
	'UsersManager_DeleteConfirm_js' => 'Are you sure you want to delete the user %s?',
	'UsersManager_YourUsernameCannotBeChanged' => 'Your username cannot be changed.',
	'UsersManager_ExceptionLoginExists' => 'Login \'%s\' already exists.',
	'UsersManager_ExceptionEmailExists' => 'User with email \'%s\' already exists.',
	'UsersManager_ExceptionInvalidLoginFormat' => 'The login must be between %1$s and %2$s characters long and contain only letters, numbers, or the characters \'_\' or \'-\' or \'.\'',
	'UsersManager_ExceptionInvalidPassword' => 'The password length must be between 6 and 26 characters.',
	'UsersManager_ExceptionInvalidEmail' => 'The email doesn\'t have a valid format.',
	'UsersManager_ExceptionDeleteDoesNotExist' => 'User \'%s\' doesn\'t exist therefore it can\'t be deleted.',
	'UsersManager_ExceptionAdminAnonymous' => 'You cannot grant \'admin\' access to the \'anonymous\' user.',
	'UsersManager_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.',
	'UsersManager_ExceptionSuperUser' => 'Requested user is the Super User and cannot be queried, edited or deleted via the API. You can manually edit the Super User details in your Piwik configuration file.',
	'UsersManager_ExceptionUserDoesNotExist' => 'User \'%s\' doesn\'t exist.',
	'UsersManager_ExceptionAccessValues' => 'The parameter access must have one of the following values : [ %s ]',
	'UsersManager_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.',
	'VisitFrequency_PluginDescription' => 'Reports various statistics about the Returning Visitor versus the First time visitor.',
	'VisitFrequency_Evolution' => 'Evolution over the period',
	'VisitFrequency_ColumnReturningVisits' => 'Returning Visits',
	'VisitFrequency_ColumnActionsByReturningVisits' => 'Actions by Returning Visits',
	'VisitFrequency_ColumnMaximumActionsByAReturningVisit' => 'Maximum Actions by a Returning Visit',
	'VisitFrequency_ColumnTotalTimeSpentByReturningVisits' => 'Total time spent by Returning Visits (in seconds)',
	'VisitFrequency_ColumnBounceRateForReturningVisits' => 'Bounce rate for Returning Visits',
	'VisitFrequency_ReturnVisits' => '%s returning visits',
	'VisitFrequency_ReturnActions' => '%s actions by the returning visits',
	'VisitFrequency_ReturnMaxActions' => '%s maximum actions by a returning visit',
	'VisitFrequency_ReturnTotalTime' => '%s total time spent by returning visits',
	'VisitFrequency_ReturnBounceRate' => '%s returning visits have bounced (left the website after one page)',
	'VisitFrequency_WidgetOverview' => 'Frequency overview',
	'VisitFrequency_WidgetGraphReturning' => 'Graph returning visits',
	'VisitFrequency_SubmenuFrequency' => 'Frequency',
	'VisitorGenerator_PluginDescription' => 'Plugin to create fake visits. This can be used by Piwik users or developers as an easy way to generate fake data to populate Piwik reports.',
	'VisitorGenerator_VisitorGenerator' => 'Visitor Generator',
	'VisitorGenerator_Warning' => 'You are about to generate fake visits which will be recorded in your Piwik database.',
	'VisitorGenerator_NotReversible' => 'It will %s not%s be possible to easily delete these visits from the piwik logs.',
	'VisitorGenerator_AreYouSure' => 'Are you sure you want to generate fake visits?',
	'VisitorGenerator_ChoiceYes' => 'Yes, I am sure!',
	'VisitorGenerator_Submit' => 'Submit',
	'VisitorGenerator_SelectWebsite' => 'Select Website',
	'VisitorGenerator_Visitors' => 'Visitors',
	'VisitorGenerator_MinVisitors' => 'Minimum Visitors',
	'VisitorGenerator_MaxVisitors' => 'Maximum Visitors',
	'VisitorGenerator_NbActions' => 'Number of Actions',
	'VisitorGenerator_ActionsPerVisit' => 'Actions per visit',
	'VisitorGenerator_NbRequestsPerSec' => 'Requests per second',
	'VisitorGenerator_DaysToCompute' => 'Days to compute',
	'VisitorGenerator_Date' => 'Date',
	'VisitorInterest_PluginDescription' => 'Reports about the Visitor Interest: number of pages viewed, time spent on the Website.',
	'VisitorInterest_VisitsPerDuration' => 'Visits per visit duration',
	'VisitorInterest_VisitsPerNbOfPages' => 'Visits per number of pages',
	'VisitorInterest_ColumnVisitDuration' => 'Visit duration',
	'VisitorInterest_ColumnPagesPerVisit' => 'Pages per visit',
	'VisitorInterest_WidgetLengths' => 'Length of Visits',
	'VisitorInterest_WidgetPages' => 'Pages per visit',
	'VisitorInterest_Engagement' => 'Engagement',
	'VisitorInterest_PlusXMin' => '%s min',
	'VisitorInterest_BetweenXYMinutes' => '%1$s-%2$s min',
	'VisitorInterest_OnePage' => '1 page',
	'VisitorInterest_NPages' => '%s pages',
	'VisitorInterest_BetweenXYSeconds' => '%1$s-%2$ss',
	'VisitsSummary_PluginDescription' => 'Reports the general Analytics numbers: visits, unique visitors, number of actions, Bounce Rate, etc.',
	'VisitsSummary_VisitsSummary' => 'Visits Summary',
	'VisitsSummary_NbVisits' => '%s visits',
	'VisitsSummary_NbUniqueVisitors' => '%s unique visitors',
	'VisitsSummary_NbActionsDescription' => '%s actions (page views, downloads and outlinks)',
	'VisitsSummary_TotalTime' => '%s total time spent by the visitors',
	'VisitsSummary_MaxNbActions' => '%s max actions in one visit',
	'VisitsSummary_NbVisitsBounced' => '%s visits have bounced (left the website after one page)',
	'VisitsSummary_EvolutionOverLastPeriods' => 'Evolution over the last %s',
	'VisitsSummary_Report' => 'Report',
	'VisitsSummary_GenerateTime' => '%s seconds to generate the page',
	'VisitsSummary_GenerateQueries' => '%s queries executed',
	'VisitsSummary_WidgetLastVisits' => 'Last visits graph',
	'VisitsSummary_WidgetVisits' => 'Visits overview',
	'VisitsSummary_WidgetLastVisitors' => 'Last unique visitors graph',
	'VisitsSummary_WidgetOverviewGraph' => 'Overview with graph',
	'VisitsSummary_SubmenuOverview' => 'Overview',
	'VisitTime_PluginDescription' => 'Reports the Local and Server time. Server time information can be useful to schedule a maintenance on the Website.',
	'VisitTime_LocalTime' => 'Visits per local time',
	'VisitTime_ServerTime' => 'Visits per server time',
	'VisitTime_ColumnServerTime' => 'Server time',
	'VisitTime_ColumnLocalTime' => 'Local time',
	'VisitTime_WidgetLocalTime' => 'Visits by local time',
	'VisitTime_WidgetServerTime' => 'Visits by server time',
	'VisitTime_SubmenuTimes' => 'Times',
	'VisitTime_NHour' => '%sh',
	'Widgetize_PluginDescription' => 'The plugin makes it very easy to export any Piwik Widget in your Blog, Website or on Igoogle and Netvibes!',
);