Slimstat Analytics - Version 4.3.2.2

Version Description

  • [Note] Just a quick note to let you know that we will be focusing on a major project in the next few weeks, so both development and customer support might be less responsive than usual. Please be patient, and refrain from submitting the same request more than once. Thank you!
  • [New] Slimstat now speaks Belarusian thanks to Natasha from UStarCash.
  • [Fix] Bug in Javascript tracker with Async mode enabled was duplicating entries in the Access Log.
  • [Fix] Variable type mismatch was preventing scheduled posts from publishing (thank you, Salpertriere)
  • [Fix] Some Javascript strings (used to generate the charts) where not correctly encoded and were breaking the source code in certain localizations.
Download this release

Release Info

Developer coolmann
Plugin Icon 128x128 Slimstat Analytics
Version 4.3.2.2
Comparing to
See all releases

Code changes from version 4.3.2.1 to 4.3.2.2

admin/view/wp-slimstat-reports.php CHANGED
@@ -1222,28 +1222,6 @@ class wp_slimstat_reports {
1222
 
1223
  public static function show_chart( $_args = array() ){
1224
  $chart_data = wp_slimstat_db::get_data_for_chart( $_args[ 'chart_data' ] );
1225
-
1226
- // switch ( $_args[ 'type' ] ) {
1227
- // case 'slim_p1_01':
1228
- // $chart_data = wp_slimstat_db::get_data_for_chart( 'COUNT(ip)', 'COUNT(DISTINCT(ip))' );
1229
- // $chart_labels = array( __( 'Pageviews', 'wp-slimstat' ), __( 'Unique IPs', 'wp-slimstat' ) );
1230
- // break;
1231
-
1232
- // case 'slim_p2_01':
1233
- // $chart_data = wp_slimstat_db::get_data_for_chart( 'COUNT(DISTINCT visit_id)', 'COUNT(DISTINCT ip)', '(visit_id > 0 AND browser_type <> 1)' );
1234
- // $chart_labels = array( __( 'Visits', 'wp-slimstat' ), __( 'Unique IPs', 'wp-slimstat' ) );
1235
- // break;
1236
-
1237
- // case 'slim_p3_01':
1238
- // $chart_data = wp_slimstat_db::get_data_for_chart( 'COUNT(DISTINCT(referer))', 'COUNT(DISTINCT(ip))', '(referer IS NOT NULL AND referer NOT LIKE "%' . home_url() . '%")' );
1239
- // $chart_labels = array( __( 'Domains', 'wp-slimstat' ), __( 'Unique IPs', 'wp-slimstat' ) );
1240
- // break;
1241
-
1242
- // default:
1243
- // $chart_data = array();
1244
- // $chart_labels = array( '', '' );
1245
- // break;
1246
- // }
1247
  ?>
1248
  <div class="chart-placeholder"></div><div class="chart-legend"></div>
1249
  <script type="text/javascript">
@@ -1251,7 +1229,7 @@ class wp_slimstat_reports {
1251
 
1252
  <?php if ( !empty( $chart_data[ 'previous' ][ 'label' ] ) ) : ?>
1253
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1254
- label: '<?php echo $_args[ 'chart_labels' ][ 0 ] . ' ' . $chart_data[ 'previous' ][ 'label' ] ?>',
1255
  data: [<?php
1256
  $tmp_serialize = array();
1257
  $j = 0;
@@ -1269,7 +1247,7 @@ class wp_slimstat_reports {
1269
  }
1270
  });
1271
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1272
- label: '<?php echo $_args[ 'chart_labels' ][ 1 ] . ' ' . $chart_data[ 'previous' ][ 'label' ] ?>',
1273
  data: [<?php
1274
  $tmp_serialize = array();
1275
  $j = 0;
@@ -1289,7 +1267,7 @@ class wp_slimstat_reports {
1289
  <?php endif ?>
1290
 
1291
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1292
- label: '<?php echo $_args[ 'chart_labels' ][ 0 ] . ' ' . $chart_data[ 'current' ][ 'label' ] ?>',
1293
  data: [<?php
1294
  $tmp_serialize = array();
1295
  $j = 0;
@@ -1307,7 +1285,7 @@ class wp_slimstat_reports {
1307
  }
1308
  });
1309
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1310
- label: '<?php echo $_args[ 'chart_labels' ][ 1 ] . ' ' . $chart_data[ 'current' ][ 'label' ] ?>',
1311
  data: [<?php
1312
  $tmp_serialize = array();
1313
  $j = 0;
1222
 
1223
  public static function show_chart( $_args = array() ){
1224
  $chart_data = wp_slimstat_db::get_data_for_chart( $_args[ 'chart_data' ] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1225
  ?>
1226
  <div class="chart-placeholder"></div><div class="chart-legend"></div>
1227
  <script type="text/javascript">
1229
 
1230
  <?php if ( !empty( $chart_data[ 'previous' ][ 'label' ] ) ) : ?>
1231
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1232
+ label: '<?php echo htmlspecialchars( $_args[ 'chart_labels' ][ 0 ] . ' ' . $chart_data[ 'previous' ][ 'label' ], ENT_QUOTES, 'UTF-8' ); ?>',
1233
  data: [<?php
1234
  $tmp_serialize = array();
1235
  $j = 0;
1247
  }
1248
  });
1249
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1250
+ label: '<?php echo htmlspecialchars( $_args[ 'chart_labels' ][ 1 ] . ' ' . $chart_data[ 'previous' ][ 'label' ], ENT_QUOTES, 'UTF-8' ); ?>',
1251
  data: [<?php
1252
  $tmp_serialize = array();
1253
  $j = 0;
1267
  <?php endif ?>
1268
 
1269
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1270
+ label: '<?php echo htmlspecialchars( $_args[ 'chart_labels' ][ 0 ] . ' ' . $chart_data[ 'current' ][ 'label' ], ENT_QUOTES, 'UTF-8' ); ?>',
1271
  data: [<?php
1272
  $tmp_serialize = array();
1273
  $j = 0;
1285
  }
1286
  });
1287
  SlimStatAdmin.chart_data[ '<?php echo $_args[ 'id' ] ?>' ].push({
1288
+ label: '<?php echo htmlspecialchars( $_args[ 'chart_labels' ][ 1 ] . ' ' . $chart_data[ 'current' ][ 'label' ], ENT_QUOTES, 'UTF-8' ); ?>',
1289
  data: [<?php
1290
  $tmp_serialize = array();
1291
  $j = 0;
admin/wp-slimstat-admin.php CHANGED
@@ -12,7 +12,7 @@ class wp_slimstat_admin {
12
  */
13
  public static function init(){
14
  if ( ( wp_slimstat::$options[ 'enable_ads_network' ] == 'yes' || wp_slimstat::$options[ 'enable_ads_network' ] == 'no' ) ) {
15
- self::$admin_notice = "We are working on improving our social media presence and boosting our visibility on search engines and other websites. In the next few weeks we will officially open our blog, where we will publish news updates, articles about analytics and user tracking techniques, videos diving into the many features of Slimstat and so on. While we get ready, you can <a href='https://www.facebook.com/wpslimstatistics/' target='_blank'>like our Facebook page</a> or follow us on our <a href='https://twitter.com/wp_stats' target='_blank'>Twitter channel</a>.";
16
  self::$admin_notice .= '<br/><br/><a id="slimstat-hide-admin-notice" href="#" class="button-secondary">Got it, thanks</a>';
17
  }
18
  else {
12
  */
13
  public static function init(){
14
  if ( ( wp_slimstat::$options[ 'enable_ads_network' ] == 'yes' || wp_slimstat::$options[ 'enable_ads_network' ] == 'no' ) ) {
15
+ self::$admin_notice = "Just a quick note to let you know that we will be focusing on a major project in the next few weeks, so both development and customer support might be less responsive than usual. Please be patient, and refrain from submitting the same request more than once. Thank you!";
16
  self::$admin_notice .= '<br/><br/><a id="slimstat-hide-admin-notice" href="#" class="button-secondary">Got it, thanks</a>';
17
  }
18
  else {
languages/wp-slimstat-by_BY.mo CHANGED
Binary file
languages/wp-slimstat-by_BY.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
- "POT-Creation-Date: 2016-04-29 19:44-0500\n"
7
- "PO-Revision-Date: 2016-04-29 19:45-0500\n"
8
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
9
  "Language-Team: Natasha\n"
10
  "Language: be\n"
@@ -108,7 +108,7 @@ msgstr ""
108
  "выходных спасылак, загрузкі і г.д. Гэтая опцыя ігнаруецца, калі рэжым "
109
  "адсочвання усталяваны на кліенце."
110
 
111
- #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1372
112
  msgid "Off"
113
  msgstr "выключана"
114
 
@@ -211,16 +211,16 @@ msgstr ""
211
 
212
  #: ../admin/config/index.php:105 ../admin/view/wp-slimstat-reports.php:81
213
  #: ../admin/view/wp-slimstat-reports.php:90
214
- #: ../admin/view/wp-slimstat-reports.php:1388
215
- #: ../admin/view/wp-slimstat-reports.php:1546
216
  msgid "Pageviews"
217
  msgstr "прагляд старонкі"
218
 
219
  #: ../admin/config/index.php:105 ../admin/view/wp-slimstat-reports.php:91
220
  #: ../admin/view/wp-slimstat-reports.php:285
221
  #: ../admin/view/wp-slimstat-reports.php:526
222
- #: ../admin/view/wp-slimstat-reports.php:1403
223
- #: ../admin/view/wp-slimstat-reports.php:1448
224
  msgid "Unique IPs"
225
  msgstr "Унікальныя IP-адрасы"
226
 
@@ -271,7 +271,7 @@ msgstr ""
271
 
272
  #: ../admin/config/index.php:109 ../admin/view/index.php:89
273
  #: ../admin/view/wp-slimstat-db.php:98
274
- #: ../admin/view/wp-slimstat-reports.php:1372
275
  msgid "days"
276
  msgstr "дні"
277
 
@@ -1418,7 +1418,7 @@ msgid "Old Tables"
1418
  msgstr "Старыя таблiцы"
1419
 
1420
  #: ../admin/config/maintenance.php:298
1421
- #, fuzzy, php-format
1422
  msgid ""
1423
  "It looks like your database was upgraded from a version prior to 4.0. Our "
1424
  "upgrade procedure follows a conservative approach, and does not "
@@ -1430,13 +1430,13 @@ msgid ""
1430
  "%s. When in doubt, do not hesitate to contact us for help."
1431
  msgstr ""
1432
  "Падобна на тое, што ваша база дадзеных была абноўлена з версіі да 4.0. Наша "
1433
- "працэдура абнаўлення варта кансерватыўны падыход, і не будзе аўтаматычна "
1434
- "выконваць любую зборку смецця. Іншымі словамі, старыя данныяне выдаляюцца з "
1435
  "базы дадзеных. Гэта дазваляе нашым карыстальнікам лёгка адкаціць ў працоўны "
1436
  "стан у выпадку ўзнікнення праблем. Аднак, калі ўсё працуе, як і чакалася "
1437
  "(трэкера і справаздач), вы можаце ўвайсці ў PhpMyAdmin і выдаліце наступныя "
1438
- "табліцы, калі яны існуюць:% S. Калі ёсць сумневы, не саромейцеся звяртацца "
1439
- "да нас па дапамогу."
1440
 
1441
  #: ../admin/view/addons.php:19
1442
  #, php-format
@@ -1503,19 +1503,18 @@ msgid "Installed and Active"
1503
  msgstr "Усталяваць і актызаваць:"
1504
 
1505
  #: ../admin/view/index.php:8
1506
- #, fuzzy
1507
  msgid "Filter"
1508
- msgstr "фільтры"
1509
 
1510
  #: ../admin/view/index.php:33
1511
  msgid "Load"
1512
  msgstr "загрузка"
1513
 
1514
- #: ../admin/view/index.php:53 ../admin/view/wp-slimstat-reports.php:1410
1515
  msgid "Today"
1516
  msgstr "Сёння"
1517
 
1518
- #: ../admin/view/index.php:54 ../admin/view/wp-slimstat-reports.php:1413
1519
  msgid "Yesterday"
1520
  msgstr "Учора"
1521
 
@@ -1640,7 +1639,7 @@ msgid "Syndication Reader"
1640
  msgstr "Чытач сіндыкацыі"
1641
 
1642
  #: ../admin/view/right-now.php:41 ../admin/view/wp-slimstat-reports.php:1036
1643
- #: ../admin/view/wp-slimstat-reports.php:1771
1644
  msgid "No data to display"
1645
  msgstr "Няма дадзеных для адлюстравання"
1646
 
@@ -1649,7 +1648,7 @@ msgid "Date and Time"
1649
  msgstr "Дата і час"
1650
 
1651
  #: ../admin/view/right-now.php:69 ../admin/view/wp-slimstat-reports.php:1088
1652
- #: ../admin/view/wp-slimstat-reports.php:1814 ../wp-slimstat.php:1385
1653
  msgid "c-"
1654
  msgstr ""
1655
 
@@ -1864,7 +1863,7 @@ msgid "Event ID"
1864
  msgstr "ID падзеі"
1865
 
1866
  #: ../admin/view/wp-slimstat-db.php:116
1867
- #: ../admin/view/wp-slimstat-reports.php:1785
1868
  msgid "Type"
1869
  msgstr "тып"
1870
 
@@ -2037,7 +2036,7 @@ msgid "Human Visits"
2037
  msgstr "чалавечыя прагляды"
2038
 
2039
  #: ../admin/view/wp-slimstat-reports.php:284
2040
- #: ../admin/view/wp-slimstat-reports.php:1444
2041
  msgid "Visits"
2042
  msgstr "прагляды"
2043
 
@@ -2334,7 +2333,7 @@ msgid "Code"
2334
  msgstr "Код"
2335
 
2336
  #: ../admin/view/wp-slimstat-reports.php:1102
2337
- #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1397
2338
  msgid "l-"
2339
  msgstr ""
2340
 
@@ -2347,65 +2346,65 @@ msgid "Referrer"
2347
  msgstr "Referrer"
2348
 
2349
  #: ../admin/view/wp-slimstat-reports.php:1174
2350
- #: ../admin/view/wp-slimstat-reports.php:1428
2351
- #: ../admin/view/wp-slimstat-reports.php:1484
2352
- #: ../admin/view/wp-slimstat-reports.php:1490
2353
- #: ../admin/view/wp-slimstat-reports.php:1496
2354
- #: ../admin/view/wp-slimstat-reports.php:1502
2355
- #: ../admin/view/wp-slimstat-reports.php:1508
2356
- #: ../admin/view/wp-slimstat-reports.php:1514
2357
- #: ../admin/view/wp-slimstat-reports.php:1520
2358
- #: ../admin/view/wp-slimstat-reports.php:1792
2359
  msgid "Hits"
2360
  msgstr "колькасць праглядаў"
2361
 
2362
- #: ../admin/view/wp-slimstat-reports.php:1355
2363
  msgid "Dataset Size"
2364
  msgstr "Памер набора дадзеных"
2365
 
2366
- #: ../admin/view/wp-slimstat-reports.php:1357
2367
  msgid "Total number of records stored in the database."
2368
  msgstr "Агульная колькасць запісаў, якія захоўваюцца ў базе дадзеных."
2369
 
2370
- #: ../admin/view/wp-slimstat-reports.php:1359
2371
  msgid "DB Size"
2372
  msgstr "Памер набора дадзеных"
2373
 
2374
- #: ../admin/view/wp-slimstat-reports.php:1362
2375
  msgid "Tracking Enabled"
2376
  msgstr "Уключыць адсочванне"
2377
 
2378
- #: ../admin/view/wp-slimstat-reports.php:1365
2379
  msgid "Javascript Mode"
2380
  msgstr "Асінхронны рэжым"
2381
 
2382
- #: ../admin/view/wp-slimstat-reports.php:1368
2383
  msgid "Tracking Browser Caps"
2384
  msgstr "адсочваць заглушку браўзэра"
2385
 
2386
- #: ../admin/view/wp-slimstat-reports.php:1371
2387
  msgid "Auto purge"
2388
  msgstr "аўтаматычная чыстка"
2389
 
2390
- #: ../admin/view/wp-slimstat-reports.php:1374
2391
  msgid "Oldest pageview"
2392
  msgstr "Старыя старонкi"
2393
 
2394
- #: ../admin/view/wp-slimstat-reports.php:1375
2395
  msgid "No visits"
2396
  msgstr "няма наведвання"
2397
 
2398
- #: ../admin/view/wp-slimstat-reports.php:1377
2399
  #: ../admin/wp-slimstat-admin.php:112
2400
  msgid "Geolocation"
2401
  msgstr "Геалакацыя"
2402
 
2403
- #: ../admin/view/wp-slimstat-reports.php:1379
2404
  msgid "Date when the MaxMind Geolocation database was last updated."
2405
  msgstr "Дата, калі база дадзеных MaxMind Geolocation была абнаўленна."
2406
 
2407
- #: ../admin/view/wp-slimstat-reports.php:1390
2408
- #: ../admin/view/wp-slimstat-reports.php:1548
2409
  msgid ""
2410
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2411
  "the tracking code is executed."
@@ -2413,15 +2412,15 @@ msgstr ""
2413
  "Запыт на загрузку аднаго файла HTML. Slimstat рэгіструе \"прагляд старонкі"
2414
  "\" кожны раз, калі выконваецца код адсочвання."
2415
 
2416
- #: ../admin/view/wp-slimstat-reports.php:1392
2417
  msgid "Days in Range"
2418
  msgstr "Дні ў дыяпазоне"
2419
 
2420
- #: ../admin/view/wp-slimstat-reports.php:1395
2421
  msgid "Average Daily Pageviews"
2422
  msgstr "Сярэдняя колькасць прагляду старонак"
2423
 
2424
- #: ../admin/view/wp-slimstat-reports.php:1397
2425
  msgid ""
2426
  "How many pages have been visited on average every day during the current "
2427
  "period."
@@ -2429,11 +2428,11 @@ msgstr ""
2429
  "Колькі старонак былі наведаны у сярэднім кожны дзень на працягу бягучага "
2430
  "перыяду."
2431
 
2432
- #: ../admin/view/wp-slimstat-reports.php:1399
2433
  msgid "From Search Results"
2434
  msgstr "З вынікаў пошуку"
2435
 
2436
- #: ../admin/view/wp-slimstat-reports.php:1401
2437
  msgid ""
2438
  "Visitors who landed on your site after searching for a keyword on Google, "
2439
  "Yahoo, etc."
@@ -2441,7 +2440,7 @@ msgstr ""
2441
  "Наведвальнікі, якія прыйшлi на ваш сайт пасля пошуку па ключавым слове у "
2442
  "Google, Yahoo і г.д."
2443
 
2444
- #: ../admin/view/wp-slimstat-reports.php:1405
2445
  msgid ""
2446
  "Used to differentiate between multiple requests to download a file from one "
2447
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2450,11 +2449,11 @@ msgstr ""
2450
  "аднаго інтэрнэт-адрасы (IP) і запытаў, якія адбываюцца з многіх розных "
2451
  "адрасоў"
2452
 
2453
- #: ../admin/view/wp-slimstat-reports.php:1407
2454
  msgid "Last 30 minutes"
2455
  msgstr "Апошнiя 30 хвiлiн"
2456
 
2457
- #: ../admin/view/wp-slimstat-reports.php:1446
2458
  msgid ""
2459
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2460
  "multiple times if they perform multiple visits."
@@ -2462,15 +2461,15 @@ msgstr ""
2462
  "Час візіт не больш за 30 хвілін. Наведвальнікі, якія вярнуліся, "
2463
  "падлічваюцца некалькі разоў, калі яны выконваюць некалькі візітаў."
2464
 
2465
- #: ../admin/view/wp-slimstat-reports.php:1450
2466
  msgid "It includes only traffic generated by human visitors."
2467
  msgstr "Уключае ў сябе толькі трафік, генераваны чалавека наведвальнікаў."
2468
 
2469
- #: ../admin/view/wp-slimstat-reports.php:1452
2470
  msgid "Bounce rate"
2471
  msgstr "Паказчык адмоваў"
2472
 
2473
- #: ../admin/view/wp-slimstat-reports.php:1454
2474
  msgid ""
2475
  "Percentage of single-page visits, i.e. visits in which the person left your "
2476
  "site from the entrance page."
@@ -2478,75 +2477,75 @@ msgstr ""
2478
  "Працэнт наведванняў адной старонкі, гэта значыць наведванняў, у якіх "
2479
  "наведвальнік пакідае сайт са старонкі ўваходу."
2480
 
2481
- #: ../admin/view/wp-slimstat-reports.php:1456
2482
  msgid "Known visitors"
2483
  msgstr "вядомыя наведвальнікі"
2484
 
2485
- #: ../admin/view/wp-slimstat-reports.php:1458
2486
  msgid "Visitors who had previously left a comment on your blog."
2487
  msgstr "Наведвальнікі, якія раней пакінуў каментар на вашым блогу."
2488
 
2489
- #: ../admin/view/wp-slimstat-reports.php:1460
2490
  msgid "New visitors"
2491
  msgstr "новыя наведвальнiкi"
2492
 
2493
- #: ../admin/view/wp-slimstat-reports.php:1462
2494
  msgid "Human users who visited your site only once."
2495
  msgstr "Чалавечыя карыстальнікаў, якія наведалі ваш сайт толькі адзін раз."
2496
 
2497
- #: ../admin/view/wp-slimstat-reports.php:1464
2498
  msgid "Bots"
2499
  msgstr "Боты"
2500
 
2501
- #: ../admin/view/wp-slimstat-reports.php:1467
2502
  msgid "Pageviews per visit"
2503
  msgstr "Праглядаў старонак за адно наведванне"
2504
 
2505
- #: ../admin/view/wp-slimstat-reports.php:1470
2506
  msgid "Longest visit"
2507
  msgstr "Самы доугi вiзiт"
2508
 
2509
- #: ../admin/view/wp-slimstat-reports.php:1471
2510
  msgid "hits"
2511
  msgstr "колькасць праглядаў"
2512
 
2513
- #: ../admin/view/wp-slimstat-reports.php:1482
2514
  msgid "0 - 30 seconds"
2515
  msgstr "0 - 30 секунд"
2516
 
2517
- #: ../admin/view/wp-slimstat-reports.php:1488
2518
  msgid "31 - 60 seconds"
2519
  msgstr "31-60 секунд"
2520
 
2521
- #: ../admin/view/wp-slimstat-reports.php:1494
2522
  msgid "1 - 3 minutes"
2523
  msgstr "1 - 3 хвіліны"
2524
 
2525
- #: ../admin/view/wp-slimstat-reports.php:1500
2526
  msgid "3 - 5 minutes"
2527
  msgstr "3-5 хвіліны"
2528
 
2529
- #: ../admin/view/wp-slimstat-reports.php:1506
2530
  msgid "5 - 7 minutes"
2531
  msgstr "5- 7 хвіліны"
2532
 
2533
- #: ../admin/view/wp-slimstat-reports.php:1512
2534
  msgid "7 - 10 minutes"
2535
  msgstr "7-10 хвіліны"
2536
 
2537
- #: ../admin/view/wp-slimstat-reports.php:1518
2538
  msgid "More than 10 minutes"
2539
  msgstr "Больш за 10 хвілін"
2540
 
2541
- #: ../admin/view/wp-slimstat-reports.php:1530
2542
  msgid "Average visit duration"
2543
  msgstr "Сярэдняя працягласць наведвання"
2544
 
2545
- #: ../admin/view/wp-slimstat-reports.php:1550
2546
  msgid "Unique Referrers"
2547
  msgstr "унікальныя рэферэрам"
2548
 
2549
- #: ../admin/view/wp-slimstat-reports.php:1552
2550
  msgid ""
2551
  "A referrer (or referring site) is the site that a visitor previously visited "
2552
  "before following a link to your site."
@@ -2554,11 +2553,11 @@ msgstr ""
2554
  "Рэферэрам з'яўляецца сайт, які наведвальнік раней наведвалі да наступнага "
2555
  "спасылку на ваш сайт."
2556
 
2557
- #: ../admin/view/wp-slimstat-reports.php:1554
2558
  msgid "Direct Pageviews"
2559
  msgstr "Прамы прагляд старонак"
2560
 
2561
- #: ../admin/view/wp-slimstat-reports.php:1556
2562
  msgid ""
2563
  "Visitors who visited the site by typing the URL directly into their browser. "
2564
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2571,11 +2570,11 @@ msgstr ""
2571
  "паведамленнях электроннай пошты ці спасылкі з дакументаў, якія не ўключаюць "
2572
  "у сябе адсочванне зменных."
2573
 
2574
- #: ../admin/view/wp-slimstat-reports.php:1558
2575
  msgid "From a search result"
2576
  msgstr "З вынікаў пошуку"
2577
 
2578
- #: ../admin/view/wp-slimstat-reports.php:1560
2579
  msgid ""
2580
  "Visitors who came to your site via searches on Google or some other search "
2581
  "engine."
@@ -2583,11 +2582,11 @@ msgstr ""
2583
  "Наведвальнікі, якія прыйшлі на ваш сайт з дапамогай пошуку на Google або "
2584
  "якой-небудзь іншай пошукавай сістэмы."
2585
 
2586
- #: ../admin/view/wp-slimstat-reports.php:1562
2587
  msgid "Unique Landing Pages"
2588
  msgstr "Унікальныя мэтавыя старонкі"
2589
 
2590
- #: ../admin/view/wp-slimstat-reports.php:1564
2591
  msgid ""
2592
  "The first page that a user views during a session. This is also known as the "
2593
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2600,20 +2599,20 @@ msgstr ""
2600
  "старонцы, ён атрымлівае падлічваюцца (для гэтага візіту) у якасці мэтавай "
2601
  "старонкі."
2602
 
2603
- #: ../admin/view/wp-slimstat-reports.php:1566
2604
  msgid "Bounce Pages"
2605
  msgstr "Паказчык адмоваў"
2606
 
2607
- #: ../admin/view/wp-slimstat-reports.php:1568
2608
  msgid "Number of single page visits to your site over the selected period."
2609
  msgstr ""
2610
  "Колькасць аднамесных наведванняў старонак вашага сайта на абраны перыяд."
2611
 
2612
- #: ../admin/view/wp-slimstat-reports.php:1570
2613
  msgid "New Visitors Rate"
2614
  msgstr "Стайка новых наведвальнікау"
2615
 
2616
- #: ../admin/view/wp-slimstat-reports.php:1572
2617
  msgid ""
2618
  "Percentage of single page visits, i.e. visits in which the person left your "
2619
  "site from the entrance page."
@@ -2621,11 +2620,11 @@ msgstr ""
2621
  "Працэнт наведванняў адной старонцы, то ёсць наведванняў, у якіх наведвальнік "
2622
  "пакідае сайт са старонкі ўваходу."
2623
 
2624
- #: ../admin/view/wp-slimstat-reports.php:1574
2625
  msgid "Currently from search engines"
2626
  msgstr "З вынікаў пошуку"
2627
 
2628
- #: ../admin/view/wp-slimstat-reports.php:1576
2629
  msgid ""
2630
  "Visitors who visited the site in the last 5 minutes coming from a search "
2631
  "engine."
@@ -2633,19 +2632,19 @@ msgstr ""
2633
  "Наведвальнікі, якія наведалі сайт на працягу апошніх 5 хвілін, якія прыйшлi "
2634
  "з пошукавай сістэмы."
2635
 
2636
- #: ../admin/view/wp-slimstat-reports.php:1594
2637
  msgid "Backlinks"
2638
  msgstr "Зваротныя спасылкі"
2639
 
2640
- #: ../admin/view/wp-slimstat-reports.php:1595
2641
  msgid "Number of external equity links to your website."
2642
  msgstr "Колькасць знешніх фондавых спасылак на ваш сайт."
2643
 
2644
- #: ../admin/view/wp-slimstat-reports.php:1599
2645
  msgid "MozRank"
2646
  msgstr "Moz Званне"
2647
 
2648
- #: ../admin/view/wp-slimstat-reports.php:1600
2649
  msgid ""
2650
  "MozRank of the URL, in a normalized 10-point score. MozRank represents a "
2651
  "link popularity score. It reflects the importance of any given web page on "
@@ -2655,11 +2654,11 @@ msgstr ""
2655
  "папулярнасці спасылак. Ен адлюстроўвае важнасць той ці іншай вэб-старонкі ў "
2656
  "Інтэрнэце."
2657
 
2658
- #: ../admin/view/wp-slimstat-reports.php:1604
2659
  msgid "Equity Links"
2660
  msgstr "Адзінства спасылак"
2661
 
2662
- #: ../admin/view/wp-slimstat-reports.php:1605
2663
  msgid ""
2664
  "Number of authority-passing links (including followed links and redirects, "
2665
  "internal or external) to your website. Set the permalink filter here above "
@@ -2669,23 +2668,23 @@ msgstr ""
2669
  "ўнутраныя або знешнія) на свой вэб-сайт. Усталюйце пастаянную фільтр тут, "
2670
  "каб атрымаць адпаведныя паказчыкі ў гэтай справаздачы."
2671
 
2672
- #: ../admin/view/wp-slimstat-reports.php:1609
2673
  msgid "Facebook Shares"
2674
  msgstr "Падзяліцца на Facebook "
2675
 
2676
- #: ../admin/view/wp-slimstat-reports.php:1614
2677
  msgid "Facebook Clicks"
2678
  msgstr "Нацiскi на Facebook"
2679
 
2680
- #: ../admin/view/wp-slimstat-reports.php:1615
2681
  msgid "How many times links to your website have been clicked on Facebook."
2682
  msgstr "Колькі разоў спасылкі на ваш сайт былі націснулі на Facebook."
2683
 
2684
- #: ../admin/view/wp-slimstat-reports.php:1619
2685
  msgid "Alexa World Rank"
2686
  msgstr "Alexa Сусветны ранг"
2687
 
2688
- #: ../admin/view/wp-slimstat-reports.php:1620
2689
  msgid ""
2690
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2691
  "traffic data."
@@ -2693,23 +2692,23 @@ msgstr ""
2693
  "Alexa з'яўляецца даччынай кампаніяй Amazon.com, які дае камерцыйныя дадзеныя "
2694
  "вэб-трафіку."
2695
 
2696
- #: ../admin/view/wp-slimstat-reports.php:1624
2697
  msgid "Alexa Country Rank"
2698
  msgstr "Alexa Краiны ранг"
2699
 
2700
- #: ../admin/view/wp-slimstat-reports.php:1629
2701
  msgid "Alexa Popularity"
2702
  msgstr "Alexa Папулярнасць"
2703
 
2704
- #: ../admin/view/wp-slimstat-reports.php:1688
2705
  msgid "Alexa Delta"
2706
  msgstr ""
2707
 
2708
- #: ../admin/view/wp-slimstat-reports.php:1722
2709
  msgid "Content Items"
2710
  msgstr "Змест пунктау"
2711
 
2712
- #: ../admin/view/wp-slimstat-reports.php:1724
2713
  msgid ""
2714
  "This value includes not only posts, but also custom post types, regardless "
2715
  "of their status"
@@ -2717,35 +2716,35 @@ msgstr ""
2717
  "Гэта значэнне ўключае ў сябе не толькі пасты, але і прыстасаваныя тыпы "
2718
  "поста, незалежна ад іх статусу"
2719
 
2720
- #: ../admin/view/wp-slimstat-reports.php:1726
2721
  msgid "Posts"
2722
  msgstr "пасты"
2723
 
2724
- #: ../admin/view/wp-slimstat-reports.php:1729
2725
  msgid "Pages"
2726
  msgstr "Старонкi"
2727
 
2728
- #: ../admin/view/wp-slimstat-reports.php:1732
2729
  msgid "Attachments"
2730
  msgstr "укладаннi"
2731
 
2732
- #: ../admin/view/wp-slimstat-reports.php:1735
2733
  msgid "Revisions"
2734
  msgstr "перагляды"
2735
 
2736
- #: ../admin/view/wp-slimstat-reports.php:1738
2737
  msgid "Comments"
2738
  msgstr "каментары"
2739
 
2740
- #: ../admin/view/wp-slimstat-reports.php:1741
2741
  msgid "Avg Comments per Post"
2742
  msgstr "Сярэдняя колькасць каментарау на паведамленне"
2743
 
2744
- #: ../admin/view/wp-slimstat-reports.php:1744
2745
  msgid "Avg Server Latency"
2746
  msgstr "сярэднii час затрымкi сервера"
2747
 
2748
- #: ../admin/view/wp-slimstat-reports.php:1746
2749
  msgid ""
2750
  "Latency is the amount of time it takes for the host server to receive and "
2751
  "process a request for a page object. The amount of latency depends largely "
@@ -2755,1125 +2754,1125 @@ msgstr ""
2755
  "прыёму і апрацоўкі запыту для аб'екта старонкі. Велічыня латэнтнага часу "
2756
  "шмат у чым залежыць ад таго, як далёка карыстальнік знаходзіцца з сервера."
2757
 
2758
- #: ../admin/view/wp-slimstat-reports.php:1789
2759
  msgid "Coordinates"
2760
  msgstr "каардынаты"
2761
 
2762
- #: ../admin/view/wp-slimstat-reports.php:1789
2763
  msgid "Date"
2764
  msgstr "дата"
2765
 
2766
  # Unknown
2767
- #: ../admin/view/wp-slimstat-reports.php:1805
2768
  msgid "c-xx"
2769
  msgstr "Unknown"
2770
 
2771
  # Afghanistan
2772
- #: ../admin/view/wp-slimstat-reports.php:1805
2773
  msgid "c-af"
2774
- msgstr "Afghanistan"
2775
 
2776
  # Åland Islands
2777
- #: ../admin/view/wp-slimstat-reports.php:1805
2778
  msgid "c-ax"
2779
- msgstr "Aland Islands"
2780
 
2781
  # Albania
2782
- #: ../admin/view/wp-slimstat-reports.php:1805
2783
  msgid "c-al"
2784
- msgstr "Albania"
2785
 
2786
  # Algeria
2787
- #: ../admin/view/wp-slimstat-reports.php:1805
2788
  msgid "c-dz"
2789
- msgstr "Algeria"
2790
 
2791
  # Andorra
2792
- #: ../admin/view/wp-slimstat-reports.php:1805
2793
  msgid "c-ad"
2794
- msgstr "Andorra"
2795
 
2796
  # Angola
2797
- #: ../admin/view/wp-slimstat-reports.php:1805
2798
  msgid "c-ao"
2799
- msgstr "Angola"
2800
 
2801
  # Anguilla
2802
- #: ../admin/view/wp-slimstat-reports.php:1805
2803
  msgid "c-ai"
2804
- msgstr "Anguilla"
2805
 
2806
  # Antigua and Barbuda
2807
- #: ../admin/view/wp-slimstat-reports.php:1805
2808
  msgid "c-ag"
2809
- msgstr "Antigua and Barbuda"
2810
 
2811
  # Argentina
2812
- #: ../admin/view/wp-slimstat-reports.php:1805
2813
  msgid "c-ar"
2814
- msgstr "Argentina"
2815
 
2816
  # Armenia
2817
- #: ../admin/view/wp-slimstat-reports.php:1805
2818
  msgid "c-am"
2819
- msgstr "Armenia"
2820
 
2821
  # Aruba
2822
- #: ../admin/view/wp-slimstat-reports.php:1805
2823
  msgid "c-aw"
2824
- msgstr "Aruba"
2825
 
2826
  # Australia
2827
- #: ../admin/view/wp-slimstat-reports.php:1805
2828
  msgid "c-au"
2829
- msgstr "Australia"
2830
 
2831
  # Austria
2832
- #: ../admin/view/wp-slimstat-reports.php:1805
2833
  msgid "c-at"
2834
- msgstr "Austria"
2835
 
2836
  # Azerbaijan
2837
- #: ../admin/view/wp-slimstat-reports.php:1805
2838
  msgid "c-az"
2839
- msgstr "Azerbaijan"
2840
 
2841
  # Bahamas
2842
- #: ../admin/view/wp-slimstat-reports.php:1805
2843
  msgid "c-bs"
2844
- msgstr "Bahamas"
2845
 
2846
  # Bahrain
2847
- #: ../admin/view/wp-slimstat-reports.php:1805
2848
  msgid "c-bh"
2849
- msgstr "Bahrain"
2850
 
2851
  # Bangladesh
2852
- #: ../admin/view/wp-slimstat-reports.php:1805
2853
  msgid "c-bd"
2854
- msgstr "Bangladesh"
2855
 
2856
  # Barbados
2857
- #: ../admin/view/wp-slimstat-reports.php:1805
2858
  msgid "c-bb"
2859
- msgstr "Barbados"
2860
 
2861
  # Belarus
2862
- #: ../admin/view/wp-slimstat-reports.php:1805
2863
  msgid "c-by"
2864
- msgstr "Belarus"
2865
 
2866
  # Belgium
2867
- #: ../admin/view/wp-slimstat-reports.php:1805
2868
  msgid "c-be"
2869
- msgstr "Belgium"
2870
 
2871
  # Belize
2872
- #: ../admin/view/wp-slimstat-reports.php:1805
2873
  msgid "c-bz"
2874
- msgstr "Belize"
2875
 
2876
  # Benin
2877
- #: ../admin/view/wp-slimstat-reports.php:1805
2878
  msgid "c-bj"
2879
- msgstr "Benin"
2880
 
2881
  # Bermuda
2882
- #: ../admin/view/wp-slimstat-reports.php:1805
2883
  msgid "c-bm"
2884
- msgstr "Bermuda"
2885
 
2886
  # Bhutan
2887
- #: ../admin/view/wp-slimstat-reports.php:1805
2888
  msgid "c-bt"
2889
- msgstr "Bhutan"
2890
 
2891
  # Bolivia
2892
- #: ../admin/view/wp-slimstat-reports.php:1805
2893
  msgid "c-bo"
2894
- msgstr "Bolivia"
2895
 
2896
  # Bosnia and Herzegovina
2897
- #: ../admin/view/wp-slimstat-reports.php:1805
2898
  msgid "c-ba"
2899
- msgstr "Bosnia and Herzegovina"
2900
 
2901
  # Botswana
2902
- #: ../admin/view/wp-slimstat-reports.php:1805
2903
  msgid "c-bw"
2904
- msgstr "Botswana"
2905
 
2906
  # Brazil
2907
- #: ../admin/view/wp-slimstat-reports.php:1805
2908
  msgid "c-br"
2909
- msgstr "Brazil"
2910
 
2911
  # Brunei Darussalam
2912
- #: ../admin/view/wp-slimstat-reports.php:1805
2913
  msgid "c-bn"
2914
- msgstr "Brunei Darussalam"
2915
 
2916
  # Bulgaria
2917
- #: ../admin/view/wp-slimstat-reports.php:1805
2918
  msgid "c-bg"
2919
- msgstr "Bulgaria"
2920
 
2921
  # Burkina Faso
2922
- #: ../admin/view/wp-slimstat-reports.php:1805
2923
  msgid "c-bf"
2924
- msgstr "Burkina Faso"
2925
 
2926
  # Burundi
2927
- #: ../admin/view/wp-slimstat-reports.php:1805
2928
  msgid "c-bi"
2929
- msgstr "Burundi"
2930
 
2931
  # Cambodia
2932
- #: ../admin/view/wp-slimstat-reports.php:1805
2933
  msgid "c-kh"
2934
- msgstr "Cambodia"
2935
 
2936
  # Cameroon
2937
- #: ../admin/view/wp-slimstat-reports.php:1805
2938
  msgid "c-cm"
2939
- msgstr "Cameroon"
2940
 
2941
  # Canada
2942
- #: ../admin/view/wp-slimstat-reports.php:1805
2943
  msgid "c-ca"
2944
- msgstr "Canada"
2945
 
2946
  # Cape Verde
2947
- #: ../admin/view/wp-slimstat-reports.php:1805
2948
  msgid "c-cv"
2949
- msgstr "Cape Verde"
2950
 
2951
  # Cayman Islands
2952
- #: ../admin/view/wp-slimstat-reports.php:1805
2953
  msgid "c-ky"
2954
- msgstr "Cayman Islands"
2955
 
2956
  # Central African Republic
2957
- #: ../admin/view/wp-slimstat-reports.php:1805
2958
  msgid "c-cf"
2959
- msgstr "Central African Republic"
2960
 
2961
  # Chad
2962
- #: ../admin/view/wp-slimstat-reports.php:1805
2963
  msgid "c-td"
2964
- msgstr "Chad"
2965
 
2966
  # Chile
2967
- #: ../admin/view/wp-slimstat-reports.php:1805
2968
  msgid "c-cl"
2969
- msgstr "Chile"
2970
 
2971
  # China
2972
- #: ../admin/view/wp-slimstat-reports.php:1805
2973
  msgid "c-cn"
2974
- msgstr "China"
2975
 
2976
  # Colombia
2977
- #: ../admin/view/wp-slimstat-reports.php:1805
2978
  msgid "c-co"
2979
- msgstr "Colombia"
2980
 
2981
  # Comoros
2982
- #: ../admin/view/wp-slimstat-reports.php:1805
2983
  msgid "c-km"
2984
- msgstr "Comoros"
2985
 
2986
  # Congo
2987
- #: ../admin/view/wp-slimstat-reports.php:1805
2988
  msgid "c-cg"
2989
- msgstr "Congo"
2990
 
2991
  # The Democratic Republic of the Congo
2992
- #: ../admin/view/wp-slimstat-reports.php:1805
2993
  msgid "c-cd"
2994
- msgstr "The Democratic Republic of the Congo"
2995
 
2996
  # Costa Rica
2997
- #: ../admin/view/wp-slimstat-reports.php:1805
2998
  msgid "c-cr"
2999
- msgstr "Costa Rica"
3000
 
3001
  # Côte d'Ivoire
3002
- #: ../admin/view/wp-slimstat-reports.php:1805
3003
  msgid "c-ci"
3004
- msgstr "Côte d'Ivoire"
3005
 
3006
  # Croatia
3007
- #: ../admin/view/wp-slimstat-reports.php:1805
3008
  msgid "c-hr"
3009
- msgstr "Croatia"
3010
 
3011
  # Cuba
3012
- #: ../admin/view/wp-slimstat-reports.php:1805
3013
  msgid "c-cu"
3014
- msgstr "Cuba"
3015
 
3016
  # Cyprus
3017
- #: ../admin/view/wp-slimstat-reports.php:1805
3018
  msgid "c-cy"
3019
- msgstr "Cyprus"
3020
 
3021
  # Czech Republic
3022
- #: ../admin/view/wp-slimstat-reports.php:1805
3023
  msgid "c-cz"
3024
- msgstr "Czech Republic"
3025
 
3026
  # Denmark
3027
- #: ../admin/view/wp-slimstat-reports.php:1805
3028
  msgid "c-dk"
3029
- msgstr "Denmark"
3030
 
3031
  # Djibouti
3032
- #: ../admin/view/wp-slimstat-reports.php:1805
3033
  msgid "c-dj"
3034
- msgstr "Djibouti"
3035
 
3036
  # Dominica
3037
- #: ../admin/view/wp-slimstat-reports.php:1805
3038
  msgid "c-dm"
3039
- msgstr "Dominica"
3040
 
3041
  # Dominican Republic
3042
- #: ../admin/view/wp-slimstat-reports.php:1805
3043
  msgid "c-do"
3044
- msgstr "Dominican Republic"
3045
 
3046
  # Ecuador
3047
- #: ../admin/view/wp-slimstat-reports.php:1805
3048
  msgid "c-ec"
3049
- msgstr "Ecuador"
3050
 
3051
  # Egypt
3052
- #: ../admin/view/wp-slimstat-reports.php:1805
3053
  msgid "c-eg"
3054
- msgstr "Egypt"
3055
 
3056
  # El Salvador
3057
- #: ../admin/view/wp-slimstat-reports.php:1805
3058
  msgid "c-sv"
3059
- msgstr "El Salvador"
3060
 
3061
  # Equatorial Guinea
3062
- #: ../admin/view/wp-slimstat-reports.php:1805
3063
  msgid "c-gq"
3064
- msgstr "Equatorial Guinea"
3065
 
3066
  # Eritrea
3067
- #: ../admin/view/wp-slimstat-reports.php:1805
3068
  msgid "c-er"
3069
- msgstr "Eritrea"
3070
 
3071
  # Estonia
3072
- #: ../admin/view/wp-slimstat-reports.php:1805
3073
  msgid "c-ee"
3074
- msgstr "Estonia"
3075
 
3076
  # Ethiopia
3077
- #: ../admin/view/wp-slimstat-reports.php:1805
3078
  msgid "c-et"
3079
- msgstr "Ethiopia"
3080
 
3081
  # Faroe Islands
3082
- #: ../admin/view/wp-slimstat-reports.php:1805
3083
  msgid "c-fo"
3084
- msgstr "Faroe Islands"
3085
 
3086
  # Falkland Islands (Malvinas)
3087
- #: ../admin/view/wp-slimstat-reports.php:1805
3088
  msgid "c-fk"
3089
- msgstr "Falkland Islands (Malvinas)"
3090
 
3091
  # Fiji
3092
- #: ../admin/view/wp-slimstat-reports.php:1805
3093
  msgid "c-fj"
3094
- msgstr "Fiji"
3095
 
3096
  # Finland
3097
- #: ../admin/view/wp-slimstat-reports.php:1805
3098
  msgid "c-fi"
3099
- msgstr "Finland"
3100
 
3101
  # France
3102
- #: ../admin/view/wp-slimstat-reports.php:1805
3103
  msgid "c-fr"
3104
- msgstr "France"
3105
 
3106
  # French Guiana
3107
- #: ../admin/view/wp-slimstat-reports.php:1805
3108
  msgid "c-gf"
3109
- msgstr "French Guiana"
3110
 
3111
  # Gabon
3112
- #: ../admin/view/wp-slimstat-reports.php:1805
3113
  msgid "c-ga"
3114
- msgstr "Gabon"
3115
 
3116
  # Gambia
3117
- #: ../admin/view/wp-slimstat-reports.php:1805
3118
  msgid "c-gm"
3119
- msgstr "Gambia"
3120
 
3121
  # Georgia
3122
- #: ../admin/view/wp-slimstat-reports.php:1805
3123
  msgid "c-ge"
3124
- msgstr "Georgia"
3125
 
3126
  # Germany
3127
- #: ../admin/view/wp-slimstat-reports.php:1805
3128
  msgid "c-de"
3129
- msgstr "Germany"
3130
 
3131
  # Ghana
3132
- #: ../admin/view/wp-slimstat-reports.php:1805
3133
  msgid "c-gh"
3134
- msgstr "Ghana"
3135
 
3136
  # Greece
3137
- #: ../admin/view/wp-slimstat-reports.php:1805
3138
  msgid "c-gr"
3139
- msgstr "Greece"
3140
 
3141
  # Greenland
3142
- #: ../admin/view/wp-slimstat-reports.php:1805
3143
  msgid "c-gl"
3144
- msgstr "Greenland"
3145
 
3146
  # Grenada
3147
- #: ../admin/view/wp-slimstat-reports.php:1805
3148
  msgid "c-gd"
3149
- msgstr "Grenada"
3150
 
3151
  # Guadeloupe
3152
- #: ../admin/view/wp-slimstat-reports.php:1805
3153
  msgid "c-gp"
3154
- msgstr "Guadeloupe"
3155
 
3156
  # Guatemala
3157
- #: ../admin/view/wp-slimstat-reports.php:1805
3158
  msgid "c-gt"
3159
- msgstr "Guatemala"
3160
 
3161
  # Guinea
3162
- #: ../admin/view/wp-slimstat-reports.php:1805
3163
  msgid "c-gn"
3164
- msgstr "Guinea"
3165
 
3166
  # Guinea-Bissau
3167
- #: ../admin/view/wp-slimstat-reports.php:1805
3168
  msgid "c-gw"
3169
- msgstr "Guinea-Bissau"
3170
 
3171
  # Guyana
3172
- #: ../admin/view/wp-slimstat-reports.php:1805
3173
  msgid "c-gy"
3174
- msgstr "Guyana"
3175
 
3176
  # Haiti
3177
- #: ../admin/view/wp-slimstat-reports.php:1805
3178
  msgid "c-ht"
3179
- msgstr "Haiti"
3180
 
3181
  # Honduras
3182
- #: ../admin/view/wp-slimstat-reports.php:1805
3183
  msgid "c-hn"
3184
- msgstr "Honduras"
3185
 
3186
  # Hong Kong
3187
- #: ../admin/view/wp-slimstat-reports.php:1805
3188
  msgid "c-hk"
3189
- msgstr "Hong Kong"
3190
 
3191
  # Hungary
3192
- #: ../admin/view/wp-slimstat-reports.php:1805
3193
  msgid "c-hu"
3194
- msgstr "Hungary"
3195
 
3196
  # Iceland
3197
- #: ../admin/view/wp-slimstat-reports.php:1805
3198
  msgid "c-is"
3199
- msgstr "Iceland"
3200
 
3201
  # India
3202
- #: ../admin/view/wp-slimstat-reports.php:1805
3203
  msgid "c-in"
3204
- msgstr "India"
3205
 
3206
  # Indonesia
3207
- #: ../admin/view/wp-slimstat-reports.php:1805
3208
  msgid "c-id"
3209
- msgstr "Indonesia"
3210
 
3211
  # Islamic Republic of Iran
3212
- #: ../admin/view/wp-slimstat-reports.php:1805
3213
  msgid "c-ir"
3214
- msgstr "Islamic Republic of Iran"
3215
 
3216
  # Iraq
3217
- #: ../admin/view/wp-slimstat-reports.php:1805
3218
  msgid "c-iq"
3219
- msgstr "Iraq"
3220
 
3221
  # Ireland
3222
- #: ../admin/view/wp-slimstat-reports.php:1805
3223
  msgid "c-ie"
3224
- msgstr "Ireland"
3225
 
3226
  # Israel
3227
- #: ../admin/view/wp-slimstat-reports.php:1805
3228
  msgid "c-il"
3229
- msgstr "Israel"
3230
 
3231
  # Italy
3232
- #: ../admin/view/wp-slimstat-reports.php:1805
3233
  msgid "c-it"
3234
- msgstr "Italy"
3235
 
3236
  # Jamaica
3237
- #: ../admin/view/wp-slimstat-reports.php:1805
3238
  msgid "c-jm"
3239
- msgstr "Jamaica"
3240
 
3241
  # Japan
3242
- #: ../admin/view/wp-slimstat-reports.php:1805
3243
  msgid "c-jp"
3244
- msgstr "Japan"
3245
 
3246
  # Jordan
3247
- #: ../admin/view/wp-slimstat-reports.php:1805
3248
  msgid "c-jo"
3249
- msgstr "Jordan"
3250
 
3251
  # Kazakhstan
3252
- #: ../admin/view/wp-slimstat-reports.php:1805
3253
  msgid "c-kz"
3254
- msgstr "Kazakhstan"
3255
 
3256
  # Kenya
3257
- #: ../admin/view/wp-slimstat-reports.php:1805
3258
  msgid "c-ke"
3259
- msgstr "Kenya"
3260
 
3261
  # Nauru
3262
- #: ../admin/view/wp-slimstat-reports.php:1805
3263
  msgid "c-nr"
3264
- msgstr "Nauru"
3265
 
3266
  # Democratic People's Republic of Korea
3267
- #: ../admin/view/wp-slimstat-reports.php:1805
3268
  msgid "c-kp"
3269
- msgstr "Democratic People's Republic of Korea"
3270
 
3271
  # Republic of Korea
3272
- #: ../admin/view/wp-slimstat-reports.php:1805
3273
  msgid "c-kr"
3274
- msgstr "Republic of Korea"
3275
 
3276
- #: ../admin/view/wp-slimstat-reports.php:1805
3277
  msgid "c-kv"
3278
- msgstr "Kosovo"
3279
 
3280
  # Kuwait
3281
- #: ../admin/view/wp-slimstat-reports.php:1805
3282
  msgid "c-kw"
3283
- msgstr "Kuwait"
3284
 
3285
  # Kyrgyzstan
3286
- #: ../admin/view/wp-slimstat-reports.php:1805
3287
  msgid "c-kg"
3288
- msgstr "Kyrgyzstan"
3289
 
3290
  # Lao People's Democratic Republic
3291
- #: ../admin/view/wp-slimstat-reports.php:1805
3292
  msgid "c-la"
3293
- msgstr "Lao People's Democratic Republic"
3294
 
3295
  # Latvia
3296
- #: ../admin/view/wp-slimstat-reports.php:1805
3297
  msgid "c-lv"
3298
- msgstr "Latvia"
3299
 
3300
  # Lebanon
3301
- #: ../admin/view/wp-slimstat-reports.php:1805
3302
  msgid "c-lb"
3303
- msgstr "Lebanon"
3304
 
3305
  # Lesotho
3306
- #: ../admin/view/wp-slimstat-reports.php:1805
3307
  msgid "c-ls"
3308
- msgstr "Lesotho"
3309
 
3310
  # Liberia
3311
- #: ../admin/view/wp-slimstat-reports.php:1805
3312
  msgid "c-lr"
3313
- msgstr "Liberia"
3314
 
3315
  # Libyan Arab Jamahiriya
3316
- #: ../admin/view/wp-slimstat-reports.php:1805
3317
  msgid "c-ly"
3318
- msgstr "Libyan Arab Jamahiriya"
3319
 
3320
  # Liechtenstein
3321
- #: ../admin/view/wp-slimstat-reports.php:1805
3322
  msgid "c-li"
3323
- msgstr "Liechtenstein"
3324
 
3325
  # Lithuania
3326
- #: ../admin/view/wp-slimstat-reports.php:1805
3327
  msgid "c-lt"
3328
- msgstr "Lithuania"
3329
 
3330
  # Luxembourg
3331
- #: ../admin/view/wp-slimstat-reports.php:1805
3332
  msgid "c-lu"
3333
- msgstr "Luxembourg"
3334
 
3335
  # The Former Yugoslav Republic of Macedonia
3336
- #: ../admin/view/wp-slimstat-reports.php:1805
3337
  msgid "c-mk"
3338
- msgstr "The Former Yugoslav Republic of Macedonia"
3339
 
3340
  # Madagascar
3341
- #: ../admin/view/wp-slimstat-reports.php:1805
3342
  msgid "c-mg"
3343
- msgstr "Madagascar"
3344
 
3345
  # Malawi
3346
- #: ../admin/view/wp-slimstat-reports.php:1805
3347
  msgid "c-mw"
3348
- msgstr "Malawi"
3349
 
3350
  # Malaysia
3351
- #: ../admin/view/wp-slimstat-reports.php:1805
3352
  msgid "c-my"
3353
- msgstr "Malaysia"
3354
 
3355
  # Mali
3356
- #: ../admin/view/wp-slimstat-reports.php:1805
3357
  msgid "c-ml"
3358
- msgstr "Mali"
3359
 
3360
  # Malta
3361
- #: ../admin/view/wp-slimstat-reports.php:1805
3362
  msgid "c-mt"
3363
- msgstr "Malta"
3364
 
3365
  # Martinique
3366
- #: ../admin/view/wp-slimstat-reports.php:1805
3367
  msgid "c-mq"
3368
- msgstr "Martinique"
3369
 
3370
  # Mauritania
3371
- #: ../admin/view/wp-slimstat-reports.php:1805
3372
  msgid "c-mr"
3373
- msgstr "Mauritania"
3374
 
3375
  # Mauritius
3376
- #: ../admin/view/wp-slimstat-reports.php:1805
3377
  msgid "c-mu"
3378
- msgstr "Mauritius"
3379
 
3380
  # Mexico
3381
- #: ../admin/view/wp-slimstat-reports.php:1805
3382
  msgid "c-mx"
3383
- msgstr "Mexico"
3384
 
3385
  # Moldova
3386
- #: ../admin/view/wp-slimstat-reports.php:1805
3387
  msgid "c-md"
3388
- msgstr "Moldova"
3389
 
3390
  # Mongolia
3391
- #: ../admin/view/wp-slimstat-reports.php:1805
3392
  msgid "c-mn"
3393
- msgstr "Mongolia"
3394
 
3395
  # Montenegro
3396
- #: ../admin/view/wp-slimstat-reports.php:1805
3397
  msgid "c-me"
3398
- msgstr "Montenegro"
3399
 
3400
  # Montserrat
3401
- #: ../admin/view/wp-slimstat-reports.php:1805
3402
  msgid "c-ms"
3403
- msgstr "Montserrat"
3404
 
3405
  # Morocco
3406
- #: ../admin/view/wp-slimstat-reports.php:1805
3407
  msgid "c-ma"
3408
- msgstr "Morocco"
3409
 
3410
  # Mozambique
3411
- #: ../admin/view/wp-slimstat-reports.php:1805
3412
  msgid "c-mz"
3413
- msgstr "Mozambique"
3414
 
3415
  # Myanmar
3416
- #: ../admin/view/wp-slimstat-reports.php:1805
3417
  msgid "c-mm"
3418
- msgstr "Myanmar"
3419
 
3420
  # Namibia
3421
- #: ../admin/view/wp-slimstat-reports.php:1805
3422
  msgid "c-na"
3423
- msgstr "Namibia"
3424
 
3425
  # Nepal
3426
- #: ../admin/view/wp-slimstat-reports.php:1805
3427
  msgid "c-np"
3428
- msgstr "Nepal"
3429
 
3430
  # Netherlands
3431
- #: ../admin/view/wp-slimstat-reports.php:1805
3432
  msgid "c-nl"
3433
- msgstr "Netherlands"
3434
 
3435
  # New Caledonia
3436
- #: ../admin/view/wp-slimstat-reports.php:1805
3437
  msgid "c-nc"
3438
- msgstr "New Caledonia"
3439
 
3440
  # New Zealand
3441
- #: ../admin/view/wp-slimstat-reports.php:1805
3442
  msgid "c-nz"
3443
- msgstr "New Zealand"
3444
 
3445
  # Nicaragua
3446
- #: ../admin/view/wp-slimstat-reports.php:1805
3447
  msgid "c-ni"
3448
- msgstr "Nicaragua"
3449
 
3450
  # Niger
3451
- #: ../admin/view/wp-slimstat-reports.php:1805
3452
  msgid "c-ne"
3453
- msgstr "Niger"
3454
 
3455
  # Nigeria
3456
- #: ../admin/view/wp-slimstat-reports.php:1805
3457
  msgid "c-ng"
3458
- msgstr "Nigeria"
3459
 
3460
  # Norway
3461
- #: ../admin/view/wp-slimstat-reports.php:1805
3462
  msgid "c-no"
3463
- msgstr "Norway"
3464
 
3465
  # Oman
3466
- #: ../admin/view/wp-slimstat-reports.php:1805
3467
  msgid "c-om"
3468
- msgstr "Oman"
3469
 
3470
  # Pakistan
3471
- #: ../admin/view/wp-slimstat-reports.php:1805
3472
  msgid "c-pk"
3473
- msgstr "Pakistan"
3474
 
3475
  # Palau
3476
- #: ../admin/view/wp-slimstat-reports.php:1805
3477
  msgid "c-pw"
3478
- msgstr "Palau"
3479
 
3480
  # Occupied Palestinian Territory
3481
- #: ../admin/view/wp-slimstat-reports.php:1805
3482
  msgid "c-ps"
3483
- msgstr "Occupied Palestinian Territory"
3484
 
3485
  # Panama
3486
- #: ../admin/view/wp-slimstat-reports.php:1805
3487
  msgid "c-pa"
3488
- msgstr "Panama"
3489
 
3490
  # Papua New Guinea
3491
- #: ../admin/view/wp-slimstat-reports.php:1805
3492
  msgid "c-pg"
3493
- msgstr "Papua New Guinea"
3494
 
3495
  # Paraguay
3496
- #: ../admin/view/wp-slimstat-reports.php:1805
3497
  msgid "c-py"
3498
- msgstr "Paraguay"
3499
 
3500
  # Peru
3501
- #: ../admin/view/wp-slimstat-reports.php:1805
3502
  msgid "c-pe"
3503
- msgstr "Peru"
3504
 
3505
  # Philippines
3506
- #: ../admin/view/wp-slimstat-reports.php:1805
3507
  msgid "c-ph"
3508
- msgstr "Philippines"
3509
 
3510
  # Poland
3511
- #: ../admin/view/wp-slimstat-reports.php:1805
3512
  msgid "c-pl"
3513
- msgstr "Poland"
3514
 
3515
  # Portugal
3516
- #: ../admin/view/wp-slimstat-reports.php:1805
3517
  msgid "c-pt"
3518
- msgstr "Portugal"
3519
 
3520
  # Puerto Rico
3521
- #: ../admin/view/wp-slimstat-reports.php:1805
3522
  msgid "c-pr"
3523
- msgstr "Puerto Rico"
3524
 
3525
  # Qatar
3526
- #: ../admin/view/wp-slimstat-reports.php:1805
3527
  msgid "c-qa"
3528
- msgstr "Qatar"
3529
 
3530
  # Réunion
3531
- #: ../admin/view/wp-slimstat-reports.php:1805
3532
  msgid "c-re"
3533
- msgstr "Réunion"
3534
 
3535
  # Romania
3536
- #: ../admin/view/wp-slimstat-reports.php:1805
3537
  msgid "c-ro"
3538
- msgstr "Romania"
3539
 
3540
  # Russian Federation
3541
- #: ../admin/view/wp-slimstat-reports.php:1805
3542
  msgid "c-ru"
3543
- msgstr "Russian Federation"
3544
 
3545
  # Rwanda
3546
- #: ../admin/view/wp-slimstat-reports.php:1805
3547
  msgid "c-rw"
3548
- msgstr "Rwanda"
3549
 
3550
  # Saint Kitts and Nevis
3551
- #: ../admin/view/wp-slimstat-reports.php:1805
3552
  msgid "c-kn"
3553
- msgstr "Saint Kitts and Nevis"
3554
 
3555
  # Saint Lucia
3556
- #: ../admin/view/wp-slimstat-reports.php:1805
3557
  msgid "c-lc"
3558
- msgstr "Saint Lucia"
3559
 
3560
  # Saint Martin
3561
- #: ../admin/view/wp-slimstat-reports.php:1805
3562
  msgid "c-mf"
3563
- msgstr "Saint Martin"
3564
 
3565
  # Saint Vincent and the Grenadines
3566
- #: ../admin/view/wp-slimstat-reports.php:1805
3567
  msgid "c-vc"
3568
- msgstr "Saint Vincent and the Grenadines"
3569
 
3570
  # Samoa
3571
- #: ../admin/view/wp-slimstat-reports.php:1805
3572
  msgid "c-ws"
3573
- msgstr "Samoa"
3574
 
3575
  # Sao Tome and Principe
3576
- #: ../admin/view/wp-slimstat-reports.php:1805
3577
  msgid "c-st"
3578
- msgstr "Sao Tome and Principe"
3579
 
3580
  # Saudi Arabia
3581
- #: ../admin/view/wp-slimstat-reports.php:1805
3582
  msgid "c-sa"
3583
- msgstr "Saudi Arabia"
3584
 
3585
  # Senegal
3586
- #: ../admin/view/wp-slimstat-reports.php:1805
3587
  msgid "c-sn"
3588
- msgstr "Senegal"
3589
 
3590
  # Serbia
3591
- #: ../admin/view/wp-slimstat-reports.php:1805
3592
  msgid "c-rs"
3593
- msgstr "Serbia"
3594
 
3595
  # Sierra Leone
3596
- #: ../admin/view/wp-slimstat-reports.php:1805
3597
  msgid "c-sl"
3598
- msgstr "Sierra Leone"
3599
 
3600
  # Singapore
3601
- #: ../admin/view/wp-slimstat-reports.php:1805
3602
  msgid "c-sg"
3603
- msgstr "Singapore"
3604
 
3605
  # Slovakia
3606
- #: ../admin/view/wp-slimstat-reports.php:1805
3607
  msgid "c-sk"
3608
- msgstr "Slovakia"
3609
 
3610
  # Slovenia
3611
- #: ../admin/view/wp-slimstat-reports.php:1805
3612
  msgid "c-si"
3613
- msgstr "Slovenia"
3614
 
3615
  # Solomon Islands
3616
- #: ../admin/view/wp-slimstat-reports.php:1805
3617
  msgid "c-sb"
3618
- msgstr "Solomon Islands"
3619
 
3620
  # Somalia
3621
- #: ../admin/view/wp-slimstat-reports.php:1805
3622
  msgid "c-so"
3623
- msgstr "Somalia"
3624
 
3625
  # South Africa
3626
- #: ../admin/view/wp-slimstat-reports.php:1805
3627
  msgid "c-za"
3628
- msgstr "South Africa"
3629
 
3630
  # South Georgia and the South Sandwich Islands
3631
- #: ../admin/view/wp-slimstat-reports.php:1805
3632
  msgid "c-gs"
3633
- msgstr "South Georgia and the South Sandwich Islands"
3634
 
3635
  # Spain
3636
- #: ../admin/view/wp-slimstat-reports.php:1805
3637
  msgid "c-es"
3638
- msgstr "Spain"
3639
 
3640
  # Sri Lanka
3641
- #: ../admin/view/wp-slimstat-reports.php:1805
3642
  msgid "c-lk"
3643
- msgstr "Sri Lanka"
3644
 
3645
- #: ../admin/view/wp-slimstat-reports.php:1805
3646
  msgid "c-sc"
3647
- msgstr "Seychelles"
3648
 
3649
  # Sudan
3650
- #: ../admin/view/wp-slimstat-reports.php:1805
3651
  msgid "c-sd"
3652
- msgstr "Sudan"
3653
 
3654
- #: ../admin/view/wp-slimstat-reports.php:1805
3655
  msgid "c-ss"
3656
- msgstr "South Sudan"
3657
 
3658
  # Suriname
3659
- #: ../admin/view/wp-slimstat-reports.php:1805
3660
  msgid "c-sr"
3661
- msgstr "Suriname"
3662
 
3663
  # Svalbard and Jan Mayen
3664
- #: ../admin/view/wp-slimstat-reports.php:1805
3665
  msgid "c-sj"
3666
- msgstr "Svalbard and Jan Mayen"
3667
 
3668
  # Swaziland
3669
- #: ../admin/view/wp-slimstat-reports.php:1805
3670
  msgid "c-sz"
3671
- msgstr "Swaziland"
3672
 
3673
  # Sweden
3674
- #: ../admin/view/wp-slimstat-reports.php:1805
3675
  msgid "c-se"
3676
- msgstr "Sweden"
3677
 
3678
  # Switzerland
3679
- #: ../admin/view/wp-slimstat-reports.php:1805
3680
  msgid "c-ch"
3681
- msgstr "Switzerland"
3682
 
3683
  # Syrian Arab Republic
3684
- #: ../admin/view/wp-slimstat-reports.php:1805
3685
  msgid "c-sy"
3686
- msgstr "Syrian Arab Republic"
3687
 
3688
  # Taiwan, Province of China
3689
- #: ../admin/view/wp-slimstat-reports.php:1805
3690
  msgid "c-tw"
3691
- msgstr "Taiwan"
3692
 
3693
  # Tajikistan
3694
- #: ../admin/view/wp-slimstat-reports.php:1805
3695
  msgid "c-tj"
3696
- msgstr "Tajikistan"
3697
 
3698
  # United Republic of Tanzania
3699
- #: ../admin/view/wp-slimstat-reports.php:1805
3700
  msgid "c-tz"
3701
- msgstr "United Republic of Tanzania"
3702
 
3703
  # Thailand
3704
- #: ../admin/view/wp-slimstat-reports.php:1805
3705
  msgid "c-th"
3706
- msgstr "Thailand"
3707
 
3708
  # Timor-Leste
3709
- #: ../admin/view/wp-slimstat-reports.php:1805
3710
  msgid "c-tl"
3711
- msgstr "Timor-Leste"
3712
 
3713
  # Togo
3714
- #: ../admin/view/wp-slimstat-reports.php:1805
3715
  msgid "c-tg"
3716
- msgstr "Togo"
3717
 
3718
  # Tonga
3719
- #: ../admin/view/wp-slimstat-reports.php:1805
3720
  msgid "c-to"
3721
- msgstr "Tonga"
3722
 
3723
  # Trinidad and Tobago
3724
- #: ../admin/view/wp-slimstat-reports.php:1805
3725
  msgid "c-tt"
3726
- msgstr "Trinidad and Tobago"
3727
 
3728
  # Tunisia
3729
- #: ../admin/view/wp-slimstat-reports.php:1805
3730
  msgid "c-tn"
3731
- msgstr "Tunisia"
3732
 
3733
  # Turkey
3734
- #: ../admin/view/wp-slimstat-reports.php:1805
3735
  msgid "c-tr"
3736
- msgstr "Turkey"
3737
 
3738
  # Turkmenistan
3739
- #: ../admin/view/wp-slimstat-reports.php:1805
3740
  msgid "c-tm"
3741
- msgstr "Turkmenistan"
3742
 
3743
  # Turks and Caicos Islands
3744
- #: ../admin/view/wp-slimstat-reports.php:1805
3745
  msgid "c-tc"
3746
- msgstr "Turks and Caicos Islands"
3747
 
3748
  # Uganda
3749
- #: ../admin/view/wp-slimstat-reports.php:1805
3750
  msgid "c-ug"
3751
- msgstr "Uganda"
3752
 
3753
  # Ukraine
3754
- #: ../admin/view/wp-slimstat-reports.php:1805
3755
  msgid "c-ua"
3756
- msgstr "Ukraine"
3757
 
3758
  # United Arab Emirates
3759
- #: ../admin/view/wp-slimstat-reports.php:1805
3760
  msgid "c-ae"
3761
- msgstr "United Arab Emirates"
3762
 
3763
  # United Kingdom
3764
- #: ../admin/view/wp-slimstat-reports.php:1805
3765
  msgid "c-gb"
3766
- msgstr "United Kingdom"
3767
 
3768
  # United States
3769
- #: ../admin/view/wp-slimstat-reports.php:1805
3770
  msgid "c-us"
3771
- msgstr "United States"
3772
 
3773
  # Uruguay
3774
- #: ../admin/view/wp-slimstat-reports.php:1805
3775
  msgid "c-uy"
3776
- msgstr "Uruguay"
3777
 
3778
  # Uzbekistan
3779
- #: ../admin/view/wp-slimstat-reports.php:1805
3780
  msgid "c-uz"
3781
- msgstr "Uzbekistan"
3782
 
3783
  # Vanuatu
3784
- #: ../admin/view/wp-slimstat-reports.php:1805
3785
  msgid "c-vu"
3786
- msgstr "Vanuatu"
3787
 
3788
  # Venezuela
3789
- #: ../admin/view/wp-slimstat-reports.php:1805
3790
  msgid "c-ve"
3791
- msgstr "Venezuela"
3792
 
3793
  # Viet Nam
3794
- #: ../admin/view/wp-slimstat-reports.php:1805
3795
  msgid "c-vn"
3796
- msgstr "Viet Nam"
3797
 
3798
  # British Virgin Islands
3799
- #: ../admin/view/wp-slimstat-reports.php:1805
3800
  msgid "c-vg"
3801
- msgstr "British Virgin Islands"
3802
 
3803
  # U.S. Virgin Islands
3804
- #: ../admin/view/wp-slimstat-reports.php:1805
3805
  msgid "c-vi"
3806
- msgstr "U.S. Virgin Islands"
3807
 
3808
  # Western Sahara
3809
- #: ../admin/view/wp-slimstat-reports.php:1805
3810
  msgid "c-eh"
3811
- msgstr "Western Sahara"
3812
 
3813
  # Yemen
3814
- #: ../admin/view/wp-slimstat-reports.php:1805
3815
  msgid "c-ye"
3816
- msgstr "Yemen"
3817
 
3818
  # Zambia
3819
- #: ../admin/view/wp-slimstat-reports.php:1805
3820
  msgid "c-zm"
3821
- msgstr "Zambia"
3822
 
3823
  # Zimbabwe
3824
- #: ../admin/view/wp-slimstat-reports.php:1805
3825
  msgid "c-zw"
3826
- msgstr "Zimbabwe"
3827
 
3828
  # Guernsey
3829
- #: ../admin/view/wp-slimstat-reports.php:1805
3830
  msgid "c-gg"
3831
- msgstr "Guernsey"
3832
 
3833
  # Jersey
3834
- #: ../admin/view/wp-slimstat-reports.php:1805
3835
  msgid "c-je"
3836
- msgstr "Jersey"
3837
 
3838
  # Isle of Man
3839
- #: ../admin/view/wp-slimstat-reports.php:1805
3840
  msgid "c-im"
3841
- msgstr "Isle of Man"
3842
 
3843
  # Maldives
3844
- #: ../admin/view/wp-slimstat-reports.php:1805
3845
  msgid "c-mv"
3846
- msgstr "Maldives"
3847
 
3848
- #: ../admin/view/wp-slimstat-reports.php:1806
3849
  msgid "c-eu"
3850
- msgstr "Europe"
3851
 
3852
- #: ../admin/view/wp-slimstat-reports.php:1883
3853
  msgid "src"
3854
  msgstr ""
3855
 
3856
- #: ../admin/view/wp-slimstat-reports.php:1887
3857
  msgid "serp"
3858
  msgstr "serp"
3859
 
3860
- #: ../admin/view/wp-slimstat-reports.php:1895
3861
  msgid "Go to the referring page"
3862
  msgstr "Перайсці да старонкі са спасылкай"
3863
 
3864
- #: ../admin/view/wp-slimstat-reports.php:1917
3865
  msgid "Remove filter for"
3866
  msgstr "Выдаліць фільтр для"
3867
 
3868
- #: ../admin/view/wp-slimstat-reports.php:1921
3869
  msgid "Save"
3870
  msgstr "Захаваць"
3871
 
3872
- #: ../admin/view/wp-slimstat-reports.php:1924
3873
  msgid "Reset All"
3874
  msgstr "Скінуць ўсе"
3875
 
3876
- #: ../admin/view/wp-slimstat-reports.php:1928
3877
  msgid "Current filters:"
3878
  msgstr "Бягучыя фільтры:"
3879
 
@@ -3937,14 +3936,12 @@ msgid "Slimstat"
3937
  msgstr "Slimstat"
3938
 
3939
  #: ../admin/wp-slimstat-admin.php:929
3940
- #, fuzzy
3941
  msgid "Pageviews in the last "
3942
- msgstr "Праглядаў старонак за адно наведванне"
3943
 
3944
  #: ../admin/wp-slimstat-admin.php:932
3945
- #, fuzzy
3946
  msgid "Unique IPs in the last "
3947
- msgstr "Унікальныя IP-адрасы"
3948
 
3949
  #: ../admin/wp-slimstat-admin.php:965
3950
  #, php-format
@@ -4678,7 +4675,7 @@ msgstr "Linux Ubuntu"
4678
 
4679
  #: ../languages/dynamic_strings.php:109
4680
  msgid "p-unk"
4681
- msgstr "Unknown"
4682
 
4683
  #: ../languages/dynamic_strings.php:110
4684
  msgid "p-win"
@@ -4687,377 +4684,377 @@ msgstr "Microsoft"
4687
  # Afrikaans
4688
  #: ../languages/dynamic_strings.php:113
4689
  msgid "l-af"
4690
- msgstr "Afrikaans"
4691
 
4692
  # Afrikaans
4693
  #: ../languages/dynamic_strings.php:114
4694
  msgid "l-af-za"
4695
- msgstr "Afrikaans (South Africa)"
4696
 
4697
  # Arabic
4698
  #: ../languages/dynamic_strings.php:115
4699
  msgid "l-ar"
4700
- msgstr "Arabic"
4701
 
4702
  # Arabic
4703
  #: ../languages/dynamic_strings.php:116
4704
  msgid "l-ar-ae"
4705
- msgstr "Arabic (U.A.E.)"
4706
 
4707
  # Arabic
4708
  #: ../languages/dynamic_strings.php:117
4709
  msgid "l-ar-bh"
4710
- msgstr "Arabic (Bahrain)"
4711
 
4712
  # Arabic
4713
  #: ../languages/dynamic_strings.php:118
4714
  msgid "l-ar-dz"
4715
- msgstr "Arabic (Algeria)"
4716
 
4717
  # Arabic
4718
  #: ../languages/dynamic_strings.php:119
4719
  msgid "l-ar-eg"
4720
- msgstr "Arabic (Egypt)"
4721
 
4722
  # Arabic
4723
  #: ../languages/dynamic_strings.php:120
4724
  msgid "l-ar-iq"
4725
- msgstr "Arabic (Iraq)"
4726
 
4727
  # Arabic
4728
  #: ../languages/dynamic_strings.php:121
4729
  msgid "l-ar-jo"
4730
- msgstr "Arabic (Jordan)"
4731
 
4732
  # Arabic
4733
  #: ../languages/dynamic_strings.php:122
4734
  msgid "l-ar-kw"
4735
- msgstr "Arabic (Kuwait)"
4736
 
4737
  # Arabic
4738
  #: ../languages/dynamic_strings.php:123
4739
  msgid "l-ar-lb"
4740
- msgstr "Arabic (Lebanon)"
4741
 
4742
  # Arabic
4743
  #: ../languages/dynamic_strings.php:124
4744
  msgid "l-ar-ly"
4745
- msgstr "Arabic (Libya)"
4746
 
4747
  # Arabic
4748
  #: ../languages/dynamic_strings.php:125
4749
  msgid "l-ar-ma"
4750
- msgstr "Arabic (Morocco)"
4751
 
4752
  # Arabic
4753
  #: ../languages/dynamic_strings.php:126
4754
  msgid "l-ar-om"
4755
- msgstr "Arabic (Oman)"
4756
 
4757
  # Arabic
4758
  #: ../languages/dynamic_strings.php:127
4759
  msgid "l-ar-qa"
4760
- msgstr "Arabic (Qatar)"
4761
 
4762
  # Arabic
4763
  #: ../languages/dynamic_strings.php:128
4764
  msgid "l-ar-sa"
4765
- msgstr "Arabic (Saudi Arabia)"
4766
 
4767
  # Arabic
4768
  #: ../languages/dynamic_strings.php:129
4769
  msgid "l-ar-sy"
4770
- msgstr "Arabic (Syria)"
4771
 
4772
  # Arabic
4773
  #: ../languages/dynamic_strings.php:130
4774
  msgid "l-ar-tn"
4775
- msgstr "Arabic (Tunisia)"
4776
 
4777
  # Arabic
4778
  #: ../languages/dynamic_strings.php:131
4779
  msgid "l-ar-ye"
4780
- msgstr "Arabic (Yemen)"
4781
 
4782
  # Azerbaijani
4783
  #: ../languages/dynamic_strings.php:132
4784
  msgid "l-az"
4785
- msgstr "Azerbaijani"
4786
 
4787
  # Azerbaijani
4788
  #: ../languages/dynamic_strings.php:133
4789
  msgid "l-az-az"
4790
- msgstr "Azeri (Latin)"
4791
 
4792
  # Belarusian
4793
  #: ../languages/dynamic_strings.php:134
4794
  msgid "l-be"
4795
- msgstr "Belarusian"
4796
 
4797
  # Belarusian
4798
  #: ../languages/dynamic_strings.php:135
4799
  msgid "l-be-by"
4800
- msgstr "Belarusian (Belarus)"
4801
 
4802
  # Bulgarian
4803
  #: ../languages/dynamic_strings.php:136
4804
  msgid "l-bg"
4805
- msgstr "Bulgarian"
4806
 
4807
  # Bulgarian
4808
  #: ../languages/dynamic_strings.php:137
4809
  msgid "l-bg-bg"
4810
- msgstr "Bulgarian (Bulgaria)"
4811
 
4812
  # Bosnian
4813
  #: ../languages/dynamic_strings.php:138
4814
  msgid "l-bs-ba"
4815
- msgstr "Bosnian"
4816
 
4817
  # Catalan; Valencian
4818
  #: ../languages/dynamic_strings.php:139
4819
  msgid "l-ca"
4820
- msgstr "Catalan"
4821
 
4822
  # Catalan; Valencian
4823
  #: ../languages/dynamic_strings.php:140
4824
  msgid "l-ca-es"
4825
- msgstr "Catalan; Valencian"
4826
 
4827
  # Czech
4828
  #: ../languages/dynamic_strings.php:141
4829
  msgid "l-cs"
4830
- msgstr "Czech"
4831
 
4832
  # Czech
4833
  #: ../languages/dynamic_strings.php:142
4834
  msgid "l-cs-cz"
4835
- msgstr "Czech (Czech Republic)"
4836
 
4837
  # Welsh
4838
  #: ../languages/dynamic_strings.php:143
4839
  msgid "l-cy"
4840
- msgstr "Welsh"
4841
 
4842
  # Welsh
4843
  #: ../languages/dynamic_strings.php:144
4844
  msgid "l-cy-gb"
4845
- msgstr "Welsh (UK)"
4846
 
4847
  # Danish
4848
  #: ../languages/dynamic_strings.php:145
4849
  msgid "l-da"
4850
- msgstr "Danish"
4851
 
4852
  # Danish
4853
  #: ../languages/dynamic_strings.php:146
4854
  msgid "l-da-dk"
4855
- msgstr "Danish (Denmark)"
4856
 
4857
  # German
4858
  #: ../languages/dynamic_strings.php:147
4859
  msgid "l-de"
4860
- msgstr "German"
4861
 
4862
  # German
4863
  #: ../languages/dynamic_strings.php:148
4864
  msgid "l-de-at"
4865
- msgstr "German (Austria)"
4866
 
4867
  # German
4868
  #: ../languages/dynamic_strings.php:149
4869
  msgid "l-de-ch"
4870
- msgstr "German (Switzerland)"
4871
 
4872
  # German
4873
  #: ../languages/dynamic_strings.php:150
4874
  msgid "l-de-de"
4875
- msgstr "German (Germany)"
4876
 
4877
  # German
4878
  #: ../languages/dynamic_strings.php:151
4879
  msgid "l-de-li"
4880
- msgstr "German (Liechtenstein)"
4881
 
4882
  # German
4883
  #: ../languages/dynamic_strings.php:152
4884
  msgid "l-de-lu"
4885
- msgstr "German (Luxembourg)"
4886
 
4887
  # Dhivehi; Divehi; Maldivian
4888
  #: ../languages/dynamic_strings.php:153
4889
  msgid "l-dv"
4890
- msgstr "Dhivehi; Divehi; Maldivian"
4891
 
4892
  # Dhivehi; Divehi; Maldivian
4893
  #: ../languages/dynamic_strings.php:154
4894
  msgid "l-dv-mv"
4895
- msgstr "Maldivian"
4896
 
4897
  # Modern Greek (1453-)
4898
  #: ../languages/dynamic_strings.php:155
4899
  msgid "l-el"
4900
- msgstr "Greek"
4901
 
4902
  # Modern Greek (1453-)
4903
  #: ../languages/dynamic_strings.php:156
4904
  msgid "l-el-gr"
4905
- msgstr "Greek (Greece)"
4906
 
4907
  # English
4908
  #: ../languages/dynamic_strings.php:157
4909
  msgid "l-en"
4910
- msgstr "English"
4911
 
4912
  # English
4913
  #: ../languages/dynamic_strings.php:158
4914
  msgid "l-en-au"
4915
- msgstr "English (Australia)"
4916
 
4917
  # English
4918
  #: ../languages/dynamic_strings.php:159
4919
  msgid "l-en-bz"
4920
- msgstr "English (Belize)"
4921
 
4922
  # English
4923
  #: ../languages/dynamic_strings.php:160
4924
  msgid "l-en-ca"
4925
- msgstr "English (Canada)"
4926
 
4927
  # English
4928
  #: ../languages/dynamic_strings.php:161
4929
  msgid "l-en-cb"
4930
- msgstr "English (Caribbean)"
4931
 
4932
  # English
4933
  #: ../languages/dynamic_strings.php:162
4934
  msgid "l-en-gb"
4935
- msgstr "English (Great Britain)"
4936
 
4937
  # English
4938
  #: ../languages/dynamic_strings.php:163
4939
  msgid "l-en-ie"
4940
- msgstr "English (Ireland)"
4941
 
4942
  # English
4943
  #: ../languages/dynamic_strings.php:164
4944
  msgid "l-en-jm"
4945
- msgstr "English (Jamaica)"
4946
 
4947
  # English
4948
  #: ../languages/dynamic_strings.php:165
4949
  msgid "l-en-nz"
4950
- msgstr "English (New Zealand)"
4951
 
4952
  # English
4953
  #: ../languages/dynamic_strings.php:166
4954
  msgid "l-en-ph"
4955
- msgstr "English (Philippines)"
4956
 
4957
  # English
4958
  #: ../languages/dynamic_strings.php:167
4959
  msgid "l-en-tt"
4960
- msgstr "English (Trinidad and Tobago)"
4961
 
4962
  # English
4963
  #: ../languages/dynamic_strings.php:168
4964
  msgid "l-en-us"
4965
- msgstr "English (USA)"
4966
 
4967
  # English
4968
  #: ../languages/dynamic_strings.php:169
4969
  msgid "l-en-za"
4970
- msgstr "English (South Africa)"
4971
 
4972
  # English
4973
  #: ../languages/dynamic_strings.php:170
4974
  msgid "l-en-zw"
4975
- msgstr "English (Zimbabwe)"
4976
 
4977
  # Esperanto
4978
  #: ../languages/dynamic_strings.php:171
4979
  msgid "l-eo"
4980
- msgstr "Esperanto"
4981
 
4982
  # Spanish; Castilian
4983
  #: ../languages/dynamic_strings.php:172
4984
  msgid "l-es"
4985
- msgstr "Spanish"
4986
 
4987
  # Spanish; Castilian
4988
  #: ../languages/dynamic_strings.php:173
4989
  msgid "l-es-ar"
4990
- msgstr "Spanish (Argentina)"
4991
 
4992
  # Spanish; Castilian
4993
  #: ../languages/dynamic_strings.php:174
4994
  msgid "l-es-bo"
4995
- msgstr "Spanish (Bolivia)"
4996
 
4997
  # Spanish; Castilian
4998
  #: ../languages/dynamic_strings.php:175
4999
  msgid "l-es-cl"
5000
- msgstr "Spanish (Chile)"
5001
 
5002
  # Spanish; Castilian
5003
  #: ../languages/dynamic_strings.php:176
5004
  msgid "l-es-co"
5005
- msgstr "Spanish (Colombia)"
5006
 
5007
  # Spanish; Castilian
5008
  #: ../languages/dynamic_strings.php:177
5009
  msgid "l-es-cr"
5010
- msgstr "Spanish (Costa Rica)"
5011
 
5012
  # Spanish; Castilian
5013
  #: ../languages/dynamic_strings.php:178
5014
  msgid "l-es-do"
5015
- msgstr "Spanish (Dominican Republic)"
5016
 
5017
  # Spanish; Castilian
5018
  #: ../languages/dynamic_strings.php:179
5019
  msgid "l-es-ec"
5020
- msgstr "Spanish (Ecuador)"
5021
 
5022
  # Spanish; Castilian
5023
  #: ../languages/dynamic_strings.php:180
5024
  msgid "l-es-es"
5025
- msgstr "Spanish (Spain)"
5026
 
5027
  # Spanish; Castilian
5028
  #: ../languages/dynamic_strings.php:181
5029
  msgid "l-es-gt"
5030
- msgstr "Spanish (Guatemala)"
5031
 
5032
  # Spanish; Castilian
5033
  #: ../languages/dynamic_strings.php:182
5034
  msgid "l-es-hn"
5035
- msgstr "Spanish (Honduras)"
5036
 
5037
  # Spanish; Castilian
5038
  #: ../languages/dynamic_strings.php:183
5039
  msgid "l-es-mx"
5040
- msgstr "Spanish (Mexico)"
5041
 
5042
  # Spanish; Castilian
5043
  #: ../languages/dynamic_strings.php:184
5044
  msgid "l-es-ni"
5045
- msgstr "Spanish (Nicaragua)"
5046
 
5047
  # Spanish; Castilian
5048
  #: ../languages/dynamic_strings.php:185
5049
  msgid "l-es-pa"
5050
- msgstr "Spanish (Panama)"
5051
 
5052
  # Spanish; Castilian
5053
  #: ../languages/dynamic_strings.php:186
5054
  msgid "l-es-pe"
5055
- msgstr "Spanish (Peru)"
5056
 
5057
  # Spanish; Castilian
5058
  #: ../languages/dynamic_strings.php:187
5059
  msgid "l-es-pr"
5060
- msgstr "Spanish (Puerto Rico)"
5061
 
5062
  # Spanish; Castilian
5063
  #: ../languages/dynamic_strings.php:188
@@ -5067,573 +5064,573 @@ msgstr "Spanish (Paraguay)"
5067
  # Spanish; Castilian
5068
  #: ../languages/dynamic_strings.php:189
5069
  msgid "l-es-sv"
5070
- msgstr "Spanish (El Salvador)"
5071
 
5072
  # Spanish; Castilian
5073
  #: ../languages/dynamic_strings.php:190
5074
  msgid "l-es-uy"
5075
- msgstr "Spanish (Uruguay)"
5076
 
5077
  # Spanish; Castilian
5078
  #: ../languages/dynamic_strings.php:191
5079
  msgid "l-es-ve"
5080
- msgstr "Spanish (Venezuela)"
5081
 
5082
  # Estonian
5083
  #: ../languages/dynamic_strings.php:192
5084
  msgid "l-et"
5085
- msgstr "Estonian"
5086
 
5087
  # Estonian
5088
  #: ../languages/dynamic_strings.php:193
5089
  msgid "l-et-ee"
5090
- msgstr "Estonian (Estonia)"
5091
 
5092
  # Basque
5093
  #: ../languages/dynamic_strings.php:194
5094
  msgid "l-eu"
5095
- msgstr "Basque"
5096
 
5097
  # Basque
5098
  #: ../languages/dynamic_strings.php:195
5099
  msgid "l-eu-es"
5100
- msgstr "Basque (Spain)"
5101
 
5102
  # Persian
5103
  #: ../languages/dynamic_strings.php:196
5104
  msgid "l-fa"
5105
- msgstr "Persian"
5106
 
5107
  # Persian
5108
  #: ../languages/dynamic_strings.php:197
5109
  msgid "l-fa-ir"
5110
- msgstr "Persian (Iran)"
5111
 
5112
  # Finnish
5113
  #: ../languages/dynamic_strings.php:198
5114
  msgid "l-fi"
5115
- msgstr "Finnish"
5116
 
5117
  # Finnish
5118
  #: ../languages/dynamic_strings.php:199
5119
  msgid "l-fi-fi"
5120
- msgstr "Finnish (Finland)"
5121
 
5122
  # Faroese
5123
  #: ../languages/dynamic_strings.php:200
5124
  msgid "l-fo"
5125
- msgstr "Faroese"
5126
 
5127
  # Faroese
5128
  #: ../languages/dynamic_strings.php:201
5129
  msgid "l-fo-fo"
5130
- msgstr "Faroese (Faroe Islands)"
5131
 
5132
  # French
5133
  #: ../languages/dynamic_strings.php:202
5134
  msgid "l-fr"
5135
- msgstr "French"
5136
 
5137
  # French
5138
  #: ../languages/dynamic_strings.php:203
5139
  msgid "l-fr-be"
5140
- msgstr "French (Belgium)"
5141
 
5142
  # French
5143
  #: ../languages/dynamic_strings.php:204
5144
  msgid "l-fr-ca"
5145
- msgstr "French (Canada)"
5146
 
5147
  # French
5148
  #: ../languages/dynamic_strings.php:205
5149
  msgid "l-fr-ch"
5150
- msgstr "French (Switzerland)"
5151
 
5152
  # French
5153
  #: ../languages/dynamic_strings.php:206
5154
  msgid "l-fr-fr"
5155
- msgstr "French (France)"
5156
 
5157
  # French
5158
  #: ../languages/dynamic_strings.php:207
5159
  msgid "l-fr-lu"
5160
- msgstr "French (Luxembourg)"
5161
 
5162
  # French
5163
  #: ../languages/dynamic_strings.php:208
5164
  msgid "l-fr-mc"
5165
- msgstr "French (Monaco)"
5166
 
5167
  # Galician
5168
  #: ../languages/dynamic_strings.php:209
5169
  msgid "l-gl"
5170
- msgstr "Galician"
5171
 
5172
  # Spanish; Castilian
5173
  #: ../languages/dynamic_strings.php:210
5174
  msgid "l-gl-es"
5175
- msgstr "Galician (Spain)"
5176
 
5177
  # Gujarati
5178
  #: ../languages/dynamic_strings.php:211
5179
  msgid "l-gu"
5180
- msgstr "Gujarati"
5181
 
5182
  # Gujarati
5183
  #: ../languages/dynamic_strings.php:212
5184
  msgid "l-gu-in"
5185
- msgstr "Gujarati (India)"
5186
 
5187
  # Hebrew
5188
  #: ../languages/dynamic_strings.php:213
5189
  msgid "l-he"
5190
- msgstr "Hebrew"
5191
 
5192
  # Hebrew
5193
  #: ../languages/dynamic_strings.php:214
5194
  msgid "l-he-il"
5195
- msgstr "Hebrew (Israel)"
5196
 
5197
  # Hindi
5198
  #: ../languages/dynamic_strings.php:215
5199
  msgid "l-hi"
5200
- msgstr "Hindi"
5201
 
5202
  # Hindi
5203
  #: ../languages/dynamic_strings.php:216
5204
  msgid "l-hi-in"
5205
- msgstr "Hindi (India)"
5206
 
5207
  # Croatian
5208
  #: ../languages/dynamic_strings.php:217
5209
  msgid "l-hr"
5210
- msgstr "Croatian"
5211
 
5212
  # Croatian
5213
  #: ../languages/dynamic_strings.php:218
5214
  msgid "l-hr-ba"
5215
- msgstr "Croatian (Bosnia)"
5216
 
5217
  # Croatian
5218
  #: ../languages/dynamic_strings.php:219
5219
  msgid "l-hr-hr"
5220
- msgstr "Croatian (Croatia)"
5221
 
5222
  # Hungarian
5223
  #: ../languages/dynamic_strings.php:220
5224
  msgid "l-hu"
5225
- msgstr "Hungarian"
5226
 
5227
  # Hungarian
5228
  #: ../languages/dynamic_strings.php:221
5229
  msgid "l-hu-hu"
5230
- msgstr "Hungarian (Hungary)"
5231
 
5232
  # Armenian
5233
  #: ../languages/dynamic_strings.php:222
5234
  msgid "l-hy"
5235
- msgstr "Armenian"
5236
 
5237
  # Armenian
5238
  #: ../languages/dynamic_strings.php:223
5239
  msgid "l-hy-am"
5240
- msgstr "Armenian (Armenia)"
5241
 
5242
  #: ../languages/dynamic_strings.php:224
5243
  msgid "l-id"
5244
- msgstr "Indonesian"
5245
 
5246
  #: ../languages/dynamic_strings.php:225
5247
  msgid "l-id-id"
5248
- msgstr "Indonesian"
5249
 
5250
  # Icelandic
5251
  #: ../languages/dynamic_strings.php:226
5252
  msgid "l-is"
5253
- msgstr "Icelandic"
5254
 
5255
  # Icelandic
5256
  #: ../languages/dynamic_strings.php:227
5257
  msgid "l-is-is"
5258
- msgstr "Icelandic (Iceland)"
5259
 
5260
  # Italian
5261
  #: ../languages/dynamic_strings.php:228
5262
  msgid "l-it"
5263
- msgstr "Italian"
5264
 
5265
  # Italian
5266
  #: ../languages/dynamic_strings.php:229
5267
  msgid "l-it-ch"
5268
- msgstr "Italian (Switzerland)"
5269
 
5270
  # Italian
5271
  #: ../languages/dynamic_strings.php:230
5272
  msgid "l-it-it"
5273
- msgstr "Italian (Italy)"
5274
 
5275
  # Japanese
5276
  #: ../languages/dynamic_strings.php:231
5277
  msgid "l-ja"
5278
- msgstr "Japanese"
5279
 
5280
  # Japanese
5281
  #: ../languages/dynamic_strings.php:232
5282
  msgid "l-ja-jp"
5283
- msgstr "Japanese (Japan)"
5284
 
5285
  # Georgian
5286
  #: ../languages/dynamic_strings.php:233
5287
  msgid "l-ka"
5288
- msgstr "Georgian"
5289
 
5290
  # Georgian
5291
  #: ../languages/dynamic_strings.php:234
5292
  msgid "l-ka-ge"
5293
- msgstr "Georgian (Georgia)"
5294
 
5295
  # Kazakh
5296
  #: ../languages/dynamic_strings.php:235
5297
  msgid "l-kk"
5298
- msgstr "Kazakh"
5299
 
5300
  # Kazakh
5301
  #: ../languages/dynamic_strings.php:236
5302
  msgid "l-kk-kz"
5303
- msgstr "Kazakh (Kazakhstan)"
5304
 
5305
  # Kannada
5306
  #: ../languages/dynamic_strings.php:237
5307
  msgid "l-kn"
5308
- msgstr "Kannada"
5309
 
5310
  # Kannada
5311
  #: ../languages/dynamic_strings.php:238
5312
  msgid "l-kn-in"
5313
- msgstr "Kannada (India)"
5314
 
5315
  # Korean
5316
  #: ../languages/dynamic_strings.php:239
5317
  msgid "l-ko"
5318
- msgstr "Korean"
5319
 
5320
  # Korean
5321
  #: ../languages/dynamic_strings.php:240
5322
  msgid "l-ko-kr"
5323
- msgstr "Korean (Korea)"
5324
 
5325
  # Korean
5326
  #: ../languages/dynamic_strings.php:241
5327
  msgid "l-kok"
5328
- msgstr "Konkani"
5329
 
5330
  # Korean
5331
  #: ../languages/dynamic_strings.php:242
5332
  msgid "l-kok-in"
5333
- msgstr "Konkani (India)"
5334
 
5335
  # Kirghiz; Kyrgyz
5336
  #: ../languages/dynamic_strings.php:243
5337
  msgid "l-ky"
5338
- msgstr "Kirghiz"
5339
 
5340
  # Kirghiz; Kyrgyz
5341
  #: ../languages/dynamic_strings.php:244
5342
  msgid "l-ky-kg"
5343
- msgstr "Kirghiz (Kazakhstan)"
5344
 
5345
  # Lithuanian
5346
  #: ../languages/dynamic_strings.php:245
5347
  msgid "l-lt"
5348
- msgstr "Lithuanian"
5349
 
5350
  # Lithuanian
5351
  #: ../languages/dynamic_strings.php:246
5352
  msgid "l-lt-lt"
5353
- msgstr "Lithuanian (Lithuania)"
5354
 
5355
  # Latvian
5356
  #: ../languages/dynamic_strings.php:247
5357
  msgid "l-lv"
5358
- msgstr "Latvian"
5359
 
5360
  # Latvian
5361
  #: ../languages/dynamic_strings.php:248
5362
  msgid "l-lv-lv"
5363
- msgstr "Latvian (Latvia)"
5364
 
5365
  # Maori
5366
  #: ../languages/dynamic_strings.php:249
5367
  msgid "l-mi"
5368
- msgstr "Maori"
5369
 
5370
  # Maori
5371
  #: ../languages/dynamic_strings.php:250
5372
  msgid "l-mi-nz"
5373
- msgstr "Maori (New Zealand)"
5374
 
5375
  # Macedonian
5376
  #: ../languages/dynamic_strings.php:251
5377
  msgid "l-mk"
5378
- msgstr "Macedonian"
5379
 
5380
  # Macedonian
5381
  #: ../languages/dynamic_strings.php:252
5382
  msgid "l-mk-ml"
5383
- msgstr "Macedonian (FYROM)"
5384
 
5385
  # Mongolian
5386
  #: ../languages/dynamic_strings.php:253
5387
  msgid "l-mn"
5388
- msgstr "Mongolian"
5389
 
5390
  # Mongolian
5391
  #: ../languages/dynamic_strings.php:254
5392
  msgid "l-mn-mn"
5393
- msgstr "Mongolian (Mongolia)"
5394
 
5395
  # Marathi
5396
  #: ../languages/dynamic_strings.php:255
5397
  msgid "l-mr"
5398
- msgstr "Marathi"
5399
 
5400
  # Marathi
5401
  #: ../languages/dynamic_strings.php:256
5402
  msgid "l-mr-in"
5403
- msgstr "Marathi (India)"
5404
 
5405
  # Malay
5406
  #: ../languages/dynamic_strings.php:257
5407
  msgid "l-ms"
5408
- msgstr "Malay"
5409
 
5410
  # Malay
5411
  #: ../languages/dynamic_strings.php:258
5412
  msgid "l-ms-bn"
5413
- msgstr "Malay (Brunei)"
5414
 
5415
  # Malay
5416
  #: ../languages/dynamic_strings.php:259
5417
  msgid "l-ms-my"
5418
- msgstr "Malay (Malaysia)"
5419
 
5420
  # Maltese
5421
  #: ../languages/dynamic_strings.php:260
5422
  msgid "l-mt"
5423
- msgstr "Maltese"
5424
 
5425
  # Maltese
5426
  #: ../languages/dynamic_strings.php:261
5427
  msgid "l-mt-mt"
5428
- msgstr "Maltese (Malta)"
5429
 
5430
  # Norwegian Bokmål
5431
  #: ../languages/dynamic_strings.php:262
5432
  msgid "l-nb"
5433
- msgstr "Norwegian; Bokmål"
5434
 
5435
  # Norwegian Bokmål
5436
  #: ../languages/dynamic_strings.php:263
5437
  msgid "l-nb-no"
5438
- msgstr "Norwegian (Norway)"
5439
 
5440
  # Dutch; Flemish
5441
  #: ../languages/dynamic_strings.php:264
5442
  msgid "l-nl"
5443
- msgstr "Dutch; Flemish"
5444
 
5445
  # Belarusian
5446
  #: ../languages/dynamic_strings.php:265
5447
  msgid "l-nl-be"
5448
- msgstr "Dutch (Belgium)"
5449
 
5450
  # Dutch; Flemish
5451
  #: ../languages/dynamic_strings.php:266
5452
  msgid "l-nl-nl"
5453
- msgstr "Dutch (The Netherlands)"
5454
 
5455
  # Norwegian Nynorsk
5456
  #: ../languages/dynamic_strings.php:267
5457
  msgid "l-nn-no"
5458
- msgstr "Norwegian; Nynorsk (Norway)"
5459
 
5460
  #: ../languages/dynamic_strings.php:268
5461
  msgid "l-ns"
5462
- msgstr "Northern Sotho"
5463
 
5464
  #: ../languages/dynamic_strings.php:269
5465
  msgid "l-ns-za"
5466
- msgstr "Northern Sotho (South Africa)"
5467
 
5468
  # Panjabi; Punjabi
5469
  #: ../languages/dynamic_strings.php:270
5470
  msgid "l-pa"
5471
- msgstr "Panjabi; Punjabi"
5472
 
5473
  # Panjabi; Punjabi
5474
  #: ../languages/dynamic_strings.php:271
5475
  msgid "l-pa-in"
5476
- msgstr "Panjabi (India)"
5477
 
5478
  # Polish
5479
  #: ../languages/dynamic_strings.php:272
5480
  msgid "l-pl"
5481
- msgstr "Polish"
5482
 
5483
  # Polish
5484
  #: ../languages/dynamic_strings.php:273
5485
  msgid "l-pl-pl"
5486
- msgstr "Polish (Poland)"
5487
 
5488
  # Pushto; Pashto
5489
  #: ../languages/dynamic_strings.php:274
5490
  msgid "l-ps"
5491
- msgstr "Pushto; Pashto"
5492
 
5493
  # Pushto; Pashto
5494
  #: ../languages/dynamic_strings.php:275
5495
  msgid "l-ps-ar"
5496
- msgstr "Pashto (Afghanistan)"
5497
 
5498
  # Portuguese
5499
  #: ../languages/dynamic_strings.php:276
5500
  msgid "l-pt"
5501
- msgstr "Portuguese"
5502
 
5503
  # Portuguese
5504
  #: ../languages/dynamic_strings.php:277
5505
  msgid "l-pt-br"
5506
- msgstr "Portuguese (Brazil)"
5507
 
5508
  # Portuguese
5509
  #: ../languages/dynamic_strings.php:278
5510
  msgid "l-pt-pt"
5511
- msgstr "Portuguese (Portugal)"
5512
 
5513
  # Quechua
5514
  #: ../languages/dynamic_strings.php:279
5515
  msgid "l-qu"
5516
- msgstr "Quechua"
5517
 
5518
  # Quechua
5519
  #: ../languages/dynamic_strings.php:280
5520
  msgid "l-qu-bo"
5521
- msgstr "Quechua (Bolivia)"
5522
 
5523
  # Quechua
5524
  #: ../languages/dynamic_strings.php:281
5525
  msgid "l-qu-ec"
5526
- msgstr "Quechua (Ecuador)"
5527
 
5528
  # Quechua
5529
  #: ../languages/dynamic_strings.php:282
5530
  msgid "l-qu-pe"
5531
- msgstr "Quechua (Peru)"
5532
 
5533
  # Romanian; Moldavian; Moldovan
5534
  #: ../languages/dynamic_strings.php:283
5535
  msgid "l-ro"
5536
- msgstr "Romanian"
5537
 
5538
  # Romanian; Moldavian; Moldovan
5539
  #: ../languages/dynamic_strings.php:284
5540
  msgid "l-ro-ro"
5541
- msgstr "Romanian (Romania)"
5542
 
5543
  # Russian
5544
  #: ../languages/dynamic_strings.php:285
5545
  msgid "l-ru"
5546
- msgstr "Russian"
5547
 
5548
  # Russian
5549
  #: ../languages/dynamic_strings.php:286
5550
  msgid "l-ru-ru"
5551
- msgstr "Russian (Russia)"
5552
 
5553
  # Sanskrit
5554
  #: ../languages/dynamic_strings.php:287
5555
  msgid "l-sa"
5556
- msgstr "Sanskrit"
5557
 
5558
  # Sanskrit (India)
5559
  #: ../languages/dynamic_strings.php:288
5560
  msgid "l-sa-in"
5561
- msgstr "Sanskrit (India)"
5562
 
5563
  # Northern Sami
5564
  #: ../languages/dynamic_strings.php:289
5565
  msgid "l-se"
5566
- msgstr "Northern Sami"
5567
 
5568
  # Northern Sami
5569
  #: ../languages/dynamic_strings.php:290
5570
  msgid "l-se-fi"
5571
- msgstr "Northern Sami (Finland)"
5572
 
5573
  # Northern Sami
5574
  #: ../languages/dynamic_strings.php:291
5575
  msgid "l-se-no"
5576
- msgstr "Northern Sami (Norway)"
5577
 
5578
  # Northern Sami
5579
  #: ../languages/dynamic_strings.php:292
5580
  msgid "l-se-se"
5581
- msgstr "Northern Sami (Sweden)"
5582
 
5583
  # Slovak
5584
  #: ../languages/dynamic_strings.php:293
5585
  msgid "l-sk"
5586
- msgstr "Slovak"
5587
 
5588
  # Slovak
5589
  #: ../languages/dynamic_strings.php:294
5590
  msgid "l-sk-sk"
5591
- msgstr "Slovak (Slovakia)"
5592
 
5593
  # Slovenian
5594
  #: ../languages/dynamic_strings.php:295
5595
  msgid "l-sl"
5596
- msgstr "Slovenian"
5597
 
5598
  # Slovenian
5599
  #: ../languages/dynamic_strings.php:296
5600
  msgid "l-sl-si"
5601
- msgstr "Slovenian (Slovenia)"
5602
 
5603
  # Albanian
5604
  #: ../languages/dynamic_strings.php:297
5605
  msgid "l-sq"
5606
- msgstr "Albanian"
5607
 
5608
  # Albanian
5609
  #: ../languages/dynamic_strings.php:298
5610
  msgid "l-sq-al"
5611
- msgstr "Albanian (Albania)"
5612
 
5613
  # Serbian
5614
  #: ../languages/dynamic_strings.php:299
5615
  msgid "l-sr-ba"
5616
- msgstr "Serbian (Bosnia and Herzegovina)"
5617
 
5618
  # Serbian
5619
  #: ../languages/dynamic_strings.php:300
5620
  msgid "l-sr-sp"
5621
- msgstr "Serbian (Serbia and Montenegro)"
5622
 
5623
  # Swedish
5624
  #: ../languages/dynamic_strings.php:301
5625
  msgid "l-sv"
5626
- msgstr "Swedish"
5627
 
5628
  # Swedish
5629
  #: ../languages/dynamic_strings.php:302
5630
  msgid "l-sv-fi"
5631
- msgstr "Swedish (Finland)"
5632
 
5633
  # Swedish
5634
  #: ../languages/dynamic_strings.php:303
5635
  msgid "l-sv-se"
5636
- msgstr "Swedish (Sweden)"
5637
 
5638
  # Swahili
5639
  #: ../languages/dynamic_strings.php:304
@@ -5643,279 +5640,279 @@ msgstr "Swahili"
5643
  # Swahili
5644
  #: ../languages/dynamic_strings.php:305
5645
  msgid "l-sw-ke"
5646
- msgstr "Swahili (Kenya)"
5647
 
5648
  # Tamil
5649
  #: ../languages/dynamic_strings.php:306
5650
  msgid "l-ta"
5651
- msgstr "Tamil"
5652
 
5653
  # Tamil
5654
  #: ../languages/dynamic_strings.php:307
5655
  msgid "l-ta-in"
5656
- msgstr "Tamil (India)"
5657
 
5658
  # Telugu
5659
  #: ../languages/dynamic_strings.php:308
5660
  msgid "l-te"
5661
- msgstr "Telugu"
5662
 
5663
  # Telugu
5664
  #: ../languages/dynamic_strings.php:309
5665
  msgid "l-te-in"
5666
- msgstr "Telugu (India)"
5667
 
5668
  # Thai
5669
  #: ../languages/dynamic_strings.php:310
5670
  msgid "l-th"
5671
- msgstr "Thai"
5672
 
5673
  # Thai
5674
  #: ../languages/dynamic_strings.php:311
5675
  msgid "l-th-th"
5676
- msgstr "Thai (Thailand)"
5677
 
5678
  # Tagalog
5679
  #: ../languages/dynamic_strings.php:312
5680
  msgid "l-tl"
5681
- msgstr "Tagalog"
5682
 
5683
  # Tagalog
5684
  #: ../languages/dynamic_strings.php:313
5685
  msgid "l-tl-ph"
5686
- msgstr "Tagalog (Philippines)"
5687
 
5688
  # Tswana
5689
  #: ../languages/dynamic_strings.php:314
5690
  msgid "l-tn"
5691
- msgstr "Tswana"
5692
 
5693
  # Tswana
5694
  #: ../languages/dynamic_strings.php:315
5695
  msgid "l-tn-za"
5696
- msgstr "Tswana (South Africa)"
5697
 
5698
  # Turkish
5699
  #: ../languages/dynamic_strings.php:316
5700
  msgid "l-tr"
5701
- msgstr "Turkish"
5702
 
5703
  # Turkish
5704
  #: ../languages/dynamic_strings.php:317
5705
  msgid "l-tr-tr"
5706
- msgstr "Turkish (Turkey)"
5707
 
5708
  # Tatar
5709
  #: ../languages/dynamic_strings.php:318
5710
  msgid "l-tt"
5711
- msgstr "Tatar"
5712
 
5713
  # Tatar
5714
  #: ../languages/dynamic_strings.php:319
5715
  msgid "l-tt-ru"
5716
- msgstr "Tatar (Russia)"
5717
 
5718
  # Tsonga
5719
  #: ../languages/dynamic_strings.php:320
5720
  msgid "l-ts"
5721
- msgstr "Tsonga"
5722
 
5723
  # Ukrainian
5724
  #: ../languages/dynamic_strings.php:321
5725
  msgid "l-uk"
5726
- msgstr "Ukrainian"
5727
 
5728
  # Ukrainian
5729
  #: ../languages/dynamic_strings.php:322
5730
  msgid "l-uk-ua"
5731
- msgstr "Ukrainian (Ukraine)"
5732
 
5733
  # Urdu
5734
  #: ../languages/dynamic_strings.php:323
5735
  msgid "l-ur"
5736
- msgstr "Urdu"
5737
 
5738
  # Urdu
5739
  #: ../languages/dynamic_strings.php:324
5740
  msgid "l-ur-pk"
5741
- msgstr "Urdu (Pakistan)"
5742
 
5743
  # Uzbek
5744
  #: ../languages/dynamic_strings.php:325
5745
  msgid "l-uz"
5746
- msgstr "Uzbek"
5747
 
5748
  # Uzbek
5749
  #: ../languages/dynamic_strings.php:326
5750
  msgid "l-uz-uz"
5751
- msgstr "Uzbek (Uzbekistan)"
5752
 
5753
  # Vietnamese
5754
  #: ../languages/dynamic_strings.php:327
5755
  msgid "l-vi"
5756
- msgstr "Vietnamese"
5757
 
5758
  # Vietnamese
5759
  #: ../languages/dynamic_strings.php:328
5760
  msgid "l-vi-vn"
5761
- msgstr "Vietnamese (Viet Nam)"
5762
 
5763
  # Xhosa
5764
  #: ../languages/dynamic_strings.php:329
5765
  msgid "l-xh"
5766
- msgstr "Xhosa"
5767
 
5768
  # Xhosa
5769
  #: ../languages/dynamic_strings.php:330
5770
  msgid "l-xh-za"
5771
- msgstr "Xhosa (South Africa)"
5772
 
5773
  # Chinese
5774
  #: ../languages/dynamic_strings.php:331
5775
  msgid "l-zh"
5776
- msgstr "Chinese"
5777
 
5778
  # Chinese
5779
  #: ../languages/dynamic_strings.php:332
5780
  msgid "l-zh-cn"
5781
- msgstr "Chinese (S)"
5782
 
5783
  # Chinese
5784
  #: ../languages/dynamic_strings.php:333
5785
  msgid "l-zh-hk"
5786
- msgstr "Chinese (Hong Kong)"
5787
 
5788
  # Chinese
5789
  #: ../languages/dynamic_strings.php:334
5790
  msgid "l-zh-mo"
5791
- msgstr "Chinese (Macau)"
5792
 
5793
  # Chinese
5794
  #: ../languages/dynamic_strings.php:335
5795
  msgid "l-zh-sg"
5796
- msgstr "Chinese (Singapore)"
5797
 
5798
  # Chinese
5799
  #: ../languages/dynamic_strings.php:336
5800
  msgid "l-zh-tw"
5801
- msgstr "Chinese (T)"
5802
 
5803
  # Zulu
5804
  #: ../languages/dynamic_strings.php:337
5805
  msgid "l-zu"
5806
- msgstr "Zulu"
5807
 
5808
  # Zulu
5809
  #: ../languages/dynamic_strings.php:338
5810
  msgid "l-zu-za"
5811
- msgstr "Zulu (South Africa)"
5812
 
5813
  # Unknown
5814
  #: ../languages/dynamic_strings.php:340
5815
  msgid "l-empty"
5816
- msgstr "Unknown"
5817
 
5818
  # Unknown
5819
  #: ../languages/dynamic_strings.php:341
5820
  msgid "l-xx"
5821
- msgstr "Unknown"
5822
 
5823
  #: ../languages/dynamic_strings.php:343
5824
  msgid "c-xy"
5825
- msgstr "Local IP"
5826
 
5827
- #: ../wp-slimstat.php:243 ../wp-slimstat.php:530
5828
  msgid "Notice: Pageview filtered by third-party code"
5829
  msgstr "Заўвага: Прагляд старонкі фільтруюцца іншым кодам"
5830
 
5831
- #: ../wp-slimstat.php:260
5832
  #, php-format
5833
  msgid "Error: Malformed URL %s"
5834
  msgstr "Памылка: Няправільны фармат URL% s"
5835
 
5836
- #: ../wp-slimstat.php:284
5837
  #, php-format
5838
  msgid "Notice: Referrer %s is blacklisted"
5839
  msgstr "Заўвага: реферр %s занесены ў чорны спіс"
5840
 
5841
- #: ../wp-slimstat.php:362
5842
  #, php-format
5843
  msgid "Notice: Permalink %s is blacklisted"
5844
  msgstr "Заўвага: Permalinks %s занесены ў чорны спіс"
5845
 
5846
- #: ../wp-slimstat.php:373
5847
  msgid "Error: Empty or not supported IP address format (IPv6)"
5848
  msgstr "Памылка: пустая або не падтрымліваецца фармат IP-адрас (IPv6)"
5849
 
5850
- #: ../wp-slimstat.php:382
5851
  #, php-format
5852
  msgid "Notice: Logged in user %s not tracked"
5853
  msgstr "Заўвага: аўтарызаваны карыстальнік %s не адсочваецца"
5854
 
5855
- #: ../wp-slimstat.php:390
5856
  #, php-format
5857
  msgid "Notice: User with capability %s not tracked"
5858
  msgstr "Заўвага: Карыстальнік з магчымасцю %s не адсочваецца"
5859
 
5860
- #: ../wp-slimstat.php:400
5861
  #, php-format
5862
  msgid "Notice: User %s is blacklisted"
5863
  msgstr "Заўвага: Карыстальнік %s занесены ў чорны спіс"
5864
 
5865
- #: ../wp-slimstat.php:421
5866
  #, php-format
5867
  msgid "Notice: Spammer %s not tracked"
5868
  msgstr "Заўвага: Спамер %s не адсочваецца"
5869
 
5870
- #: ../wp-slimstat.php:450
5871
  #, php-format
5872
  msgid "Notice: IP address %s is blacklisted"
5873
  msgstr "Заўвага: IP-адрас %s занесены ў чорны спіс"
5874
 
5875
- #: ../wp-slimstat.php:479
5876
  #, php-format
5877
  msgid "Notice: Country %s is blacklisted"
5878
  msgstr "Заўвага: краіна %s занесена ў чорны спіс"
5879
 
5880
- #: ../wp-slimstat.php:488
5881
  msgid "Notice: Prefetch requests are ignored"
5882
  msgstr "Заўвага: папярэднія запыты ігнаруюцца"
5883
 
5884
- #: ../wp-slimstat.php:504
5885
  msgid "Notice: Bot not tracked"
5886
  msgstr "Заўвага: праграма-робат не адсочваецца"
5887
 
5888
- #: ../wp-slimstat.php:513
5889
  #, php-format
5890
  msgid "Notice: Browser %s is blacklisted"
5891
  msgstr "Заўвага: Браўзэры %s занесены ў чорны спіс"
5892
 
5893
- #: ../wp-slimstat.php:543
5894
  msgid "Error:"
5895
  msgstr "Пасылка:"
5896
 
5897
- #: ../wp-slimstat.php:1161
5898
  msgid "Invalid payload string. Try clearing your WordPress cache."
5899
  msgstr ""
5900
  "Недапушчальная радок карыснай нагрузкі. Паспрабуйце ачысціць кэш WordPress."
5901
 
5902
- #: ../wp-slimstat.php:1171
5903
  msgid "Invalid data signature. Try clearing your WordPress cache."
5904
  msgstr "Няправільная подпіс дадзеных. Паспрабуйце ачысціць кэш WordPress."
5905
 
5906
- #: ../wp-slimstat.php:1265
5907
  msgid "There was an error downloading the MaxMind Geolite DB:"
5908
  msgstr "Памылка загрузкі MaxMind Geolite DB:"
5909
 
5910
- #: ../wp-slimstat.php:1273 ../wp-slimstat.php:1282
5911
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5912
  msgstr "Памылка пры адкрыцці архіва MaxMind Geolite DB."
5913
 
5914
- #: ../wp-slimstat.php:1277
5915
  msgid "Function gzopen not defined. Aborting."
5916
  msgstr "Функцыя gzopen не вызначана. "
5917
 
5918
- #: ../wp-slimstat.php:1287
5919
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5920
  msgstr "Памылка пры адкрыцці архiва MaxMind Geolite DB."
5921
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2016-05-04 22:23-0500\n"
7
+ "PO-Revision-Date: 2016-05-04 22:23-0500\n"
8
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
9
  "Language-Team: Natasha\n"
10
  "Language: be\n"
108
  "выходных спасылак, загрузкі і г.д. Гэтая опцыя ігнаруецца, калі рэжым "
109
  "адсочвання усталяваны на кліенце."
110
 
111
+ #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1350
112
  msgid "Off"
113
  msgstr "выключана"
114
 
211
 
212
  #: ../admin/config/index.php:105 ../admin/view/wp-slimstat-reports.php:81
213
  #: ../admin/view/wp-slimstat-reports.php:90
214
+ #: ../admin/view/wp-slimstat-reports.php:1366
215
+ #: ../admin/view/wp-slimstat-reports.php:1524
216
  msgid "Pageviews"
217
  msgstr "прагляд старонкі"
218
 
219
  #: ../admin/config/index.php:105 ../admin/view/wp-slimstat-reports.php:91
220
  #: ../admin/view/wp-slimstat-reports.php:285
221
  #: ../admin/view/wp-slimstat-reports.php:526
222
+ #: ../admin/view/wp-slimstat-reports.php:1381
223
+ #: ../admin/view/wp-slimstat-reports.php:1426
224
  msgid "Unique IPs"
225
  msgstr "Унікальныя IP-адрасы"
226
 
271
 
272
  #: ../admin/config/index.php:109 ../admin/view/index.php:89
273
  #: ../admin/view/wp-slimstat-db.php:98
274
+ #: ../admin/view/wp-slimstat-reports.php:1350
275
  msgid "days"
276
  msgstr "дні"
277
 
1418
  msgstr "Старыя таблiцы"
1419
 
1420
  #: ../admin/config/maintenance.php:298
1421
+ #, php-format
1422
  msgid ""
1423
  "It looks like your database was upgraded from a version prior to 4.0. Our "
1424
  "upgrade procedure follows a conservative approach, and does not "
1430
  "%s. When in doubt, do not hesitate to contact us for help."
1431
  msgstr ""
1432
  "Падобна на тое, што ваша база дадзеных была абноўлена з версіі да 4.0. Наша "
1433
+ "працэдура абнаўлення мае кансерватыўны падыход, і не будзе аўтаматычна "
1434
+ "выконваць любую зборку смецця. Іншымі словамі, старыя данныя не выдаляюцца з "
1435
  "базы дадзеных. Гэта дазваляе нашым карыстальнікам лёгка адкаціць ў працоўны "
1436
  "стан у выпадку ўзнікнення праблем. Аднак, калі ўсё працуе, як і чакалася "
1437
  "(трэкера і справаздач), вы можаце ўвайсці ў PhpMyAdmin і выдаліце наступныя "
1438
+ "табліцы, калі яны існуюць: %s. Калі ёсць сумненні, не саромейцеся звяртацца "
1439
+ "да нас за дапамогай."
1440
 
1441
  #: ../admin/view/addons.php:19
1442
  #, php-format
1503
  msgstr "Усталяваць і актызаваць:"
1504
 
1505
  #: ../admin/view/index.php:8
 
1506
  msgid "Filter"
1507
+ msgstr "фільтр"
1508
 
1509
  #: ../admin/view/index.php:33
1510
  msgid "Load"
1511
  msgstr "загрузка"
1512
 
1513
+ #: ../admin/view/index.php:53 ../admin/view/wp-slimstat-reports.php:1388
1514
  msgid "Today"
1515
  msgstr "Сёння"
1516
 
1517
+ #: ../admin/view/index.php:54 ../admin/view/wp-slimstat-reports.php:1391
1518
  msgid "Yesterday"
1519
  msgstr "Учора"
1520
 
1639
  msgstr "Чытач сіндыкацыі"
1640
 
1641
  #: ../admin/view/right-now.php:41 ../admin/view/wp-slimstat-reports.php:1036
1642
+ #: ../admin/view/wp-slimstat-reports.php:1749
1643
  msgid "No data to display"
1644
  msgstr "Няма дадзеных для адлюстравання"
1645
 
1648
  msgstr "Дата і час"
1649
 
1650
  #: ../admin/view/right-now.php:69 ../admin/view/wp-slimstat-reports.php:1088
1651
+ #: ../admin/view/wp-slimstat-reports.php:1792 ../wp-slimstat.php:1379
1652
  msgid "c-"
1653
  msgstr ""
1654
 
1863
  msgstr "ID падзеі"
1864
 
1865
  #: ../admin/view/wp-slimstat-db.php:116
1866
+ #: ../admin/view/wp-slimstat-reports.php:1763
1867
  msgid "Type"
1868
  msgstr "тып"
1869
 
2036
  msgstr "чалавечыя прагляды"
2037
 
2038
  #: ../admin/view/wp-slimstat-reports.php:284
2039
+ #: ../admin/view/wp-slimstat-reports.php:1422
2040
  msgid "Visits"
2041
  msgstr "прагляды"
2042
 
2333
  msgstr "Код"
2334
 
2335
  #: ../admin/view/wp-slimstat-reports.php:1102
2336
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1391
2337
  msgid "l-"
2338
  msgstr ""
2339
 
2346
  msgstr "Referrer"
2347
 
2348
  #: ../admin/view/wp-slimstat-reports.php:1174
2349
+ #: ../admin/view/wp-slimstat-reports.php:1406
2350
+ #: ../admin/view/wp-slimstat-reports.php:1462
2351
+ #: ../admin/view/wp-slimstat-reports.php:1468
2352
+ #: ../admin/view/wp-slimstat-reports.php:1474
2353
+ #: ../admin/view/wp-slimstat-reports.php:1480
2354
+ #: ../admin/view/wp-slimstat-reports.php:1486
2355
+ #: ../admin/view/wp-slimstat-reports.php:1492
2356
+ #: ../admin/view/wp-slimstat-reports.php:1498
2357
+ #: ../admin/view/wp-slimstat-reports.php:1770
2358
  msgid "Hits"
2359
  msgstr "колькасць праглядаў"
2360
 
2361
+ #: ../admin/view/wp-slimstat-reports.php:1333
2362
  msgid "Dataset Size"
2363
  msgstr "Памер набора дадзеных"
2364
 
2365
+ #: ../admin/view/wp-slimstat-reports.php:1335
2366
  msgid "Total number of records stored in the database."
2367
  msgstr "Агульная колькасць запісаў, якія захоўваюцца ў базе дадзеных."
2368
 
2369
+ #: ../admin/view/wp-slimstat-reports.php:1337
2370
  msgid "DB Size"
2371
  msgstr "Памер набора дадзеных"
2372
 
2373
+ #: ../admin/view/wp-slimstat-reports.php:1340
2374
  msgid "Tracking Enabled"
2375
  msgstr "Уключыць адсочванне"
2376
 
2377
+ #: ../admin/view/wp-slimstat-reports.php:1343
2378
  msgid "Javascript Mode"
2379
  msgstr "Асінхронны рэжым"
2380
 
2381
+ #: ../admin/view/wp-slimstat-reports.php:1346
2382
  msgid "Tracking Browser Caps"
2383
  msgstr "адсочваць заглушку браўзэра"
2384
 
2385
+ #: ../admin/view/wp-slimstat-reports.php:1349
2386
  msgid "Auto purge"
2387
  msgstr "аўтаматычная чыстка"
2388
 
2389
+ #: ../admin/view/wp-slimstat-reports.php:1352
2390
  msgid "Oldest pageview"
2391
  msgstr "Старыя старонкi"
2392
 
2393
+ #: ../admin/view/wp-slimstat-reports.php:1353
2394
  msgid "No visits"
2395
  msgstr "няма наведвання"
2396
 
2397
+ #: ../admin/view/wp-slimstat-reports.php:1355
2398
  #: ../admin/wp-slimstat-admin.php:112
2399
  msgid "Geolocation"
2400
  msgstr "Геалакацыя"
2401
 
2402
+ #: ../admin/view/wp-slimstat-reports.php:1357
2403
  msgid "Date when the MaxMind Geolocation database was last updated."
2404
  msgstr "Дата, калі база дадзеных MaxMind Geolocation была абнаўленна."
2405
 
2406
+ #: ../admin/view/wp-slimstat-reports.php:1368
2407
+ #: ../admin/view/wp-slimstat-reports.php:1526
2408
  msgid ""
2409
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2410
  "the tracking code is executed."
2412
  "Запыт на загрузку аднаго файла HTML. Slimstat рэгіструе \"прагляд старонкі"
2413
  "\" кожны раз, калі выконваецца код адсочвання."
2414
 
2415
+ #: ../admin/view/wp-slimstat-reports.php:1370
2416
  msgid "Days in Range"
2417
  msgstr "Дні ў дыяпазоне"
2418
 
2419
+ #: ../admin/view/wp-slimstat-reports.php:1373
2420
  msgid "Average Daily Pageviews"
2421
  msgstr "Сярэдняя колькасць прагляду старонак"
2422
 
2423
+ #: ../admin/view/wp-slimstat-reports.php:1375
2424
  msgid ""
2425
  "How many pages have been visited on average every day during the current "
2426
  "period."
2428
  "Колькі старонак былі наведаны у сярэднім кожны дзень на працягу бягучага "
2429
  "перыяду."
2430
 
2431
+ #: ../admin/view/wp-slimstat-reports.php:1377
2432
  msgid "From Search Results"
2433
  msgstr "З вынікаў пошуку"
2434
 
2435
+ #: ../admin/view/wp-slimstat-reports.php:1379
2436
  msgid ""
2437
  "Visitors who landed on your site after searching for a keyword on Google, "
2438
  "Yahoo, etc."
2440
  "Наведвальнікі, якія прыйшлi на ваш сайт пасля пошуку па ключавым слове у "
2441
  "Google, Yahoo і г.д."
2442
 
2443
+ #: ../admin/view/wp-slimstat-reports.php:1383
2444
  msgid ""
2445
  "Used to differentiate between multiple requests to download a file from one "
2446
  "internet address (IP) and requests originating from many distinct addresses"
2449
  "аднаго інтэрнэт-адрасы (IP) і запытаў, якія адбываюцца з многіх розных "
2450
  "адрасоў"
2451
 
2452
+ #: ../admin/view/wp-slimstat-reports.php:1385
2453
  msgid "Last 30 minutes"
2454
  msgstr "Апошнiя 30 хвiлiн"
2455
 
2456
+ #: ../admin/view/wp-slimstat-reports.php:1424
2457
  msgid ""
2458
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2459
  "multiple times if they perform multiple visits."
2461
  "Час візіт не больш за 30 хвілін. Наведвальнікі, якія вярнуліся, "
2462
  "падлічваюцца некалькі разоў, калі яны выконваюць некалькі візітаў."
2463
 
2464
+ #: ../admin/view/wp-slimstat-reports.php:1428
2465
  msgid "It includes only traffic generated by human visitors."
2466
  msgstr "Уключае ў сябе толькі трафік, генераваны чалавека наведвальнікаў."
2467
 
2468
+ #: ../admin/view/wp-slimstat-reports.php:1430
2469
  msgid "Bounce rate"
2470
  msgstr "Паказчык адмоваў"
2471
 
2472
+ #: ../admin/view/wp-slimstat-reports.php:1432
2473
  msgid ""
2474
  "Percentage of single-page visits, i.e. visits in which the person left your "
2475
  "site from the entrance page."
2477
  "Працэнт наведванняў адной старонкі, гэта значыць наведванняў, у якіх "
2478
  "наведвальнік пакідае сайт са старонкі ўваходу."
2479
 
2480
+ #: ../admin/view/wp-slimstat-reports.php:1434
2481
  msgid "Known visitors"
2482
  msgstr "вядомыя наведвальнікі"
2483
 
2484
+ #: ../admin/view/wp-slimstat-reports.php:1436
2485
  msgid "Visitors who had previously left a comment on your blog."
2486
  msgstr "Наведвальнікі, якія раней пакінуў каментар на вашым блогу."
2487
 
2488
+ #: ../admin/view/wp-slimstat-reports.php:1438
2489
  msgid "New visitors"
2490
  msgstr "новыя наведвальнiкi"
2491
 
2492
+ #: ../admin/view/wp-slimstat-reports.php:1440
2493
  msgid "Human users who visited your site only once."
2494
  msgstr "Чалавечыя карыстальнікаў, якія наведалі ваш сайт толькі адзін раз."
2495
 
2496
+ #: ../admin/view/wp-slimstat-reports.php:1442
2497
  msgid "Bots"
2498
  msgstr "Боты"
2499
 
2500
+ #: ../admin/view/wp-slimstat-reports.php:1445
2501
  msgid "Pageviews per visit"
2502
  msgstr "Праглядаў старонак за адно наведванне"
2503
 
2504
+ #: ../admin/view/wp-slimstat-reports.php:1448
2505
  msgid "Longest visit"
2506
  msgstr "Самы доугi вiзiт"
2507
 
2508
+ #: ../admin/view/wp-slimstat-reports.php:1449
2509
  msgid "hits"
2510
  msgstr "колькасць праглядаў"
2511
 
2512
+ #: ../admin/view/wp-slimstat-reports.php:1460
2513
  msgid "0 - 30 seconds"
2514
  msgstr "0 - 30 секунд"
2515
 
2516
+ #: ../admin/view/wp-slimstat-reports.php:1466
2517
  msgid "31 - 60 seconds"
2518
  msgstr "31-60 секунд"
2519
 
2520
+ #: ../admin/view/wp-slimstat-reports.php:1472
2521
  msgid "1 - 3 minutes"
2522
  msgstr "1 - 3 хвіліны"
2523
 
2524
+ #: ../admin/view/wp-slimstat-reports.php:1478
2525
  msgid "3 - 5 minutes"
2526
  msgstr "3-5 хвіліны"
2527
 
2528
+ #: ../admin/view/wp-slimstat-reports.php:1484
2529
  msgid "5 - 7 minutes"
2530
  msgstr "5- 7 хвіліны"
2531
 
2532
+ #: ../admin/view/wp-slimstat-reports.php:1490
2533
  msgid "7 - 10 minutes"
2534
  msgstr "7-10 хвіліны"
2535
 
2536
+ #: ../admin/view/wp-slimstat-reports.php:1496
2537
  msgid "More than 10 minutes"
2538
  msgstr "Больш за 10 хвілін"
2539
 
2540
+ #: ../admin/view/wp-slimstat-reports.php:1508
2541
  msgid "Average visit duration"
2542
  msgstr "Сярэдняя працягласць наведвання"
2543
 
2544
+ #: ../admin/view/wp-slimstat-reports.php:1528
2545
  msgid "Unique Referrers"
2546
  msgstr "унікальныя рэферэрам"
2547
 
2548
+ #: ../admin/view/wp-slimstat-reports.php:1530
2549
  msgid ""
2550
  "A referrer (or referring site) is the site that a visitor previously visited "
2551
  "before following a link to your site."
2553
  "Рэферэрам з'яўляецца сайт, які наведвальнік раней наведвалі да наступнага "
2554
  "спасылку на ваш сайт."
2555
 
2556
+ #: ../admin/view/wp-slimstat-reports.php:1532
2557
  msgid "Direct Pageviews"
2558
  msgstr "Прамы прагляд старонак"
2559
 
2560
+ #: ../admin/view/wp-slimstat-reports.php:1534
2561
  msgid ""
2562
  "Visitors who visited the site by typing the URL directly into their browser. "
2563
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2570
  "паведамленнях электроннай пошты ці спасылкі з дакументаў, якія не ўключаюць "
2571
  "у сябе адсочванне зменных."
2572
 
2573
+ #: ../admin/view/wp-slimstat-reports.php:1536
2574
  msgid "From a search result"
2575
  msgstr "З вынікаў пошуку"
2576
 
2577
+ #: ../admin/view/wp-slimstat-reports.php:1538
2578
  msgid ""
2579
  "Visitors who came to your site via searches on Google or some other search "
2580
  "engine."
2582
  "Наведвальнікі, якія прыйшлі на ваш сайт з дапамогай пошуку на Google або "
2583
  "якой-небудзь іншай пошукавай сістэмы."
2584
 
2585
+ #: ../admin/view/wp-slimstat-reports.php:1540
2586
  msgid "Unique Landing Pages"
2587
  msgstr "Унікальныя мэтавыя старонкі"
2588
 
2589
+ #: ../admin/view/wp-slimstat-reports.php:1542
2590
  msgid ""
2591
  "The first page that a user views during a session. This is also known as the "
2592
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2599
  "старонцы, ён атрымлівае падлічваюцца (для гэтага візіту) у якасці мэтавай "
2600
  "старонкі."
2601
 
2602
+ #: ../admin/view/wp-slimstat-reports.php:1544
2603
  msgid "Bounce Pages"
2604
  msgstr "Паказчык адмоваў"
2605
 
2606
+ #: ../admin/view/wp-slimstat-reports.php:1546
2607
  msgid "Number of single page visits to your site over the selected period."
2608
  msgstr ""
2609
  "Колькасць аднамесных наведванняў старонак вашага сайта на абраны перыяд."
2610
 
2611
+ #: ../admin/view/wp-slimstat-reports.php:1548
2612
  msgid "New Visitors Rate"
2613
  msgstr "Стайка новых наведвальнікау"
2614
 
2615
+ #: ../admin/view/wp-slimstat-reports.php:1550
2616
  msgid ""
2617
  "Percentage of single page visits, i.e. visits in which the person left your "
2618
  "site from the entrance page."
2620
  "Працэнт наведванняў адной старонцы, то ёсць наведванняў, у якіх наведвальнік "
2621
  "пакідае сайт са старонкі ўваходу."
2622
 
2623
+ #: ../admin/view/wp-slimstat-reports.php:1552
2624
  msgid "Currently from search engines"
2625
  msgstr "З вынікаў пошуку"
2626
 
2627
+ #: ../admin/view/wp-slimstat-reports.php:1554
2628
  msgid ""
2629
  "Visitors who visited the site in the last 5 minutes coming from a search "
2630
  "engine."
2632
  "Наведвальнікі, якія наведалі сайт на працягу апошніх 5 хвілін, якія прыйшлi "
2633
  "з пошукавай сістэмы."
2634
 
2635
+ #: ../admin/view/wp-slimstat-reports.php:1572
2636
  msgid "Backlinks"
2637
  msgstr "Зваротныя спасылкі"
2638
 
2639
+ #: ../admin/view/wp-slimstat-reports.php:1573
2640
  msgid "Number of external equity links to your website."
2641
  msgstr "Колькасць знешніх фондавых спасылак на ваш сайт."
2642
 
2643
+ #: ../admin/view/wp-slimstat-reports.php:1577
2644
  msgid "MozRank"
2645
  msgstr "Moz Званне"
2646
 
2647
+ #: ../admin/view/wp-slimstat-reports.php:1578
2648
  msgid ""
2649
  "MozRank of the URL, in a normalized 10-point score. MozRank represents a "
2650
  "link popularity score. It reflects the importance of any given web page on "
2654
  "папулярнасці спасылак. Ен адлюстроўвае важнасць той ці іншай вэб-старонкі ў "
2655
  "Інтэрнэце."
2656
 
2657
+ #: ../admin/view/wp-slimstat-reports.php:1582
2658
  msgid "Equity Links"
2659
  msgstr "Адзінства спасылак"
2660
 
2661
+ #: ../admin/view/wp-slimstat-reports.php:1583
2662
  msgid ""
2663
  "Number of authority-passing links (including followed links and redirects, "
2664
  "internal or external) to your website. Set the permalink filter here above "
2668
  "ўнутраныя або знешнія) на свой вэб-сайт. Усталюйце пастаянную фільтр тут, "
2669
  "каб атрымаць адпаведныя паказчыкі ў гэтай справаздачы."
2670
 
2671
+ #: ../admin/view/wp-slimstat-reports.php:1587
2672
  msgid "Facebook Shares"
2673
  msgstr "Падзяліцца на Facebook "
2674
 
2675
+ #: ../admin/view/wp-slimstat-reports.php:1592
2676
  msgid "Facebook Clicks"
2677
  msgstr "Нацiскi на Facebook"
2678
 
2679
+ #: ../admin/view/wp-slimstat-reports.php:1593
2680
  msgid "How many times links to your website have been clicked on Facebook."
2681
  msgstr "Колькі разоў спасылкі на ваш сайт былі націснулі на Facebook."
2682
 
2683
+ #: ../admin/view/wp-slimstat-reports.php:1597
2684
  msgid "Alexa World Rank"
2685
  msgstr "Alexa Сусветны ранг"
2686
 
2687
+ #: ../admin/view/wp-slimstat-reports.php:1598
2688
  msgid ""
2689
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2690
  "traffic data."
2692
  "Alexa з'яўляецца даччынай кампаніяй Amazon.com, які дае камерцыйныя дадзеныя "
2693
  "вэб-трафіку."
2694
 
2695
+ #: ../admin/view/wp-slimstat-reports.php:1602
2696
  msgid "Alexa Country Rank"
2697
  msgstr "Alexa Краiны ранг"
2698
 
2699
+ #: ../admin/view/wp-slimstat-reports.php:1607
2700
  msgid "Alexa Popularity"
2701
  msgstr "Alexa Папулярнасць"
2702
 
2703
+ #: ../admin/view/wp-slimstat-reports.php:1666
2704
  msgid "Alexa Delta"
2705
  msgstr ""
2706
 
2707
+ #: ../admin/view/wp-slimstat-reports.php:1700
2708
  msgid "Content Items"
2709
  msgstr "Змест пунктау"
2710
 
2711
+ #: ../admin/view/wp-slimstat-reports.php:1702
2712
  msgid ""
2713
  "This value includes not only posts, but also custom post types, regardless "
2714
  "of their status"
2716
  "Гэта значэнне ўключае ў сябе не толькі пасты, але і прыстасаваныя тыпы "
2717
  "поста, незалежна ад іх статусу"
2718
 
2719
+ #: ../admin/view/wp-slimstat-reports.php:1704
2720
  msgid "Posts"
2721
  msgstr "пасты"
2722
 
2723
+ #: ../admin/view/wp-slimstat-reports.php:1707
2724
  msgid "Pages"
2725
  msgstr "Старонкi"
2726
 
2727
+ #: ../admin/view/wp-slimstat-reports.php:1710
2728
  msgid "Attachments"
2729
  msgstr "укладаннi"
2730
 
2731
+ #: ../admin/view/wp-slimstat-reports.php:1713
2732
  msgid "Revisions"
2733
  msgstr "перагляды"
2734
 
2735
+ #: ../admin/view/wp-slimstat-reports.php:1716
2736
  msgid "Comments"
2737
  msgstr "каментары"
2738
 
2739
+ #: ../admin/view/wp-slimstat-reports.php:1719
2740
  msgid "Avg Comments per Post"
2741
  msgstr "Сярэдняя колькасць каментарау на паведамленне"
2742
 
2743
+ #: ../admin/view/wp-slimstat-reports.php:1722
2744
  msgid "Avg Server Latency"
2745
  msgstr "сярэднii час затрымкi сервера"
2746
 
2747
+ #: ../admin/view/wp-slimstat-reports.php:1724
2748
  msgid ""
2749
  "Latency is the amount of time it takes for the host server to receive and "
2750
  "process a request for a page object. The amount of latency depends largely "
2754
  "прыёму і апрацоўкі запыту для аб'екта старонкі. Велічыня латэнтнага часу "
2755
  "шмат у чым залежыць ад таго, як далёка карыстальнік знаходзіцца з сервера."
2756
 
2757
+ #: ../admin/view/wp-slimstat-reports.php:1767
2758
  msgid "Coordinates"
2759
  msgstr "каардынаты"
2760
 
2761
+ #: ../admin/view/wp-slimstat-reports.php:1767
2762
  msgid "Date"
2763
  msgstr "дата"
2764
 
2765
  # Unknown
2766
+ #: ../admin/view/wp-slimstat-reports.php:1783
2767
  msgid "c-xx"
2768
  msgstr "Unknown"
2769
 
2770
  # Afghanistan
2771
+ #: ../admin/view/wp-slimstat-reports.php:1783
2772
  msgid "c-af"
2773
+ msgstr "Афганістан"
2774
 
2775
  # Åland Islands
2776
+ #: ../admin/view/wp-slimstat-reports.php:1783
2777
  msgid "c-ax"
2778
+ msgstr "Аландскія астравы"
2779
 
2780
  # Albania
2781
+ #: ../admin/view/wp-slimstat-reports.php:1783
2782
  msgid "c-al"
2783
+ msgstr "Албанія"
2784
 
2785
  # Algeria
2786
+ #: ../admin/view/wp-slimstat-reports.php:1783
2787
  msgid "c-dz"
2788
+ msgstr "Алжыр"
2789
 
2790
  # Andorra
2791
+ #: ../admin/view/wp-slimstat-reports.php:1783
2792
  msgid "c-ad"
2793
+ msgstr "Андора"
2794
 
2795
  # Angola
2796
+ #: ../admin/view/wp-slimstat-reports.php:1783
2797
  msgid "c-ao"
2798
+ msgstr "Ангола"
2799
 
2800
  # Anguilla
2801
+ #: ../admin/view/wp-slimstat-reports.php:1783
2802
  msgid "c-ai"
2803
+ msgstr "Ангілья"
2804
 
2805
  # Antigua and Barbuda
2806
+ #: ../admin/view/wp-slimstat-reports.php:1783
2807
  msgid "c-ag"
2808
+ msgstr "Антыгуа і Барбуда"
2809
 
2810
  # Argentina
2811
+ #: ../admin/view/wp-slimstat-reports.php:1783
2812
  msgid "c-ar"
2813
+ msgstr "Аргенціна"
2814
 
2815
  # Armenia
2816
+ #: ../admin/view/wp-slimstat-reports.php:1783
2817
  msgid "c-am"
2818
+ msgstr "Арменія"
2819
 
2820
  # Aruba
2821
+ #: ../admin/view/wp-slimstat-reports.php:1783
2822
  msgid "c-aw"
2823
+ msgstr "Аруба"
2824
 
2825
  # Australia
2826
+ #: ../admin/view/wp-slimstat-reports.php:1783
2827
  msgid "c-au"
2828
+ msgstr "Аўстралія"
2829
 
2830
  # Austria
2831
+ #: ../admin/view/wp-slimstat-reports.php:1783
2832
  msgid "c-at"
2833
+ msgstr "Аўстрыя"
2834
 
2835
  # Azerbaijan
2836
+ #: ../admin/view/wp-slimstat-reports.php:1783
2837
  msgid "c-az"
2838
+ msgstr "Азербайджан"
2839
 
2840
  # Bahamas
2841
+ #: ../admin/view/wp-slimstat-reports.php:1783
2842
  msgid "c-bs"
2843
+ msgstr "Багамскія а-вы"
2844
 
2845
  # Bahrain
2846
+ #: ../admin/view/wp-slimstat-reports.php:1783
2847
  msgid "c-bh"
2848
+ msgstr "Бахрэйн"
2849
 
2850
  # Bangladesh
2851
+ #: ../admin/view/wp-slimstat-reports.php:1783
2852
  msgid "c-bd"
2853
+ msgstr "Бангладэш"
2854
 
2855
  # Barbados
2856
+ #: ../admin/view/wp-slimstat-reports.php:1783
2857
  msgid "c-bb"
2858
+ msgstr "Барбадас"
2859
 
2860
  # Belarus
2861
+ #: ../admin/view/wp-slimstat-reports.php:1783
2862
  msgid "c-by"
2863
+ msgstr "Беларусь"
2864
 
2865
  # Belgium
2866
+ #: ../admin/view/wp-slimstat-reports.php:1783
2867
  msgid "c-be"
2868
+ msgstr "Бельгія"
2869
 
2870
  # Belize
2871
+ #: ../admin/view/wp-slimstat-reports.php:1783
2872
  msgid "c-bz"
2873
+ msgstr "Беліз"
2874
 
2875
  # Benin
2876
+ #: ../admin/view/wp-slimstat-reports.php:1783
2877
  msgid "c-bj"
2878
+ msgstr "Бенін"
2879
 
2880
  # Bermuda
2881
+ #: ../admin/view/wp-slimstat-reports.php:1783
2882
  msgid "c-bm"
2883
+ msgstr "Бэрмудзкія выспы"
2884
 
2885
  # Bhutan
2886
+ #: ../admin/view/wp-slimstat-reports.php:1783
2887
  msgid "c-bt"
2888
+ msgstr "Бутан"
2889
 
2890
  # Bolivia
2891
+ #: ../admin/view/wp-slimstat-reports.php:1783
2892
  msgid "c-bo"
2893
+ msgstr "Балівія"
2894
 
2895
  # Bosnia and Herzegovina
2896
+ #: ../admin/view/wp-slimstat-reports.php:1783
2897
  msgid "c-ba"
2898
+ msgstr "Боснія і Герцагавіна"
2899
 
2900
  # Botswana
2901
+ #: ../admin/view/wp-slimstat-reports.php:1783
2902
  msgid "c-bw"
2903
+ msgstr "Батсвана"
2904
 
2905
  # Brazil
2906
+ #: ../admin/view/wp-slimstat-reports.php:1783
2907
  msgid "c-br"
2908
+ msgstr "Бразілія"
2909
 
2910
  # Brunei Darussalam
2911
+ #: ../admin/view/wp-slimstat-reports.php:1783
2912
  msgid "c-bn"
2913
+ msgstr "Бруней Даруссалам"
2914
 
2915
  # Bulgaria
2916
+ #: ../admin/view/wp-slimstat-reports.php:1783
2917
  msgid "c-bg"
2918
+ msgstr "Балгарыя"
2919
 
2920
  # Burkina Faso
2921
+ #: ../admin/view/wp-slimstat-reports.php:1783
2922
  msgid "c-bf"
2923
+ msgstr "Буркіна-Фасо"
2924
 
2925
  # Burundi
2926
+ #: ../admin/view/wp-slimstat-reports.php:1783
2927
  msgid "c-bi"
2928
+ msgstr "Бурундзі"
2929
 
2930
  # Cambodia
2931
+ #: ../admin/view/wp-slimstat-reports.php:1783
2932
  msgid "c-kh"
2933
+ msgstr "Камбоджа"
2934
 
2935
  # Cameroon
2936
+ #: ../admin/view/wp-slimstat-reports.php:1783
2937
  msgid "c-cm"
2938
+ msgstr "Камерун"
2939
 
2940
  # Canada
2941
+ #: ../admin/view/wp-slimstat-reports.php:1783
2942
  msgid "c-ca"
2943
+ msgstr "Канада"
2944
 
2945
  # Cape Verde
2946
+ #: ../admin/view/wp-slimstat-reports.php:1783
2947
  msgid "c-cv"
2948
+ msgstr "Каба-Вэрдэ"
2949
 
2950
  # Cayman Islands
2951
+ #: ../admin/view/wp-slimstat-reports.php:1783
2952
  msgid "c-ky"
2953
+ msgstr "Кайманавы выспы"
2954
 
2955
  # Central African Republic
2956
+ #: ../admin/view/wp-slimstat-reports.php:1783
2957
  msgid "c-cf"
2958
+ msgstr "Цэнтральна-Афрыканская Рэспубліка"
2959
 
2960
  # Chad
2961
+ #: ../admin/view/wp-slimstat-reports.php:1783
2962
  msgid "c-td"
2963
+ msgstr "Чад"
2964
 
2965
  # Chile
2966
+ #: ../admin/view/wp-slimstat-reports.php:1783
2967
  msgid "c-cl"
2968
+ msgstr "Чылі"
2969
 
2970
  # China
2971
+ #: ../admin/view/wp-slimstat-reports.php:1783
2972
  msgid "c-cn"
2973
+ msgstr "Кітай"
2974
 
2975
  # Colombia
2976
+ #: ../admin/view/wp-slimstat-reports.php:1783
2977
  msgid "c-co"
2978
+ msgstr "Калумбія"
2979
 
2980
  # Comoros
2981
+ #: ../admin/view/wp-slimstat-reports.php:1783
2982
  msgid "c-km"
2983
+ msgstr "Каморскія выспы"
2984
 
2985
  # Congo
2986
+ #: ../admin/view/wp-slimstat-reports.php:1783
2987
  msgid "c-cg"
2988
+ msgstr "Конга"
2989
 
2990
  # The Democratic Republic of the Congo
2991
+ #: ../admin/view/wp-slimstat-reports.php:1783
2992
  msgid "c-cd"
2993
+ msgstr "Дэмакратычная Рэспубліка Конга"
2994
 
2995
  # Costa Rica
2996
+ #: ../admin/view/wp-slimstat-reports.php:1783
2997
  msgid "c-cr"
2998
+ msgstr "Коста-Рыка"
2999
 
3000
  # Côte d'Ivoire
3001
+ #: ../admin/view/wp-slimstat-reports.php:1783
3002
  msgid "c-ci"
3003
+ msgstr "Бераг Слановай Косці"
3004
 
3005
  # Croatia
3006
+ #: ../admin/view/wp-slimstat-reports.php:1783
3007
  msgid "c-hr"
3008
+ msgstr "Харватыя"
3009
 
3010
  # Cuba
3011
+ #: ../admin/view/wp-slimstat-reports.php:1783
3012
  msgid "c-cu"
3013
+ msgstr "Куба"
3014
 
3015
  # Cyprus
3016
+ #: ../admin/view/wp-slimstat-reports.php:1783
3017
  msgid "c-cy"
3018
+ msgstr "Кіпр"
3019
 
3020
  # Czech Republic
3021
+ #: ../admin/view/wp-slimstat-reports.php:1783
3022
  msgid "c-cz"
3023
+ msgstr "Чэская Рэспубліка"
3024
 
3025
  # Denmark
3026
+ #: ../admin/view/wp-slimstat-reports.php:1783
3027
  msgid "c-dk"
3028
+ msgstr "Данія"
3029
 
3030
  # Djibouti
3031
+ #: ../admin/view/wp-slimstat-reports.php:1783
3032
  msgid "c-dj"
3033
+ msgstr "Джыбуці"
3034
 
3035
  # Dominica
3036
+ #: ../admin/view/wp-slimstat-reports.php:1783
3037
  msgid "c-dm"
3038
+ msgstr "Дамініка"
3039
 
3040
  # Dominican Republic
3041
+ #: ../admin/view/wp-slimstat-reports.php:1783
3042
  msgid "c-do"
3043
+ msgstr "Дамініканская Рэспубліка"
3044
 
3045
  # Ecuador
3046
+ #: ../admin/view/wp-slimstat-reports.php:1783
3047
  msgid "c-ec"
3048
+ msgstr "Эквадор"
3049
 
3050
  # Egypt
3051
+ #: ../admin/view/wp-slimstat-reports.php:1783
3052
  msgid "c-eg"
3053
+ msgstr "Егіпет"
3054
 
3055
  # El Salvador
3056
+ #: ../admin/view/wp-slimstat-reports.php:1783
3057
  msgid "c-sv"
3058
+ msgstr "Сальвадор"
3059
 
3060
  # Equatorial Guinea
3061
+ #: ../admin/view/wp-slimstat-reports.php:1783
3062
  msgid "c-gq"
3063
+ msgstr "Экватарыяльная Гвінея"
3064
 
3065
  # Eritrea
3066
+ #: ../admin/view/wp-slimstat-reports.php:1783
3067
  msgid "c-er"
3068
+ msgstr "Эрытрэя"
3069
 
3070
  # Estonia
3071
+ #: ../admin/view/wp-slimstat-reports.php:1783
3072
  msgid "c-ee"
3073
+ msgstr "Эстонія"
3074
 
3075
  # Ethiopia
3076
+ #: ../admin/view/wp-slimstat-reports.php:1783
3077
  msgid "c-et"
3078
+ msgstr "Эфіопія"
3079
 
3080
  # Faroe Islands
3081
+ #: ../admin/view/wp-slimstat-reports.php:1783
3082
  msgid "c-fo"
3083
+ msgstr "Фарэрскія выспы"
3084
 
3085
  # Falkland Islands (Malvinas)
3086
+ #: ../admin/view/wp-slimstat-reports.php:1783
3087
  msgid "c-fk"
3088
+ msgstr "Фалклендскія (Мальвінскія) выспы"
3089
 
3090
  # Fiji
3091
+ #: ../admin/view/wp-slimstat-reports.php:1783
3092
  msgid "c-fj"
3093
+ msgstr "Фіджы"
3094
 
3095
  # Finland
3096
+ #: ../admin/view/wp-slimstat-reports.php:1783
3097
  msgid "c-fi"
3098
+ msgstr "Фінляндыя"
3099
 
3100
  # France
3101
+ #: ../admin/view/wp-slimstat-reports.php:1783
3102
  msgid "c-fr"
3103
+ msgstr "Францыя"
3104
 
3105
  # French Guiana
3106
+ #: ../admin/view/wp-slimstat-reports.php:1783
3107
  msgid "c-gf"
3108
+ msgstr "Французская Гвіяна"
3109
 
3110
  # Gabon
3111
+ #: ../admin/view/wp-slimstat-reports.php:1783
3112
  msgid "c-ga"
3113
+ msgstr "Габон"
3114
 
3115
  # Gambia
3116
+ #: ../admin/view/wp-slimstat-reports.php:1783
3117
  msgid "c-gm"
3118
+ msgstr "Гамбія"
3119
 
3120
  # Georgia
3121
+ #: ../admin/view/wp-slimstat-reports.php:1783
3122
  msgid "c-ge"
3123
+ msgstr "Грузія"
3124
 
3125
  # Germany
3126
+ #: ../admin/view/wp-slimstat-reports.php:1783
3127
  msgid "c-de"
3128
+ msgstr "Германія"
3129
 
3130
  # Ghana
3131
+ #: ../admin/view/wp-slimstat-reports.php:1783
3132
  msgid "c-gh"
3133
+ msgstr "Гана"
3134
 
3135
  # Greece
3136
+ #: ../admin/view/wp-slimstat-reports.php:1783
3137
  msgid "c-gr"
3138
+ msgstr "Грэцыя"
3139
 
3140
  # Greenland
3141
+ #: ../admin/view/wp-slimstat-reports.php:1783
3142
  msgid "c-gl"
3143
+ msgstr "Грэнландыя"
3144
 
3145
  # Grenada
3146
+ #: ../admin/view/wp-slimstat-reports.php:1783
3147
  msgid "c-gd"
3148
+ msgstr "Грэнада"
3149
 
3150
  # Guadeloupe
3151
+ #: ../admin/view/wp-slimstat-reports.php:1783
3152
  msgid "c-gp"
3153
+ msgstr "Гвадэлупа"
3154
 
3155
  # Guatemala
3156
+ #: ../admin/view/wp-slimstat-reports.php:1783
3157
  msgid "c-gt"
3158
+ msgstr "Гватэмала"
3159
 
3160
  # Guinea
3161
+ #: ../admin/view/wp-slimstat-reports.php:1783
3162
  msgid "c-gn"
3163
+ msgstr "Гвінея"
3164
 
3165
  # Guinea-Bissau
3166
+ #: ../admin/view/wp-slimstat-reports.php:1783
3167
  msgid "c-gw"
3168
+ msgstr "Гвінея-Бісаў"
3169
 
3170
  # Guyana
3171
+ #: ../admin/view/wp-slimstat-reports.php:1783
3172
  msgid "c-gy"
3173
+ msgstr "Гаяна"
3174
 
3175
  # Haiti
3176
+ #: ../admin/view/wp-slimstat-reports.php:1783
3177
  msgid "c-ht"
3178
+ msgstr "Гаіці"
3179
 
3180
  # Honduras
3181
+ #: ../admin/view/wp-slimstat-reports.php:1783
3182
  msgid "c-hn"
3183
+ msgstr "Гандурас"
3184
 
3185
  # Hong Kong
3186
+ #: ../admin/view/wp-slimstat-reports.php:1783
3187
  msgid "c-hk"
3188
+ msgstr "Ганконг"
3189
 
3190
  # Hungary
3191
+ #: ../admin/view/wp-slimstat-reports.php:1783
3192
  msgid "c-hu"
3193
+ msgstr "Венгрыя"
3194
 
3195
  # Iceland
3196
+ #: ../admin/view/wp-slimstat-reports.php:1783
3197
  msgid "c-is"
3198
+ msgstr "Ісландыя"
3199
 
3200
  # India
3201
+ #: ../admin/view/wp-slimstat-reports.php:1783
3202
  msgid "c-in"
3203
+ msgstr "Індыя"
3204
 
3205
  # Indonesia
3206
+ #: ../admin/view/wp-slimstat-reports.php:1783
3207
  msgid "c-id"
3208
+ msgstr "Інданезія"
3209
 
3210
  # Islamic Republic of Iran
3211
+ #: ../admin/view/wp-slimstat-reports.php:1783
3212
  msgid "c-ir"
3213
+ msgstr "Ісламская Рэспубліка Іран"
3214
 
3215
  # Iraq
3216
+ #: ../admin/view/wp-slimstat-reports.php:1783
3217
  msgid "c-iq"
3218
+ msgstr "Ірак"
3219
 
3220
  # Ireland
3221
+ #: ../admin/view/wp-slimstat-reports.php:1783
3222
  msgid "c-ie"
3223
+ msgstr "Ірландыя"
3224
 
3225
  # Israel
3226
+ #: ../admin/view/wp-slimstat-reports.php:1783
3227
  msgid "c-il"
3228
+ msgstr "Ізраіль"
3229
 
3230
  # Italy
3231
+ #: ../admin/view/wp-slimstat-reports.php:1783
3232
  msgid "c-it"
3233
+ msgstr "Італія"
3234
 
3235
  # Jamaica
3236
+ #: ../admin/view/wp-slimstat-reports.php:1783
3237
  msgid "c-jm"
3238
+ msgstr "Ямайка"
3239
 
3240
  # Japan
3241
+ #: ../admin/view/wp-slimstat-reports.php:1783
3242
  msgid "c-jp"
3243
+ msgstr "Японія"
3244
 
3245
  # Jordan
3246
+ #: ../admin/view/wp-slimstat-reports.php:1783
3247
  msgid "c-jo"
3248
+ msgstr "Іарданія"
3249
 
3250
  # Kazakhstan
3251
+ #: ../admin/view/wp-slimstat-reports.php:1783
3252
  msgid "c-kz"
3253
+ msgstr "Казахстан"
3254
 
3255
  # Kenya
3256
+ #: ../admin/view/wp-slimstat-reports.php:1783
3257
  msgid "c-ke"
3258
+ msgstr "Кенія"
3259
 
3260
  # Nauru
3261
+ #: ../admin/view/wp-slimstat-reports.php:1783
3262
  msgid "c-nr"
3263
+ msgstr "Науру"
3264
 
3265
  # Democratic People's Republic of Korea
3266
+ #: ../admin/view/wp-slimstat-reports.php:1783
3267
  msgid "c-kp"
3268
+ msgstr "Карэйская Народна-Дэмакратычная Рэспубліка"
3269
 
3270
  # Republic of Korea
3271
+ #: ../admin/view/wp-slimstat-reports.php:1783
3272
  msgid "c-kr"
3273
+ msgstr "Рэспубліка Карэя"
3274
 
3275
+ #: ../admin/view/wp-slimstat-reports.php:1783
3276
  msgid "c-kv"
3277
+ msgstr "Косава"
3278
 
3279
  # Kuwait
3280
+ #: ../admin/view/wp-slimstat-reports.php:1783
3281
  msgid "c-kw"
3282
+ msgstr "Кувейт"
3283
 
3284
  # Kyrgyzstan
3285
+ #: ../admin/view/wp-slimstat-reports.php:1783
3286
  msgid "c-kg"
3287
+ msgstr "Кіргізія"
3288
 
3289
  # Lao People's Democratic Republic
3290
+ #: ../admin/view/wp-slimstat-reports.php:1783
3291
  msgid "c-la"
3292
+ msgstr "Лаоскай Народна-Дэмакратычная Рэспубліка"
3293
 
3294
  # Latvia
3295
+ #: ../admin/view/wp-slimstat-reports.php:1783
3296
  msgid "c-lv"
3297
+ msgstr "Латвія"
3298
 
3299
  # Lebanon
3300
+ #: ../admin/view/wp-slimstat-reports.php:1783
3301
  msgid "c-lb"
3302
+ msgstr "Ліван"
3303
 
3304
  # Lesotho
3305
+ #: ../admin/view/wp-slimstat-reports.php:1783
3306
  msgid "c-ls"
3307
+ msgstr "Лесота"
3308
 
3309
  # Liberia
3310
+ #: ../admin/view/wp-slimstat-reports.php:1783
3311
  msgid "c-lr"
3312
+ msgstr "Ліберыя"
3313
 
3314
  # Libyan Arab Jamahiriya
3315
+ #: ../admin/view/wp-slimstat-reports.php:1783
3316
  msgid "c-ly"
3317
+ msgstr "Лівійская Араб Джамахірыя"
3318
 
3319
  # Liechtenstein
3320
+ #: ../admin/view/wp-slimstat-reports.php:1783
3321
  msgid "c-li"
3322
+ msgstr "Ліхтэнштэйн"
3323
 
3324
  # Lithuania
3325
+ #: ../admin/view/wp-slimstat-reports.php:1783
3326
  msgid "c-lt"
3327
+ msgstr "Літва"
3328
 
3329
  # Luxembourg
3330
+ #: ../admin/view/wp-slimstat-reports.php:1783
3331
  msgid "c-lu"
3332
+ msgstr "Люксембург"
3333
 
3334
  # The Former Yugoslav Republic of Macedonia
3335
+ #: ../admin/view/wp-slimstat-reports.php:1783
3336
  msgid "c-mk"
3337
+ msgstr "Былая югаслаўская Рэспубліка Македонія"
3338
 
3339
  # Madagascar
3340
+ #: ../admin/view/wp-slimstat-reports.php:1783
3341
  msgid "c-mg"
3342
+ msgstr "Мадагаскар"
3343
 
3344
  # Malawi
3345
+ #: ../admin/view/wp-slimstat-reports.php:1783
3346
  msgid "c-mw"
3347
+ msgstr "Малаві"
3348
 
3349
  # Malaysia
3350
+ #: ../admin/view/wp-slimstat-reports.php:1783
3351
  msgid "c-my"
3352
+ msgstr "Малайзія"
3353
 
3354
  # Mali
3355
+ #: ../admin/view/wp-slimstat-reports.php:1783
3356
  msgid "c-ml"
3357
+ msgstr "Малі"
3358
 
3359
  # Malta
3360
+ #: ../admin/view/wp-slimstat-reports.php:1783
3361
  msgid "c-mt"
3362
+ msgstr "Мальта"
3363
 
3364
  # Martinique
3365
+ #: ../admin/view/wp-slimstat-reports.php:1783
3366
  msgid "c-mq"
3367
+ msgstr "Марцініка"
3368
 
3369
  # Mauritania
3370
+ #: ../admin/view/wp-slimstat-reports.php:1783
3371
  msgid "c-mr"
3372
+ msgstr "Маўрытанія"
3373
 
3374
  # Mauritius
3375
+ #: ../admin/view/wp-slimstat-reports.php:1783
3376
  msgid "c-mu"
3377
+ msgstr "Маўрыкій"
3378
 
3379
  # Mexico
3380
+ #: ../admin/view/wp-slimstat-reports.php:1783
3381
  msgid "c-mx"
3382
+ msgstr "Мехіка"
3383
 
3384
  # Moldova
3385
+ #: ../admin/view/wp-slimstat-reports.php:1783
3386
  msgid "c-md"
3387
+ msgstr "Малдова"
3388
 
3389
  # Mongolia
3390
+ #: ../admin/view/wp-slimstat-reports.php:1783
3391
  msgid "c-mn"
3392
+ msgstr "Манголія"
3393
 
3394
  # Montenegro
3395
+ #: ../admin/view/wp-slimstat-reports.php:1783
3396
  msgid "c-me"
3397
+ msgstr "Чарнагорыя"
3398
 
3399
  # Montserrat
3400
+ #: ../admin/view/wp-slimstat-reports.php:1783
3401
  msgid "c-ms"
3402
+ msgstr "Мансерат"
3403
 
3404
  # Morocco
3405
+ #: ../admin/view/wp-slimstat-reports.php:1783
3406
  msgid "c-ma"
3407
+ msgstr "Марока"
3408
 
3409
  # Mozambique
3410
+ #: ../admin/view/wp-slimstat-reports.php:1783
3411
  msgid "c-mz"
3412
+ msgstr "Мазамбік"
3413
 
3414
  # Myanmar
3415
+ #: ../admin/view/wp-slimstat-reports.php:1783
3416
  msgid "c-mm"
3417
+ msgstr "М'янма"
3418
 
3419
  # Namibia
3420
+ #: ../admin/view/wp-slimstat-reports.php:1783
3421
  msgid "c-na"
3422
+ msgstr "Намібія"
3423
 
3424
  # Nepal
3425
+ #: ../admin/view/wp-slimstat-reports.php:1783
3426
  msgid "c-np"
3427
+ msgstr "Непал"
3428
 
3429
  # Netherlands
3430
+ #: ../admin/view/wp-slimstat-reports.php:1783
3431
  msgid "c-nl"
3432
+ msgstr "Нідэрланды"
3433
 
3434
  # New Caledonia
3435
+ #: ../admin/view/wp-slimstat-reports.php:1783
3436
  msgid "c-nc"
3437
+ msgstr "Новая Каледонія"
3438
 
3439
  # New Zealand
3440
+ #: ../admin/view/wp-slimstat-reports.php:1783
3441
  msgid "c-nz"
3442
+ msgstr "Новая Зеландыя"
3443
 
3444
  # Nicaragua
3445
+ #: ../admin/view/wp-slimstat-reports.php:1783
3446
  msgid "c-ni"
3447
+ msgstr "Нікарагуа"
3448
 
3449
  # Niger
3450
+ #: ../admin/view/wp-slimstat-reports.php:1783
3451
  msgid "c-ne"
3452
+ msgstr "Нігер"
3453
 
3454
  # Nigeria
3455
+ #: ../admin/view/wp-slimstat-reports.php:1783
3456
  msgid "c-ng"
3457
+ msgstr "Нігерыя"
3458
 
3459
  # Norway
3460
+ #: ../admin/view/wp-slimstat-reports.php:1783
3461
  msgid "c-no"
3462
+ msgstr "Нарвегія"
3463
 
3464
  # Oman
3465
+ #: ../admin/view/wp-slimstat-reports.php:1783
3466
  msgid "c-om"
3467
+ msgstr "Аман"
3468
 
3469
  # Pakistan
3470
+ #: ../admin/view/wp-slimstat-reports.php:1783
3471
  msgid "c-pk"
3472
+ msgstr "Пакістан"
3473
 
3474
  # Palau
3475
+ #: ../admin/view/wp-slimstat-reports.php:1783
3476
  msgid "c-pw"
3477
+ msgstr "Палаў"
3478
 
3479
  # Occupied Palestinian Territory
3480
+ #: ../admin/view/wp-slimstat-reports.php:1783
3481
  msgid "c-ps"
3482
+ msgstr "Акупаваная палестынская тэрыторыя"
3483
 
3484
  # Panama
3485
+ #: ../admin/view/wp-slimstat-reports.php:1783
3486
  msgid "c-pa"
3487
+ msgstr "Панама"
3488
 
3489
  # Papua New Guinea
3490
+ #: ../admin/view/wp-slimstat-reports.php:1783
3491
  msgid "c-pg"
3492
+ msgstr "Папуа-Новая Гвінея"
3493
 
3494
  # Paraguay
3495
+ #: ../admin/view/wp-slimstat-reports.php:1783
3496
  msgid "c-py"
3497
+ msgstr "Парагвай"
3498
 
3499
  # Peru
3500
+ #: ../admin/view/wp-slimstat-reports.php:1783
3501
  msgid "c-pe"
3502
+ msgstr "Перу"
3503
 
3504
  # Philippines
3505
+ #: ../admin/view/wp-slimstat-reports.php:1783
3506
  msgid "c-ph"
3507
+ msgstr "Філіпіны"
3508
 
3509
  # Poland
3510
+ #: ../admin/view/wp-slimstat-reports.php:1783
3511
  msgid "c-pl"
3512
+ msgstr "Польшча"
3513
 
3514
  # Portugal
3515
+ #: ../admin/view/wp-slimstat-reports.php:1783
3516
  msgid "c-pt"
3517
+ msgstr "Партугалія"
3518
 
3519
  # Puerto Rico
3520
+ #: ../admin/view/wp-slimstat-reports.php:1783
3521
  msgid "c-pr"
3522
+ msgstr "Пуэрта-Рыка"
3523
 
3524
  # Qatar
3525
+ #: ../admin/view/wp-slimstat-reports.php:1783
3526
  msgid "c-qa"
3527
+ msgstr "Катар"
3528
 
3529
  # Réunion
3530
+ #: ../admin/view/wp-slimstat-reports.php:1783
3531
  msgid "c-re"
3532
+ msgstr "Рэюньён"
3533
 
3534
  # Romania
3535
+ #: ../admin/view/wp-slimstat-reports.php:1783
3536
  msgid "c-ro"
3537
+ msgstr "Румынія"
3538
 
3539
  # Russian Federation
3540
+ #: ../admin/view/wp-slimstat-reports.php:1783
3541
  msgid "c-ru"
3542
+ msgstr "Расія"
3543
 
3544
  # Rwanda
3545
+ #: ../admin/view/wp-slimstat-reports.php:1783
3546
  msgid "c-rw"
3547
+ msgstr "Руанда"
3548
 
3549
  # Saint Kitts and Nevis
3550
+ #: ../admin/view/wp-slimstat-reports.php:1783
3551
  msgid "c-kn"
3552
+ msgstr "Сэнт-Кітс і Нэвіс"
3553
 
3554
  # Saint Lucia
3555
+ #: ../admin/view/wp-slimstat-reports.php:1783
3556
  msgid "c-lc"
3557
+ msgstr "Сэнт-Люсія"
3558
 
3559
  # Saint Martin
3560
+ #: ../admin/view/wp-slimstat-reports.php:1783
3561
  msgid "c-mf"
3562
+ msgstr "Сен-Мартэн"
3563
 
3564
  # Saint Vincent and the Grenadines
3565
+ #: ../admin/view/wp-slimstat-reports.php:1783
3566
  msgid "c-vc"
3567
+ msgstr "Сэнт-Вінсэнт і Грэнадыны"
3568
 
3569
  # Samoa
3570
+ #: ../admin/view/wp-slimstat-reports.php:1783
3571
  msgid "c-ws"
3572
+ msgstr "Самоа"
3573
 
3574
  # Sao Tome and Principe
3575
+ #: ../admin/view/wp-slimstat-reports.php:1783
3576
  msgid "c-st"
3577
+ msgstr "Сан-Томе і Прынсэп"
3578
 
3579
  # Saudi Arabia
3580
+ #: ../admin/view/wp-slimstat-reports.php:1783
3581
  msgid "c-sa"
3582
+ msgstr "Саўдаўская Аравія"
3583
 
3584
  # Senegal
3585
+ #: ../admin/view/wp-slimstat-reports.php:1783
3586
  msgid "c-sn"
3587
+ msgstr "Сенегал"
3588
 
3589
  # Serbia
3590
+ #: ../admin/view/wp-slimstat-reports.php:1783
3591
  msgid "c-rs"
3592
+ msgstr "Сербія"
3593
 
3594
  # Sierra Leone
3595
+ #: ../admin/view/wp-slimstat-reports.php:1783
3596
  msgid "c-sl"
3597
+ msgstr "Сьера-Леонэ"
3598
 
3599
  # Singapore
3600
+ #: ../admin/view/wp-slimstat-reports.php:1783
3601
  msgid "c-sg"
3602
+ msgstr "Сінгапур"
3603
 
3604
  # Slovakia
3605
+ #: ../admin/view/wp-slimstat-reports.php:1783
3606
  msgid "c-sk"
3607
+ msgstr "Славакія"
3608
 
3609
  # Slovenia
3610
+ #: ../admin/view/wp-slimstat-reports.php:1783
3611
  msgid "c-si"
3612
+ msgstr "Славенія"
3613
 
3614
  # Solomon Islands
3615
+ #: ../admin/view/wp-slimstat-reports.php:1783
3616
  msgid "c-sb"
3617
+ msgstr "Саламонавы выспы"
3618
 
3619
  # Somalia
3620
+ #: ../admin/view/wp-slimstat-reports.php:1783
3621
  msgid "c-so"
3622
+ msgstr "Самалі"
3623
 
3624
  # South Africa
3625
+ #: ../admin/view/wp-slimstat-reports.php:1783
3626
  msgid "c-za"
3627
+ msgstr "Паўднёвая Афрыка"
3628
 
3629
  # South Georgia and the South Sandwich Islands
3630
+ #: ../admin/view/wp-slimstat-reports.php:1783
3631
  msgid "c-gs"
3632
+ msgstr "Паўднёвая Джорджыя і Паўднёвыя Сандвічавы астравы"
3633
 
3634
  # Spain
3635
+ #: ../admin/view/wp-slimstat-reports.php:1783
3636
  msgid "c-es"
3637
+ msgstr "Іспанія"
3638
 
3639
  # Sri Lanka
3640
+ #: ../admin/view/wp-slimstat-reports.php:1783
3641
  msgid "c-lk"
3642
+ msgstr "Шры Ланка"
3643
 
3644
+ #: ../admin/view/wp-slimstat-reports.php:1783
3645
  msgid "c-sc"
3646
+ msgstr "Сейшэльскія выспы"
3647
 
3648
  # Sudan
3649
+ #: ../admin/view/wp-slimstat-reports.php:1783
3650
  msgid "c-sd"
3651
+ msgstr "Судан"
3652
 
3653
+ #: ../admin/view/wp-slimstat-reports.php:1783
3654
  msgid "c-ss"
3655
+ msgstr "Паўднёвы Судан"
3656
 
3657
  # Suriname
3658
+ #: ../admin/view/wp-slimstat-reports.php:1783
3659
  msgid "c-sr"
3660
+ msgstr "Сурынам"
3661
 
3662
  # Svalbard and Jan Mayen
3663
+ #: ../admin/view/wp-slimstat-reports.php:1783
3664
  msgid "c-sj"
3665
+ msgstr "Шпіцбэрген і Ян-Майен"
3666
 
3667
  # Swaziland
3668
+ #: ../admin/view/wp-slimstat-reports.php:1783
3669
  msgid "c-sz"
3670
+ msgstr "Свазіленд"
3671
 
3672
  # Sweden
3673
+ #: ../admin/view/wp-slimstat-reports.php:1783
3674
  msgid "c-se"
3675
+ msgstr "Швецыя"
3676
 
3677
  # Switzerland
3678
+ #: ../admin/view/wp-slimstat-reports.php:1783
3679
  msgid "c-ch"
3680
+ msgstr "Швейцарыя"
3681
 
3682
  # Syrian Arab Republic
3683
+ #: ../admin/view/wp-slimstat-reports.php:1783
3684
  msgid "c-sy"
3685
+ msgstr "Сірыйская Арабская Рэспубліка"
3686
 
3687
  # Taiwan, Province of China
3688
+ #: ../admin/view/wp-slimstat-reports.php:1783
3689
  msgid "c-tw"
3690
+ msgstr "Тайвань"
3691
 
3692
  # Tajikistan
3693
+ #: ../admin/view/wp-slimstat-reports.php:1783
3694
  msgid "c-tj"
3695
+ msgstr "Таджыкістан"
3696
 
3697
  # United Republic of Tanzania
3698
+ #: ../admin/view/wp-slimstat-reports.php:1783
3699
  msgid "c-tz"
3700
+ msgstr "Аб'яднаная Рэспубліка Танзанія"
3701
 
3702
  # Thailand
3703
+ #: ../admin/view/wp-slimstat-reports.php:1783
3704
  msgid "c-th"
3705
+ msgstr "Тайланд"
3706
 
3707
  # Timor-Leste
3708
+ #: ../admin/view/wp-slimstat-reports.php:1783
3709
  msgid "c-tl"
3710
+ msgstr "Усходні Тымор"
3711
 
3712
  # Togo
3713
+ #: ../admin/view/wp-slimstat-reports.php:1783
3714
  msgid "c-tg"
3715
+ msgstr "Таго"
3716
 
3717
  # Tonga
3718
+ #: ../admin/view/wp-slimstat-reports.php:1783
3719
  msgid "c-to"
3720
+ msgstr "Тонга"
3721
 
3722
  # Trinidad and Tobago
3723
+ #: ../admin/view/wp-slimstat-reports.php:1783
3724
  msgid "c-tt"
3725
+ msgstr "Трынідад і Табага"
3726
 
3727
  # Tunisia
3728
+ #: ../admin/view/wp-slimstat-reports.php:1783
3729
  msgid "c-tn"
3730
+ msgstr "Туніс"
3731
 
3732
  # Turkey
3733
+ #: ../admin/view/wp-slimstat-reports.php:1783
3734
  msgid "c-tr"
3735
+ msgstr "Турцыя"
3736
 
3737
  # Turkmenistan
3738
+ #: ../admin/view/wp-slimstat-reports.php:1783
3739
  msgid "c-tm"
3740
+ msgstr "Туркменістан"
3741
 
3742
  # Turks and Caicos Islands
3743
+ #: ../admin/view/wp-slimstat-reports.php:1783
3744
  msgid "c-tc"
3745
+ msgstr "Астравы Тэркс і Кайкас"
3746
 
3747
  # Uganda
3748
+ #: ../admin/view/wp-slimstat-reports.php:1783
3749
  msgid "c-ug"
3750
+ msgstr "Уганда"
3751
 
3752
  # Ukraine
3753
+ #: ../admin/view/wp-slimstat-reports.php:1783
3754
  msgid "c-ua"
3755
+ msgstr "Украіна"
3756
 
3757
  # United Arab Emirates
3758
+ #: ../admin/view/wp-slimstat-reports.php:1783
3759
  msgid "c-ae"
3760
+ msgstr "Аб'яднаныя Арабскія Эміраты"
3761
 
3762
  # United Kingdom
3763
+ #: ../admin/view/wp-slimstat-reports.php:1783
3764
  msgid "c-gb"
3765
+ msgstr "Злучанае Каралеўства"
3766
 
3767
  # United States
3768
+ #: ../admin/view/wp-slimstat-reports.php:1783
3769
  msgid "c-us"
3770
+ msgstr "ЗША"
3771
 
3772
  # Uruguay
3773
+ #: ../admin/view/wp-slimstat-reports.php:1783
3774
  msgid "c-uy"
3775
+ msgstr "Уругвай"
3776
 
3777
  # Uzbekistan
3778
+ #: ../admin/view/wp-slimstat-reports.php:1783
3779
  msgid "c-uz"
3780
+ msgstr "Узбекістан"
3781
 
3782
  # Vanuatu
3783
+ #: ../admin/view/wp-slimstat-reports.php:1783
3784
  msgid "c-vu"
3785
+ msgstr "Вануату"
3786
 
3787
  # Venezuela
3788
+ #: ../admin/view/wp-slimstat-reports.php:1783
3789
  msgid "c-ve"
3790
+ msgstr "Венесуэла"
3791
 
3792
  # Viet Nam
3793
+ #: ../admin/view/wp-slimstat-reports.php:1783
3794
  msgid "c-vn"
3795
+ msgstr "В'етнам"
3796
 
3797
  # British Virgin Islands
3798
+ #: ../admin/view/wp-slimstat-reports.php:1783
3799
  msgid "c-vg"
3800
+ msgstr "Брытанскія Віргінскія выспы"
3801
 
3802
  # U.S. Virgin Islands
3803
+ #: ../admin/view/wp-slimstat-reports.php:1783
3804
  msgid "c-vi"
3805
+ msgstr "Віргінскія астравы ЗША"
3806
 
3807
  # Western Sahara
3808
+ #: ../admin/view/wp-slimstat-reports.php:1783
3809
  msgid "c-eh"
3810
+ msgstr "Заходняя Сахара"
3811
 
3812
  # Yemen
3813
+ #: ../admin/view/wp-slimstat-reports.php:1783
3814
  msgid "c-ye"
3815
+ msgstr "Емен"
3816
 
3817
  # Zambia
3818
+ #: ../admin/view/wp-slimstat-reports.php:1783
3819
  msgid "c-zm"
3820
+ msgstr "Замбія"
3821
 
3822
  # Zimbabwe
3823
+ #: ../admin/view/wp-slimstat-reports.php:1783
3824
  msgid "c-zw"
3825
+ msgstr "Зімбабвэ"
3826
 
3827
  # Guernsey
3828
+ #: ../admin/view/wp-slimstat-reports.php:1783
3829
  msgid "c-gg"
3830
+ msgstr "Гернсі"
3831
 
3832
  # Jersey
3833
+ #: ../admin/view/wp-slimstat-reports.php:1783
3834
  msgid "c-je"
3835
+ msgstr "Джэрсі"
3836
 
3837
  # Isle of Man
3838
+ #: ../admin/view/wp-slimstat-reports.php:1783
3839
  msgid "c-im"
3840
+ msgstr "Востраў Мэн"
3841
 
3842
  # Maldives
3843
+ #: ../admin/view/wp-slimstat-reports.php:1783
3844
  msgid "c-mv"
3845
+ msgstr "Мальдывы"
3846
 
3847
+ #: ../admin/view/wp-slimstat-reports.php:1784
3848
  msgid "c-eu"
3849
+ msgstr "Еўропа"
3850
 
3851
+ #: ../admin/view/wp-slimstat-reports.php:1861
3852
  msgid "src"
3853
  msgstr ""
3854
 
3855
+ #: ../admin/view/wp-slimstat-reports.php:1865
3856
  msgid "serp"
3857
  msgstr "serp"
3858
 
3859
+ #: ../admin/view/wp-slimstat-reports.php:1873
3860
  msgid "Go to the referring page"
3861
  msgstr "Перайсці да старонкі са спасылкай"
3862
 
3863
+ #: ../admin/view/wp-slimstat-reports.php:1895
3864
  msgid "Remove filter for"
3865
  msgstr "Выдаліць фільтр для"
3866
 
3867
+ #: ../admin/view/wp-slimstat-reports.php:1899
3868
  msgid "Save"
3869
  msgstr "Захаваць"
3870
 
3871
+ #: ../admin/view/wp-slimstat-reports.php:1902
3872
  msgid "Reset All"
3873
  msgstr "Скінуць ўсе"
3874
 
3875
+ #: ../admin/view/wp-slimstat-reports.php:1906
3876
  msgid "Current filters:"
3877
  msgstr "Бягучыя фільтры:"
3878
 
3936
  msgstr "Slimstat"
3937
 
3938
  #: ../admin/wp-slimstat-admin.php:929
 
3939
  msgid "Pageviews in the last "
3940
+ msgstr "Прагляд старонак у апошнім"
3941
 
3942
  #: ../admin/wp-slimstat-admin.php:932
 
3943
  msgid "Unique IPs in the last "
3944
+ msgstr "Унікальныя IP-адрасы ў апошнім"
3945
 
3946
  #: ../admin/wp-slimstat-admin.php:965
3947
  #, php-format
4675
 
4676
  #: ../languages/dynamic_strings.php:109
4677
  msgid "p-unk"
4678
+ msgstr "невядомы"
4679
 
4680
  #: ../languages/dynamic_strings.php:110
4681
  msgid "p-win"
4684
  # Afrikaans
4685
  #: ../languages/dynamic_strings.php:113
4686
  msgid "l-af"
4687
+ msgstr "Афрыкаанскі"
4688
 
4689
  # Afrikaans
4690
  #: ../languages/dynamic_strings.php:114
4691
  msgid "l-af-za"
4692
+ msgstr "Афрыкаанскі (Паўднёвая Афрыка)"
4693
 
4694
  # Arabic
4695
  #: ../languages/dynamic_strings.php:115
4696
  msgid "l-ar"
4697
+ msgstr "арабская"
4698
 
4699
  # Arabic
4700
  #: ../languages/dynamic_strings.php:116
4701
  msgid "l-ar-ae"
4702
+ msgstr "Арабская (ААЭ)"
4703
 
4704
  # Arabic
4705
  #: ../languages/dynamic_strings.php:117
4706
  msgid "l-ar-bh"
4707
+ msgstr "Арабская (Бахрэйн)"
4708
 
4709
  # Arabic
4710
  #: ../languages/dynamic_strings.php:118
4711
  msgid "l-ar-dz"
4712
+ msgstr "Арабская (Алжыр)"
4713
 
4714
  # Arabic
4715
  #: ../languages/dynamic_strings.php:119
4716
  msgid "l-ar-eg"
4717
+ msgstr "Арабская (Егіпет)"
4718
 
4719
  # Arabic
4720
  #: ../languages/dynamic_strings.php:120
4721
  msgid "l-ar-iq"
4722
+ msgstr "Арабская (Ірак)"
4723
 
4724
  # Arabic
4725
  #: ../languages/dynamic_strings.php:121
4726
  msgid "l-ar-jo"
4727
+ msgstr "Арабская (Іарданія)"
4728
 
4729
  # Arabic
4730
  #: ../languages/dynamic_strings.php:122
4731
  msgid "l-ar-kw"
4732
+ msgstr "Арабская (Кувейт)"
4733
 
4734
  # Arabic
4735
  #: ../languages/dynamic_strings.php:123
4736
  msgid "l-ar-lb"
4737
+ msgstr "Арабская (Ліван)"
4738
 
4739
  # Arabic
4740
  #: ../languages/dynamic_strings.php:124
4741
  msgid "l-ar-ly"
4742
+ msgstr "Арабская (Лівія)"
4743
 
4744
  # Arabic
4745
  #: ../languages/dynamic_strings.php:125
4746
  msgid "l-ar-ma"
4747
+ msgstr "Арабская (Марока)"
4748
 
4749
  # Arabic
4750
  #: ../languages/dynamic_strings.php:126
4751
  msgid "l-ar-om"
4752
+ msgstr "Арабская (Аман)"
4753
 
4754
  # Arabic
4755
  #: ../languages/dynamic_strings.php:127
4756
  msgid "l-ar-qa"
4757
+ msgstr "Арабская (Катар)"
4758
 
4759
  # Arabic
4760
  #: ../languages/dynamic_strings.php:128
4761
  msgid "l-ar-sa"
4762
+ msgstr "Арабская (Саудаўская Аравія)"
4763
 
4764
  # Arabic
4765
  #: ../languages/dynamic_strings.php:129
4766
  msgid "l-ar-sy"
4767
+ msgstr "Арабская (Сірыя)"
4768
 
4769
  # Arabic
4770
  #: ../languages/dynamic_strings.php:130
4771
  msgid "l-ar-tn"
4772
+ msgstr "Арабская (Туніс)"
4773
 
4774
  # Arabic
4775
  #: ../languages/dynamic_strings.php:131
4776
  msgid "l-ar-ye"
4777
+ msgstr "Арабская (Емен)"
4778
 
4779
  # Azerbaijani
4780
  #: ../languages/dynamic_strings.php:132
4781
  msgid "l-az"
4782
+ msgstr "азербайджанская"
4783
 
4784
  # Azerbaijani
4785
  #: ../languages/dynamic_strings.php:133
4786
  msgid "l-az-az"
4787
+ msgstr "Азербайджанская (Латынь)"
4788
 
4789
  # Belarusian
4790
  #: ../languages/dynamic_strings.php:134
4791
  msgid "l-be"
4792
+ msgstr "Беларуская"
4793
 
4794
  # Belarusian
4795
  #: ../languages/dynamic_strings.php:135
4796
  msgid "l-be-by"
4797
+ msgstr "Беларуская (Беларусь)"
4798
 
4799
  # Bulgarian
4800
  #: ../languages/dynamic_strings.php:136
4801
  msgid "l-bg"
4802
+ msgstr "Балнарская"
4803
 
4804
  # Bulgarian
4805
  #: ../languages/dynamic_strings.php:137
4806
  msgid "l-bg-bg"
4807
+ msgstr "Балгарская (Балгарыя)"
4808
 
4809
  # Bosnian
4810
  #: ../languages/dynamic_strings.php:138
4811
  msgid "l-bs-ba"
4812
+ msgstr "Баснійская"
4813
 
4814
  # Catalan; Valencian
4815
  #: ../languages/dynamic_strings.php:139
4816
  msgid "l-ca"
4817
+ msgstr "Каталонская"
4818
 
4819
  # Catalan; Valencian
4820
  #: ../languages/dynamic_strings.php:140
4821
  msgid "l-ca-es"
4822
+ msgstr "Каталонская; Валенская"
4823
 
4824
  # Czech
4825
  #: ../languages/dynamic_strings.php:141
4826
  msgid "l-cs"
4827
+ msgstr "Чэшская"
4828
 
4829
  # Czech
4830
  #: ../languages/dynamic_strings.php:142
4831
  msgid "l-cs-cz"
4832
+ msgstr "Чэшская (Чэская Рэспубліка)"
4833
 
4834
  # Welsh
4835
  #: ../languages/dynamic_strings.php:143
4836
  msgid "l-cy"
4837
+ msgstr "валійская"
4838
 
4839
  # Welsh
4840
  #: ../languages/dynamic_strings.php:144
4841
  msgid "l-cy-gb"
4842
+ msgstr "Валійская (Велікабрытанія"
4843
 
4844
  # Danish
4845
  #: ../languages/dynamic_strings.php:145
4846
  msgid "l-da"
4847
+ msgstr "Дацкая"
4848
 
4849
  # Danish
4850
  #: ../languages/dynamic_strings.php:146
4851
  msgid "l-da-dk"
4852
+ msgstr "Дацкая (Данія)"
4853
 
4854
  # German
4855
  #: ../languages/dynamic_strings.php:147
4856
  msgid "l-de"
4857
+ msgstr "Нямецкая"
4858
 
4859
  # German
4860
  #: ../languages/dynamic_strings.php:148
4861
  msgid "l-de-at"
4862
+ msgstr "Нямецкая (Аўстрыя)"
4863
 
4864
  # German
4865
  #: ../languages/dynamic_strings.php:149
4866
  msgid "l-de-ch"
4867
+ msgstr "Нямецкая (Швейцарыя)"
4868
 
4869
  # German
4870
  #: ../languages/dynamic_strings.php:150
4871
  msgid "l-de-de"
4872
+ msgstr "Нямецкая (Германія)"
4873
 
4874
  # German
4875
  #: ../languages/dynamic_strings.php:151
4876
  msgid "l-de-li"
4877
+ msgstr "Нямецкая (Ліхтэнштэйн)"
4878
 
4879
  # German
4880
  #: ../languages/dynamic_strings.php:152
4881
  msgid "l-de-lu"
4882
+ msgstr "Нямецкая (Люксембург)"
4883
 
4884
  # Dhivehi; Divehi; Maldivian
4885
  #: ../languages/dynamic_strings.php:153
4886
  msgid "l-dv"
4887
+ msgstr "Дывехі; дывехі; мальдыўская"
4888
 
4889
  # Dhivehi; Divehi; Maldivian
4890
  #: ../languages/dynamic_strings.php:154
4891
  msgid "l-dv-mv"
4892
+ msgstr "Мальдыўская"
4893
 
4894
  # Modern Greek (1453-)
4895
  #: ../languages/dynamic_strings.php:155
4896
  msgid "l-el"
4897
+ msgstr "Грэцкі"
4898
 
4899
  # Modern Greek (1453-)
4900
  #: ../languages/dynamic_strings.php:156
4901
  msgid "l-el-gr"
4902
+ msgstr "Грэцкі (Грэцыя)"
4903
 
4904
  # English
4905
  #: ../languages/dynamic_strings.php:157
4906
  msgid "l-en"
4907
+ msgstr "англійская"
4908
 
4909
  # English
4910
  #: ../languages/dynamic_strings.php:158
4911
  msgid "l-en-au"
4912
+ msgstr "англійская (Аўстралія)"
4913
 
4914
  # English
4915
  #: ../languages/dynamic_strings.php:159
4916
  msgid "l-en-bz"
4917
+ msgstr "англійская (Беліз)"
4918
 
4919
  # English
4920
  #: ../languages/dynamic_strings.php:160
4921
  msgid "l-en-ca"
4922
+ msgstr "англійская (Канада)"
4923
 
4924
  # English
4925
  #: ../languages/dynamic_strings.php:161
4926
  msgid "l-en-cb"
4927
+ msgstr "англійская (карыбскі)"
4928
 
4929
  # English
4930
  #: ../languages/dynamic_strings.php:162
4931
  msgid "l-en-gb"
4932
+ msgstr "Англійская (Вялікабрытанія)"
4933
 
4934
  # English
4935
  #: ../languages/dynamic_strings.php:163
4936
  msgid "l-en-ie"
4937
+ msgstr "Англійская (Ірландыя)"
4938
 
4939
  # English
4940
  #: ../languages/dynamic_strings.php:164
4941
  msgid "l-en-jm"
4942
+ msgstr "Англійская (Ямайка)"
4943
 
4944
  # English
4945
  #: ../languages/dynamic_strings.php:165
4946
  msgid "l-en-nz"
4947
+ msgstr "Англійская (Новая Зеландыя)"
4948
 
4949
  # English
4950
  #: ../languages/dynamic_strings.php:166
4951
  msgid "l-en-ph"
4952
+ msgstr "Англійская (Філіпіны)"
4953
 
4954
  # English
4955
  #: ../languages/dynamic_strings.php:167
4956
  msgid "l-en-tt"
4957
+ msgstr "Англійская (Трынідад і Табага)"
4958
 
4959
  # English
4960
  #: ../languages/dynamic_strings.php:168
4961
  msgid "l-en-us"
4962
+ msgstr "Англійская (ЗША)"
4963
 
4964
  # English
4965
  #: ../languages/dynamic_strings.php:169
4966
  msgid "l-en-za"
4967
+ msgstr "Англійская (Паўднёвая Афрыка)"
4968
 
4969
  # English
4970
  #: ../languages/dynamic_strings.php:170
4971
  msgid "l-en-zw"
4972
+ msgstr "Англійская (Зімбабвэ)"
4973
 
4974
  # Esperanto
4975
  #: ../languages/dynamic_strings.php:171
4976
  msgid "l-eo"
4977
+ msgstr "эсперанта"
4978
 
4979
  # Spanish; Castilian
4980
  #: ../languages/dynamic_strings.php:172
4981
  msgid "l-es"
4982
+ msgstr "іспанскі"
4983
 
4984
  # Spanish; Castilian
4985
  #: ../languages/dynamic_strings.php:173
4986
  msgid "l-es-ar"
4987
+ msgstr "Іспанскі (Аргенціна)"
4988
 
4989
  # Spanish; Castilian
4990
  #: ../languages/dynamic_strings.php:174
4991
  msgid "l-es-bo"
4992
+ msgstr "Іспанскі (Балівія)"
4993
 
4994
  # Spanish; Castilian
4995
  #: ../languages/dynamic_strings.php:175
4996
  msgid "l-es-cl"
4997
+ msgstr "Іспанскі (Чылі)"
4998
 
4999
  # Spanish; Castilian
5000
  #: ../languages/dynamic_strings.php:176
5001
  msgid "l-es-co"
5002
+ msgstr "Іспанскі (Калумбія)"
5003
 
5004
  # Spanish; Castilian
5005
  #: ../languages/dynamic_strings.php:177
5006
  msgid "l-es-cr"
5007
+ msgstr "Іспанскі (Коста-Рыка)"
5008
 
5009
  # Spanish; Castilian
5010
  #: ../languages/dynamic_strings.php:178
5011
  msgid "l-es-do"
5012
+ msgstr "Іспанскі (Дамініканская Рэспубліка)"
5013
 
5014
  # Spanish; Castilian
5015
  #: ../languages/dynamic_strings.php:179
5016
  msgid "l-es-ec"
5017
+ msgstr "Іспанскі (Эквадор)"
5018
 
5019
  # Spanish; Castilian
5020
  #: ../languages/dynamic_strings.php:180
5021
  msgid "l-es-es"
5022
+ msgstr "Іспанскі (Іспанія)"
5023
 
5024
  # Spanish; Castilian
5025
  #: ../languages/dynamic_strings.php:181
5026
  msgid "l-es-gt"
5027
+ msgstr "Іспанскі (Гватэмала)"
5028
 
5029
  # Spanish; Castilian
5030
  #: ../languages/dynamic_strings.php:182
5031
  msgid "l-es-hn"
5032
+ msgstr "Іспанскі (Гандурас)"
5033
 
5034
  # Spanish; Castilian
5035
  #: ../languages/dynamic_strings.php:183
5036
  msgid "l-es-mx"
5037
+ msgstr "Іспанскі (Мексіка)"
5038
 
5039
  # Spanish; Castilian
5040
  #: ../languages/dynamic_strings.php:184
5041
  msgid "l-es-ni"
5042
+ msgstr "Іспанскі (Нікарагуа)"
5043
 
5044
  # Spanish; Castilian
5045
  #: ../languages/dynamic_strings.php:185
5046
  msgid "l-es-pa"
5047
+ msgstr "Іспанскі (Панама)"
5048
 
5049
  # Spanish; Castilian
5050
  #: ../languages/dynamic_strings.php:186
5051
  msgid "l-es-pe"
5052
+ msgstr "Іспанскі (Перу)"
5053
 
5054
  # Spanish; Castilian
5055
  #: ../languages/dynamic_strings.php:187
5056
  msgid "l-es-pr"
5057
+ msgstr "Іспанскі (Пуэрта-Рыка)"
5058
 
5059
  # Spanish; Castilian
5060
  #: ../languages/dynamic_strings.php:188
5064
  # Spanish; Castilian
5065
  #: ../languages/dynamic_strings.php:189
5066
  msgid "l-es-sv"
5067
+ msgstr "Іспанскі (Сальвадор)"
5068
 
5069
  # Spanish; Castilian
5070
  #: ../languages/dynamic_strings.php:190
5071
  msgid "l-es-uy"
5072
+ msgstr "Іспанскі (Уругвай)"
5073
 
5074
  # Spanish; Castilian
5075
  #: ../languages/dynamic_strings.php:191
5076
  msgid "l-es-ve"
5077
+ msgstr "Іспанскі (Венесуэла)"
5078
 
5079
  # Estonian
5080
  #: ../languages/dynamic_strings.php:192
5081
  msgid "l-et"
5082
+ msgstr "эстонскі"
5083
 
5084
  # Estonian
5085
  #: ../languages/dynamic_strings.php:193
5086
  msgid "l-et-ee"
5087
+ msgstr "Эстоніскі (Эстонія)"
5088
 
5089
  # Basque
5090
  #: ../languages/dynamic_strings.php:194
5091
  msgid "l-eu"
5092
+ msgstr "баскская"
5093
 
5094
  # Basque
5095
  #: ../languages/dynamic_strings.php:195
5096
  msgid "l-eu-es"
5097
+ msgstr "Баскская (Іспанія)"
5098
 
5099
  # Persian
5100
  #: ../languages/dynamic_strings.php:196
5101
  msgid "l-fa"
5102
+ msgstr "Фарсі"
5103
 
5104
  # Persian
5105
  #: ../languages/dynamic_strings.php:197
5106
  msgid "l-fa-ir"
5107
+ msgstr "Фарсі (Іран)"
5108
 
5109
  # Finnish
5110
  #: ../languages/dynamic_strings.php:198
5111
  msgid "l-fi"
5112
+ msgstr "фінскі"
5113
 
5114
  # Finnish
5115
  #: ../languages/dynamic_strings.php:199
5116
  msgid "l-fi-fi"
5117
+ msgstr "Фінскі (Фінляндыя)"
5118
 
5119
  # Faroese
5120
  #: ../languages/dynamic_strings.php:200
5121
  msgid "l-fo"
5122
+ msgstr "Фарэрская"
5123
 
5124
  # Faroese
5125
  #: ../languages/dynamic_strings.php:201
5126
  msgid "l-fo-fo"
5127
+ msgstr "Фарэрская (Фарэрскія выспы)"
5128
 
5129
  # French
5130
  #: ../languages/dynamic_strings.php:202
5131
  msgid "l-fr"
5132
+ msgstr "французская"
5133
 
5134
  # French
5135
  #: ../languages/dynamic_strings.php:203
5136
  msgid "l-fr-be"
5137
+ msgstr "Французская (Бельгія)"
5138
 
5139
  # French
5140
  #: ../languages/dynamic_strings.php:204
5141
  msgid "l-fr-ca"
5142
+ msgstr "Французская (Канада)"
5143
 
5144
  # French
5145
  #: ../languages/dynamic_strings.php:205
5146
  msgid "l-fr-ch"
5147
+ msgstr "Французская (Швейцарыя)"
5148
 
5149
  # French
5150
  #: ../languages/dynamic_strings.php:206
5151
  msgid "l-fr-fr"
5152
+ msgstr "Французская (Францыя)"
5153
 
5154
  # French
5155
  #: ../languages/dynamic_strings.php:207
5156
  msgid "l-fr-lu"
5157
+ msgstr "Французская (Люксембург)"
5158
 
5159
  # French
5160
  #: ../languages/dynamic_strings.php:208
5161
  msgid "l-fr-mc"
5162
+ msgstr "Французская (Манака)"
5163
 
5164
  # Galician
5165
  #: ../languages/dynamic_strings.php:209
5166
  msgid "l-gl"
5167
+ msgstr "Галіцкая"
5168
 
5169
  # Spanish; Castilian
5170
  #: ../languages/dynamic_strings.php:210
5171
  msgid "l-gl-es"
5172
+ msgstr "Галіцкая (Іспанія)"
5173
 
5174
  # Gujarati
5175
  #: ../languages/dynamic_strings.php:211
5176
  msgid "l-gu"
5177
+ msgstr "гуяраці"
5178
 
5179
  # Gujarati
5180
  #: ../languages/dynamic_strings.php:212
5181
  msgid "l-gu-in"
5182
+ msgstr "гуяраці (Індыя) "
5183
 
5184
  # Hebrew
5185
  #: ../languages/dynamic_strings.php:213
5186
  msgid "l-he"
5187
+ msgstr "іўрыт"
5188
 
5189
  # Hebrew
5190
  #: ../languages/dynamic_strings.php:214
5191
  msgid "l-he-il"
5192
+ msgstr "Іўрыт (Ізраіль)"
5193
 
5194
  # Hindi
5195
  #: ../languages/dynamic_strings.php:215
5196
  msgid "l-hi"
5197
+ msgstr "Хіндзі"
5198
 
5199
  # Hindi
5200
  #: ../languages/dynamic_strings.php:216
5201
  msgid "l-hi-in"
5202
+ msgstr "Хіндзі (Індыя)"
5203
 
5204
  # Croatian
5205
  #: ../languages/dynamic_strings.php:217
5206
  msgid "l-hr"
5207
+ msgstr "харвацкая"
5208
 
5209
  # Croatian
5210
  #: ../languages/dynamic_strings.php:218
5211
  msgid "l-hr-ba"
5212
+ msgstr "Харвацкая (баснійская)"
5213
 
5214
  # Croatian
5215
  #: ../languages/dynamic_strings.php:219
5216
  msgid "l-hr-hr"
5217
+ msgstr "Харвацкая (Харватыя)"
5218
 
5219
  # Hungarian
5220
  #: ../languages/dynamic_strings.php:220
5221
  msgid "l-hu"
5222
+ msgstr "венгерская"
5223
 
5224
  # Hungarian
5225
  #: ../languages/dynamic_strings.php:221
5226
  msgid "l-hu-hu"
5227
+ msgstr "Венгерская (Венгрыя)"
5228
 
5229
  # Armenian
5230
  #: ../languages/dynamic_strings.php:222
5231
  msgid "l-hy"
5232
+ msgstr "армянскі"
5233
 
5234
  # Armenian
5235
  #: ../languages/dynamic_strings.php:223
5236
  msgid "l-hy-am"
5237
+ msgstr "Армянскі (Арменія)"
5238
 
5239
  #: ../languages/dynamic_strings.php:224
5240
  msgid "l-id"
5241
+ msgstr "інданезійская"
5242
 
5243
  #: ../languages/dynamic_strings.php:225
5244
  msgid "l-id-id"
5245
+ msgstr "інданезійская"
5246
 
5247
  # Icelandic
5248
  #: ../languages/dynamic_strings.php:226
5249
  msgid "l-is"
5250
+ msgstr "ісландская"
5251
 
5252
  # Icelandic
5253
  #: ../languages/dynamic_strings.php:227
5254
  msgid "l-is-is"
5255
+ msgstr "Ісландская (Ісландыя)"
5256
 
5257
  # Italian
5258
  #: ../languages/dynamic_strings.php:228
5259
  msgid "l-it"
5260
+ msgstr "італьянскі"
5261
 
5262
  # Italian
5263
  #: ../languages/dynamic_strings.php:229
5264
  msgid "l-it-ch"
5265
+ msgstr "Італьянская (Швейцарыя)"
5266
 
5267
  # Italian
5268
  #: ../languages/dynamic_strings.php:230
5269
  msgid "l-it-it"
5270
+ msgstr "Італьянская (Італія)"
5271
 
5272
  # Japanese
5273
  #: ../languages/dynamic_strings.php:231
5274
  msgid "l-ja"
5275
+ msgstr "японскі"
5276
 
5277
  # Japanese
5278
  #: ../languages/dynamic_strings.php:232
5279
  msgid "l-ja-jp"
5280
+ msgstr "японскі (Японія)"
5281
 
5282
  # Georgian
5283
  #: ../languages/dynamic_strings.php:233
5284
  msgid "l-ka"
5285
+ msgstr "грузінскі"
5286
 
5287
  # Georgian
5288
  #: ../languages/dynamic_strings.php:234
5289
  msgid "l-ka-ge"
5290
+ msgstr "грузінскі (Грузія)"
5291
 
5292
  # Kazakh
5293
  #: ../languages/dynamic_strings.php:235
5294
  msgid "l-kk"
5295
+ msgstr "казахскі"
5296
 
5297
  # Kazakh
5298
  #: ../languages/dynamic_strings.php:236
5299
  msgid "l-kk-kz"
5300
+ msgstr "Казахскі (Казахстан)"
5301
 
5302
  # Kannada
5303
  #: ../languages/dynamic_strings.php:237
5304
  msgid "l-kn"
5305
+ msgstr "Каннада"
5306
 
5307
  # Kannada
5308
  #: ../languages/dynamic_strings.php:238
5309
  msgid "l-kn-in"
5310
+ msgstr "Каннада (Індыя)"
5311
 
5312
  # Korean
5313
  #: ../languages/dynamic_strings.php:239
5314
  msgid "l-ko"
5315
+ msgstr "карэйская"
5316
 
5317
  # Korean
5318
  #: ../languages/dynamic_strings.php:240
5319
  msgid "l-ko-kr"
5320
+ msgstr "карэйская (Карэя)"
5321
 
5322
  # Korean
5323
  #: ../languages/dynamic_strings.php:241
5324
  msgid "l-kok"
5325
+ msgstr "Конкані"
5326
 
5327
  # Korean
5328
  #: ../languages/dynamic_strings.php:242
5329
  msgid "l-kok-in"
5330
+ msgstr "Конкані (Індыя)"
5331
 
5332
  # Kirghiz; Kyrgyz
5333
  #: ../languages/dynamic_strings.php:243
5334
  msgid "l-ky"
5335
+ msgstr "кіргізы"
5336
 
5337
  # Kirghiz; Kyrgyz
5338
  #: ../languages/dynamic_strings.php:244
5339
  msgid "l-ky-kg"
5340
+ msgstr "Кіргізы (Казахстан)"
5341
 
5342
  # Lithuanian
5343
  #: ../languages/dynamic_strings.php:245
5344
  msgid "l-lt"
5345
+ msgstr "літоўскі"
5346
 
5347
  # Lithuanian
5348
  #: ../languages/dynamic_strings.php:246
5349
  msgid "l-lt-lt"
5350
+ msgstr "Літоўскі (Літва)"
5351
 
5352
  # Latvian
5353
  #: ../languages/dynamic_strings.php:247
5354
  msgid "l-lv"
5355
+ msgstr "латышская"
5356
 
5357
  # Latvian
5358
  #: ../languages/dynamic_strings.php:248
5359
  msgid "l-lv-lv"
5360
+ msgstr "Латышская (Латвія)"
5361
 
5362
  # Maori
5363
  #: ../languages/dynamic_strings.php:249
5364
  msgid "l-mi"
5365
+ msgstr "маоры"
5366
 
5367
  # Maori
5368
  #: ../languages/dynamic_strings.php:250
5369
  msgid "l-mi-nz"
5370
+ msgstr "Маоры (Новая Зеландыя)"
5371
 
5372
  # Macedonian
5373
  #: ../languages/dynamic_strings.php:251
5374
  msgid "l-mk"
5375
+ msgstr "македонская"
5376
 
5377
  # Macedonian
5378
  #: ../languages/dynamic_strings.php:252
5379
  msgid "l-mk-ml"
5380
+ msgstr "Македонія (БЮРМ)"
5381
 
5382
  # Mongolian
5383
  #: ../languages/dynamic_strings.php:253
5384
  msgid "l-mn"
5385
+ msgstr "мангольская"
5386
 
5387
  # Mongolian
5388
  #: ../languages/dynamic_strings.php:254
5389
  msgid "l-mn-mn"
5390
+ msgstr "Мангольскай (Манголія)"
5391
 
5392
  # Marathi
5393
  #: ../languages/dynamic_strings.php:255
5394
  msgid "l-mr"
5395
+ msgstr "маратхі"
5396
 
5397
  # Marathi
5398
  #: ../languages/dynamic_strings.php:256
5399
  msgid "l-mr-in"
5400
+ msgstr "Маратхі (Індыя)"
5401
 
5402
  # Malay
5403
  #: ../languages/dynamic_strings.php:257
5404
  msgid "l-ms"
5405
+ msgstr "малайская"
5406
 
5407
  # Malay
5408
  #: ../languages/dynamic_strings.php:258
5409
  msgid "l-ms-bn"
5410
+ msgstr "Малайская (Бруней)"
5411
 
5412
  # Malay
5413
  #: ../languages/dynamic_strings.php:259
5414
  msgid "l-ms-my"
5415
+ msgstr "Малайская (Малайзія)"
5416
 
5417
  # Maltese
5418
  #: ../languages/dynamic_strings.php:260
5419
  msgid "l-mt"
5420
+ msgstr "мальтыйская"
5421
 
5422
  # Maltese
5423
  #: ../languages/dynamic_strings.php:261
5424
  msgid "l-mt-mt"
5425
+ msgstr "Мальтыйская (Мальта)"
5426
 
5427
  # Norwegian Bokmål
5428
  #: ../languages/dynamic_strings.php:262
5429
  msgid "l-nb"
5430
+ msgstr "нарвежская; букмал"
5431
 
5432
  # Norwegian Bokmål
5433
  #: ../languages/dynamic_strings.php:263
5434
  msgid "l-nb-no"
5435
+ msgstr "Нарвежская (Нарвегія)"
5436
 
5437
  # Dutch; Flemish
5438
  #: ../languages/dynamic_strings.php:264
5439
  msgid "l-nl"
5440
+ msgstr "галандскі; фламандскі"
5441
 
5442
  # Belarusian
5443
  #: ../languages/dynamic_strings.php:265
5444
  msgid "l-nl-be"
5445
+ msgstr "Галандскі (Бельгія)"
5446
 
5447
  # Dutch; Flemish
5448
  #: ../languages/dynamic_strings.php:266
5449
  msgid "l-nl-nl"
5450
+ msgstr "Галандскі (Нідэрланды)"
5451
 
5452
  # Norwegian Nynorsk
5453
  #: ../languages/dynamic_strings.php:267
5454
  msgid "l-nn-no"
5455
+ msgstr "нарвежская; Нюнорск (Нарвегія)"
5456
 
5457
  #: ../languages/dynamic_strings.php:268
5458
  msgid "l-ns"
5459
+ msgstr "Паўночны Сота"
5460
 
5461
  #: ../languages/dynamic_strings.php:269
5462
  msgid "l-ns-za"
5463
+ msgstr "Паўночны Сота (Паўднёвая Афрыка)"
5464
 
5465
  # Panjabi; Punjabi
5466
  #: ../languages/dynamic_strings.php:270
5467
  msgid "l-pa"
5468
+ msgstr "пенджабі; панджабі"
5469
 
5470
  # Panjabi; Punjabi
5471
  #: ../languages/dynamic_strings.php:271
5472
  msgid "l-pa-in"
5473
+ msgstr "Панджабі (індыйскі)"
5474
 
5475
  # Polish
5476
  #: ../languages/dynamic_strings.php:272
5477
  msgid "l-pl"
5478
+ msgstr "Польскі"
5479
 
5480
  # Polish
5481
  #: ../languages/dynamic_strings.php:273
5482
  msgid "l-pl-pl"
5483
+ msgstr "Польскі (Польшча)"
5484
 
5485
  # Pushto; Pashto
5486
  #: ../languages/dynamic_strings.php:274
5487
  msgid "l-ps"
5488
+ msgstr "Пашто; Пушту"
5489
 
5490
  # Pushto; Pashto
5491
  #: ../languages/dynamic_strings.php:275
5492
  msgid "l-ps-ar"
5493
+ msgstr "Пашту (Афганістан)"
5494
 
5495
  # Portuguese
5496
  #: ../languages/dynamic_strings.php:276
5497
  msgid "l-pt"
5498
+ msgstr "партугальская"
5499
 
5500
  # Portuguese
5501
  #: ../languages/dynamic_strings.php:277
5502
  msgid "l-pt-br"
5503
+ msgstr "Партугальская (Бразілія)"
5504
 
5505
  # Portuguese
5506
  #: ../languages/dynamic_strings.php:278
5507
  msgid "l-pt-pt"
5508
+ msgstr "Партугальская (Партугалія)"
5509
 
5510
  # Quechua
5511
  #: ../languages/dynamic_strings.php:279
5512
  msgid "l-qu"
5513
+ msgstr "кечуа"
5514
 
5515
  # Quechua
5516
  #: ../languages/dynamic_strings.php:280
5517
  msgid "l-qu-bo"
5518
+ msgstr "Кечуа (Балівія)"
5519
 
5520
  # Quechua
5521
  #: ../languages/dynamic_strings.php:281
5522
  msgid "l-qu-ec"
5523
+ msgstr "Кечуа (Эквадор)"
5524
 
5525
  # Quechua
5526
  #: ../languages/dynamic_strings.php:282
5527
  msgid "l-qu-pe"
5528
+ msgstr "Кечуа (Перу)"
5529
 
5530
  # Romanian; Moldavian; Moldovan
5531
  #: ../languages/dynamic_strings.php:283
5532
  msgid "l-ro"
5533
+ msgstr "румынская"
5534
 
5535
  # Romanian; Moldavian; Moldovan
5536
  #: ../languages/dynamic_strings.php:284
5537
  msgid "l-ro-ro"
5538
+ msgstr "Румынская (Румынія)"
5539
 
5540
  # Russian
5541
  #: ../languages/dynamic_strings.php:285
5542
  msgid "l-ru"
5543
+ msgstr "руская"
5544
 
5545
  # Russian
5546
  #: ../languages/dynamic_strings.php:286
5547
  msgid "l-ru-ru"
5548
+ msgstr "руская (Расія)"
5549
 
5550
  # Sanskrit
5551
  #: ../languages/dynamic_strings.php:287
5552
  msgid "l-sa"
5553
+ msgstr "санскрыт"
5554
 
5555
  # Sanskrit (India)
5556
  #: ../languages/dynamic_strings.php:288
5557
  msgid "l-sa-in"
5558
+ msgstr "Санскрыт (Індыя)"
5559
 
5560
  # Northern Sami
5561
  #: ../languages/dynamic_strings.php:289
5562
  msgid "l-se"
5563
+ msgstr "Паўночны Самі"
5564
 
5565
  # Northern Sami
5566
  #: ../languages/dynamic_strings.php:290
5567
  msgid "l-se-fi"
5568
+ msgstr "Паўночны Самі (Фінляндыя)"
5569
 
5570
  # Northern Sami
5571
  #: ../languages/dynamic_strings.php:291
5572
  msgid "l-se-no"
5573
+ msgstr "Паўночная Самі (Нарвегія)"
5574
 
5575
  # Northern Sami
5576
  #: ../languages/dynamic_strings.php:292
5577
  msgid "l-se-se"
5578
+ msgstr "Паўночная Самі (Швецыя)"
5579
 
5580
  # Slovak
5581
  #: ../languages/dynamic_strings.php:293
5582
  msgid "l-sk"
5583
+ msgstr "славацкая"
5584
 
5585
  # Slovak
5586
  #: ../languages/dynamic_strings.php:294
5587
  msgid "l-sk-sk"
5588
+ msgstr "Славацкая (Славакія)"
5589
 
5590
  # Slovenian
5591
  #: ../languages/dynamic_strings.php:295
5592
  msgid "l-sl"
5593
+ msgstr "славенская"
5594
 
5595
  # Slovenian
5596
  #: ../languages/dynamic_strings.php:296
5597
  msgid "l-sl-si"
5598
+ msgstr "Славенская (Славенія)"
5599
 
5600
  # Albanian
5601
  #: ../languages/dynamic_strings.php:297
5602
  msgid "l-sq"
5603
+ msgstr "албанская"
5604
 
5605
  # Albanian
5606
  #: ../languages/dynamic_strings.php:298
5607
  msgid "l-sq-al"
5608
+ msgstr "Албанская (Албанія)"
5609
 
5610
  # Serbian
5611
  #: ../languages/dynamic_strings.php:299
5612
  msgid "l-sr-ba"
5613
+ msgstr "Сэрбская (Боснія і Герцагавіна)"
5614
 
5615
  # Serbian
5616
  #: ../languages/dynamic_strings.php:300
5617
  msgid "l-sr-sp"
5618
+ msgstr "Сербская (Сербія і Чарнагорыя)"
5619
 
5620
  # Swedish
5621
  #: ../languages/dynamic_strings.php:301
5622
  msgid "l-sv"
5623
+ msgstr "шведскі"
5624
 
5625
  # Swedish
5626
  #: ../languages/dynamic_strings.php:302
5627
  msgid "l-sv-fi"
5628
+ msgstr "Шведскі (Фінляндыя)"
5629
 
5630
  # Swedish
5631
  #: ../languages/dynamic_strings.php:303
5632
  msgid "l-sv-se"
5633
+ msgstr "Шведскі (Швецыя)"
5634
 
5635
  # Swahili
5636
  #: ../languages/dynamic_strings.php:304
5640
  # Swahili
5641
  #: ../languages/dynamic_strings.php:305
5642
  msgid "l-sw-ke"
5643
+ msgstr "Суахілі (Кенія)"
5644
 
5645
  # Tamil
5646
  #: ../languages/dynamic_strings.php:306
5647
  msgid "l-ta"
5648
+ msgstr "тамільская"
5649
 
5650
  # Tamil
5651
  #: ../languages/dynamic_strings.php:307
5652
  msgid "l-ta-in"
5653
+ msgstr "Тамільская (Індыя)"
5654
 
5655
  # Telugu
5656
  #: ../languages/dynamic_strings.php:308
5657
  msgid "l-te"
5658
+ msgstr "тэлугу"
5659
 
5660
  # Telugu
5661
  #: ../languages/dynamic_strings.php:309
5662
  msgid "l-te-in"
5663
+ msgstr "Тэлугу (Індыя)"
5664
 
5665
  # Thai
5666
  #: ../languages/dynamic_strings.php:310
5667
  msgid "l-th"
5668
+ msgstr "тайская"
5669
 
5670
  # Thai
5671
  #: ../languages/dynamic_strings.php:311
5672
  msgid "l-th-th"
5673
+ msgstr "Тайская (Тайланд)"
5674
 
5675
  # Tagalog
5676
  #: ../languages/dynamic_strings.php:312
5677
  msgid "l-tl"
5678
+ msgstr "Тагалог"
5679
 
5680
  # Tagalog
5681
  #: ../languages/dynamic_strings.php:313
5682
  msgid "l-tl-ph"
5683
+ msgstr "Тагалог (Філіпіны)"
5684
 
5685
  # Tswana
5686
  #: ../languages/dynamic_strings.php:314
5687
  msgid "l-tn"
5688
+ msgstr "тсвана"
5689
 
5690
  # Tswana
5691
  #: ../languages/dynamic_strings.php:315
5692
  msgid "l-tn-za"
5693
+ msgstr "Тсвана (Паўднёвая Афрыка)"
5694
 
5695
  # Turkish
5696
  #: ../languages/dynamic_strings.php:316
5697
  msgid "l-tr"
5698
+ msgstr "турэцкі"
5699
 
5700
  # Turkish
5701
  #: ../languages/dynamic_strings.php:317
5702
  msgid "l-tr-tr"
5703
+ msgstr "Турэцкі (Турцыя)"
5704
 
5705
  # Tatar
5706
  #: ../languages/dynamic_strings.php:318
5707
  msgid "l-tt"
5708
+ msgstr "татарскі"
5709
 
5710
  # Tatar
5711
  #: ../languages/dynamic_strings.php:319
5712
  msgid "l-tt-ru"
5713
+ msgstr "Татарскі (Расія)"
5714
 
5715
  # Tsonga
5716
  #: ../languages/dynamic_strings.php:320
5717
  msgid "l-ts"
5718
+ msgstr "Тсонга"
5719
 
5720
  # Ukrainian
5721
  #: ../languages/dynamic_strings.php:321
5722
  msgid "l-uk"
5723
+ msgstr "украінскі"
5724
 
5725
  # Ukrainian
5726
  #: ../languages/dynamic_strings.php:322
5727
  msgid "l-uk-ua"
5728
+ msgstr "Украінскі (Украіна)"
5729
 
5730
  # Urdu
5731
  #: ../languages/dynamic_strings.php:323
5732
  msgid "l-ur"
5733
+ msgstr "урду"
5734
 
5735
  # Urdu
5736
  #: ../languages/dynamic_strings.php:324
5737
  msgid "l-ur-pk"
5738
+ msgstr "Урду (Пакістан)"
5739
 
5740
  # Uzbek
5741
  #: ../languages/dynamic_strings.php:325
5742
  msgid "l-uz"
5743
+ msgstr "Узбекская"
5744
 
5745
  # Uzbek
5746
  #: ../languages/dynamic_strings.php:326
5747
  msgid "l-uz-uz"
5748
+ msgstr "Узбекская (Узбекістан)"
5749
 
5750
  # Vietnamese
5751
  #: ../languages/dynamic_strings.php:327
5752
  msgid "l-vi"
5753
+ msgstr "В'етнамская"
5754
 
5755
  # Vietnamese
5756
  #: ../languages/dynamic_strings.php:328
5757
  msgid "l-vi-vn"
5758
+ msgstr "В'етнамская (В'етнам)"
5759
 
5760
  # Xhosa
5761
  #: ../languages/dynamic_strings.php:329
5762
  msgid "l-xh"
5763
+ msgstr "Каса"
5764
 
5765
  # Xhosa
5766
  #: ../languages/dynamic_strings.php:330
5767
  msgid "l-xh-za"
5768
+ msgstr "Каса (Паўднёвая Афрыка)"
5769
 
5770
  # Chinese
5771
  #: ../languages/dynamic_strings.php:331
5772
  msgid "l-zh"
5773
+ msgstr "кітайскі"
5774
 
5775
  # Chinese
5776
  #: ../languages/dynamic_strings.php:332
5777
  msgid "l-zh-cn"
5778
+ msgstr "Кітайскі (S)"
5779
 
5780
  # Chinese
5781
  #: ../languages/dynamic_strings.php:333
5782
  msgid "l-zh-hk"
5783
+ msgstr "Кітайскі (Ганконг)"
5784
 
5785
  # Chinese
5786
  #: ../languages/dynamic_strings.php:334
5787
  msgid "l-zh-mo"
5788
+ msgstr "Кітайскі (Макао)"
5789
 
5790
  # Chinese
5791
  #: ../languages/dynamic_strings.php:335
5792
  msgid "l-zh-sg"
5793
+ msgstr "Кітайскі (Сінгапур)"
5794
 
5795
  # Chinese
5796
  #: ../languages/dynamic_strings.php:336
5797
  msgid "l-zh-tw"
5798
+ msgstr "Кітайскі (T)"
5799
 
5800
  # Zulu
5801
  #: ../languages/dynamic_strings.php:337
5802
  msgid "l-zu"
5803
+ msgstr "Зулускі"
5804
 
5805
  # Zulu
5806
  #: ../languages/dynamic_strings.php:338
5807
  msgid "l-zu-za"
5808
+ msgstr "Зулускі (Паўднёвая Афрыка)"
5809
 
5810
  # Unknown
5811
  #: ../languages/dynamic_strings.php:340
5812
  msgid "l-empty"
5813
+ msgstr "Невядомы"
5814
 
5815
  # Unknown
5816
  #: ../languages/dynamic_strings.php:341
5817
  msgid "l-xx"
5818
+ msgstr "Невядомы"
5819
 
5820
  #: ../languages/dynamic_strings.php:343
5821
  msgid "c-xy"
5822
+ msgstr "Лакальны IP"
5823
 
5824
+ #: ../wp-slimstat.php:238 ../wp-slimstat.php:524
5825
  msgid "Notice: Pageview filtered by third-party code"
5826
  msgstr "Заўвага: Прагляд старонкі фільтруюцца іншым кодам"
5827
 
5828
+ #: ../wp-slimstat.php:255
5829
  #, php-format
5830
  msgid "Error: Malformed URL %s"
5831
  msgstr "Памылка: Няправільны фармат URL% s"
5832
 
5833
+ #: ../wp-slimstat.php:279
5834
  #, php-format
5835
  msgid "Notice: Referrer %s is blacklisted"
5836
  msgstr "Заўвага: реферр %s занесены ў чорны спіс"
5837
 
5838
+ #: ../wp-slimstat.php:356
5839
  #, php-format
5840
  msgid "Notice: Permalink %s is blacklisted"
5841
  msgstr "Заўвага: Permalinks %s занесены ў чорны спіс"
5842
 
5843
+ #: ../wp-slimstat.php:367
5844
  msgid "Error: Empty or not supported IP address format (IPv6)"
5845
  msgstr "Памылка: пустая або не падтрымліваецца фармат IP-адрас (IPv6)"
5846
 
5847
+ #: ../wp-slimstat.php:376
5848
  #, php-format
5849
  msgid "Notice: Logged in user %s not tracked"
5850
  msgstr "Заўвага: аўтарызаваны карыстальнік %s не адсочваецца"
5851
 
5852
+ #: ../wp-slimstat.php:384
5853
  #, php-format
5854
  msgid "Notice: User with capability %s not tracked"
5855
  msgstr "Заўвага: Карыстальнік з магчымасцю %s не адсочваецца"
5856
 
5857
+ #: ../wp-slimstat.php:394
5858
  #, php-format
5859
  msgid "Notice: User %s is blacklisted"
5860
  msgstr "Заўвага: Карыстальнік %s занесены ў чорны спіс"
5861
 
5862
+ #: ../wp-slimstat.php:415
5863
  #, php-format
5864
  msgid "Notice: Spammer %s not tracked"
5865
  msgstr "Заўвага: Спамер %s не адсочваецца"
5866
 
5867
+ #: ../wp-slimstat.php:444
5868
  #, php-format
5869
  msgid "Notice: IP address %s is blacklisted"
5870
  msgstr "Заўвага: IP-адрас %s занесены ў чорны спіс"
5871
 
5872
+ #: ../wp-slimstat.php:473
5873
  #, php-format
5874
  msgid "Notice: Country %s is blacklisted"
5875
  msgstr "Заўвага: краіна %s занесена ў чорны спіс"
5876
 
5877
+ #: ../wp-slimstat.php:482
5878
  msgid "Notice: Prefetch requests are ignored"
5879
  msgstr "Заўвага: папярэднія запыты ігнаруюцца"
5880
 
5881
+ #: ../wp-slimstat.php:498
5882
  msgid "Notice: Bot not tracked"
5883
  msgstr "Заўвага: праграма-робат не адсочваецца"
5884
 
5885
+ #: ../wp-slimstat.php:507
5886
  #, php-format
5887
  msgid "Notice: Browser %s is blacklisted"
5888
  msgstr "Заўвага: Браўзэры %s занесены ў чорны спіс"
5889
 
5890
+ #: ../wp-slimstat.php:537
5891
  msgid "Error:"
5892
  msgstr "Пасылка:"
5893
 
5894
+ #: ../wp-slimstat.php:1155
5895
  msgid "Invalid payload string. Try clearing your WordPress cache."
5896
  msgstr ""
5897
  "Недапушчальная радок карыснай нагрузкі. Паспрабуйце ачысціць кэш WordPress."
5898
 
5899
+ #: ../wp-slimstat.php:1165
5900
  msgid "Invalid data signature. Try clearing your WordPress cache."
5901
  msgstr "Няправільная подпіс дадзеных. Паспрабуйце ачысціць кэш WordPress."
5902
 
5903
+ #: ../wp-slimstat.php:1259
5904
  msgid "There was an error downloading the MaxMind Geolite DB:"
5905
  msgstr "Памылка загрузкі MaxMind Geolite DB:"
5906
 
5907
+ #: ../wp-slimstat.php:1267 ../wp-slimstat.php:1276
5908
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5909
  msgstr "Памылка пры адкрыцці архіва MaxMind Geolite DB."
5910
 
5911
+ #: ../wp-slimstat.php:1271
5912
  msgid "Function gzopen not defined. Aborting."
5913
  msgstr "Функцыя gzopen не вызначана. "
5914
 
5915
+ #: ../wp-slimstat.php:1281
5916
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5917
  msgstr "Памылка пры адкрыцці архiва MaxMind Geolite DB."
5918
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: analytics, tracking, reports, analyze, wassup, geolocation, online users,
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Tested up to: 4.5
8
- Stable tag: 4.3.2.1
9
 
10
  == Description ==
11
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
@@ -14,7 +14,7 @@ Stable tag: 4.3.2.1
14
  * Real-time activity log, server latency, heatmaps, email reports, export data to Excel, full IPv6 support, and much more
15
  * Compatible with W3 Total Cache, WP SuperCache and most caching plugins
16
  * Accurate IP geolocation, browser and platform detection (courtesy of [MaxMind](http://www.maxmind.com/) and [Browscap](http://browscap.org))
17
- * Available in multiple languages: English, Chinese (沐熙工作室), Farsi ([Dean](http://www.mangallery.net)), French (Michael Bastin, Jean-Michel Venet, Yves Pouplard, Henrick Kac), German (TechnoViel), Italian, Japanese (h_a_l_f), Portuguese, Russian ([Vitaly](http://www.visbiz.org/)), Spanish ([WebHostingHub](http://www.webhostinghub.com/)), Swedish (Per Soderman) and Turkish (Seyit Mehmet Çoban). Is your language missing or incomplete? [Contact us](http://support.wp-slimstat.com/) today.
18
  * World Map that works on your mobile device, too (courtesy of [amMap](http://www.ammap.com/)).
19
 
20
  = What are people saying about Slimstat Analytics? =
@@ -63,6 +63,12 @@ Our knowledge base is available on our [support center](http://docs.wp-slimstat.
63
 
64
  == Changelog ==
65
 
 
 
 
 
 
 
66
 
67
  = 4.3.2.1 =
68
  * [Fix] Some static text ( var_ ) sneaked into the source code. Apologies for the inconvenience.
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Tested up to: 4.5
8
+ Stable tag: 4.3.2.2
9
 
10
  == Description ==
11
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
14
  * Real-time activity log, server latency, heatmaps, email reports, export data to Excel, full IPv6 support, and much more
15
  * Compatible with W3 Total Cache, WP SuperCache and most caching plugins
16
  * Accurate IP geolocation, browser and platform detection (courtesy of [MaxMind](http://www.maxmind.com/) and [Browscap](http://browscap.org))
17
+ * Available in multiple languages: English, Belarusian ([UStarCash](https://www.ustarcash.com/)), Chinese (沐熙工作室), Farsi ([Dean](http://www.mangallery.net)), French (Michael Bastin, Jean-Michel Venet, Yves Pouplard, Henrick Kac), German (TechnoViel), Italian, Japanese (h_a_l_f), Portuguese, Russian ([Vitaly](http://www.visbiz.org/)), Spanish ([WebHostingHub](http://www.webhostinghub.com/)), Swedish (Per Soderman) and Turkish (Seyit Mehmet Çoban). Is your language missing or incomplete? [Contact us](http://support.wp-slimstat.com/) today.
18
  * World Map that works on your mobile device, too (courtesy of [amMap](http://www.ammap.com/)).
19
 
20
  = What are people saying about Slimstat Analytics? =
63
 
64
  == Changelog ==
65
 
66
+ = 4.3.2.2 =
67
+ * [Note] Just a quick note to let you know that we will be focusing on a major project in the next few weeks, so both development and customer support might be less responsive than usual. Please be patient, and refrain from submitting the same request more than once. Thank you!
68
+ * [New] Slimstat now speaks Belarusian thanks to Natasha from [UStarCash](https://www.ustarcash.com/).
69
+ * [Fix] Bug in Javascript tracker with Async mode enabled was duplicating entries in the Access Log.
70
+ * [Fix] Variable type mismatch was preventing scheduled posts from publishing (thank you, [Salpertriere](https://wordpress.org/support/topic/latest-version-stops-scheduled-posts-from-publishing?replies=5#post-8365376))
71
+ * [Fix] Some Javascript strings (used to generate the charts) where not correctly encoded and were breaking the source code in certain localizations.
72
 
73
  = 4.3.2.1 =
74
  * [Fix] Some static text ( var_ ) sneaked into the source code. Apologies for the inconvenience.
wp-slimstat.js CHANGED
@@ -424,8 +424,8 @@ SlimStat.add_event( window, "load", function() {
424
  cur_link.setAttribute( "data-slimstat-clicked", "false" );
425
  cur_link.setAttribute( "data-slimstat-type", ( cur_link.href && ( cur_link.hostname == location.hostname || cur_link.href.indexOf('://') == -1 ) ) ? 2 : 0 );
426
  cur_link.setAttribute( "data-slimstat-tracking", "true" );
427
- cur_link.setAttribute( "data-slimstat-callback", "true" );
428
- cur_link.setAttribute( "data-slimstat-async", !( "undefined" == typeof SlimStatParams.async_tracker || "false" == SlimStatParams.async_tracker ) );
429
 
430
  // Track other internal links?
431
  if ( 2 == cur_link.getAttribute( "data-slimstat-type" ) && ( "undefined" == typeof SlimStatParams.track_internal_links || "false" == SlimStatParams.track_internal_links ) ) {
424
  cur_link.setAttribute( "data-slimstat-clicked", "false" );
425
  cur_link.setAttribute( "data-slimstat-type", ( cur_link.href && ( cur_link.hostname == location.hostname || cur_link.href.indexOf('://') == -1 ) ) ? 2 : 0 );
426
  cur_link.setAttribute( "data-slimstat-tracking", "true" );
427
+ cur_link.setAttribute( "data-slimstat-async", !( "undefined" == typeof SlimStatParams.async_tracker || "false" == SlimStatParams.async_tracker ) ? "true" : "false" );
428
+ cur_link.setAttribute( "data-slimstat-callback", ( cur_link.getAttribute( "data-slimstat-async" ) == "false" ) ? "true" : "false" );
429
 
430
  // Track other internal links?
431
  if ( 2 == cur_link.getAttribute( "data-slimstat-type" ) && ( "undefined" == typeof SlimStatParams.track_internal_links || "false" == SlimStatParams.track_internal_links ) ) {
wp-slimstat.min.js CHANGED
@@ -1 +1 @@
1
- var SlimStat={_id:"undefined"!=typeof SlimStatParams.id?SlimStatParams.id:"-1.0",_base64_key_str:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_plugins:{acrobat:{substrings:["Adobe","Acrobat"],active_x_strings:["AcroPDF.PDF","PDF.PDFCtrl.5"]},director:{substrings:["Shockwave","Director"],active_x_strings:["SWCtl.SWCtl"]},flash:{substrings:["Shockwave","Flash"],active_x_strings:["ShockwaveFlash.ShockwaveFlash"]},mediaplayer:{substrings:["Windows Media"],active_x_strings:["WMPlayer.OCX"]},quicktime:{substrings:["QuickTime"],active_x_strings:["QuickTime.QuickTime"]},real:{substrings:["RealPlayer"],active_x_strings:["rmocx.RealPlayer G2 Control","RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)","RealVideo.RealVideo(tm) ActiveX Control (32-bit)"]},silverlight:{substrings:["Silverlight"],active_x_strings:["AgControl.AgControl"]}},_utf8_encode:function(t){var e,n,a="";for(t=t.replace(/\r\n/g,"\n"),e=0;e<t.length;e++)n=t.charCodeAt(e),128>n?a+=String.fromCharCode(n):n>127&&2048>n?(a+=String.fromCharCode(n>>6|192),a+=String.fromCharCode(63&n|128)):(a+=String.fromCharCode(n>>12|224),a+=String.fromCharCode(n>>6&63|128),a+=String.fromCharCode(63&n|128));return a},_base64_encode:function(t){var e,n,a,i,r,s,o,d="",l=0;for(t=SlimStat._utf8_encode(t);l<t.length;)e=t.charCodeAt(l++),n=t.charCodeAt(l++),a=t.charCodeAt(l++),i=e>>2,r=(3&e)<<4|n>>4,s=(15&n)<<2|a>>6,o=63&a,isNaN(n)?s=o=64:isNaN(a)&&(o=64),d=d+SlimStat._base64_key_str.charAt(i)+SlimStat._base64_key_str.charAt(r)+SlimStat._base64_key_str.charAt(s)+this._base64_key_str.charAt(o);return d},_detect_single_plugin_not_ie:function(t){var e,n,a,i;for(a in navigator.plugins){e=""+navigator.plugins[a].name+navigator.plugins[a].description,n=0;for(i in SlimStat._plugins[t].substrings)-1!=e.indexOf(SlimStat._plugins[t].substrings[i])&&n++;if(n==SlimStat._plugins[t].substrings.length)return!0}return!1},_detect_single_plugin_ie:function(t){var e;for(e in SlimStat._plugins[t].active_x_strings)try{return new ActiveXObject(SlimStat._plugins[t].active_x_strings[e]),!0}catch(n){return!1}},_detect_single_plugin:function(t){return navigator.plugins.length?this.detect=this._detect_single_plugin_not_ie:this.detect=this._detect_single_plugin_ie,this.detect(t)},detect_plugins:function(){var t,e=[];for(t in SlimStat._plugins)SlimStat._detect_single_plugin(t)&&e.push(t);return e.join(",")},get_page_performance:function(){return slim_performance=window.performance||window.mozPerformance||window.msPerformance||window.webkitPerformance||{},"undefined"==typeof slim_performance.timing?0:slim_performance.timing.loadEventEnd-slim_performance.timing.responseEnd},get_server_latency:function(){return slim_performance=window.performance||window.mozPerformance||window.msPerformance||window.webkitPerformance||{},"undefined"==typeof slim_performance.timing?0:slim_performance.timing.responseEnd-slim_performance.timing.connectEnd},send_to_server:function(t,e,n){if("undefined"==typeof SlimStatParams.ajaxurl||"undefined"==typeof t)return"function"==typeof e&&e(),!1;"undefined"==typeof n&&(n=!0);try{window.XMLHttpRequest?request=new XMLHttpRequest:window.ActiveXObject&&(request=new ActiveXObject("Microsoft.XMLHTTP"))}catch(a){return"function"==typeof e&&e(),!1}return slimstat_data_with_client_info=t+"&sw="+screen.width+"&sh="+screen.height+"&bw="+window.innerWidth+"&bh="+window.innerHeight+"&sl="+SlimStat.get_server_latency()+"&pp="+SlimStat.get_page_performance()+"&pl="+SlimStat.detect_plugins(),request?(request.open("POST",SlimStatParams.ajaxurl,n),request.setRequestHeader("Content-type","application/x-www-form-urlencoded"),request.send(slimstat_data_with_client_info),n?request.onreadystatechange=function(){4==request.readyState&&("undefined"==typeof SlimStatParams.id?(parsed_id=parseInt(request.responseText),!isNaN(parsed_id)&&parsed_id>0&&(SlimStat._id=request.responseText)):SlimStat._id=SlimStatParams.id,"function"==typeof e&&e())}:("undefined"==typeof SlimStatParams.id?(parsed_id=parseInt(request.responseText),!isNaN(parsed_id)&&parsed_id>0&&(SlimStat._id=request.responseText)):SlimStat._id=SlimStatParams.id,"function"==typeof e&&e()),!0):!1},ss_track:function(t,e,n,a,i){if(t=t?t:window.event,type="undefined"==typeof e?0:parseInt(e),note_array=[],"undefined"==typeof i&&(i=!0),parsed_id=parseInt(SlimStat._id),isNaN(parsed_id)||parsed_id<=0)return"function"==typeof a&&a(),!1;if(node="undefined"!=typeof t.target?t.target:"undefined"!=typeof t.srcElement?t.srcElement:!1,!node)return"function"==typeof a&&a(),!1;switch(3==node.nodeType&&(node=node.parentNode),parent_node=node.parentNode,resource_url="",node.nodeName){case"FORM":"undefined"!=typeof node.action&&node.action&&(resource_url=node.action);break;case"INPUT":for(;"undefined"!=typeof parent_node&&"FORM"!=parent_node.nodeName&&"BODY"!=parent_node.nodeName;)parent_node=parent_node.parentNode;if("undefined"!=typeof parent_node.action&&parent_node.action){resource_url=parent_node.action;break}default:if("A"!=node.nodeName)for(;"undefined"!=typeof node.parentNode&&null!=node.parentNode&&"A"!=node.nodeName&&"BODY"!=node.nodeName;)node=node.parentNode;"undefined"!=typeof node.hash&&node.hash&&node.hostname==location.hostname?resource_url=node.hash:"undefined"!=typeof node.href&&(resource_url=node.href),"function"==typeof node.getAttribute&&("undefined"!=typeof node.getAttribute("title")&&node.getAttribute("title")&&note_array.push("Title:"+node.getAttribute("title")),"undefined"!=typeof node.getAttribute("id")&&node.getAttribute("id")&&note_array.push("ID:"+node.getAttribute("id")))}return pos_x=-1,pos_y=-1,position="","undefined"!=typeof t.pageX&&"undefined"!=typeof t.pageY?(pos_x=t.pageX,pos_y=t.pageY):"undefined"!=typeof t.clientX&&"undefined"!=typeof t.clientY&&"undefined"!=typeof document.body.scrollLeft&&"undefined"!=typeof document.documentElement.scrollLeft&&"undefined"!=typeof document.body.scrollTop&&"undefined"!=typeof document.documentElement.scrollTop&&(pos_x=t.clientX+document.body.scrollLeft+document.documentElement.scrollLeft,pos_y=t.clientY+document.body.scrollTop+document.documentElement.scrollTop),pos_x>0&&pos_y>0&&(position=pos_x+","+pos_y),event_description=t.type,"keypress"==t.type?event_description+="; keypress:"+String.fromCharCode(parseInt(t.which)):"click"==t.type&&(event_description+="; which:"+t.which),"undefined"!=typeof n&&n&&note_array.push(n),note_string=SlimStat._base64_encode(note_array.join(", ")),requested_op="add",1==type?resource_url=resource_url.substring(resource_url.indexOf(location.hostname)+location.hostname.length):(0==type||2==type)&&(requested_op="update"),SlimStat.send_to_server("action=slimtrack&op="+requested_op+"&id="+SlimStat._id+"&ty="+type+"&ref="+SlimStat._base64_encode(document.referrer)+"&res="+SlimStat._base64_encode(resource_url)+"&pos="+position+"&des="+SlimStat._base64_encode(event_description)+"&no="+note_string,a,i),!0},add_event:function(t,e,n){t&&t.addEventListener?t.addEventListener(e,n,!1):t&&t.attachEvent?(t["e"+e+n]=n,t[e+n]=function(){t["e"+e+n](window.event)},t.attachEvent("on"+e,t[e+n])):t["on"+e]=t["e"+e+n]},event_fire:function(t,e){document.createEvent?(new_event=document.createEvent("MouseEvents"),new_event.initEvent(e.type,!0,!1,document.defaultView,e.button),t.dispatchEvent(new_event)):document.createEventObject&&(new_event=document.createEventObject(),t.fireEvent("on"+e.type,new_event))},in_array:function(t,e){for(var n=0;n<e.length;n++)if(e[n].trim()==t)return!0;return!1},in_array_substring:function(t,e){for(var n=0;n<e.length;n++)if(-1!=t.indexOf(e[n].trim()))return!0;return!1}};SlimStat.add_event(window,"load",function(){if("undefined"==typeof SlimStatParams.disable_outbound_tracking){all_links=document.getElementsByTagName("a");for(var t="undefined"!=typeof SlimStatParams.extensions_to_track&&SlimStatParams.extensions_to_track?SlimStatParams.extensions_to_track.split(","):[],e="undefined"!=typeof SlimStatParams.outbound_classes_rel_href_to_ignore&&SlimStatParams.outbound_classes_rel_href_to_ignore?SlimStatParams.outbound_classes_rel_href_to_ignore.split(","):[],n="undefined"!=typeof SlimStatParams.outbound_classes_rel_href_to_not_track&&SlimStatParams.outbound_classes_rel_href_to_not_track?SlimStatParams.outbound_classes_rel_href_to_not_track.split(","):[],a=0;a<all_links.length;a++){var i=all_links[a];if(i.setAttribute("data-slimstat-clicked","false"),i.setAttribute("data-slimstat-type",!i.href||i.hostname!=location.hostname&&-1!=i.href.indexOf("://")?0:2),i.setAttribute("data-slimstat-tracking","true"),i.setAttribute("data-slimstat-callback","true"),i.setAttribute("data-slimstat-async",!("undefined"==typeof SlimStatParams.async_tracker||"false"==SlimStatParams.async_tracker)),2!=i.getAttribute("data-slimstat-type")||"undefined"!=typeof SlimStatParams.track_internal_links&&"false"!=SlimStatParams.track_internal_links||i.setAttribute("data-slimstat-tracking","false"),"true"==i.getAttribute("data-slimstat-tracking")&&(e.length>0||n.length>0)){classes_current_link="undefined"!=typeof i.className&&i.className?i.className.split(" "):[];for(var r=0;r<classes_current_link.length;r++)if(SlimStat.in_array_substring(classes_current_link[r],e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(classes_current_link[r],n)){i.setAttribute("data-slimstat-tracking","false");break}}"true"==i.getAttribute("data-slimstat-tracking")&&"undefined"!=typeof i.attributes.rel&&i.attributes.rel.value&&(SlimStat.in_array_substring(i.attributes.rel.value,e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(i.attributes.rel.value,n)&&i.setAttribute("data-slimstat-tracking","false")),"true"==i.getAttribute("data-slimstat-tracking")&&"undefined"!=typeof i.href&&i.href&&(SlimStat.in_array_substring(i.href,e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(i.href,n)&&i.setAttribute("data-slimstat-tracking","false")),extension_current_link=i.pathname.split(".").pop().replace(/[\/\-]/g,""),t.length>0&&2==i.getAttribute("data-slimstat-type")&&SlimStat.in_array(extension_current_link,t)&&(i.setAttribute("data-slimstat-tracking","true"),i.setAttribute("data-slimstat-type",1)),"true"==i.getAttribute("data-slimstat-tracking")&&i.target&&!i.target.match(/^_(self|parent|top)$/i)&&(i.setAttribute("data-slimstat-callback","false"),i.setAttribute("data-slimstat-async","true")),"false"==i.getAttribute("data-slimstat-tracking")&&i.setAttribute("data-slimstat-callback","false"),SlimStat.add_event(i,"click",function(t){if("true"==this.getAttribute("data-slimstat-tracking")&&"false"==this.getAttribute("data-slimstat-clicked")){if("true"==this.getAttribute("data-slimstat-callback"))return this.setAttribute("data-slimstat-clicked","true"),function(t,e){SlimStat.ss_track(e,t.getAttribute("data-slimstat-type"),"",function(){SlimStat.event_fire(t,e)},"true"==t.getAttribute("data-slimstat-async")||"false"==t.getAttribute("data-slimstat-callback"))}(this,t),!1;SlimStat.ss_track(t,this.getAttribute("data-slimstat-type"),"",function(){},"true"==this.getAttribute("data-slimstat-async")||"false"==this.getAttribute("data-slimstat-callback"))}})}}});var slimstat_data="action=slimtrack";"undefined"!=typeof SlimStatParams.id&&parseInt(SlimStatParams.id)>0?slimstat_data+="&op=update&id="+SlimStatParams.id:"undefined"!=typeof SlimStatParams.ci?slimstat_data+="&op=add&id="+SlimStatParams.ci+"&ref="+SlimStat._base64_encode(document.referrer)+"&res="+SlimStat._base64_encode(window.location.href):slimstat_data="",slimstat_data.length>0&&SlimStat.add_event(window,"load",function(){setTimeout(function(){SlimStat.send_to_server(slimstat_data)},0)}),"function"!=typeof String.prototype.trim&&(String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")});
1
+ var SlimStat={_id:"undefined"!=typeof SlimStatParams.id?SlimStatParams.id:"-1.0",_base64_key_str:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_plugins:{acrobat:{substrings:["Adobe","Acrobat"],active_x_strings:["AcroPDF.PDF","PDF.PDFCtrl.5"]},director:{substrings:["Shockwave","Director"],active_x_strings:["SWCtl.SWCtl"]},flash:{substrings:["Shockwave","Flash"],active_x_strings:["ShockwaveFlash.ShockwaveFlash"]},mediaplayer:{substrings:["Windows Media"],active_x_strings:["WMPlayer.OCX"]},quicktime:{substrings:["QuickTime"],active_x_strings:["QuickTime.QuickTime"]},real:{substrings:["RealPlayer"],active_x_strings:["rmocx.RealPlayer G2 Control","RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)","RealVideo.RealVideo(tm) ActiveX Control (32-bit)"]},silverlight:{substrings:["Silverlight"],active_x_strings:["AgControl.AgControl"]}},_utf8_encode:function(t){var e,a,n="";for(t=t.replace(/\r\n/g,"\n"),e=0;e<t.length;e++)a=t.charCodeAt(e),128>a?n+=String.fromCharCode(a):a>127&&2048>a?(n+=String.fromCharCode(a>>6|192),n+=String.fromCharCode(63&a|128)):(n+=String.fromCharCode(a>>12|224),n+=String.fromCharCode(a>>6&63|128),n+=String.fromCharCode(63&a|128));return n},_base64_encode:function(t){var e,a,n,i,r,s,o,d="",l=0;for(t=SlimStat._utf8_encode(t);l<t.length;)e=t.charCodeAt(l++),a=t.charCodeAt(l++),n=t.charCodeAt(l++),i=e>>2,r=(3&e)<<4|a>>4,s=(15&a)<<2|n>>6,o=63&n,isNaN(a)?s=o=64:isNaN(n)&&(o=64),d=d+SlimStat._base64_key_str.charAt(i)+SlimStat._base64_key_str.charAt(r)+SlimStat._base64_key_str.charAt(s)+this._base64_key_str.charAt(o);return d},_detect_single_plugin_not_ie:function(t){var e,a,n,i;for(n in navigator.plugins){e=""+navigator.plugins[n].name+navigator.plugins[n].description,a=0;for(i in SlimStat._plugins[t].substrings)-1!=e.indexOf(SlimStat._plugins[t].substrings[i])&&a++;if(a==SlimStat._plugins[t].substrings.length)return!0}return!1},_detect_single_plugin_ie:function(t){var e;for(e in SlimStat._plugins[t].active_x_strings)try{return new ActiveXObject(SlimStat._plugins[t].active_x_strings[e]),!0}catch(a){return!1}},_detect_single_plugin:function(t){return navigator.plugins.length?this.detect=this._detect_single_plugin_not_ie:this.detect=this._detect_single_plugin_ie,this.detect(t)},detect_plugins:function(){var t,e=[];for(t in SlimStat._plugins)SlimStat._detect_single_plugin(t)&&e.push(t);return e.join(",")},get_page_performance:function(){return slim_performance=window.performance||window.mozPerformance||window.msPerformance||window.webkitPerformance||{},"undefined"==typeof slim_performance.timing?0:slim_performance.timing.loadEventEnd-slim_performance.timing.responseEnd},get_server_latency:function(){return slim_performance=window.performance||window.mozPerformance||window.msPerformance||window.webkitPerformance||{},"undefined"==typeof slim_performance.timing?0:slim_performance.timing.responseEnd-slim_performance.timing.connectEnd},send_to_server:function(t,e,a){if("undefined"==typeof SlimStatParams.ajaxurl||"undefined"==typeof t)return"function"==typeof e&&e(),!1;"undefined"==typeof a&&(a=!0);try{window.XMLHttpRequest?request=new XMLHttpRequest:window.ActiveXObject&&(request=new ActiveXObject("Microsoft.XMLHTTP"))}catch(n){return"function"==typeof e&&e(),!1}return slimstat_data_with_client_info=t+"&sw="+screen.width+"&sh="+screen.height+"&bw="+window.innerWidth+"&bh="+window.innerHeight+"&sl="+SlimStat.get_server_latency()+"&pp="+SlimStat.get_page_performance()+"&pl="+SlimStat.detect_plugins(),request?(request.open("POST",SlimStatParams.ajaxurl,a),request.setRequestHeader("Content-type","application/x-www-form-urlencoded"),request.send(slimstat_data_with_client_info),a?request.onreadystatechange=function(){4==request.readyState&&("undefined"==typeof SlimStatParams.id?(parsed_id=parseInt(request.responseText),!isNaN(parsed_id)&&parsed_id>0&&(SlimStat._id=request.responseText)):SlimStat._id=SlimStatParams.id,"function"==typeof e&&e())}:("undefined"==typeof SlimStatParams.id?(parsed_id=parseInt(request.responseText),!isNaN(parsed_id)&&parsed_id>0&&(SlimStat._id=request.responseText)):SlimStat._id=SlimStatParams.id,"function"==typeof e&&e()),!0):!1},ss_track:function(t,e,a,n,i){if(t=t?t:window.event,type="undefined"==typeof e?0:parseInt(e),note_array=[],"undefined"==typeof i&&(i=!0),parsed_id=parseInt(SlimStat._id),isNaN(parsed_id)||parsed_id<=0)return"function"==typeof n&&n(),!1;if(node="undefined"!=typeof t.target?t.target:"undefined"!=typeof t.srcElement?t.srcElement:!1,!node)return"function"==typeof n&&n(),!1;switch(3==node.nodeType&&(node=node.parentNode),parent_node=node.parentNode,resource_url="",node.nodeName){case"FORM":"undefined"!=typeof node.action&&node.action&&(resource_url=node.action);break;case"INPUT":for(;"undefined"!=typeof parent_node&&"FORM"!=parent_node.nodeName&&"BODY"!=parent_node.nodeName;)parent_node=parent_node.parentNode;if("undefined"!=typeof parent_node.action&&parent_node.action){resource_url=parent_node.action;break}default:if("A"!=node.nodeName)for(;"undefined"!=typeof node.parentNode&&null!=node.parentNode&&"A"!=node.nodeName&&"BODY"!=node.nodeName;)node=node.parentNode;"undefined"!=typeof node.hash&&node.hash&&node.hostname==location.hostname?resource_url=node.hash:"undefined"!=typeof node.href&&(resource_url=node.href),"function"==typeof node.getAttribute&&("undefined"!=typeof node.getAttribute("title")&&node.getAttribute("title")&&note_array.push("Title:"+node.getAttribute("title")),"undefined"!=typeof node.getAttribute("id")&&node.getAttribute("id")&&note_array.push("ID:"+node.getAttribute("id")))}return pos_x=-1,pos_y=-1,position="","undefined"!=typeof t.pageX&&"undefined"!=typeof t.pageY?(pos_x=t.pageX,pos_y=t.pageY):"undefined"!=typeof t.clientX&&"undefined"!=typeof t.clientY&&"undefined"!=typeof document.body.scrollLeft&&"undefined"!=typeof document.documentElement.scrollLeft&&"undefined"!=typeof document.body.scrollTop&&"undefined"!=typeof document.documentElement.scrollTop&&(pos_x=t.clientX+document.body.scrollLeft+document.documentElement.scrollLeft,pos_y=t.clientY+document.body.scrollTop+document.documentElement.scrollTop),pos_x>0&&pos_y>0&&(position=pos_x+","+pos_y),event_description=t.type,"keypress"==t.type?event_description+="; keypress:"+String.fromCharCode(parseInt(t.which)):"click"==t.type&&(event_description+="; which:"+t.which),"undefined"!=typeof a&&a&&note_array.push(a),note_string=SlimStat._base64_encode(note_array.join(", ")),requested_op="add",1==type?resource_url=resource_url.substring(resource_url.indexOf(location.hostname)+location.hostname.length):(0==type||2==type)&&(requested_op="update"),SlimStat.send_to_server("action=slimtrack&op="+requested_op+"&id="+SlimStat._id+"&ty="+type+"&ref="+SlimStat._base64_encode(document.referrer)+"&res="+SlimStat._base64_encode(resource_url)+"&pos="+position+"&des="+SlimStat._base64_encode(event_description)+"&no="+note_string,n,i),!0},add_event:function(t,e,a){t&&t.addEventListener?t.addEventListener(e,a,!1):t&&t.attachEvent?(t["e"+e+a]=a,t[e+a]=function(){t["e"+e+a](window.event)},t.attachEvent("on"+e,t[e+a])):t["on"+e]=t["e"+e+a]},event_fire:function(t,e){document.createEvent?(new_event=document.createEvent("MouseEvents"),new_event.initEvent(e.type,!0,!1,document.defaultView,e.button),t.dispatchEvent(new_event)):document.createEventObject&&(new_event=document.createEventObject(),t.fireEvent("on"+e.type,new_event))},in_array:function(t,e){for(var a=0;a<e.length;a++)if(e[a].trim()==t)return!0;return!1},in_array_substring:function(t,e){for(var a=0;a<e.length;a++)if(-1!=t.indexOf(e[a].trim()))return!0;return!1}};SlimStat.add_event(window,"load",function(){if("undefined"==typeof SlimStatParams.disable_outbound_tracking){all_links=document.getElementsByTagName("a");for(var t="undefined"!=typeof SlimStatParams.extensions_to_track&&SlimStatParams.extensions_to_track?SlimStatParams.extensions_to_track.split(","):[],e="undefined"!=typeof SlimStatParams.outbound_classes_rel_href_to_ignore&&SlimStatParams.outbound_classes_rel_href_to_ignore?SlimStatParams.outbound_classes_rel_href_to_ignore.split(","):[],a="undefined"!=typeof SlimStatParams.outbound_classes_rel_href_to_not_track&&SlimStatParams.outbound_classes_rel_href_to_not_track?SlimStatParams.outbound_classes_rel_href_to_not_track.split(","):[],n=0;n<all_links.length;n++){var i=all_links[n];if(i.setAttribute("data-slimstat-clicked","false"),i.setAttribute("data-slimstat-type",!i.href||i.hostname!=location.hostname&&-1!=i.href.indexOf("://")?0:2),i.setAttribute("data-slimstat-tracking","true"),i.setAttribute("data-slimstat-async","undefined"!=typeof SlimStatParams.async_tracker&&"false"!=SlimStatParams.async_tracker?"true":"false"),i.setAttribute("data-slimstat-callback","false"==i.getAttribute("data-slimstat-async")?"true":"false"),2!=i.getAttribute("data-slimstat-type")||"undefined"!=typeof SlimStatParams.track_internal_links&&"false"!=SlimStatParams.track_internal_links||i.setAttribute("data-slimstat-tracking","false"),"true"==i.getAttribute("data-slimstat-tracking")&&(e.length>0||a.length>0)){classes_current_link="undefined"!=typeof i.className&&i.className?i.className.split(" "):[];for(var r=0;r<classes_current_link.length;r++)if(SlimStat.in_array_substring(classes_current_link[r],e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(classes_current_link[r],a)){i.setAttribute("data-slimstat-tracking","false");break}}"true"==i.getAttribute("data-slimstat-tracking")&&"undefined"!=typeof i.attributes.rel&&i.attributes.rel.value&&(SlimStat.in_array_substring(i.attributes.rel.value,e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(i.attributes.rel.value,a)&&i.setAttribute("data-slimstat-tracking","false")),"true"==i.getAttribute("data-slimstat-tracking")&&"undefined"!=typeof i.href&&i.href&&(SlimStat.in_array_substring(i.href,e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(i.href,a)&&i.setAttribute("data-slimstat-tracking","false")),extension_current_link=i.pathname.split(".").pop().replace(/[\/\-]/g,""),t.length>0&&2==i.getAttribute("data-slimstat-type")&&SlimStat.in_array(extension_current_link,t)&&(i.setAttribute("data-slimstat-tracking","true"),i.setAttribute("data-slimstat-type",1)),"true"==i.getAttribute("data-slimstat-tracking")&&i.target&&!i.target.match(/^_(self|parent|top)$/i)&&(i.setAttribute("data-slimstat-callback","false"),i.setAttribute("data-slimstat-async","true")),"false"==i.getAttribute("data-slimstat-tracking")&&i.setAttribute("data-slimstat-callback","false"),SlimStat.add_event(i,"click",function(t){if("true"==this.getAttribute("data-slimstat-tracking")&&"false"==this.getAttribute("data-slimstat-clicked")){if("true"==this.getAttribute("data-slimstat-callback"))return this.setAttribute("data-slimstat-clicked","true"),function(t,e){SlimStat.ss_track(e,t.getAttribute("data-slimstat-type"),"",function(){SlimStat.event_fire(t,e)},"true"==t.getAttribute("data-slimstat-async")||"false"==t.getAttribute("data-slimstat-callback"))}(this,t),!1;SlimStat.ss_track(t,this.getAttribute("data-slimstat-type"),"",function(){},"true"==this.getAttribute("data-slimstat-async")||"false"==this.getAttribute("data-slimstat-callback"))}})}}});var slimstat_data="action=slimtrack";"undefined"!=typeof SlimStatParams.id&&parseInt(SlimStatParams.id)>0?slimstat_data+="&op=update&id="+SlimStatParams.id:"undefined"!=typeof SlimStatParams.ci?slimstat_data+="&op=add&id="+SlimStatParams.ci+"&ref="+SlimStat._base64_encode(document.referrer)+"&res="+SlimStat._base64_encode(window.location.href):slimstat_data="",slimstat_data.length>0&&SlimStat.add_event(window,"load",function(){setTimeout(function(){SlimStat.send_to_server(slimstat_data)},0)}),"function"!=typeof String.prototype.trim&&(String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")});
wp-slimstat.php CHANGED
@@ -3,20 +3,19 @@
3
  Plugin Name: WP Slimstat Analytics
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
- Version: 4.3.2.1
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
10
  Domain Path: /languages
11
  */
12
 
13
-
14
  if ( !empty( wp_slimstat::$options ) ) {
15
  return true;
16
  }
17
 
18
  class wp_slimstat {
19
- public static $version = '4.3.2.1';
20
  public static $options = array();
21
 
22
  public static $wpdb = '';
@@ -151,7 +150,7 @@ class wp_slimstat {
151
  }
152
 
153
  if ( self::$data_js[ 'op' ] == 'add' ) {
154
- self::slimtrack( 3212 );
155
  }
156
  else{
157
  // Update an existing pageview with client-based information (resolution, plugins installed, etc)
@@ -225,11 +224,6 @@ class wp_slimstat {
225
  * Core tracking functionality
226
  */
227
  public static function slimtrack( $_argument = '' ) {
228
- // Do not track requests to admin-ajax.php itself, unless the function is being called by slimtrack_ajax
229
- if ( defined( 'DOING_AJAX' ) && DOING_AJAX && $_argument != 3212 ) {
230
- return $_argument;
231
- }
232
-
233
  self::toggle_date_i18n_filters( false );
234
  self::$stat[ 'dt' ] = date_i18n( 'U' );
235
  self::$stat[ 'notes' ] = array();
@@ -313,7 +307,6 @@ class wp_slimstat {
313
  }
314
  }
315
  }
316
-
317
  }
318
 
319
  self::$stat = self::$stat + $content_info;
3
  Plugin Name: WP Slimstat Analytics
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
+ Version: 4.3.2.2
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
10
  Domain Path: /languages
11
  */
12
 
 
13
  if ( !empty( wp_slimstat::$options ) ) {
14
  return true;
15
  }
16
 
17
  class wp_slimstat {
18
+ public static $version = '4.3.2.2';
19
  public static $options = array();
20
 
21
  public static $wpdb = '';
150
  }
151
 
152
  if ( self::$data_js[ 'op' ] == 'add' ) {
153
+ self::slimtrack();
154
  }
155
  else{
156
  // Update an existing pageview with client-based information (resolution, plugins installed, etc)
224
  * Core tracking functionality
225
  */
226
  public static function slimtrack( $_argument = '' ) {
 
 
 
 
 
227
  self::toggle_date_i18n_filters( false );
228
  self::$stat[ 'dt' ] = date_i18n( 'U' );
229
  self::$stat[ 'notes' ] = array();
307
  }
308
  }
309
  }
 
310
  }
311
 
312
  self::$stat = self::$stat + $content_info;