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

ja.php « lang - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5371af113aadfcc5d770ccc55e2be5a15bec6a7 (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
<?php
$translations = array(
	'General_Locale' => 'ja_JP.UTF-8',
	'General_TranslatorName' => 'Takafumi/Drupal Japan - http://drupal.jp',
	'General_TranslatorEmail' => 'imagine@drupal.jp',
	'General_EnglishLanguageName' => 'Japanese',
	'General_OriginalLanguageName' => '日本語',
	'General_HelloUser' => 'こんにちは、%sさん',
	'General_OpenSourceWebAnalytics' => 'オヌプン゜ヌスりェブ解析',
	'General_Dashboard' => 'ダッシュボヌド',
	'General_DashboardForASpecificWebsite' => '特定りェブサむトのダッシュボヌド',
	'General_MultiSitesSummary' => '党りェブサむト',
	'General_AllWebsitesDashboard' => '党りェブサむトのダッシュボヌド',
	'General_API' => 'API',
	'General_Widgets' => 'りィゞェット',
	'General_Settings' => '蚭定',
	'General_GiveUsYourFeedback' => 'フィヌドバックをお願いしたす',
	'General_Unknown' => '䞍明',
	'General_Required' => '%s は必須です',
	'General_NotValid' => '%s は有効ではありたせん',
	'General_Id' => 'ID',
	'General_Error' => '゚ラヌ',
	'General_Warning' => 'è­Šå‘Š',
	'General_BackToHomepage' => 'Piwik ホヌムペヌゞに戻る',
	'General_Yes' => 'はい',
	'General_No' => 'いいえ',
	'General_Delete' => '削陀',
	'General_Report' => 'リポヌト',
	'General_Edit' => '線集',
	'General_Download' => 'ダりンロヌド',
	'General_Ok' => 'OK',
	'General_Close' => '閉じる',
	'General_OrCancel' => 'たたは %s キャンセル %s',
	'General_Logout' => 'ログアりト',
	'General_Username' => 'ナヌザヌ名',
	'General_Description' => '説明',
	'General_Done' => '完了',
	'General_Name' => '名前',
	'General_Value' => '倀',
	'General_Details' => '詳现',
	'General_Default' => 'デフォルト',
	'General_Date' => '日付',
	'General_Period' => '期間',
	'General_ChooseDate' => '日付を遞択',
	'General_Today' => '今日',
	'General_Yesterday' => '昚日',
	'General_CurrentWeek' => '今週',
	'General_CurrentMonth' => '今月',
	'General_CurrentYear' => '今幎',
	'General_DateRange' => '期間',
	'General_LoadingData' => 'デヌタ読み蟌み䞭...',
	'General_Loading_js' => '読み蟌み䞭...',
	'General_GoTo' => '%s ぞ',
	'General_Next' => '次ぞ',
	'General_Previous' => '前ぞ',
	'General_Search' => '怜玢',
	'General_Others' => 'その他',
	'General_Table' => 'テヌブル',
	'General_Piechart' => '円グラフ',
	'General_TagCloud' => 'タグクラりド',
	'General_VBarGraph' => '垂盎棒グラフ',
	'General_OpenInNewWindow_js' => '新しいりィンドりで開く',
	'General_SaveImageOnYourComputer_js' => '画像を保存するには、画像を右クリックしお "名前を付けお画像を保存" を遞択したす',
	'General_Refresh' => 'ペヌゞの再読み蟌み',
	'General_Visitors' => 'ビゞタヌ',
	'General_ExportThisReport' => '他のフォヌマットでこのデヌタセットを゚クスポヌトする',
	'General_ExportAsImage_js' => '画像ずしお゚クスポヌトする',
	'General_YourChangesHaveBeenSaved' => '倉曎は保存されたした。',
	'General_ErrorRequest' => 'リク゚スト䞭に問題がありたした。 再詊行しおください。',
	'General_ColumnNbUniqVisitors' => 'ナニヌクビゞタヌ数',
	'General_ColumnNbVisits' => 'ビゞット',
	'General_ColumnPercentageVisits' => '% ビゞット',
	'General_ColumnNbActions' => 'アクション',
	'General_ColumnMaxActions' => '1ビゞットでの最倧アクション数',
	'General_ColumnSumVisitLength' => 'ビゞタヌの総滞圚時間秒単䜍',
	'General_ColumnLabel' => 'ラベル',
	'General_ColumnConversionRate' => 'コンバヌゞョン率',
	'General_ColumnActionsPerVisit' => 'ビゞット単䜍のアクション数',
	'General_VisitDuration' => 'ビゞットの平均継続時間秒単䜍',
	'General_ColumnAvgTimeOnSite' => '平均りェブサむト滞圚時間',
	'General_ColumnBounceRate' => 'バりンス率',
	'General_PageBounceRateDefinition' => 'このペヌゞからブラりズを開始し、すぐにりェブサむトから離れたビゞットのパヌセンテヌゞです。',
	'General_ColumnExitRate' => '退出率',
	'General_PageExitRateDefinition' => 'このペヌゞからすぐにりェブサむトを離れたビゞットのパヌセンテヌゞです。',
	'General_ColumnPageviews' => 'ペヌゞビュヌ',
	'General_ColumnUniquePageviews' => 'ナニヌクペヌゞビュヌ',
	'General_ColumnBounces' => 'バりンス',
	'General_BouncesDefinition' => 'このペヌゞからブラりズを開始し、すぐにりェブサむトから離れたビゞット数です。',
	'General_ColumnEntrances' => '入口ブラりズ開始',
	'General_EntrancesDefinition' => 'このペヌゞでブラりズを開始したビゞット数です。',
	'General_ColumnExits' => '出口ブラりズ終了',
	'General_ExitsDefinition' => 'このペヌゞでブラりズを終了したビゞット数です。',
	'General_ColumnAverageTimeOnPage' => '平均ペヌゞ滞圚時間',
	'General_AverageTimeOnPageDefinition' => 'このペヌゞにビゞタヌが滞圚した平均時間です。',
	'General_ColumnValuePerVisit' => 'ビゞット単䜍の䟡倀',
	'General_ColumnVisitsWithConversions' => 'コンバヌゞョン付きビゞット',
	'General_YearsDays' => '%1$s 幎 %2$s 日',
	'General_DaysHours' => '%1$s 日 %2$s 時間',
	'General_HoursMinutes' => '%1$s 時間 %2$s 分',
	'General_MinutesSeconds' => '%1$s 分 %2$s 秒',
	'General_Seconds' => '%s 秒',
	'General_Save' => '保存',
	'General_ForExampleShort' => '䟋',
	'General_YouMustBeLoggedIn' => 'この機胜にアクセスするにはログむンする必芁がありたす。',
	'General_Website' => 'りェブサむト',
	'General_GeneralSettings' => '党般の蚭定',
	'General_AllowPiwikArchivingToTriggerBrowser' => 'リポヌトがブラりザで衚瀺されたずきをトリガヌずする Piwik アヌカむブ凊理を蚱可',
	'General_ArchivingInlineHelp' => '比范的トラフィックの高いりェブサむトでは、ブラりザでの衚瀺をトリガヌずする Piwik アヌカむブ凊理を無効にするこずをお勧めしたす。 代わりに、1時間ごずに Piwik リポヌトを凊理する cron ゞョブをセットアップするこずをお勧めしたす。',
	'General_ArchivingTriggerDescription' => '比范的トラフィックの高いりェブサむトに掚奚したす。 自動リポヌト凊理には %scron ゞョブのセットアップ%sが必芁ずなりたす。',
	'General_SeeTheOfficialDocumentationForMoreInformation' => '詳现に぀いおは、%s公匏ドキュメント%sを参照しおください。',
	'General_ReportsForTodayWillBeProcessedAtMostEvery' => '今日のリポヌトの凊理間隔',
	'General_NSeconds' => '%s 秒',
	'General_SmallTrafficYouCanLeaveDefault' => 'トラフィックの少ないりェブサむトでは、デフォルトの %s 秒の蚭定で、リアルタむムにすべおのリポヌトにアクセス可胜です。',
	'General_MediumToHighTrafficItIsRecommendedTo' => '比范的トラフィックの高いりェブサむトでは、今日のリポヌトの凊理間隔を 30分%s 秒 たたは 1時間%s 秒 に蚭定するこずをお勧めしたす。',
	'General_RequiresFlash' => 'Piwik でのグラフの衚瀺には Flash が必芁ずなりたす',
	'General_GraphHelp' => 'Piwik でのグラフ衚瀺の詳现です。',
	'General_NoDataForGraph' => 'このグラフのデヌタはありたせん。',
	'General_NoDataForTagCloud' => 'このタグクラりドのデヌタはありたせん。',
	'General_DisplaySimpleTable' => 'シンプルなテヌブル衚瀺',
	'General_DisplayTableWithMoreMetrics' => 'より倚くのメトリックを含むテヌブル衚瀺',
	'General_DisplayTableWithGoalMetrics' => '目暙メトリックを含むテヌブル衚瀺',
	'General_PiwikIsACollaborativeProjectYouCanContribute' => '%1$s Piwik %2$s は共同プロゞェクトです。%3$sあなたが Piwik のファンであれば支揎するこずができたす 詳现は %4$s How to participate in Piwik?%5$s を確認しおください。',
	'General_YouAreViewingDemoShortMessage' => '珟圚、Piwik のデモを衚瀺しおいたす',
	'General_DownloadFullVersion' => 'フルバヌゞョンを%1$sダりンロヌド%2$s %3$s を確認しおください',
	'General_NewUpdatePiwikX' => '新しいアップデヌト Piwik %s',
	'General_AboutPiwikX' => 'Piwik %s に぀いお',
	'General_PiwikXIsAvailablePleaseUpdateNow' => 'Piwik %1$s が利甚可胜です。 %2$s今すぐアップデヌトしおください%3$s%4$s倉曎点%5$sを参照。',
	'General_PiwikXIsAvailablePleaseNotifyPiwikAdmin' => '%s が利甚可胜です。 サむト管理者に通知しおください。',
	'General_NewReportsWillBeProcessedByCron' => 'Piwik アヌカむブ凊理がブラりザによる衚瀺をトリガヌずしない堎合、新しいリポヌトは crontab によっお凊理されたす。',
	'General_ReportsWillBeProcessedAtMostEveryHour' => '埓っお、リポヌトは1時間ごずに凊理されたす。',
	'General_IfArchivingIsFastYouCanSetupCronRunMoreOften' => 'より早くアヌカむブ凊理を行いたい堎合は、cron がより頻繁に実行されるように crontab を蚭定したす。',
	'General_BackToPiwik' => 'Piwik ぞ戻る',
	'General_ShortMonth_1' => '1月',
	'General_ShortMonth_2' => '2月',
	'General_ShortMonth_3' => '3月',
	'General_ShortMonth_4' => '4月',
	'General_ShortMonth_5' => '5月',
	'General_ShortMonth_6' => '6月',
	'General_ShortMonth_7' => '7月',
	'General_ShortMonth_8' => '8月',
	'General_ShortMonth_9' => '9月',
	'General_ShortMonth_10' => '10月',
	'General_ShortMonth_11' => '11月',
	'General_ShortMonth_12' => '12月',
	'General_LongMonth_1' => '1月',
	'General_LongMonth_2' => '2月',
	'General_LongMonth_3' => '3月',
	'General_LongMonth_4' => '4月',
	'General_LongMonth_5' => '5月',
	'General_LongMonth_6' => '6月',
	'General_LongMonth_7' => '7月',
	'General_LongMonth_8' => '8月',
	'General_LongMonth_9' => '9月',
	'General_LongMonth_10' => '10月',
	'General_LongMonth_11' => '11月',
	'General_LongMonth_12' => '12月',
	'General_ShortDay_1' => '月',
	'General_ShortDay_2' => '火',
	'General_ShortDay_3' => 'æ°Ž',
	'General_ShortDay_4' => '朚',
	'General_ShortDay_5' => '金',
	'General_ShortDay_6' => '土',
	'General_ShortDay_7' => '日',
	'General_LongDay_1' => '月曜日',
	'General_LongDay_2' => '火曜日',
	'General_LongDay_3' => '氎曜日',
	'General_LongDay_4' => '朚曜日',
	'General_LongDay_5' => '金曜日',
	'General_LongDay_6' => '土曜日',
	'General_LongDay_7' => '日曜日',
	'General_Daily' => '毎日',
	'General_Weekly' => '毎週',
	'General_Monthly' => '毎月',
	'General_ConfigFileIsNotWritable' => 'Piwik 蚭定ファむル %s が曞き蟌み可胜ではないため、いく぀かの倉曎が保存されない可胜性がありたす。%s蚭定ファむルのパヌミッションを曞き蟌み可胜に倉曎しおください。',
	'General_ExceptionDatabaseVersion' => '%1$s のバヌゞョンが %2$s ですが、Piwik には少なくずも %3$s が必芁ずなりたす。',
	'General_ExceptionIncompatibleClientServerVersions' => '%1$s クラむアントのバヌゞョンが %2$s であり、サヌバヌバヌゞョン %3$s ず互換性がありたせん。',
	'General_ExceptionMissingFile' => '䞍足ファむル %s',
	'General_ExceptionFilesizeMismatch' => 'ファむルサむズの䞍敎合 %1$s 想定サむズ %2$s、実サむズ %3$s',
	'General_ExceptionFileIntegrity' => '敎合性チェックの倱敗 %s',
	'General_ExceptionNonceMismatch' => 'このフォヌムのセキュリティトヌクンを怜蚌するこずができたせんでした。',
	'General_PleaseSpecifyValue' => '\'%s\' の倀を指定しおください。',
	'General_ExceptionMethodNotFound' => 'メ゜ッド \'%s\' は、存圚しないか、モゞュヌル \'%s\' で利甚可胜ではありたせん。',
	'General_ExceptionInvalidRendererFormat' => '出力曞匏 \'%s\' は有効ではありたせん。 次のいずれかを詊しおください %s',
	'General_ExceptionInvalidPeriod' => '期間 \'%s\' はサポヌトされおいたせん。 代わりに次のいずれかを詊しおください %s',
	'General_ExceptionInvalidDateRange' => '日付 \'%s\' は正しい日付の範囲ではありたせん。 日付は次の曞匏である必芁がありたす %s',
	'General_ExceptionGoalNotFound' => 'goal id = %s が芋぀かりたせんでした。',
	'General_ExceptionUndeletableFile' => '%s が削陀できたせんでした',
	'General_ExceptionPrivilege' => 'このリ゜ヌスには %s アクセス暩が必芁なため、アクセスするこずはできたせん。',
	'General_ExceptionPrivilegeAtLeastOneWebsite' => 'このリ゜ヌスには少なくずも1぀のりェブサむト甚の %s アクセス暩が必芁なため、アクセスするこずはできたせん。',
	'General_ExceptionPrivilegeAccessWebsite' => 'このリ゜ヌスには website id = %d 甚の %s アクセス暩が必芁なため、アクセスするこずはできたせん。',
	'General_ExceptionInvalidArchiveTimeToLive' => '今日のアヌカむブの有効期限は 0 より倧きい秒数である必芁がありたす',
	'General_ExceptionConfigurationFileNotFound' => '蚭定ファむル {%s} が芋぀かりたせんでした',
	'General_ExceptionUnreadableFileDisabledMethod' => '蚭定ファむル {%s} を読み蟌むこずができたせんでした。 サヌバヌで %s が無効化されおいる可胜性がありたす。',
	'General_ExceptionInvalidToken' => 'トヌクンが有効ではありたせん。',
	'General_ExceptionInvalidDateFormat' => '有効な日付の曞匏 %s たたは %s 関数でサポヌトされる任意のキヌワヌド詳现は %s を参照',
	'General_ExceptionLanguageFileNotFound' => '蚀語ファむル \'%s\' が芋぀かりたせんでした',
	'General_WarningFileIntegritySkipped' => '開発環境が怜出されたため、ファむルの敎合性チェックは省略されたした。',
	'General_WarningFileIntegrityNoManifest' => 'manifest.inc.php が䞍足しおいるため、ファむルの敎合性チェックを実行するこずができたせんでした。',
	'General_WarningFileIntegrityNoMd5file' => 'md5_file() 関数が存圚しないため、ファむルの敎合性チェックを完了するこずができたせんでした。',
	'General_FileIntegrityWarningExplanation' => 'ファむルの敎合性チェックが倱敗し、いく぀かの゚ラヌが報告されたした。 これはほずんどの堎合、ファむルが䞍完党であるか、いく぀かの Piwik ファむルのアップロヌドに倱敗しおいたす。 すべおの Piwik ファむルをバむナリモヌドで再アップロヌドしお、゚ラヌが衚瀺されなくなるたでペヌゞをリフレッシュする必芁がありたす。',
	'General_UseSMTPServerForEmail' => 'メヌル送信に SMTP サヌバを䜿甚',
	'General_SmtpServerAddress' => 'SMTP のサヌバアドレス',
	'General_SmtpPort' => 'SMTP のポヌト番号',
	'General_AuthenticationMethodSmtp' => 'SMTP の認蚌方法',
	'General_SmtpUsername' => 'SMTP のナヌザヌ名',
	'General_SmtpPassword' => 'SMTP のパスワヌド',
	'General_SmtpEncryption' => 'SMTP の暗号化',
	'General_SelectYesIfYouWantToSendEmailsViaServer' => 'ロヌカルの mail() 関数の代わりにメヌルサヌバヌ経由でメヌルを送信したい堎合は、"はい" を遞択したす',
	'General_OptionalSmtpPort' => 'オプションです。 非暗号化ず TLS SMTP では 25 が、SSL SMTP では 465 がデフォルトになりたす。',
	'General_OnlyUsedIfUserPwdIsSet' => 'ナヌザヌ名パスワヌドが蚭定されおいる堎合にのみ䜿甚されたす。 どの方法を䜿甚すべきかがよくわからない堎合は、プロバむダにお問い合わせください。',
	'General_OnlyEnterIfRequired' => 'SMTP サヌバがナヌザヌ名を必芁ずする堎合にのみ入力したす。',
	'General_OnlyEnterIfRequiredPassword' => 'SMTP サヌバがパスワヌドを必芁ずする堎合にのみ入力したす。',
	'General_WarningPasswordStored' => '%s譊告%s このパスワヌドは蚭定ファむルに保存されたす。 この蚭定ファむルにアクセス可胜な人であれば、パスワヌドを芋られる可胜性があるこずに泚意しおください。',
	'General_EncryptedSmtpTransport' => 'SMTP サヌバヌで必芁ずなる、トランスポヌトレむダヌの暗号を入力したす。',
	'General_InvalidResponse' => '受信したデヌタが無効です。',
	'General_ChooseLanguage' => '蚀語を遞択',
	'General_ChoosePeriod' => '期間を遞択',
	'General_ChooseWebsite' => 'りェブサむトを遞択',
	'General_Language' => '蚀語',
	'General_PleaseUpdatePiwik' => 'Piwik を曎新しおください',
	'General_RequestTimedOut' => '%s ぞのデヌタリク゚ストがタむムアりトしたした。 再詊行しおください。',
	'Actions_PluginDescription' => 'ペヌゞビュヌ、倖郚リンク、ダりンロヌドに぀いおリポヌトしたす。 倖郚リンクずダりンロヌドのトラッキングは自動です',
	'Actions_Actions' => 'アクション',
	'Actions_SubmenuPages' => 'ペヌゞ',
	'Actions_SubmenuPagesEntry' => '入口ペヌゞ',
	'Actions_SubmenuPagesExit' => '出口ペヌゞ',
	'Actions_SubmenuPageTitles' => 'ペヌゞタむトル',
	'Actions_SubmenuOutlinks' => '倖郚リンク',
	'Actions_SubmenuDownloads' => 'ダりンロヌド',
	'Actions_ColumnClicks' => 'クリック数',
	'Actions_ColumnUniqueClicks' => 'ナニヌククリック数',
	'Actions_ColumnDownloads' => 'ダりンロヌド数',
	'Actions_ColumnUniqueDownloads' => 'ナニヌクダりンロヌド数',
	'Actions_ColumnPageName' => 'ペヌゞ名',
	'Actions_ColumnPageURL' => 'ペヌゞ URL',
	'Actions_ColumnClickedURL' => 'クリックされた URL',
	'Actions_ColumnDownloadURL' => 'ダりンロヌド URL',
	'AnonymizeIP_PluginDescription' => 'ロヌカルプラむバシヌ芏則やガむドラむンに応じお、ビゞタヌの IP アドレスの最終バむトを匿名化したす。',
	'API_PluginDescription' => 'Piwik のすべおのデヌタはシンプルな API 経由で利甚可胜です。 このプラグむンは、xml、json、php、csv 等にりェブ解析デヌタを埗るためにコヌルするこずができる、りェブサヌビスの゚ントリヌポむントです。',
	'API_QuickDocumentationTitle' => 'API クむックドキュメント',
	'API_GenerateVisits' => '今日のデヌタがない堎合は、%s プラグむンを䜿甚しお、はじめに若干のデヌタを生成するこずができたす。 これを行うには、%s プラグむンを有効にし、管理゚リアで \'ビゞタヌゞェネレヌタ\' メニュヌをクリックしたす。',
	'API_MoreInformation' => 'Piwik API の詳现に぀いおは、%sIntroduction to Piwik API%s や %sPiwik API Reference%s を参照しおください。',
	'API_UserAuthentication' => 'ナヌザヌ認蚌',
	'API_UsingTokenAuth' => '%sスクリプトcrontab 等でリク゚ストデヌタを埗たい堎合%sは、API をコヌルする URL認蚌が必芁にパラメヌタ %s を付加する必芁がありたす。',
	'API_KeepTokenSecret' => 'token_auth は、ログむン名ずパスワヌドのように秘密にし、%s絶察に共有しないでください%s',
	'API_LoadedAPIs' => '%s API が正垞に読み蟌たれたした',
	'CoreAdminHome_PluginDescription' => 'Piwik の管理゚リアです。',
	'CoreAdminHome_MenuGeneralSettings' => '党般の蚭定',
	'CoreAdminHome_Administration' => '管理',
	'CoreAdminHome_EmailServerSettings' => 'メヌルサヌバの蚭定',
	'CoreAdminHome_OptOutForYourVisitors' => 'ビゞタヌの Piwik オプトアりト',
	'CoreAdminHome_OptOutExplanation' => 'Piwik はむンタヌネット䞊のプラむバシヌの提䟛に専念しおいたす。 ビゞタヌに Piwik りェブ解析のオプトアりトの遞択を提䟛するために、りェブサむトの1ペヌゞプラむバシヌポリシヌのペヌゞ等に次の HTML コヌドを远加するこずができたす。',
	'CoreAdminHome_OptOutExplanationBis' => 'HTML コヌドは、ビゞタヌのブラりザにオプトアりト Cookie を蚭定する、Piwik オプトアりトリンクを含む iFrame を衚瀺したす。 iFrame で衚瀺される内容を衚瀺するには、%sここをクリック%sしたす。',
	'CoreAdminHome_OptOutComplete' => 'オプトアりトが完了したした。 このりェブサむトぞのあなたの蚪問は、りェブ解析ツヌルで蚘録されたせん。',
	'CoreAdminHome_OptOutCompleteBis' => 'Cookie をクリアしおオプトアりト Cookie を削陀したり、コンピュヌタやブラりザを倉曎した堎合は、オプトアりト手続きを再床実行する必芁があるこずに泚意しおください。',
	'CoreAdminHome_YouMayOptOut' => 'このりェブサむトに集められるデヌタの収集ず解析を回避するために、あなたのコンピュヌタにりェブ解析 Cookie 識別番号を割り圓おない遞択をするこずができたす。',
	'CoreAdminHome_YouMayOptOutBis' => 'これを遞択するには、オプトアりト Cookie を受信するために、次のチェックボックスにチェックを入れおください。',
	'CoreAdminHome_YouAreOptedIn' => '珟圚はオプトむンです',
	'CoreAdminHome_YouAreOptedOut' => '珟圚はオプトアりトです',
	'CoreHome_PluginDescription' => 'りェブ解析リポヌトのストラクチャヌです。',
	'CoreHome_WebAnalyticsReports' => 'りェブ解析リポヌト',
	'CoreHome_NoPrivileges' => 'あなたは \'%s\' ずしおログむンしおいたすが、Piwik でのいかなるパヌミッションも持っおいないようです。 <br />あなたにりェブサむトぞの \'衚瀺\' アクセス暩を䞎えるよう、Piwik 管理者に䟝頌しおください。',
	'CoreHome_JavascriptDisabled' => 'Piwik を暙準ビュヌで䜿甚するには JavaScript が有効である必芁がありたすが、<br />あなたのブラりザでは無効になっおいるか、サポヌトされないようです。<br />暙準ビュヌで䜿甚するために、ブラりザのオプションを倉曎しお JavaScript を有効にしおから<br />%1$s再詊行しおください%2$s。<br />',
	'CoreHome_ThereIsNoDataForThisReport' => 'このリポヌトのデヌタがありたせん。',
	'CoreHome_CategoryNoData' => 'このカテゎリにデヌタはありたせん。 "すべおの母集団統蚈の察象ずする集団を含める" を詊しおみおください。',
	'CoreHome_ShowJSCode' => '挿入する javascript コヌドを衚瀺',
	'CoreHome_IncludeAllPopulation_js' => 'すべおの母集団統蚈の察象ずする集団を含める',
	'CoreHome_ExcludeLowPopulation_js' => '䜎い母集団統蚈の察象ずする集団を陀倖する',
	'CoreHome_PageOf_js' => '%1$s / %2$s',
	'CoreHome_DayFormat' => '%longYear% %longMonth% %day% %longDay%',
	'CoreHome_PeriodDay' => '日',
	'CoreHome_PeriodWeek' => '週',
	'CoreHome_PeriodMonth' => '月',
	'CoreHome_PeriodYear' => '幎',
	'CoreHome_PeriodDays' => '日',
	'CoreHome_PeriodWeeks' => '週',
	'CoreHome_PeriodMonths' => '月',
	'CoreHome_PeriodYears' => '幎',
	'CoreHome_DaySu_js' => '日',
	'CoreHome_DayMo_js' => '月',
	'CoreHome_DayTu_js' => '火',
	'CoreHome_DayWe_js' => 'æ°Ž',
	'CoreHome_DayTh_js' => '朚',
	'CoreHome_DayFr_js' => '金',
	'CoreHome_DaySa_js' => '土',
	'CoreHome_ShortDay_1_js' => '日',
	'CoreHome_ShortDay_2_js' => '月',
	'CoreHome_ShortDay_3_js' => '火',
	'CoreHome_ShortDay_4_js' => 'æ°Ž',
	'CoreHome_ShortDay_5_js' => '朚',
	'CoreHome_ShortDay_6_js' => '金',
	'CoreHome_ShortDay_7_js' => '土',
	'CoreHome_LongDay_1_js' => '日曜日',
	'CoreHome_LongDay_2_js' => '月曜日',
	'CoreHome_LongDay_3_js' => '火曜日',
	'CoreHome_LongDay_4_js' => '氎曜日',
	'CoreHome_LongDay_5_js' => '朚曜日',
	'CoreHome_LongDay_6_js' => '金曜日',
	'CoreHome_LongDay_7_js' => '土曜日',
	'CoreHome_ShortMonth_1_js' => '1月',
	'CoreHome_ShortMonth_2_js' => '2月',
	'CoreHome_ShortMonth_3_js' => '3月',
	'CoreHome_ShortMonth_4_js' => '4月',
	'CoreHome_ShortMonth_5_js' => '5月',
	'CoreHome_ShortMonth_6_js' => '6月',
	'CoreHome_ShortMonth_7_js' => '7月',
	'CoreHome_ShortMonth_8_js' => '8月',
	'CoreHome_ShortMonth_9_js' => '9月',
	'CoreHome_ShortMonth_10_js' => '10月',
	'CoreHome_ShortMonth_11_js' => '11月',
	'CoreHome_ShortMonth_12_js' => '12月',
	'CoreHome_MonthJanuary_js' => '1月',
	'CoreHome_MonthFebruary_js' => '2月',
	'CoreHome_MonthMarch_js' => '3月',
	'CoreHome_MonthApril_js' => '4月',
	'CoreHome_MonthMay_js' => '5月',
	'CoreHome_MonthJune_js' => '6月',
	'CoreHome_MonthJuly_js' => '7月',
	'CoreHome_MonthAugust_js' => '8月',
	'CoreHome_MonthSeptember_js' => '9月',
	'CoreHome_MonthOctober_js' => '10月',
	'CoreHome_MonthNovember_js' => '11月',
	'CoreHome_MonthDecember_js' => '12月',
	'CorePluginsAdmin_PluginDescription' => 'プラグむン管理のむンタヌフェヌスです。',
	'CorePluginsAdmin_Plugins' => 'プラグむン',
	'CorePluginsAdmin_PluginsManagement' => 'プラグむンの管理',
	'CorePluginsAdmin_MainDescription' => 'プラグむンは Piwik の機胜性を拡匵したす。 プラグむンをむンストヌルするず、ここで有効化ず無効化を行うこずができたす。',
	'CorePluginsAdmin_Plugin' => 'プラグむン',
	'CorePluginsAdmin_Version' => 'バヌゞョン',
	'CorePluginsAdmin_Status' => '状態',
	'CorePluginsAdmin_Action' => '操䜜',
	'CorePluginsAdmin_AuthorHomepage' => '䜜者のホヌムペヌゞ',
	'CorePluginsAdmin_LicenseHomepage' => 'ラむセンスのホヌムペヌゞ',
	'CorePluginsAdmin_PluginHomepage' => 'プラグむンのホヌムペヌゞ',
	'CorePluginsAdmin_Activated' => '有効',
	'CorePluginsAdmin_Active' => '有効',
	'CorePluginsAdmin_Inactive' => '無効',
	'CorePluginsAdmin_Deactivate' => '無効化',
	'CorePluginsAdmin_Activate' => '有効化',
	'CorePluginsAdmin_MenuPlugins' => 'プラグむン',
	'CoreUpdater_PluginDescription' => 'Piwik アップデヌトメカニズム',
	'CoreUpdater_UpdateTitle' => 'アップデヌト',
	'CoreUpdater_DatabaseUpgradeRequired' => 'デヌタベヌスのアップグレヌドが必芁',
	'CoreUpdater_YourDatabaseIsOutOfDate' => 'Piwik デヌタベヌスが旧匏のため、継続する前にアップグレヌドが必芁です。',
	'CoreUpdater_PiwikWillBeUpgradedFromVersionXToVersionY' => 'Piwik デヌタベヌスが %1$s から新バヌゞョン %2$s にアップグレヌドされたす。',
	'CoreUpdater_TheFollowingPluginsWillBeUpgradedX' => '次のプラグむンはアップグレヌドされたす %s',
	'CoreUpdater_NoteForLargePiwikInstances' => 'Piwik のデヌタベヌスが倧きい堎合の重芁泚意',
	'CoreUpdater_TheUpgradeProcessMayFailExecuteCommand' => 'Piwik のデヌタベヌスが倧きい堎合、ブラりザでのアップデヌトの実行には長い時間がかかる堎合がありたす。 このような堎合、コマンドラむンからアップデヌトを実行するこずができたす %s',
	'CoreUpdater_YouCouldManuallyExecuteSqlQueries' => 'デヌタベヌスのタむムアりト、ブラりザのタむムアりト、あるいはその他の問題により Piwik がアップグレヌドに倱敗し、さらにコマンドラむンアップデヌタを䜿甚するこずができない堎合は、Piwik をアップデヌトするために手䜜業で SQL ク゚リヌを実行するこずができたす。',
	'CoreUpdater_ClickHereToViewSqlQueries' => '実行する SQL ク゚リヌのリストを衚瀺し、コピヌするには、ここをクリックしおください',
	'CoreUpdater_NoteItIsExpectedThatQueriesFail' => '泚意 これらのク゚リヌを手䜜業で実行する堎合、ク゚リヌのいく぀かは倱敗するこずが予想されたす。 その堎合は単に゚ラヌを無芖し、リスト内の次のク゚リヌを実行しおください。',
	'CoreUpdater_ReadyToGo' => '実行しおもよろしいですか',
	'CoreUpdater_TheUpgradeProcessMayTakeAWhilePleaseBePatient' => 'アップグレヌド凊理には時間がかかる堎合がありたすが、しばらくお埅ちください。',
	'CoreUpdater_UpgradePiwik' => 'Piwik のアップグレヌド',
	'CoreUpdater_ErrorDIYHelp' => 'あなたが䞊玚ナヌザヌであり、デヌタベヌスアップグレヌドで゚ラヌに遭遇した堎合',
	'CoreUpdater_ErrorDIYHelp_1' => '問題の原因を特定し、修正しおくださいmemory_limit、max_execution_time など',
	'CoreUpdater_ErrorDIYHelp_2' => '倱敗したアップデヌトに残っおいるク゚リヌを実行しおください',
	'CoreUpdater_ErrorDIYHelp_3' => 'Piwik デヌタベヌスの \'option\' テヌブルにある version_core の倀を、倱敗したアップデヌトのバヌゞョンに蚭定しお、手䜜業でテヌブルをアップデヌトしおください',
	'CoreUpdater_ErrorDIYHelp_4' => '残りのアップデヌトを継続するために、アップデヌタを再実行しおくださいブラりザたたはコマンドラむンから',
	'CoreUpdater_ErrorDIYHelp_5' => 'Piwik を改善するこずができるように、問題および解決策を報告しおください',
	'CoreUpdater_HelpMessageContent' => 'アップグレヌドの間、最も䞀般的な゚ラヌを説明しおいる %1$s Piwik FAQ %2$sをチェックしおください。%3$s システム管理者にお尋ねください  圌らはたいおいの堎合、サヌバや MySQL のセットアップに関係する゚ラヌに぀いお、あなたの手助けができるでしょう。',
	'CoreUpdater_CriticalErrorDuringTheUpgradeProcess' => 'アップグレヌド凊理䞭の臎呜的な゚ラヌ',
	'CoreUpdater_HelpMessageIntroductionWhenError' => '䞊蚘はコアの゚ラヌメッセヌゞです。  原因の説明に圹立぀はずですが、さらなるヘルプが必芁であればこちらをどうぞ',
	'CoreUpdater_HelpMessageIntroductionWhenWarning' => 'アップグレヌドは正垞に完了したしたが、凊理䞭に問題がありたした。 詳现は䞊蚘の説明をお読みください。 さらなるヘルプ',
	'CoreUpdater_UpgradeComplete' => 'アップグレヌドが完了したした',
	'CoreUpdater_WarningMessages' => '譊告メッセヌゞ',
	'CoreUpdater_ErrorDuringPluginsUpdates' => 'プラグむン曎新䞭の゚ラヌ',
	'CoreUpdater_WeAutomaticallyDeactivatedTheFollowingPlugins' => '次のプラグむンを自動的に無効化したした %s',
	'CoreUpdater_PiwikHasBeenSuccessfullyUpgraded' => 'Piwik は正垞にアップグレヌドされたした',
	'CoreUpdater_ContinueToPiwik' => 'Piwik を続ける',
	'CoreUpdater_UpdateAutomatically' => '自動アップデヌト',
	'CoreUpdater_ThereIsNewVersionAvailableForUpdate' => 'アップデヌト可胜な Piwik の新バヌゞョンがありたす。',
	'CoreUpdater_YouCanUpgradeAutomaticallyOrDownloadPackage' => '自動的にバヌゞョン %s にアップデヌトするか、パッケヌゞをダりンロヌドしお手䜜業でむンストヌルするこずができたす',
	'CoreUpdater_YouMustDownloadPackageOrFixPermissions' => 'Piwik が珟圚のむンストヌルに䞊曞きするこずができたせん。 ディレクトリファむルのパヌミッションを修正するか、パッケヌゞをダりンロヌドしお手䜜業でバヌゞョン %s をむンストヌルするこずができたす',
	'CoreUpdater_DownloadX' => 'ダりンロヌド %s',
	'CoreUpdater_UpdateHasBeenCancelledExplanation' => 'Piwik ワンクリックアップデヌトがキャンセルされたした。 あなたが䞊蚘の゚ラヌメッセヌゞを修正できない堎合は、Piwik を手䜜業でアップデヌトするこずをお勧めしたす。%1$s アップデヌトを始めるには、%2$sアップデヌトのドキュメント%3$sを参照しおください',
	'CoreUpdater_DownloadingUpdateFromX' => '%s からアップデヌトをダりンロヌド䞭',
	'CoreUpdater_UnpackingTheUpdate' => 'アップデヌトを展開䞭',
	'CoreUpdater_VerifyingUnpackedFiles' => '展開したファむルを怜蚌䞭',
	'CoreUpdater_CreatingBackupOfConfigurationFile' => '%s の蚭定ファむルのバックアップを䜜成䞭',
	'CoreUpdater_InstallingTheLatestVersion' => '最新バヌゞョンをむンストヌル䞭',
	'CoreUpdater_PiwikUpdatedSuccessfully' => 'Piwik は正垞にアップデヌトされたした',
	'CoreUpdater_EmptyDatabaseError' => 'デヌタベヌス %s は空です。 Piwik 蚭定ファむルを線集たたは削陀する必芁がありたす。',
	'CoreUpdater_ExceptionAlreadyLatestVersion' => 'Piwik バヌゞョン %s は最新です。',
	'CoreUpdater_ExceptionArchiveIncompatible' => '互換性のないアヌカむブ %s',
	'CoreUpdater_ExceptionArchiveEmpty' => '空のアヌカむブです。',
	'CoreUpdater_ExceptionArchiveIncomplete' => 'アヌカむブが䞍完党ですいく぀かのファむルが䞍足しおいたす%s など。',
	'Dashboard_PluginDescription' => 'りェブ解析のダッシュボヌドです。 新しいりィゞェットを远加したり、りィゞェットの䞊び順を倉曎するこずで、あなたのダッシュボヌドをカスタマむズするこずができたす。 各ナヌザヌは、ナヌザヌ自身のカスタムダッシュボヌドにアクセスするこずができたす。',
	'Dashboard_Dashboard' => 'ダッシュボヌド',
	'Dashboard_AddWidget' => 'りィゞェットを远加...',
	'Dashboard_DeleteWidgetConfirm' => '本圓にこのりィゞェットをダッシュボヌドから削陀したすか',
	'Dashboard_SelectWidget' => 'ダッシュボヌドに远加するりィゞェットの遞択',
	'Dashboard_AddPreviewedWidget_js' => 'プレビュヌされたりィゞェットをダッシュボヌドに远加したす',
	'Dashboard_WidgetPreview_js' => 'りィゞェットのプレビュヌ',
	'Dashboard_Close_js' => '閉じる',
	'Dashboard_Maximise_js' => '最倧化',
	'Dashboard_TitleWidgetInDashboard_js' => 'すでにダッシュボヌドにあるりィゞェットです',
	'Dashboard_TitleClickToAdd_js' => 'クリックするずダッシュボヌドに远加されたす',
	'Dashboard_LoadingWidget_js' => 'りィゞェットを読み蟌んでいたす...',
	'Dashboard_WidgetNotFound_js' => 'りィゞェットが芋぀かりたせんでした',
	'DBStats_PluginDescription' => 'Piwik テヌブルによる MySQL デヌタベヌスの䜿甚量をリポヌトしたす。',
	'DBStats_DatabaseUsage' => 'デヌタベヌスの䜿甚量',
	'DBStats_MainDescription' => 'Piwik はすべおのりェブ解析デヌタを Mysql デヌタベヌスに保存したす。  珟圚のずころ、Piwik テヌブルは %s を䜿甚しおいたす。',
	'DBStats_LearnMore' => 'Piwik のデヌタ凊理方法やトラフィックの比范的高いりェブサむトで Piwik をうたく機胜させる方法に぀いおの詳现は、ドキュメント %s を参照しおください。',
	'DBStats_Table' => 'テヌブル',
	'DBStats_RowCount' => '行数',
	'DBStats_DataSize' => 'デヌタサむズ',
	'DBStats_IndexSize' => 'むンデックスサむズ',
	'DBStats_TotalSize' => '総サむズ',
	'ExampleAPI_PluginDescription' => '䟋題プラグむン 特別なコヌディングなしで耇数のフォヌマットにデヌタを゚クスポヌトする、カスタムプラグむンのための API の䜜成方法です。',
	'ExampleFeedburner_PluginDescription' => '䟋題プラグむン Feedburner の賌読者をダッシュボヌドのりィゞェットで衚瀺する方法です。',
	'ExampleRssWidget_PluginDescription' => '䟋題プラグむン RSS フィヌドを読むりィゞェットの䜜成方法です。',
	'ExampleUI_PluginDescription' => '䟋題プラグむン このプラグむンは、Piwik UI ずの連携方法を瀺したすテヌブル、グラフ等の䜜成。',
	'Feedback_PluginDescription' => 'Piwik チヌムにフィヌドバックを送信したす。 あなたのアむディアや提案を私たちず共有しおください',
	'Feedback_DoYouHaveBugReportOrFeatureRequest' => '報告するべきバグや機胜芁望がありたすか',
	'Feedback_ViewAnswersToFAQ' => '%sFAQ%sの回答を芋る',
	'Feedback_WhyAreMyVisitsNoTracked' => '私のりェブサむトぞの蚪問がトラッキングされないのはなぜ',
	'Feedback_HowToExclude' => '自分自身の蚪問のトラッキングを陀倖するには',
	'Feedback_WhyWrongCountry' => '私の蚪問が実際の囜ず異なっお瀺されるのはなぜ',
	'Feedback_HowToAnonymizeIP' => 'デヌタベヌスのビゞタヌの IP アドレスをマスクする方法は',
	'Feedback_VisitTheForums' => '%sフォヌラム%sにアクセスする',
	'Feedback_LearnWaysToParticipate' => 'あなたが参加できるすべおの方法を%s孊んでください%s',
	'Feedback_SpecialRequest' => 'Piwik チヌムに察しお特別なリク゚ストがありたすか',
	'Feedback_ContactThePiwikTeam' => 'Piwik チヌムず連絡を取る',
	'Feedback_IWantTo' => 'あなたの垌望',
	'Feedback_CategoryShareStory' => 'Piwik サクセスストヌリヌを共有したい',
	'Feedback_CategorySponsor' => 'Piwik のスポンサヌになりたい',
	'Feedback_CategoryHire' => 'Piwik コンサルタントを雇いたい',
	'Feedback_CategorySecurity' => 'セキュリティ問題を報告したい',
	'Feedback_MyEmailAddress' => 'メヌルアドレス',
	'Feedback_MyMessage' => 'メッセヌゞ',
	'Feedback_DetailsPlease' => '詳现を含めおください',
	'Feedback_SendFeedback' => 'フィヌドバックを送信',
	'Feedback_ManuallySendEmailTo' => 'あなたのメッセヌゞを手䜜業で次のアドレスぞ送っおください',
	'Feedback_MessageSent' => 'あなたのメッセヌゞは Piwik チヌムに送信されたした。',
	'Feedback_ThankYou' => '私たちが Piwik をより良くするのを支揎しおいただきありがずうございたす',
	'Feedback_ThePiwikTeam' => 'Piwik チヌム',
	'Feedback_ExceptionBodyLength' => 'メッセヌゞは少なくずも %s 文字以䞊が必芁です。',
	'Feedback_ExceptionNoUrls' => 'スパムメッセヌゞを防止するため、メッセヌゞに URL を含めるこずはできたせん。',
	'Goals_Goals' => '目暙',
	'Goals_Overview' => '抂芳',
	'Goals_GoalsOverview' => '目暙の抂芳',
	'Goals_GoalsManagement' => '目暙の管理',
	'Goals_PluginDescription' => '目暙を䜜成し、目暙コンバヌゞョンに関するリポヌト䞀定期間の掚移、ビゞット単䜍の収益、参照元やキヌワヌド単䜍のコンバヌゞョン等を衚瀺したす。',
	'Goals_ColumnConversions' => 'コンバヌゞョン',
	'Goals_ColumnRevenue' => '収益',
	'Goals_GoalX' => '目暙 %s',
	'Goals_GoalConversion' => '目暙コンバヌゞョン',
	'Goals_OverallRevenue' => '%s 総収益',
	'Goals_OverallConversionRate' => '%s 総コンバヌゞョン率目暙達成ビゞット',
	'Goals_Conversions' => '%s コンバヌゞョン',
	'Goals_ConversionRate' => '%s コンバヌゞョン率',
	'Goals_NoGoalsNeedAccess' => '管理者たたはスヌパヌナヌザヌのみが、特定のりェブサむト甚の目暙を远加するこずができたす。 あなたのりェブサむト甚の目暙をセットアップするように、Piwik 管理者に䟝頌しおください。<br />トラッキング目暙は、あなたのりェブサむトのパフォヌマンスを理解し、最倧限にするのを支揎する、玠晎らしい方法です',
	'Goals_AddNewGoal' => '新しい目暙を远加',
	'Goals_AddNewGoalOrEditExistingGoal' => '%s新しい目暙の远加%sたたは%s既存の目暙の線集%s',
	'Goals_AddGoal_js' => '目暙を远加',
	'Goals_UpdateGoal_js' => '目暙を曎新',
	'Goals_DeleteGoalConfirm_js' => '本圓に目暙 %s を削陀したすか',
	'Goals_CreateNewGOal' => '新しい目暙の䜜成',
	'Goals_ViewAndEditGoals' => '目暙の衚瀺ず線集',
	'Goals_GoalName' => '目暙名',
	'Goals_GoalIsTriggered' => '目暙のトリガヌ',
	'Goals_GoalIsTriggeredWhen' => '目暙のトリガヌ',
	'Goals_WhenVisitors' => 'ビゞタヌ',
	'Goals_WhereThe' => '察象',
	'Goals_Manually' => '手動',
	'Goals_ManuallyTriggeredUsingJavascriptFunction' => 'JavaScript API の trackGoal() を䜿甚した手動トリガヌ',
	'Goals_VisitUrl' => '特定の URL を蚪問ペヌゞたたはペヌゞグルヌプ',
	'Goals_URL' => 'URL',
	'Goals_Filename' => 'ファむル名',
	'Goals_ExternalWebsiteUrl' => '倖郚りェブサむトの URL',
	'Goals_Download' => 'ファむルのダりンロヌド',
	'Goals_ClickOutlink' => '倖郚りェブサむトぞのリンクをクリック',
	'Goals_Optional' => 'オプション',
	'Goals_WhereVisitedPageManuallyCallsJavascriptTrackerLearnMore' => '蚪問したペヌゞに JavaScript の piwikTracker.trackGoal() メ゜ッドのコヌルが含たれるずころ%s詳现%s',
	'Goals_DefaultRevenue' => '目暙のデフォルト収益',
	'Goals_DefaultRevenueHelp' => '䟋えば、ビゞタヌによっお送信されたコンタクトフォヌムが、平均しお $10 の䟡倀を持぀かもしれたせん。 Piwik は、ビゞタヌセグメントがどれくらいうたく実行しおいるかを理解するのを助けたす。',
	'Goals_ConversionsOverview' => 'コンバヌゞョンの抂芳',
	'Goals_BestCountries' => 'ベストコンバヌゞョンの囜',
	'Goals_BestKeywords' => 'トップコンバヌゞョンのキヌワヌド',
	'Goals_BestReferers' => 'ベストコンバヌゞョンの参照元りェブサむト',
	'Goals_ReturningVisitorsConversionRateIs' => 'リピヌタヌのコンバヌゞョン率は %s です',
	'Goals_NewVisitorsConversionRateIs' => '新芏ビゞタヌのコンバヌゞョン率は %s です',
	'Goals_Contains' => '%s を含む',
	'Goals_IsExactly' => '%s ず完党に䞀臎する',
	'Goals_MatchesExpression' => '正芏衚珟 %s に䞀臎する',
	'Goals_CaseSensitive' => '倧文字小文字を区別する䞀臎',
	'Goals_Pattern' => 'パタヌン',
	'Goals_ExceptionInvalidMatchingString' => '\'完党に䞀臎する\' を遞択した堎合、䞀臎文字列は %s で始たる URL である必芁がありたす。 䟋えば、%s です。',
	'Goals_LearnMoreAboutGoalTrackingDocumentation' => 'ナヌザヌドキュメントで%sPiwik でのトラッキング目暙%sに぀いおの詳现を確認',
	'Installation_PluginDescription' => 'Piwik のむンストヌル凊理を行いたす。 むンストヌルは通垞1回のみですが、蚭定ファむルconfig/config.inc.phpが削陀された堎合は、むンストヌルが再床開始されたす。',
	'Installation_Installation' => 'むンストヌル',
	'Installation_InstallationStatus' => 'むンストヌル状況',
	'Installation_PercentDone' => '%s %% 完了',
	'Installation_NoConfigFound' => 'Piwik の蚭定ファむルを芋぀けるこずができたせんでしたが、あなたは Piwik ペヌゞにアクセスしようずしおいたす。<br /><b>&nbsp;&nbsp;&raquo;<a href=\'index.php\'>ただちに Piwik をむンストヌル</a>するこずができたす。</b><br /><small>以前に Piwik をむンストヌルしたこずがあり、DB に倚少のデヌタがある堎合でも心配しないでください。 既存のデヌタを保持したたた、同じテヌブルを再利甚するこずができたす</small>',
	'Installation_DatabaseSetup' => 'デヌタベヌスのセットアップ',
	'Installation_DatabaseSetupServer' => 'デヌタベヌスサヌバヌ',
	'Installation_DatabaseSetupLogin' => 'ログむン名',
	'Installation_DatabaseSetupPassword' => 'パスワヌド',
	'Installation_DatabaseSetupDatabaseName' => 'デヌタベヌス名',
	'Installation_DatabaseSetupTablePrefix' => 'テヌブルプレフィックス',
	'Installation_DatabaseSetupAdapter' => 'アダプタ',
	'Installation_DatabaseErrorConnect' => 'デヌタベヌスサヌバヌぞの接続䞭に゚ラヌが発生したした',
	'Installation_DatabaseCheck' => 'デヌタベヌスの確認',
	'Installation_DatabaseServerVersion' => 'デヌタベヌスサヌバヌのバヌゞョン',
	'Installation_DatabaseClientVersion' => 'デヌタベヌスクラむアントのバヌゞョン',
	'Installation_DatabaseCreation' => 'デヌタベヌスの䜜成',
	'Installation_PleaseFixTheFollowingErrors' => '次の゚ラヌを修正しおください',
	'Installation_LargePiwikInstances' => '高トラフィック環境で Piwik を䜿甚するためのヒント',
	'Installation_JsTag' => 'Javascript タグ',
	'Installation_JsTagArchivingHelp' => '比范的トラフィックの高いりェブサむトでは、Piwik を高速に実行させるために <a target="_blank" href="http://piwik.org/docs/setup-auto-archiving/">How to setup auto archiving page</a> を参照しおください。',
	'Installation_Congratulations' => 'おめでずうございたす',
	'Installation_CongratulationsHelp' => '<p>おめでずうございたす Piwik のむンストヌルは完了したした。</p><p>javascript コヌドをりェブサむトのペヌゞに埋め蟌み、最初のビゞタヌをお埅ちください</p>',
	'Installation_ContinueToPiwik' => 'Piwik を継続',
	'Installation_SetupWebsite' => 'りェブサむトのセットアップ',
	'Installation_SetupWebSiteName' => 'りェブサむトの名前',
	'Installation_SetupWebSiteURL' => 'りェブサむトの URL',
	'Installation_Timezone' => 'りェブサむトのタむムゟヌン',
	'Installation_SetupWebsiteError' => 'りェブサむトを远加する際に゚ラヌが発生したした',
	'Installation_SetupWebsiteSetupSuccess' => 'りェブサむト %s は正垞に䜜成されたした',
	'Installation_SuperUserLogin' => 'スヌパヌナヌザヌのログむン',
	'Installation_Password' => 'パスワヌド',
	'Installation_PasswordRepeat' => 'パスワヌド再入力',
	'Installation_Email' => 'メヌルアドレス',
	'Installation_SecurityNewsletter' => 'Piwik にメゞャヌアップグレヌドやセキュリティ譊告がある堎合に、自分宛にメヌルを送信',
	'Installation_CommunityNewsletter' => 'コミュニティアップデヌト新しいプラグむン、新機胜等がある堎合に、自分宛にメヌルを送信',
	'Installation_PasswordDoNotMatch' => 'パスワヌドが䞀臎したせんでした',
	'Installation_Requirements' => 'Piwik の動䜜環境',
	'Installation_Optional' => 'オプション',
	'Installation_Legend' => '説明',
	'Installation_Extension' => '゚クステンション',
	'Installation_SystemCheck' => 'システムの確認',
	'Installation_SystemCheckPhp' => 'PHP バヌゞョン',
	'Installation_SystemCheckExtensions' => 'その他の必須゚クステンション',
	'Installation_SystemCheckDatabaseHelp' => 'Piwik には、mysqli ゚クステンションか、PDO ず pdo_mysql ゚クステンションの䞡方の、どちらかが必芁です。',
	'Installation_SystemCheckPdoAndMysqliHelp' => 'Linux サヌバヌでは、次のオプションで PHP をコンパむルしたす%1$sphp.ini に次の行を远加したす%2$s',
	'Installation_SystemCheckPhpPdoAndMysqliSite' => '詳现ドキュメント<a style="color:red" href="http://php.net/pdo">PHP PDO</a>、<a style="color:red" href="http://php.net/mysqli">MYSQLI</a>',
	'Installation_SystemCheckWinPdoAndMysqliHelp' => 'Windows サヌバヌでは、php.ini に次の行を远加したす%s',
	'Installation_SystemCheckSplHelp' => 'Standard PHP Library (SPL) を有効にしお、PHP の再構築ず蚭定を行う必芁がありたす通垞はデフォルト。',
	'Installation_SystemCheckZlibHelp' => '"zlib" のサポヌトを有効にしお、PHP の再構築ず蚭定を行う必芁がありたす--with-zlib。',
	'Installation_SystemCheckIconvHelp' => '"iconv" のサポヌトを有効にしお、PHP の再構築ず蚭定を行う必芁がありたす--with-iconv。',
	'Installation_SystemCheckOtherExtensions' => 'その他の゚クステンション',
	'Installation_SystemCheckWarnLibXmlHelp' => '他のコア PHP ゚クステンションで必芁ずなるため、"libxml" ゚クステンションを有効にする必芁がありたす䟋えば "php-libxml" パッケヌゞをむンストヌルする。',
	'Installation_SystemCheckWarnJsonHelp' => 'より良いパフォヌマンスのために、"json" ゚クステンションを有効にする必芁がありたす䟋えば "php-json" パッケヌゞをむンストヌルする。',
	'Installation_SystemCheckWarnDomHelp' => '"dom" ゚クステンションを有効にする必芁がありたす䟋えば "php-dom" ず "php-xml" パッケヌゞのどちらか、あるいは䞡方をむンストヌルする。',
	'Installation_SystemCheckWarnSimpleXMLHelp' => '"SimpleXML" ゚クステンションを有効にする必芁がありたす䟋えば "php-simplexml" ず "php-xml" パッケヌゞのどちらか、あるいは䞡方をむンストヌルする。',
	'Installation_SystemCheckWriteDirs' => '曞き蟌み暩限のあるディレクトリ',
	'Installation_SystemCheckWriteDirsHelp' => 'この Linux システムでこの問題を修正するには、次のコマンドを打ち蟌んでみおください',
	'Installation_SystemCheckMemoryLimit' => 'メモリヌ制限',
	'Installation_SystemCheckMemoryLimitHelp' => 'アクセス数の倚いりェブサむトでは、アヌカむブ凊理の実行に、珟圚蚱可されおいる以䞊に倚くのメモリを必芁ずする堎合がありたす。<br />必芁であれば、php.ini ファむルのディレクティブ memory_limit を参照しおください。',
	'Installation_SystemCheckOpenURL' => 'オヌプン URL',
	'Installation_SystemCheckOpenURLHelp' => 'ニュヌスレタヌの定期賌読、アップデヌトの通知、ワンクリックアップデヌトには、"curl" ゚クステンション、allow_url_fopen=On、たたは fsockopen() が有効である必芁がありたす。',
	'Installation_SystemCheckGD' => 'GD > 2.x グラフィック',
	'Installation_SystemCheckGDHelp' => 'スパヌクラむン小さなグラフは動䜜したせん。',
	'Installation_SystemCheckFunctions' => '必須関数',
	'Installation_SystemCheckOtherFunctions' => 'その他の関数',
	'Installation_SystemCheckTimeLimitHelp' => 'アクセス数の倚いりェブサむトでは、アヌカむブ凊理の実行に、珟圚蚱可されおいる以䞊に倚くの時間を必芁ずする堎合がありたす。<br />必芁であれば、php.ini ファむルのディレクティブ max_execution_time を参照しおください。',
	'Installation_SystemCheckMailHelp' => 'mail() 関数がない堎合、フィヌドバックずパスワヌド玛倱のメッセヌゞを送信するこずができたせん。',
	'Installation_SystemCheckParseIniFileHelp' => 'この組み蟌み関数はホストで無効化されおいたす。 Piwik はこの関数の゚ミュレヌトを詊みたすが、さらなるセキュリティ制限に遭遇する堎合がありたす。 たた、トラッカヌのパフォヌマンスにも圱響を䞎えたす。',
	'Installation_SystemCheckGlobHelp' => 'この組み蟌み関数はホストで無効化されおいたす。 Piwik はこの関数の゚ミュレヌトを詊みたすが、さらなるセキュリティ制限に遭遇する堎合がありたす。 たた、機胜性にも圱響を䞎える堎合がありたす。',
	'Installation_SystemCheckDebugBacktraceHelp' => 'View::factory はコヌル偎モゞュヌルのビュヌを䜜成するこずができたせん。',
	'Installation_SystemCheckCreateFunctionHelp' => 'Piwik はコヌルバックに匿名関数を䜿甚したす。',
	'Installation_SystemCheckEvalHelp' => 'HTML QuickForm ず Smarty テンプレヌトシステムで必須です。',
	'Installation_SystemCheckGzcompressHelp' => 'zlib ゚クステンションず gzcompress() 関数を有効にする必芁がありたす。',
	'Installation_SystemCheckGzuncompressHelp' => 'zlib ゚クステンションず gzuncompress() 関数を有効にする必芁がありたす。',
	'Installation_SystemCheckMbstring' => 'mbstring',
	'Installation_SystemCheckMbstringExtensionHelp' => 'mbstring ゚クステンションは、コンマ区切りの倀(CSV)やタブ区切りの倀(TSV)を䜿甚する API レスポンスのマルチバむト文字甚に必芁ずなりたす。',
	'Installation_SystemCheckMbstringFuncOverloadHelp' => 'mbstring.func_overload を "0" に蚭定する必芁がありたす。',
	'Installation_SystemCheckFileIntegrity' => 'ファむルの敎合性',
	'Installation_SystemCheckAutoUpdateHelp' => '泚意 Piwik のワンクリックアップデヌトには、Piwik のフォルダずその内容に曞き蟌み暩限が必芁ずなりたす。',
	'Installation_SystemCheckError' => '゚ラヌ発生 - 次の凊理ぞ進む前に修正する必芁がありたす。',
	'Installation_SystemCheckWarning' => 'Piwik は正垞に動䜜したすが、いく぀かの機胜は動䜜しないかもしれたせん。',
	'Installation_SystemCheckIpv4' => 'IPv4',
	'Installation_SystemCheckIpv4Help' => 'りェブサヌバヌの蚭定で IPv6 を無効にする必芁がありたす。',
	'Installation_SystemCheckTracker' => 'トラッカヌ状況',
	'Installation_SystemCheckTrackerHelp' => 'piwik.php に察する GET リク゚ストが倱敗したした。 この URL を mod_security ず HTTP 認蚌からホワむトリスト化しおください。',
	'Installation_Tables' => 'テヌブルの䜜成',
	'Installation_TablesWithSameNamesFound' => '%1$s既存のデヌタベヌス内のいく぀かのテヌブル%2$sが、Piwik が䜜成しようずしおいるテヌブルず同じ名前を持っおいたす',
	'Installation_TablesFound' => '次のテヌブルがデヌタベヌス内で芋぀かりたした',
	'Installation_TablesWarningHelp' => '既存のデヌタベヌステヌブルを再利甚するか、デヌタベヌス内の党デヌタを消去しおクリヌンむンストヌルするかを遞択しおください。',
	'Installation_TablesReuse' => '既存テヌブルを再利甚',
	'Installation_TablesDelete' => '怜出されたテヌブルを削陀',
	'Installation_TablesDeletedSuccess' => '既存の Piwik テヌブルは正垞に削陀されたした',
	'Installation_TablesCreatedSuccess' => 'テヌブルは正垞に䜜成されたした',
	'Installation_DatabaseCreatedSuccess' => 'デヌタベヌス %s は正垞に䜜成されたした',
	'Installation_GoBackAndDefinePrefix' => '戻っお、Piwik テヌブルのプレフィックスを定矩する',
	'Installation_ConfirmDeleteExistingTables' => '本圓にデヌタベヌスからテヌブル %s を削陀したすか 譊告 これらのテヌブルのデヌタを埩旧するこずはできたせん',
	'Installation_Welcome' => 'ようこそ',
	'Installation_WelcomeHelp' => '<p>Piwik は、ビゞタヌからあなたが必芁ずする情報を収集するこずを容易にする、オヌプン゜ヌスのりェブ解析゜フトりェアです。</p><p>この凊理は %s の簡単なステップに分かれおいお、5分皋床で完了したす。</p>',
	'Installation_ConfigurationHelp' => 'Piwik 蚭定ファむルが誀蚭定されおいるようです。 config/config.ini.php を削陀しおむンストヌルを再開するか、デヌタベヌスの接続蚭定を修正しおください。',
	'Installation_ErrorInvalidState' => '゚ラヌ むンストヌル凊理のステップを省略しようずしたか、Cookie が無効か、Piwik 蚭定ファむルがすでに䜜成されおいたす。%1$sCookie が有効になっおいるこずを確認しおから%2$s、%3$sむンストヌルの最初のペヌゞ%4$sに戻っおください。',
	'LanguagesManager_PluginDescription' => 'Piwik むンタヌフェむスで利甚可胜な蚀語リストを衚瀺したす。 遞択された蚀語は、各ナヌザヌの優先蚭定に保存されたす。',
	'LanguagesManager_AboutPiwikTranslations' => 'Piwik の翻蚳に぀いお',
	'Live_PluginDescription' => 'ビゞタヌをリアルタむムにラむブでスパむしたす',
	'Live_LinkVisitorLog' => '詳现なビゞタヌログを衚瀺',
	'Live_Actions' => 'アクション',
	'Live_Action' => 'アクション',
	'Live_VisitorsInRealTime' => 'リアルタむムのビゞタヌ',
	'Live_VisitorLog' => 'ビゞタヌログ',
	'Live_Time' => '時間',
	'Live_Referrer_URL' => '参照元 URL',
	'Live_LastMinutes' => '最近の %s 分',
	'Live_LastHours' => '最近の %s 時間',
	'Live_GoalType' => 'タむプ',
	'Live_GoalTime' => '最初のコンバヌゞョン時間',
	'Live_GoalRevenue' => '収益',
	'Live_GoalDetails' => '詳现',
	'Login_PluginDescription' => 'ログむン認蚌プラグむンは信甚蚌明物を、スヌパヌナヌザヌ甚はconfig/config.inc.php から、その他のナヌザヌ甚はデヌタベヌスから読み蟌みたす。 別の認蚌メカニズムOpenID、htaccess、カスタム認蚌等を導入したい堎合は、簡単に眮き換えるこずができたす。',
	'Login_LoginPasswordNotCorrect' => 'ナヌザヌ名たたはパスワヌドが正しくありたせん',
	'Login_Password' => 'パスワヌド',
	'Login_PasswordRepeat' => 'パスワヌド再入力',
	'Login_ChangePassword' => 'パスワヌドの倉曎',
	'Login_LoginOrEmail' => 'ナヌザヌ名たたはメヌルアドレス',
	'Login_RememberMe' => '次回の入力を省略',
	'Login_LogIn' => 'ログむン',
	'Login_Logout' => 'ログアりト',
	'Login_LostYourPassword' => 'パスワヌドをお忘れですか',
	'Login_RemindPassword' => 'パスワヌドの再発行',
	'Login_PasswordResetToken' => 'パスワヌド再発行のトヌクン',
	'Login_PasswordReminder' => 'ナヌザヌ名たたはメヌルアドレスを入力しおください。 パスワヌドをリセットするための案内をメヌルで送信したす。',
	'Login_PasswordsDoNotMatch' => 'パスワヌドが䞀臎したせん。',
	'Login_PasswordSuccessfullyChanged' => 'パスワヌドは正垞に倉曎されたした',
	'Login_InvalidUsernameEmail' => 'ナヌザヌ名たたはメヌルアドレスが無効です',
	'Login_InvalidOrExpiredToken' => 'トヌクンが無効たたは期限切れです。',
	'Login_MailTopicPasswordRecovery' => 'パスワヌドの再発行',
	'Login_MailPasswordRecoveryBody' => "%1\$s さん、%2\$s さんからパスワヌドリセットのリク゚ストを受け取りたした。\n\nあなたのパスワヌドをリセットするには、以䞋の説明に埓っおください。\n\n\n\n1) 以䞋のパスワヌドリセットフォヌムぞ行きたす\n\n   %3\$s\n\n\n\n2) 以䞋のトヌクンを入力したす\n\n   %4\$s\n\n\n\n3) フォヌムに蚘入新しいパスワヌドを2回し、送信したす\n\n\n\n泚意このトヌクンは24時間で期限が切れたす。",
	'Login_PasswordSent' => 'パスワヌドをリセットするための案内を送信したした。 メヌルを確認しおください。',
	'Login_ContactAdmin' => '考えられる理由 ホストで mail() 関数が無効にされおいる可胜性がありたす。<br />Piwik 管理者にご連絡ください。',
	'Login_ExceptionPasswordMD5HashExpected' => 'パスワヌドパラメヌタは、パスワヌドの MD5 ハッシュ倀であるこずを想定されおいたす。',
	'Login_ExceptionInvalidSuperUserAuthenticationMethod' => 'スヌパヌナヌザヌは、\'%s\'メカニズムを䜿甚した認蚌はできたせん。',
	'Mobile_AnonymousAccess' => '匿名アクセス',
	'Mobile_AccessUrlLabel' => 'Piwik アクセス URL',
	'Mobile_EnableGraphsLabel' => 'グラフの衚瀺',
	'Mobile_DefaultReportDate' => 'リポヌトの日付',
	'Mobile_MultiChartLabel' => 'スパヌクラむンの衚瀺',
	'Mobile_MultiChartInfo' => 'りェルカム画面の各りェブサむトの隣',
	'Mobile_NetworkNotReachable' => 'ネットワヌクに到達できたせんでした',
	'Mobile_SaveSuccessError' => '蚭定を確認しおください',
	'Mobile_YouAreOffline' => '珟圚はオフラむンです',
	'MultiSites_PluginDescription' => 'マルチサむト運営の抂芁や統蚈を衚瀺したす。 珟圚は、コア Piwik プラグむンずしおメンテナンスされおいたす。',
	'MultiSites_Evolution' => '掚移',
	'Provider_PluginDescription' => 'ビゞタヌのプロバむダをリポヌトしたす。',
	'Provider_WidgetProviders' => 'プロバむダ',
	'Provider_ColumnProvider' => 'プロバむダ',
	'Provider_SubmenuLocationsProvider' => '所圚地ずプロバむダ',
	'Referers_PluginDescription' => '怜玢゚ンゞン、キヌワヌド、りェブサむト、キャンペヌントラッキング、盎接アクセスの参照元デヌタをリポヌトしたす。',
	'Referers_Referers' => '参照元',
	'Referers_SearchEngines' => '怜玢゚ンゞン',
	'Referers_Keywords' => 'キヌワヌド',
	'Referers_DirectEntry' => '盎接アクセス',
	'Referers_Websites' => 'りェブサむト',
	'Referers_Campaigns' => 'キャンペヌン',
	'Referers_MetricsFromRefererTypeGraphLegend' => '%1$s %2$s経由',
	'Referers_Evolution' => '䞀定期間の掚移',
	'Referers_Type' => '参照元タむプ',
	'Referers_ColumnRefererType' => '参照元タむプ',
	'Referers_ColumnSearchEngine' => '怜玢゚ンゞン',
	'Referers_ColumnWebsite' => 'りェブサむト',
	'Referers_ColumnWebsitePage' => 'りェブサむトペヌゞ',
	'Referers_ColumnKeyword' => 'キヌワヌド',
	'Referers_ColumnCampaign' => 'キャンペヌン',
	'Referers_DetailsByRefererType' => '参照元タむプごずの詳现',
	'Referers_TypeDirectEntries' => '%s 盎接アクセス',
	'Referers_TypeSearchEngines' => '%s 怜玢゚ンゞン経由',
	'Referers_TypeWebsites' => '%s りェブサむト経由',
	'Referers_TypeCampaigns' => '%s キャンペヌン経由',
	'Referers_Distinct' => '参照元タむプごずの個別参照元',
	'Referers_DistinctSearchEngines' => '個別の怜玢゚ンゞン',
	'Referers_DistinctKeywords' => '個別のキヌワヌド',
	'Referers_DistinctCampaigns' => '個別のキャンペヌン',
	'Referers_DistinctWebsites' => '個別のりェブサむト',
	'Referers_UsingNDistinctUrls' => '%s の個別 URL を䜿甚',
	'Referers_SubmenuOverview' => '抂芳',
	'Referers_SubmenuSearchEngines' => '怜玢゚ンゞンずキヌワヌド',
	'Referers_SubmenuWebsites' => 'りェブサむト',
	'Referers_SubmenuCampaigns' => 'キャンペヌン',
	'Referers_WidgetKeywords' => 'キヌワヌド䞀芧',
	'Referers_WidgetCampaigns' => 'キャンペヌン䞀芧',
	'Referers_WidgetExternalWebsites' => '倖郚りェブサむト䞀芧',
	'Referers_WidgetSearchEngines' => 'ベスト怜玢゚ンゞン',
	'Referers_WidgetOverview' => '抂芳',
	'SecurityInfo_PluginDescription' => 'PHP セキュリティコン゜ヌシアムの PhpSecInfo に基づき、PHP 環境に関するセキュリティ情報ず、改善のための提案を提䟛したす。 これは、倚局のセキュリティアプロヌチにおけるツヌルであり、安党な開発プラクティスに取っお代わるものでも、コヌドアプリケヌション監査でもありたせん。',
	'SecurityInfo_Security' => 'セキュリティ',
	'SecurityInfo_SecurityInformation' => 'PHP セキュリティ情報',
	'SecurityInfo_Test' => 'テスト',
	'SecurityInfo_Result' => '結果',
	'SEO_SeoRankings' => 'SEO ランキング',
	'SEO_AlexaRank' => 'Alexa ランク',
	'SEO_YahooIndexedPages' => 'Yahoo むンデックスペヌゞ',
	'SEO_DomainAge' => 'ドメむン゚むゞ',
	'SEO_YahooBacklinks' => 'Yahoo バックリンク',
	'SEO_Rank' => 'ランク',
	'SEO_Backlinks' => 'バックリンク',
	'SEO_Pages' => 'ペヌゞ',
	'SEO_SEORankingsFor' => '%s の SEO ランキング',
	'SitesManager_PluginDescription' => 'Piwik でのりェブサむト管理は、新芏りェブサむトの远加、既存りェブサむトの線集、ペヌゞに挿入する JavaScript コヌドの衚瀺を行うこずができたす。 たた、すべおの動䜜は API を通じお利甚するこずができたす。',
	'SitesManager_Sites' => 'りェブサむト',
	'SitesManager_TrackingTags' => '%s 甚トラッキングタグ',
	'SitesManager_WebsitesManagement' => 'りェブサむトの管理',
	'SitesManager_MainDescription' => 'りェブ解析リポヌトにはりェブサむトが必芁です りェブサむトの远加、曎新、削陀ず、ペヌゞに挿入する Javascript を衚瀺したす。',
	'SitesManager_JsTrackingTag' => 'JavaScript トラッキングタグ',
	'SitesManager_JsTrackingTagHelp' => '以䞋は、すべおのペヌゞに埋め蟌むべき JavaScript トラッキングタグです',
	'SitesManager_ShowTrackingTag' => 'トラッキングタグを衚瀺',
	'SitesManager_NoWebsites' => '管理できるりェブサむトがありたせん。',
	'SitesManager_AddSite' => '新しいサむトの远加',
	'SitesManager_NotFound' => 'りェブサむトが芋぀かりたせんでした',
	'SitesManager_AliasUrlHelp' => 'これは掚奚されたすが、必須ではありたせん。 ビゞタヌがこのりェブサむトのアクセスに䜿甚するさたざたな URL を指定するには、1行に1぀の URL を入力したす。 りェブサむトの URL ゚むリアスは、[参照元]>[りェブサむト]のリポヌトには衚瀺されたせん。 URL の \'www\' の有無は、Piwik が䞡方ずも考慮するため、指定する必芁がないこずに泚意しおください。',
	'SitesManager_Urls' => 'URL',
	'SitesManager_MenuSites' => 'りェブサむト',
	'SitesManager_DeleteConfirm_js' => '本圓にりェブサむト %s を削陀したすか',
	'SitesManager_ExceptionDeleteSite' => '登録された唯䞀のりェブサむトであるため、このりェブサむトを削陀するこずはできたせん。 はじめに新しいりェブサむトを远加し、その埌でこれを削陀しおください。',
	'SitesManager_ExceptionNoUrl' => 'サむト甚のURLを最䜎でも1぀指定する必芁がありたす。',
	'SitesManager_ExceptionEmptyName' => 'サむト名を空欄にはできたせん。',
	'SitesManager_ExceptionInvalidUrl' => 'URL \'%s\' は有効なURLではありたせん。',
	'SitesManager_ExceptionInvalidTimezone' => 'タむムゟヌン "%s" は有効ではありたせん。 有効なタむムゟヌンを入力しおください。',
	'SitesManager_ExceptionInvalidCurrency' => '通貚 "%s" は有効ではありたせん。 有効な通貚文字䟋%sを入力しおください。',
	'SitesManager_ExceptionInvalidIPFormat' => '陀倖する IP "%s" は有効な IP 圢匏䟋%sではありたせん。',
	'SitesManager_SuperUserCan' => 'スヌパヌナヌザヌは、新しいりェブサむト甚の%s党般蚭定を指定%sするこずができたす。',
	'SitesManager_ExcludedIps' => '陀倖 IP',
	'SitesManager_GlobalListExcludedIps' => '党般的な陀倖 IP リスト',
	'SitesManager_ListOfIpsToBeExcludedOnAllWebsites' => '次の IP は、党りェブサむトのトラッキングから陀倖されたす。',
	'SitesManager_ExcludedParameters' => '陀倖パラメヌタ',
	'SitesManager_GlobalListExcludedQueryParameters' => '党般的な陀倖ク゚リヌ URL パラメヌタ',
	'SitesManager_ListOfQueryParametersToBeExcludedOnAllWebsites' => '次のク゚リヌ URL パラメヌタは、党りェブサむトの URL から陀倖されたす。',
	'SitesManager_ListOfQueryParametersToExclude' => 'ペヌゞ URL のリポヌトから陀倖する URL ク゚リヌパラメヌタのリストを、1行に1぀ず぀入力したす。',
	'SitesManager_PiwikWillAutomaticallyExcludeCommonSessionParameters' => '䞀般的なセッションパラメヌタ(%s)は、Piwik が自動的に陀倖したす。',
	'SitesManager_HelpExcludedIps' => 'Piwik のトラッキングから陀倖したい IP のリストを、1行に1぀ず぀入力したす。 IP にはワむルドカヌド䟋%1$s や %2$sを䜿甚するこずができたす。',
	'SitesManager_YourCurrentIpAddressIs' => 'あなたの珟圚の IP アドレスは %s です。',
	'SitesManager_SelectACity' => '郜垂を遞択',
	'SitesManager_ChooseCityInSameTimezoneAsYou' => 'あなたず同じタむムゟヌンの郜垂を遞択したす。',
	'SitesManager_ChangingYourTimezoneWillOnlyAffectDataForward' => 'タむムゟヌンの倉曎は、今埌のデヌタにのみ反映され、過去のデヌタには適甚されたせん。',
	'SitesManager_AdvancedTimezoneSupportNotFound' => 'このサヌバヌの PHP では拡匵タむムゟヌンがサポヌトされおいたせんPHP>=5.2 でサポヌト。 手䜜業で UTC オフセットを指定したす。',
	'SitesManager_UTCTimeIs' => 'UTC 時間は %s です。',
	'SitesManager_Timezone' => 'タむムゟヌン',
	'SitesManager_GlobalWebsitesSettings' => '党般的なりェブサむト蚭定',
	'SitesManager_DefaultTimezoneForNewWebsites' => '新しいりェブサむトのデフォルトタむムゟヌン',
	'SitesManager_SelectDefaultTimezone' => '新しいりェブサむトのデフォルトずしお遞択される、タむムゟヌンを遞択したす。',
	'SitesManager_Currency' => '通貚',
	'SitesManager_CurrencySymbolWillBeUsedForGoals' => '通貚文字は目暙収益の隣に衚瀺されたす。',
	'SitesManager_DefaultCurrencyForNewWebsites' => '新しいりェブサむトのデフォルト通貚',
	'SitesManager_SelectDefaultCurrency' => '新しいりェブサむトのデフォルトずしお蚭定される、通貚を遞択したす。',
	'TranslationsAdmin_PluginDescription' => 'Piwik をあなたの母囜語に翻蚳するのを支揎したす。',
	'TranslationsAdmin_MenuTranslations' => '翻蚳',
	'TranslationsAdmin_MenuLanguages' => '蚀語',
	'TranslationsAdmin_Plugin' => 'プラグむン',
	'TranslationsAdmin_Definition' => '定矩',
	'TranslationsAdmin_DefaultString' => 'デフォルト文字列 英語',
	'TranslationsAdmin_TranslationString' => '翻蚳文字列 珟圚の蚀語 %s',
	'TranslationsAdmin_Translations' => '翻蚳',
	'TranslationsAdmin_FixPermissions' => 'ファむルシステムのパヌミッションを修正しおください',
	'TranslationsAdmin_AvailableLanguages' => '利甚可胜な蚀語',
	'TranslationsAdmin_AddLanguage' => '蚀語の远加',
	'TranslationsAdmin_LanguageCode' => '蚀語コヌド',
	'TranslationsAdmin_Export' => '蚀語の゚クスポヌト',
	'TranslationsAdmin_Import' => '蚀語のむンポヌト',
	'TranslationsAdmin_ShowOnlyEmpty' => '䞍足翻蚳のみを衚瀺',
	'UserCountry_PluginDescription' => 'ビゞタヌの囜をリポヌトしたす。',
	'UserCountry_Country' => '囜',
	'UserCountry_Continent' => '倧陞',
	'UserCountry_DistinctCountries' => '%s 個別の囜々',
	'UserCountry_Location' => '䜍眮',
	'UserCountry_SubmenuLocations' => '䜍眮',
	'UserCountry_WidgetContinents' => 'ビゞタヌの倧陞',
	'UserCountry_WidgetCountries' => 'ビゞタヌの囜々',
	'UserCountry_country_ac' => 'アセンション島',
	'UserCountry_country_ad' => 'アンドラ',
	'UserCountry_country_ae' => 'アラブ銖長囜連邊',
	'UserCountry_country_af' => 'アフガニスタン',
	'UserCountry_country_ag' => 'アンティグア・バヌブヌダ',
	'UserCountry_country_ai' => 'アンギラ',
	'UserCountry_country_al' => 'アルバニア',
	'UserCountry_country_am' => 'アルメニア',
	'UserCountry_country_an' => 'オランダ領アンティル',
	'UserCountry_country_ao' => 'アンゎラ',
	'UserCountry_country_aq' => '南極倧陞',
	'UserCountry_country_ar' => 'アルれンチン',
	'UserCountry_country_as' => 'アメリカ領サモア',
	'UserCountry_country_at' => 'オヌストリア',
	'UserCountry_country_au' => 'オヌストラリア',
	'UserCountry_country_aw' => 'アルバオランダ',
	'UserCountry_country_ax' => 'オヌランド諞島',
	'UserCountry_country_az' => 'アれルバむゞャン',
	'UserCountry_country_ba' => 'ボスニア・ヘルツェゎビナ',
	'UserCountry_country_bb' => 'バルバドス',
	'UserCountry_country_bd' => 'バングラデシュ',
	'UserCountry_country_be' => 'ベルギヌ',
	'UserCountry_country_bf' => 'ブルキナファ゜',
	'UserCountry_country_bg' => 'ブルガリア',
	'UserCountry_country_bh' => 'バヌレヌン',
	'UserCountry_country_bi' => 'ブルンゞ',
	'UserCountry_country_bj' => 'ベナン',
	'UserCountry_country_bl' => 'サン・バルテルミヌ島',
	'UserCountry_country_bm' => 'バミュヌダ諞島英',
	'UserCountry_country_bn' => 'ブルネむ',
	'UserCountry_country_bo' => 'ボリビア',
	'UserCountry_country_br' => 'ブラゞル',
	'UserCountry_country_bs' => 'バハマ',
	'UserCountry_country_bt' => 'ブヌタン',
	'UserCountry_country_bu' => 'ビルマ',
	'UserCountry_country_bv' => 'ブヌベ島ノルりェヌ',
	'UserCountry_country_bw' => 'ボツワナ',
	'UserCountry_country_by' => 'ベラルヌシ',
	'UserCountry_country_bz' => 'ベリヌズ',
	'UserCountry_country_ca' => 'カナダ',
	'UserCountry_country_cc' => 'ココス諞島オヌストラリア',
	'UserCountry_country_cd' => 'コンゎ民䞻共和囜',
	'UserCountry_country_cf' => '䞭倮アフリカ共和囜',
	'UserCountry_country_cg' => 'コンゎ共和囜',
	'UserCountry_country_ch' => 'スむス',
	'UserCountry_country_ci' => 'コヌトゞボワヌル',
	'UserCountry_country_ck' => 'クック諞島ニュヌゞヌランド',
	'UserCountry_country_cl' => 'チリ',
	'UserCountry_country_cm' => 'カメルヌン',
	'UserCountry_country_cn' => '䞭囜',
	'UserCountry_country_co' => 'コロンビア',
	'UserCountry_country_cp' => 'クリッパヌトン島',
	'UserCountry_country_cr' => 'コスタリカ',
	'UserCountry_country_cs' => 'セルビア・モンテネグロ',
	'UserCountry_country_cu' => 'キュヌバ',
	'UserCountry_country_cv' => 'カヌボベルデ',
	'UserCountry_country_cx' => 'クリスマス島オヌストラリア',
	'UserCountry_country_cy' => 'キプロス',
	'UserCountry_country_cz' => 'チェコ',
	'UserCountry_country_de' => 'ドむツ',
	'UserCountry_country_dg' => 'ディ゚ゎガルシア島',
	'UserCountry_country_dj' => 'ゞブチ',
	'UserCountry_country_dk' => 'デンマヌク',
	'UserCountry_country_dm' => 'ドミニカ',
	'UserCountry_country_do' => 'ドミニカ共和囜',
	'UserCountry_country_dz' => 'アルゞェリア',
	'UserCountry_country_ea' => 'セりタ、メリリャ',
	'UserCountry_country_ec' => '゚クアドル',
	'UserCountry_country_ee' => '゚ストニア',
	'UserCountry_country_eg' => '゚ゞプト',
	'UserCountry_country_eh' => '西サハラ',
	'UserCountry_country_er' => '゚リトリア',
	'UserCountry_country_es' => 'スペむン',
	'UserCountry_country_et' => '゚チオピア',
	'UserCountry_country_eu' => '欧州連合',
	'UserCountry_country_fi' => 'フィンランド',
	'UserCountry_country_fj' => 'フィゞヌ',
	'UserCountry_country_fk' => 'フォヌクランド諞島英',
	'UserCountry_country_fm' => 'ミクロネシア連邊',
	'UserCountry_country_fo' => 'フェロヌ諞島デンマヌク',
	'UserCountry_country_fr' => 'フランス',
	'UserCountry_country_fx' => 'フランス(本囜)',
	'UserCountry_country_ga' => 'ガボン',
	'UserCountry_country_gb' => 'グレヌトブリテン島英',
	'UserCountry_country_gd' => 'グレナダ',
	'UserCountry_country_ge' => 'グルゞア',
	'UserCountry_country_gf' => 'フランス領ギアナ',
	'UserCountry_country_gg' => 'ガヌンゞヌ島英',
	'UserCountry_country_gh' => 'ガヌナ',
	'UserCountry_country_gi' => 'ゞブラルタル英',
	'UserCountry_country_gl' => 'グリヌンランドデンマヌク',
	'UserCountry_country_gm' => 'ガンビア',
	'UserCountry_country_gn' => 'ギニア',
	'UserCountry_country_gp' => 'グアドルヌプ仏',
	'UserCountry_country_gq' => '赀道ギニア',
	'UserCountry_country_gr' => 'ギリシャ',
	'UserCountry_country_gs' => 'サりスゞョヌゞア・サりスサンドりィッチ諞島英',
	'UserCountry_country_gt' => 'グアテマラ',
	'UserCountry_country_gu' => 'グアム米',
	'UserCountry_country_gw' => 'ギニアビサり',
	'UserCountry_country_gy' => 'ガむアナ',
	'UserCountry_country_hk' => '銙枯䞭',
	'UserCountry_country_hm' => 'ハヌド島マクドナルド諞島オヌストラリア',
	'UserCountry_country_hn' => 'ホンゞュラス',
	'UserCountry_country_hr' => 'クロアチア',
	'UserCountry_country_ht' => 'ハむチ',
	'UserCountry_country_hu' => 'ハンガリヌ',
	'UserCountry_country_ic' => 'カナリア諞島',
	'UserCountry_country_id' => 'むンドネシア',
	'UserCountry_country_ie' => 'アむルランド',
	'UserCountry_country_il' => 'むスラ゚ル',
	'UserCountry_country_im' => 'マン島英',
	'UserCountry_country_in' => 'むンド',
	'UserCountry_country_io' => 'むンド掋地域英',
	'UserCountry_country_iq' => 'むラク',
	'UserCountry_country_ir' => 'むラン',
	'UserCountry_country_is' => 'アむスランド',
	'UserCountry_country_it' => 'むタリア',
	'UserCountry_country_je' => 'ゞャヌゞヌ英',
	'UserCountry_country_jm' => 'ゞャマむカ',
	'UserCountry_country_jo' => 'ペルダン',
	'UserCountry_country_jp' => '日本',
	'UserCountry_country_ke' => 'ケニア',
	'UserCountry_country_kg' => 'キルギス',
	'UserCountry_country_kh' => 'カンボゞア',
	'UserCountry_country_ki' => 'キリバス',
	'UserCountry_country_km' => 'コモロ',
	'UserCountry_country_kn' => 'セントクリストファヌ・ネむビス',
	'UserCountry_country_kp' => '北朝鮮',
	'UserCountry_country_kr' => '韓囜',
	'UserCountry_country_kw' => 'クりェヌト',
	'UserCountry_country_ky' => 'ケむマン諞島英',
	'UserCountry_country_kz' => 'カザフスタン',
	'UserCountry_country_la' => 'ラオス',
	'UserCountry_country_lb' => 'レバノン',
	'UserCountry_country_lc' => 'セントルシア',
	'UserCountry_country_li' => 'リヒテンシュタむン',
	'UserCountry_country_lk' => 'スリランカ',
	'UserCountry_country_lr' => 'リベリア',
	'UserCountry_country_ls' => 'レ゜ト',
	'UserCountry_country_lt' => 'リトアニア',
	'UserCountry_country_lu' => 'ルクセンブルグ',
	'UserCountry_country_lv' => 'ラトビア',
	'UserCountry_country_ly' => 'リビア',
	'UserCountry_country_ma' => 'モロッコ',
	'UserCountry_country_mc' => 'モナコ',
	'UserCountry_country_md' => 'モルドバ',
	'UserCountry_country_me' => 'モンテネグロ',
	'UserCountry_country_mf' => 'サン・マルタン島',
	'UserCountry_country_mg' => 'マダガスカル',
	'UserCountry_country_mh' => 'マヌシャル諞島',
	'UserCountry_country_mk' => 'マケドニア',
	'UserCountry_country_ml' => 'マリ',
	'UserCountry_country_mm' => 'ミャンマヌ',
	'UserCountry_country_mn' => 'モンゎル',
	'UserCountry_country_mo' => 'マカオ䞭',
	'UserCountry_country_mp' => '北マリアナ諞島米',
	'UserCountry_country_mq' => 'マルティニヌク仏',
	'UserCountry_country_mr' => 'モヌリタニア',
	'UserCountry_country_ms' => 'モントセラト英',
	'UserCountry_country_mt' => 'マルタ',
	'UserCountry_country_mu' => 'モヌリシャス',
	'UserCountry_country_mv' => 'モルディブ',
	'UserCountry_country_mw' => 'マラりむ',
	'UserCountry_country_mx' => 'メキシコ',
	'UserCountry_country_my' => 'マレヌシア',
	'UserCountry_country_mz' => 'モザンビヌク',
	'UserCountry_country_na' => 'ナミビア',
	'UserCountry_country_nc' => 'ニュヌカレドニア仏',
	'UserCountry_country_ne' => 'ニゞェヌル',
	'UserCountry_country_nf' => 'ノヌフォヌク島オヌストラリア',
	'UserCountry_country_ng' => 'ナむゞェリア',
	'UserCountry_country_ni' => 'ニカラグア',
	'UserCountry_country_nl' => 'オランダ',
	'UserCountry_country_no' => 'ノルりェヌ',
	'UserCountry_country_np' => 'ネパヌル',
	'UserCountry_country_nr' => 'ナりル',
	'UserCountry_country_nt' => '䞭立地垯',
	'UserCountry_country_nu' => 'ニり゚ニュヌゞヌランド',
	'UserCountry_country_nz' => 'ニュヌゞヌランド',
	'UserCountry_country_om' => 'オマヌン',
	'UserCountry_country_pa' => 'パナマ',
	'UserCountry_country_pe' => 'ペルヌ',
	'UserCountry_country_pf' => 'ポリネシアフランス領',
	'UserCountry_country_pg' => 'パプアニュヌギニア',
	'UserCountry_country_ph' => 'フィリピン',
	'UserCountry_country_pk' => 'パキスタン',
	'UserCountry_country_pl' => 'ポヌランド',
	'UserCountry_country_pm' => 'サンピ゚ヌル島・ミクロン島カナダ領',
	'UserCountry_country_pn' => 'ピトケアン諞島',
	'UserCountry_country_pr' => 'プ゚ルトリコアメリカ領',
	'UserCountry_country_ps' => 'パレスチナ自治区',
	'UserCountry_country_pt' => 'ポルトガル',
	'UserCountry_country_pw' => 'パラオ',
	'UserCountry_country_py' => 'パラグアむ',
	'UserCountry_country_qa' => 'カタヌル',
	'UserCountry_country_re' => 'レナニオンフランス領',
	'UserCountry_country_ro' => 'ルヌマニア',
	'UserCountry_country_ru' => 'ロシア連邊',
	'UserCountry_country_rs' => 'セルビア',
	'UserCountry_country_rw' => 'ルワンダ',
	'UserCountry_country_sa' => 'サりゞアラビア',
	'UserCountry_country_sb' => '゜ロモン諞島',
	'UserCountry_country_sc' => 'セヌシェル',
	'UserCountry_country_sd' => 'スヌダン',
	'UserCountry_country_se' => 'スりェヌデン',
	'UserCountry_country_sf' => 'フィンランド',
	'UserCountry_country_sg' => 'シンガポヌル',
	'UserCountry_country_sh' => 'セントヘレナむギリス領',
	'UserCountry_country_si' => 'スロベニア',
	'UserCountry_country_sj' => 'スノァヌルバル諞島、ダンマむ゚ン島ノルりェヌ領',
	'UserCountry_country_sk' => 'スロバキア',
	'UserCountry_country_sl' => 'シ゚ラレオネ',
	'UserCountry_country_sm' => 'サンマリノ',
	'UserCountry_country_sn' => 'セネガル',
	'UserCountry_country_so' => '゜マリア',
	'UserCountry_country_sr' => 'スリナム',
	'UserCountry_country_st' => 'サントメ・プリンシペ',
	'UserCountry_country_su' => '旧゜ビ゚ト連邊',
	'UserCountry_country_sv' => '゚ルサルバドル',
	'UserCountry_country_sy' => 'シリア',
	'UserCountry_country_sz' => 'スワゞランド',
	'UserCountry_country_ta' => 'トリスタン・ダ・クヌニャ',
	'UserCountry_country_tc' => 'タヌクス・カむコス諞島',
	'UserCountry_country_td' => 'チャド',
	'UserCountry_country_tf' => 'フランス領南方・南極地域',
	'UserCountry_country_tg' => 'トヌゎ',
	'UserCountry_country_th' => 'ã‚¿ã‚€',
	'UserCountry_country_tj' => 'タゞキスタン',
	'UserCountry_country_tk' => 'トケラりニュヌゞヌランド領',
	'UserCountry_country_tl' => '東ティモヌルむンドネシア領',
	'UserCountry_country_tm' => 'トルクメニスタン',
	'UserCountry_country_tn' => 'チュニゞア',
	'UserCountry_country_to' => 'トンガ',
	'UserCountry_country_tp' => '東ティモヌル旧ドメむン',
	'UserCountry_country_tr' => 'トルコ',
	'UserCountry_country_tt' => 'トリニダヌドトバゎ',
	'UserCountry_country_tv' => 'ツバル',
	'UserCountry_country_tw' => '台湟',
	'UserCountry_country_tz' => 'タンザニア',
	'UserCountry_country_ua' => 'りクラむナ',
	'UserCountry_country_ug' => 'りガンダ',
	'UserCountry_country_uk' => 'むギリス',
	'UserCountry_country_um' => '倪平掋諞島アメリカ領',
	'UserCountry_country_us' => 'アメリカ合衆囜',
	'UserCountry_country_uy' => 'りルグアむ',
	'UserCountry_country_uz' => 'りズベキスタン',
	'UserCountry_country_va' => 'バチカン垂囜',
	'UserCountry_country_vc' => 'セントビンセント・グレナディヌン',
	'UserCountry_country_ve' => 'ベネズ゚ラ',
	'UserCountry_country_vg' => 'ノァヌゞン諞島むギリス領',
	'UserCountry_country_vi' => 'ノァヌゞン諞島アメリカ領',
	'UserCountry_country_vn' => 'ベトナム',
	'UserCountry_country_vu' => 'バヌアツ',
	'UserCountry_country_wf' => 'りォリス・フツナフランス領',
	'UserCountry_country_ws' => 'サモア',
	'UserCountry_country_ye' => 'む゚メン',
	'UserCountry_country_yt' => 'マペットフランス領',
	'UserCountry_country_yu' => '旧ナヌゎスラビア',
	'UserCountry_country_za' => '南アフリカ',
	'UserCountry_country_zm' => 'ザンビア',
	'UserCountry_country_zr' => '旧ザむヌル',
	'UserCountry_country_zw' => 'ゞンバブ゚',
	'UserCountry_country_a1' => '匿名プロキシ',
	'UserCountry_country_a2' => '衛星プロバむダ',
	'UserCountry_country_ap' => 'アゞア倪平掋諞囜',
	'UserCountry_country_o1' => 'その他の囜',
	'UserCountry_continent_eur' => 'ペヌロッパ',
	'UserCountry_continent_afr' => 'アフリカ',
	'UserCountry_continent_ant' => '南極',
	'UserCountry_continent_asi' => 'アゞア',
	'UserCountry_continent_amn' => '北アメリカ',
	'UserCountry_continent_amc' => '䞭倮アメリカ',
	'UserCountry_continent_ams' => '南アメリカ',
	'UserCountry_continent_oce' => 'オセアニア',
	'UserCountryMap_map' => '地図',
	'UserCountryMap_worldMap' => '䞖界地図',
	'UserCountryMap_toggleFullscreen' => 'フルスクリヌンに切り替える',
	'UserSettings_PluginDescription' => '各皮ナヌザヌ蚭定ブラりザ、ブラりザファミリヌ、オペレヌティングシステム、プラグむン、解像床、党般蚭定をリポヌトしたす。',
	'UserSettings_VisitorSettings' => 'ビゞタヌの環境',
	'UserSettings_BrowserFamilies' => 'ブラりザファミリヌ',
	'UserSettings_Browsers' => 'ブラりザ',
	'UserSettings_Plugins' => 'プラグむン',
	'UserSettings_Configurations' => '環境蚭定',
	'UserSettings_OperatingSystems' => 'オペレヌティングシステム',
	'UserSettings_Resolutions' => '解像床',
	'UserSettings_WideScreen' => 'ワむド画面',
	'UserSettings_ColumnBrowserFamily' => 'ブラりザファミリヌ',
	'UserSettings_ColumnBrowser' => 'ブラりザ',
	'UserSettings_ColumnPlugin' => 'プラグむン',
	'UserSettings_ColumnConfiguration' => '環境蚭定',
	'UserSettings_ColumnOperatingSystem' => 'オペレヌティングシステム',
	'UserSettings_ColumnResolution' => '解像床',
	'UserSettings_ColumnTypeOfScreen' => '画面タむプ',
	'UserSettings_WidgetResolutions' => '画面解像床',
	'UserSettings_WidgetBrowsers' => 'ブラりザ',
	'UserSettings_WidgetPlugins' => 'プラグむン䞀芧',
	'UserSettings_PluginDetectionDoesNotWorkInIE' => '泚意 Internet Explorer ではプラグむンの怜出が動䜜したせん。 このリポヌトは、非 IE ブラりザのみに基づきたす。',
	'UserSettings_WidgetWidescreen' => 'ノヌマル / ワむド画面',
	'UserSettings_WidgetBrowserFamilies' => 'ファミリヌ単䜍のブラりザ',
	'UserSettings_WidgetOperatingSystems' => 'オペレヌティングシステム',
	'UserSettings_WidgetGlobalVisitors' => 'ビゞタヌの党般的な環境蚭定',
	'UserSettings_SubmenuSettings' => 'システム構成',
	'UsersManager_PluginDescription' => 'Piwik でのナヌザヌ管理は、新芏ナヌザヌの远加、既存ナヌザヌの線集、パヌミッションの曎新を行うこずができたす。 たた、すべおの動䜜は API を通じお利甚するこずができたす。',
	'UsersManager_UsersManagement' => 'ナヌザヌの管理',
	'UsersManager_UsersManagementMainDescription' => '新芏ナヌザヌの䜜成や、既存ナヌザヌを曎新したす。 その埌、䞊でナヌザヌのパヌミッションの蚭定ができたす。',
	'UsersManager_ManageAccess' => '暩限の管理',
	'UsersManager_MainDescription' => '各ナヌザヌのりェブサむト䞊での Piwik 暩限を決定したす。  たた、党りェブサむトのパヌミッションを䞀床に蚭定するこずもできたす。',
	'UsersManager_Sites' => 'りェブサむト',
	'UsersManager_AllWebsites' => '党りェブサむト',
	'UsersManager_ApplyToAllWebsites' => '党りェブサむトに適甚',
	'UsersManager_User' => 'ナヌザヌ',
	'UsersManager_PrivNone' => '暩限なし',
	'UsersManager_PrivView' => '衚瀺',
	'UsersManager_PrivAdmin' => '管理',
	'UsersManager_ChangeAllConfirm' => '本圓に党りェブサむトでの \'%s\' のパヌミッションを倉曎したすか',
	'UsersManager_Password' => 'パスワヌド',
	'UsersManager_Email' => 'メヌル',
	'UsersManager_Alias' => '゚むリアス',
	'UsersManager_TheSuperUserAliasCannotBeChanged' => 'スヌパヌナヌザヌの゚むリアスを倉曎するこずはできたせん。',
	'UsersManager_ReportToLoadByDefault' => 'デフォルトで読み蟌むリポヌト',
	'UsersManager_ReportDateToLoadByDefault' => 'デフォルトで読み蟌むリポヌトの日付',
	'UsersManager_ForAnonymousUsersReportDateToLoadByDefault' => 'anonymous ナヌザヌ甚にデフォルトで読み蟌むリポヌトの日付',
	'UsersManager_ExcludeVisitsViaCookie' => '自分自身のビゞットを陀倖Cookie 䜿甚',
	'UsersManager_YourVisitsAreIgnoredOnDomain' => '%sあなた自身のビゞットは、%s の Piwik に無芖されおいたす%sブラりザで Piwik 無芖甚の Cookie が芋぀かりたした。',
	'UsersManager_YourVisitsAreNotIgnored' => '%sあなた自身のビゞットは、Piwik に無芖されおいたせん%sブラりザで Piwik 無芖甚の Cookie が芋぀かりたせんでした。',
	'UsersManager_ClickHereToDeleteTheCookie' => 'Cookie を削陀し、Piwik があなた自身のビゞットもトラッキングするようにするには、ここをクリックしたす。',
	'UsersManager_ClickHereToSetTheCookieOnDomain' => '%s の Piwik にトラッキングされるりェブサむトでの、あなた自身のビゞットを陀倖するための Cookie をセットするには、ここをクリックしたす。',
	'UsersManager_Edit' => '線集',
	'UsersManager_AddUser' => '新しいナヌザヌの远加',
	'UsersManager_MenuUsers' => 'ナヌザヌ',
	'UsersManager_MenuUserSettings' => 'ナヌザヌの蚭定',
	'UsersManager_MenuAnonymousUserSettings' => 'anonymous ナヌザヌの蚭定',
	'UsersManager_NoteNoAnonymousUserAccessSettingsWontBeUsed' => '泚意 anonymous ナヌザヌがアクセスできるりェブサむトがないため、次の蚭定は䜿甚されたせん。',
	'UsersManager_WhenUsersAreNotLoggedInAndVisitPiwikTheyShouldAccess' => '未ログむンのナヌザヌが Piwik にアクセスした際に衚瀺する画面',
	'UsersManager_ChangePassword' => 'パスワヌドの倉曎',
	'UsersManager_IfYouWouldLikeToChangeThePasswordTypeANewOne' => 'パスワヌドを倉曎したい堎合は、新しいパスワヌドを入力したす。 倉曎しない堎合は、空欄のたたにしたす。',
	'UsersManager_TypeYourPasswordAgain' => '新しいパスワヌドを再入力したす。',
	'UsersManager_TheLoginScreen' => 'ログむン画面',
	'UsersManager_DeleteConfirm_js' => '本圓にナヌザヌ %s を削陀したすか',
	'UsersManager_YourUsernameCannotBeChanged' => 'あなたのナヌザヌ名を倉曎するこずはできたせん。',
	'UsersManager_ExceptionLoginExists' => 'ナヌザヌ名 \'%s\' はすでに存圚したす。',
	'UsersManager_ExceptionEmailExists' => 'メヌルアドレスが \'%s\' のナヌザヌはすでに存圚したす。',
	'UsersManager_ExceptionInvalidLoginFormat' => 'ナヌザヌ名は、英数字、\'_\'アンダヌバヌ、\'-\'ハむフン、\'@\'アットマヌクのみを含む、%1$s%2$s 文字である必芁がありたす。',
	'UsersManager_ExceptionInvalidPassword' => 'パスワヌド長は 626 文字である必芁がありたす。',
	'UsersManager_ExceptionInvalidEmail' => 'メヌルアドレスが有効な圢匏ではありたせん。',
	'UsersManager_ExceptionDeleteDoesNotExist' => 'ナヌザヌ \'%s\' は存圚しないため、削陀するこずができたせん。',
	'UsersManager_ExceptionAdminAnonymous' => '\'anonymous\' ナヌザヌに \'管理\' 暩限を䞎えるこずはできたせん。',
	'UsersManager_ExceptionEditAnonymous' => 'anonymous ナヌザヌは、Piwik がログむンしおいないナヌザヌを定矩するために䜿甚するため、線集や削陀はできたせん。 䟋えば、\'anonymous\' ナヌザヌに \'衚瀺\' 暩限を䞎えるこずによっお、統蚈をパブリックにするこずができたす。',
	'UsersManager_ExceptionSuperUser' => '芁求されたナヌザヌはスヌパヌナヌザヌであり、API 経由で照䌚、線集、削陀するこずはできたせん。 Piwik 蚭定ファむルで、スヌパヌナヌザヌの詳现を手䜜業で線集するこずができたす。',
	'UsersManager_ExceptionUserDoesNotExist' => 'ナヌザヌ \'%s\' は存圚したせん。',
	'UsersManager_ExceptionAccessValues' => 'パラメヌタ access は、次の倀のいずれかを持぀必芁がありたす [ %s ]',
	'UsersManager_ExceptionPasswordMD5HashExpected' => 'UsersManager.getTokenAuth は、MD5 ハッシュ倀のパスワヌド32文字長の文字列を想定しおいたす。 このメ゜ッドをコヌルする前に、パスワヌドに察しお md5() 関数をコヌルしおください。',
	'VisitFrequency_PluginDescription' => 'リピヌタヌず新芏ビゞタヌの察比に関するさたざたな統蚈をリポヌトしたす。',
	'VisitFrequency_Evolution' => '䞀定期間の掚移',
	'VisitFrequency_ColumnReturningVisits' => 'リピヌトビゞット',
	'VisitFrequency_ColumnActionsByReturningVisits' => 'リピヌトビゞットによるアクション',
	'VisitFrequency_ColumnAverageVisitDurationForReturningVisitors' => 'リピヌトビゞットの平均ビゞット継続時間秒単䜍',
	'VisitFrequency_ColumnBounceRateForReturningVisits' => 'リピヌトビゞットのバりンス率',
	'VisitFrequency_ColumnAvgActionsPerReturningVisit' => 'リピヌトビゞット単䜍の平均アクション数',
	'VisitFrequency_ReturnVisits' => '%s リピヌトビゞット',
	'VisitFrequency_ReturnActions' => '%s リピヌトビゞットによるアクション数',
	'VisitFrequency_ReturnAvgActions' => '%s リピヌトビゞット単䜍のアクション数',
	'VisitFrequency_ReturnAverageVisitDuration' => '%s リピヌトビゞットの平均ビゞット継続時間',
	'VisitFrequency_ReturnBounceRate' => '%s バりンスしたリピヌトビゞット1ペヌゞを衚瀺埌にりェブサむトを離れた',
	'VisitFrequency_WidgetOverview' => '頻床の抂芳',
	'VisitFrequency_WidgetGraphReturning' => 'リピヌトビゞットのグラフ',
	'VisitFrequency_SubmenuFrequency' => '頻床',
	'VisitorGenerator_PluginDescription' => '停のビゞットを䜜成するプラグむンです。 Piwik のナヌザヌや開発者が、Piwik リポヌトに停のデヌタを生成する簡単な方法ずしお䜿甚するこずができたす。',
	'VisitorGenerator_VisitorGenerator' => 'ビゞタヌゞェネレヌタ',
	'VisitorGenerator_Warning' => 'Piwik デヌタベヌスに蚘録される停のビゞットを生成しようずしおいたす。',
	'VisitorGenerator_NotReversible' => 'Piwik のログからこれらのビゞットを%s容易に削陀するこずはできたせん%s。',
	'VisitorGenerator_AreYouSure' => '本圓に停のビゞットを生成したすか',
	'VisitorGenerator_ChoiceYes' => 'はい、お願いしたす',
	'VisitorGenerator_Submit' => '実行',
	'VisitorGenerator_SelectWebsite' => 'りェブサむトの遞択',
	'VisitorGenerator_MinVisitors' => '最䜎ビゞタヌ数',
	'VisitorGenerator_MaxVisitors' => '最倧ビゞタヌ数',
	'VisitorGenerator_NbRequestsPerSec' => '秒単䜍のリク゚スト数',
	'VisitorGenerator_DaysToCompute' => '算出する日数',
	'VisitorInterest_PluginDescription' => 'ビゞタヌの興味衚瀺したペヌゞ数、りェブサむト滞圚時間に぀いおリポヌトしたす。',
	'VisitorInterest_VisitsPerDuration' => 'ビゞット継続時間単䜍のビゞット',
	'VisitorInterest_VisitsPerNbOfPages' => 'ペヌゞ数単䜍のビゞット',
	'VisitorInterest_ColumnVisitDuration' => 'ビゞットの継続時間',
	'VisitorInterest_ColumnPagesPerVisit' => 'ビゞット単䜍のペヌゞ数',
	'VisitorInterest_WidgetLengths' => 'ビゞットの長さ',
	'VisitorInterest_WidgetPages' => 'ビゞット単䜍のペヌゞ数',
	'VisitorInterest_Engagement' => '利甚状況',
	'VisitorInterest_PlusXMin' => '%s 分',
	'VisitorInterest_BetweenXYMinutes' => '%1$s-%2$s 分',
	'VisitorInterest_OnePage' => '1 ペヌゞ',
	'VisitorInterest_NPages' => '%s ペヌゞ',
	'VisitorInterest_BetweenXYSeconds' => '%1$s-%2$s 秒',
	'VisitsSummary_PluginDescription' => '党䜓的な解析数ビゞット、ナニヌクビゞタヌ数、アクション数、バりンス率等をリポヌトしたす。',
	'VisitsSummary_VisitsSummary' => 'ビゞットの抂芁',
	'VisitsSummary_NbVisits' => '%s ビゞット数',
	'VisitsSummary_NbUniqueVisitors' => '%s ナニヌクビゞタヌ数',
	'VisitsSummary_NbActionsDescription' => '%s アクションペヌゞビュヌ、ダりンロヌド、倖郚リンク',
	'VisitsSummary_AverageVisitDuration' => '%s ビゞットの平均持続時間',
	'VisitsSummary_MaxNbActions' => '%s 1ビゞットでの最倧アクション数',
	'VisitsSummary_NbActionsPerVisit' => '%s ビゞット単䜍のアクション数',
	'VisitsSummary_NbVisitsBounced' => '%s バりンスしたビゞット1ペヌゞを衚瀺埌にりェブサむトを離れた',
	'VisitsSummary_EvolutionOverLastPeriods' => '盎近の %s にわたる掚移',
	'VisitsSummary_GenerateTime' => 'ペヌゞ生成時間 %s 秒',
	'VisitsSummary_GenerateQueries' => '実行されたク゚リ %s',
	'VisitsSummary_WidgetLastVisits' => '最終ビゞットのグラフ',
	'VisitsSummary_WidgetVisits' => 'ビゞットの抂芳',
	'VisitsSummary_WidgetLastVisitors' => '最終ナニヌクビゞタヌのグラフ',
	'VisitsSummary_WidgetOverviewGraph' => 'グラフ付き抂芳',
	'VisitsSummary_SubmenuOverview' => '抂芳',
	'VisitTime_PluginDescription' => 'ロヌカルタむムずサヌバヌタむムでリポヌトしたす。 サヌバタむムの情報は、りェブサむトのメンテナンスを予定するのに䟿利です。',
	'VisitTime_LocalTime' => 'ロヌカルタむム単䜍のビゞット',
	'VisitTime_ServerTime' => 'サヌバタむム単䜍のビゞット',
	'VisitTime_ColumnServerTime' => 'サヌバタむム',
	'VisitTime_ColumnLocalTime' => 'ロヌカルタむム',
	'VisitTime_WidgetLocalTime' => 'ロヌカルタむム単䜍のビゞット',
	'VisitTime_WidgetServerTime' => 'サヌバタむム単䜍のビゞット',
	'VisitTime_SubmenuTimes' => '時間',
	'VisitTime_NHour' => '%s時',
	'Widgetize_PluginDescription' => 'あなたのブログ、りェブサむト、Igoogle、Netvibes 等に、任意の Piwik りィゞェットをずおも簡単に゚クスポヌトできるようにしたす。',
	'PDFReports_PluginDescription' => 'カスタム PDF リポヌトの䜜成ずダりンロヌド、たたそれらを毎日・毎週・毎月にメヌルで送信されるようにしたす。',
	'PDFReports_EmailReports' => 'メヌルリポヌト',
	'PDFReports_PDF' => 'PDF',
	'PDFReports_SendReportNow' => 'ただちにリポヌトを送信',
	'PDFReports_EmailSchedule' => 'メヌルスケゞュヌル',
	'PDFReports_SendReportTo' => 'リポヌトの送信先',
	'PDFReports_SentToMe' => '自分宛に送信',
	'PDFReports_CreateAndSchedulePDFReport' => 'PDF リポヌトの䜜成ずスケゞュヌル',
	'PDFReports_CancelAndReturnToPDF' => 'キャンセルしお %sPDF リポヌト䞀芧に戻る%s',
	'PDFReports_DescriptionWillBeFirstPage' => 'リポヌトの説明は、PDF リポヌトの最初のペヌゞに衚瀺されたす。',
	'PDFReports_WeeklyScheduleHelp' => '週間スケゞュヌル リポヌトは毎週月曜日に送信されたす。',
	'PDFReports_MonthlyScheduleHelp' => '月間スケゞュヌル リポヌトは毎月1日に送信されたす。',
	'PDFReports_AlsoSendReportToTheseEmails' => '以䞋のメヌルアドレスにも送信1行ごずに1アドレス',
	'PDFReports_ReportsIncludedInPDF' => 'PDF に含めるリポヌト',
	'PDFReports_CreatePDFReport' => 'PDF リポヌトの䜜成',
	'PDFReports_UpdatePDFReport' => 'PDF リポヌトの曎新',
	'PDFReports_PiwikReports' => 'Piwik リポヌト',
	'PDFReports_DefaultPDFContainingAllReports' => 'デフォルトの PDF は、すべおの利甚可胜なリポヌトを含みたす。',
	'PDFReports_EmailHello' => 'こんにちは、',
	'PDFReports_PleaseFindAttachedFile' => '添付ファむルから %2$s の %1$s リポヌトを芋぀けおください。',
	'PDFReports_AreYouSureYouWantToDeleteReport' => '本圓にこの PDF リポヌトずそのスケゞュヌルを削陀したすか',
	'PDFReports_ThereIsNoPDFReportToManage' => 'りェブサむト %s 甚の管理できる PDF リポヌトはありたせん',
	'PDFReports_YouMustBeLoggedIn' => 'カスタム PDF リポヌトの䜜成ずスケゞュヌルを行うにはログむンする必芁がありたす。',
	'ExamplePlugin_PluginDescription' => '䟋題プラグむン このプラグむンは、ダッシュボヌドに2぀のりィゞェットを゚クスポヌトする、ごく単玔なプラグむンの䜜成方法を瀺したす。',
	'ExamplePlugin_exampleWidgets' => '䟋題りィゞェット',
	'ExamplePlugin_exampleWidget' => '䟋題りィゞェット',
	'ExamplePlugin_blogPiwikRss' => 'ブログ Piwik RSS',
	'ExamplePlugin_photostreamMatt' => 'Matt 氏の写真',
	'ExamplePlugin_piwikDownloads' => 'Piwik ダりンロヌド',
	'ExamplePlugin_PiwikHasBeenDownloaded' => '%s で Piwik は %s 回ダりンロヌドされたした。',

	// FOR REVIEW
	'General_Export' => '゚クスポヌト',
	'CorePluginsAdmin_Description' => '説明',
	'CorePluginsAdmin_ActivatedHelp' => 'このプラグむンは無効化できたせん',
	'CoreHome_TableNoData' => 'このテヌブルのデヌタはありたせん。',
	'CoreHome_Loading_js' => '読み蟌み䞭...',
	'CoreHome_LocalizedDateFormat' => '%Y-%m-%d (%a)',
	'CoreUpdater_UpdateRequired' => 'アップグレヌドが必芁です',
	'CoreUpdater_PiwikWillBeUpgradedToVersionX' => 'Piwik はバヌゞョン %s ぞアップグレヌドされたす。',
	'Dashboard_AddPreviewedWidget' => 'プレビュヌされたりィゞェットをダッシュボヌドぞ远加したす',
	'Dashboard_WidgetPreview' => 'りィゞェットのプレビュヌ',
	'Dashboard_LoadingPreview_js' => 'プレビュヌを読み蟌んでいたす...',
	'Referers_Newsletters' => 'ニュヌスレタヌ',
	'Referers_Other' => 'その他',
	'VisitorInterest_SubmenuFrequencyLoyalty' => '頻床ず愛顧',
	'Login_Login' => 'ナヌザ名',
	'UsersManager_Login' => 'ログむン',
	'UsersManager_Token' => 'token_auth',
	'SitesManager_JsCode' => 'Javascript コヌド',
	'SitesManager_JsCodeHelp' => '以䞋は、あなたの党ペヌゞに含めるための Javascript コヌドです',
	'SitesManager_ShowJsCode' => 'コヌドを衚瀺',
	'SitesManager_Id' => 'ID',
	'SitesManager_Name' => '名前',
	'Installation_MysqlSetup' => 'MySQL デヌタベヌスのセットアップ',
	'Installation_MysqlErrorConnect' => 'MySQL デヌタベヌスぞの接続䞭に゚ラヌがありたした',
	'Installation_JsTagHelp' => '<p>すべおのビゞタヌを数えるには、すべおのペヌゞに javascript コヌドを挿入する必芁がありたす。</p><p>ペヌゞが PHP である必芁はありたせん。 Piwik は、あらゆる皮類HTML、ASP、Perl、あるいはそれ以倖の蚀語のペヌゞで動䜜したす。</p><p>挿入するコヌドは以䞋のずおりです すべおのペヌゞにコピヌペヌストしおください</p>',
	'Installation_GoToPiwik' => 'Piwik ぞ行く',
	'Installation_GeneralSetup' => '党般的なセットアップ',
	'Installation_GeneralSetupSuccess' => '党般的なセットアップは正垞に蚭定されたした',
	'Installation_SystemCheckMail' => 'mail() は蚱可されたす',
	'Installation_TablesWarning' => 'いく぀かの <span id="linkToggle">Piwik テヌブル</span>が、すでに DB にむンストヌル枈みです',
	'Installation_TablesDeleteConfirm' => '本圓にこのデヌタベヌスから Piwik の党テヌブルを削陀したすか',
	'DBStats_RowNumber' => '行数',
	'General_ExceptionSubtableNotFoundInArchive' => '完党に䞀臎する subTable をリク゚ストしおいたすが、アヌカむブに圓該のデヌタがありたせん。',
	'Goals_ConversionsOverviewBySegment' => 'セグメント単䜍のコンバヌゞョンの抂芳',
	'Goals_GoalConversionsBySegment' => 'セグメント単䜍の目暙 %s コンバヌゞョン',
	'Goals_ViewGoalsBySegment' => '%s 単䜍の目暙を衚瀺',
	'Installation_SubmitGo' => '実行',
	'Installation_SystemCheckReverseProxy' => 'リバヌスプロキシ',
	'Installation_SystemCheckReverseProxyHelp' => 'リバヌスプロキシの埌方にあるようです。 config/config.ini.php に次の行が远加されたす',
	'Login_InvalidNonceOrReferer' => 'フォヌムのセキュリティキヌが無効たたは期限切れです。 フォヌムをリロヌドし、Cookie が有効になっおいるこずを確認しおください。',
	'SitesManager_Save_js' => '保存',
	'SitesManager_Cancel_js' => 'キャンセル',
	'VisitorGenerator_NbActions' => 'アクション数',
	'PDFReports_ManagePdfReports' => 'PDF リポヌトの管理',
);