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

th.php « lang - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ac61569828e02c5c31440f1a89cf0640afa0b74 (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
<?php 
$translations = array(
	'General_Locale' => 'th_TH.UTF-8',
	'General_TranslatorName' => 'coyoty',
	'General_TranslatorEmail' => 'hello@piwik.org',
	'General_EnglishLanguageName' => 'Thai',
	'General_OriginalLanguageName' => 'ไทย',
	'General_HelloUser' => 'สวัสดี,%s!',
	'General_OpenSourceWebAnalytics' => 'โปรแกรมวิเคราะห์เว็บไซต์ โอเพนซอร์ส',
	'General_YourDashboard' => 'แผงควบคุมของคุณ',
	'General_API' => 'API',
	'General_Widgets' => 'เครื่องมือ',
	'General_Settings' => 'ตั้งค่า',
	'General_GiveUsYourFeedback' => 'แสดงความคิดเห็นกับเรา',
	'General_Unknown' => 'ไม่ทราบ',
	'General_Required' => '%s จำเป็นต้องมี',
	'General_Error' => 'ข้อผิดพลาด',
	'General_Warning' => 'คำเตือน',
	'General_BackToHomepage' => 'กลับไปยังหน้าหลักของ Piwik',
	'General_Yes' => 'ใช่',
	'General_No' => 'ไม่ใช่',
	'General_Delete' => 'ลบ',
	'General_Edit' => 'แก้ไข',
	'General_Ok' => 'ตกลง',
	'General_Close' => 'ปิด',
	'General_Logout' => 'ลงชื่อออก',
	'General_Done' => 'เสร็จสิ้น',
	'General_LoadingData' => 'กำลังโหลดข้อมูล...',
	'General_ErrorRequest' => 'Oops&hellip; เกิดปัญหาระหว่างดึงข้อมูล กรุณาลองใหม่อีกครั้ง',
	'General_Next' => 'ต่อไป',
	'General_Previous' => 'ย้อนกลับ',
	'General_Search' => 'ค้นหา',
	'General_Others' => 'อื่นๆ',
	'General_Table' => 'ตาราง',
	'General_Piechart' => 'กราฟวงกลม',
	'General_TagCloud' => 'คำยอดนิยม',
	'General_VBarGraph' => 'กราฟแท่ง',
	'General_Export' => 'ส่งออก',
	'General_Refresh' => 'รีเฟรชหน้า',
	'General_Visitors' => 'ผู้ชม',
	'General_ColumnNbUniqVisitors' => 'ผู้ชมสัมบูรณ์',
	'General_ColumnNbVisits' => 'เยี่ยมชม',
	'General_ColumnLabel' => 'ชื่อ',
	'General_ColumnActionsPerVisit' => 'การดำเนินการต่อผู้ชม',
	'General_ColumnAvgTimeOnSite' => 'เวลาเฉลี่ยบนไซต์',
	'General_ColumnBounceRate' => 'อัตราการตีกลับ',
	'General_ColumnPageviews' => 'หน้าที่ดู',
	'General_ColumnUniquePageviews' => 'หน้าที่ดูโดยไม่ซำกัน',
	'General_Save' => 'บันทึก',
	'General_Website' => 'เว็บไซต์',
	'General_NoDataForGraph' => 'ไม่มีข้อมูลสำหรับกราฟนี้',
	'General_NoDataForTagCloud' => 'ไม่มีข้อมูลสำหรับแทกนี้',
	'General_DisplayNormalTable' => 'แสดงตารางปกติ',
	'General_DisplayMoreData' => 'แสดงข้อมูลเพิ่มเติม',
	'General_PiwikIsACollaborativeProject' => '%sPiwik%s เป็นโครงการร่วมกันทำและยังเป็นเวอร์ชั่นเบต้าอยู่ %s หากคุณต้องการช่วยเหลือโปรด %s ติดต่อเรา %s',
	'General_YouAreCurrentlyViewingDemoOfPiwik' => 'คุณกำลังดูตัวอย่างของ %s; %sดาวโหลด%s เวอร์ชั่นเต็ม! หรือไม่ %s',
	'General_PiwikXIsAvailablePleaseUpdateNow' => 'Piwik %s ออกแล้ว %s กรุณาอัพเดทเดี๋ยวนี้ %s (ดู %s การเปลี่ยนแปลง %s)',
	'General_BackToPiwik' => 'กลับไปยัง Piwik',
	'General_Loading' => 'กำลังโหลด...',
	'General_ExportAsImage' => 'ส่งออกเป็นภาพ',
	'General_SaveImageOnYourComputer' => 'เพื่อบันทึกภาพลงบนคอมพิวเตอร์ของคุณ คลิกขวาที่ภาพแล้วเลือก " Save Image As..."',
	'General_ColumnNbActions' => 'การดำเนินการ',
	'General_ColumnMaxActions' => 'กาำรดำเนินการสูงสุด ต่อผู้เยี่ยมชมหนึ่งคน',
	'General_ColumnSumVisitLength' => 'ระยะเวลาทั้งหมดที่ใช้โดยผู้เยี่ยมชม (วินาที)',
	'General_ColumnValuePerVisit' => 'ค่าต่อผู้ชม',
	'General_ColumnVisitsWithConversions' => 'ผู้เยี่ยมชมกับการเปลงข้อมูล',
	'General_PiwikIsACollaborativeProjectYouCanContribute' => '%s Piwik %s เป็นโปรเจ็กทำด้วยความร่วมมือกัน %s หากคุณชอบ Piwik คุณสามารถช่วยเราได้!ลองดูว่า %s คุณสามารถสนับสนุน Piwik ได้อย่างไร ? %s',
	'General_ShortMonth_1' => 'มค.',
	'General_ShortMonth_2' => 'กพ.',
	'General_ShortMonth_3' => 'มีค.',
	'General_ShortMonth_4' => 'เมษ.',
	'General_ShortMonth_5' => 'พค.',
	'General_ShortMonth_6' => 'มิย.',
	'General_ShortMonth_7' => 'กค.',
	'General_ShortMonth_8' => 'สค.',
	'General_ShortMonth_9' => 'กย.',
	'General_ShortMonth_10' => 'ตค.',
	'General_ShortMonth_11' => 'พย.',
	'General_ShortMonth_12' => 'ธค.',
	'General_LongMonth_1' => 'มกราคม',
	'General_LongMonth_2' => 'กุมภาพันธ์',
	'General_LongMonth_3' => 'มีนาคม',
	'General_LongMonth_4' => 'เมษายน',
	'General_LongMonth_5' => 'พฤษภาคม',
	'General_LongMonth_6' => 'มิถุนายน',
	'General_LongMonth_7' => 'กรกฎาคม',
	'General_LongMonth_8' => 'สิงหาคม',
	'General_LongMonth_9' => 'กันยายน',
	'General_LongMonth_10' => 'ตุลาคม',
	'General_LongMonth_11' => 'พฤศจิกายน',
	'General_LongMonth_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' => 'อาทิตย์',
	'API_QuickDocumentation' => '<h2>เอกสาร API แบบเร็ว</h2><p>If you don\'t have data for today you can first <a href=\'misc/generateVisits.php\' target=_blank>generate some data</a> using the Visits Generator script.</p><p>You can try the different formats available for every method. It is very easy to extract any data you want from Piwik!</p><p><b>For more information have a look at the <a href=\'http://dev.piwik.org/trac/wiki/API\'>official API Documentation</a> or the <a href=\'http://dev.piwik.org/trac/wiki/API/Reference\'>API Reference</a>.</b></P><h2>User authentication</h2><p>If you want to <b>request the data in your scripts, in a crontab, etc. </b> you need to add the parameter <code><u>&token_auth=%s</u></code> to the API calls URLs that require authentication.</p><p>This token_auth is as secret as your login and password, <b>do not share it!</p>',
	'API_LoadedAPIs' => 'โหลด API สำเร็จแล้ว %s',
	'Actions_Actions' => 'ดำเนินการ',
	'Actions_SubmenuPages' => 'หน้าของเนื้อหา',
	'Actions_SubmenuOutlinks' => 'ลิงค์ออก',
	'Actions_SubmenuDownloads' => 'ดาวน์โหลด',
	'Actions_ColumnClicks' => 'คลิก',
	'Actions_ColumnUniqueClicks' => 'คลิก',
	'Actions_ColumnDownloads' => 'ดาวน์โหลด',
	'Actions_ColumnUniqueDownloads' => 'ดาวน์โหลด',
	'Actions_ColumnPageName' => 'ชื่อหน้า',
	'Actions_ColumnClickedURL' => 'คลิก URL',
	'Actions_ColumnDownloadURL' => 'ดาวน์โหลด URL',
	'CoreHome_NoPrivileges' => 'คุณกำลังเข้าสู่ระบบในฐานะ \'%s\' แต่ดูเหมือนว่าคุณไม่ได้รับสิทธิ์ใดๆที่กำหนดไว้ใน Piwik. <br />ถามผู้ดูแลระบบ Piwik ของคุณเพื่อให้คุณ \'view\' การเข้าถึงเว็บไซต์',
	'CoreHome_JavascriptDisabled' => 'จาวาสคริปจะต้องเปิดไว้เพื่อใช้งาน Piwik ในมุมมองมาตรฐาน <br /> อย่างไรก็ตาม ดูเหมือนว่าจาวาสคริปจะถูกปิดอยู่ หรือบราวเซอร์ของคุณไม่รองรับ<br /> เพื่อใช้งานในมุมมองปกติ คุณต้องเปิดการใช้งานจาวาสคริปโดยเปลี่ยนออฟชั่นของบราวเซอร์ของคุณ หลังจากนั้น %1s ลองใหม่อีกครั้ง %2s <br />',
	'CoreHome_TableNoData' => 'ไม่มีข้อมูลสำหรับตารางนี้',
	'CoreHome_CategoryNoData' => 'ไม่มีข้อมูลในหมวดนี้ ลอง "Include all population"',
	'CoreHome_ShowJSCode' => 'แสดงจาวาสคริบเพื่อใส่',
	'CoreHome_IncludeAllPopulation_js' => 'ใช้งานสถิติทั้งหมด',
	'CoreHome_ExcludeLowPopulation_js' => 'ใช้งานสถิติขั้นต่ำ',
	'CoreHome_PageOf_js' => '%s ของ %s',
	'CoreHome_Loading_js' => 'กำลังโหลด...',
	'CoreHome_LocalizedDateFormat' => '%A %d %B %Y',
	'CoreHome_PeriodDay' => 'วัน',
	'CoreHome_PeriodWeek' => 'สัปดาห์',
	'CoreHome_PeriodMonth' => 'เดือน',
	'CoreHome_PeriodYear' => 'ปี',
	'CoreHome_DaySu_js' => 'อา',
	'CoreHome_DayMo_js' => 'จ',
	'CoreHome_DayTu_js' => 'อ',
	'CoreHome_DayWe_js' => 'พ',
	'CoreHome_DayTh_js' => 'พฤ',
	'CoreHome_DayFr_js' => 'ศ',
	'CoreHome_DaySa_js' => 'ส',
	'CoreHome_MonthJanuary_js' => 'มกราคม',
	'CoreHome_MonthFebruary_js' => 'กุมภาพันธ์',
	'CoreHome_MonthMarch_js' => 'มีนาคม',
	'CoreHome_MonthApril_js' => 'เมษายน',
	'CoreHome_MonthMay_js' => 'พฤษภาคม',
	'CoreHome_MonthJune_js' => 'มิถุนายน',
	'CoreHome_MonthJuly_js' => 'กรกฏาคม',
	'CoreHome_MonthAugust_js' => 'สิงหาคม',
	'CoreHome_MonthSeptember_js' => 'กันยายน',
	'CoreHome_MonthOctober_js' => 'ตุลาคม',
	'CoreHome_MonthNovember_js' => 'พฤศจิกายน',
	'CoreHome_MonthDecember_js' => 'ธันวาคม',
	'CoreHome_DayFormat' => '%วันแบบเต็ม%วัน%เดือนแบบเต็ม%%ปีแบบเต็ม%',
	'CoreHome_PeriodDays' => 'วัน',
	'CoreHome_PeriodWeeks' => 'สัปดาห์',
	'CoreHome_PeriodMonths' => 'เดือน',
	'CoreHome_PeriodYears' => 'ปี',
	'CorePluginsAdmin_Plugins' => 'ปลั้กอิน',
	'CorePluginsAdmin_PluginsManagement' => 'การจัดการปลั้กอิน',
	'CorePluginsAdmin_MainDescription' => 'อธิบายปลั้กอินและแสดงการทำงานของ Piwik เมื่อปลั๊กอินที่ติดตั้งอยู่คุณสามารถเปิดใช้งานหรือยกเลิกการใช้งานได้ ที่นี่',
	'CorePluginsAdmin_Plugin' => 'ปลั้กอิน',
	'CorePluginsAdmin_Version' => 'เวอร์ชั่น',
	'CorePluginsAdmin_Description' => 'คำอธิบาย',
	'CorePluginsAdmin_Status' => 'สถานะ',
	'CorePluginsAdmin_Action' => 'ดำเนินการ',
	'CorePluginsAdmin_PluginHomepage' => 'หน้าหลักของปลักอิน',
	'CorePluginsAdmin_Activated' => 'ใช้งาน',
	'CorePluginsAdmin_Active' => 'ทำงาน',
	'CorePluginsAdmin_Inactive' => 'ไม่ทำงาน',
	'CorePluginsAdmin_ActivatedHelp' => 'ปลักอินนี้ไม่สามารถหยุดการทำงานได้',
	'CorePluginsAdmin_Deactivate' => 'ยกเลิก',
	'CorePluginsAdmin_Activate' => 'ยืนยัน',
	'CorePluginsAdmin_MenuPlugins' => 'เมนูปลักอิน',
	'CoreUpdater_UpdateTitle' => 'Piwik &rsaquo; อัพเดท',
	'CoreUpdater_DatabaseUpgradeRequired' => 'จำเป็นต้องอัพเกรดฐานข้อมูล',
	'CoreUpdater_YourDatabaseIsOutOfDate' => 'ฐานข้อมูล Piwik ของคุณไม่อัพเดท จำเป็นที่จะต้องอัพเกรดก่อนจึงจะสามารถใช้งานได้',
	'CoreUpdater_PiwikWillBeUpgradedFromVersionXToVersionY' => 'Piwik จะถูกอัพเกรดจากเวอร์ชั่น %s เพื่อให้เป็นเวอร์ชั่นใหม่ %s',
	'CoreUpdater_TheFollowingPluginsWillBeUpgradedX' => 'ปลั๊กอินเหล่านี้จะถูกอัพเกรด',
	'CoreUpdater_TheUpgradeProcessMayTakeAWhilePleaseBePatient' => 'การอัพเกรดฐานข้อมูลจะใช้เวลาช่วงหนึ่ง กรุณารอซักครู่',
	'CoreUpdater_UpgradePiwik' => 'อัพเกรด Piwik',
	'CoreUpdater_HelpMessageContent' => 'ตรวจสอบที่ %s  ที่คำถามที่พบบ่อยที่สุด ซึ่งจะอธิบายข้อผิดพลาดระหว่างการปรับปรุง %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_DownloadX' => 'ดาวน์โหลด %s',
	'CoreUpdater_UpdateHasBeenCancelled' => 'ยกเลิกการอัพเดทแล้ว',
	'CoreUpdater_VerifyingUnpackedFiles' => 'กำลังตรวจสอบแพคเกจของไฟลล์',
	'CoreUpdater_CreatingBackupOfConfigurationFile' => 'สำรองไฟลล์ข้อมูลการตั้งค่าใน %s',
	'CoreUpdater_InstallingTheLatestVersion' => 'กำลังติดตั้งเวอร์ชั่นล่าสุด',
	'CoreUpdater_PiwikUpdatedSuccessfully' => 'Piwik อัพเดทสมบูรณ์แล้ว',
	'CoreUpdater_UpdateHasBeenCancelledExplanation' => 'การอัพเดท Piwik ในคลิกเดียวถูกยกเลิกแล้ว หากคุณไม่สามารถแก้ไขข้อความข้อผิดพลาด แนะนำให้คุณอัพเดท Piwik แบบ Manual %s กรุณาตรวจสอบ %s เอกสารการอัพเดท %s เพื่อเริ่มดำเนินการ',
	'DBStats_DatabaseUsage' => 'ปริมาณการใช้ฐานข้อมูล',
	'DBStats_MainDescription' => 'Piwik กำลังเก็บข้อมูลการวิเคราห์เว็บไซต์ของคุณในฐานข้อมูล MySQL ขณะนี้ตารางของ Piwik กำลังใช้งาน %s',
	'DBStats_Table' => 'ตาราง',
	'DBStats_RowNumber' => 'หมายเลขแถว',
	'DBStats_DataSize' => 'ขนาดข้อมูล',
	'DBStats_IndexSize' => 'ขนาดของดรรชนี',
	'DBStats_TotalSize' => 'ขนาดรวม',
	'Dashboard_Dashboard' => 'แผงควบคุม',
	'Dashboard_AddWidget' => 'เพิ่ม widget...',
	'Dashboard_DeleteWidgetConfirm' => 'คุณแน่ใจไหมที่จะลบ widget นี้ออกจากแผงควบคุม?',
	'Dashboard_SelectWidget' => 'เลือก widget เพื่อเพิ่มในแผงควบคุม',
	'Dashboard_AddPreviewedWidget' => 'เพิ่ม พริวิวของ widget ในแผงควบคุม',
	'Dashboard_WidgetPreview' => 'พรีวิวของ Wedget',
	'Dashboard_TitleWidgetInDashboard_js' => 'Widget นี้อยู่ในแผงควบคุมแล้ว',
	'Dashboard_TitleClickToAdd_js' => 'คลิกเพื่อเพิ่มลงในแผงควบคุม',
	'Dashboard_LoadingPreview_js' => 'กำลังโหลดพรีวิว กรุณารอ...',
	'Dashboard_LoadingWidget_js' => 'กำลังโหลด widget กรุณารอ...',
	'Dashboard_WidgetNotFound_js' => 'ไม่พบ Widget',
	'Dashboard_AddPreviewedWidget_js' => 'เพิ่ม widget ที่พรีวิวในแผงควบคุม',
	'Dashboard_WidgetPreview_js' => 'พรีวิว widget',
	'Dashboard_Close_js' => 'ปิด',
	'Goals_ColumnConversions' => 'การแปลงข้อมูล',
	'Goals_ColumnConversionRate' => 'อัตราการแปลงข้อมูล',
	'Goals_ColumnRevenue' => 'รายได้',
	'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 ก่อนและมีตารางในฐานข้อมูลของคุณไม่ต้องกังวลใจคุณสามารถซ้ำเดียวกันตารางและให้ข้อมูลที่มีอยู่ของคุณ! </ small>',
	'Installation_MysqlSetup' => 'ตั้งค่าฐานข้อมูล Mysql',
	'Installation_MysqlErrorConnect' => 'เกิดข้อผิดพลาดในการเชื่อมต่อฐานข้อมูล Mysql',
	'Installation_JsTag' => 'แทกจาวาสคริป',
	'Installation_JsTagHelp' => '<p>เพื่อนับจำนวนผู้เยื่ยมชมทั้งหมด คุณจะต้องนำโค้คจาวาสคริป ติดตั้งในทุกหน้าของเว็บไซต์คุณ</p><p>หน้าเพจของคุณไม่ได้ทำจาก PHP, Piwik สามารถทำงานได้กับเว็บเพจทุกชนิด (ไม่ว่าจะเป็น HTML, ASP, Perl หรือภาษาอื่นๆ)นี่คือโค้ดที่คุณจำเป็นต้องใส่ (คัดลอกแล้ววางลงทุกหน้าเพจทุกหน้าของคุณ</p>',
	'Installation_Congratulations' => 'ยิดดีด้วยสำเร็จแล้ว',
	'Installation_CongratulationsHelp' => '<p>ยินดีด้วยที่การติดตั้ง Piwik ของคุณเสร็จสมบูรณ์แล้ว</p>
<p>กรุณาแน่ใจว่า โค้ดจาวาสคริป ได้ติดตั้งลงบนเว็บเพจของคุณ และรอผู้เยี่ยมชมคนแรกของคุณ</p>',
	'Installation_ContinueToPiwik' => 'ดำเนินการต่อไปยัง Piwik',
	'Installation_SetupWebsite' => 'ติดตั้งเว็บไซต์หนึ่ง',
	'Installation_SetupWebsiteError' => 'เกิดข้อผิดพลาดขณะเพิ่มเว็บไซต์',
	'Installation_GeneralSetup' => 'การตั้งค่าทั่วไป',
	'Installation_GeneralSetupSuccess' => 'การตั้งค่าทั่วไปสำเร็จแล้ว',
	'Installation_SuperUserLogin' => 'super user login',
	'Installation_Password' => 'รหัสผ่าน',
	'Installation_PasswordRepeat' => 'รหัสผ่าน(ซ้ำ)',
	'Installation_Email' => 'อีเมลล์',
	'Installation_SecurityNewsletter' => 'ส่งอีเมลล์ให้ฉัน หากมีการอัพเกรด Piwik หลักและคำเตือนเกี่ยวกับระบบรักษาความปลอดภัย',
	'Installation_CommunityNewsletter' => 'ส่งอีเมลล์ให้ฉัน หากมีการอัพเดทใน ชุมชนผู้ใช้งาน',
	'Installation_PasswordDoNotMatch' => 'รหัสผ่านไม่ถูกต้อง',
	'Installation_SubmitGo' => 'ต่อไป!',
	'Installation_SystemCheck' => 'ตรวจสอบระบบ',
	'Installation_SystemCheckPhp' => 'เวอร์ชั่น PHP',
	'Installation_SystemCheckPdo' => 'ส่วนเสริม Pdo',
	'Installation_SystemCheckPdoMysql' => 'ส่วนเสริม Pdo_Myql',
	'Installation_SystemCheckPdoError' => 'คุณจำเป็นต้องให้ PDO และ PDO_MYSQL ทำงานโดยแก้ในไฟลล์ php.ini',
	'Installation_SystemCheckPdoHelp' => 'สำหรับเซิฟเวอร์วินโดวส์ คุณสามารถเพิ่มบรรทัดดังนี้ในไฟลล์ php.ini ของคุณ %s <br />
<br /> บนเซฟเวอร์ลีนุกซ์ คุณสามารถคอมไพล์ php ด้วยออพชั่น %s ในไฟลล์ php.ini เพิ่มบรรทัดดังต่อไปนี้ %s <br /><br /> ข้อมูลเพิ่มเติม <a style="color:red" href="http://php.net/pdo">เว็บไซต์PHP</a>',
	'Installation_SystemCheckWriteDirs' => 'ไดเร็กทอรีสามารถเขียนได้',
	'Installation_SystemCheckWriteDirsHelp' => 'เพื่อแก้ปัญหานี้สำหรับระบบ Linux ลองพิมพ์คำสั่งต่อไปนี้ (s)',
	'Installation_SystemCheckMemoryLimit' => 'Memory Limit',
	'Installation_SystemCheckMemoryLimitHelp' => 'บนเว็บไซต์ที่มีทราฟฟิกสูงๆ กระบวนการเก็บข้อมูลต้องใช้ memory มากกว่าค่าที่อนุญาตในปัจจุบัน <br /> ดูใน directive memory_limit ในไฟลล์ php.ini หากจำเป็น',
	'Installation_SystemCheckGD' => 'GD &gt; 2.x (graphics)',
	'Installation_SystemCheckGDHelp' => 'sparklines (กราฟเล็กๆ)จะไม่ทำงาน',
	'Installation_SystemCheckTimeLimit' => 'Set_time_limit() ที่อนุญาต',
	'Installation_SystemCheckTimeLimitHelp' => ' บนเว็บทราฟฟิกสูง การรันกระบวนการเก็บข้อมูลอาจใช้เวลามากกว่าค่าทีอนุญาตในปัจจุบัน <br />
ดูที่คำสั่ง max_execution_time ในไฟลล์ php.ini หากต้องการ',
	'Installation_SystemCheckMail' => 'mail() ที่อนุญาต',
	'Installation_SystemCheckError' => 'เกิดข้อผิดพลาดขึ้น - ต้องแก้ไขก่อนดำเนินการต่อไป',
	'Installation_SystemCheckWarning' => 'Piwik จะทำงานได้ปกติแต่ฟีเจอร์บางอย่างอาจทำงานผิดพลาด',
	'Installation_Tables' => 'กำลังสร้างตาราง',
	'Installation_TablesWarning' => '<span id="linkToggle">บางตัวในตาราง Piwik </span>ถูกติดตั้งใน DB แล้ว',
	'Installation_TablesFound' => 'ตารางดังต่อไปนี้ไม่พบในฐานข้อมูล',
	'Installation_TablesWarningHelp' => 'เลือกอันอื่นเพื่อใช้ฐานข้อมูลที่มีอยู่อีกครั้ง หรือเลือกติดตั้งใหม่ เพื่อลบข้อมูลที่มีอยู่ในฐานข้อมูล',
	'Installation_TablesReuse' => 'ใช้ตารางที่มีอยู่',
	'Installation_TablesDelete' => 'ลบตารางที่ค้นพบ',
	'Installation_TablesDeletedSuccess' => 'ลบตาราง Piwik ที่มีอยู่สำเร็จ',
	'Installation_TablesCreatedSuccess' => 'สร้างตารางสำเร็จ!',
	'Installation_DatabaseCreatedSuccess' => 'สร้างฐานข้อมูล %s สำเร็จ',
	'Installation_TablesDeleteConfirm' => '',
	'Installation_Welcome' => 'ยินดีต้อนรับ!',
	'Installation_WelcomeHelp' => '<p>Piwik เป็นโปรแกรมวิเคราห์เว็บไซต์โอเพ่นซอร์ส ซึ่งจะทำให้คุณได้รับข้อมูลจากผู้เยี่ยมชมของคุณอย่างง่ายดาย </p><p>กระบวนการจะแบ่งเป็น %s ขั้นตอนง่ายๆ และจะใช้เวลาประมาณ 5 นาที </p>',
	'Installation_TablesWithSameNamesFound' => 'บางตาราง %s ในฐานข้อมูลของคุณ %s มีชื่อเดียวกันกับตารางที่ Piwik พยายามจะสร้าง',
	'Installation_GoBackAndDefinePrefix' => 'กลับไปและตั้งชื่อ Prefix สำหรับตาราง Piwik',
	'Installation_ConfirmDeleteExistingTables' => 'คุณแน่ใจหรือไม่ว่าต้องการลบตาราง: %s จากฐานข้อมูล? <b>คำเตือน:<b> ข้อมูลในตารางเหล่านี้ไม่สามารถกู้คืนได้',
	'Installation_ErrorInvalidState' => 'ผิดพลาด: ดูเหมือนว่าคุณพยายามจะข้ามขั้นตอนหนึ่งในกระบวนการติดตั้ง หรือคุกกี้คุณถูกใช้งานไม่ได้ หรือ ไฟลล์การตั้งค่าของ Piwik ถูกสร้างขี้นแล้ว %s กรุณาแน่ใจว่าเปิดให้คุกกี้ทำงานแล้ว %s และกลับไปยังหน้าแรกของการติดตั้ง %s',
	'Login_LoginPasswordNotCorrect' => 'ชื่อผู้ใช้และรหัสผ่านไม่ถูกต้อง',
	'Login_Login' => 'ชื่อผู้ใช้',
	'Login_Password' => 'รหัสผ่าน',
	'Login_LoginOrEmail' => 'Login หรือ E-mail',
	'Login_LogIn' => 'ลงชื่อใช้งาน',
	'Login_Logout' => 'ลงชื่อออก',
	'Login_LostYourPassword' => 'คุณลืมรหัสผ่านใช่ไหม?',
	'Login_RemindPassword' => 'เตือนความจำรหัสผ่าน',
	'Login_PasswordReminder' => 'กรุณาใส่ชื่อผู้ใช้ หรือ ที่อยู่อีเมลล์ คุณจะได้รับรหัสผ่านใหม่ทางอีเมลล์',
	'Login_InvalidUsernameEmail' => 'ไม่มี ชื่อผู้ใช้ และ/หรือ ที่อยู่อีเมลล์ดังกล่าว',
	'Login_MailTopicPasswordRecovery' => 'การกู้คืนรหัสผ่าน',
	'Login_MailPasswordRecoveryBody' => 'สวัสดี %1s, \n\n รหัสผ่านใหม่ของคุณคือ :%2s \n\n คุณสามารถล็อคอินทันทีได้ที่ :%3s',
	'Login_PasswordSent' => 'รหัสผ่านได้ส่งไปให้คุณแล้ว กรุณาเช็คอีเมลล์ของคุณ ',
	'Login_ContactAdmin' => 'ปัญหาอาจเกิดจากโฮสของคุณปิดฟังก์ชั่น Mail()<br /> กรุณาติดต่อ Piwik Administrator ของคุณ',
	'Provider_WidgetProviders' => 'ผู้ให้บริการ',
	'Provider_SubmenuLocationsProvider' => 'ตำแหน่งที่อยู่ และ ผู้ให้บริการ',
	'Provider_ColumnProvider' => 'ผู้ให้บริการ',
	'Referers_Referers' => 'แหล่งที่มา',
	'Referers_SearchEngines' => 'เครื่องมือค้นหา',
	'Referers_Keywords' => 'คีย์เวิร์ด',
	'Referers_DirectEntry' => 'เข้าชมโดยตรง',
	'Referers_Websites' => 'เว็บไซต์',
	'Referers_Campaigns' => 'แคมเปญ',
	'Referers_Evolution' => 'พัฒนาการในระยะเวลา',
	'Referers_Type' => 'ชนิดของแหล่งที่มา',
	'Referers_TypeDirectEntries' => '%s การเข้าชมโดยตรง',
	'Referers_TypeSearchEngines' => '%s จากเครื่องมือค้นหา',
	'Referers_TypeWebsites' => '%s จากเว็บไซต์อ้างอิง',
	'Referers_TypeCampaigns' => '%s จากแคมเปญ',
	'Referers_Other' => 'อื่นๆ',
	'Referers_OtherDistinctSearchEngines' => '%s ตามเครื่องมือค้นหา',
	'Referers_OtherDistinctKeywords' => '%s ตามคีย์เวิร์ด',
	'Referers_OtherDistinctWebsites' => '%1s ตามเว็บไซต์',
	'Referers_OtherDistinctCampaigns' => '%s ตามแคมเปญ',
	'Referers_TagCloud' => 'Tag Cloud Output',
	'Referers_SubmenuEvolution' => 'พัฒนาการ',
	'Referers_SubmenuSearchEngines' => 'เครื่องมือค้นหา & คีย์เวิร์ด',
	'Referers_SubmenuWebsites' => 'เว็บไซต์',
	'Referers_SubmenuCampaigns' => 'แคมเปญ',
	'Referers_WidgetKeywords' => 'รายการคีย์เวิร์ด',
	'Referers_WidgetCampaigns' => 'รายการแคมเปญ',
	'Referers_WidgetExternalWebsites' => 'รายการเว็บไซต์ภายนอก',
	'Referers_WidgetSearchEngines' => 'เครื่องมือค้นหาที่ดีที่สุด',
	'Referers_WidgetOverview' => 'ภาพรวม',
	'Referers_MetricsFromRefererTypeGraphLegend' => '%1s(จาก %2s)',
	'Referers_ColumnRefererType' => 'ชนิดของแหล่งที่มา',
	'Referers_ColumnSearchEngine' => 'เครื่องมือค้นหา',
	'Referers_ColumnWebsite' => 'เว็บไซต์',
	'Referers_ColumnWebsitePage' => 'หน้าเว็บไซต์',
	'Referers_ColumnKeyword' => 'คีย์เวิร์ด',
	'Referers_ColumnCampaign' => 'แคมเปญ',
	'Referers_DetailsByRefererType' => 'รายละเอียดตามชนิดแหล่งที่มา',
	'Referers_Distinct' => 'ความแตกต่างระหว่างแหล่งที่มาอย่างชัดเจน',
	'Referers_DistinctSearchEngines' => 'ความแตกต่างระหว่างเครื่องมือค้นหาอย่างชัดเจน',
	'Referers_DistinctKeywords' => 'ความแตกต่างระหว่างคีย์เวิร์ดอย่างชัดเจน',
	'Referers_DistinctCampaigns' => 'ความแตกต่างระหว่างแคมเปญอย่างชัดเจน',
	'Referers_DistinctWebsites' => 'ความแตกต่างระหว่างเว็บไซต์อย่างชัดเจน',
	'Referers_UsingNDistinctUrls' => '(การใช้ %2s ความแตกต่างระหว่าง url อย่างชัดเจน',
	'SitesManager_Sites' => 'ไซต์',
	'SitesManager_WebsitesManagement' => 'การบริหารเว็บไซต์',
	'SitesManager_MainDescription' => 'รายงานการวิเคราะห์เว็บไซต์ของคุณ ที่ต้องการ! เพิ่ม, ปรับข้อมูล, ลบเว็บไซต์และแสดงการใช้ Javascript เพื่อแทรกในหน้าเว็บของท่าน',
	'SitesManager_JsCode' => 'โค้ดจาวาสคริป',
	'SitesManager_JsCodeHelp' => 'นี่คือจาวาสคริปโค้คที่คุณต้องเพิ่มใช้ไปในทุกหน้าของเว็บไซต์ของคุณ',
	'SitesManager_ShowJsCode' => 'แสดงโค้ด',
	'SitesManager_NoWebsites' => 'คุณไม่มีเว็บไซต์ที่จะจัดการ',
	'SitesManager_AddSite' => 'เพิ่มเว็บไซต์ใหม่',
	'SitesManager_Id' => 'ID',
	'SitesManager_Name' => 'Name',
	'SitesManager_Urls' => 'URLs',
	'SitesManager_MenuSites' => 'Sites',
	'SitesManager_DeleteConfirm_js' => 'คุณแน่ใจที่จะลบเว็บไซต์ %s หรือไม่? ',
	'SitesManager_ExceptionDeleteSite' => 'ไม่สามารถลบได้ หากคุณมีเว็บไซต์ที่ลงทะเบียนไว้เพียงเว็บเดียว เพิ่มเว็บไซต์ใหม่ก่อนที่จะทำการลบเว็บไซต์นี้',
	'SitesManager_ExceptionNoUrl' => 'คุณต้องระบุ URL เว็บไซต์อย่างน้อย 1 URL ',
	'SitesManager_ExceptionEmptyName' => 'ชื่อของไซต์ไม่สามารถเว้นว่างไว้ได้',
	'SitesManager_ExceptionInvalidUrl' => 'URL ดังกล่าว \'%s\' ไม่สามารถใช้ได้',
	'SitesManager_JsTrackingTag' => 'JavaScript Tracking Tag',
	'SitesManager_JsTrackingTagHelp' => 'นี่คือ JavaScript Tracking Tag ที่ต้องใส่ไว้ทุกหน้าในเว็บของคุณ',
	'SitesManager_ShowTrackingTag' => 'แสดง Tracking Tag',
	'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' => 'Export language',
	'TranslationsAdmin_Import' => 'Import language',
	'UserCountry_Country' => 'ประเทศ',
	'UserCountry_Continent' => 'ทวีป',
	'UserCountry_DistinctCountries' => '%s การเข้าชมตามประเทศ',
	'UserCountry_SubmenuLocations' => 'ตำแหน่งที่อยู่',
	'UserCountry_WidgetContinents' => 'ทวีปของผู้เข้าชม',
	'UserCountry_WidgetCountries' => 'ประเทศของผู้เข้าชม',
	'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' => 'ประเทศไทย',
	'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' => 'Tonga',
	'UserCountry_country_tr' => 'Tonga',
	'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' => '_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' => 'ยุโรป',
	'UserCountry_continent_afr' => 'อัฟริกา',
	'UserCountry_continent_asi' => 'เอเชีย',
	'UserCountry_continent_ams' => 'อเมริกาใต้และกลาง',
	'UserCountry_continent_amn' => 'อเมริกาเหนือ',
	'UserCountry_continent_oce' => 'โอเชียเนีย',
	'UserSettings_BrowserFamilies' => 'ประเภทของบราวเซอร์',
	'UserSettings_Browsers' => 'บราวเซอร์',
	'UserSettings_Plugins' => 'ปลั้กอิน',
	'UserSettings_Configurations' => 'ระบบของผู้เข้าชม',
	'UserSettings_OperatinsSystems' => 'ระบบปฎิบัติการ',
	'UserSettings_Resolutions' => 'ความละเอียด',
	'UserSettings_WideScreen' => 'จอภาพแบบกว้าง',
	'UserSettings_WidgetResolutions' => 'ความละเอียดจอภาพ',
	'UserSettings_WidgetBrowsers' => 'บราวเซอร์ของผู้เข้าชม',
	'UserSettings_WidgetPlugins' => 'รายการปลั้กอิน',
	'UserSettings_WidgetWidescreen' => 'จอปกติ/จอแบบกว้าง',
	'UserSettings_WidgetBrowserFamilies' => 'บราวเซอร์ตามประเภท',
	'UserSettings_WidgetOperatingSystems' => 'ระบบปฎิบัติการ',
	'UserSettings_WidgetGlobalVisitors' => 'การตั้งค่าผู้เข้าชมโดยรวม',
	'UserSettings_SubmenuSettings' => 'ระบบของผู้เข้าชม',
	'UserSettings_VisitorSettings' => 'การตั้งค่าของผู้เยี่ยมชม',
	'UserSettings_ColumnBrowserFamily' => 'ตระกูลของบราวเซอร์',
	'UserSettings_ColumnBrowser' => 'บราวเซอร์',
	'UserSettings_ColumnPlugin' => 'ปลักอิน',
	'UserSettings_ColumnConfiguration' => 'การตั้งค่า',
	'UserSettings_ColumnOperatinsSystem' => 'ระบบปฏิบัติการ',
	'UserSettings_ColumnResolution' => 'ความละเอียด',
	'UserSettings_ColumnTypeOfScreen' => 'ชนิดของจอภาพ',
	'UsersManager_UsersManagement' => 'การจัดการ User',
	'UsersManager_UsersManagementMainDescription' => 'สร้างผู้ใช้ใหม่หรืออัปเดทผู้ใช้ที่มีอยู่ จากนั้นคุณสามารถกำหนดสิทธิ์ของพวกเขาได้',
	'UsersManager_ManageAccess' => 'จัดการการเข้าถึง',
	'UsersManager_MainDescription' => 'การตัดสินใจว่าผู้ใช้รายใดที่ Piwik เข้าถึงเว็บไซต์ของคุณ นอกจากนี้คุณยังสามารถกำหนดสิทธิในเว็บไซต์ทั้งหมดในครั้งเดียว',
	'UsersManager_Sites' => 'ไซต์',
	'UsersManager_AllWebsites' => 'เว็บไซต์ทั้งหมด',
	'UsersManager_ApplyToAllWebsites' => 'กระทำกับเว็บไซต์ทั้งหมด',
	'UsersManager_User' => 'ผู้ใช้',
	'UsersManager_PrivNone' => 'ไม่เข้าใช้งาน',
	'UsersManager_PrivView' => 'มุมมอง',
	'UsersManager_PrivAdmin' => 'admin',
	'UsersManager_ChangeAllConfirm' => 'คุณแน่ใจที่จะเปลี่ยนการอนุญาตกับเว็บไซต์ทั้งหมด',
	'UsersManager_Login' => 'ชื่อ Login',
	'UsersManager_Password' => 'รหัสผ่าน',
	'UsersManager_Email' => 'อีเมลล์',
	'UsersManager_Alias' => 'นามแฝง',
	'UsersManager_Token' => 'รหัสสถิติ',
	'UsersManager_Edit' => 'แก้ไข',
	'UsersManager_AddUser' => 'เพิ่ม User',
	'UsersManager_MenuUsers' => 'Users',
	'UsersManager_DeleteConfirm_js' => 'คุณแน่ใจหรือไม่ที่จะลบผู้ใช้ %s ?',
	'UsersManager_ExceptionLoginExists' => 'Login \'%s\'มีอยู่แล้ว',
	'UsersManager_ExceptionEmailExists' => 'User กับ E-mail1 มีในระบบแล้ว',
	'UsersManager_ExceptionInvalidLoginFormat' => 'ชือ Login จะต้องยาว %s-%s และประกอบด้วย ตัวอักษร,ตัวเลข หรือตัว \'_\'หรือ\'-\'หรือ \'.\'',
	'UsersManager_ExceptionInvalidPassword' => 'รหัสผ่านจะต้องยาว 6-26 ตัวอักษร',
	'UsersManager_ExceptionInvalidEmail' => 'รูปแบบของอีเมลล์ไม่ถูกต้อง',
	'UsersManager_ExceptionDeleteDoesNotExist' => 'ผู้ใช้\'%s\'ไม่มีในระบบ ดังนั้นจึงไม่สามารถลบได้',
	'UsersManager_ExceptionAdminAnonymous' => 'คุณไม่สามารถให้สิทธิ์ "admin\'การเข้าถึงแก่ผู้ใช้\'anonymous\'ได้',
	'UsersManager_ExceptionEditAnonymous' => 'ผู้ใช้งานที่ไม่ระบุชื่อไม่สามารถแก้ไขหรือลบได้ ,มันถูกใช้งานโดย Piwik เพื่อระบุผู้ใช้ที่ไม่ได้เข้าสู่ระบบยัง ตัวอย่างเช่นคุณสามารถอนุญาติให้ผู้ใช้งานทั่วไปสามารถดูสถิติของเว็บคุณได้',
	'UsersManager_ExceptionUserDoesNotExist' => 'ผู้ใช้ \'%s\' ไม่มีในระบบ',
	'UsersManager_ExceptionAccessValues' => 'พารามิเตอร์เข้าถึงต้องมีหนึ่งค่าต่อไปนี้:[%s]',
	'UsersManager_ExceptionSuperUser' => 'การรีเควสผู้ใช้ในระดับ Super User ไม่สามารถเรียกดู แก้ไข หรือลบได้ด้วย API คุณสามารถแก้ไขรายละเอียดของ Super User ได้แบบแมนนวลในไฟลล์การตั้งค่า Piwik',
	'VisitFrequency_Evolution' => 'วิวัฒนาการตามเวลา',
	'VisitFrequency_ReturnVisits' => '%s ผู้เข้าชม',
	'VisitFrequency_ReturnActions' => '%s หน้าโดยผู้เข้าชม',
	'VisitFrequency_ReturnMaxActions' => '%s จำนวนหน้าสูงสุดโดยผู้เข้าชม',
	'VisitFrequency_ReturnTotalTime' => '%s เวลารวมโดยผู้เข้าชม',
	'VisitFrequency_ReturnBounces' => '%s เวลาที่',
	'VisitFrequency_WidgetOverview' => 'ภาพรวมความถี่ผู้เข้าชมที่กลับมา',
	'VisitFrequency_WidgetGraphReturning' => 'กราฟของผู้เข้าชม',
	'VisitFrequency_SubmenuFrequency' => 'ความถี่ของผู้เข้าชม',
	'VisitFrequency_ColumnReturningVisits' => 'ผู้เยี่ยมชมที่กลับมา',
	'VisitFrequency_ColumnActionsByReturningVisits' => 'การดำเนินการโดยผู้เยี่ยมชมที่กลับมา',
	'VisitFrequency_ColumnMaximumActionsByAReturningVisit' => 'การดำเนินการสูงสุดโดยผู้เยี่ยมชมที่กลับมา',
	'VisitFrequency_ColumnTotalTimeSpentByReturningVisits' => 'เวลารวมทั้งหมดที่ใช้ไปโดยผู้เยี่ยมที่กลับมา',
	'VisitFrequency_ColumnBounceRateForReturningVisits' => 'อัตราการเด้งของผู้เยี่ยมชมที่กลับมา',
	'VisitFrequency_ReturnBounceRate' => '%s ผู้เยี่ยมชมที่กลับมาแล้วเด้ง(ออกจากเว็บไซต์หลังจากเปิดหน้าเดียว)',
	'VisitTime_LocalTime' => 'จำนวนผู้ชมต่อเวลาท้องถิ่น',
	'VisitTime_ServerTime' => 'จำนวนผู้ชมต่อเวลาของเซิฟเวอร์',
	'VisitTime_WidgetLocalTime' => 'จำนวนผู้ชมตามเวลาท้องถิ่น',
	'VisitTime_WidgetServerTime' => 'จำนวนผู้ชมตามเวลาของเซิฟเวอร์',
	'VisitTime_SubmenuTimes' => 'เวลา',
	'VisitTime_NHour' => '%sชม.',
	'VisitTime_ColumnServerTime' => 'เวลาของเซิฟเวอร์',
	'VisitTime_ColumnLocalTime' => 'เวลาของท้องถิ่น',
	'VisitorInterest_VisitsPerDuration' => 'เวลาเฉลี่ยของผู้เข้าชม',
	'VisitorInterest_VisitsPerNbOfPages' => 'หน้าเฉลี่ยของผู้เข้าชม',
	'VisitorInterest_WidgetLengths' => 'ระยะเวลาการเข้าชม',
	'VisitorInterest_WidgetPages' => 'หน้าต่อผู้เข้าชม',
	'VisitorInterest_SubmenuFrequencyLoyalty' => 'ความถี่และความภักดี',
	'VisitorInterest_PlusXMin' => '%sนาที',
	'VisitorInterest_BetweenXYMinutes' => '%1s-%2sนาที',
	'VisitorInterest_OnePage' => '1 หน้า',
	'VisitorInterest_NPages' => '%s หน้า',
	'VisitorInterest_BetweenXYSeconds' => '%1s-%2sวิ',
	'VisitorInterest_ColumnVisitDuration' => 'ระยะเวลาผู้เยี่ยมชม',
	'VisitorInterest_ColumnPagesPerVisit' => 'หน้าต่อผู้เยี่ยมชม',
	'VisitsSummary_NbVisits' => '%s ผู้เข้าชม',
	'VisitsSummary_NbUniqueVisitors' => '%sผู้เข้าชมที่ไม่ซ้ำ',
	'VisitsSummary_NbActions' => '%s หน้าที่เข้าชม',
	'VisitsSummary_TotalTime' => '%s เวลาบนไซต์',
	'VisitsSummary_MaxNbActions' => '%s หน้าสูงสุดในหนึ่งเข้าชม',
	'VisitsSummary_NbBounced' => '%s หน้าที่ออกจากไซต์',
	'VisitsSummary_Evolution' => 'วิวัฒนาการใน 30วันล่าสุด %ss',
	'VisitsSummary_Report' => 'รายงาน',
	'VisitsSummary_GenerateTime' => '%s วินาทีที่ใช้',
	'VisitsSummary_GenerateQueries' => '%s การค้นหา',
	'VisitsSummary_WidgetLastVisits' => 'กราฟของผู้เข้าชมล่าสุด',
	'VisitsSummary_WidgetVisits' => 'ภาพรวมผู้เข้าชม',
	'VisitsSummary_WidgetLastVisitors' => 'ผู้เข้าชมที่ไม่ซ้ำกราฟล่าสุด',
	'VisitsSummary_WidgetOverviewGraph' => 'ภาพรวมและกราฟ',
	'VisitsSummary_SubmenuOverview' => 'ภาพรวมผู้เข้าชม',
	'VisitsSummary_NbVisitsBounced' => '%s ผู้เยี่ยมชมที่เด้ง(ออกจากเว็บไซต์หลังจากเปิดเพียงหน้าเดียว)',
	'VisitsSummary_EvolutionOverLastPeriods' => 'วิวัฒนาการในช่วงเวลาล่าสุด %s',
);