1 |
joku |
63 |
<?php |
2 |
|
|
/* This file is part of BBClone (A PHP based Web Counter on Steroids) |
3 |
|
|
* |
4 |
|
|
* SVN FILE $Id$ |
5 |
|
|
* |
6 |
|
|
* Copyright (C) 2001-2014, the BBClone Team (see doc/authors.txt for details) |
7 |
|
|
* |
8 |
|
|
* This program is free software: you can redistribute it and/or modify |
9 |
|
|
* it under the terms of the GNU General Public License as published by |
10 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
11 |
|
|
* (at your option) any later version. |
12 |
|
|
* |
13 |
|
|
* This program is distributed in the hope that it will be useful, |
14 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 |
|
|
* GNU General Public License for more details. |
17 |
|
|
* |
18 |
|
|
* See doc/copying.txt for details |
19 |
|
|
*/ |
20 |
|
|
|
21 |
matthys |
165 |
// Language: Thai (ภาษาไทย) |
22 |
|
|
|
23 |
joku |
63 |
// The DNS Extensions array |
24 |
|
|
$extensions = array( |
25 |
matthys |
165 |
"localdomain" => "Local", |
26 |
|
|
"numeric" => "Numeric", |
27 |
|
|
"unknown" => "ไม่มีข้อมูล", |
28 |
|
|
"museum" => "Museum", |
29 |
joku |
63 |
"travel" => "Travel", |
30 |
matthys |
165 |
"ipv4" => "IPv4", |
31 |
|
|
"ipv6" => "IPv6", |
32 |
|
|
|
33 |
|
|
"aero" => "Aero", |
34 |
|
|
"arpa" => "Arpa", |
35 |
joku |
63 |
"asia" => "Asia-Pacific", |
36 |
matthys |
165 |
"coop" => "Coop", |
37 |
|
|
"info" => "Information", |
38 |
joku |
63 |
"jobs" => "Employment", |
39 |
|
|
"mobi" => "Mobiles", |
40 |
matthys |
165 |
"name" => "Personal", |
41 |
|
|
"post" => "Postal Services", |
42 |
|
|
|
43 |
|
|
"biz" => "Business", |
44 |
joku |
63 |
"cat" => "Catalan", |
45 |
matthys |
165 |
"com" => "Commercial", |
46 |
|
|
"edu" => "Educational", |
47 |
|
|
"gal" => "Galician", |
48 |
|
|
"gov" => "US Government", |
49 |
|
|
"int" => "International Organizations", |
50 |
|
|
"mil" => "US Military", |
51 |
|
|
"net" => "Networks", |
52 |
|
|
"org" => "Organizations", |
53 |
|
|
"pro" => "Professional", |
54 |
joku |
63 |
"tel" => "Contacts", |
55 |
matthys |
165 |
"xxx" => "Pornographic", |
56 |
joku |
63 |
|
57 |
|
|
"ac" => "Ascension Island", |
58 |
|
|
"ad" => "Andorra", |
59 |
|
|
"ae" => "United Arab Emirates", |
60 |
|
|
"af" => "Afghanistan", |
61 |
|
|
"ag" => "Antigua and Barbuda", |
62 |
|
|
"ai" => "Anguilla", |
63 |
|
|
"al" => "Albania", |
64 |
|
|
"am" => "Armenia", |
65 |
|
|
"an" => "Netherlands Antilles", |
66 |
|
|
"ao" => "Angola", |
67 |
|
|
"aq" => "Antarctica", |
68 |
|
|
"ar" => "Argentina", |
69 |
|
|
"as" => "American Samoa", |
70 |
|
|
"at" => "Austria", |
71 |
|
|
"au" => "Australia", |
72 |
|
|
"aw" => "Aruba", |
73 |
|
|
"ax" => "หมู่เกาะโอลันด์", |
74 |
|
|
"az" => "Azerbaijan", |
75 |
|
|
"ba" => "Bosnia and Herzegovina", |
76 |
|
|
"bb" => "Barbados", |
77 |
|
|
"bd" => "Bangladesh", |
78 |
|
|
"be" => "Belgium", |
79 |
|
|
"bf" => "Burkina Faso", |
80 |
|
|
"bg" => "Bulgaria", |
81 |
|
|
"bh" => "Bahrain", |
82 |
|
|
"bi" => "Burundi", |
83 |
|
|
"bj" => "Benin", |
84 |
|
|
"bm" => "Bermuda", |
85 |
|
|
"bn" => "Brunei", |
86 |
|
|
"bo" => "Bolivia", |
87 |
|
|
"br" => "Brazil", |
88 |
|
|
"bs" => "Bahamas", |
89 |
|
|
"bt" => "Bhutan", |
90 |
|
|
"bw" => "Botswana", |
91 |
|
|
"by" => "Belarus", |
92 |
|
|
"bz" => "Belize", |
93 |
|
|
"ca" => "Canada", |
94 |
|
|
"cc" => "Cocos Islands", |
95 |
|
|
"cd" => "Congo", |
96 |
|
|
"cf" => "Central African Republic", |
97 |
|
|
"cg" => "Congo", |
98 |
|
|
"ch" => "Switzerland", |
99 |
|
|
"ci" => "Ivory Coast", |
100 |
|
|
"ck" => "Cook Islands", |
101 |
|
|
"cl" => "Chile", |
102 |
|
|
"cm" => "Cameroon", |
103 |
|
|
"cn" => "China", |
104 |
|
|
"co" => "Colombia", |
105 |
|
|
"cr" => "Costa Rica", |
106 |
|
|
"cu" => "Cuba", |
107 |
|
|
"cv" => "Cape Verde", |
108 |
matthys |
165 |
"cw" => "Curaçao", |
109 |
joku |
63 |
"cx" => "Christmas Island", |
110 |
|
|
"cy" => "Cyprus", |
111 |
|
|
"cz" => "Czech Republic", |
112 |
|
|
"de" => "Germany", |
113 |
|
|
"dj" => "Djibouti", |
114 |
|
|
"dk" => "Denmark", |
115 |
|
|
"dm" => "Dominica", |
116 |
|
|
"do" => "Dominican Republic", |
117 |
|
|
"dz" => "Algeria", |
118 |
|
|
"ec" => "Ecuador", |
119 |
|
|
"ee" => "Estonia", |
120 |
|
|
"eg" => "Egypt", |
121 |
|
|
"er" => "Eritrea", |
122 |
|
|
"es" => "Spain", |
123 |
|
|
"et" => "Ethiopia", |
124 |
|
|
"eu" => "European Union", |
125 |
|
|
"fi" => "Finland", |
126 |
|
|
"fj" => "Fiji", |
127 |
|
|
"fk" => "Falkland Islands", |
128 |
|
|
"fm" => "Micronesia", |
129 |
|
|
"fo" => "Faroe Islands", |
130 |
|
|
"fr" => "France", |
131 |
|
|
"ga" => "Gabon", |
132 |
|
|
"gd" => "Grenada", |
133 |
|
|
"ge" => "Georgia", |
134 |
|
|
"gf" => "French Guiana", |
135 |
|
|
"gg" => "Guernsey", |
136 |
|
|
"gh" => "Ghana", |
137 |
|
|
"gi" => "Gibraltar", |
138 |
|
|
"gl" => "Greenland", |
139 |
|
|
"gm" => "Gambia", |
140 |
|
|
"gn" => "Guinea", |
141 |
|
|
"gp" => "Guadeloupe", |
142 |
|
|
"gq" => "Equatorial Guinea", |
143 |
|
|
"gr" => "Greece", |
144 |
|
|
"gs" => "South Georgia and the South Sandwich Islands", |
145 |
|
|
"gt" => "Guatemala", |
146 |
|
|
"gu" => "Guam", |
147 |
|
|
"gw" => "Guinea-Bissau", |
148 |
|
|
"gy" => "Guyana", |
149 |
|
|
"hk" => "Hong Kong", |
150 |
|
|
"hm" => "Heard and Mc Donald Islands", |
151 |
|
|
"hn" => "Honduras", |
152 |
|
|
"hr" => "Croatia", |
153 |
|
|
"ht" => "Haiti", |
154 |
|
|
"hu" => "Hungary", |
155 |
|
|
"id" => "Indonesia", |
156 |
|
|
"ie" => "Ireland", |
157 |
|
|
"il" => "Israel", |
158 |
|
|
"im" => "Isle of Man", |
159 |
|
|
"in" => "India", |
160 |
|
|
"io" => "UK Indian Ocean Territory", |
161 |
|
|
"iq" => "Iraq", |
162 |
|
|
"ir" => "Iran", |
163 |
|
|
"is" => "Iceland", |
164 |
|
|
"it" => "Italy", |
165 |
|
|
"je" => "Jersey", |
166 |
|
|
"jm" => "Jamaica", |
167 |
|
|
"jo" => "Jordan", |
168 |
|
|
"jp" => "Japan", |
169 |
|
|
"ke" => "Kenya", |
170 |
|
|
"kg" => "Kyrgyzstan", |
171 |
|
|
"kh" => "Cambodia", |
172 |
|
|
"ki" => "Kiribati", |
173 |
|
|
"km" => "Comoros", |
174 |
|
|
"kn" => "Saint Kitts and Nevis", |
175 |
|
|
"kp" => "North Korea", |
176 |
|
|
"kr" => "Korea", |
177 |
|
|
"kw" => "Kuwait", |
178 |
|
|
"ky" => "Cayman Islands", |
179 |
|
|
"kz" => "Kazakhstan", |
180 |
|
|
"la" => "Laos", |
181 |
|
|
"lb" => "Lebanon", |
182 |
|
|
"lc" => "Saint Lucia", |
183 |
|
|
"li" => "Liechtenstein", |
184 |
|
|
"lk" => "Sri Lanka", |
185 |
|
|
"lr" => "Liberia", |
186 |
|
|
"ls" => "Lesotho", |
187 |
|
|
"lt" => "Lithuania", |
188 |
|
|
"lu" => "Luxembourg", |
189 |
|
|
"lv" => "Latvia", |
190 |
|
|
"ly" => "Libya", |
191 |
|
|
"ma" => "Morocco", |
192 |
|
|
"mc" => "Monaco", |
193 |
|
|
"md" => "Moldova", |
194 |
|
|
"me" => "ประเทศมอนเตเนโกร", |
195 |
|
|
"mg" => "Madagascar", |
196 |
|
|
"mh" => "Marshall Islands", |
197 |
|
|
"mk" => "Macedonia", |
198 |
|
|
"ml" => "Mali", |
199 |
|
|
"mm" => "Myanmar", |
200 |
|
|
"mn" => "Mongolia", |
201 |
|
|
"mo" => "Macau", |
202 |
|
|
"mp" => "Northern Mariana Islands", |
203 |
|
|
"mq" => "Martinique", |
204 |
|
|
"mr" => "Mauritania", |
205 |
|
|
"ms" => "Montserrat", |
206 |
|
|
"mt" => "Malta", |
207 |
|
|
"mu" => "Mauritius", |
208 |
|
|
"mv" => "Maldives", |
209 |
|
|
"mw" => "Malawi", |
210 |
|
|
"mx" => "Mexico", |
211 |
|
|
"my" => "Malaysia", |
212 |
|
|
"mz" => "Mozambique", |
213 |
|
|
"na" => "Namibia", |
214 |
|
|
"nc" => "New Caledonia", |
215 |
|
|
"ne" => "Niger", |
216 |
|
|
"nf" => "Norfolk Island", |
217 |
|
|
"ng" => "Nigeria", |
218 |
|
|
"ni" => "Nicaragua", |
219 |
|
|
"nl" => "Netherlands", |
220 |
|
|
"no" => "Norway", |
221 |
|
|
"np" => "Nepal", |
222 |
|
|
"nr" => "Nauru", |
223 |
|
|
"nu" => "Niue", |
224 |
|
|
"nz" => "New Zealand", |
225 |
|
|
"om" => "Oman", |
226 |
|
|
"pa" => "Panama", |
227 |
|
|
"pe" => "Peru", |
228 |
|
|
"pf" => "French Polynesia", |
229 |
|
|
"pg" => "Papua New Guinea", |
230 |
|
|
"ph" => "Philippines", |
231 |
|
|
"pk" => "Pakistan", |
232 |
|
|
"pl" => "Poland", |
233 |
|
|
"pm" => "St. Pierre and Miquelon", |
234 |
|
|
"pn" => "Pitcairn", |
235 |
|
|
"pr" => "Puerto Rico", |
236 |
|
|
"ps" => "Palestine", |
237 |
|
|
"pt" => "Portugal", |
238 |
|
|
"pw" => "Palau", |
239 |
|
|
"py" => "Paraguay", |
240 |
|
|
"qa" => "Qatar", |
241 |
|
|
"re" => "Reunion", |
242 |
|
|
"ro" => "Romania", |
243 |
|
|
"rs" => "ประเทศเซอร์เบีย", |
244 |
|
|
"ru" => "Russia", |
245 |
|
|
"rw" => "Rwanda", |
246 |
|
|
"sa" => "Saudi Arabia", |
247 |
|
|
"sb" => "Solomon Islands", |
248 |
|
|
"sc" => "Seychelles", |
249 |
|
|
"sd" => "Sudan", |
250 |
|
|
"se" => "Sweden", |
251 |
|
|
"sg" => "Singapore", |
252 |
|
|
"sh" => "St. Helena", |
253 |
|
|
"si" => "Slovenia", |
254 |
|
|
"sk" => "Slovakia", |
255 |
|
|
"sl" => "Sierra Leone", |
256 |
|
|
"sm" => "San Marino", |
257 |
|
|
"sn" => "Senegal", |
258 |
|
|
"so" => "Somalia", |
259 |
|
|
"sr" => "Suriname", |
260 |
|
|
"st" => "Sao Tome and Principe", |
261 |
|
|
"su" => "Soviet Union", |
262 |
|
|
"sv" => "El Salvador", |
263 |
matthys |
165 |
"sx" => "Sint Maarten", |
264 |
joku |
63 |
"sy" => "Syria", |
265 |
|
|
"sz" => "Swaziland", |
266 |
|
|
"tc" => "Turks and Caicos Islands", |
267 |
|
|
"td" => "Chad", |
268 |
|
|
"tf" => "French Southern Territories", |
269 |
|
|
"tg" => "Togo", |
270 |
|
|
"th" => "ประเทศไทย", |
271 |
|
|
"tj" => "Tajikistan", |
272 |
|
|
"tk" => "Tokelau", |
273 |
|
|
"tl" => "East Timor", |
274 |
|
|
"tm" => "Turkmenistan", |
275 |
|
|
"tn" => "Tunisia", |
276 |
|
|
"to" => "Tonga", |
277 |
|
|
"tp" => "East Timor", |
278 |
|
|
"tr" => "Turkey", |
279 |
|
|
"tt" => "Trinidad and Tobago", |
280 |
|
|
"tv" => "Tuvalu", |
281 |
|
|
"tw" => "Taiwan", |
282 |
|
|
"tz" => "Tanzania", |
283 |
|
|
"ua" => "Ukraine", |
284 |
|
|
"ug" => "Uganda", |
285 |
|
|
"uk" => "United Kingdom", |
286 |
|
|
"us" => "United States", |
287 |
|
|
"uy" => "Uruguay", |
288 |
|
|
"uz" => "Uzbekistan", |
289 |
|
|
"va" => "Vatican State", |
290 |
|
|
"vc" => "St. Vincent and the Grenadines", |
291 |
|
|
"ve" => "Venezuela", |
292 |
|
|
"vg" => "Virgin Islands (UK)", |
293 |
|
|
"vi" => "Virgin Islands (US)", |
294 |
|
|
"vn" => "Vietnam", |
295 |
|
|
"vu" => "Vanuatu", |
296 |
|
|
"wf" => "Wallis and Futuna Islands", |
297 |
|
|
"ws" => "Samoa", |
298 |
|
|
"ye" => "Yemen", |
299 |
|
|
"yt" => "Mayotte", |
300 |
|
|
"za" => "South Africa", |
301 |
|
|
"zm" => "Zambia", |
302 |
|
|
"zw" => "Zimbabwe", |
303 |
matthys |
165 |
|
304 |
|
|
// No longer active but needed for history purpose |
305 |
|
|
"bl" => "แซ็งบาร์เตเลอมี", |
306 |
|
|
"bv" => "Bouvet Island", |
307 |
|
|
"bq" => "Caribbean Netherlands", |
308 |
|
|
"cs" => "Serbia and Montenegro", |
309 |
|
|
"eh" => "Western Sahara", |
310 |
|
|
"gb" => "United Kingdom", |
311 |
|
|
"mf" => "Saint Martin", |
312 |
|
|
"sj" => "Svalbard and Jan Mayen Islands", |
313 |
|
|
"ss" => "South Sudan", |
314 |
|
|
"um" => "US Minor Outlying Islands", |
315 |
|
|
"yu" => "Serbia and Montenegro", |
316 |
|
|
"zr" => "Zaire" |
317 |
joku |
63 |
); |
318 |
|
|
|
319 |
|
|
// The main Translation array |
320 |
|
|
$translation = array( |
321 |
|
|
|
322 |
|
|
// Specific charset |
323 |
|
|
"global_charset" => "utf-8", |
324 |
|
|
|
325 |
|
|
// Date format (used with date()) |
326 |
|
|
"global_time_format" => "M jS, H:i:s", |
327 |
|
|
"global_day_format" => "l F jS, Y", |
328 |
|
|
"global_hours_format" => "l F jS, G:00", |
329 |
|
|
"global_month_format" => "F Y", |
330 |
|
|
|
331 |
|
|
// Global translation |
332 |
joku |
164 |
"global_titlebar"=> "สถิติสำหรับ %SERVER สร้างขึ้นบน %DATE", |
333 |
joku |
63 |
"global_bbclone_copyright" => "The BBClone team - ใช้สัญญาอนุญาตแบบ", |
334 |
|
|
"global_last_reset" => "เริ่มนับสถิติเมื่อ:", |
335 |
joku |
164 |
"global_yes" => "ใช่", |
336 |
|
|
"global_no" => "ไม่", |
337 |
joku |
63 |
|
338 |
|
|
// The error messages |
339 |
|
|
"error_cannot_see_config" => "คุณไม่มีสิทธิ์ในการดูการตั้งค่าของ BBClone บนเซิร์ฟเวอร์นี้", |
340 |
|
|
|
341 |
|
|
// Miscellaneous translations |
342 |
|
|
"misc_other" => "อื่นๆ", |
343 |
|
|
"misc_unknown" => "ไม่มีข้อมูล", |
344 |
|
|
"misc_second_unit" => "วินาที", |
345 |
joku |
164 |
"misc_ignored" => "ละเว้น", |
346 |
joku |
63 |
|
347 |
|
|
// The Navigation Bar |
348 |
|
|
"navbar_main_site" => "เว็บหลัก", |
349 |
|
|
"navbar_configuration" => "ตั้งค่า", |
350 |
|
|
"navbar_global_stats" => "สถิติรวม", |
351 |
|
|
"navbar_detailed_stats" => "สถิติละเอียด", |
352 |
|
|
"navbar_time_stats" => "สถิติ (แยกตามเวลา)", |
353 |
joku |
164 |
"navbar_language" => "ภาษา", |
354 |
|
|
"navbar_go" => "ไป", |
355 |
joku |
63 |
|
356 |
matthys |
165 |
// Detailed Stats words |
357 |
joku |
63 |
"dstat_id" => "ID", |
358 |
|
|
"dstat_time" => "เวลา", |
359 |
|
|
"dstat_visits" => "จำนวนครั้ง", |
360 |
|
|
"dstat_extension" => "ประเทศที่มา", |
361 |
|
|
"dstat_dns" => "ชื่อโฮสต์", |
362 |
|
|
"dstat_from" => "ลิงก์มาจาก", |
363 |
|
|
"dstat_os" => "ระบบปฏิบัติการ", |
364 |
|
|
"dstat_browser" => "เบราว์เซอร์", |
365 |
|
|
"dstat_visible_rows" => "จำนวนที่แสดง", |
366 |
|
|
"dstat_green_rows" => "แถวสีเขียว", |
367 |
|
|
"dstat_blue_rows" => "แถวสีน้ำเงิน", |
368 |
|
|
"dstat_red_rows" => "แถวสีแดง", |
369 |
|
|
"dstat_search" => "ค้นหา", |
370 |
|
|
"dstat_last_page" => "หน้าสุดท้ายที่เข้า", |
371 |
|
|
"dstat_last_visit" => "เข้าครั้งล่าสุดใช้เมื่อ", |
372 |
joku |
164 |
"dstat_robots" => "หุ่นยนต์", |
373 |
|
|
"dstat_my_visit" => "การเข้าชมจาก IP ของคุณ", |
374 |
joku |
63 |
"dstat_no_data" => "ไม่มีข้อมูล", |
375 |
|
|
"dstat_prx" => "Proxy Server", |
376 |
|
|
"dstat_ip" => "หมายเลข IP", |
377 |
joku |
164 |
"dstat_user_agent" => "ตัวแทนผู้ใช้", |
378 |
|
|
"dstat_nr" => "จำนวน", |
379 |
|
|
"dstat_pages" => "หน้า", |
380 |
joku |
63 |
"dstat_visit_length" => "ช่วงเวลาในการเข้า", |
381 |
joku |
164 |
"dstat_reloads" => "โหลด", |
382 |
|
|
"dstat_whois_information" => "ค้นหาข้อมูลเกี่ยวกับเรื่องนี้ที่อยู่ IP", |
383 |
joku |
63 |
|
384 |
matthys |
165 |
// Global Stats words |
385 |
joku |
164 |
"gstat_accesses" => "การเข้าถึง", |
386 |
joku |
63 |
"gstat_total_visits" => "จำนวนการเข้าทั้งหมด", |
387 |
|
|
"gstat_total_unique" => "จำนวนการเข้าทั้งหมด (ไม่นับซ้ำ)", |
388 |
|
|
"gstat_operating_systems" => "ระบบปฏิบัติการ %d อันดับสูงสุด", |
389 |
|
|
"gstat_browsers" => "เว็บเบราวเซอร์ %d อันดับสูงสุด", |
390 |
|
|
"gstat_extensions" => "ประเทศที่มา %d อันดับสูงสุด", |
391 |
|
|
"gstat_robots" => "Robots %d อันดับสูงสุด", |
392 |
|
|
"gstat_pages" => "หน้าที่เข้า %d อันดับสูงสุด", |
393 |
|
|
"gstat_origins" => "ลิงก์ที่มา %d อันดับสูงสุด", |
394 |
|
|
"gstat_hosts" => "โฮสต์ %d อันดับสูงสุด", |
395 |
|
|
"gstat_keys" => "คีย์เวิร์ด %d อันดับสูงสุด", |
396 |
|
|
"gstat_total" => "รวม", |
397 |
|
|
"gstat_not_specified" => "ไม่ระบุ", |
398 |
|
|
|
399 |
matthys |
165 |
// Time Stats words |
400 |
joku |
63 |
"tstat_su" => "อา", |
401 |
|
|
"tstat_mo" => "จ", |
402 |
|
|
"tstat_tu" => "อ", |
403 |
|
|
"tstat_we" => "พ", |
404 |
|
|
"tstat_th" => "พฤ", |
405 |
|
|
"tstat_fr" => "ศ", |
406 |
|
|
"tstat_sa" => "ส", |
407 |
|
|
|
408 |
|
|
|
409 |
joku |
155 |
"tstat_full_su" => "อาทิตย์", |
410 |
|
|
"tstat_full_mo" => "จันทร์", |
411 |
|
|
"tstat_full_tu" => "อังคาร", |
412 |
|
|
"tstat_full_we" => "พุธ", |
413 |
|
|
"tstat_full_th" => "พฤหัสบดี", |
414 |
|
|
"tstat_full_fr" => "ศุกร์", |
415 |
|
|
"tstat_full_sa" => "เสาร์", |
416 |
|
|
|
417 |
joku |
63 |
"tstat_jan" => "ม.ค.", |
418 |
|
|
"tstat_feb" => "ก.พ.", |
419 |
|
|
"tstat_mar" => "มี.ค.", |
420 |
|
|
"tstat_apr" => "เม.ย.", |
421 |
|
|
"tstat_may" => "พ.ค.", |
422 |
|
|
"tstat_jun" => "มิ.ย.", |
423 |
|
|
"tstat_jul" => "ก.ค.", |
424 |
|
|
"tstat_aug" => "ส.ค.", |
425 |
|
|
"tstat_sep" => "ก.ย.", |
426 |
|
|
"tstat_oct" => "ต.ค.", |
427 |
|
|
"tstat_nov" => "พ.ย.", |
428 |
|
|
"tstat_dec" => "ธ.ค.", |
429 |
|
|
|
430 |
|
|
|
431 |
joku |
155 |
"tstat_full_jan" => "มกราคม", |
432 |
|
|
"tstat_full_feb" => "กุมภาพันธ์", |
433 |
|
|
"tstat_full_mar" => "มีนาคม", |
434 |
|
|
"tstat_full_apr" => "เมษายน", |
435 |
|
|
"tstat_full_may" => "พฤษภาคม", |
436 |
|
|
"tstat_full_jun" => "มิถุนายน", |
437 |
|
|
"tstat_full_jul" => "กรกฎาคม", |
438 |
|
|
"tstat_full_aug" => "สิงหาคม", |
439 |
|
|
"tstat_full_sep" => "กันยายน", |
440 |
|
|
"tstat_full_oct" => "ตุลาคม", |
441 |
|
|
"tstat_full_nov" => "พฤศจิกายน", |
442 |
|
|
"tstat_full_dec" => "ธันวาคม", |
443 |
|
|
|
444 |
joku |
63 |
"tstat_last_day" => "รอบวันนี้", |
445 |
|
|
"tstat_last_week" => "รอบสัปดาห์นี้", |
446 |
|
|
"tstat_last_month" => "รอบเดือนนี้", |
447 |
|
|
"tstat_last_year" => "รอบปีนี้", |
448 |
joku |
164 |
"tstat_average" => "เฉลี่ย", |
449 |
joku |
63 |
|
450 |
|
|
// Loadtime notice |
451 |
joku |
164 |
"generated" => "หน้าสร้างขึ้นใน ", |
452 |
|
|
"seconds" => " วินาที", |
453 |
joku |
63 |
|
454 |
|
|
// Configuration page words and sentences |
455 |
|
|
"config_variable_name" => "ชื่อตัวแปร", |
456 |
|
|
"config_variable_value" => "ค่าตัวแปร", |
457 |
|
|
"config_explanations" => "คำอธิบาย", |
458 |
|
|
|
459 |
matthys |
165 |
// needs to be translated |
460 |
joku |
63 |
"config_BBC_MAINSITE" => |
461 |
|
|
"If this variable has been set, a link to the specified location will be |
462 |
|
|
generated. The default value is pointing to the parent directory. In case your |
463 |
|
|
main site is located elsewhere, you probably want to adjust the value to suit |
464 |
|
|
your needs.<br /> |
465 |
|
|
Examples:<br /> |
466 |
|
|
\$BBC_MAINSITE = "http://www.myserver.com/"<br /> |
467 |
|
|
\$BBC_MAINSITE = ".."<br /> |
468 |
|
|
\$BBC_MAINSITE = "";", |
469 |
|
|
|
470 |
|
|
"config_BBC_SHOW_CONFIG" => |
471 |
|
|
"BBClone defaults to revealing the stats' settings. In case this behavior isn't |
472 |
|
|
desired you can deny access to it by deactivating the option.<br /> |
473 |
|
|
Examples:<br /> |
474 |
|
|
\$BBC_SHOW_CONFIG = 1;<br /> |
475 |
|
|
\$BBC_SHOW_CONFIG = "";", |
476 |
|
|
|
477 |
|
|
"config_BBC_TITLEBAR" => |
478 |
|
|
"The title of your stats pages.<br /> |
479 |
|
|
It will be displayed in the navigation bar of all BBClone pages<br /> |
480 |
|
|
The following macros are recognised:<br /> |
481 |
|
|
<ul> |
482 |
|
|
<li>%SERVER: server name,</li> |
483 |
|
|
<li>%DATE: current date.</li> |
484 |
|
|
</ul> |
485 |
|
|
HTML Tags are allowed.<br /> |
486 |
|
|
Examples:<br /> |
487 |
|
|
\$BBC_TITLEBAR = "Statistics for %SERVER generated the %DATE";<br /> |
488 |
|
|
\$BBC_TITLEBAR = "My stats from %DATE look like this:"; |
489 |
|
|
<br />", |
490 |
|
|
|
491 |
|
|
"config_BBC_LANGUAGE" => |
492 |
|
|
"BBClone's default language, in case it hasn't been specified by the browser. |
493 |
|
|
The following languages are supported: |
494 |
matthys |
165 |
<p>ar, bg, bs, ca, cs, da, de, el, en, es, fi, fr, hu, id, it, ja, ko, lt, mk, nb, |
495 |
|
|
nl, pl, pt, pt-br, ro, ru, sk, sl, sv, th, tr, ua, zh-cn and zh-tw</p>", |
496 |
joku |
63 |
|
497 |
|
|
"config_BBC_MAXTIME" => |
498 |
|
|
"This variable defines the length of an unique visit in seconds. Each hit from |
499 |
|
|
the same visitor within this period will be considered as one visit, as long as |
500 |
|
|
two successive hits don't exceed the specified limit. Default is the de facto |
501 |
|
|
web standard of 30 minutes (1800 seconds), but depending on your needs you may |
502 |
|
|
wish to assign a different value.<br /> |
503 |
|
|
Examples:<br /> |
504 |
|
|
\$BBC_MAXTIME = 0;<br /> |
505 |
|
|
\$BBC_MAXTIME = 1800;", |
506 |
|
|
|
507 |
|
|
"config_BBC_MAXVISIBLE" => |
508 |
|
|
"How many entries you want to have listed in the detailed stats? The default |
509 |
|
|
value is 100. It's recommended not to set it higher than 500 to avoid too heavy |
510 |
|
|
load.", |
511 |
|
|
|
512 |
|
|
"config_BBC_DETAILED_STAT_FIELDS" => |
513 |
|
|
"The variable \$BBC_DETAILED_STAT_FIELDS determines the columns to be displayed |
514 |
|
|
in the detailed statistics. Possible columns are: |
515 |
|
|
<ul> |
516 |
matthys |
166 |
<li>id => The x-th visitor since you've started counting</li> |
517 |
|
|
<li>time => The time at which the last hit was registerred</li> |
518 |
|
|
<li>visits => The hits of one unique visitor</li> |
519 |
|
|
<li>dns => Visitor's hostname</li> |
520 |
|
|
<li>ip => Visitor's IP address</li> |
521 |
|
|
<li>os => The operating system (if available and/or no robot)</li> |
522 |
|
|
<li>browser => The software used for establishing the connection</li> |
523 |
|
|
<li>ext => Visitor's country or extension</li> |
524 |
|
|
<li>referer => The link from which a visitor came (if available)</li> |
525 |
|
|
<li>page => The last visited page</li> |
526 |
|
|
<li>search => The search query a visitor used (if available)</li> |
527 |
joku |
63 |
</ul> |
528 |
|
|
The same order you've arranged the columns will be used for display.<br /> |
529 |
|
|
Examples:<br /> |
530 |
|
|
\$BBC_DETAILED_STAT_FIELDS = "id, time, visits, ip, ext, os, browser"; |
531 |
|
|
<br /> |
532 |
|
|
\$BBC_DETAILED_STAT_FIELDS = "date, ext, browser, os, ip";<br />", |
533 |
|
|
|
534 |
|
|
"config_BBC_TIME_OFFSET" => |
535 |
|
|
"In case the server time doesn't match your local timezone, you can adjust the |
536 |
|
|
time in minutes by using this switch. Negative values will set back the time, |
537 |
|
|
positive ones will set it forth.<br /> |
538 |
|
|
Examples:<br /> |
539 |
|
|
\$BBC_TIME_OFFSET = 300;<br /> |
540 |
|
|
\$BBC_TIME_OFFSET = -300;<br /> |
541 |
|
|
\$BBC_TIME_OFFSET = 0;", |
542 |
|
|
|
543 |
|
|
"config_BBC_NO_DNS" => |
544 |
|
|
"This options defines, whether IP addresses should be resolved to hostnames or |
545 |
|
|
not. While hostnames tell a lot more about the visitor, resolving them may |
546 |
|
|
considerably slow down your site, if the DNS servers used are slow, limited in |
547 |
|
|
their capacity or otherwise unreliable. Setting this variable may solve the |
548 |
|
|
problem.<br /> |
549 |
|
|
Examples:<br /> |
550 |
|
|
\$BBC_NO_DNS = 1;<br /> |
551 |
|
|
\$BBC_NO_DNS = "";", |
552 |
|
|
|
553 |
|
|
"config_BBC_NO_HITS" => |
554 |
|
|
"BBClone's default is to show hits in the time stats, because it gives a quite |
555 |
|
|
useful Impression from the actual server load. If, however, you prefer to use |
556 |
|
|
unique visits as base for your time stats, you can change the way of counting |
557 |
|
|
by setting this variable.<br /> |
558 |
|
|
Examples:<br /> |
559 |
|
|
\$BBC_NO_HITS = 1;<br /> |
560 |
|
|
\$BBC_NO_HITS = "";", |
561 |
|
|
|
562 |
|
|
"config_BBC_IGNORE_IP" => |
563 |
|
|
"This option can be used to exclude particular IP addresses or address ranges |
564 |
|
|
from counting. In case you want to add several expressions use a comma as |
565 |
|
|
separator.<br /> |
566 |
|
|
Examples:<br /> |
567 |
|
|
\$BBC_IGNORE_IP = "127., 192.168.";<br /> |
568 |
|
|
\$BBC_IGNORE_IP = "";", |
569 |
|
|
|
570 |
|
|
"config_BBC_IGNORE_REFER" => |
571 |
|
|
"In case you don't want to have particular referrers from your visitors listed |
572 |
|
|
in your ranking or detailed stats, you can specify one or more keywords used |
573 |
|
|
for blocking if a referrer matches up against them. If you use more keywords, |
574 |
|
|
please use a comma as separator.<br /> |
575 |
|
|
Examples:<br /> |
576 |
|
|
\$BBC_IGNORE_REFER = "spambot.org, .escort.";<br /> |
577 |
|
|
\$BBC_IGNORE_REFER = "";", |
578 |
|
|
|
579 |
|
|
"config_BBC_IGNORE_BOTS" => |
580 |
|
|
"You can use this option to determine the treatment of robots. The default is |
581 |
|
|
to ignore them in the top hosts ranking but leave them in the remaining |
582 |
|
|
stats. If you don't want to see any robots at all you can set this option to |
583 |
|
|
"2", then only human visits will be taken into account.<br /> |
584 |
|
|
Examples:<br /> |
585 |
|
|
\$BBC_IGNORE_BOTS = 2;<br /> |
586 |
|
|
\$BBC_IGNORE_BOTS = 1;<br /> |
587 |
|
|
\$BBC_IGNORE_BOTS = "";", |
588 |
|
|
|
589 |
|
|
"config_BBC_IGNORE_AGENT" => |
590 |
|
|
"This option defines how BBClone tells one visitor from another. Default is to |
591 |
|
|
use the IP address only, which provides realistic figures in most cases. If, |
592 |
|
|
however, your visitors often are hidden behind proxy servers, deactivation of |
593 |
|
|
this option could provide more realistic figures, since a new visitor will be |
594 |
|
|
assumed by the time the user agent has changed.<br /> |
595 |
|
|
Examples:<br /> |
596 |
|
|
\$BBC_IGNORE_AGENT = 1;<br /> |
597 |
|
|
\$BBC_IGNORE_AGENT = "";", |
598 |
|
|
|
599 |
|
|
"config_BBC_KILL_STATS" => |
600 |
|
|
"Whenever you wish to reset your stats you can activate this switch and have |
601 |
|
|
them deleted by the next visit. Don't forget to deactivate it afterwards, else |
602 |
|
|
you'll probably experience unusually low traffic ;).<br /> |
603 |
|
|
Examples:<br /> |
604 |
|
|
\$BBC_KILL_STATS = 1;<br /> |
605 |
|
|
\$BBC_KILL_STATS = "";", |
606 |
|
|
|
607 |
|
|
"config_BBC_PURGE_SINGLE" => |
608 |
|
|
"Host and referrer stats can generate a huge amount of data, however mostly |
609 |
|
|
caused by one time visitors. By enabling this switch you can purge these |
610 |
|
|
entries and considerably shrink access.php in its size without affecting your |
611 |
|
|
actual visible host and referrer ranking. The amount of hits will be added to |
612 |
|
|
the "not_specified" entries to keep the overall score intact.<br /> |
613 |
|
|
Examples:<br /> |
614 |
|
|
\$BBC_PURGE_SINGLE = 1;<br /> |
615 |
|
|
\$BBC_PURGE_SINGLE = "";" |
616 |
|
|
|
617 |
|
|
); |
618 |
matthys |
165 |
?> |