WP Statistics - Version 9.6

Version Description

Have you updated your database indexes and search table? If not please go to Statistics->Optimization->Database after you have installed the update and run the updates.

Download this release

Release Info

Developer GregRoss
Plugin Icon 128x128 WP Statistics
Version 9.6
Comparing to
See all releases

Code changes from version 9.5.3 to 9.6

Files changed (71) hide show
  1. assets/images/ask.png +0 -0
  2. assets/images/donate/donate.png +0 -0
  3. assets/images/donate/tdCflg.png +0 -0
  4. dashboard.php +1 -3
  5. includes/classes/hits.geoip.class.php +2 -2
  6. includes/functions/export.php +8 -11
  7. includes/functions/functions.php +1 -0
  8. includes/functions/purge.php +11 -0
  9. includes/optimization/tabs/wps-optimization-export.php +0 -1
  10. includes/optimization/wps-optimization.php +34 -14
  11. languages/default.mo +0 -0
  12. languages/default.po +173 -139
  13. languages/wp-statistics-da.po +186 -149
  14. languages/wp_statistics-ar.mo +0 -0
  15. languages/wp_statistics-ar.po +188 -151
  16. languages/wp_statistics-bg_BG.mo +0 -0
  17. languages/wp_statistics-bg_BG.po +186 -149
  18. languages/wp_statistics-bn_BD.po +186 -149
  19. languages/wp_statistics-ckb.mo +0 -0
  20. languages/wp_statistics-ckb.po +186 -149
  21. languages/wp_statistics-cs.mo +0 -0
  22. languages/wp_statistics-cs.po +186 -149
  23. languages/wp_statistics-de_DE.po +186 -149
  24. languages/wp_statistics-eo.po +186 -149
  25. languages/wp_statistics-es_ES.mo +0 -0
  26. languages/wp_statistics-es_ES.po +284 -247
  27. languages/wp_statistics-fa_IR.mo +0 -0
  28. languages/wp_statistics-fa_IR.po +311 -274
  29. languages/wp_statistics-fr_FR.mo +0 -0
  30. languages/wp_statistics-fr_FR.po +198 -161
  31. languages/wp_statistics-hu_HU.mo +0 -0
  32. languages/wp_statistics-hu_HU.po +186 -149
  33. languages/wp_statistics-id_ID.mo +0 -0
  34. languages/wp_statistics-id_ID.po +186 -149
  35. languages/wp_statistics-it_IT.mo +0 -0
  36. languages/wp_statistics-it_IT.po +186 -149
  37. languages/wp_statistics-ja.mo +0 -0
  38. languages/wp_statistics-ja.po +186 -149
  39. languages/wp_statistics-nl_NL.mo +0 -0
  40. languages/wp_statistics-nl_NL.po +186 -149
  41. languages/wp_statistics-pl_PL.mo +0 -0
  42. languages/wp_statistics-pl_PL.po +187 -150
  43. languages/wp_statistics-pt_BR.mo +0 -0
  44. languages/wp_statistics-pt_BR.po +186 -149
  45. languages/wp_statistics-ro_RO.mo +0 -0
  46. languages/wp_statistics-ro_RO.po +186 -149
  47. languages/wp_statistics-ru_RU.mo +0 -0
  48. languages/wp_statistics-ru_RU.po +186 -149
  49. languages/wp_statistics-ru_UA.po +186 -149
  50. languages/wp_statistics-sk_SK.mo +0 -0
  51. languages/wp_statistics-sk_SK.po +206 -169
  52. languages/wp_statistics-sr_RS.mo +0 -0
  53. languages/wp_statistics-sr_RS.po +186 -149
  54. languages/wp_statistics-sv_SE.mo +0 -0
  55. languages/wp_statistics-sv_SE.po +194 -157
  56. languages/wp_statistics-tr_TR.mo +0 -0
  57. languages/wp_statistics-tr_TR.po +186 -149
  58. languages/wp_statistics-uk.mo +0 -0
  59. languages/wp_statistics-uk.po +187 -150
  60. languages/wp_statistics-vi.mo +0 -0
  61. languages/wp_statistics-vi.po +186 -149
  62. languages/wp_statistics-zh_CN.mo +0 -0
  63. languages/wp_statistics-zh_CN.po +186 -149
  64. languages/wp_statistics-zh_TW.mo +0 -0
  65. languages/wp_statistics-zh_TW.po +186 -149
  66. manual/WP Statistics Admin Manual.html +48 -16
  67. manual/WP Statistics Admin Manual.odt +0 -0
  68. readme.txt +25 -27
  69. shortcode.php +13 -4
  70. wp-statistics.php +42 -16
  71. wps-install.php +23 -1
assets/images/ask.png ADDED
Binary file
assets/images/donate/donate.png DELETED
Binary file
assets/images/donate/tdCflg.png DELETED
Binary file
dashboard.php CHANGED
@@ -262,9 +262,7 @@
262
  // Include the hits chart widget, we're going to display the last 10 days only as the WordPress columns are kind of small to do much else.
263
  include_once( dirname( __FILE__ ) . "/includes/log/widgets/referring.php");
264
 
265
- if( sizeof( $result ) > 0 ) {
266
- wp_statistics_generate_referring_postbox_content();
267
- }
268
  }
269
 
270
  function wp_statistics_search_widget() {
262
  // Include the hits chart widget, we're going to display the last 10 days only as the WordPress columns are kind of small to do much else.
263
  include_once( dirname( __FILE__ ) . "/includes/log/widgets/referring.php");
264
 
265
+ wp_statistics_generate_referring_postbox_content();
 
 
266
  }
267
 
268
  function wp_statistics_search_widget() {
includes/classes/hits.geoip.class.php CHANGED
@@ -48,8 +48,8 @@
48
  // Check to see if we are excluded by the GeoIP rules.
49
  if( !$this->exclusion_match ) {
50
  // Grab the excluded/included countries lists, force the country codes to be in upper case to match what the GeoIP code uses.
51
- $excluded_countries = explode( "\n", strtoupper($this->get_option('excluded_countries') ) );
52
- $included_countries_string = trim( strtoupper($this->get_option('included_countries') ) );
53
 
54
  // We need to be really sure this isn't an empty string or explode will return an array with one entry instead of none.
55
  if( $included_countries_string == '' ) { $included_countries = array(); } else { $included_countries = explode( "\n", $included_countries_string ); }
48
  // Check to see if we are excluded by the GeoIP rules.
49
  if( !$this->exclusion_match ) {
50
  // Grab the excluded/included countries lists, force the country codes to be in upper case to match what the GeoIP code uses.
51
+ $excluded_countries = explode( "\n", strtoupper( str_replace( "\r\n", "\n", $this->get_option('excluded_countries') ) ) );
52
+ $included_countries_string = trim( strtoupper( str_replace( "\r\n", "\n", $this->get_option('included_countries') ) ) );
53
 
54
  // We need to be really sure this isn't an empty string or explode will return an array with one entry instead of none.
55
  if( $included_countries_string == '' ) { $included_countries = array(); } else { $included_countries = explode( "\n", $included_countries_string ); }
includes/functions/export.php CHANGED
@@ -13,7 +13,7 @@
13
  if( !( $table == "useronline" || $table == "visit" || $table == "visitor" || $table == "exclusions" || $table == "pages" || $table == "search" ) ) { $table = FALSE; }
14
 
15
  // Validate the file type the user passed to us.
16
- if( !( $type == "excel" || $type == "xml" || $type == "csv" || $type == "tsv" ) ) { $table = FALSE; }
17
 
18
  if($table && $type) {
19
 
@@ -22,21 +22,18 @@
22
  $file_name = WPS_EXPORT_FILE_NAME . '-' . $WP_Statistics->Current_Date('Y-m-d-H-i');
23
 
24
  switch($type) {
25
- case 'excel':
26
- $exporter = new ExportDataExcel('browser', "{$file_name}.xls");
27
- break;
28
-
29
  case 'xml':
30
  $exporter = new ExportDataExcel('browser', "{$file_name}.xml");
31
- break;
32
-
33
  case 'csv':
34
  $exporter = new ExportDataCSV('browser', "{$file_name}.csv");
35
- break;
36
-
37
  case 'tsv':
38
  $exporter = new ExportDataTSV('browser', "{$file_name}.tsv");
39
- break;
 
40
  }
41
 
42
  $exporter->initialize();
@@ -50,7 +47,7 @@
50
  $result = $wpdb->get_results($query, ARRAY_A);
51
 
52
  // If we didn't get any rows, don't output anything.
53
- if( count( $result < 1 ) ) { echo "No data in table!"; exit; }
54
 
55
  if( $headers ) {
56
  foreach( $result[0] as $key => $col ) { $columns[] = $key; }
13
  if( !( $table == "useronline" || $table == "visit" || $table == "visitor" || $table == "exclusions" || $table == "pages" || $table == "search" ) ) { $table = FALSE; }
14
 
15
  // Validate the file type the user passed to us.
16
+ if( !( $type == "xml" || $type == "csv" || $type == "tsv" ) ) { $table = FALSE; }
17
 
18
  if($table && $type) {
19
 
22
  $file_name = WPS_EXPORT_FILE_NAME . '-' . $WP_Statistics->Current_Date('Y-m-d-H-i');
23
 
24
  switch($type) {
 
 
 
 
25
  case 'xml':
26
  $exporter = new ExportDataExcel('browser', "{$file_name}.xml");
27
+
28
+ break;
29
  case 'csv':
30
  $exporter = new ExportDataCSV('browser', "{$file_name}.csv");
31
+
32
+ break;
33
  case 'tsv':
34
  $exporter = new ExportDataTSV('browser', "{$file_name}.tsv");
35
+
36
+ break;
37
  }
38
 
39
  $exporter->initialize();
47
  $result = $wpdb->get_results($query, ARRAY_A);
48
 
49
  // If we didn't get any rows, don't output anything.
50
+ if( count( $result ) < 1 ) { echo "No data in table!"; exit; }
51
 
52
  if( $headers ) {
53
  foreach( $result[0] as $key => $col ) { $columns[] = $key; }
includes/functions/functions.php CHANGED
@@ -397,6 +397,7 @@
397
  GLOBAL $WP_Statistics;
398
 
399
  $default = $engines = array (
 
400
  'baidu' => array( 'name' => 'Baidu', 'translated' => __('Baidu', 'wp_statistics'), 'tag' => 'baidu', 'sqlpattern' => '%baidu.com%', 'regexpattern' => 'baidu\.com', 'querykey' => 'wd', 'image' => 'baidu.png' ),
401
  'bing' => array( 'name' => 'Bing', 'translated' => __('Bing', 'wp_statistics'), 'tag' => 'bing', 'sqlpattern' => '%bing.com%', 'regexpattern' => 'bing\.com', 'querykey' => 'q', 'image' => 'bing.png' ),
402
  'clearch' => array( 'name' => 'clearch.org', 'translated' => __('clearch.org', 'wp_statistics'), 'tag' => 'clearch', 'sqlpattern' => '%clearch.org%', 'regexpattern' => 'clearch\.org', 'querykey' => 'q', 'image' => 'clearch.png' ),
397
  GLOBAL $WP_Statistics;
398
 
399
  $default = $engines = array (
400
+ 'ask' => array( 'name' => 'Ask.com', 'translated' => __('Ask.com', 'wp_statistics'), 'tag' => 'ask', 'sqlpattern' => '%ask.com%', 'regexpattern' => 'ask\.com', 'querykey' => 'q', 'image' => 'ask.png' ),
401
  'baidu' => array( 'name' => 'Baidu', 'translated' => __('Baidu', 'wp_statistics'), 'tag' => 'baidu', 'sqlpattern' => '%baidu.com%', 'regexpattern' => 'baidu\.com', 'querykey' => 'wd', 'image' => 'baidu.png' ),
402
  'bing' => array( 'name' => 'Bing', 'translated' => __('Bing', 'wp_statistics'), 'tag' => 'bing', 'sqlpattern' => '%bing.com%', 'regexpattern' => 'bing\.com', 'querykey' => 'q', 'image' => 'bing.png' ),
403
  'clearch' => array( 'name' => 'clearch.org', 'translated' => __('clearch.org', 'wp_statistics'), 'tag' => 'clearch', 'sqlpattern' => '%clearch.org%', 'regexpattern' => 'clearch\.org', 'querykey' => 'q', 'image' => 'clearch.png' ),
includes/functions/purge.php CHANGED
@@ -52,6 +52,17 @@
52
  $result_string .= '<br>' . sprintf(__('No records found to purge from %s!', 'wp_statistics'), '<code>' . $table_name . '</code>' );
53
  }
54
 
 
 
 
 
 
 
 
 
 
 
 
55
  // Purge the pages data, this is more complex as we want to save the historical data per page.
56
  $table_name = $wpdb->prefix . 'statistics_pages';
57
  $historical = 0;
52
  $result_string .= '<br>' . sprintf(__('No records found to purge from %s!', 'wp_statistics'), '<code>' . $table_name . '</code>' );
53
  }
54
 
55
+ // Purge the search data.
56
+ $table_name = $wpdb->prefix . 'statistics_search';
57
+
58
+ $result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
59
+
60
+ if($result) {
61
+ $result_string .= '<br>' . sprintf(__('%s data older than %s days purged successfully.', 'wp_statistics'), '<code>' . $table_name . '</code>', '<code>' . $purge_days . '</code>');
62
+ } else {
63
+ $result_string .= '<br>' . sprintf(__('No records found to purge from %s!', 'wp_statistics'), '<code>' . $table_name . '</code>' );
64
+ }
65
+
66
  // Purge the pages data, this is more complex as we want to save the historical data per page.
67
  $table_name = $wpdb->prefix . 'statistics_pages';
68
  $historical = 0;
includes/optimization/tabs/wps-optimization-export.php CHANGED
@@ -35,7 +35,6 @@
35
  <td>
36
  <select id="export-file-type" name="export-file-type">
37
  <option value="0"><?php _e('Please select', 'wp_statistics'); ?></option>
38
- <option value="excel">Excel</option>
39
  <option value="xml">XML</option>
40
  <option value="csv">CSV</option>
41
  <option value="tsv">TSV</option>
35
  <td>
36
  <select id="export-file-type" name="export-file-type">
37
  <option value="0"><?php _e('Please select', 'wp_statistics'); ?></option>
 
38
  <option value="xml">XML</option>
39
  <option value="csv">CSV</option>
40
  <option value="tsv">TSV</option>
includes/optimization/wps-optimization.php CHANGED
@@ -85,6 +85,11 @@
85
 
86
  // We might have an old index left over from 7.1-7.3 so lets make sure to delete it.
87
  $wpdb->query( "DROP INDEX `date_ip` ON {$wp_prefix}statistics_visitor" );
 
 
 
 
 
88
  }
89
  }
90
  }
@@ -121,6 +126,11 @@
121
 
122
  // The table should be ready to be updated now with the new index, so let's do it.
123
  $result = $wpdb->get_results( "ALTER TABLE " . $wp_prefix . 'statistics_visit' . " ADD UNIQUE `unique_date` ( `last_counter` )" );
 
 
 
 
 
124
  }
125
  }
126
  }
@@ -150,25 +160,35 @@
150
  // Make sure we get all the search engines, even the ones the disabled ones.
151
  $se_list = wp_statistics_searchengine_list();
152
  $total = 0;
153
-
 
154
  foreach( $se_list as $key => $se ) {
155
 
156
  $sql = wp_statistics_searchengine_query( $key );
157
- $result = $wpdb->get_results( "SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$sql}" );
158
-
159
- foreach( $result as $row ) {
160
- $parts = parse_url( $row->referred );
161
-
162
- $data['last_counter'] = $row->last_counter;
163
- $data['engine'] = $key;
164
- $data['host'] = $parts['host'];
165
- $data['words'] = $WP_Statistics->Search_Engine_QueryString( $row->referred );
166
- $data['visitor'] = $row->ID;
167
 
168
- if( $data['words'] == 'No search query found!' ) { $data['words'] = ''; }
 
 
 
 
 
 
 
 
 
169
 
170
- $wpdb->insert( $wpdb->prefix . 'statistics_search', $data );
171
- $total++;
 
 
 
 
172
  }
173
  }
174
 
85
 
86
  // We might have an old index left over from 7.1-7.3 so lets make sure to delete it.
87
  $wpdb->query( "DROP INDEX `date_ip` ON {$wp_prefix}statistics_visitor" );
88
+
89
+ // Record in the options that we've done this update.
90
+ $dbupdates = $WP_Statistics->get_option('pending_db_updates');
91
+ $dbupdates['date_ip_agent'] = false;
92
+ $wp_statistics->update_option('pending_db_updates', $dbupdates);
93
  }
94
  }
95
  }
126
 
127
  // The table should be ready to be updated now with the new index, so let's do it.
128
  $result = $wpdb->get_results( "ALTER TABLE " . $wp_prefix . 'statistics_visit' . " ADD UNIQUE `unique_date` ( `last_counter` )" );
129
+
130
+ // Record in the options that we've done this update.
131
+ $dbupdates = $WP_Statistics->get_option('pending_db_updates');
132
+ $dbupdates['unique_date'] = false;
133
+ $wp_statistics->update_option('pending_db_updates', $dbupdates);
134
  }
135
  }
136
  }
160
  // Make sure we get all the search engines, even the ones the disabled ones.
161
  $se_list = wp_statistics_searchengine_list();
162
  $total = 0;
163
+ $limitsize = 10000;
164
+
165
  foreach( $se_list as $key => $se ) {
166
 
167
  $sql = wp_statistics_searchengine_query( $key );
168
+ $rowcount = $wpdb->get_var( "SELECT count(*) FROM `{$wpdb->prefix}statistics_visitor` WHERE {$sql}" );
169
+ $offset = 0;
170
+
171
+ while( $rowcount > 0 ) {
172
+
173
+ $result = $wpdb->get_results( "SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$sql} LIMIT {$offset}, {$limitsize}" );
 
 
 
 
174
 
175
+ foreach( $result as $row ) {
176
+ $parts = parse_url( $row->referred );
177
+
178
+ $data['last_counter'] = $row->last_counter;
179
+ $data['engine'] = $key;
180
+ $data['host'] = $parts['host'];
181
+ $data['words'] = $WP_Statistics->Search_Engine_QueryString( $row->referred );
182
+ $data['visitor'] = $row->ID;
183
+
184
+ if( $data['words'] == 'No search query found!' ) { $data['words'] = ''; }
185
 
186
+ $wpdb->insert( $wpdb->prefix . 'statistics_search', $data );
187
+ $total++;
188
+ }
189
+
190
+ $rowcount -= $limitsize;
191
+ $offset += $limitsize;
192
  }
193
  }
194
 
languages/default.mo CHANGED
Binary file
languages/default.po CHANGED
@@ -2,13 +2,13 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP Statistics 9.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-statistics\n"
7
- "POT-Creation-Date: 2015-08-14 13:53:04+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-08-14 16:27-0400\n"
12
  "Last-Translator: \n"
13
  "Language-Team: \n"
14
  "X-Generator: Poedit 1.8.4\n"
@@ -117,87 +117,91 @@ msgid "Hits in the last 20 days"
117
  msgstr ""
118
 
119
  #: includes/functions/functions.php:400
120
- msgid "Baidu"
121
  msgstr ""
122
 
123
  #: includes/functions/functions.php:401
124
- msgid "Bing"
125
  msgstr ""
126
 
127
  #: includes/functions/functions.php:402
128
- msgid "clearch.org"
129
  msgstr ""
130
 
131
  #: includes/functions/functions.php:403
132
- msgid "DuckDuckGo"
133
  msgstr ""
134
 
135
  #: includes/functions/functions.php:404
 
 
 
 
136
  #: includes/settings/tabs/wps-overview-display.php:128
137
  msgid "Google"
138
  msgstr ""
139
 
140
- #: includes/functions/functions.php:405
141
  msgid "Yahoo!"
142
  msgstr ""
143
 
144
- #: includes/functions/functions.php:406
145
  msgid "Yandex"
146
  msgstr ""
147
 
148
- #: includes/functions/functions.php:931
149
  msgid "10 Days"
150
  msgstr ""
151
 
152
- #: includes/functions/functions.php:931
153
  msgid "20 Days"
154
  msgstr ""
155
 
156
- #: includes/functions/functions.php:931
157
  msgid "30 Days"
158
  msgstr ""
159
 
160
- #: includes/functions/functions.php:931
161
  msgid "2 Months"
162
  msgstr ""
163
 
164
- #: includes/functions/functions.php:931
165
  msgid "3 Months"
166
  msgstr ""
167
 
168
- #: includes/functions/functions.php:931
169
  msgid "6 Months"
170
  msgstr ""
171
 
172
- #: includes/functions/functions.php:931
173
  msgid "9 Months"
174
  msgstr ""
175
 
176
- #: includes/functions/functions.php:931
177
  msgid "1 Year"
178
  msgstr ""
179
 
180
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
181
  msgid "Range"
182
  msgstr ""
183
 
184
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
185
  msgid "MM/DD/YYYY"
186
  msgstr ""
187
 
188
- #: includes/functions/functions.php:981
189
  msgid "to"
190
  msgstr ""
191
 
192
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
193
  msgid "Go"
194
  msgstr ""
195
 
196
- #: includes/functions/functions.php:1019
197
  msgid "%s table data deleted successfully."
198
  msgstr ""
199
 
200
- #: includes/functions/functions.php:1023
201
  msgid "Error, %s not emptied!"
202
  msgstr ""
203
 
@@ -219,21 +223,23 @@ msgstr ""
219
  msgid "No visitors found to purge."
220
  msgstr ""
221
 
222
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
223
  msgid "Database pruned on"
224
  msgstr ""
225
 
226
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
227
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
228
  msgid "%s data older than %s days purged successfully."
229
  msgstr ""
230
 
231
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
232
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
233
  msgid "No records found to purge from %s!"
234
  msgstr ""
235
 
236
- #: includes/functions/purge.php:103
237
  msgid "Please select a value over 30 days."
238
  msgstr ""
239
 
@@ -259,8 +265,8 @@ msgid "Click to toggle"
259
  msgstr ""
260
 
261
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
262
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
263
- #: wp-statistics.php:426
264
  msgid "Browsers"
265
  msgstr ""
266
 
@@ -383,8 +389,8 @@ msgid "Hits Statistics Summary"
383
  msgstr ""
384
 
385
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
386
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
387
- #: wp-statistics.php:428
388
  msgid "Exclusions"
389
  msgstr ""
390
 
@@ -420,7 +426,7 @@ msgstr ""
420
 
421
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
422
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
423
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
424
  msgid "All"
425
  msgstr ""
426
 
@@ -573,7 +579,7 @@ msgstr ""
573
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
574
  #: includes/optimization/tabs/wps-optimization-historical.php:37
575
  #: includes/settings/tabs/wps-general.php:122
576
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
577
  msgid "Visits"
578
  msgstr ""
579
 
@@ -687,8 +693,8 @@ msgid "Time: %s"
687
  msgstr ""
688
 
689
  #: includes/log/widgets/top.visitors.php:31
690
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
691
- #: wp-statistics.php:353 wp-statistics.php:429
692
  msgid "Hits"
693
  msgstr ""
694
 
@@ -730,7 +736,7 @@ msgstr ""
730
 
731
  #: includes/optimization/tabs/wps-optimization-database.php:25
732
  #: includes/optimization/tabs/wps-optimization-updates.php:21
733
- #: wp-statistics.php:351 wp-statistics.php:427
734
  msgid "Countries"
735
  msgstr ""
736
 
@@ -826,7 +832,7 @@ msgid ""
826
  msgstr ""
827
 
828
  #: includes/optimization/tabs/wps-optimization-export.php:8
829
- #: includes/optimization/wps-optimization.php:215
830
  msgid "Export"
831
  msgstr ""
832
 
@@ -835,7 +841,7 @@ msgid "Export from"
835
  msgstr ""
836
 
837
  #: includes/optimization/tabs/wps-optimization-export.php:18
838
- #: includes/optimization/tabs/wps-optimization-export.php:36
839
  #: includes/optimization/tabs/wps-optimization-purging.php:185
840
  #: includes/optimization/tabs/wps-optimization-purging.php:241
841
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -844,11 +850,11 @@ msgstr ""
844
  msgid "Please select"
845
  msgstr ""
846
 
847
- #: includes/optimization/tabs/wps-optimization-export.php:25
848
  msgid "Select the table for the output file."
849
  msgstr ""
850
 
851
- #: includes/optimization/tabs/wps-optimization-export.php:31
852
  msgid "Export To"
853
  msgstr ""
854
 
@@ -880,8 +886,8 @@ msgstr ""
880
 
881
  #: includes/optimization/tabs/wps-optimization-historical.php:26
882
  #: includes/settings/tabs/wps-general.php:138
883
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
884
- #: wp-statistics.php:360 wp-statistics.php:436
885
  msgid "Visitors"
886
  msgstr ""
887
 
@@ -1227,27 +1233,27 @@ msgstr ""
1227
  msgid "Install routine complete."
1228
  msgstr ""
1229
 
1230
- #: includes/optimization/wps-optimization.php:176
1231
  msgid "Search table conversion complete, %d rows added."
1232
  msgstr ""
1233
 
1234
- #: includes/optimization/wps-optimization.php:214
1235
  msgid "Resources/Information"
1236
  msgstr ""
1237
 
1238
- #: includes/optimization/wps-optimization.php:216
1239
  msgid "Purging"
1240
  msgstr ""
1241
 
1242
- #: includes/optimization/wps-optimization.php:217
1243
  msgid "Database"
1244
  msgstr ""
1245
 
1246
- #: includes/optimization/wps-optimization.php:218
1247
  msgid "Updates"
1248
  msgstr ""
1249
 
1250
- #: includes/optimization/wps-optimization.php:219
1251
  msgid "Historical"
1252
  msgstr ""
1253
 
@@ -1255,7 +1261,7 @@ msgstr ""
1255
  msgid "WP Statistics V%s"
1256
  msgstr ""
1257
 
1258
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
1259
  msgid "Donate"
1260
  msgstr ""
1261
 
@@ -1920,7 +1926,7 @@ msgid ""
1920
  "addresses in the future to recover location information if this is enabled."
1921
  msgstr ""
1922
 
1923
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
1924
  msgid "Users Online"
1925
  msgstr ""
1926
 
@@ -1978,8 +1984,8 @@ msgid "For each visit to account for several hits. Currently %s."
1978
  msgstr ""
1979
 
1980
  #: includes/settings/tabs/wps-general.php:177
1981
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
1982
- #: wp-statistics.php:431
1983
  msgid "Pages"
1984
  msgstr ""
1985
 
@@ -2243,22 +2249,22 @@ msgid ""
2243
  msgstr ""
2244
 
2245
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
2246
- #: widget.php:245 wp-statistics.php:536
2247
  msgid "User Online"
2248
  msgstr ""
2249
 
2250
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
2251
- #: widget.php:251
2252
  msgid "Today Visitor"
2253
  msgstr ""
2254
 
2255
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
2256
- #: widget.php:248
2257
  msgid "Today Visit"
2258
  msgstr ""
2259
 
2260
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
2261
- #: widget.php:257
2262
  msgid "Yesterday Visitor"
2263
  msgstr ""
2264
 
@@ -2267,17 +2273,17 @@ msgid "Yesterday Visit"
2267
  msgstr ""
2268
 
2269
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
2270
- #: widget.php:272
2271
  msgid "Total Visitor"
2272
  msgstr ""
2273
 
2274
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
2275
- #: widget.php:269
2276
  msgid "Total Visit"
2277
  msgstr ""
2278
 
2279
  #: includes/settings/tabs/wps-overview-display.php:23
2280
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
2281
  msgid "None"
2282
  msgstr ""
2283
 
@@ -2492,93 +2498,102 @@ msgstr ""
2492
  msgid "Once Every 4 Weeks"
2493
  msgstr ""
2494
 
2495
- #: shortcode.php:130
2496
  msgid "Statistic"
2497
  msgstr ""
2498
 
2499
- #: shortcode.php:133
2500
  msgid "Select the statistic you wish to display."
2501
  msgstr ""
2502
 
2503
- #: shortcode.php:139
2504
  msgid "Page Visits"
2505
  msgstr ""
2506
 
2507
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
2508
  msgid "Searches"
2509
  msgstr ""
2510
 
2511
- #: shortcode.php:141
2512
  msgid "Post Count"
2513
  msgstr ""
2514
 
2515
- #: shortcode.php:142
2516
  msgid "Page Count"
2517
  msgstr ""
2518
 
2519
- #: shortcode.php:143
2520
  msgid "Comment Count"
2521
  msgstr ""
2522
 
2523
- #: shortcode.php:144
2524
  msgid "Spam Count"
2525
  msgstr ""
2526
 
2527
- #: shortcode.php:145
2528
  msgid "User Count"
2529
  msgstr ""
2530
 
2531
- #: shortcode.php:146
2532
  msgid "Post Average"
2533
  msgstr ""
2534
 
2535
- #: shortcode.php:147
2536
  msgid "Comment Average"
2537
  msgstr ""
2538
 
2539
- #: shortcode.php:148
2540
  msgid "User Average"
2541
  msgstr ""
2542
 
2543
- #: shortcode.php:149 widget.php:179 widget.php:322
2544
  msgid "Last Post Date"
2545
  msgstr ""
2546
 
2547
- #: shortcode.php:153
2548
  msgid "Time Frame"
2549
  msgstr ""
2550
 
2551
- #: shortcode.php:156
2552
  msgid ""
2553
  "The time frame to get the statistic for, strtotime() (http://php.net/manual/"
2554
- "en/datetime.formats.php) will be used to calculate it."
 
2555
  msgstr ""
2556
 
2557
- #: shortcode.php:160
2558
  msgid "Search Provider"
2559
  msgstr ""
2560
 
2561
- #: shortcode.php:163
2562
  msgid "The search provider to get statistics on."
2563
  msgstr ""
2564
 
2565
- #: shortcode.php:167
2566
  msgid "Number Format"
2567
  msgstr ""
2568
 
2569
- #: shortcode.php:170
2570
  msgid "The format to display numbers in: i18n, english, none."
2571
  msgstr ""
2572
 
2573
- #: shortcode.php:174
2574
  msgid "English"
2575
  msgstr ""
2576
 
2577
- #: shortcode.php:175
2578
  msgid "International"
2579
  msgstr ""
2580
 
2581
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
 
 
 
 
 
 
 
 
2582
  msgid "Statistics"
2583
  msgstr ""
2584
 
@@ -2586,19 +2601,19 @@ msgstr ""
2586
  msgid "Show site stats in sidebar."
2587
  msgstr ""
2588
 
2589
- #: widget.php:73 widget.php:260
2590
  msgid "Week Visit"
2591
  msgstr ""
2592
 
2593
- #: widget.php:80 widget.php:263
2594
  msgid "Month Visit"
2595
  msgstr ""
2596
 
2597
- #: widget.php:87 widget.php:266
2598
  msgid "Years Visit"
2599
  msgstr ""
2600
 
2601
- #: widget.php:108 widget.php:275
2602
  msgid "Total Page Views"
2603
  msgstr ""
2604
 
@@ -2606,55 +2621,55 @@ msgstr ""
2606
  msgid "Search Engine referred"
2607
  msgstr ""
2608
 
2609
- #: widget.php:123 widget.php:298
2610
  msgid "Total Posts"
2611
  msgstr ""
2612
 
2613
- #: widget.php:130 widget.php:301
2614
  msgid "Total Pages"
2615
  msgstr ""
2616
 
2617
- #: widget.php:137 widget.php:304
2618
  msgid "Total Comments"
2619
  msgstr ""
2620
 
2621
- #: widget.php:144 widget.php:307
2622
  msgid "Total Spams"
2623
  msgstr ""
2624
 
2625
- #: widget.php:151 widget.php:310
2626
  msgid "Total Users"
2627
  msgstr ""
2628
 
2629
- #: widget.php:158 widget.php:313
2630
  msgid "Average Posts"
2631
  msgstr ""
2632
 
2633
- #: widget.php:165 widget.php:316
2634
  msgid "Average Comments"
2635
  msgstr ""
2636
 
2637
- #: widget.php:172 widget.php:319
2638
  msgid "Average Users"
2639
  msgstr ""
2640
 
2641
- #: widget.php:238
2642
  msgid "Name"
2643
  msgstr ""
2644
 
2645
- #: widget.php:242
2646
  msgid "Items"
2647
  msgstr ""
2648
 
2649
- #: widget.php:254 wp-statistics.php:561
2650
  msgid "Yesterday visit"
2651
  msgstr ""
2652
 
2653
- #: widget.php:278
2654
  msgid "Search Engine Referred"
2655
  msgstr ""
2656
 
2657
- #: widget.php:281
2658
  msgid "Select type of search engine"
2659
  msgstr ""
2660
 
@@ -2686,130 +2701,149 @@ msgstr ""
2686
  msgid "WP Statistics has been removed, please disable and delete it."
2687
  msgstr ""
2688
 
2689
- #: wp-statistics.php:137
2690
- msgid ""
2691
- "Online user tracking in WP Statistics is not enabled, please go to %s and "
2692
- "enable it."
2693
  msgstr ""
2694
 
2695
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
2696
- #: wp-statistics.php:146
2697
- msgid "setting page"
2698
  msgstr ""
2699
 
2700
- #: wp-statistics.php:140
2701
- msgid ""
2702
- "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
2703
  msgstr ""
2704
 
2705
- #: wp-statistics.php:143
 
 
 
 
2706
  msgid ""
2707
- "Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
2708
- "it."
2709
  msgstr ""
2710
 
2711
- #: wp-statistics.php:146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2712
  msgid ""
2713
- "GeoIP collection is not active, please go to %s and enable this feature."
2714
  msgstr ""
2715
 
2716
- #: wp-statistics.php:241
2717
  msgid "WP Statistics %s installed on"
2718
  msgstr ""
2719
 
2720
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
2721
  msgid "Settings"
2722
  msgstr ""
2723
 
2724
- #: wp-statistics.php:265
2725
  msgid "Click here to visit the plugin on WordPress.org"
2726
  msgstr ""
2727
 
2728
- #: wp-statistics.php:265
2729
  msgid "Visit WordPress.org page"
2730
  msgstr ""
2731
 
2732
- #: wp-statistics.php:268
2733
  msgid "Click here to rate and review this plugin on WordPress.org"
2734
  msgstr ""
2735
 
2736
- #: wp-statistics.php:268
2737
  msgid "Rate this plugin"
2738
  msgstr ""
2739
 
2740
- #: wp-statistics.php:312
2741
  msgid "WP Statistics - Hits"
2742
  msgstr ""
2743
 
2744
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
2745
  msgid "Overview"
2746
  msgstr ""
2747
 
2748
- #: wp-statistics.php:354 wp-statistics.php:430
2749
  msgid "Online"
2750
  msgstr ""
2751
 
2752
- #: wp-statistics.php:356 wp-statistics.php:432
2753
  msgid "Referrers"
2754
  msgstr ""
2755
 
2756
- #: wp-statistics.php:358 wp-statistics.php:434
2757
  msgid "Search Words"
2758
  msgstr ""
2759
 
2760
- #: wp-statistics.php:359 wp-statistics.php:435
2761
  msgid "Top Visitors Today"
2762
  msgstr ""
2763
 
2764
- #: wp-statistics.php:364 wp-statistics.php:437
2765
  msgid "Optimization"
2766
  msgstr ""
2767
 
2768
- #: wp-statistics.php:370 wp-statistics.php:401
2769
  msgid "Manual"
2770
  msgstr ""
2771
 
2772
- #: wp-statistics.php:416
2773
  msgid "Site"
2774
  msgstr ""
2775
 
2776
- #: wp-statistics.php:417
2777
  msgid "Options"
2778
  msgstr ""
2779
 
2780
- #: wp-statistics.php:543
2781
  msgid "Today visitor"
2782
  msgstr ""
2783
 
2784
- #: wp-statistics.php:549
2785
  msgid "Today visit"
2786
  msgstr ""
2787
 
2788
- #: wp-statistics.php:555
2789
  msgid "Yesterday visitor"
2790
  msgstr ""
2791
 
2792
- #: wp-statistics.php:567
2793
  msgid "View Stats"
2794
  msgstr ""
2795
 
2796
- #: wp-statistics.php:591
2797
  msgid "Download ODF file"
2798
  msgstr ""
2799
 
2800
- #: wp-statistics.php:592
2801
  msgid "Download HTML file"
2802
  msgstr ""
2803
 
2804
- #: wp-statistics.php:596
2805
  msgid "Manual file not found."
2806
  msgstr ""
2807
 
2808
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
2809
  msgid "You do not have sufficient permissions to access this page."
2810
  msgstr ""
2811
 
2812
- #: wp-statistics.php:690
2813
  msgid ""
2814
  "The following plugin table(s) do not exist in the database, please re-run "
2815
  "the %s install routine %s: "
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP Statistics 9.5.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-statistics\n"
7
+ "POT-Creation-Date: 2015-08-28 13:02:14+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-08-28 09:13-0400\n"
12
  "Last-Translator: \n"
13
  "Language-Team: \n"
14
  "X-Generator: Poedit 1.8.4\n"
117
  msgstr ""
118
 
119
  #: includes/functions/functions.php:400
120
+ msgid "Ask.com"
121
  msgstr ""
122
 
123
  #: includes/functions/functions.php:401
124
+ msgid "Baidu"
125
  msgstr ""
126
 
127
  #: includes/functions/functions.php:402
128
+ msgid "Bing"
129
  msgstr ""
130
 
131
  #: includes/functions/functions.php:403
132
+ msgid "clearch.org"
133
  msgstr ""
134
 
135
  #: includes/functions/functions.php:404
136
+ msgid "DuckDuckGo"
137
+ msgstr ""
138
+
139
+ #: includes/functions/functions.php:405
140
  #: includes/settings/tabs/wps-overview-display.php:128
141
  msgid "Google"
142
  msgstr ""
143
 
144
+ #: includes/functions/functions.php:406
145
  msgid "Yahoo!"
146
  msgstr ""
147
 
148
+ #: includes/functions/functions.php:407
149
  msgid "Yandex"
150
  msgstr ""
151
 
152
+ #: includes/functions/functions.php:932
153
  msgid "10 Days"
154
  msgstr ""
155
 
156
+ #: includes/functions/functions.php:932
157
  msgid "20 Days"
158
  msgstr ""
159
 
160
+ #: includes/functions/functions.php:932
161
  msgid "30 Days"
162
  msgstr ""
163
 
164
+ #: includes/functions/functions.php:932
165
  msgid "2 Months"
166
  msgstr ""
167
 
168
+ #: includes/functions/functions.php:932
169
  msgid "3 Months"
170
  msgstr ""
171
 
172
+ #: includes/functions/functions.php:932
173
  msgid "6 Months"
174
  msgstr ""
175
 
176
+ #: includes/functions/functions.php:932
177
  msgid "9 Months"
178
  msgstr ""
179
 
180
+ #: includes/functions/functions.php:932
181
  msgid "1 Year"
182
  msgstr ""
183
 
184
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
185
  msgid "Range"
186
  msgstr ""
187
 
188
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
189
  msgid "MM/DD/YYYY"
190
  msgstr ""
191
 
192
+ #: includes/functions/functions.php:982
193
  msgid "to"
194
  msgstr ""
195
 
196
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
197
  msgid "Go"
198
  msgstr ""
199
 
200
+ #: includes/functions/functions.php:1020
201
  msgid "%s table data deleted successfully."
202
  msgstr ""
203
 
204
+ #: includes/functions/functions.php:1024
205
  msgid "Error, %s not emptied!"
206
  msgstr ""
207
 
223
  msgid "No visitors found to purge."
224
  msgstr ""
225
 
226
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
227
  msgid "Database pruned on"
228
  msgstr ""
229
 
230
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
231
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
232
+ #: includes/functions/purge.php:94
233
  msgid "%s data older than %s days purged successfully."
234
  msgstr ""
235
 
236
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
237
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
238
+ #: includes/functions/purge.php:96
239
  msgid "No records found to purge from %s!"
240
  msgstr ""
241
 
242
+ #: includes/functions/purge.php:114
243
  msgid "Please select a value over 30 days."
244
  msgstr ""
245
 
265
  msgstr ""
266
 
267
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
268
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
269
+ #: wp-statistics.php:452
270
  msgid "Browsers"
271
  msgstr ""
272
 
389
  msgstr ""
390
 
391
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
392
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
393
+ #: wp-statistics.php:454
394
  msgid "Exclusions"
395
  msgstr ""
396
 
426
 
427
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
428
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
429
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
430
  msgid "All"
431
  msgstr ""
432
 
579
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
580
  #: includes/optimization/tabs/wps-optimization-historical.php:37
581
  #: includes/settings/tabs/wps-general.php:122
582
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
583
  msgid "Visits"
584
  msgstr ""
585
 
693
  msgstr ""
694
 
695
  #: includes/log/widgets/top.visitors.php:31
696
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
697
+ #: wp-statistics.php:379 wp-statistics.php:455
698
  msgid "Hits"
699
  msgstr ""
700
 
736
 
737
  #: includes/optimization/tabs/wps-optimization-database.php:25
738
  #: includes/optimization/tabs/wps-optimization-updates.php:21
739
+ #: wp-statistics.php:377 wp-statistics.php:453
740
  msgid "Countries"
741
  msgstr ""
742
 
832
  msgstr ""
833
 
834
  #: includes/optimization/tabs/wps-optimization-export.php:8
835
+ #: includes/optimization/wps-optimization.php:235
836
  msgid "Export"
837
  msgstr ""
838
 
841
  msgstr ""
842
 
843
  #: includes/optimization/tabs/wps-optimization-export.php:18
844
+ #: includes/optimization/tabs/wps-optimization-export.php:37
845
  #: includes/optimization/tabs/wps-optimization-purging.php:185
846
  #: includes/optimization/tabs/wps-optimization-purging.php:241
847
  #: includes/optimization/tabs/wps-optimization-purging.php:265
850
  msgid "Please select"
851
  msgstr ""
852
 
853
+ #: includes/optimization/tabs/wps-optimization-export.php:26
854
  msgid "Select the table for the output file."
855
  msgstr ""
856
 
857
+ #: includes/optimization/tabs/wps-optimization-export.php:32
858
  msgid "Export To"
859
  msgstr ""
860
 
886
 
887
  #: includes/optimization/tabs/wps-optimization-historical.php:26
888
  #: includes/settings/tabs/wps-general.php:138
889
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
890
+ #: wp-statistics.php:386 wp-statistics.php:462
891
  msgid "Visitors"
892
  msgstr ""
893
 
1233
  msgid "Install routine complete."
1234
  msgstr ""
1235
 
1236
+ #: includes/optimization/wps-optimization.php:196
1237
  msgid "Search table conversion complete, %d rows added."
1238
  msgstr ""
1239
 
1240
+ #: includes/optimization/wps-optimization.php:234
1241
  msgid "Resources/Information"
1242
  msgstr ""
1243
 
1244
+ #: includes/optimization/wps-optimization.php:236
1245
  msgid "Purging"
1246
  msgstr ""
1247
 
1248
+ #: includes/optimization/wps-optimization.php:237
1249
  msgid "Database"
1250
  msgstr ""
1251
 
1252
+ #: includes/optimization/wps-optimization.php:238
1253
  msgid "Updates"
1254
  msgstr ""
1255
 
1256
+ #: includes/optimization/wps-optimization.php:239
1257
  msgid "Historical"
1258
  msgstr ""
1259
 
1261
  msgid "WP Statistics V%s"
1262
  msgstr ""
1263
 
1264
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
1265
  msgid "Donate"
1266
  msgstr ""
1267
 
1926
  "addresses in the future to recover location information if this is enabled."
1927
  msgstr ""
1928
 
1929
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
1930
  msgid "Users Online"
1931
  msgstr ""
1932
 
1984
  msgstr ""
1985
 
1986
  #: includes/settings/tabs/wps-general.php:177
1987
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
1988
+ #: wp-statistics.php:457
1989
  msgid "Pages"
1990
  msgstr ""
1991
 
2249
  msgstr ""
2250
 
2251
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
2252
+ #: widget.php:247 wp-statistics.php:562
2253
  msgid "User Online"
2254
  msgstr ""
2255
 
2256
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
2257
+ #: widget.php:253
2258
  msgid "Today Visitor"
2259
  msgstr ""
2260
 
2261
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
2262
+ #: widget.php:250
2263
  msgid "Today Visit"
2264
  msgstr ""
2265
 
2266
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
2267
+ #: widget.php:259
2268
  msgid "Yesterday Visitor"
2269
  msgstr ""
2270
 
2273
  msgstr ""
2274
 
2275
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
2276
+ #: widget.php:274
2277
  msgid "Total Visitor"
2278
  msgstr ""
2279
 
2280
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
2281
+ #: widget.php:271
2282
  msgid "Total Visit"
2283
  msgstr ""
2284
 
2285
  #: includes/settings/tabs/wps-overview-display.php:23
2286
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
2287
  msgid "None"
2288
  msgstr ""
2289
 
2498
  msgid "Once Every 4 Weeks"
2499
  msgstr ""
2500
 
2501
+ #: shortcode.php:132
2502
  msgid "Statistic"
2503
  msgstr ""
2504
 
2505
+ #: shortcode.php:135
2506
  msgid "Select the statistic you wish to display."
2507
  msgstr ""
2508
 
2509
+ #: shortcode.php:141
2510
  msgid "Page Visits"
2511
  msgstr ""
2512
 
2513
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
2514
  msgid "Searches"
2515
  msgstr ""
2516
 
2517
+ #: shortcode.php:143
2518
  msgid "Post Count"
2519
  msgstr ""
2520
 
2521
+ #: shortcode.php:144
2522
  msgid "Page Count"
2523
  msgstr ""
2524
 
2525
+ #: shortcode.php:145
2526
  msgid "Comment Count"
2527
  msgstr ""
2528
 
2529
+ #: shortcode.php:146
2530
  msgid "Spam Count"
2531
  msgstr ""
2532
 
2533
+ #: shortcode.php:147
2534
  msgid "User Count"
2535
  msgstr ""
2536
 
2537
+ #: shortcode.php:148
2538
  msgid "Post Average"
2539
  msgstr ""
2540
 
2541
+ #: shortcode.php:149
2542
  msgid "Comment Average"
2543
  msgstr ""
2544
 
2545
+ #: shortcode.php:150
2546
  msgid "User Average"
2547
  msgstr ""
2548
 
2549
+ #: shortcode.php:151 widget.php:179 widget.php:324
2550
  msgid "Last Post Date"
2551
  msgstr ""
2552
 
2553
+ #: shortcode.php:155
2554
  msgid "Time Frame"
2555
  msgstr ""
2556
 
2557
+ #: shortcode.php:158
2558
  msgid ""
2559
  "The time frame to get the statistic for, strtotime() (http://php.net/manual/"
2560
+ "en/datetime.formats.php) will be used to calculate it. Use \"total\" to get "
2561
+ "all recorded dates."
2562
  msgstr ""
2563
 
2564
+ #: shortcode.php:162
2565
  msgid "Search Provider"
2566
  msgstr ""
2567
 
2568
+ #: shortcode.php:165
2569
  msgid "The search provider to get statistics on."
2570
  msgstr ""
2571
 
2572
+ #: shortcode.php:169
2573
  msgid "Number Format"
2574
  msgstr ""
2575
 
2576
+ #: shortcode.php:172
2577
  msgid "The format to display numbers in: i18n, english, none."
2578
  msgstr ""
2579
 
2580
+ #: shortcode.php:176
2581
  msgid "English"
2582
  msgstr ""
2583
 
2584
+ #: shortcode.php:177
2585
  msgid "International"
2586
  msgstr ""
2587
 
2588
+ #: shortcode.php:181
2589
+ msgid "Post/Page ID"
2590
+ msgstr ""
2591
+
2592
+ #: shortcode.php:184
2593
+ msgid "The post/page id to get page statistics on."
2594
+ msgstr ""
2595
+
2596
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
2597
  msgid "Statistics"
2598
  msgstr ""
2599
 
2601
  msgid "Show site stats in sidebar."
2602
  msgstr ""
2603
 
2604
+ #: widget.php:73 widget.php:262
2605
  msgid "Week Visit"
2606
  msgstr ""
2607
 
2608
+ #: widget.php:80 widget.php:265
2609
  msgid "Month Visit"
2610
  msgstr ""
2611
 
2612
+ #: widget.php:87 widget.php:268
2613
  msgid "Years Visit"
2614
  msgstr ""
2615
 
2616
+ #: widget.php:108 widget.php:277
2617
  msgid "Total Page Views"
2618
  msgstr ""
2619
 
2621
  msgid "Search Engine referred"
2622
  msgstr ""
2623
 
2624
+ #: widget.php:123 widget.php:300
2625
  msgid "Total Posts"
2626
  msgstr ""
2627
 
2628
+ #: widget.php:130 widget.php:303
2629
  msgid "Total Pages"
2630
  msgstr ""
2631
 
2632
+ #: widget.php:137 widget.php:306
2633
  msgid "Total Comments"
2634
  msgstr ""
2635
 
2636
+ #: widget.php:144 widget.php:309
2637
  msgid "Total Spams"
2638
  msgstr ""
2639
 
2640
+ #: widget.php:151 widget.php:312
2641
  msgid "Total Users"
2642
  msgstr ""
2643
 
2644
+ #: widget.php:158 widget.php:315
2645
  msgid "Average Posts"
2646
  msgstr ""
2647
 
2648
+ #: widget.php:165 widget.php:318
2649
  msgid "Average Comments"
2650
  msgstr ""
2651
 
2652
+ #: widget.php:172 widget.php:321
2653
  msgid "Average Users"
2654
  msgstr ""
2655
 
2656
+ #: widget.php:240
2657
  msgid "Name"
2658
  msgstr ""
2659
 
2660
+ #: widget.php:244
2661
  msgid "Items"
2662
  msgstr ""
2663
 
2664
+ #: widget.php:256 wp-statistics.php:587
2665
  msgid "Yesterday visit"
2666
  msgstr ""
2667
 
2668
+ #: widget.php:280
2669
  msgid "Search Engine Referred"
2670
  msgstr ""
2671
 
2672
+ #: widget.php:283
2673
  msgid "Select type of search engine"
2674
  msgstr ""
2675
 
2701
  msgid "WP Statistics has been removed, please disable and delete it."
2702
  msgstr ""
2703
 
2704
+ #: wp-statistics.php:142
2705
+ msgid "online user tracking"
 
 
2706
  msgstr ""
2707
 
2708
+ #: wp-statistics.php:143
2709
+ msgid "hit tracking"
 
2710
  msgstr ""
2711
 
2712
+ #: wp-statistics.php:144
2713
+ msgid "visitor tracking"
 
2714
  msgstr ""
2715
 
2716
+ #: wp-statistics.php:145
2717
+ msgid "geoip collection"
2718
+ msgstr ""
2719
+
2720
+ #: wp-statistics.php:148
2721
  msgid ""
2722
+ "The following features are disabled, please go to %s and enable them: %s"
 
2723
  msgstr ""
2724
 
2725
+ #: wp-statistics.php:148 wp-statistics.php:170
2726
+ msgid "settings page"
2727
+ msgstr ""
2728
+
2729
+ #: wp-statistics.php:148 wp-statistics.php:170
2730
+ msgid ","
2731
+ msgstr ""
2732
+
2733
+ #: wp-statistics.php:154
2734
+ msgid "search table"
2735
+ msgstr ""
2736
+
2737
+ #: wp-statistics.php:161
2738
+ msgid "countries database index"
2739
+ msgstr ""
2740
+
2741
+ #: wp-statistics.php:161
2742
+ msgid "visit database index"
2743
+ msgstr ""
2744
+
2745
+ #: wp-statistics.php:170
2746
  msgid ""
2747
+ "Database updates are required, please go to %s and update the following: %s"
2748
  msgstr ""
2749
 
2750
+ #: wp-statistics.php:265
2751
  msgid "WP Statistics %s installed on"
2752
  msgstr ""
2753
 
2754
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
2755
  msgid "Settings"
2756
  msgstr ""
2757
 
2758
+ #: wp-statistics.php:289
2759
  msgid "Click here to visit the plugin on WordPress.org"
2760
  msgstr ""
2761
 
2762
+ #: wp-statistics.php:289
2763
  msgid "Visit WordPress.org page"
2764
  msgstr ""
2765
 
2766
+ #: wp-statistics.php:292
2767
  msgid "Click here to rate and review this plugin on WordPress.org"
2768
  msgstr ""
2769
 
2770
+ #: wp-statistics.php:292
2771
  msgid "Rate this plugin"
2772
  msgstr ""
2773
 
2774
+ #: wp-statistics.php:336
2775
  msgid "WP Statistics - Hits"
2776
  msgstr ""
2777
 
2778
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
2779
  msgid "Overview"
2780
  msgstr ""
2781
 
2782
+ #: wp-statistics.php:380 wp-statistics.php:456
2783
  msgid "Online"
2784
  msgstr ""
2785
 
2786
+ #: wp-statistics.php:382 wp-statistics.php:458
2787
  msgid "Referrers"
2788
  msgstr ""
2789
 
2790
+ #: wp-statistics.php:384 wp-statistics.php:460
2791
  msgid "Search Words"
2792
  msgstr ""
2793
 
2794
+ #: wp-statistics.php:385 wp-statistics.php:461
2795
  msgid "Top Visitors Today"
2796
  msgstr ""
2797
 
2798
+ #: wp-statistics.php:390 wp-statistics.php:463
2799
  msgid "Optimization"
2800
  msgstr ""
2801
 
2802
+ #: wp-statistics.php:396 wp-statistics.php:427
2803
  msgid "Manual"
2804
  msgstr ""
2805
 
2806
+ #: wp-statistics.php:442
2807
  msgid "Site"
2808
  msgstr ""
2809
 
2810
+ #: wp-statistics.php:443
2811
  msgid "Options"
2812
  msgstr ""
2813
 
2814
+ #: wp-statistics.php:569
2815
  msgid "Today visitor"
2816
  msgstr ""
2817
 
2818
+ #: wp-statistics.php:575
2819
  msgid "Today visit"
2820
  msgstr ""
2821
 
2822
+ #: wp-statistics.php:581
2823
  msgid "Yesterday visitor"
2824
  msgstr ""
2825
 
2826
+ #: wp-statistics.php:593
2827
  msgid "View Stats"
2828
  msgstr ""
2829
 
2830
+ #: wp-statistics.php:617
2831
  msgid "Download ODF file"
2832
  msgstr ""
2833
 
2834
+ #: wp-statistics.php:618
2835
  msgid "Download HTML file"
2836
  msgstr ""
2837
 
2838
+ #: wp-statistics.php:622
2839
  msgid "Manual file not found."
2840
  msgstr ""
2841
 
2842
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
2843
  msgid "You do not have sufficient permissions to access this page."
2844
  msgstr ""
2845
 
2846
+ #: wp-statistics.php:716
2847
  msgid ""
2848
  "The following plugin table(s) do not exist in the database, please re-run "
2849
  "the %s install routine %s: "
languages/wp-statistics-da.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr ""
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr ""
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr ""
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr ""
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr ""
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr ""
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr ""
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr ""
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr ""
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr ""
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr ""
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr ""
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr ""
@@ -1013,7 +1069,7 @@ msgstr ""
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr ""
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr ""
1019
 
@@ -1021,19 +1077,19 @@ msgstr ""
1021
  msgid "Show site stats in sidebar."
1022
  msgstr ""
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr ""
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr ""
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr ""
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr ""
1039
 
@@ -1041,59 +1097,59 @@ msgstr ""
1041
  msgid "Search Engine referred"
1042
  msgstr ""
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr ""
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr ""
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr ""
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr ""
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr ""
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr ""
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr ""
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr ""
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr ""
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr ""
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr ""
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr ""
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr ""
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr ""
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr ""
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr ""
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr ""
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr ""
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr ""
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr ""
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr ""
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr ""
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr ""
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr ""
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr ""
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr ""
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr ""
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr ""
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr ""
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr ""
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr ""
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr ""
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr ""
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr ""
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr ""
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr ""
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr ""
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr ""
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr ""
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr ""
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr ""
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr ""
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr ""
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr ""
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr ""
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr ""
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr ""
1426
 
@@ -1449,35 +1486,35 @@ msgstr ""
1449
  msgid "Exclusions Statistics"
1450
  msgstr ""
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr ""
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr ""
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr ""
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr ""
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr ""
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr ""
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr ""
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr ""
1483
 
@@ -1555,7 +1592,7 @@ msgstr ""
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr ""
1561
 
@@ -1643,7 +1680,7 @@ msgstr ""
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr ""
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr ""
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr ""
1743
 
@@ -1779,11 +1816,11 @@ msgstr ""
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr ""
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr ""
1789
 
@@ -1809,7 +1846,7 @@ msgstr ""
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr ""
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr ""
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr ""
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr ""
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr ""
1858
  msgid "Please select"
1859
  msgstr ""
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr ""
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr ""
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr ""
1899
 
@@ -2208,23 +2245,23 @@ msgstr ""
2208
  msgid "Install routine complete."
2209
  msgstr ""
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr ""
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr ""
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr ""
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr ""
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr ""
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr ""
2414
 
@@ -2663,7 +2700,7 @@ msgstr ""
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr ""
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr ""
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr ""
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr ""
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr ""
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr ""
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr ""
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr ""
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr ""
844
 
847
  msgstr ""
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr ""
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr ""
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr ""
863
 
916
  msgid "Map type"
917
  msgstr ""
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr ""
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr ""
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr ""
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr ""
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr ""
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr ""
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr ""
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr ""
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr ""
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr ""
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr ""
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr ""
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr ""
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr ""
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr ""
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr ""
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr ""
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr ""
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr ""
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr ""
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr ""
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr ""
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr ""
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr ""
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr ""
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr ""
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr ""
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr ""
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr ""
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr ""
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr ""
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr ""
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr ""
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr ""
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr ""
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr ""
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr ""
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr ""
1436
 
1456
  msgstr ""
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr ""
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr ""
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr ""
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr ""
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr ""
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr ""
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr ""
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr ""
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr ""
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr ""
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr ""
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr ""
1686
 
1773
  msgstr ""
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr ""
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr ""
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr ""
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr ""
1852
 
1877
  msgstr ""
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr ""
1883
 
1886
  msgstr ""
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr ""
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr ""
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr ""
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr ""
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr ""
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr ""
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr ""
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr ""
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr ""
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr ""
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr ""
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr ""
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr ""
2706
 
languages/wp_statistics-ar.mo CHANGED
Binary file
languages/wp_statistics-ar.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-08-04 12:07:42+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
- msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr "بحث تحويل الجدول المكتمل، الصفوف %d أضيفت."
20
 
@@ -150,63 +210,59 @@ msgstr "%s سجلات طهرت بنجاح."
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "عدد الزيارات يجب أن يكون أكبر من أو يساوي 10!"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "عدد زيارات هذه الصفحة"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "عدد الصفحة"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "عدد التعليق"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "عدد السبام"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "عدد المستخدم"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "متوسط المشاركة"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "متوسط التعليق"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "متوسط المستخدم"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "الإطار الزمني للحصول على إحصائية لـ ، strtotime() (http://php.net/manual/en/datetime.formats.php) سيتم استخدامها لحساب ذلك."
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "محرك البحث"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "مزود البحث للحصول على إحصائيات عن."
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "صيغة الرقم"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "صيغة الأرقام للعرض في: I18N، الانجليزية، لا شيء."
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "الإنجليزية"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "دولي"
212
 
@@ -226,7 +282,7 @@ msgstr "مجموع كل الوقت"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "هل فكرت في التبرع لإحصائيات ووردبريس؟"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "التبرع"
232
 
@@ -246,27 +302,27 @@ msgstr "تبرع الآن!"
246
  msgid "Close"
247
  msgstr "إغلاق"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "حدد الإحصائية التي ترغب في عرضها."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "إحصائية"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "عدد المقال"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "الإطار الزمني"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "إلى"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "إذهب"
272
 
@@ -310,11 +366,11 @@ msgstr "التثبيتات القديمة من احصائيات ووردبريس
310
  msgid "Filtered by"
311
  msgstr "تمت تصفيتها من قبل"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "المدى"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr "آخر 30 يوم (شهر)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "آخر 7 أيام (أسبوع)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "ياهو!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "ياندكس"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "دك دك غو"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "بينج"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "بايدو"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "الصفحات"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "المتواجدين الآن"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "زوار اليوم"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "زيارات اليوم"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "زوار الأمس"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "زيارات الأمس"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "مجموع الزوار"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "مجموع الزيارات"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "لا شيء"
807
 
@@ -860,7 +916,7 @@ msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
860
  msgid "Map type"
861
  msgstr "نوع الخريطة"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "جوجل"
@@ -1013,7 +1069,7 @@ msgstr "مرة كل 2 أسابيع"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "مرة كل 4 أسابيع"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "الاحصائيات"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "الاحصائيات"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "عرض احصائيات الموقع في الشريط الجانبي."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "زيارات الأسبوع"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "زيارات الشهر"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "زيارات السنة"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "مجموع مشاهدات الصفحة"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "مجموع مشاهدات الصفحة"
1041
  msgid "Search Engine referred"
1042
  msgstr "محرك البحث المشار"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "إجمالي المشاركات"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "إجمالي الصفحات"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "إجمالي التعليقات"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "إجمالي السبام"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "عدد الاعضاء"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "متوسط المشاركات"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "متوسط التعليقات"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "متوسط الاعضاء"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "تاريخ آخر مشاركة"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "الأسم"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "البنود"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "زيارات الأمس"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "محرك بحث المشارين"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "حدد نوع من محرك البحث"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "نسخة PHP الحالي هو"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "احصائيات ووردبريس"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "صفحة الإعدادات"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "الإعدادات"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "زيارة صفحة WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "ضع تقييمك لهذه الاضافة"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "احصائيات ووردبريس - الزيارات"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "نظرة عامة"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "المتواجدون"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "الدعوات"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "عمليات البحث"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "كلمات البحث"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "أعلى زوار اليوم"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "التحسين"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "الدليل"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "موقع"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "خيارات"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "زوار اليوم"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "زيارات اليوم"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "زيارات الأمس"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "عرض الإحصائيات"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "تحميل ملف ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "تحميل ملف HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "لم يتم العثور على ملف الدليل."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "احصائيات ووردبريس %s مثبتة على"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap بالفعل في النسخة الحالية!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "تحديث Browscap.ini على"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "لا توجد سجلات للتخلص من %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "قاعدة بيانات مجردة على"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "انقر للتبديل"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "المتصفحات"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ل
1449
  msgid "Exclusions Statistics"
1450
  msgstr "استثناءات الاحصائيات"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 أيام"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 يوم"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 يو م"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "شهرين"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 أشهر"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 أشهر"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 أشهر"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "سنة"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "من"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "الكل"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "لم يتم العثور على عنوان الصفحة"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "الزيارات"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "التوقيت: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "نقرات"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s تم حذف بيانات المنصة بنجاح."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "لا توجد بيانات منصة لإزالتها!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s تم حذف بيانات الجدول بنجاح."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "خطأ, %s لم يتم التفريغ!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "فهرس قاعدة بيانات"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "الدول"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "تصدير"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "التصدير من"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "التصدير من"
1858
  msgid "Please select"
1859
  msgstr "الرجاء تحديد"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "حدد الجدول لملف الإخراج."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "التصدير لـ"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "الزوار"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "استبدال عناوين IP مع قيم التجزئة."
2208
  msgid "Install routine complete."
2209
  msgstr "التثبيت الكامل الروتيني."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "الموارد/معلومات"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "تطهير"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "قاعدة البيانات"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "تحديثات"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "التاريخي"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "الاستثناءات"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدا
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "الإعضاء المتواجدين"
2669
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-29 13:01:06+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr "رقم المقال/الصفحة للحصول على احصائياتها."
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr "رقم المقال/الصفحة"
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr "Ask.com"
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr "الجدول الزمني للحصول على إحصائية لـ, strtotime() (http://php.net/manual/en/datetime.formats.php) سيتم استخدامها لحساب ذلك. استخدام \"المجموع\" للحصول على كل التواريخ المسجلة."
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr "تتبع الزوار"
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr "مجموعة geoip"
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "زيارة فهرس قاعدة البيانات"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr "يجب تحديث قاعدة البيانات، يرجى الذهاب إلى %s وتحديث التالي: %s"
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr "دول فهرس قاعدة البيانات"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr "جدول البحث"
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr "صفحة الإعدادات"
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr "،"
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr "الميزات التالية معطلة، يرجى الذهاب إلى %s وتمكينها: %s"
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "تتبع النقرات"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr "تتبع المستخدم المتصل"
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
+ msgstr "جدول الإضافة التالية غير موجود في قاعدة البيانات, يرجى إعادة تشغيل %s للتثبيت الروتيني %s:"
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr "بحث تحويل الجدول المكتمل، الصفوف %d أضيفت."
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "عدد الزيارات يجب أن يكون أكبر من أو يساوي 10!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "عدد زيارات هذه الصفحة"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "عدد الصفحة"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "عدد التعليق"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "عدد السبام"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "عدد المستخدم"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "متوسط المشاركة"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "متوسط التعليق"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "متوسط المستخدم"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "محرك البحث"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "مزود البحث للحصول على إحصائيات عن."
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "صيغة الرقم"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "صيغة الأرقام للعرض في: I18N، الانجليزية، لا شيء."
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "الإنجليزية"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "دولي"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "هل فكرت في التبرع لإحصائيات ووردبريس؟"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "التبرع"
288
 
302
  msgid "Close"
303
  msgstr "إغلاق"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "حدد الإحصائية التي ترغب في عرضها."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "إحصائية"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "عدد المقال"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "الإطار الزمني"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "إلى"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "إذهب"
328
 
366
  msgid "Filtered by"
367
  msgstr "تمت تصفيتها من قبل"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "المدى"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "آخر 7 أيام (أسبوع)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "ياهو!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "ياندكس"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "دك دك غو"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "بينج"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "بايدو"
440
 
537
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "الصفحات"
544
 
823
  msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "المتواجدين الآن"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "زوار اليوم"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "زيارات اليوم"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "زوار الأمس"
844
 
847
  msgstr "زيارات الأمس"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "مجموع الزوار"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "مجموع الزيارات"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "لا شيء"
863
 
916
  msgid "Map type"
917
  msgstr "نوع الخريطة"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "جوجل"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "مرة كل 4 أسابيع"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "الاحصائيات"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "عرض احصائيات الموقع في الشريط الجانبي."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "زيارات الأسبوع"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "زيارات الشهر"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "زيارات السنة"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "مجموع مشاهدات الصفحة"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "محرك البحث المشار"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "إجمالي المشاركات"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "إجمالي الصفحات"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "إجمالي التعليقات"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "إجمالي السبام"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "عدد الاعضاء"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "متوسط المشاركات"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "متوسط التعليقات"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "متوسط الاعضاء"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "تاريخ آخر مشاركة"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "الأسم"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "البنود"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "زيارات الأمس"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "محرك بحث المشارين"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "حدد نوع من محرك البحث"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "احصائيات ووردبريس"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "الإعدادات"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "زيارة صفحة WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "ضع تقييمك لهذه الاضافة"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "احصائيات ووردبريس - الزيارات"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "نظرة عامة"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "المتواجدون"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "الدعوات"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "عمليات البحث"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "كلمات البحث"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "أعلى زوار اليوم"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "التحسين"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "الدليل"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "موقع"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "خيارات"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "زوار اليوم"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "زيارات اليوم"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "زيارات الأمس"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "عرض الإحصائيات"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "تحميل ملف ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "تحميل ملف HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "لم يتم العثور على ملف الدليل."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "احصائيات ووردبريس %s مثبتة على"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "تحديث Browscap.ini على"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1415
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "لا توجد سجلات للتخلص من %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "قاعدة بيانات مجردة على"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
1436
 
1456
  msgstr "انقر للتبديل"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "المتصفحات"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "استثناءات الاحصائيات"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 أيام"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 يوم"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 يو م"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "شهرين"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 أشهر"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 أشهر"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 أشهر"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "سنة"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "الكل"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "الزيارات"
1686
 
1773
  msgstr "التوقيت: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "نقرات"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "لا توجد بيانات منصة لإزالتها!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s تم حذف بيانات الجدول بنجاح."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "خطأ, %s لم يتم التفريغ!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "الدول"
1852
 
1877
  msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "تصدير"
1883
 
1886
  msgstr "التصدير من"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "الرجاء تحديد"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "حدد الجدول لملف الإخراج."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "التصدير لـ"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "الزوار"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "التثبيت الكامل الروتيني."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "الموارد/معلومات"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "تطهير"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "قاعدة البيانات"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "تحديثات"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "التاريخي"
2267
 
2444
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "الاستثناءات"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "الإعضاء المتواجدين"
2706
 
languages/wp_statistics-bg_BG.mo CHANGED
Binary file
languages/wp_statistics-bg_BG.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Страници"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Онлайн потребители"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Днес посетителите"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Посещения от днес"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Вчера посетител"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Вчерашни посещения"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Общо посетител"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Общо посещения"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Няма"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Тип карта"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Веднъж на всеки 2 седмици"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Веднъж на всеки 4 седмици"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Статистики"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Статистики"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Показване на статистика на сайт в страничната лента."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Седмични посещения"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Месечни посещения"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Годишни посещения"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Общо изгледи на страница"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Общо изгледи на страница"
1041
  msgid "Search Engine referred"
1042
  msgstr "Търсачката по"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Общо публикации"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Общо страници"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Общо коментари"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Общо спам"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Общо потребители"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Средно публикации"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Средно коментари"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Средно потребители"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Последно добавена публикация"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Име"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Броя"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Вчерашни посещения"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Търсачката по"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Изберете тип търсачка"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Пълна статистика за вашия сайт WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "определянето страница"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го активирате."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Настройки"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Посетете страницата на WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Оцени този плъгин"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP-статистика - хитове"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Общ преглед"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Търсения"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Думи за търсене"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Оптимизация"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Ръководство"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Днес посетителите"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Днес, посетете"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Вчера посетител"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Преглед на статистиките"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Изтегляне на ODF файл"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Изтегли HTML файл"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Ръчно файлът не е намерен."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Нямате права за тази страница"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap вече в текущата версия!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s данни по-стари от %s дни, прочистват успешно."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Няма намерени за продухване от %s записи!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Моля изберете стойност над 30 дни."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Щракнете за превключване"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Браузъри"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Внимание: Изключване не са в момента за
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Изключения статистика"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 дни"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 дни"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 дни"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 месеца"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 месеца"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 месеца"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 месеца"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 година"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "От"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Всички"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Няма намерени заглавието на страницата
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Посещения"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Време: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Посещения"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s платформа данни изтрито успешно."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s таблични данни изтрито успешно."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Грешка, %s не се изпразва!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Индекс на база данни"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Страни"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Износ"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Износ от"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Износ от"
1858
  msgid "Please select"
1859
  msgstr "Моля изберете"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Изберете таблицата за изходния файл."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Експортиране в"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Посетители"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP адреси се заменят с хеш стойности."
2208
  msgid "Install routine complete."
2209
  msgstr "Инсталиране на ежедневието пълна."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Ресурси/информация"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Прочистване"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "База данни"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Актуализации"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Изключения"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Това ще изтрие ръчно, когато запишете н
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Потребители онлайн"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Страници"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Онлайн потребители"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Днес посетителите"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Посещения от днес"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Вчера посетител"
844
 
847
  msgstr "Вчерашни посещения"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Общо посетител"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Общо посещения"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Няма"
863
 
916
  msgid "Map type"
917
  msgstr "Тип карта"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Веднъж на всеки 4 седмици"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Статистики"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Показване на статистика на сайт в страничната лента."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Седмични посещения"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Месечни посещения"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Годишни посещения"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Общо изгледи на страница"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Търсачката по"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Общо публикации"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Общо страници"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Общо коментари"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Общо спам"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Общо потребители"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Средно публикации"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Средно коментари"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Средно потребители"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Последно добавена публикация"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Име"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Броя"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Вчерашни посещения"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Търсачката по"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Изберете тип търсачка"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Пълна статистика за вашия сайт WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Настройки"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Посетете страницата на WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Оцени този плъгин"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP-статистика - хитове"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Общ преглед"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Търсения"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Думи за търсене"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Оптимизация"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Ръководство"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Днес посетителите"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Днес, посетете"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Вчера посетител"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Преглед на статистиките"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Изтегляне на ODF файл"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Изтегли HTML файл"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Ръчно файлът не е намерен."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Нямате права за тази страница"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1415
  msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s данни по-стари от %s дни, прочистват успешно."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Няма намерени за продухване от %s записи!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Моля изберете стойност над 30 дни."
1436
 
1456
  msgstr "Щракнете за превключване"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Браузъри"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Изключения статистика"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 дни"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 дни"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 дни"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 месеца"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 месеца"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 месеца"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 месеца"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 година"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Всички"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Посещения"
1686
 
1773
  msgstr "Време: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Посещения"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s таблични данни изтрито успешно."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Грешка, %s не се изпразва!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Страни"
1852
 
1877
  msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Износ"
1883
 
1886
  msgstr "Износ от"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Моля изберете"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Изберете таблицата за изходния файл."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Експортиране в"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Посетители"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Инсталиране на ежедневието пълна."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Ресурси/информация"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Прочистване"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "База данни"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Актуализации"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Изключения"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Потребители онлайн"
2706
 
languages/wp_statistics-bn_BD.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr ""
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr ""
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "এখন দেখছে"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr ""
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "আজ দেখেছে"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr ""
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "গতকাল দেখেছে"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr ""
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "মোট দেখা হয়েছে"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr ""
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr ""
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "গুগল"
@@ -1013,7 +1069,7 @@ msgstr ""
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr ""
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "পরিসংখ্যান"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "পরিসংখ্যান"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr ""
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "এ সপ্তাহে দেখেছে"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "এ মাসে দেখেছে"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "এ বছরে দেখেছে"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr ""
1039
 
@@ -1041,59 +1097,59 @@ msgstr ""
1041
  msgid "Search Engine referred"
1042
  msgstr ""
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "মোট পোষ্ট"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "মোট পাতা"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "মোট মন্তব্য"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "মোট স্প্যাম"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "মোট ব্যবহারকারী"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "গড় পোষ্ট"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "গড় মন্তব্য"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "গড় ব্যবহারকারী"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "শেষ পোষ্টের তারিখ"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "নাম"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "আইটেম"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "গতকাল দেখেছে"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr ""
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr ""
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr ""
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr ""
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr ""
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr ""
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr ""
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr ""
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "সেটিসং"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr ""
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr ""
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr ""
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr ""
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr ""
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr ""
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr ""
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr ""
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr ""
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr ""
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr ""
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr ""
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr ""
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr ""
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr ""
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr ""
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr ""
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr ""
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr ""
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr ""
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr ""
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr ""
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr ""
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr ""
1426
 
@@ -1449,35 +1486,35 @@ msgstr ""
1449
  msgid "Exclusions Statistics"
1450
  msgstr ""
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr ""
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr ""
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr ""
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr ""
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr ""
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr ""
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr ""
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr ""
1483
 
@@ -1555,7 +1592,7 @@ msgstr ""
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "সকল"
1561
 
@@ -1643,7 +1680,7 @@ msgstr ""
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr ""
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr ""
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr ""
1743
 
@@ -1779,11 +1816,11 @@ msgstr ""
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr ""
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr ""
1789
 
@@ -1809,7 +1846,7 @@ msgstr ""
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr ""
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr ""
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr ""
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr ""
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr ""
1858
  msgid "Please select"
1859
  msgstr ""
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr ""
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr ""
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr ""
1899
 
@@ -2208,23 +2245,23 @@ msgstr ""
2208
  msgid "Install routine complete."
2209
  msgstr ""
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr ""
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr ""
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr ""
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr ""
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr ""
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr ""
2414
 
@@ -2663,7 +2700,7 @@ msgstr ""
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr ""
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr ""
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr ""
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr ""
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "এখন দেখছে"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr ""
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "আজ দেখেছে"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr ""
844
 
847
  msgstr "গতকাল দেখেছে"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr ""
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "মোট দেখা হয়েছে"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr ""
863
 
916
  msgid "Map type"
917
  msgstr ""
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "গুগল"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr ""
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "পরিসংখ্যান"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr ""
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "এ সপ্তাহে দেখেছে"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "এ মাসে দেখেছে"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "এ বছরে দেখেছে"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr ""
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr ""
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "মোট পোষ্ট"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "মোট পাতা"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "মোট মন্তব্য"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "মোট স্প্যাম"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "মোট ব্যবহারকারী"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "গড় পোষ্ট"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "গড় মন্তব্য"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "গড় ব্যবহারকারী"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "শেষ পোষ্টের তারিখ"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "নাম"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "আইটেম"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "গতকাল দেখেছে"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr ""
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr ""
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr ""
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "সেটিসং"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr ""
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr ""
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr ""
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr ""
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr ""
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr ""
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr ""
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr ""
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr ""
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr ""
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr ""
1436
 
1456
  msgstr ""
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr ""
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr ""
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr ""
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr ""
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr ""
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr ""
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr ""
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr ""
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr ""
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr ""
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "সকল"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr ""
1686
 
1773
  msgstr ""
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr ""
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr ""
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr ""
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr ""
1852
 
1877
  msgstr ""
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr ""
1883
 
1886
  msgstr ""
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr ""
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr ""
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr ""
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr ""
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr ""
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr ""
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr ""
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr ""
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr ""
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr ""
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr ""
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr ""
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr ""
2706
 
languages/wp_statistics-ckb.mo CHANGED
Binary file
languages/wp_statistics-ckb.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr "٣٠ ڕۆژ ڕابردوو (مانگ)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "یاهو"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "یاندیکس"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "دەک دەک گۆو"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "بینگ"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "بەیدوو"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "پەڕەكان"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "بەکارهینەری سەرهێڵ"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "میوانی ئەمڕۆ"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "سەردانی ئەمڕۆ"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "میوانی دوێنێ"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "سەردانی دوێنێ"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "کۆی میوانەکان"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "کۆی سەردانەکان"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "هیچ"
807
 
@@ -860,7 +916,7 @@ msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پ
860
  msgid "Map type"
861
  msgstr "جۆری نەخشە"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "گووگڵ"
@@ -1013,7 +1069,7 @@ msgstr "هەر ٢ هەفتە"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "هەر ٤ هەفتە"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "ئامار"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "ئامار"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "نیشاندانی ئاماری ماڵپەر لە (ئامرازی) لاتەنیشت"
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "سەردانی هەفتە"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "سەردانی مانگ"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "سەردانی ساڵ"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "کۆی گشتی سەردانی پەڕگە"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "کۆی گشتی سەردانی پەڕگە"
1041
  msgid "Search Engine referred"
1042
  msgstr "هاتن لە مەکینەی گەڕان"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "کۆی نووسراوەکان"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "کۆی پەڕەکان"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "کۆی بۆچونەکان(لێدوانەکان)"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "کۆی بێزارکەرەکان"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "کۆی بەکارهێنەران"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "مامناوەندی نووسراوەکان"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "مامناوەندی بۆچوونەکان"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "مامناوەندی بەکارهێنەران"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "ناو"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "بڕگە"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "سەردانی دوێنێ"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "هاتن لە مەکینەی گەڕان"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "هەڵبژاردنی جۆری مەکینەی گەڕان"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "وەشانی ئێستای PHP ئێوە"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "ئاماری وۆردپرێس"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "بەکارهێنەرانی سەرهێڵ لە زیادکراوەی وۆردپرێس ناچالاکن تکایە بڕۆن بۆ %s چالاکی بکەن."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "ڕیکخستنەکانی پەرە"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "شوێن کەوتنی سەردان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "شوێن کەوتنی میوان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "کۆی GeoIPچالاک نییە تکایە بڕۆن بۆ %s ئەم تایبەتمەندییە چالاک بکەن"
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "ڕیکخستن"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "دیتنی پەرەی WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "پلەدانان بۆ ئەم زیادکراوە"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "ئاماری وۆردپرێس-سەردان"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "پیشاندانی گشتی"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "سەرهێڵ"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "هاتنەژوورەوەکان"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "گەرانەکان"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "گەرانی وەشەکان"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "بەرزترین میوانەکانی ئەمڕۆ"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "باشینەسازی)هەژیکردن)"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "ڕێنمایی"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "مالپەڕ"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "ڕێکخستنه‌کان "
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "کۆی میوان"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "میوانی ئەمڕؤ"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "میوانی دوێنێ"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "نیشاندانی ئامار"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "داگرتنی پەڕگەی ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "داگرتنی پەڕگەی HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "ڕێنمایی پەیدا نەبوو"
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini بەڕۆژکرا"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "%s ڕیکۆردی GeoIP لە بنکەی دراوە بەڕۆژ بوو."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s داتای کۆنەتر لە ڕۆژی %s بە سەرکەوتوویی پاکسازی بوو."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr " هیچ ریکۆردێک پەیدانەبوو بۆ %s! پاکسازی"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "بنکەی دراوە پاکسازی لە"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "تکایە زۆرتر لە ٣٠ ڕۆژ هەڵبژێرن"
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "بۆ بەستن و داخستن کرتە بکە"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "وێبگەڕەکان"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "خاڵ: تائێستا جیاکاری بۆ ریکۆردەکان جیاک
1449
  msgid "Exclusions Statistics"
1450
  msgstr "ئاماری جیاکاریەکان"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "١٠ ڕۆژی ڕابردوو"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "٢٠ ڕۆژی ڕابردوو"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "٣٠ ڕۆژی ڕابردوو"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "٢ مانگی ڕابردوو"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "٣ مانگی ڕابردوو"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "٦مانگی ڕابردوو"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "٩ مانگی ڕابردوو"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "١ ساڵی ڕابردوو"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "لە"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "گشتی"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "سەردێڕی پەرە پەیدا نەبوو"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "سەردانەکان"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "کات: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "سەردانەکان"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "ازانیارەکانی سەکۆ %s بە سەرکەوتوویی سڕا
1779
  msgid "No platform data found to remove!"
1780
  msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "هەڵە! %s بەتاڵ نییە!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "پێنوێنی بنکەدراوە"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "وەڵآتەکان"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "هەناردەکردن"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "هەناردن لە"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "هەناردن لە"
1858
  msgid "Please select"
1859
  msgstr "تکایە هەڵبژێرە"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "خشتی داخواز بۆ چونەدەرەڤەی پەڕگە هەڵبژێرە"
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "ناردنەدەرەوە بۆ"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کر
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "میوانەکان"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕد
2208
  msgid "Install routine complete."
2209
  msgstr "دامەزراندن تەواوبوو"
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "سەرچاوەکان/زانیاری"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "پاکسازی"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "بنکەدراوە"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "بەڕۆژبونەکان"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "مێژوویی"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "جیاکاریەکان"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "پاش پاشکەتکردنی ڕێکخستنەکان پەڕگەی ڕین
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "بەکارهێنەری سەرهێڵ"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "یاهو"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "یاندیکس"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "دەک دەک گۆو"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "بینگ"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "بەیدوو"
440
 
537
  msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "پەڕەكان"
544
 
823
  msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "بەکارهینەری سەرهێڵ"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "میوانی ئەمڕۆ"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "سەردانی ئەمڕۆ"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "میوانی دوێنێ"
844
 
847
  msgstr "سەردانی دوێنێ"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "کۆی میوانەکان"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "کۆی سەردانەکان"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "هیچ"
863
 
916
  msgid "Map type"
917
  msgstr "جۆری نەخشە"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "گووگڵ"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "هەر ٤ هەفتە"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "ئامار"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "نیشاندانی ئاماری ماڵپەر لە (ئامرازی) لاتەنیشت"
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "سەردانی هەفتە"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "سەردانی مانگ"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "سەردانی ساڵ"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "کۆی گشتی سەردانی پەڕگە"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "هاتن لە مەکینەی گەڕان"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "کۆی نووسراوەکان"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "کۆی پەڕەکان"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "کۆی بۆچونەکان(لێدوانەکان)"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "کۆی بێزارکەرەکان"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "کۆی بەکارهێنەران"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "مامناوەندی نووسراوەکان"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "مامناوەندی بۆچوونەکان"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "مامناوەندی بەکارهێنەران"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "ناو"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "بڕگە"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "سەردانی دوێنێ"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "هاتن لە مەکینەی گەڕان"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "هەڵبژاردنی جۆری مەکینەی گەڕان"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "ئاماری وۆردپرێس"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "ڕیکخستن"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "دیتنی پەرەی WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "پلەدانان بۆ ئەم زیادکراوە"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "ئاماری وۆردپرێس-سەردان"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "پیشاندانی گشتی"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "سەرهێڵ"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "هاتنەژوورەوەکان"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "گەرانەکان"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "گەرانی وەشەکان"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "بەرزترین میوانەکانی ئەمڕۆ"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "باشینەسازی)هەژیکردن)"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "ڕێنمایی"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "مالپەڕ"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "ڕێکخستنه‌کان "
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "کۆی میوان"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "میوانی ئەمڕؤ"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "میوانی دوێنێ"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "نیشاندانی ئامار"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "داگرتنی پەڕگەی ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "داگرتنی پەڕگەی HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "ڕێنمایی پەیدا نەبوو"
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini بەڕۆژکرا"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1415
  msgstr "%s ڕیکۆردی GeoIP لە بنکەی دراوە بەڕۆژ بوو."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s داتای کۆنەتر لە ڕۆژی %s بە سەرکەوتوویی پاکسازی بوو."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr " هیچ ریکۆردێک پەیدانەبوو بۆ %s! پاکسازی"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "بنکەی دراوە پاکسازی لە"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "تکایە زۆرتر لە ٣٠ ڕۆژ هەڵبژێرن"
1436
 
1456
  msgstr "بۆ بەستن و داخستن کرتە بکە"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "وێبگەڕەکان"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "ئاماری جیاکاریەکان"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "١٠ ڕۆژی ڕابردوو"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "٢٠ ڕۆژی ڕابردوو"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "٣٠ ڕۆژی ڕابردوو"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "٢ مانگی ڕابردوو"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "٣ مانگی ڕابردوو"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "٦مانگی ڕابردوو"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "٩ مانگی ڕابردوو"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "١ ساڵی ڕابردوو"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "گشتی"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "سەردانەکان"
1686
 
1773
  msgstr "کات: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "سەردانەکان"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "هەڵە! %s بەتاڵ نییە!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "وەڵآتەکان"
1852
 
1877
  msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "هەناردەکردن"
1883
 
1886
  msgstr "هەناردن لە"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "تکایە هەڵبژێرە"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "خشتی داخواز بۆ چونەدەرەڤەی پەڕگە هەڵبژێرە"
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "ناردنەدەرەوە بۆ"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "میوانەکان"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "دامەزراندن تەواوبوو"
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "سەرچاوەکان/زانیاری"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "پاکسازی"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "بنکەدراوە"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "بەڕۆژبونەکان"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "مێژوویی"
2267
 
2444
  msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "جیاکاریەکان"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "بەکارهێنەری سەرهێڵ"
2706
 
languages/wp_statistics-cs.mo CHANGED
Binary file
languages/wp_statistics-cs.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Stránky"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Online uživatelé"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Dnešní návštěvník"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Dnešní návštěva"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Včerejší návštěvník"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Včerejší návštěva"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Celkem návštěvníků"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Celkem návštěv"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Žádný"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Typ mapy"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Jednou za 2 týdny"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Jednou za 4 týdny"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistiky"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistiky"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Zobrazit statistiky stránek v postranním panelu."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Týdenní návštěva"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Měsíční návštěva"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Roční návštěvnost"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Celkový počet zobrazení stránky"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Celkový počet zobrazení stránky"
1041
  msgid "Search Engine referred"
1042
  msgstr "Vyhledávač podle"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Celkem příspěvků"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Celkem stránek"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Celkem komentářů"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Celkem Spamů"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Celkem uživatelů"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Průměr příspěvků"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Průměr komentářů"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Průměr uživatelů"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Datum posledního příspěvku"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Jméno"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Položky"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Včera návštěv"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Vyhledávač podle"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Vyberte typ vyhledávače"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistiky"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Kompletní statistiky pro váš web WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a umožňují."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "nastavení stránky"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Sledování přístupů v WP Statistics není povoleno, přejděte na %s a umožňují."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Návštěvník v WP Statistics sledování není povoleno, přejděte na %s a umožňují."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Nastavení"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Chcete-li navštívit plugin WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Navštivte stránku WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Ohodnoť tento plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Přehled"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Vyhledávání"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Hledaná slova"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimalizace"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manuál"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Dnešní návštěvník"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Dnešní návštěva"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Včera návštěvníků"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Zobrazit statistiky"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Stáhnout soubor ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Stáhnout HTML soubor"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Ruční soubor nebyl nalezen."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "Browscap již v aktuální verzi!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-STATISTICS.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s data starší než %s dnφ úspěšně vyprázdněna."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Žádné záznamy nalezeny očistit od %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Prosím vyber hodnotu nad 30 dní."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Klik na vypínač"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Prohlížeče"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výs
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Vyloučení statistiky"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 Dnů"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 Dnů"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 Dnů"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 Měsíce"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 Měsíce"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 Měsíců"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 Měsíců"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 Rok"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Od"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Všechno"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Žádný titulek stránky nalézt"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Návštěvy"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Čas: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Hity"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "údaje platforma %s úspěšně smazána."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "data tabulky %s úspěšně smazána."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Chyba, %s není vyprázdněno!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Databáze Index"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Země"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Gratulujeme vaše instalace je již datum, nic společného."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Export"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Export od"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Export od"
1858
  msgid "Please select"
1859
  msgstr "Prosím vyber"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Vyberte tabulku pro výstupní soubor."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Exportovat do"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Návštěvníci"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP adresy nahrazeny hodnoty hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Instalujte kompletní rutina."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Zdroje/Informace"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Pročištění"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Databáze"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Aktualizace"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Pokud budete potřebovat robustnější řešení pro přístup delegáta budete chtít podívat na %s do WordPress plugin adresáři."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Vyjímky"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "To odstraní ruční, když uložíte nastavení, jste si jisti?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Tato funkce nebude ukládat IP adresy do databáze, ale místo toho používá jedinečný algoritmus hash. \"Store celé uživatelské agent string\" nastavení bude zakázáno, pokud je vybrána tato možnost. Nebude schopen obnovit adresy IP v budoucnosti obnovit informace o poloze, pokud je to povoleno."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Uživatelé online"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Stránky"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Online uživatelé"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Dnešní návštěvník"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Dnešní návštěva"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Včerejší návštěvník"
844
 
847
  msgstr "Včerejší návštěva"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Celkem návštěvníků"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Celkem návštěv"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Žádný"
863
 
916
  msgid "Map type"
917
  msgstr "Typ mapy"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Jednou za 4 týdny"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistiky"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Zobrazit statistiky stránek v postranním panelu."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Týdenní návštěva"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Měsíční návštěva"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Roční návštěvnost"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Celkový počet zobrazení stránky"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Vyhledávač podle"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Celkem příspěvků"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Celkem stránek"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Celkem komentářů"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Celkem Spamů"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Celkem uživatelů"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Průměr příspěvků"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Průměr komentářů"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Průměr uživatelů"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Datum posledního příspěvku"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Jméno"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Položky"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Včera návštěv"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Vyhledávač podle"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Vyberte typ vyhledávače"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistiky"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Kompletní statistiky pro váš web WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Nastavení"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Chcete-li navštívit plugin WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Navštivte stránku WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Ohodnoť tento plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - Hits"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Přehled"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Vyhledávání"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Hledaná slova"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimalizace"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manuál"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Dnešní návštěvník"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Dnešní návštěva"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Včera návštěvníků"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Zobrazit statistiky"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Stáhnout soubor ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Stáhnout HTML soubor"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Ruční soubor nebyl nalezen."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-STATISTICS.com/"
1415
  msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s data starší než %s dnφ úspěšně vyprázdněna."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Žádné záznamy nalezeny očistit od %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Prosím vyber hodnotu nad 30 dní."
1436
 
1456
  msgstr "Klik na vypínač"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Prohlížeče"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Vyloučení statistiky"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 Dnů"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 Dnů"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 Dnů"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 Měsíce"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 Měsíce"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 Měsíců"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 Měsíců"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 Rok"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Všechno"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Návštěvy"
1686
 
1773
  msgstr "Čas: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Hity"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "data tabulky %s úspěšně smazána."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Chyba, %s není vyprázdněno!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Země"
1852
 
1877
  msgstr "Gratulujeme vaše instalace je již datum, nic společného."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Export"
1883
 
1886
  msgstr "Export od"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Prosím vyber"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Vyberte tabulku pro výstupní soubor."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Exportovat do"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Návštěvníci"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Instalujte kompletní rutina."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Zdroje/Informace"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Pročištění"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Databáze"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Aktualizace"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Pokud budete potřebovat robustnější řešení pro přístup delegáta budete chtít podívat na %s do WordPress plugin adresáři."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Vyjímky"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Tato funkce nebude ukládat IP adresy do databáze, ale místo toho používá jedinečný algoritmus hash. \"Store celé uživatelské agent string\" nastavení bude zakázáno, pokud je vybrána tato možnost. Nebude schopen obnovit adresy IP v budoucnosti obnovit informace o poloze, pokud je to povoleno."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Uživatelé online"
2706
 
languages/wp_statistics-de_DE.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "Baidu"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Koeffizient - ein Besucher z&auml;hlt \"X\" Aufrufe. Aktuell: %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Seitenaufrufe"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes von WP Statistics (siehe Benutzerdokumentation) k&ouml;nnen im Nachrichtentext verwendet werden. Hier sind ein paar Beispiele:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Besucher aktuell"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Besucher heute"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Aufrufe heute"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Besucher gestern"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Aufrufe gestern"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Besucher gesamt"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Aufrufe gesamt"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Keine"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Karten-Typ"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Alle zwei Wochen"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Alle vier Wochen"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistik"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistik"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr ""
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Besucher pro Woche"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Aufrufe im Monat"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Aufrufe im Jahr"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr ""
1039
 
@@ -1041,59 +1097,59 @@ msgstr ""
1041
  msgid "Search Engine referred"
1042
  msgstr ""
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Gesamt Beiträge"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Gesamt Seiten"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Gesamt Kommentare"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Gesamt Spam"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Gesamt Benutzer"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Durchschnittliche Artikel"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Durchschnittliche Kommentare"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Durchschnittliche Benutzer"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Letztes Beitrags-Datum"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Name"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Elemente"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Aufrufe gestern"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr ""
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Wähle die Suchmaschine"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr ""
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Umfangreiche Statistik f&uuml;r WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr ""
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr ""
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr ""
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr ""
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr ""
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Einstellungen"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr ""
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr ""
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Bewerte das Plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr ""
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "&Uuml;bersicht"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "Zurzeit online"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Suchmaschinen"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Suchbegriffe"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimierung"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr ""
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Besucher heute"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Aufrufe heute"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Besucher gestern"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Statistiken"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr ""
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr ""
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Benutzerdokumentation nicht gefunden."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr ""
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "%s GeoIP-Eintr&auml;ge in der Besucher-Tabelle aktualisiert."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr ""
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr ""
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Bitte w&auml;hle einen Wert gr&ouml;&szlig;er als 30 Tage."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Klicken, um umzuschalten"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Browser"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "ACHTUNG: die Aufzeichnung von Ausnahmen ist aktuell deaktiviert. Die nac
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Ausnahmenstatistik"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 Tage"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 Tage"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 Tage"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 Monate"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 Monate"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 Monate"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 Monate"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 Jahr"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "von"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Alle"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "kein Titel verf&uuml;gbar / Fehler 404"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Aufrufe"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr ""
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Website-Aufrufe"
1743
 
@@ -1779,11 +1816,11 @@ msgstr ""
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr ""
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr ""
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Datenbank-Index"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "L&auml;nder"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Gl&uuml;ckwunsch! Deine Installation ist aktuell, es gibt hier nichts zu tun..."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Export"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Exportieren von"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Exportieren von"
1858
  msgid "Please select"
1859
  msgstr "Bitte ausw&auml;hlen"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "DB-Tabelle ausw&auml;hlen, die exportiert werden soll."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Exportieren nach"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Besucher"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP-Adressen erfolgreich anonymisiert."
2208
  msgid "Install routine complete."
2209
  msgstr ""
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Ressourcen/Information"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Daten l&ouml;schen"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Datenbank"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr ""
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Historie"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Um mehr Freiheiten beim Verwalten von Rollen und Berechtigungen zu haben, empfiehlt sich die Verwendung entspr. Plugins - z.B. %s im WordPress Plugin-Verzeichnis."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Ausnahmen"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Diese Einstellung l&ouml;scht das Benutzerhandbuch unwiderruflich, wenn
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Dieses Feature ersetzt IP-Adressen in der Datenbank durch generierte, eindeutige Hash-Werte. Die Einstellung \"Gesamten User Agent-String speichern\" wird automatisch deaktiviert, wenn die Einstellung zum Anonymisieren der IP-Adressen aktiviert wird. ACHTUNG: einmal anonymisierte IP-Adressen k&ouml;nnen zu keinem Zeitpunkt wiederhergestellt werden!"
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Besucher online"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "Baidu"
440
 
537
  msgstr "Koeffizient - ein Besucher z&auml;hlt \"X\" Aufrufe. Aktuell: %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Seitenaufrufe"
544
 
823
  msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes von WP Statistics (siehe Benutzerdokumentation) k&ouml;nnen im Nachrichtentext verwendet werden. Hier sind ein paar Beispiele:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Besucher aktuell"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Besucher heute"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Aufrufe heute"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Besucher gestern"
844
 
847
  msgstr "Aufrufe gestern"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Besucher gesamt"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Aufrufe gesamt"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Keine"
863
 
916
  msgid "Map type"
917
  msgstr "Karten-Typ"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Alle vier Wochen"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistik"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr ""
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Besucher pro Woche"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Aufrufe im Monat"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Aufrufe im Jahr"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr ""
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr ""
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Gesamt Beiträge"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Gesamt Seiten"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Gesamt Kommentare"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Gesamt Spam"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Gesamt Benutzer"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Durchschnittliche Artikel"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Durchschnittliche Kommentare"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Durchschnittliche Benutzer"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Letztes Beitrags-Datum"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Name"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Elemente"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Aufrufe gestern"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr ""
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Wähle die Suchmaschine"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr ""
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Umfangreiche Statistik f&uuml;r WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Einstellungen"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Bewerte das Plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "&Uuml;bersicht"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "Zurzeit online"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Suchmaschinen"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Suchbegriffe"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimierung"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Besucher heute"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Aufrufe heute"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Besucher gestern"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Statistiken"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr ""
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr ""
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Benutzerdokumentation nicht gefunden."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr "%s GeoIP-Eintr&auml;ge in der Besucher-Tabelle aktualisiert."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr ""
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr ""
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Bitte w&auml;hle einen Wert gr&ouml;&szlig;er als 30 Tage."
1436
 
1456
  msgstr "Klicken, um umzuschalten"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Browser"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Ausnahmenstatistik"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 Tage"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 Tage"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 Tage"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 Monate"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 Monate"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 Monate"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 Monate"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 Jahr"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Alle"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Aufrufe"
1686
 
1773
  msgstr ""
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Website-Aufrufe"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr ""
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr ""
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "L&auml;nder"
1852
 
1877
  msgstr "Gl&uuml;ckwunsch! Deine Installation ist aktuell, es gibt hier nichts zu tun..."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Export"
1883
 
1886
  msgstr "Exportieren von"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Bitte ausw&auml;hlen"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "DB-Tabelle ausw&auml;hlen, die exportiert werden soll."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Exportieren nach"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Besucher"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr ""
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Ressourcen/Information"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Daten l&ouml;schen"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Datenbank"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr ""
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Historie"
2267
 
2444
  msgstr "Um mehr Freiheiten beim Verwalten von Rollen und Berechtigungen zu haben, empfiehlt sich die Verwendung entspr. Plugins - z.B. %s im WordPress Plugin-Verzeichnis."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Ausnahmen"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Dieses Feature ersetzt IP-Adressen in der Datenbank durch generierte, eindeutige Hash-Werte. Die Einstellung \"Gesamten User Agent-String speichern\" wird automatisch deaktiviert, wenn die Einstellung zum Anonymisieren der IP-Adressen aktiviert wird. ACHTUNG: einmal anonymisierte IP-Adressen k&ouml;nnen zu keinem Zeitpunkt wiederhergestellt werden!"
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Besucher online"
2706
 
languages/wp_statistics-eo.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr ""
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr ""
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr ""
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr ""
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr ""
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr ""
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr ""
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr ""
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr ""
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr ""
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr ""
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr ""
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr ""
@@ -1013,7 +1069,7 @@ msgstr ""
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr ""
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr ""
1019
 
@@ -1021,19 +1077,19 @@ msgstr ""
1021
  msgid "Show site stats in sidebar."
1022
  msgstr ""
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr ""
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr ""
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr ""
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr ""
1039
 
@@ -1041,59 +1097,59 @@ msgstr ""
1041
  msgid "Search Engine referred"
1042
  msgstr ""
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr ""
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr ""
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr ""
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr ""
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr ""
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr ""
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr ""
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr ""
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr ""
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr ""
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr ""
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr ""
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr ""
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr ""
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr ""
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr ""
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr ""
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr ""
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr ""
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr ""
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr ""
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr ""
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr ""
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr ""
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr ""
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr ""
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr ""
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr ""
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr ""
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr ""
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr ""
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr ""
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr ""
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr ""
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr ""
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr ""
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr ""
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr ""
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr ""
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr ""
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr ""
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr ""
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr ""
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr ""
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr ""
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr ""
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr ""
1426
 
@@ -1449,35 +1486,35 @@ msgstr ""
1449
  msgid "Exclusions Statistics"
1450
  msgstr ""
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr ""
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr ""
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr ""
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr ""
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr ""
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr ""
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr ""
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr ""
1483
 
@@ -1555,7 +1592,7 @@ msgstr ""
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr ""
1561
 
@@ -1643,7 +1680,7 @@ msgstr ""
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr ""
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr ""
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr ""
1743
 
@@ -1779,11 +1816,11 @@ msgstr ""
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr ""
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr ""
1789
 
@@ -1809,7 +1846,7 @@ msgstr ""
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr ""
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr ""
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr ""
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr ""
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr ""
1858
  msgid "Please select"
1859
  msgstr ""
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr ""
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr ""
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr ""
1899
 
@@ -2208,23 +2245,23 @@ msgstr ""
2208
  msgid "Install routine complete."
2209
  msgstr ""
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr ""
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr ""
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr ""
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr ""
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr ""
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr ""
2414
 
@@ -2663,7 +2700,7 @@ msgstr ""
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr ""
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr ""
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr ""
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr ""
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr ""
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr ""
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr ""
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr ""
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr ""
844
 
847
  msgstr ""
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr ""
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr ""
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr ""
863
 
916
  msgid "Map type"
917
  msgstr ""
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr ""
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr ""
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr ""
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr ""
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr ""
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr ""
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr ""
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr ""
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr ""
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr ""
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr ""
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr ""
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr ""
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr ""
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr ""
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr ""
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr ""
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr ""
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr ""
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr ""
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr ""
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr ""
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr ""
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr ""
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr ""
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr ""
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr ""
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr ""
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr ""
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr ""
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr ""
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr ""
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr ""
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr ""
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr ""
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr ""
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr ""
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr ""
1436
 
1456
  msgstr ""
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr ""
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr ""
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr ""
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr ""
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr ""
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr ""
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr ""
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr ""
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr ""
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr ""
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr ""
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr ""
1686
 
1773
  msgstr ""
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr ""
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr ""
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr ""
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr ""
1852
 
1877
  msgstr ""
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr ""
1883
 
1886
  msgstr ""
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr ""
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr ""
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr ""
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr ""
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr ""
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr ""
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr ""
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr ""
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr ""
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr ""
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr ""
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr ""
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr ""
2706
 
languages/wp_statistics-es_ES.mo CHANGED
Binary file
languages/wp_statistics-es_ES.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-08-17 11:56:26+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -32,7 +92,7 @@ msgstr ""
32
 
33
  #: includes/optimization/tabs/wps-optimization-database.php:100
34
  msgid "Convert Now!"
35
- msgstr ""
36
 
37
  #: includes/optimization/tabs/wps-optimization-database.php:101
38
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
@@ -48,7 +108,7 @@ msgstr ""
48
 
49
  #: includes/settings/wps-settings.php:105
50
  msgid "Externals"
51
- msgstr ""
52
 
53
  #: includes/settings/tabs/wps-externals.php:219
54
  msgid "Piwik Referrer Spam Blacklist settings"
@@ -72,23 +132,23 @@ msgstr ""
72
 
73
  #: includes/settings/tabs/wps-externals.php:224
74
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
75
- msgstr ""
76
 
77
  #: includes/settings/tabs/wps-externals.php:230
78
  msgid "Piwik Referrer Spam Blacklist usage"
79
- msgstr ""
80
 
81
  #: includes/settings/tabs/wps-exclusions.php:148
82
  msgid "Treat corrupt browser info as a bot"
83
- msgstr ""
84
 
85
  #: includes/log/exclusions.php:24
86
  msgid "404 Pages"
87
- msgstr ""
88
 
89
  #: includes/log/top-visitors.php:26
90
  msgid "Date"
91
- msgstr ""
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:151
94
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
@@ -96,11 +156,11 @@ msgstr ""
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:215
98
  msgid "Excluded 404 pages"
99
- msgstr ""
100
 
101
  #: includes/settings/tabs/wps-exclusions.php:218
102
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
103
- msgstr ""
104
 
105
  #: wps-updates.php:29
106
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
@@ -116,19 +176,19 @@ msgstr ""
116
 
117
  #: includes/settings/tabs/wps-maintenance.php:77
118
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
119
- msgstr ""
120
 
121
  #: includes/settings/tabs/wps-maintenance.php:71
122
  msgid "Prune visitors with more than"
123
- msgstr ""
124
 
125
  #: includes/settings/tabs/wps-maintenance.php:65
126
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
127
- msgstr ""
128
 
129
  #: includes/optimization/tabs/wps-optimization-purging.php:217
130
  msgid "Purge visitors with more than"
131
- msgstr ""
132
 
133
  #: includes/optimization/tabs/wps-optimization-purging.php:222
134
  msgid "hits"
@@ -140,79 +200,75 @@ msgstr ""
140
 
141
  #: includes/functions/purge-hits.php:28
142
  msgid "No visitors found to purge."
143
- msgstr ""
144
 
145
  #: includes/functions/purge-hits.php:25
146
  msgid "%s records purged successfully."
147
- msgstr ""
148
 
149
  #: ajax.php:174 includes/functions/purge-hits.php:32
150
  msgid "Number of hits must be greater than or equal to 10!"
151
- msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
- msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
- msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
- msgstr "Comentario Número de"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
- msgstr "Número de spam"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
- msgstr "Número de usuario"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
- msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
- msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
- msgstr ""
184
-
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
 
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
- msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
- msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
213
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
214
  msgid "Hits Statistics Summary"
215
- msgstr ""
216
 
217
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
218
  msgid "Chart Total"
@@ -224,9 +280,9 @@ msgstr ""
224
 
225
  #: includes/log/log.php:57
226
  msgid "Have you thought about donating to WP Statistics?"
227
- msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -240,59 +296,59 @@ msgstr ""
240
 
241
  #: includes/log/log.php:57
242
  msgid "Donate Now!"
243
- msgstr ""
244
 
245
  #: includes/log/log.php:57
246
  msgid "Close"
247
- msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
- msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
- msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
- msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
273
  #: includes/log/top-pages.php:95
274
  msgid "Rank #5"
275
- msgstr ""
276
 
277
  #: includes/log/top-pages.php:95
278
  msgid "Rank #4"
279
- msgstr ""
280
 
281
  #: includes/log/top-pages.php:95
282
  msgid "Rank #3"
283
- msgstr ""
284
 
285
  #: includes/log/top-pages.php:95
286
  msgid "Rank #1"
287
- msgstr ""
288
 
289
  #: includes/log/top-pages.php:95
290
  msgid "Rank #2"
291
- msgstr ""
292
 
293
  #: includes/optimization/tabs/wps-optimization-database.php:56
294
  msgid "Visits Table"
295
- msgstr ""
296
 
297
  #: includes/optimization/tabs/wps-optimization-database.php:70
298
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
@@ -308,15 +364,15 @@ msgstr ""
308
 
309
  #: includes/log/last-visitor.php:68
310
  msgid "Filtered by"
311
- msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
- msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
- msgstr "MM/DD/YYYY"
320
 
321
  #: includes/settings/tabs/wps-general.php:342
322
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
@@ -324,7 +380,7 @@ msgstr ""
324
 
325
  #: includes/settings/tabs/wps-general.php:336
326
  msgid "Force English"
327
- msgstr ""
328
 
329
  #: includes/settings/tabs/wps-general.php:331
330
  msgid "Languages"
@@ -340,51 +396,51 @@ msgstr ""
340
 
341
  #: includes/settings/tabs/wps-exclusions.php:222
342
  msgid "Excluded URLs list"
343
- msgstr ""
344
 
345
  #: includes/log/exclusions.php:24
346
  msgid "Excluded URL"
347
- msgstr ""
348
 
349
  #: includes/log/widgets/summary.php:66
350
  msgid "Last 365 Days (Year)"
351
- msgstr ""
352
 
353
  #: includes/log/widgets/summary.php:60
354
  msgid "Last 30 Days (Month)"
355
- msgstr ""
356
 
357
  #: includes/log/widgets/summary.php:54
358
  msgid "Last 7 Days (Week)"
359
- msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
- msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
- msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
- msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
- msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
- msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
- msgstr ""
384
 
385
  #: editor.php:69
386
  msgid "Hits in the last 20 days"
387
- msgstr ""
388
 
389
  #: includes/log/exclusions.php:24
390
  msgid "Feeds"
@@ -396,11 +452,11 @@ msgstr ""
396
 
397
  #: includes/log/exclusions.php:24
398
  msgid "Login Page"
399
- msgstr ""
400
 
401
  #: includes/log/exclusions.php:24
402
  msgid "Admin Page"
403
- msgstr ""
404
 
405
  #: includes/log/exclusions.php:24
406
  msgid "Self Referral"
@@ -412,7 +468,7 @@ msgstr ""
412
 
413
  #: includes/log/exclusions.php:24
414
  msgid "Robot"
415
- msgstr ""
416
 
417
  #: includes/log/online.php:100
418
  msgid "Currently there are no users online in the site."
@@ -432,7 +488,7 @@ msgstr ""
432
 
433
  #: includes/log/exclusions.php:24
434
  msgid "Hostname"
435
- msgstr ""
436
 
437
  #: includes/settings/tabs/wps-general.php:93
438
  #: includes/settings/tabs/wps-general.php:133
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Por cada visita para tener en cuenta varios golpes. Actualmente %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Páginas"
488
 
@@ -681,7 +737,7 @@ msgstr ""
681
 
682
  #: includes/settings/tabs/wps-notifications.php:59
683
  msgid "Update Reports"
684
- msgstr ""
685
 
686
  #: includes/log/exclusions.php:24
687
  #: includes/settings/tabs/wps-notifications.php:64
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Usuarios conectados"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Visitante de hoy"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Visitas hoy"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Ayer visitante"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Ayer visite"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Visitantes total"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Total de visitas"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Ninguno"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Tipo de mapa"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -871,11 +927,11 @@ msgstr "JQVMap"
871
 
872
  #: includes/settings/tabs/wps-overview-display.php:135
873
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
874
- msgstr "El \"Google\" opción usará servicio de mapeo de Google trazar los últimos visitantes (requiere acceso a Google)."
875
 
876
  #: includes/settings/tabs/wps-overview-display.php:136
877
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
878
- msgstr "El \"JQVMap\" opción usará JQVMap biblioteca javascript de mapeo trazar los últimos visitantes (no requiere ningún servicio extenral)."
879
 
880
  #: includes/settings/tabs/wps-overview-display.php:142
881
  msgid "Disable map"
@@ -1013,7 +1069,7 @@ msgstr "Una vez cada 2 semanas"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Una vez cada 4 semanas"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Estadísticas"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Estadísticas"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Mostrar las estadísticas del sitio en la barra lateral."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Visitas semanales"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Visitas mensuales"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Visitas anuales"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Total páginas vistas"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Total páginas vistas"
1041
  msgid "Search Engine referred"
1042
  msgstr "Motor de búsqueda se refiere"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Total entradas"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Total páginas"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Total comentarios"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Total spam"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Total usuarios"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Medía por artículos"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Media por comentarios"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Media por usuarios"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Fecha de última entrada"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Nombre"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Elementos"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Visitas ayer"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Motor de búsqueda se refiere"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Selecciona el tipo de motor de búsqueda"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "Estadísticas de WP"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Estadísticas completas para su sitio de WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Usuario en línea de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "Página de configuración"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Seguimiento golpe en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Visita de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP colección no está activo, por favor vaya a %s y activar esta función."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Configuración"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Haga clic aquí para visitar el plugin en WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Visita la página de WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Haga clic aquí para calificar y revisar este plugin en WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Tasa de este plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
- msgstr "Estadísticas de WP - Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Resumen"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Búsquedas"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Palabras de búsqueda"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
- msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimización"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manual"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Visitante de hoy"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Visite hoy"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Ayer visitante"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Ver estadísticas"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Descargar archivo ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Descargar archivo HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Manual archivo no encontrado."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "No tienes permisos suficientes para acceder a esta página."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1288,11 +1323,11 @@ msgstr "browscap ya en la versión actual."
1288
 
1289
  #: wps-updates.php:320
1290
  msgid "Browscap.ini update on"
1291
- msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1321,7 +1356,7 @@ msgstr ""
1321
  #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
1322
  #: includes/log/widgets/hits.php:10
1323
  msgid "Hit Statistics"
1324
- msgstr "Golpear las estadísticas"
1325
 
1326
  #: dashboard.php:60 includes/log/widgets/pages.php:14
1327
  msgid "Top 10 Pages"
@@ -1342,7 +1377,7 @@ msgstr "Principales sitios de referencia"
1342
  #: dashboard.php:63 includes/log/widgets/search.php:10
1343
  #: includes/log/widgets/summary.php:89
1344
  msgid "Search Engine Referrals"
1345
- msgstr "Referencias del motor de búsqueda"
1346
 
1347
  #: dashboard.php:64 includes/log/widgets/summary.php:8
1348
  msgid "Summary"
@@ -1357,7 +1392,7 @@ msgstr "Las últimas palabras de búsqueda"
1357
  #: dashboard.php:66 includes/log/widgets/top.visitors.php:10
1358
  #: includes/settings/tabs/wps-overview-display.php:35
1359
  msgid "Top 10 Visitors Today"
1360
- msgstr ""
1361
 
1362
  #: dashboard.php:97
1363
  msgid "Please reload the dashboard to display the content of this widget."
@@ -1377,23 +1412,25 @@ msgstr "No se puede cargar la base de datos GeoIP, asegúrese de que lo hayas de
1377
 
1378
  #: includes/functions/geoip-populate.php:48
1379
  msgid "Updated %s GeoIP records in the visitors database."
1380
- msgstr "Actualizado %s GeoIP registros en la base de datos de los visitantes."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "datos de %s mayores de %s días purgadas con éxito."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "No hay registros encontrados para purgar de %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
- msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Por favor, seleccione un valor de más de 30 días."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Haga clic para alternar"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Navegadores"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Atención: La exclusión no son actualmente establecido en grabarse, aba
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Estadísticas de exclusiones"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 días"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 días"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 días"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 meses"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 meses"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 meses"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 meses"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 año"
1483
 
@@ -1487,7 +1524,7 @@ msgstr "Tabla estadística de exclusiones"
1487
 
1488
  #: includes/log/exclusions.php:95
1489
  msgid "Excluded hits in the last"
1490
- msgstr "Excluyen golpes en los últimos"
1491
 
1492
  #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1493
  #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
@@ -1555,7 +1592,7 @@ msgstr "De"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Todo"
1561
 
@@ -1581,15 +1618,15 @@ msgstr "Página de tendencia"
1581
 
1582
  #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1583
  msgid "Search Engine Referral Statistics"
1584
- msgstr "Búsqueda motor referencia estadística"
1585
 
1586
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1587
  msgid "Search engine referrals in the last"
1588
- msgstr "Búsqueda motor referidos en los últimos"
1589
 
1590
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1591
  msgid "Number of referrals"
1592
- msgstr "Número de referencias"
1593
 
1594
  #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1595
  #: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
@@ -1604,7 +1641,7 @@ msgstr "Principales países"
1604
  #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
1605
  #: includes/log/widgets/top.visitors.php:30
1606
  msgid "Rank"
1607
- msgstr "Rank"
1608
 
1609
  #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
1610
  #: includes/log/widgets/top.visitors.php:32
@@ -1618,7 +1655,7 @@ msgstr "País"
1618
 
1619
  #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
1620
  msgid "Visitor Count"
1621
- msgstr "Conde de visitante"
1622
 
1623
  #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
1624
  msgid "Top Pages"
@@ -1634,7 +1671,7 @@ msgstr "Top 5 página tendencias estadísticas"
1634
 
1635
  #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
1636
  msgid "Number of Hits"
1637
- msgstr "Número de visitas"
1638
 
1639
  #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
1640
  msgid "No page title found"
@@ -1643,7 +1680,7 @@ msgstr "No encontró el título de página"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Visitas"
1649
 
@@ -1697,7 +1734,7 @@ msgstr "Otros"
1697
 
1698
  #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
1699
  msgid "Today Visitors Map"
1700
- msgstr "Hoy en día los visitantes mapa"
1701
 
1702
  #: includes/log/widgets/referring.php:60
1703
  msgid "Address"
@@ -1736,10 +1773,10 @@ msgid "Time: %s"
1736
  msgstr "Tiempo: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
- msgstr "Hits"
1743
 
1744
  #: includes/log/widgets/top.visitors.php:34
1745
  msgid "IP"
@@ -1779,11 +1816,11 @@ msgstr "datos de %s plataforma eliminados satisfactoriamente."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "datos de la tabla de %s eliminados satisfactoriamente."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Error, %s no vaciado."
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Índice de base de datos"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Países"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Felicitaciones, su instalación es ya hasta la fecha, nada que ver."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Exportación"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "La exportación de"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "La exportación de"
1858
  msgid "Please select"
1859
  msgstr "Por favor, seleccione"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Seleccione la tabla para el archivo de salida."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Exportar a"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Visitantes"
1899
 
@@ -2160,15 +2197,15 @@ msgstr "La cadena de agente de usuario cliente."
2160
 
2161
  #: includes/optimization/tabs/wps-optimization-resources.php:278
2162
  msgid "Browser"
2163
- msgstr ""
2164
 
2165
  #: includes/optimization/tabs/wps-optimization-resources.php:285
2166
  msgid "The detected client browser."
2167
- msgstr ""
2168
 
2169
  #: includes/optimization/tabs/wps-optimization-resources.php:296
2170
  msgid "The detected client browser version."
2171
- msgstr ""
2172
 
2173
  #: includes/optimization/tabs/wps-optimization-resources.php:307
2174
  msgid "The detected client platform."
@@ -2208,23 +2245,23 @@ msgstr "Direcciones IP reemplazado con valores hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Instale la rutina completa."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Recursos e información"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Purga"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Base de datos"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Actualizaciones"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2234,11 +2271,11 @@ msgstr "WP Statistics V %s"
2234
 
2235
  #: includes/settings/tabs/wps-about.php:28
2236
  msgid "Visit Us Online"
2237
- msgstr "Visítenos en línea"
2238
 
2239
  #: includes/settings/tabs/wps-about.php:32
2240
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2241
- msgstr "Venga a visitar nuestra gran %s nueva y mantenerse al día sobre las últimas noticias acerca de las WP Statistics."
2242
 
2243
  #: includes/settings/tabs/wps-about.php:32
2244
  msgid "website"
@@ -2274,7 +2311,7 @@ msgstr "sitio de traducción en colaboración"
2274
 
2275
  #: includes/settings/tabs/wps-about.php:48
2276
  msgid "drop us a line"
2277
- msgstr "Cáiganos una línea"
2278
 
2279
  #: includes/settings/tabs/wps-about.php:52
2280
  msgid "Support"
@@ -2299,7 +2336,7 @@ msgstr "Manual"
2299
 
2300
  #: includes/settings/tabs/wps-about.php:62
2301
  msgid "Have you search the %s for a similar issue?"
2302
- msgstr "¿Tienes que buscar el %s para un problema similar?"
2303
 
2304
  #: includes/settings/tabs/wps-about.php:62
2305
  msgid "support forum"
@@ -2311,7 +2348,7 @@ msgstr "¿Tienes que buscar en Internet para cualquier mensaje de error que est
2311
 
2312
  #: includes/settings/tabs/wps-about.php:64
2313
  msgid "Make sure you have access to your PHP error logs."
2314
- msgstr ""
2315
 
2316
  #: includes/settings/tabs/wps-about.php:67
2317
  msgid "And a few things to double-check:"
@@ -2367,7 +2404,7 @@ msgstr "Farsi"
2367
 
2368
  #: includes/settings/tabs/wps-exclusions.php:21
2369
  msgid "WP Statistics Honey Pot Page"
2370
- msgstr ""
2371
 
2372
  #: includes/settings/tabs/wps-exclusions.php:22
2373
  msgid "This is the honey pot for WP Statistics to use, do not delete."
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Si usted necesita una solución más robusta para delegar el acceso que tal vez quieras ver %s en el directorio del plugin de WordPress."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Exclusiones"
2414
 
@@ -2473,7 +2510,7 @@ msgstr ""
2473
 
2474
  #: includes/settings/tabs/wps-exclusions.php:115
2475
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2476
- msgstr ""
2477
 
2478
  #: includes/settings/tabs/wps-exclusions.php:120
2479
  msgid "Excluded IP address list"
@@ -2497,23 +2534,23 @@ msgstr "Añadir 192.168.0.0"
2497
 
2498
  #: includes/settings/tabs/wps-exclusions.php:131
2499
  msgid "Use honey pot"
2500
- msgstr ""
2501
 
2502
  #: includes/settings/tabs/wps-exclusions.php:134
2503
  msgid "Use a honey pot page to identify robots."
2504
- msgstr ""
2505
 
2506
  #: includes/settings/tabs/wps-exclusions.php:139
2507
  msgid "Honey pot post id"
2508
- msgstr ""
2509
 
2510
  #: includes/settings/tabs/wps-exclusions.php:142
2511
  msgid "The post id to use for the honeypot page."
2512
- msgstr ""
2513
 
2514
  #: includes/settings/tabs/wps-exclusions.php:143
2515
  msgid "Create a new honey pot page"
2516
- msgstr ""
2517
 
2518
  #: includes/settings/tabs/wps-exclusions.php:156
2519
  msgid "GeoIP Exclusions"
@@ -2557,7 +2594,7 @@ msgstr "Sitio URL exclusiones"
2557
 
2558
  #: includes/settings/tabs/wps-exclusions.php:194
2559
  msgid "Excluded login page"
2560
- msgstr "Página de login excluidos"
2561
 
2562
  #: includes/settings/tabs/wps-exclusions.php:197
2563
  msgid "Exclude the login page for registering as a hit."
@@ -2565,7 +2602,7 @@ msgstr "Excluyen a la página de inicio de sesión para registrarse como un éxi
2565
 
2566
  #: includes/settings/tabs/wps-exclusions.php:201
2567
  msgid "Excluded admin pages"
2568
- msgstr "Admin excluidos páginas"
2569
 
2570
  #: includes/settings/tabs/wps-exclusions.php:204
2571
  msgid "Exclude the admin pages for registering as a hit."
@@ -2577,7 +2614,7 @@ msgstr ""
2577
 
2578
  #: includes/settings/tabs/wps-exclusions.php:211
2579
  msgid "Exclude the RSS feeds for registering as a hit."
2580
- msgstr ""
2581
 
2582
  #: includes/settings/tabs/wps-externals.php:162
2583
  msgid "browscap settings"
@@ -2663,7 +2700,7 @@ msgstr "Esto eliminará el manual cuando usted guardar los ajustes, ¿estás seg
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Esta característica no almacenará direcciones IP en la base de datos pero en su lugar utiliza un hash único. La string \"Store todo usuario agente\" ajuste estará desactivada si éste está seleccionado. Usted no será capaz de recuperar las direcciones IP en el futuro para recuperar información de ubicación si esta opción está activada."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Usuarios en línea"
2669
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-25 16:02:51+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "Índice de base de datos de visitas"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr "Índice de paises"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr "tabla de búsqueda"
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr "página de configuración"
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ","
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "seguimiento de accesos"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
92
 
93
  #: includes/optimization/tabs/wps-optimization-database.php:100
94
  msgid "Convert Now!"
95
+ msgstr "¡Convertir ahora!"
96
 
97
  #: includes/optimization/tabs/wps-optimization-database.php:101
98
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
108
 
109
  #: includes/settings/wps-settings.php:105
110
  msgid "Externals"
111
+ msgstr "Externos"
112
 
113
  #: includes/settings/tabs/wps-externals.php:219
114
  msgid "Piwik Referrer Spam Blacklist settings"
132
 
133
  #: includes/settings/tabs/wps-externals.php:224
134
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
135
+ msgstr "Piwik provee la blacklist de spamers. Está disponible en %s."
136
 
137
  #: includes/settings/tabs/wps-externals.php:230
138
  msgid "Piwik Referrer Spam Blacklist usage"
139
+ msgstr "Uso de la blacklist de Piwik"
140
 
141
  #: includes/settings/tabs/wps-exclusions.php:148
142
  msgid "Treat corrupt browser info as a bot"
143
+ msgstr "Tratar información corrupta del navegador como un bot"
144
 
145
  #: includes/log/exclusions.php:24
146
  msgid "404 Pages"
147
+ msgstr "Páginas 404"
148
 
149
  #: includes/log/top-visitors.php:26
150
  msgid "Date"
151
+ msgstr "Fecha"
152
 
153
  #: includes/settings/tabs/wps-exclusions.php:151
154
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
156
 
157
  #: includes/settings/tabs/wps-exclusions.php:215
158
  msgid "Excluded 404 pages"
159
+ msgstr "Páginas 404 excluidas"
160
 
161
  #: includes/settings/tabs/wps-exclusions.php:218
162
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
163
+ msgstr "Excluir cualquier URL que devuelva un mensaje del tipo \" 404 - Not found\"."
164
 
165
  #: wps-updates.php:29
166
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
176
 
177
  #: includes/settings/tabs/wps-maintenance.php:77
178
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
179
+ msgstr "Número de visitas necesarias para eliminar un visitante. Los valores no válidos desactivarán el mantenimiento diario (debe ser 10 o superior)."
180
 
181
  #: includes/settings/tabs/wps-maintenance.php:71
182
  msgid "Prune visitors with more than"
183
+ msgstr "Purgue los visitantes con más de"
184
 
185
  #: includes/settings/tabs/wps-maintenance.php:65
186
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
187
+ msgstr "WP Cron se llevará a cabo su trabajo todos los días para purgar los datos estadísticos de los usuarios que tengan más visitas en un día que el número definido de visitas por día (normalmente esto significa que son un bot)."
188
 
189
  #: includes/optimization/tabs/wps-optimization-purging.php:217
190
  msgid "Purge visitors with more than"
191
+ msgstr "Purgar los visitantes con más de"
192
 
193
  #: includes/optimization/tabs/wps-optimization-purging.php:222
194
  msgid "hits"
200
 
201
  #: includes/functions/purge-hits.php:28
202
  msgid "No visitors found to purge."
203
+ msgstr "No se encontraron visitantes para purgar."
204
 
205
  #: includes/functions/purge-hits.php:25
206
  msgid "%s records purged successfully."
207
+ msgstr "%s registros purgados con éxito."
208
 
209
  #: ajax.php:174 includes/functions/purge-hits.php:32
210
  msgid "Number of hits must be greater than or equal to 10!"
211
+ msgstr "¡El número de accesos debe ser mayor que o igual a 10!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
+ msgstr "Visitas a la página"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
+ msgstr "Número de páginas"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
+ msgstr "Número de comentarios"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
+ msgstr "Número de spams"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
+ msgstr "Número de usuarios"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
+ msgstr "Promedio de posts"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
+ msgstr "Promedio de comentarios"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
+ msgstr "Promedio de usuarios"
 
 
 
 
244
 
245
+ #: shortcode.php:162
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
+ msgstr "Formato del número"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
+ msgstr "Inglés"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
269
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
270
  msgid "Hits Statistics Summary"
271
+ msgstr "Resumen de hitos"
272
 
273
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
274
  msgid "Chart Total"
280
 
281
  #: includes/log/log.php:57
282
  msgid "Have you thought about donating to WP Statistics?"
283
+ msgstr "¿Has pensado en hacer una donación a WP Statistics?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
296
 
297
  #: includes/log/log.php:57
298
  msgid "Donate Now!"
299
+ msgstr "¡Donar ahora!"
300
 
301
  #: includes/log/log.php:57
302
  msgid "Close"
303
+ msgstr "Cerrar"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
+ msgstr "Seleccione la estadística que desea mostrar."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
+ msgstr "Nº de post"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
+ msgstr "Período de tiempo"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
329
  #: includes/log/top-pages.php:95
330
  msgid "Rank #5"
331
+ msgstr "Puesto # 5"
332
 
333
  #: includes/log/top-pages.php:95
334
  msgid "Rank #4"
335
+ msgstr "Puesto # 4"
336
 
337
  #: includes/log/top-pages.php:95
338
  msgid "Rank #3"
339
+ msgstr "Puesto # 3"
340
 
341
  #: includes/log/top-pages.php:95
342
  msgid "Rank #1"
343
+ msgstr "Puesto # 1"
344
 
345
  #: includes/log/top-pages.php:95
346
  msgid "Rank #2"
347
+ msgstr "Puesto # 2"
348
 
349
  #: includes/optimization/tabs/wps-optimization-database.php:56
350
  msgid "Visits Table"
351
+ msgstr "Tabla de visitas"
352
 
353
  #: includes/optimization/tabs/wps-optimization-database.php:70
354
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
364
 
365
  #: includes/log/last-visitor.php:68
366
  msgid "Filtered by"
367
+ msgstr "Filtrado por"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
+ msgstr "Alcance"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
+ msgstr "MM/DD/AAAA"
376
 
377
  #: includes/settings/tabs/wps-general.php:342
378
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
380
 
381
  #: includes/settings/tabs/wps-general.php:336
382
  msgid "Force English"
383
+ msgstr "Forzar Inglés"
384
 
385
  #: includes/settings/tabs/wps-general.php:331
386
  msgid "Languages"
396
 
397
  #: includes/settings/tabs/wps-exclusions.php:222
398
  msgid "Excluded URLs list"
399
+ msgstr "Lista de URL omitidas"
400
 
401
  #: includes/log/exclusions.php:24
402
  msgid "Excluded URL"
403
+ msgstr "URL omitida"
404
 
405
  #: includes/log/widgets/summary.php:66
406
  msgid "Last 365 Days (Year)"
407
+ msgstr "Últimos 365 días (año)"
408
 
409
  #: includes/log/widgets/summary.php:60
410
  msgid "Last 30 Days (Month)"
411
+ msgstr "Últimos 30 Días (Mes)"
412
 
413
  #: includes/log/widgets/summary.php:54
414
  msgid "Last 7 Days (Week)"
415
+ msgstr "Últimos 7 días (Semana)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
+ msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
+ msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
+ msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
+ msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
+ msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
+ msgstr "Baidu"
440
 
441
  #: editor.php:69
442
  msgid "Hits in the last 20 days"
443
+ msgstr "Hits de los últimos 20 días"
444
 
445
  #: includes/log/exclusions.php:24
446
  msgid "Feeds"
452
 
453
  #: includes/log/exclusions.php:24
454
  msgid "Login Page"
455
+ msgstr "Página de Acceso"
456
 
457
  #: includes/log/exclusions.php:24
458
  msgid "Admin Page"
459
+ msgstr "Página de Administración"
460
 
461
  #: includes/log/exclusions.php:24
462
  msgid "Self Referral"
468
 
469
  #: includes/log/exclusions.php:24
470
  msgid "Robot"
471
+ msgstr "Robot"
472
 
473
  #: includes/log/online.php:100
474
  msgid "Currently there are no users online in the site."
488
 
489
  #: includes/log/exclusions.php:24
490
  msgid "Hostname"
491
+ msgstr "Nombre del host"
492
 
493
  #: includes/settings/tabs/wps-general.php:93
494
  #: includes/settings/tabs/wps-general.php:133
537
  msgstr "Por cada visita para tener en cuenta varios golpes. Actualmente %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Páginas"
544
 
737
 
738
  #: includes/settings/tabs/wps-notifications.php:59
739
  msgid "Update Reports"
740
+ msgstr "Informes de Actualización"
741
 
742
  #: includes/log/exclusions.php:24
743
  #: includes/settings/tabs/wps-notifications.php:64
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Usuarios conectados"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Visitante de hoy"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Visitas hoy"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Ayer visitante"
844
 
847
  msgstr "Ayer visite"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Visitantes total"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Total de visitas"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Ninguno"
863
 
916
  msgid "Map type"
917
  msgstr "Tipo de mapa"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
927
 
928
  #: includes/settings/tabs/wps-overview-display.php:135
929
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
930
+ msgstr "La opción de \"Google\" usará el servicio de mapeo de Google para localizar los últimos visitantes (requiere acceso a Google)."
931
 
932
  #: includes/settings/tabs/wps-overview-display.php:136
933
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
934
+ msgstr "La opción \"JQVMap\" usará la biblioteca de mapeo javascript JQVMap para localizar los últimos visitantes (no requiere ningún servicio externo)."
935
 
936
  #: includes/settings/tabs/wps-overview-display.php:142
937
  msgid "Disable map"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Una vez cada 4 semanas"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Estadísticas"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Mostrar las estadísticas del sitio en la barra lateral."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Visitas semanales"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Visitas mensuales"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Visitas anuales"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Total páginas vistas"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Motor de búsqueda se refiere"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Total entradas"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Total páginas"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Total comentarios"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Total spam"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Total usuarios"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Medía por artículos"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Media por comentarios"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Media por usuarios"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Fecha de última entrada"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Nombre"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Elementos"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Visitas ayer"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Motor de búsqueda se refiere"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Selecciona el tipo de motor de búsqueda"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "Estadísticas de WP"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Estadísticas completas para su sitio de WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Configuración"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Haga clic aquí para visitar el plugin en WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Visita la página de WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Haga clic aquí para calificar y revisar este plugin en WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Tasa de este plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
+ msgstr "Estadísticas de WP - Hitos"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Resumen"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Búsquedas"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Palabras de búsqueda"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
+ msgstr "Lista de visitantes de hoy"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimización"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manual"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Visitante de hoy"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Visite hoy"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Ayer visitante"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Ver estadísticas"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Descargar archivo ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Descargar archivo HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Manual archivo no encontrado."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "No tienes permisos suficientes para acceder a esta página."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1323
 
1324
  #: wps-updates.php:320
1325
  msgid "Browscap.ini update on"
1326
+ msgstr "Actualización Browscap.ini en"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1356
  #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
1357
  #: includes/log/widgets/hits.php:10
1358
  msgid "Hit Statistics"
1359
+ msgstr "Estadística de hitos"
1360
 
1361
  #: dashboard.php:60 includes/log/widgets/pages.php:14
1362
  msgid "Top 10 Pages"
1377
  #: dashboard.php:63 includes/log/widgets/search.php:10
1378
  #: includes/log/widgets/summary.php:89
1379
  msgid "Search Engine Referrals"
1380
+ msgstr "Referencias por motores de búsqueda"
1381
 
1382
  #: dashboard.php:64 includes/log/widgets/summary.php:8
1383
  msgid "Summary"
1392
  #: dashboard.php:66 includes/log/widgets/top.visitors.php:10
1393
  #: includes/settings/tabs/wps-overview-display.php:35
1394
  msgid "Top 10 Visitors Today"
1395
+ msgstr "Top 10 de visitas de hoy"
1396
 
1397
  #: dashboard.php:97
1398
  msgid "Please reload the dashboard to display the content of this widget."
1412
 
1413
  #: includes/functions/geoip-populate.php:48
1414
  msgid "Updated %s GeoIP records in the visitors database."
1415
+ msgstr "Actualizados %s registros GeoIP en la base de datos de visitantes."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "datos de %s mayores de %s días purgadas con éxito."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "No hay registros encontrados para purgar de %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
+ msgstr "Purgado de la base de datos activado"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Por favor, seleccione un valor de más de 30 días."
1436
 
1456
  msgstr "Haga clic para alternar"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Navegadores"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Estadísticas de exclusiones"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 días"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 días"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 días"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 meses"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 meses"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 meses"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 meses"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 año"
1520
 
1524
 
1525
  #: includes/log/exclusions.php:95
1526
  msgid "Excluded hits in the last"
1527
+ msgstr "Excluir accesos en los últimos"
1528
 
1529
  #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1530
  #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Todo"
1598
 
1618
 
1619
  #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1620
  msgid "Search Engine Referral Statistics"
1621
+ msgstr "Estadística de referencias por motores de búsqueda"
1622
 
1623
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1624
  msgid "Search engine referrals in the last"
1625
+ msgstr "Motores de búsqueda de los últimos"
1626
 
1627
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1628
  msgid "Number of referrals"
1629
+ msgstr "Referencias"
1630
 
1631
  #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1632
  #: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
1641
  #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
1642
  #: includes/log/widgets/top.visitors.php:30
1643
  msgid "Rank"
1644
+ msgstr "Puesto"
1645
 
1646
  #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
1647
  #: includes/log/widgets/top.visitors.php:32
1655
 
1656
  #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
1657
  msgid "Visitor Count"
1658
+ msgstr ""
1659
 
1660
  #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
1661
  msgid "Top Pages"
1671
 
1672
  #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
1673
  msgid "Number of Hits"
1674
+ msgstr "Número de accesos"
1675
 
1676
  #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
1677
  msgid "No page title found"
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Visitas"
1686
 
1734
 
1735
  #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
1736
  msgid "Today Visitors Map"
1737
+ msgstr "Mapa de visitantes diarios"
1738
 
1739
  #: includes/log/widgets/referring.php:60
1740
  msgid "Address"
1773
  msgstr "Tiempo: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
+ msgstr "Hitos"
1780
 
1781
  #: includes/log/widgets/top.visitors.php:34
1782
  msgid "IP"
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "datos de la tabla de %s eliminados satisfactoriamente."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Error, %s no vaciado."
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Países"
1852
 
1877
  msgstr "Felicitaciones, su instalación es ya hasta la fecha, nada que ver."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Exportación"
1883
 
1886
  msgstr "La exportación de"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Por favor, seleccione"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Seleccione la tabla para el archivo de salida."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Exportar a"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Visitantes"
1936
 
2197
 
2198
  #: includes/optimization/tabs/wps-optimization-resources.php:278
2199
  msgid "Browser"
2200
+ msgstr "Navegador"
2201
 
2202
  #: includes/optimization/tabs/wps-optimization-resources.php:285
2203
  msgid "The detected client browser."
2204
+ msgstr "Navegador del cliente detectado"
2205
 
2206
  #: includes/optimization/tabs/wps-optimization-resources.php:296
2207
  msgid "The detected client browser version."
2208
+ msgstr "Versión del navegador del cliente detectada."
2209
 
2210
  #: includes/optimization/tabs/wps-optimization-resources.php:307
2211
  msgid "The detected client platform."
2245
  msgid "Install routine complete."
2246
  msgstr "Instale la rutina completa."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Recursos e información"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Purga"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Base de datos"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Actualizaciones"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2271
 
2272
  #: includes/settings/tabs/wps-about.php:28
2273
  msgid "Visit Us Online"
2274
+ msgstr "Visítenos"
2275
 
2276
  #: includes/settings/tabs/wps-about.php:32
2277
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2278
+ msgstr "Visite nuestra nueva %s y manténgase al día sobre las últimas novedades acerca de WP Statistics."
2279
 
2280
  #: includes/settings/tabs/wps-about.php:32
2281
  msgid "website"
2311
 
2312
  #: includes/settings/tabs/wps-about.php:48
2313
  msgid "drop us a line"
2314
+ msgstr "Escríbanos"
2315
 
2316
  #: includes/settings/tabs/wps-about.php:52
2317
  msgid "Support"
2336
 
2337
  #: includes/settings/tabs/wps-about.php:62
2338
  msgid "Have you search the %s for a similar issue?"
2339
+ msgstr "¿Ha buscado en %s sobre un problema similar?"
2340
 
2341
  #: includes/settings/tabs/wps-about.php:62
2342
  msgid "support forum"
2348
 
2349
  #: includes/settings/tabs/wps-about.php:64
2350
  msgid "Make sure you have access to your PHP error logs."
2351
+ msgstr "Asegúrese de tener acceso a su registro de errores de PHP."
2352
 
2353
  #: includes/settings/tabs/wps-about.php:67
2354
  msgid "And a few things to double-check:"
2404
 
2405
  #: includes/settings/tabs/wps-exclusions.php:21
2406
  msgid "WP Statistics Honey Pot Page"
2407
+ msgstr "Estadísticas WP de la página Honey Pot"
2408
 
2409
  #: includes/settings/tabs/wps-exclusions.php:22
2410
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2444
  msgstr "Si usted necesita una solución más robusta para delegar el acceso que tal vez quieras ver %s en el directorio del plugin de WordPress."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Exclusiones"
2451
 
2510
 
2511
  #: includes/settings/tabs/wps-exclusions.php:115
2512
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2513
+ msgstr "Tratar a los visitantes con más de esta cantidad de visitas por día como robots. 0 = desactivado."
2514
 
2515
  #: includes/settings/tabs/wps-exclusions.php:120
2516
  msgid "Excluded IP address list"
2534
 
2535
  #: includes/settings/tabs/wps-exclusions.php:131
2536
  msgid "Use honey pot"
2537
+ msgstr "Usar honeypot"
2538
 
2539
  #: includes/settings/tabs/wps-exclusions.php:134
2540
  msgid "Use a honey pot page to identify robots."
2541
+ msgstr "Use la página honeypot para identificar robots."
2542
 
2543
  #: includes/settings/tabs/wps-exclusions.php:139
2544
  msgid "Honey pot post id"
2545
+ msgstr "ID del post Honeypot"
2546
 
2547
  #: includes/settings/tabs/wps-exclusions.php:142
2548
  msgid "The post id to use for the honeypot page."
2549
+ msgstr "ID del mensaje utilizado para la página honeypot."
2550
 
2551
  #: includes/settings/tabs/wps-exclusions.php:143
2552
  msgid "Create a new honey pot page"
2553
+ msgstr "Crear una nueva página honeypot"
2554
 
2555
  #: includes/settings/tabs/wps-exclusions.php:156
2556
  msgid "GeoIP Exclusions"
2594
 
2595
  #: includes/settings/tabs/wps-exclusions.php:194
2596
  msgid "Excluded login page"
2597
+ msgstr "Página de login excluidas"
2598
 
2599
  #: includes/settings/tabs/wps-exclusions.php:197
2600
  msgid "Exclude the login page for registering as a hit."
2602
 
2603
  #: includes/settings/tabs/wps-exclusions.php:201
2604
  msgid "Excluded admin pages"
2605
+ msgstr "Páginas de admin excluidas"
2606
 
2607
  #: includes/settings/tabs/wps-exclusions.php:204
2608
  msgid "Exclude the admin pages for registering as a hit."
2614
 
2615
  #: includes/settings/tabs/wps-exclusions.php:211
2616
  msgid "Exclude the RSS feeds for registering as a hit."
2617
+ msgstr "Excluir los RSS en el registro de accesos."
2618
 
2619
  #: includes/settings/tabs/wps-externals.php:162
2620
  msgid "browscap settings"
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Esta característica no almacenará direcciones IP en la base de datos pero en su lugar utiliza un hash único. La string \"Store todo usuario agente\" ajuste estará desactivada si éste está seleccionado. Usted no será capaz de recuperar las direcciones IP en el futuro para recuperar información de ubicación si esta opción está activada."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Usuarios en línea"
2706
 
languages/wp_statistics-fa_IR.mo CHANGED
Binary file
languages/wp_statistics-fa_IR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-05-25 12:49:33+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,105 +10,165 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
- msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
- msgstr ""
20
 
21
  #: includes/optimization/tabs/wps-optimization-database.php:107
22
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
23
- msgstr ""
24
 
25
  #: includes/optimization/tabs/wps-optimization-database.php:86
26
  msgid "Search Table"
27
- msgstr ""
28
 
29
  #: includes/optimization/tabs/wps-optimization-database.php:91
30
  msgid "Convert"
31
- msgstr ""
32
 
33
  #: includes/optimization/tabs/wps-optimization-database.php:100
34
  msgid "Convert Now!"
35
- msgstr ""
36
 
37
  #: includes/optimization/tabs/wps-optimization-database.php:101
38
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
39
- msgstr ""
40
 
41
  #: includes/log/exclusions.php:24
42
  msgid "Referrer Spam"
43
- msgstr ""
44
 
45
  #: includes/settings/tabs/wps-externals.php:277
46
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
47
- msgstr ""
48
 
49
  #: includes/settings/wps-settings.php:105
50
  msgid "Externals"
51
- msgstr ""
52
 
53
  #: includes/settings/tabs/wps-externals.php:219
54
  msgid "Piwik Referrer Spam Blacklist settings"
55
- msgstr ""
56
 
57
  #: includes/settings/tabs/wps-externals.php:254
58
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
59
- msgstr ""
60
 
61
  #: includes/settings/tabs/wps-externals.php:247
62
  msgid "Download Piwik Referrer Spam Blacklist Database"
63
- msgstr ""
64
 
65
  #: includes/settings/tabs/wps-externals.php:242
66
  msgid "Update Piwik Referrer Spam Blacklist Info"
67
- msgstr ""
68
 
69
  #: includes/settings/tabs/wps-externals.php:236
70
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
71
- msgstr ""
72
 
73
  #: includes/settings/tabs/wps-externals.php:224
74
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
75
- msgstr ""
76
 
77
  #: includes/settings/tabs/wps-externals.php:230
78
  msgid "Piwik Referrer Spam Blacklist usage"
79
- msgstr ""
80
 
81
  #: includes/settings/tabs/wps-exclusions.php:148
82
  msgid "Treat corrupt browser info as a bot"
83
- msgstr ""
84
 
85
  #: includes/log/exclusions.php:24
86
  msgid "404 Pages"
87
- msgstr ""
88
 
89
  #: includes/log/top-visitors.php:26
90
  msgid "Date"
91
- msgstr ""
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:151
94
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
95
- msgstr ""
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:215
98
  msgid "Excluded 404 pages"
99
- msgstr ""
100
 
101
  #: includes/settings/tabs/wps-exclusions.php:218
102
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
103
- msgstr ""
104
 
105
  #: wps-updates.php:29
106
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
107
- msgstr ""
108
 
109
  #: includes/settings/tabs/wps-general.php:281
110
  msgid "Add page title to empty search words"
111
- msgstr ""
112
 
113
  #: includes/settings/tabs/wps-general.php:287
114
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
@@ -116,7 +176,7 @@ msgstr ""
116
 
117
  #: includes/settings/tabs/wps-maintenance.php:77
118
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
119
- msgstr ""
120
 
121
  #: includes/settings/tabs/wps-maintenance.php:71
122
  msgid "Prune visitors with more than"
@@ -132,11 +192,11 @@ msgstr "پاک‌سازی بازدیدکنندگان بزرگتر از"
132
 
133
  #: includes/optimization/tabs/wps-optimization-purging.php:222
134
  msgid "hits"
135
- msgstr ""
136
 
137
  #: includes/optimization/tabs/wps-optimization-purging.php:223
138
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
139
- msgstr ""
140
 
141
  #: includes/functions/purge-hits.php:28
142
  msgid "No visitors found to purge."
@@ -144,89 +204,85 @@ msgstr "هیچ بازدیدکننده‌ای یافت نشد."
144
 
145
  #: includes/functions/purge-hits.php:25
146
  msgid "%s records purged successfully."
147
- msgstr "%s رکورد با موفقیت پاکسازی شدند."
148
 
149
  #: ajax.php:174 includes/functions/purge-hits.php:32
150
  msgid "Number of hits must be greater than or equal to 10!"
151
- msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "بازدید برگه‌ها"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "تعداد برگه‌ها"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "تعداد دیدگاه‌ها"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "تعداد جفنگ‌ها"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "تعداد کاربرها"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "میانگین نوشته"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "میانگین دیدگاه"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "میانگین کاربر"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "برای محاسبه آمارر از چارچوب زمانی strtotime () (http://php.net/manual/en/datetime.formats.php) استفاده می‌شود."
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "سرویس جستجو"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "سرویس دهنده جستجو برای گرفتن آمار."
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "قالب شماره"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "فرمت شماره ها برای نمایش: i18n، انگلیسی یا هیچ‌کدام."
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "انگلیسی"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "بین المللی"
212
 
213
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
214
  msgid "Hits Statistics Summary"
215
- msgstr "نمودار خلاصه آمار"
216
 
217
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
218
  msgid "Chart Total"
219
- msgstr "نمودار کل"
220
 
221
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
222
  msgid "All Time Total"
223
- msgstr ""
224
 
225
  #: includes/log/log.php:57
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "آیا در مورد حمایت به آمار وردپرس فکر کرده‌اید؟"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "حمایت مالی"
232
 
@@ -246,27 +302,27 @@ msgstr "هم‌اکنون حمایت می‌کنم!"
246
  msgid "Close"
247
  msgstr "بستن"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "بازدید را برای نوع نمایش انتخاب کنید."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "آمار"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "تعداد نوشته‌ها"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "قاب زمان"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "تا"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "برو"
272
 
@@ -296,31 +352,31 @@ msgstr "جدول بازدید‌ها"
296
 
297
  #: includes/optimization/tabs/wps-optimization-database.php:70
298
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
299
- msgstr "در نصب‌های قبلی‌تر محتواهای تکراری در جدول بازدید‌ها وجود دارد. نصب جدید با شاخص محنصر به فرد در این جدول محافظت می‌شود. برای ایجاد شاخص ابتدا باید شاخص محتواهای تکراری حذف شود. با کلیک برروی \"به‌روز رسانی\" جدول بازدیدها بررسی میشود و شاخص را اضافه می‌کند."
300
 
301
  #: includes/optimization/tabs/wps-optimization-database.php:71
302
  msgid "This operation could take a long time on installs with many rows in the visits table."
303
- msgstr "این عملیات می‌تواند به دلیل ردیف‌های زیاد در جدول بازدیدها زمان طولانی داشته باشد."
304
 
305
  #: includes/optimization/tabs/wps-optimization-database.php:76
306
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
307
- msgstr "نصب‌های قدیمی از آمار وردپرس به محتواهای تکراری در جدول بازدیدها اجازه نشتن می‌دهد. نصب جدید در برابر این شاخص منحصر به فرد محافظت شده است."
308
 
309
  #: includes/log/last-visitor.php:68
310
  msgid "Filtered by"
311
  msgstr "فیلتر توسط"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "از"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
321
  #: includes/settings/tabs/wps-general.php:342
322
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
323
- msgstr "اگر نمیخواهید افزونه برای شما ترجمه شود و از زبان پیش‌فرض انگلیسی استفاده شود. (نیازمند بارگزاری صفحه است)"
324
 
325
  #: includes/settings/tabs/wps-general.php:336
326
  msgid "Force English"
@@ -332,15 +388,15 @@ msgstr "زبان‌ها"
332
 
333
  #: includes/settings/tabs/wps-exclusions.php:227
334
  msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
335
- msgstr "نکته: این گزینه نمی‌تواند به آدرس های طولانی (هرچیزی پس از ؟) رسیدگی کند، تنها نام اسکریپت را وارد کنید. محتوا‌های کمتر از 2 کارکتر نادیده گرفته می‌شود."
336
 
337
  #: includes/settings/tabs/wps-exclusions.php:225
338
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
339
- msgstr "یک لیست از آدرس‌های محلی (به‌عنوان مثال: /wordpress/about، هر یک خط) که از مجموعه آماری استثنا باشند."
340
 
341
  #: includes/settings/tabs/wps-exclusions.php:222
342
  msgid "Excluded URLs list"
343
- msgstr "لیست استثنائات آدرس‌ها"
344
 
345
  #: includes/log/exclusions.php:24
346
  msgid "Excluded URL"
@@ -358,33 +414,33 @@ msgstr "30 روز گذشته (ماه)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "7 روز گذشته (هفته)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "یاهو!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "یاندکس"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "داک‌داک‌گو"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "بینگ"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "بایدو"
384
 
385
  #: editor.php:69
386
  msgid "Hits in the last 20 days"
387
- msgstr "آخرین بازدیدها در 20 روز گذشته"
388
 
389
  #: includes/log/exclusions.php:24
390
  msgid "Feeds"
@@ -442,7 +498,7 @@ msgstr "نام میزبان"
442
  #: includes/settings/tabs/wps-general.php:229
443
  #: includes/settings/tabs/wps-notifications.php:122
444
  msgid "Enable or disable this feature"
445
- msgstr "فعال یا غیرفعال کردن این امکان"
446
 
447
  #: includes/settings/tabs/wps-general.php:99
448
  msgid "Check for online users every"
@@ -462,11 +518,11 @@ msgstr "ضبط تمام کاربر"
462
 
463
  #: includes/settings/tabs/wps-general.php:117
464
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
465
- msgstr "نادیده می گیرد تنظیمات خروج و ثبت تمام کاربران که به صورت آنلاین (از جمله معارفه خود و ربات). فقط باید برای عیب یابی استفاده می شود."
466
 
467
  #: includes/settings/tabs/wps-general.php:155
468
  msgid "Store entire user agent string"
469
- msgstr "ذخیره تمامی مرورگرهای کاربر"
470
 
471
  #: includes/settings/tabs/wps-general.php:161
472
  msgid "Only enabled for debugging"
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص می‌کند. درحال حاضر %s است."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "برگه‌ها"
488
 
@@ -496,7 +552,7 @@ msgstr "پارامترهای نوار از URI"
496
 
497
  #: includes/settings/tabs/wps-general.php:215
498
  msgid "This will remove anything after the ? in a URL."
499
- msgstr "این هر چیزی پس از حذف؟ در یک URL."
500
 
501
  #: includes/settings/tabs/wps-general.php:223
502
  msgid "Disable hits column in post/pages list"
@@ -536,7 +592,7 @@ msgstr "حذف فایل راهنما"
536
 
537
  #: includes/settings/tabs/wps-general.php:271
538
  msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
539
- msgstr "به طور پیش‌فرض فایل راهنمای کاربری افزونه آمار در شاخه افزونه با حجم (تقریباً 5 مگابایت) می‌باشد. اگر این گزینه فعال باشد هم‌اکنون پاک خواهد شد و در زمان ارتقاء نیز حذف می‌شود."
540
 
541
  #: includes/settings/tabs/wps-general.php:276
542
  msgid "Search Engines"
@@ -544,7 +600,7 @@ msgstr "موتورهای جستجو"
544
 
545
  #: includes/settings/tabs/wps-general.php:293
546
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
547
- msgstr "از کار انداختن موتورهای جستجویی که نیازی به آنها نیست، این عمل در نتیجه کل موتورهای جستجو تأثیر می‌گذارد."
548
 
549
  #: includes/settings/tabs/wps-general.php:308
550
  msgid "disable"
@@ -564,7 +620,7 @@ msgstr "جمع کل"
564
 
565
  #: includes/settings/tabs/wps-general.php:326
566
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
567
- msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
568
 
569
  #: includes/settings/tabs/wps-externals.php:32
570
  msgid "GeoIP settings"
@@ -608,7 +664,7 @@ msgstr "جمعیت‌های از دست رفته GeoIP بعد از به‌روز
608
 
609
  #: includes/settings/tabs/wps-externals.php:110
610
  msgid "Update any missing GeoIP data after downloading a new database."
611
- msgstr "به‌روز رسانی هر داده‌ی از دست‌رفته‌ی GeoIP بعد از دریافت پایگاه داده‌ی جدید."
612
 
613
  #: includes/settings/tabs/wps-externals.php:116
614
  msgid "Country code for private IP addresses"
@@ -677,11 +733,11 @@ msgstr "آدرس‌های پست‌الکترونیک"
677
 
678
  #: includes/settings/tabs/wps-notifications.php:54
679
  msgid "A comma separated list of e-mail addresses to send reports to."
680
- msgstr "برای دریافت ایمیل گزارش، آدرس ایمیل‌های را با ویرگول لاتین جدا کنید."
681
 
682
  #: includes/settings/tabs/wps-notifications.php:59
683
  msgid "Update Reports"
684
- msgstr "به‌روز رسانی گزارش"
685
 
686
  #: includes/log/exclusions.php:24
687
  #: includes/settings/tabs/wps-notifications.php:64
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "هر کدکوتاهی توسط وردپرس شما پشتیبانی میشود. کدهای کوتاه در افزونه آمار (لیست کدها در راهنمای کاربری موجود است) در بدنه‌ی متن پشتیبانی می‌شوند. نمونه‌هایی برای مثال:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "کاربران حاضر"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "بازدیدکننده امروز"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "بازدید امروز"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "بازدید کننده دیروز"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "بازدید دیروز"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "کل بازدیدکنند‌گان"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
- msgstr "کل بازدیدها"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "هیچ"
807
 
@@ -816,7 +872,7 @@ msgstr "درباره"
816
 
817
  #: includes/settings/tabs/wps-overview-display.php:34
818
  msgid "Hits Statistical Chart"
819
- msgstr "نمودار آمار بازدیدها"
820
 
821
  #: includes/settings/tabs/wps-overview-display.php:36
822
  msgid "Search Engine Referrers Statistical Chart"
@@ -834,7 +890,7 @@ msgstr "پیشخوان"
834
  #: includes/settings/tabs/wps-overview-display.php:97
835
  #: includes/settings/tabs/wps-overview-display.php:117
836
  msgid "The following items are global to all users."
837
- msgstr "موارد زیر جهانی برای تمام کاربران می باشد."
838
 
839
  #: includes/settings/tabs/wps-overview-display.php:82
840
  msgid "Disable dashboard widgets"
@@ -860,7 +916,7 @@ msgstr "غیرفعال ابزارک در نوشته/برگه"
860
  msgid "Map type"
861
  msgstr "نوع نقشه"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "گوگل"
@@ -1013,7 +1069,7 @@ msgstr "هر 2 هفته"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "هر 4 هفته"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "آمار"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "آمار"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "نمایش آمار سایت در ابزارک."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "بازدید هفته"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "بازدید ماه"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "بازدید سال"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "کل بازدید برگه‌ها"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "کل بازدید برگه‌ها"
1041
  msgid "Search Engine referred"
1042
  msgstr "ورودی موتور جستجو"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "کل نوشته‌ها"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "کل برگه‌ها"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "کل دیدگاه‌ها"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "کل جفنگ‌ها"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "کل کاربرها"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "میانگین نوشته‌ها"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "میانگین دیدگاه‌ها"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "میانگین کاربرها"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "تاریخ به‌روزشدن سایت"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "نام"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "آیتم‌ها"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "بازدید دیروز"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "ورودی موتور جستجو"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "انتخاب نوع موتورجستجو"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "نسخه جاری PHP شما"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "آمار وردپرس"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "آماری کامل برای سایت وردپرسی شما."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "کاربران آنلاین در افزونه آمار وردپرس غیرفعال است لطفا به %s بروید و آن را فعال کنید."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "تنظیمات صفحه"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "ردیابی بازدید در افزونه آمار وردپرس فعال نیست، لطفاً به %s بروید و آن را فعال کنید."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "ردیابی بازدیدکنندگاه در افزونه آمار وردپرس فعال نیست، لطفاً به %s بروید و آن را فعال کنید."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "مجموعه GeoIP فعال نیست لطفا به قسمت %s بروید و این ویژگی را فعال کنید."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "تنظیمات"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "برای مشاهده افزونه در Wordpress.org کلیک کنید."
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "مشاهده برگه‌ی Wordpress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "برای دادن امتیاز و بررسی افزونه در Wordpress.org کلیک کنید."
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "امتیاز به افزونه"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "آمار وردپرس - بازدید"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "مرور کلی"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "آنلاین"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "ارجاع‌دهنده‌ها"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "جستجوها"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "کلمات جستجو شده"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "برترین بازدیدکنندگان"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "بهینه سازی"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "راهنما"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "سایت"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "تنظیمات"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "بازدید کننده امروز"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "بازدید امروز"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "بازدید کننده دیروز"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "نمایش آمار"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "دریافت فایل ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "دریافت فایل HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "راهنما یافت نشد."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "افزونه آمار وردپرس نگارش %s نصب شده است"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap در حال حاضر در نسخه فعلی!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini به روز رسانی شد"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1321,7 +1356,7 @@ msgstr "بازدیدکنندگان امروز"
1321
  #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
1322
  #: includes/log/widgets/hits.php:10
1323
  msgid "Hit Statistics"
1324
- msgstr "آمار بازدیدها"
1325
 
1326
  #: dashboard.php:60 includes/log/widgets/pages.php:14
1327
  msgid "Top 10 Pages"
@@ -1342,7 +1377,7 @@ msgstr "برترین ارجاع دهنده‌ها"
1342
  #: dashboard.php:63 includes/log/widgets/search.php:10
1343
  #: includes/log/widgets/summary.php:89
1344
  msgid "Search Engine Referrals"
1345
- msgstr "ورودی‌ موتورهای جستجوگر"
1346
 
1347
  #: dashboard.php:64 includes/log/widgets/summary.php:8
1348
  msgid "Summary"
@@ -1380,26 +1415,28 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "%s رکورد GeoIP در پایگاه داده به‌روز شد."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
- msgstr "%s داده های قدیمی تر از روز %s با موفقیت پاکسازی است."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
- msgstr "هیچ رکورد یافت نشد برای پاکسازی از %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "بانک اطلاعات هرس در"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "لطفاً مقدار بیشتر از 30 روز انتخاب کنید."
1399
 
1400
  #: includes/log/all-browsers.php:8
1401
  msgid "Browser Statistics"
1402
- msgstr "آمار مرورگرها"
1403
 
1404
  #: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
1405
  #: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
@@ -1419,23 +1456,23 @@ msgid "Click to toggle"
1419
  msgstr "برای باز و بستن کلیک کنید"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
- msgstr "مرورگرها"
1426
 
1427
  #: includes/log/all-browsers.php:42
1428
  msgid "Browsers by type"
1429
- msgstr "مرورگرها براساس نوع"
1430
 
1431
  #: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
1432
  #: includes/optimization/tabs/wps-optimization-resources.php:302
1433
  msgid "Platform"
1434
- msgstr "سَکو"
1435
 
1436
  #: includes/log/all-browsers.php:126
1437
  msgid "Browsers by platform"
1438
- msgstr "مرورگرها براساس سَکو"
1439
 
1440
  #: includes/log/all-browsers.php:234
1441
  msgid "%s Version"
@@ -1443,41 +1480,41 @@ msgstr "نسخه %s"
1443
 
1444
  #: includes/log/exclusions.php:8
1445
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1446
- msgstr "توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشده‌اند. نتایج زیر ممکن است آمار فعلی را منعکس نکند."
1447
 
1448
  #: includes/log/exclusions.php:64
1449
  msgid "Exclusions Statistics"
1450
  msgstr "استثنائات آمار"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 روز گذشته"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 روز گذشته"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 روز گذشته"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 ماهه گذشته"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 ماهه گذشته"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 ماهه گذشته"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 ماهه گذشته"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 ساله گذشته"
1483
 
@@ -1502,11 +1539,11 @@ msgstr "تعداد بازدید استثنائات"
1502
 
1503
  #: includes/log/hit-statistics.php:27
1504
  msgid "Hits Statistics Chart"
1505
- msgstr "نمودار آمار بازدیدها"
1506
 
1507
  #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
1508
  msgid "Hits in the last"
1509
- msgstr "آخرین بازدیدها در"
1510
 
1511
  #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
1512
  msgid "Number of visits and visitors"
@@ -1555,7 +1592,7 @@ msgstr "از"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "همه"
1561
 
@@ -1585,7 +1622,7 @@ msgstr "آمار ورودی از موتورهای جستجو"
1585
 
1586
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1587
  msgid "Search engine referrals in the last"
1588
- msgstr "آخرین ورودی‌‌ها از موتورهای جستجوگر"
1589
 
1590
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1591
  msgid "Number of referrals"
@@ -1626,7 +1663,7 @@ msgstr "برترین برگه‌ها"
1626
 
1627
  #: includes/log/top-pages.php:29
1628
  msgid "Top 5 Pages Trends"
1629
- msgstr "برترین 5 برگه"
1630
 
1631
  #: includes/log/top-pages.php:60
1632
  msgid "Top 5 Page Trending Stats"
@@ -1643,9 +1680,9 @@ msgstr "عنوان برگه یافت نشد"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
- msgstr "بازدیدها"
1649
 
1650
  #: includes/log/top-referring.php:4
1651
  msgid "To be added soon"
@@ -1736,10 +1773,10 @@ msgid "Time: %s"
1736
  msgstr "زمان: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
- msgstr "بازدیدها"
1743
 
1744
  #: includes/log/widgets/top.visitors.php:34
1745
  msgid "IP"
@@ -1773,17 +1810,17 @@ msgstr "لطفا موارد مورد نظر را انتخاب کنید."
1773
 
1774
  #: ajax.php:62
1775
  msgid "%s platform data deleted successfully."
1776
- msgstr "اطلاعات پلت فرم %s با موفقیت حذف."
1777
 
1778
  #: ajax.php:65
1779
  msgid "No platform data found to remove!"
1780
- msgstr "سکوی‌های مرورگر برای حذف شدن یافت نشد!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "اطلاعات جدول %s با موفقیت حذف."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "خطا! %s خالی نیست!"
1789
 
@@ -1793,15 +1830,15 @@ msgstr "راه اندازی پایگاه داده"
1793
 
1794
  #: includes/optimization/tabs/wps-optimization-database.php:10
1795
  msgid "Re-run Install"
1796
- msgstr "اجرای نصب دوباره"
1797
 
1798
  #: includes/optimization/tabs/wps-optimization-database.php:14
1799
  msgid "Install Now!"
1800
- msgstr "در حال حاضر نصب!"
1801
 
1802
  #: includes/optimization/tabs/wps-optimization-database.php:15
1803
  msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
1804
- msgstr "اگر به هر دلیلی خود را نصب افزونه آمار جداول پایگاه داده یا موارد دیگر هسته از دست رفته است این فرایند نصب دوباره اجرا خواهد شد."
1805
 
1806
  #: includes/optimization/tabs/wps-optimization-database.php:20
1807
  msgid "Database Index"
@@ -1809,7 +1846,7 @@ msgstr "شاخص پایگاه‌داده"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "کشورها"
1815
 
@@ -1818,7 +1855,7 @@ msgstr "کشورها"
1818
  #: includes/optimization/tabs/wps-optimization-updates.php:25
1819
  #: includes/optimization/tabs/wps-optimization-updates.php:40
1820
  msgid "Update Now!"
1821
- msgstr "به‌روز رسانی کن!"
1822
 
1823
  #: includes/optimization/tabs/wps-optimization-database.php:40
1824
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
@@ -1840,16 +1877,16 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "تبریک می‌گویم، در حال حاضر نصب شما به‌روز است و مشکلی ندارد."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
- msgstr "برون‌بری"
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-export.php:13
1848
  msgid "Export from"
1849
- msgstr "برون‌بری از"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,13 +1895,13 @@ msgstr "برون‌بری از"
1858
  msgid "Please select"
1859
  msgstr "لطفا انتخاب کنید"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
- msgstr "برون‌بری به"
1868
 
1869
  #: includes/optimization/tabs/wps-optimization-export.php:42
1870
  msgid "Select the output file type."
@@ -1892,8 +1929,8 @@ msgstr "نکته: همانطوری که پایگاه‌داده را پاک سا
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "بازدیدکنندگان"
1899
 
@@ -1903,11 +1940,11 @@ msgstr "تعداد تاریخچه بازدیدکنندگان (مقدار فعل
1903
 
1904
  #: includes/optimization/tabs/wps-optimization-historical.php:42
1905
  msgid "Number of historical number of visits to the site (current value is %s)."
1906
- msgstr "تعداد تاریخچه بازدیدها (مقدار فعلی %s است)."
1907
 
1908
  #: includes/optimization/tabs/wps-optimization-historical.php:48
1909
  msgid "Update now!"
1910
- msgstr "به‌روز رسانی کن!"
1911
 
1912
  #: includes/optimization/tabs/wps-optimization-purging.php:10
1913
  #: includes/optimization/tabs/wps-optimization-purging.php:43
@@ -1919,7 +1956,7 @@ msgstr "آیا مطمئن هستید؟"
1919
 
1920
  #: includes/optimization/tabs/wps-optimization-purging.php:175
1921
  msgid "Data"
1922
- msgstr "داده"
1923
 
1924
  #: includes/optimization/tabs/wps-optimization-purging.php:180
1925
  msgid "Empty Table"
@@ -1927,7 +1964,7 @@ msgstr "خالی کردن جدول"
1927
 
1928
  #: includes/optimization/tabs/wps-optimization-purging.php:193
1929
  msgid "All data table will be lost."
1930
- msgstr "تمامی دادههای جدول از بین خواهد رفت."
1931
 
1932
  #: includes/optimization/tabs/wps-optimization-purging.php:194
1933
  msgid "Clear now!"
@@ -1956,7 +1993,7 @@ msgstr "حذف سیستم عاملها"
1956
 
1957
  #: includes/optimization/tabs/wps-optimization-purging.php:251
1958
  msgid "All visitor data will be lost for this agent type."
1959
- msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
1960
 
1961
  #: includes/optimization/tabs/wps-optimization-purging.php:252
1962
  #: includes/optimization/tabs/wps-optimization-purging.php:276
@@ -1965,11 +2002,11 @@ msgstr "پاک کن!"
1965
 
1966
  #: includes/optimization/tabs/wps-optimization-purging.php:260
1967
  msgid "Delete Platforms"
1968
- msgstr "حذف سَکوها"
1969
 
1970
  #: includes/optimization/tabs/wps-optimization-purging.php:275
1971
  msgid "All visitor data will be lost for this platform type."
1972
- msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
1973
 
1974
  #: includes/optimization/tabs/wps-optimization-resources.php:17
1975
  msgid "Resources"
@@ -1978,7 +2015,7 @@ msgstr "منابع"
1978
  #: includes/optimization/tabs/wps-optimization-resources.php:22
1979
  #: includes/optimization/tabs/wps-optimization-resources.php:27
1980
  msgid "Memory usage in PHP"
1981
- msgstr "حافظه استفاده شده در پی‌اچ‌پی"
1982
 
1983
  #: includes/optimization/tabs/wps-optimization-resources.php:26
1984
  #: includes/optimization/tabs/wps-optimization-resources.php:37
@@ -1995,7 +2032,7 @@ msgstr "حافظه استفاده شده در صفحه مرورکلی"
1995
 
1996
  #: includes/optimization/tabs/wps-optimization-resources.php:44
1997
  msgid "PHP Memory Limit"
1998
- msgstr "PHP Memory Limit"
1999
 
2000
  #: includes/optimization/tabs/wps-optimization-resources.php:49
2001
  msgid "The memory limit a script is allowed to consume, set in php.ini."
@@ -2008,7 +2045,7 @@ msgstr "تنظیم محدودیت حافظه برای اسکریپت در php.in
2008
  #: includes/optimization/tabs/wps-optimization-resources.php:99
2009
  #: includes/optimization/tabs/wps-optimization-resources.php:110
2010
  msgid "Number of rows in the %s table"
2011
- msgstr "تعداد ردیفها در جدول %s"
2012
 
2013
  #: includes/optimization/tabs/wps-optimization-resources.php:59
2014
  #: includes/optimization/tabs/wps-optimization-resources.php:70
@@ -2090,15 +2127,15 @@ msgstr "نصب نشده"
2090
 
2091
  #: includes/optimization/tabs/wps-optimization-resources.php:185
2092
  msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
2093
- msgstr "اگر قادر به نصب پسوند پی اچ پی ریاضی سال قبل از میلاد است. ریاضی سال قبل از میلاد دیگر برای کد GeoIP لازم است و تنها به دلایل تاریخی ذکر شده است."
2094
 
2095
  #: includes/optimization/tabs/wps-optimization-resources.php:190
2096
  msgid "File Info"
2097
- msgstr "اطلاعات فایل"
2098
 
2099
  #: includes/optimization/tabs/wps-optimization-resources.php:195
2100
  msgid "GeoIP Database"
2101
- msgstr "GeoIP پایگاه داده"
2102
 
2103
  #: includes/optimization/tabs/wps-optimization-resources.php:204
2104
  msgid "Database file does not exist."
@@ -2112,11 +2149,11 @@ msgstr "، در ایجاد "
2112
 
2113
  #: includes/optimization/tabs/wps-optimization-resources.php:208
2114
  msgid "The file size and date of the GeoIP database."
2115
- msgstr "اندازه فایل و تاریخ از GeoIP پایگاه داده."
2116
 
2117
  #: includes/optimization/tabs/wps-optimization-resources.php:214
2118
  msgid "browscap.ini File"
2119
- msgstr "browscap.ini فایل"
2120
 
2121
  #: includes/optimization/tabs/wps-optimization-resources.php:223
2122
  msgid "browscap.ini file does not exist."
@@ -2128,7 +2165,7 @@ msgstr "اندازه فایل و تاریخ فایل browscap.ini."
2128
 
2129
  #: includes/optimization/tabs/wps-optimization-resources.php:233
2130
  msgid "browscap Cache File"
2131
- msgstr "browscap فایل حافظه پنهان"
2132
 
2133
  #: includes/optimization/tabs/wps-optimization-resources.php:242
2134
  msgid "browscap cache file does not exist."
@@ -2140,7 +2177,7 @@ msgstr "اندازه فایل و تاریخ فایل حافظه پنهان brows
2140
 
2141
  #: includes/optimization/tabs/wps-optimization-resources.php:251
2142
  msgid "Client Info"
2143
- msgstr "اطلاعات کاربر"
2144
 
2145
  #: includes/optimization/tabs/wps-optimization-resources.php:256
2146
  msgid "Client IP"
@@ -2152,7 +2189,7 @@ msgstr "آدرس آی‌پی کاربر."
2152
 
2153
  #: includes/optimization/tabs/wps-optimization-resources.php:267
2154
  msgid "User Agent"
2155
- msgstr "عامل کاربر"
2156
 
2157
  #: includes/optimization/tabs/wps-optimization-resources.php:272
2158
  msgid "The client user agent string."
@@ -2164,15 +2201,15 @@ msgstr "مرورگر"
2164
 
2165
  #: includes/optimization/tabs/wps-optimization-resources.php:285
2166
  msgid "The detected client browser."
2167
- msgstr "مرورگر شناسایی شده کاربر"
2168
 
2169
  #: includes/optimization/tabs/wps-optimization-resources.php:296
2170
  msgid "The detected client browser version."
2171
- msgstr "نسخه شناسایی شده مرورگر کاربر"
2172
 
2173
  #: includes/optimization/tabs/wps-optimization-resources.php:307
2174
  msgid "The detected client platform."
2175
- msgstr "پلت‌فرم شناسایی شده کاربر"
2176
 
2177
  #: includes/optimization/tabs/wps-optimization-updates.php:4
2178
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
@@ -2184,12 +2221,12 @@ msgstr "تنظیمات GeoIP"
2184
 
2185
  #: includes/optimization/tabs/wps-optimization-updates.php:26
2186
  msgid "Updates any unknown location data in the database, this may take a while"
2187
- msgstr "دریافت به‌روز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
2188
 
2189
  #: includes/optimization/tabs/wps-optimization-updates.php:31
2190
  #: includes/settings/tabs/wps-general.php:66
2191
  msgid "IP Addresses"
2192
- msgstr "آدرس آی‌پی"
2193
 
2194
  #: includes/optimization/tabs/wps-optimization-updates.php:36
2195
  #: includes/settings/tabs/wps-general.php:71
@@ -2198,7 +2235,7 @@ msgstr "هش‌کردن آدرس آی‌پی"
2198
 
2199
  #: includes/optimization/tabs/wps-optimization-updates.php:41
2200
  msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
2201
- msgstr "جایگزین کردن مقادیر هش به جای آدرس آی‌پی در پایگاه‌داده، شما در آینده نمی‌توانید آدرس‌های آی‌پی را بازیابی کنید و ممکن است کمی طول بکشد."
2202
 
2203
  #: includes/optimization/wps-optimization.php:43
2204
  msgid "IP Addresses replaced with hash values."
@@ -2208,23 +2245,23 @@ msgstr "آدرس آی‌پی با مقادیر هش جایگزین می‌شود
2208
  msgid "Install routine complete."
2209
  msgstr "نصب کامل شد."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "منابع/اطلاعات"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "پاک‌سازی"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "پایگاه‌داده"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "به‌روز رسانی‌ها"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "تاریخچه"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "اگر نیاز به راه‌حل‌های بیشتری در رابطه با نقش‌های کاربری وردپرس داشتید، نگاهی به افزونه %s بیندازید."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "استثنائات"
2414
 
@@ -2425,7 +2462,7 @@ msgstr "فعال"
2425
 
2426
  #: includes/settings/tabs/wps-exclusions.php:53
2427
  msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
2428
- msgstr "نادیده گرفتن یکسری از بازدیدها از آمار و نگه‌داری از آنها با ذکر دلیل در یک جدول دیگر. می‌تواند مقدار زیادی داده تولید شود، درعوض مفید خواهد بود و می‌توانید آمار دقیق بازدید و بازدیدکنندتان را به دست آورید."
2429
 
2430
  #: includes/settings/tabs/wps-exclusions.php:58
2431
  msgid "Exclude User Roles"
@@ -2453,7 +2490,7 @@ msgstr "لیست روبات‌ها"
2453
 
2454
  #: includes/settings/tabs/wps-exclusions.php:98
2455
  msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
2456
- msgstr "یک لیست از کلمات برای مقایسه و شناسایی ربات‌ها (در هر خط یک کلمه وارد شود). ورودی‌ها باید حداقل دارای 4 کارکتر باشد."
2457
 
2458
  #: includes/settings/tabs/wps-exclusions.php:99
2459
  msgid "Reset to Default"
@@ -2461,11 +2498,11 @@ msgstr "بازگشت به حالت پیش‌فرض"
2461
 
2462
  #: includes/settings/tabs/wps-exclusions.php:104
2463
  msgid "Force robot list update after upgrades"
2464
- msgstr "به‌روز رسانی لیست روبات‌ها پس از ارتقاء"
2465
 
2466
  #: includes/settings/tabs/wps-exclusions.php:107
2467
  msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
2468
- msgstr "لیست روبات‌ها بعد از به‌روز رسانی ریست می‌شود. توجه داشته باشید اگر این گزینه فعال باشد لیست سفارشی شما از دست خواهد رفت."
2469
 
2470
  #: includes/settings/tabs/wps-exclusions.php:112
2471
  msgid "Robot visit threshold"
@@ -2473,7 +2510,7 @@ msgstr "آستانه سفر ربات"
2473
 
2474
  #: includes/settings/tabs/wps-exclusions.php:115
2475
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2476
- msgstr "درمان بازدید کنندگان با بیش از این تعداد بازدید هر روز را به عنوان ربات. 0 = غیر فعال است."
2477
 
2478
  #: includes/settings/tabs/wps-exclusions.php:120
2479
  msgid "Excluded IP address list"
@@ -2497,23 +2534,23 @@ msgstr "افزودن 192.168.0.0"
2497
 
2498
  #: includes/settings/tabs/wps-exclusions.php:131
2499
  msgid "Use honey pot"
2500
- msgstr "استفاده از گلدان عسل"
2501
 
2502
  #: includes/settings/tabs/wps-exclusions.php:134
2503
  msgid "Use a honey pot page to identify robots."
2504
- msgstr "استفاده از یک صفحه در گلدان عسل به شناسایی ربات."
2505
 
2506
  #: includes/settings/tabs/wps-exclusions.php:139
2507
  msgid "Honey pot post id"
2508
- msgstr "عسل گلدان ارسال شناسه"
2509
 
2510
  #: includes/settings/tabs/wps-exclusions.php:142
2511
  msgid "The post id to use for the honeypot page."
2512
- msgstr "ارسال شناسه برای صفحه هانیپات استفاده کنید."
2513
 
2514
  #: includes/settings/tabs/wps-exclusions.php:143
2515
  msgid "Create a new honey pot page"
2516
- msgstr "ایجاد یک صفحه در گلدان عسل جدید"
2517
 
2518
  #: includes/settings/tabs/wps-exclusions.php:156
2519
  msgid "GeoIP Exclusions"
@@ -2521,11 +2558,11 @@ msgstr "GeoIP با استثنائات"
2521
 
2522
  #: includes/settings/tabs/wps-exclusions.php:160
2523
  msgid "Excluded countries list"
2524
- msgstr "لیست کشورها به حساب نیامده"
2525
 
2526
  #: includes/settings/tabs/wps-exclusions.php:163
2527
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2528
- msgstr "لیستی از کدهای کشور (یکی در هر خط، هر دو نامه) از مجموعه آمار شامل. استفاده از &quot;000&quot; (سه صفر) به رد کشورهای ناشناخته است."
2529
 
2530
  #: includes/settings/tabs/wps-exclusions.php:168
2531
  msgid "Included countries list"
@@ -2533,7 +2570,7 @@ msgstr "لیست کشورها شامل"
2533
 
2534
  #: includes/settings/tabs/wps-exclusions.php:171
2535
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2536
- msgstr "لیستی از کدهای کشور (یکی در هر خط، هر دو نامه) در مجموعه آمار شامل، اگر به این لیست خالی نیست، تنها بازدید کنندگان از کشورهای شامل ثبت خواهد شد. استفاده از &quot;000&quot; (سه صفر) به رد کشورهای ناشناخته است."
2537
 
2538
  #: includes/settings/tabs/wps-exclusions.php:176
2539
  msgid "Host Exclusions"
@@ -2541,15 +2578,15 @@ msgstr "محرومیت هاست"
2541
 
2542
  #: includes/settings/tabs/wps-exclusions.php:180
2543
  msgid "Excluded hosts list"
2544
- msgstr "لیست میزبان به حساب نیامده"
2545
 
2546
  #: includes/settings/tabs/wps-exclusions.php:183
2547
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2548
- msgstr "یک لیست از نام میزبان طور کامل واجد شرایط (یعنی. server.example.com، یک خط در هر) از مجموعه آمار شامل."
2549
 
2550
  #: includes/settings/tabs/wps-exclusions.php:185
2551
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2552
- msgstr "توجه داشته باشید: این گزینه نیست انجام خواهد داد DNS معکوس گرین کارت آمریکا در هر بار صفحه، اما به جای کش آدرس IP برای اسامی گره ارائه شده برای یک ساعت. اگر شما به استثنای میزبان پویا اختصاص شما ممکن است درجاتی از همپوشانی پیدا وقتی که میزبان تغییر آدرس IP آن و زمانی که کش به روز شده است و در نتیجه برخی از بازدید ثبت شده است."
2553
 
2554
  #: includes/settings/tabs/wps-exclusions.php:190
2555
  msgid "Site URL Exclusions"
@@ -2557,7 +2594,7 @@ msgstr "استثنائات آدرس"
2557
 
2558
  #: includes/settings/tabs/wps-exclusions.php:194
2559
  msgid "Excluded login page"
2560
- msgstr "استثنائات برگه‌ی ورود"
2561
 
2562
  #: includes/settings/tabs/wps-exclusions.php:197
2563
  msgid "Exclude the login page for registering as a hit."
@@ -2565,7 +2602,7 @@ msgstr "نادیده گرفتن برگه‌ی ورود برای نام‌نوی
2565
 
2566
  #: includes/settings/tabs/wps-exclusions.php:201
2567
  msgid "Excluded admin pages"
2568
- msgstr "استثنائات برگه‌های مدیریت"
2569
 
2570
  #: includes/settings/tabs/wps-exclusions.php:204
2571
  msgid "Exclude the admin pages for registering as a hit."
@@ -2573,7 +2610,7 @@ msgstr "نادیده گرفتن برگه‌های مدیریت برای نام
2573
 
2574
  #: includes/settings/tabs/wps-exclusions.php:208
2575
  msgid "Excluded RSS feeds"
2576
- msgstr "استثنائات خوراک RSS"
2577
 
2578
  #: includes/settings/tabs/wps-exclusions.php:211
2579
  msgid "Exclude the RSS feeds for registering as a hit."
@@ -2649,7 +2686,7 @@ msgstr "برنامه به روز رسانی هفتگی browscap دسی بل"
2649
  #: includes/settings/tabs/wps-externals.php:199
2650
  #: includes/settings/tabs/wps-externals.php:262
2651
  msgid "Next update will be"
2652
- msgstr "به‌روز رسانی بعدی خواهد بود"
2653
 
2654
  #: includes/settings/tabs/wps-externals.php:214
2655
  msgid "Download of the browscap database will be scheduled for once a week."
@@ -2661,9 +2698,9 @@ msgstr "پس از ذخیره‌ی صفحه، فایل راهنما حذف خوا
2661
 
2662
  #: includes/settings/tabs/wps-general.php:77
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
- msgstr "این ویژگی آدرس IP را در پایگاه داده ذخیره خواهد شد اما در عوض هش منحصر به فرد استفاده. String عامل کاربر کل \"Store\" تنظیم غیرفعال خواهد شد اگر این گزینه انتخاب شود. شما قادر خواهید بود برای بازیابی آدرس IP در آینده برای بازیابی اطلاعات مکان اگر این فعال شده است."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "کاربران حاضر"
2669
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-30 08:23:39+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr "شناسه برگه/نوشته برای دریافت آمار."
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr "شناسه نوشته/برگه"
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr "ask.com"
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr "برای محاسبه آمارر از چارچوب زمانی strtotime () (http://php.net/manual/en/datetime.formats.php) استفاده می‌شود."
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr "ردیابی بازدیدکننده"
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr "مجموعه GeoIP"
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "شاخص پایگاه داده بازدید"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr "نیازمند به روزرسانی پایگاه های داده ، لطفاً به %s رفته و %s را آپدیت نمایید."
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr "شاخص پایگاه داده کشور ها"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr "جستجوی جدول"
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr "صفحه تنظیمات"
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr "،"
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr "ویژگی ذیل غیرفعّال شده است ، لطفاً به %s برید و %s را فعّال کنید."
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "ردیابی رکورد"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr "ردیابی آنلاین کاربر"
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
+ msgstr "جدول داده های افزونه های درخواستی در پایگاه های داده وجود ندارد ، لطفاً %s را دوباره اجرا و دوباره نصب کنید %s:"
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
+ msgstr "تبدیل جدول جستجو های کامل شد ، %d ردیف اضافه شد."
80
 
81
  #: includes/optimization/tabs/wps-optimization-database.php:107
82
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
83
+ msgstr "نسخه های قدیمی آمار وردپرس جستجو ها را در جدول بازدید کنندگان ثبت میکردند که میتوانید در داده های عظیم مشکلاتی ایجاد نماید. یک جدول جدید برای نگهداری این اطلاعات به روش بهینه تر ایجاد شد."
84
 
85
  #: includes/optimization/tabs/wps-optimization-database.php:86
86
  msgid "Search Table"
87
+ msgstr "جدول جستجو ها"
88
 
89
  #: includes/optimization/tabs/wps-optimization-database.php:91
90
  msgid "Convert"
91
+ msgstr "تبدیل"
92
 
93
  #: includes/optimization/tabs/wps-optimization-database.php:100
94
  msgid "Convert Now!"
95
+ msgstr "تبدیل فوری!"
96
 
97
  #: includes/optimization/tabs/wps-optimization-database.php:101
98
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
99
+ msgstr "نسخه های قدیمی آمار وردپرس جستجو ها را در جدول بازدید کنندگان ثبت میکردند که میتوانید در داده های عظیم مشکلاتی ایجاد نماید. یک جدول جدید برای نگهداری این اطلاعات به روش بهینه تر ایجاد شد ، اگرچه داده های قدیمی ابتدا باید به فرمت جدید تبدیل شوند برای آنکه بتوان از آن ها استفاده نمود."
100
 
101
  #: includes/log/exclusions.php:24
102
  msgid "Referrer Spam"
103
+ msgstr "شناسایی جفنگ"
104
 
105
  #: includes/settings/tabs/wps-externals.php:277
106
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
107
+ msgstr "دریافت لیست سیاه هرزنامه های Piwik برنامه ریزی شد برای یک بار در هفته."
108
 
109
  #: includes/settings/wps-settings.php:105
110
  msgid "Externals"
111
+ msgstr "دیگر"
112
 
113
  #: includes/settings/tabs/wps-externals.php:219
114
  msgid "Piwik Referrer Spam Blacklist settings"
115
+ msgstr "تنظیمات لیست سیاه هرزنامه های Piwik."
116
 
117
  #: includes/settings/tabs/wps-externals.php:254
118
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
119
+ msgstr "جدول زمان بندی هفتگی بروزرسانی پایگاه داده لیست سیاه هرزنامه های Piwik."
120
 
121
  #: includes/settings/tabs/wps-externals.php:247
122
  msgid "Download Piwik Referrer Spam Blacklist Database"
123
+ msgstr "دریافت پایگاه داده لیست سیاه هرزنامه های Piwik"
124
 
125
  #: includes/settings/tabs/wps-externals.php:242
126
  msgid "Update Piwik Referrer Spam Blacklist Info"
127
+ msgstr "بروزرسانی اطلاعات لیست سیاه هرزنامه های Piwik"
128
 
129
  #: includes/settings/tabs/wps-externals.php:236
130
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
131
+ msgstr "پایگاه داده های لیست سیاه هرزنامه های Piwik دانلود و استفاده خواهد شد برای شناسایی جفنگ ها"
132
 
133
  #: includes/settings/tabs/wps-externals.php:224
134
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
135
+ msgstr "لیست سیاه هرزنامه ها ارائه شده توسط Piwik از %s در دسترس است."
136
 
137
  #: includes/settings/tabs/wps-externals.php:230
138
  msgid "Piwik Referrer Spam Blacklist usage"
139
+ msgstr "استفاده از لیست سیاه هرزنامه های Piwik"
140
 
141
  #: includes/settings/tabs/wps-exclusions.php:148
142
  msgid "Treat corrupt browser info as a bot"
143
+ msgstr "شناسایی مرورگر های مشکوک به عنوان یک ربات"
144
 
145
  #: includes/log/exclusions.php:24
146
  msgid "404 Pages"
147
+ msgstr "صفحات 404"
148
 
149
  #: includes/log/top-visitors.php:26
150
  msgid "Date"
151
+ msgstr "تاریخ"
152
 
153
  #: includes/settings/tabs/wps-exclusions.php:151
154
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
155
+ msgstr "شناسایی بازدید های مشکوک (بدون آدرس آی‌پی یا با اطلاعات کاربری ناقص) به عنوان یک ربات."
156
 
157
  #: includes/settings/tabs/wps-exclusions.php:215
158
  msgid "Excluded 404 pages"
159
+ msgstr "نادیده گرفتن صفحات 404"
160
 
161
  #: includes/settings/tabs/wps-exclusions.php:218
162
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
163
+ msgstr "نادیده گرفتن هر آدرسی که با خطای 404 رو به رو شده است."
164
 
165
  #: wps-updates.php:29
166
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
167
+ msgstr "خطا هنگام ساخت پایگاه داده GeoIP ، مطمئن شوید که شما اجازه ساخت دایرکتوری ها را در %s دارید."
168
 
169
  #: includes/settings/tabs/wps-general.php:281
170
  msgid "Add page title to empty search words"
171
+ msgstr "اضافه کردن عنوان برگه به جستجو های بدون کلمه"
172
 
173
  #: includes/settings/tabs/wps-general.php:287
174
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
176
 
177
  #: includes/settings/tabs/wps-maintenance.php:77
178
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
179
+ msgstr "به خاطر تعداد رکورد های بازدیدکننده الزامی است که بازدیدکننده حذف شود. مقدار های نامعتبر از نگهداری روزانه منع خواهند شد (مقدار های 10 یا بیشتر از 10)"
180
 
181
  #: includes/settings/tabs/wps-maintenance.php:71
182
  msgid "Prune visitors with more than"
192
 
193
  #: includes/optimization/tabs/wps-optimization-purging.php:222
194
  msgid "hits"
195
+ msgstr "رکورد"
196
 
197
  #: includes/optimization/tabs/wps-optimization-purging.php:223
198
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
199
+ msgstr "پاک‌سازی داده های یک بازدیدکننده زمانی که از تعداد مشخص شده بیشتر بازدید داشته باشد. این ابزار هنگامی مفید است که سایت شما بار ها توسط یک ربات مورد بازدید قرار می گیرد. این ابزار این بازدیدکننده و بازدید هایش را پاک خواهد کرد ، اگرچه بر روی بازدید صفحات تأثیری نخواهد داشت. حداقل مقدار 10 بازدید است."
200
 
201
  #: includes/functions/purge-hits.php:28
202
  msgid "No visitors found to purge."
204
 
205
  #: includes/functions/purge-hits.php:25
206
  msgid "%s records purged successfully."
207
+ msgstr "%s رکورد با موفقیت پاک‌سازی شدند."
208
 
209
  #: ajax.php:174 includes/functions/purge-hits.php:32
210
  msgid "Number of hits must be greater than or equal to 10!"
211
+ msgstr "تعداد رکورد باید بالا تر از 10 یا مساوی آن باشد!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "بازدید برگه‌ها"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "تعداد برگه‌ها"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "تعداد دیدگاه‌ها"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "تعداد جفنگ‌ها"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "تعداد کاربرها"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "میانگین نوشته"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "میانگین دیدگاه"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "میانگین کاربر"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "سرویس جستجو"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "سرویس دهنده جستجو برای گرفتن آمار."
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "قالب شماره"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "فرمت شماره ها برای نمایش: i18n، انگلیسی یا هیچ‌کدام."
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "انگلیسی"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "بین المللی"
268
 
269
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
270
  msgid "Hits Statistics Summary"
271
+ msgstr "خلاصه آمار نمودار"
272
 
273
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
274
  msgid "Chart Total"
275
+ msgstr "کل نمودار"
276
 
277
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
278
  msgid "All Time Total"
279
+ msgstr "کل زمان ها"
280
 
281
  #: includes/log/log.php:57
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "آیا در مورد حمایت به آمار وردپرس فکر کرده‌اید؟"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "حمایت مالی"
288
 
302
  msgid "Close"
303
  msgstr "بستن"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "بازدید را برای نوع نمایش انتخاب کنید."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "آمار"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "تعداد نوشته‌ها"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "قاب زمان"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "تا"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "برو"
328
 
352
 
353
  #: includes/optimization/tabs/wps-optimization-database.php:70
354
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
355
+ msgstr "در نصب‌های قبلی‌تر محتواهای تکراری در جدول بازدید‌ها وجود دارد. نصب جدید با شاخص محنصر به فرد در این جدول محافظت می‌شود. برای ایجاد شاخص ابتدا باید شاخص محتواهای تکراری حذف شود. با کلیک برروی \"به‌روز رسانی\" جدول بازدید ها بررسی میشود و شاخص را اضافه می‌کند."
356
 
357
  #: includes/optimization/tabs/wps-optimization-database.php:71
358
  msgid "This operation could take a long time on installs with many rows in the visits table."
359
+ msgstr "این عملیات می‌تواند به دلیل ردیف‌های زیاد جدول بازدید ها کمی طول بکشد."
360
 
361
  #: includes/optimization/tabs/wps-optimization-database.php:76
362
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
363
+ msgstr "نصب‌های قدیمی از آمار وردپرس به محتواهای تکراری در جدول بازدید ها اجازه نشتن می‌دهد. نصب جدید در برابر این شاخص منحصر به فرد محافظت شده است."
364
 
365
  #: includes/log/last-visitor.php:68
366
  msgid "Filtered by"
367
  msgstr "فیلتر توسط"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "از"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
377
  #: includes/settings/tabs/wps-general.php:342
378
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
379
+ msgstr "اگر نمیخواهید افزونه برای شما ترجمه شود و از زبان پیش‌فرض انگلیسی استفاده شود فعال کنید. (نیازمند بارگزاری صفحه است)"
380
 
381
  #: includes/settings/tabs/wps-general.php:336
382
  msgid "Force English"
388
 
389
  #: includes/settings/tabs/wps-exclusions.php:227
390
  msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
391
+ msgstr "نکته: این گزینه از پارامتر های آدرس پشتیبانی نخواهد کرد (هرچیزی بعد از ؟)، تنها نام اسکریپت ها. ورودی های کمتر از 2 حرف نادیده گرفته خواهد شد."
392
 
393
  #: includes/settings/tabs/wps-exclusions.php:225
394
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
395
+ msgstr "یه لیست از آدرس های محلی (به عنوان مثال /wordpress/about ، در هر خط یک مورد) برای نادیده گرفتن از مجموع آمار ها"
396
 
397
  #: includes/settings/tabs/wps-exclusions.php:222
398
  msgid "Excluded URLs list"
399
+ msgstr "لیست آدرس های نادیده گرفته شده"
400
 
401
  #: includes/log/exclusions.php:24
402
  msgid "Excluded URL"
414
  msgid "Last 7 Days (Week)"
415
  msgstr "7 روز گذشته (هفته)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "یاهو!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "یاندکس"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "داک‌داک‌گو"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "بینگ"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "بایدو"
440
 
441
  #: editor.php:69
442
  msgid "Hits in the last 20 days"
443
+ msgstr "آخرین بازدید ها در 20 روز گذشته"
444
 
445
  #: includes/log/exclusions.php:24
446
  msgid "Feeds"
498
  #: includes/settings/tabs/wps-general.php:229
499
  #: includes/settings/tabs/wps-notifications.php:122
500
  msgid "Enable or disable this feature"
501
+ msgstr "فعال یا غیرفعال کردن این محدودیت"
502
 
503
  #: includes/settings/tabs/wps-general.php:99
504
  msgid "Check for online users every"
518
 
519
  #: includes/settings/tabs/wps-general.php:117
520
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
521
+ msgstr "نادیده گرفتن تمام تنظیمات لیست سیاه و تمامی رکورد های کاربرانی که آنلاین هستن (از جمله خودارجاع ها و ربات ها). باید تنها برای عیب یابی استفاده شود."
522
 
523
  #: includes/settings/tabs/wps-general.php:155
524
  msgid "Store entire user agent string"
525
+ msgstr "ذخیره تمامی مرورگر های کاربر"
526
 
527
  #: includes/settings/tabs/wps-general.php:161
528
  msgid "Only enabled for debugging"
537
  msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص می‌کند. درحال حاضر %s است."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "برگه‌ها"
544
 
552
 
553
  #: includes/settings/tabs/wps-general.php:215
554
  msgid "This will remove anything after the ? in a URL."
555
+ msgstr "این امکان هرچیزی را پس از ؟ در URL حذف میکند."
556
 
557
  #: includes/settings/tabs/wps-general.php:223
558
  msgid "Disable hits column in post/pages list"
592
 
593
  #: includes/settings/tabs/wps-general.php:271
594
  msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
595
+ msgstr "به طور پیش‌فرض فایل راهنمای کاربری افزونه آمار در شاخه افزونه با حجم (تقریباً 5 مگابایت) وجود دارد. اگر این گزینه فعال باشد این فایل هم اکنون حذف و هنگام بروزرسانی نیز حذف خواهد گردید."
596
 
597
  #: includes/settings/tabs/wps-general.php:276
598
  msgid "Search Engines"
600
 
601
  #: includes/settings/tabs/wps-general.php:293
602
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
603
+ msgstr "از کار انداختن ثبت آمار موتورهای جستجویی که نیازی به آنها نیست، این عمل در نتیجه کل موتورهای جستجو تأثیر می‌گذارد."
604
 
605
  #: includes/settings/tabs/wps-general.php:308
606
  msgid "disable"
620
 
621
  #: includes/settings/tabs/wps-general.php:326
622
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
623
+ msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتور های جستجو"
624
 
625
  #: includes/settings/tabs/wps-externals.php:32
626
  msgid "GeoIP settings"
664
 
665
  #: includes/settings/tabs/wps-externals.php:110
666
  msgid "Update any missing GeoIP data after downloading a new database."
667
+ msgstr "بروزرسانی هر داده GeoIP فراموش شده ای بعد از دانلود یک پایگاه داده جدید"
668
 
669
  #: includes/settings/tabs/wps-externals.php:116
670
  msgid "Country code for private IP addresses"
733
 
734
  #: includes/settings/tabs/wps-notifications.php:54
735
  msgid "A comma separated list of e-mail addresses to send reports to."
736
+ msgstr "برای دریافت ایمیل گزارش، آدرس های ایمیل را با ویرگول لاتین جدا کنید."
737
 
738
  #: includes/settings/tabs/wps-notifications.php:59
739
  msgid "Update Reports"
740
+ msgstr "بروزرسانی گزارش"
741
 
742
  #: includes/log/exclusions.php:24
743
  #: includes/settings/tabs/wps-notifications.php:64
823
  msgstr "هر کدکوتاهی توسط وردپرس شما پشتیبانی میشود. کدهای کوتاه در افزونه آمار (لیست کدها در راهنمای کاربری موجود است) در بدنه‌ی متن پشتیبانی می‌شوند. نمونه‌هایی برای مثال:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "کاربران حاضر"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "بازدیدکننده امروز"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "بازدید امروز"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "بازدید کننده دیروز"
844
 
847
  msgstr "بازدید دیروز"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "کل بازدیدکنند‌گان"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
+ msgstr "کل بازدید ها"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "هیچ"
863
 
872
 
873
  #: includes/settings/tabs/wps-overview-display.php:34
874
  msgid "Hits Statistical Chart"
875
+ msgstr "نمودار آمار بازدید ها"
876
 
877
  #: includes/settings/tabs/wps-overview-display.php:36
878
  msgid "Search Engine Referrers Statistical Chart"
890
  #: includes/settings/tabs/wps-overview-display.php:97
891
  #: includes/settings/tabs/wps-overview-display.php:117
892
  msgid "The following items are global to all users."
893
+ msgstr "موارد ذیل برای تمامی کاربران همگانی هست."
894
 
895
  #: includes/settings/tabs/wps-overview-display.php:82
896
  msgid "Disable dashboard widgets"
916
  msgid "Map type"
917
  msgstr "نوع نقشه"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "گوگل"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "هر 4 هفته"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "آمار"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "نمایش آمار سایت در ابزارک."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "بازدید هفته"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "بازدید ماه"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "بازدید سال"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "کل بازدید برگه‌ها"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "ورودی موتور جستجو"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "کل نوشته‌ها"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "کل برگه‌ها"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "کل دیدگاه‌ها"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "کل جفنگ‌ها"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "کل کاربرها"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "میانگین نوشته‌ها"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "میانگین دیدگاه‌ها"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "میانگین کاربرها"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "تاریخ به‌روزشدن سایت"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "نام"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "آیتم‌ها"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "بازدید دیروز"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "ورودی موتور جستجو"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "انتخاب نوع موتورجستجو"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "آمار وردپرس"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "آماری کامل برای سایت وردپرسی شما."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "تنظیمات"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "برای مشاهده افزونه در Wordpress.org کلیک کنید."
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "مشاهده برگه‌ی Wordpress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "برای دادن امتیاز و بررسی افزونه در Wordpress.org کلیک کنید."
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "امتیاز به افزونه"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "آمار وردپرس - بازدید"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "مرور کلی"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "آنلاین"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "ارجاع‌دهنده‌ها"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "جستجوها"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "کلمات جستجو شده"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "برترین بازدیدکنندگان"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "بهینه سازی"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "راهنما"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "سایت"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "تنظیمات"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "بازدید کننده امروز"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "بازدید امروز"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "بازدید کننده دیروز"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "نمایش آمار"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "دریافت فایل ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "دریافت فایل HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "راهنما یافت نشد."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "افزونه آمار وردپرس نگارش %s نصب شده است"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini به روز رسانی شد"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1356
  #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
1357
  #: includes/log/widgets/hits.php:10
1358
  msgid "Hit Statistics"
1359
+ msgstr "آمار بازدید ها"
1360
 
1361
  #: dashboard.php:60 includes/log/widgets/pages.php:14
1362
  msgid "Top 10 Pages"
1377
  #: dashboard.php:63 includes/log/widgets/search.php:10
1378
  #: includes/log/widgets/summary.php:89
1379
  msgid "Search Engine Referrals"
1380
+ msgstr "ورودی‌ موتور های جستجو"
1381
 
1382
  #: dashboard.php:64 includes/log/widgets/summary.php:8
1383
  msgid "Summary"
1415
  msgstr "%s رکورد GeoIP در پایگاه داده به‌روز شد."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
+ msgstr "%s داده های قدیمی تر از روز %s با موفقیت پاک‌سازی است."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
+ msgstr "هیچ رکورد یافت نشد برای پاک‌سازی از %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "بانک اطلاعات هرس در"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "لطفاً مقدار بیشتر از 30 روز انتخاب کنید."
1436
 
1437
  #: includes/log/all-browsers.php:8
1438
  msgid "Browser Statistics"
1439
+ msgstr "آمار مرورگر ها"
1440
 
1441
  #: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
1442
  #: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
1456
  msgstr "برای باز و بستن کلیک کنید"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
+ msgstr "مرورگر ها"
1463
 
1464
  #: includes/log/all-browsers.php:42
1465
  msgid "Browsers by type"
1466
+ msgstr "مرورگر ها براساس نوع آن ها"
1467
 
1468
  #: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
1469
  #: includes/optimization/tabs/wps-optimization-resources.php:302
1470
  msgid "Platform"
1471
+ msgstr "پلت‌فرم"
1472
 
1473
  #: includes/log/all-browsers.php:126
1474
  msgid "Browsers by platform"
1475
+ msgstr "مرورگر ها براساس پلت‌فرم"
1476
 
1477
  #: includes/log/all-browsers.php:234
1478
  msgid "%s Version"
1480
 
1481
  #: includes/log/exclusions.php:8
1482
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1483
+ msgstr "توجه: در حال حاضر استثنائات برای رکوردها تنظیم نشده‌اند. نتایج زیر ممکن است آمار فعلی را منعکس نکند."
1484
 
1485
  #: includes/log/exclusions.php:64
1486
  msgid "Exclusions Statistics"
1487
  msgstr "استثنائات آمار"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 روز گذشته"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 روز گذشته"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 روز گذشته"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 ماهه گذشته"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 ماهه گذشته"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 ماهه گذشته"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 ماهه گذشته"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 ساله گذشته"
1520
 
1539
 
1540
  #: includes/log/hit-statistics.php:27
1541
  msgid "Hits Statistics Chart"
1542
+ msgstr "نمودار آمار بازدید ها"
1543
 
1544
  #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
1545
  msgid "Hits in the last"
1546
+ msgstr "آخرین بازدید ها در"
1547
 
1548
  #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
1549
  msgid "Number of visits and visitors"
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "همه"
1598
 
1622
 
1623
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1624
  msgid "Search engine referrals in the last"
1625
+ msgstr "آخرین ورودی‌‌ها از موتور های جستجو در"
1626
 
1627
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1628
  msgid "Number of referrals"
1663
 
1664
  #: includes/log/top-pages.php:29
1665
  msgid "Top 5 Pages Trends"
1666
+ msgstr "5 برگه برتر"
1667
 
1668
  #: includes/log/top-pages.php:60
1669
  msgid "Top 5 Page Trending Stats"
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
+ msgstr "بازدید ها"
1686
 
1687
  #: includes/log/top-referring.php:4
1688
  msgid "To be added soon"
1773
  msgstr "زمان: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
+ msgstr "بازدید ها"
1780
 
1781
  #: includes/log/widgets/top.visitors.php:34
1782
  msgid "IP"
1810
 
1811
  #: ajax.php:62
1812
  msgid "%s platform data deleted successfully."
1813
+ msgstr "%s از اطلاعات پلت‌فرم ها پاک شد."
1814
 
1815
  #: ajax.php:65
1816
  msgid "No platform data found to remove!"
1817
+ msgstr "پلت‌فرم های مرورگر برای حذف شدن یافت نشد!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "اطلاعات جدول %s با موفقیت حذف."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "خطا! %s خالی نیست!"
1826
 
1830
 
1831
  #: includes/optimization/tabs/wps-optimization-database.php:10
1832
  msgid "Re-run Install"
1833
+ msgstr "دوباره نصب کردن"
1834
 
1835
  #: includes/optimization/tabs/wps-optimization-database.php:14
1836
  msgid "Install Now!"
1837
+ msgstr "نصب فوری!"
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:15
1840
  msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
1841
+ msgstr "اگر به دلایلی نصب افزونه آمار ناقص انجام شده است و پایگاه های داده یا دیگر هسته ها وجود ندارد، این ابزار دوباره روند نصب را اجرا خواهد کرد."
1842
 
1843
  #: includes/optimization/tabs/wps-optimization-database.php:20
1844
  msgid "Database Index"
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "کشورها"
1852
 
1855
  #: includes/optimization/tabs/wps-optimization-updates.php:25
1856
  #: includes/optimization/tabs/wps-optimization-updates.php:40
1857
  msgid "Update Now!"
1858
+ msgstr "بروزرسانی کن!"
1859
 
1860
  #: includes/optimization/tabs/wps-optimization-database.php:40
1861
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
1877
  msgstr "تبریک می‌گویم، در حال حاضر نصب شما به‌روز است و مشکلی ندارد."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
+ msgstr "استخراج"
1883
 
1884
  #: includes/optimization/tabs/wps-optimization-export.php:13
1885
  msgid "Export from"
1886
+ msgstr "استخراج از"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "لطفا انتخاب کنید"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
+ msgstr "استخراج به شکل"
1905
 
1906
  #: includes/optimization/tabs/wps-optimization-export.php:42
1907
  msgid "Select the output file type."
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "بازدیدکنندگان"
1936
 
1940
 
1941
  #: includes/optimization/tabs/wps-optimization-historical.php:42
1942
  msgid "Number of historical number of visits to the site (current value is %s)."
1943
+ msgstr "تعداد تاریخچه بازدید ها (مقدار فعلی %s است)."
1944
 
1945
  #: includes/optimization/tabs/wps-optimization-historical.php:48
1946
  msgid "Update now!"
1947
+ msgstr "بروزرسانی کن!"
1948
 
1949
  #: includes/optimization/tabs/wps-optimization-purging.php:10
1950
  #: includes/optimization/tabs/wps-optimization-purging.php:43
1956
 
1957
  #: includes/optimization/tabs/wps-optimization-purging.php:175
1958
  msgid "Data"
1959
+ msgstr "داده ها"
1960
 
1961
  #: includes/optimization/tabs/wps-optimization-purging.php:180
1962
  msgid "Empty Table"
1964
 
1965
  #: includes/optimization/tabs/wps-optimization-purging.php:193
1966
  msgid "All data table will be lost."
1967
+ msgstr "تمامی داده های جدول از بین خواهد رفت."
1968
 
1969
  #: includes/optimization/tabs/wps-optimization-purging.php:194
1970
  msgid "Clear now!"
1993
 
1994
  #: includes/optimization/tabs/wps-optimization-purging.php:251
1995
  msgid "All visitor data will be lost for this agent type."
1996
+ msgstr "تمامی داده های مرورگر بازدیدکننده از بین خواهد رفت."
1997
 
1998
  #: includes/optimization/tabs/wps-optimization-purging.php:252
1999
  #: includes/optimization/tabs/wps-optimization-purging.php:276
2002
 
2003
  #: includes/optimization/tabs/wps-optimization-purging.php:260
2004
  msgid "Delete Platforms"
2005
+ msgstr "حذف پلت‌فرم ها"
2006
 
2007
  #: includes/optimization/tabs/wps-optimization-purging.php:275
2008
  msgid "All visitor data will be lost for this platform type."
2009
+ msgstr "تمامی داده های پلت‌فرم های بازدیدکننده از بین خواهد رفت."
2010
 
2011
  #: includes/optimization/tabs/wps-optimization-resources.php:17
2012
  msgid "Resources"
2015
  #: includes/optimization/tabs/wps-optimization-resources.php:22
2016
  #: includes/optimization/tabs/wps-optimization-resources.php:27
2017
  msgid "Memory usage in PHP"
2018
+ msgstr "حافظه استفاده شده در PHP"
2019
 
2020
  #: includes/optimization/tabs/wps-optimization-resources.php:26
2021
  #: includes/optimization/tabs/wps-optimization-resources.php:37
2032
 
2033
  #: includes/optimization/tabs/wps-optimization-resources.php:44
2034
  msgid "PHP Memory Limit"
2035
+ msgstr "محدودیت حافظه PHP"
2036
 
2037
  #: includes/optimization/tabs/wps-optimization-resources.php:49
2038
  msgid "The memory limit a script is allowed to consume, set in php.ini."
2045
  #: includes/optimization/tabs/wps-optimization-resources.php:99
2046
  #: includes/optimization/tabs/wps-optimization-resources.php:110
2047
  msgid "Number of rows in the %s table"
2048
+ msgstr "تعداد ردیف ها در جدول %s"
2049
 
2050
  #: includes/optimization/tabs/wps-optimization-resources.php:59
2051
  #: includes/optimization/tabs/wps-optimization-resources.php:70
2127
 
2128
  #: includes/optimization/tabs/wps-optimization-resources.php:185
2129
  msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
2130
+ msgstr "اگر PHP BC Math نصب است ، دیگر BC Math برای سرویس GeoIP لازم نیست و اینجا تنها به دلایل تاریخی نام برده شده است."
2131
 
2132
  #: includes/optimization/tabs/wps-optimization-resources.php:190
2133
  msgid "File Info"
2134
+ msgstr "اطلاعات پرونده"
2135
 
2136
  #: includes/optimization/tabs/wps-optimization-resources.php:195
2137
  msgid "GeoIP Database"
2138
+ msgstr "پایگاه داده GeoIP"
2139
 
2140
  #: includes/optimization/tabs/wps-optimization-resources.php:204
2141
  msgid "Database file does not exist."
2149
 
2150
  #: includes/optimization/tabs/wps-optimization-resources.php:208
2151
  msgid "The file size and date of the GeoIP database."
2152
+ msgstr "اندازه پرونده و تاریخ پایگاه داده GeoIP."
2153
 
2154
  #: includes/optimization/tabs/wps-optimization-resources.php:214
2155
  msgid "browscap.ini File"
2156
+ msgstr "فایل browscap.ini"
2157
 
2158
  #: includes/optimization/tabs/wps-optimization-resources.php:223
2159
  msgid "browscap.ini file does not exist."
2165
 
2166
  #: includes/optimization/tabs/wps-optimization-resources.php:233
2167
  msgid "browscap Cache File"
2168
+ msgstr "فایل حافظه پنهان browscap"
2169
 
2170
  #: includes/optimization/tabs/wps-optimization-resources.php:242
2171
  msgid "browscap cache file does not exist."
2177
 
2178
  #: includes/optimization/tabs/wps-optimization-resources.php:251
2179
  msgid "Client Info"
2180
+ msgstr "اطلاعات کاربری"
2181
 
2182
  #: includes/optimization/tabs/wps-optimization-resources.php:256
2183
  msgid "Client IP"
2189
 
2190
  #: includes/optimization/tabs/wps-optimization-resources.php:267
2191
  msgid "User Agent"
2192
+ msgstr "عامل کاربری"
2193
 
2194
  #: includes/optimization/tabs/wps-optimization-resources.php:272
2195
  msgid "The client user agent string."
2201
 
2202
  #: includes/optimization/tabs/wps-optimization-resources.php:285
2203
  msgid "The detected client browser."
2204
+ msgstr "مرورگر شناسایی شده کاربر."
2205
 
2206
  #: includes/optimization/tabs/wps-optimization-resources.php:296
2207
  msgid "The detected client browser version."
2208
+ msgstr "نسخه شناسایی شده مرورگر کاربر."
2209
 
2210
  #: includes/optimization/tabs/wps-optimization-resources.php:307
2211
  msgid "The detected client platform."
2212
+ msgstr "پلت‌فرم شناسایی شده کاربر."
2213
 
2214
  #: includes/optimization/tabs/wps-optimization-updates.php:4
2215
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2221
 
2222
  #: includes/optimization/tabs/wps-optimization-updates.php:26
2223
  msgid "Updates any unknown location data in the database, this may take a while"
2224
+ msgstr "دریافت بروزرسانی برای موقعیت ها و کشور ها، ممکن است انجام این عمل کمی طول بکشد."
2225
 
2226
  #: includes/optimization/tabs/wps-optimization-updates.php:31
2227
  #: includes/settings/tabs/wps-general.php:66
2228
  msgid "IP Addresses"
2229
+ msgstr "آدرس های آی‌پی"
2230
 
2231
  #: includes/optimization/tabs/wps-optimization-updates.php:36
2232
  #: includes/settings/tabs/wps-general.php:71
2235
 
2236
  #: includes/optimization/tabs/wps-optimization-updates.php:41
2237
  msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
2238
+ msgstr "جایگزینی آدرس آی‌پی ها با مقادیر هش شده ، شما قادر به بازیابی آدرس آی‌پی ها در آینده نخواهید بود. همچنین این روند ممکن است مدتی به طول بینجامد."
2239
 
2240
  #: includes/optimization/wps-optimization.php:43
2241
  msgid "IP Addresses replaced with hash values."
2245
  msgid "Install routine complete."
2246
  msgstr "نصب کامل شد."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "منابع/اطلاعات"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "پاک‌سازی"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "پایگاه‌داده"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "به‌روز رسانی‌ها"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "تاریخچه"
2267
 
2444
  msgstr "اگر نیاز به راه‌حل‌های بیشتری در رابطه با نقش‌های کاربری وردپرس داشتید، نگاهی به افزونه %s بیندازید."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "استثنائات"
2451
 
2462
 
2463
  #: includes/settings/tabs/wps-exclusions.php:53
2464
  msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
2465
+ msgstr "نادیده گرفتن یکسری از بازدید ها از آمار و نگه‌داری از آنها با ذکر دلیل در یک جدول دیگر. می‌تواند مقدار زیادی داده تولید شود، درعوض مفید خواهد بود و می‌توانید آمار دقیق بازدید و بازدیدکنندتان را به دست آورید."
2466
 
2467
  #: includes/settings/tabs/wps-exclusions.php:58
2468
  msgid "Exclude User Roles"
2490
 
2491
  #: includes/settings/tabs/wps-exclusions.php:98
2492
  msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
2493
+ msgstr "یک لیست از کلمات برای مقایسه و شناسایی ربات‌ها (در هر خط یک کلمه وارد شود). ورودی‌ها باید حداقل دارای 4 حرف باشد."
2494
 
2495
  #: includes/settings/tabs/wps-exclusions.php:99
2496
  msgid "Reset to Default"
2498
 
2499
  #: includes/settings/tabs/wps-exclusions.php:104
2500
  msgid "Force robot list update after upgrades"
2501
+ msgstr "بروزرسانی لیست روبات‌ها پس از ارتقاء"
2502
 
2503
  #: includes/settings/tabs/wps-exclusions.php:107
2504
  msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
2505
+ msgstr "لیست روبات‌ها بعد از بروزرسانی ریست می‌شود. توجه داشته باشید اگر این گزینه فعال باشد لیست سفارشی شما از دست خواهد رفت."
2506
 
2507
  #: includes/settings/tabs/wps-exclusions.php:112
2508
  msgid "Robot visit threshold"
2510
 
2511
  #: includes/settings/tabs/wps-exclusions.php:115
2512
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2513
+ msgstr "در نظر گرفتن بازدیدکنندگان دارای بیشتر از این تعداد در روز به عنوان یک ربات. 0 = غیرفعال"
2514
 
2515
  #: includes/settings/tabs/wps-exclusions.php:120
2516
  msgid "Excluded IP address list"
2534
 
2535
  #: includes/settings/tabs/wps-exclusions.php:131
2536
  msgid "Use honey pot"
2537
+ msgstr "استفاده از تله گلدان عسل"
2538
 
2539
  #: includes/settings/tabs/wps-exclusions.php:134
2540
  msgid "Use a honey pot page to identify robots."
2541
+ msgstr "استفاده از یه صفحه به عنوان تله گلدان عسل برای شناسایی ربات ها."
2542
 
2543
  #: includes/settings/tabs/wps-exclusions.php:139
2544
  msgid "Honey pot post id"
2545
+ msgstr "شناسه نوشته تله گلدان عسل"
2546
 
2547
  #: includes/settings/tabs/wps-exclusions.php:142
2548
  msgid "The post id to use for the honeypot page."
2549
+ msgstr "استفاده از شناسه نوشته برای صفحه تله گلدان عسل."
2550
 
2551
  #: includes/settings/tabs/wps-exclusions.php:143
2552
  msgid "Create a new honey pot page"
2553
+ msgstr "ایجاد یک صفحه تله گلدان عسل جدید"
2554
 
2555
  #: includes/settings/tabs/wps-exclusions.php:156
2556
  msgid "GeoIP Exclusions"
2558
 
2559
  #: includes/settings/tabs/wps-exclusions.php:160
2560
  msgid "Excluded countries list"
2561
+ msgstr "لیست کشورهای نادیده گرفته شده"
2562
 
2563
  #: includes/settings/tabs/wps-exclusions.php:163
2564
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2565
+ msgstr "لیستی از کد های کشور ها (یک کد در هر خط ، هرکدام دو حرف) برای نادیده گرفتن در آمار ها. استفاده از \"000\" (سه صفر) برای نادیده گرفتن کشور های مجهول"
2566
 
2567
  #: includes/settings/tabs/wps-exclusions.php:168
2568
  msgid "Included countries list"
2570
 
2571
  #: includes/settings/tabs/wps-exclusions.php:171
2572
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2573
+ msgstr "لیستی از کد های کشور ها (یک کد در هر خط ، هرکدام دو حرف) برای شامل شدن در آمار ها، اگر این لیست خالی نباید، تنها بازدیدکنندگان از کشور های مشخص شده محاسبه خواهند شد. استفاده از \"000\" (سه صفر) برای نادیده گرفتن کشور های مجهول"
2574
 
2575
  #: includes/settings/tabs/wps-exclusions.php:176
2576
  msgid "Host Exclusions"
2578
 
2579
  #: includes/settings/tabs/wps-exclusions.php:180
2580
  msgid "Excluded hosts list"
2581
+ msgstr "لیست هاست های نادیده گرفته شده"
2582
 
2583
  #: includes/settings/tabs/wps-exclusions.php:183
2584
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2585
+ msgstr "یک لیست واجد شرایط از هاستینگ ها (به عنوان مثال: server.example.com ، یک مورد در هر خط) برای نادیده گرفته شدن در مجموع آمار ها."
2586
 
2587
  #: includes/settings/tabs/wps-exclusions.php:185
2588
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2589
+ msgstr "توجه: این گزینه جستجوی DNS نخواهد کرد برای هرصفحه ای که بارگزاری میشود اما در عوض حافظه پنهان آدرس آی‌پی هاستینگ ارائه خواهد شد برای یک ساعت. اگر شما به صورت داینامیکی نادیده میگیرید هاست ها را ممکن است شما پیدا کنید درجه هایی از همپوشانی را زمانی که هاست تغییر دهد آدرس آی‌پی اش را و زمانی که حافظه پنهان بروزرسانی میشود چند محاسبه بازدید را نتیجه میدهد"
2590
 
2591
  #: includes/settings/tabs/wps-exclusions.php:190
2592
  msgid "Site URL Exclusions"
2594
 
2595
  #: includes/settings/tabs/wps-exclusions.php:194
2596
  msgid "Excluded login page"
2597
+ msgstr "نادیده گرفتن صفحه ورود"
2598
 
2599
  #: includes/settings/tabs/wps-exclusions.php:197
2600
  msgid "Exclude the login page for registering as a hit."
2602
 
2603
  #: includes/settings/tabs/wps-exclusions.php:201
2604
  msgid "Excluded admin pages"
2605
+ msgstr "نادیده گرفتن صفحات مدیریت"
2606
 
2607
  #: includes/settings/tabs/wps-exclusions.php:204
2608
  msgid "Exclude the admin pages for registering as a hit."
2610
 
2611
  #: includes/settings/tabs/wps-exclusions.php:208
2612
  msgid "Excluded RSS feeds"
2613
+ msgstr "نادیده گرفتن خوراک RSS"
2614
 
2615
  #: includes/settings/tabs/wps-exclusions.php:211
2616
  msgid "Exclude the RSS feeds for registering as a hit."
2686
  #: includes/settings/tabs/wps-externals.php:199
2687
  #: includes/settings/tabs/wps-externals.php:262
2688
  msgid "Next update will be"
2689
+ msgstr "بروزرسانی بعدی خواهد بود"
2690
 
2691
  #: includes/settings/tabs/wps-externals.php:214
2692
  msgid "Download of the browscap database will be scheduled for once a week."
2698
 
2699
  #: includes/settings/tabs/wps-general.php:77
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
+ msgstr "این ابزار ذخیره نخواهد کرد آدرس های آی‌پی را در پایگاه داده ها اما در عوض استفاده خواهد کرد از یک هش منحصر به فرد. اگر این ابزار انتخاب شود نمایش داده خواهد شد \"ذخیره تمام رشته عامل های کاربری\". شما قادر به بازگردانی اطلاعات نخواهید بود اگر این امکان فعال باشد."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "کاربران حاضر"
2706
 
languages/wp_statistics-fr_FR.mo CHANGED
Binary file
languages/wp_statistics-fr_FR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-08-06 00:54:05+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
- msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr "Conversion de la table des recherches terminée, %d rangs ajoutés."
20
 
@@ -150,63 +210,59 @@ msgstr "%s enregistrements purgés avec succès."
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "Le nombre de hits doit être égal ou supérieur à 10 !"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "Visites sur les pages"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "Compte des pages"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "Compte des commentaires"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "Compte du spam"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "Compte des utilisateurs"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "Moyenne des articles"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "Moyenne des commentaires"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "Moyenne des utilisateurs"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "La période pour laquelle on obtient une statistique, strtotime() (http://php.net/manual/en/datetime.formats.php) sera utilisé pour la calculer."
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "Fournisseur de recherche"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "Le fournisseur de recherche sur lequel faire des statistiques."
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "Format des nombres"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "Le format dans lequel afficher les nombres : i18n, anglais, aucun."
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "Anglais"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "International"
212
 
@@ -226,7 +282,7 @@ msgstr "Total depuis le début"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "Avez-vous pensé à faire un don à WP Statistics ?"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "Faire un don"
232
 
@@ -246,27 +302,27 @@ msgstr "Faites un don maintenant !"
246
  msgid "Close"
247
  msgstr "Fermer"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "Sélectionnez la statistique que vous voulez afficher."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "Statistique"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "Compte des articles"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "Période de temps"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "jusqu'à"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "Aller"
272
 
@@ -310,11 +366,11 @@ msgstr "Les versions anciennes de WP Statistics comptabilisent des doublons dans
310
  msgid "Filtered by"
311
  msgstr "Filtré par"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "Intervalle"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/JJ/AAAA"
320
 
@@ -358,27 +414,27 @@ msgstr "30 derniers jours (Mois)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "7 derniers jours (Semaine)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "Baidu"
384
 
@@ -462,7 +518,7 @@ msgstr "Enregistrer tous les utilisateurs"
462
 
463
  #: includes/settings/tabs/wps-general.php:117
464
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
465
- msgstr "Ignorer les paramètres d'exclusion et enregistrer tous les utilisateurs en ligne (incluant soi-même et les robots). Doit être utilisé uniquement pour le repérage de problèmes."
466
 
467
  #: includes/settings/tabs/wps-general.php:155
468
  msgid "Store entire user agent string"
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Pour chaque visite tenir compte de plusieurs hits. Actuellement %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Pages"
488
 
@@ -568,7 +624,7 @@ msgstr "Ajouter une ligne total dans les graphiques avec des valeurs multiples,
568
 
569
  #: includes/settings/tabs/wps-externals.php:32
570
  msgid "GeoIP settings"
571
- msgstr "Paramètres de GeoIP"
572
 
573
  #: includes/settings/tabs/wps-externals.php:37
574
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "N'importe quel code supporté par votre installation de Wordpress, incluant tous les codes de WP Statistics (voir le manuel d'administrateur pour obtenir une liste des codes disponibles) sont supportés dans le message. Voici quelques exemples"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Utilisateur en ligne"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Visiteurs du jour"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Visites du jour"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Nombre de visiteurs hier"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Nombre de visites hier"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Nombre total de visiteurs"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Nombre total de visites"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Aucun"
807
 
@@ -860,7 +916,7 @@ msgstr "Désactive le widget de l'éditeur de page/article."
860
  msgid "Map type"
861
  msgstr "Type de carte"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -952,7 +1008,7 @@ msgstr "Suppression de WP Statistics"
952
 
953
  #: includes/settings/tabs/wps-removal.php:20
954
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
955
- msgstr "La désinstallation de WP Statistics ne supprimera pas les données et les paramètres, vous pouvez utiliser cette option pour supprimer les données de WP Statistics de votre installation avant de désinstaller l’extension."
956
 
957
  #: includes/settings/tabs/wps-removal.php:23
958
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
@@ -960,7 +1016,7 @@ msgstr "Une fois que vous validez ce formulaire, les réglages seront supprimés
960
 
961
  #: includes/settings/tabs/wps-removal.php:29
962
  msgid "Remove data and settings"
963
- msgstr "Supprimer les données et paramètres"
964
 
965
  #: includes/settings/tabs/wps-removal.php:34
966
  msgid "Remove"
@@ -968,7 +1024,7 @@ msgstr "Supprimer"
968
 
969
  #: includes/settings/tabs/wps-removal.php:35
970
  msgid "Remove data and settings, this action cannot be undone."
971
- msgstr "Supprimer les données et paramètres. Cette action ne peut pas être annulée."
972
 
973
  #: includes/settings/wps-settings.php:100
974
  msgid "General"
@@ -1013,7 +1069,7 @@ msgstr "Une fois toutes les 2 semaines"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Une fois toutes les 4 semaines"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistiques"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistiques"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Voir les statistiques de site dans la barre latérale."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Visite de la semaine"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Visite du mois"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Visites de l'année"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Total des pages vues"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Total des pages vues"
1041
  msgid "Search Engine referred"
1042
  msgstr "Moteur de recherche référent"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Total des articles"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Total des pages"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Total des commentaires"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Total des spams"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Total des utilisateurs"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Moyenne d'articles"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Moyenne des commentaires"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Moyenne des utilisateurs"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Date du dernier article"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Nom"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Éléments"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Visite d'hier"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Moteur de recherche référent"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Sélectionnez le type de moteur de recherche"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "Votre version PHP actuelle est "
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Statistiques complètes pour votre site WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Le suivi des utilisateurs en ligne de WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "page paramètres"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Le suivi des hits dans WP Statistics n'est pas activé, rendez-vous sur %s et activez-le."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Les suivi des visiteurs dans WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "La collecte GeoIP n'est pas active, rendez-vous sur %s et activez cette fonctionnalité."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
- msgstr "Paramètres"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Cliquez ici pour visiter l’extension sur WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Visitez la page WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Cliquez ici pour évaluer et noter cette extension sur WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Noter cette extension"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Vue globale"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "En ligne"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "Référents"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Recherches"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Recherche par mots"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Top des visiteurs du jour"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimisation"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manuelle"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "Site"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "Options"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Visiteur aujourd'hui"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Visite aujourd’hui"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Visiteur hier"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Voir les Stats"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Télécharger fichier ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Télécharger le fichier HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Fichier du manuel non trouvé."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WP Statistics %s installé sur"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap est déjà en version actuelle !"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.in mis à jour sur"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1373,27 +1408,29 @@ msgstr "Cet article n'est pas encore publié."
1373
 
1374
  #: includes/functions/geoip-populate.php:24
1375
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1376
- msgstr "Impossible de charger la base de données GeoIP, assurez-vous que vous l’avez téléchargée dans la page paramètres."
1377
 
1378
  #: includes/functions/geoip-populate.php:48
1379
  msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Mise à jour de %s enregistrements GeoIP dans la base de données de visiteurs."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s données plus anciennes que les %s derniers jours purgées avec succès."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Aucun enregistrement trouvé à purger de %s !"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "Base de données purgée le"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Veuillez sélectionner une valeur de plus de 30 jours."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Cliquez ici pour activer/désactiver"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Navigateurs"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Attention : Les exclusion ne sont pas actuellement réglées pour être
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Statistiques d'exclusions"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 jours"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 jours"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 jours"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 mois"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 mois"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 mois"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 mois"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 an"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "De"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Tous les"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Aucun titre de page trouvé"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Visites"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Temps : %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Hits"
1743
 
@@ -1779,11 +1816,11 @@ msgstr " %s données de plate-forme supprimées avec succès."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Pas de plateforme de donnée à supprimer trouvée !"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "données de la table %s supprimées avec succès."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Erreur, %s n'a pas été vidé !"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Index de base de données"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Pays"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Félicitations, votre installation est déjà à jour, rien à faire."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Exportation"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Exporter à partir de"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Exporter à partir de"
1858
  msgid "Please select"
1859
  msgstr "Veuillez sélectionner"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Sélectionnez la table pour le fichier de sortie."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Exporter vers"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Note : comme vous venez de purger la base de données, vous devez rechar
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Visiteurs"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "Adresses IP remplacées par des valeurs de hachage."
2208
  msgid "Install routine complete."
2209
  msgstr "Processus d’installation terminé."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Ressources/Informations"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Purge"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Base de données"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Mises à jour"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Historique"
2230
 
@@ -2331,7 +2368,7 @@ msgstr "Avez-vous essayé d'utiliser le thème WordPress par défaut ?"
2331
 
2332
  #: includes/settings/tabs/wps-about.php:73
2333
  msgid "Have you double checked the plugin settings?"
2334
- msgstr "Avez-vous vérifié deux fois la configuration de l’extension ?"
2335
 
2336
  #: includes/settings/tabs/wps-about.php:74
2337
  msgid "Do you have all the required PHP extensions installed?"
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Si vous avez besoin d'une solution plus robuste pour déléguer l'accès vous pouvez regarder %s dans le répertoire d’extensions WordPress."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Exclusions"
2414
 
@@ -2581,7 +2618,7 @@ msgstr "Exclure les flux RSS du comptage des hits."
2581
 
2582
  #: includes/settings/tabs/wps-externals.php:162
2583
  msgid "browscap settings"
2584
- msgstr "paramètres de browscap"
2585
 
2586
  #: includes/settings/tabs/wps-externals.php:167
2587
  msgid "browscap usage"
@@ -2657,13 +2694,13 @@ msgstr "Le téléchargement de la base de données de browscap sera programmé p
2657
 
2658
  #: includes/settings/tabs/wps-general.php:50
2659
  msgid "This will delete the manual when you save the settings, are you sure?"
2660
- msgstr "Cela supprimera le manuel lorsque vous enregistrez les paramètres, êtes-vous sûr ?"
2661
 
2662
  #: includes/settings/tabs/wps-general.php:77
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Cette fonctionnalité ne stocke pas les adresses IP dans la base de données, mais utilise à la place un hachage unique. Le réglage \"Stocker la chaîne d'agent utilisateur entièrement\" sera désactivé si ce champ est sélectionné. Vous ne serez pas en mesure de récupérer les adresses IP à l'avenir pour obtenir des informations de localisation si cette option est activée."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Utilisateurs en ligne"
2669
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-28 13:44:55+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr "L’ID de l’article/page dont on veut obtenir les statistiques."
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr "ID d’article/page"
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr "Ask.com"
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr "La plage de temps pour laquelle on veut obtenir des statistiques, strtotime() (http://php.net/manual/fr/datetime.formats.php) sera utilisé pour la calculer. Utiliser \"total\" pour obtenir toutes les dates enregistrées."
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr "suivi des visiteurs"
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr "collecte GeoIP"
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "index de la base de données des visites"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr "Des mises à jour de la base de données sont nécessaires, veuillez aller à %s et mettre à jour les éléments suivants : %s"
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr "Index de la base de données des pays"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr "table de recherche"
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr "page de "
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ","
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr "Les options suivantes sont désactivées, veuillez aller à %s et les activer : %s"
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "suivi des hits"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr "suivi des utilisateurs en ligne"
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
+ msgstr "Le(s) table(s) des extensions suivantes n’existent pas dans la base de données, veuillez réexécuter la routine d’installation %s : %s"
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr "Conversion de la table des recherches terminée, %d rangs ajoutés."
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "Le nombre de hits doit être égal ou supérieur à 10 !"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "Visites sur les pages"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "Compte des pages"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "Compte des commentaires"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "Compte du spam"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "Compte des utilisateurs"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "Moyenne des articles"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "Moyenne des commentaires"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "Moyenne des utilisateurs"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "Fournisseur de recherche"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "Le fournisseur de recherche sur lequel faire des statistiques."
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "Format des nombres"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "Le format dans lequel afficher les nombres : i18n, anglais, aucun."
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "Anglais"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "International"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "Avez-vous pensé à faire un don à WP Statistics ?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "Faire un don"
288
 
302
  msgid "Close"
303
  msgstr "Fermer"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "Sélectionnez la statistique que vous voulez afficher."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "Statistique"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "Compte des articles"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "Période de temps"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "jusqu'à"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "Aller"
328
 
366
  msgid "Filtered by"
367
  msgstr "Filtré par"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "Intervalle"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/JJ/AAAA"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "7 derniers jours (Semaine)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "Baidu"
440
 
518
 
519
  #: includes/settings/tabs/wps-general.php:117
520
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
521
+ msgstr "Ignorer les réglages d'exclusion et enregistrer tous les utilisateurs en ligne (incluant soi-même et les robots). Doit être utilisé uniquement pour le repérage de problèmes."
522
 
523
  #: includes/settings/tabs/wps-general.php:155
524
  msgid "Store entire user agent string"
537
  msgstr "Pour chaque visite tenir compte de plusieurs hits. Actuellement %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Pages"
544
 
624
 
625
  #: includes/settings/tabs/wps-externals.php:32
626
  msgid "GeoIP settings"
627
+ msgstr "Réglages GeoIP"
628
 
629
  #: includes/settings/tabs/wps-externals.php:37
630
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
823
  msgstr "N'importe quel code supporté par votre installation de Wordpress, incluant tous les codes de WP Statistics (voir le manuel d'administrateur pour obtenir une liste des codes disponibles) sont supportés dans le message. Voici quelques exemples"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Utilisateur en ligne"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Visiteurs du jour"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Visites du jour"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Nombre de visiteurs hier"
844
 
847
  msgstr "Nombre de visites hier"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Nombre total de visiteurs"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Nombre total de visites"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Aucun"
863
 
916
  msgid "Map type"
917
  msgstr "Type de carte"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1008
 
1009
  #: includes/settings/tabs/wps-removal.php:20
1010
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
1011
+ msgstr "La désinstallation de WP Statistics ne supprimera pas les données et les réglages, vous pouvez utiliser cette option pour supprimer les données de WP Statistics de votre installation avant de désinstaller l’extension."
1012
 
1013
  #: includes/settings/tabs/wps-removal.php:23
1014
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
1016
 
1017
  #: includes/settings/tabs/wps-removal.php:29
1018
  msgid "Remove data and settings"
1019
+ msgstr "Supprimer les données et réglages"
1020
 
1021
  #: includes/settings/tabs/wps-removal.php:34
1022
  msgid "Remove"
1024
 
1025
  #: includes/settings/tabs/wps-removal.php:35
1026
  msgid "Remove data and settings, this action cannot be undone."
1027
+ msgstr "Supprimer les données et réglages. Cette action ne peut pas être annulée."
1028
 
1029
  #: includes/settings/wps-settings.php:100
1030
  msgid "General"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Une fois toutes les 4 semaines"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistiques"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Voir les statistiques de site dans la barre latérale."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Visite de la semaine"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Visite du mois"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Visites de l'année"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Total des pages vues"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Moteur de recherche référent"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Total des articles"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Total des pages"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Total des commentaires"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Total des spams"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Total des utilisateurs"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Moyenne d'articles"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Moyenne des commentaires"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Moyenne des utilisateurs"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Date du dernier article"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Nom"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Éléments"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Visite d'hier"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Moteur de recherche référent"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Sélectionnez le type de moteur de recherche"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Statistiques complètes pour votre site WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
+ msgstr "Réglages"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Cliquez ici pour visiter l’extension sur WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Visitez la page WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Cliquez ici pour évaluer et noter cette extension sur WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Noter cette extension"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - Hits"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Vue globale"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "En ligne"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "Référents"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Recherches"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Recherche par mots"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Top des visiteurs du jour"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimisation"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manuelle"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "Site"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "Options"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Visiteur aujourd'hui"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Visite aujourd’hui"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Visiteur hier"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Voir les Stats"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Télécharger fichier ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Télécharger le fichier HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Fichier du manuel non trouvé."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WP Statistics %s installé sur"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.in mis à jour sur"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1408
 
1409
  #: includes/functions/geoip-populate.php:24
1410
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1411
+ msgstr "Impossible de charger la base de données GeoIP, assurez-vous que vous l’avez téléchargée dans la page réglages."
1412
 
1413
  #: includes/functions/geoip-populate.php:48
1414
  msgid "Updated %s GeoIP records in the visitors database."
1415
  msgstr "Mise à jour de %s enregistrements GeoIP dans la base de données de visiteurs."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s données plus anciennes que les %s derniers jours purgées avec succès."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Aucun enregistrement trouvé à purger de %s !"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "Base de données purgée le"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Veuillez sélectionner une valeur de plus de 30 jours."
1436
 
1456
  msgstr "Cliquez ici pour activer/désactiver"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Navigateurs"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Statistiques d'exclusions"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 jours"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 jours"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 jours"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 mois"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 mois"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 mois"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 mois"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 an"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Tous les"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Visites"
1686
 
1773
  msgstr "Temps : %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Hits"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Pas de plateforme de donnée à supprimer trouvée !"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "données de la table %s supprimées avec succès."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Erreur, %s n'a pas été vidé !"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Pays"
1852
 
1877
  msgstr "Félicitations, votre installation est déjà à jour, rien à faire."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Exportation"
1883
 
1886
  msgstr "Exporter à partir de"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Veuillez sélectionner"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Sélectionnez la table pour le fichier de sortie."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Exporter vers"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Visiteurs"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Processus d’installation terminé."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Ressources/Informations"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Purge"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Base de données"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Mises à jour"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Historique"
2267
 
2368
 
2369
  #: includes/settings/tabs/wps-about.php:73
2370
  msgid "Have you double checked the plugin settings?"
2371
+ msgstr "Avez-vous vérifié deux fois les réglages de l’extension ?"
2372
 
2373
  #: includes/settings/tabs/wps-about.php:74
2374
  msgid "Do you have all the required PHP extensions installed?"
2444
  msgstr "Si vous avez besoin d'une solution plus robuste pour déléguer l'accès vous pouvez regarder %s dans le répertoire d’extensions WordPress."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Exclusions"
2451
 
2618
 
2619
  #: includes/settings/tabs/wps-externals.php:162
2620
  msgid "browscap settings"
2621
+ msgstr "réglages de browscap"
2622
 
2623
  #: includes/settings/tabs/wps-externals.php:167
2624
  msgid "browscap usage"
2694
 
2695
  #: includes/settings/tabs/wps-general.php:50
2696
  msgid "This will delete the manual when you save the settings, are you sure?"
2697
+ msgstr "Cela supprimera le manuel lorsque vous enregistrez les réglages, êtes-vous sûr ?"
2698
 
2699
  #: includes/settings/tabs/wps-general.php:77
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Cette fonctionnalité ne stocke pas les adresses IP dans la base de données, mais utilise à la place un hachage unique. Le réglage \"Stocker la chaîne d'agent utilisateur entièrement\" sera désactivé si ce champ est sélectionné. Vous ne serez pas en mesure de récupérer les adresses IP à l'avenir pour obtenir des informations de localisation si cette option est activée."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Utilisateurs en ligne"
2706
 
languages/wp_statistics-hu_HU.mo CHANGED
Binary file
languages/wp_statistics-hu_HU.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr "Keresés táblázat átalakítás befejeződött,%d sor hozzáadva"
20
 
@@ -150,63 +210,59 @@ msgstr "%s bejegyzés kitisztítása sikeres."
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "Találatok számának nagyobbnak vagy egyenlőnek kell lennie, mint 10!"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "Oldallátogatások"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "Hozzászólás számláló"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "Spam számláló"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "Felhasználó számláló"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "Hozzászólás átlag"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "Megjegyzés átlag"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "Felhasználói átlag"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "Keresési szolgáltató"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "Szám formátum"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "Angol"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "Nemzetközi"
212
 
@@ -226,7 +282,7 @@ msgstr "Összesen"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "Gondolt már arra, hogy adományozzon a WP Statisztikának?"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "Adományoz"
232
 
@@ -246,27 +302,27 @@ msgstr "Adományozzon most!"
246
  msgid "Close"
247
  msgstr "Bezárás"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "Válassza ki a megjeleníteni kívánt statisztikát."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "Statisztikai"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "Bejegyzés számláló"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "Időkeret"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr "Szűrés"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "Tartomány"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "HH/NN/ÉÉÉÉ"
320
 
@@ -358,27 +414,27 @@ msgstr "Utolsó 30 nap (hónap)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "Utolsó 7 nap (hét)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "Baidu"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Egy azonosított felhasználó minden egyes találatának egységesítése. Jelenleg %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Oldal"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "Bármilyen rövid kód (shortcode) támogatott a WordPress levél törzsében, beleértve az összes WP Statisztika rövid kódot (rendelkezésre álló kódokat ld. admin kézikönyv). Íme néhány példa:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Jelenlévő felhasználó"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Mai Látogató"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Mai látogatás"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Tegnapi Látogató"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Tegnapi látogatás"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Összes Látogató"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Összes látogatás"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Egyik sem"
807
 
@@ -860,7 +916,7 @@ msgstr "Oldal / Hozzászólás-szerkesztő widget tiltása."
860
  msgid "Map type"
861
  msgstr "Típusa"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "2 hetente egyszer"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "4 hetente egyszer"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statisztikák"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statisztikák"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Megjeleníti az oldal statisztikáit a sidebaron."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Heti látogatás"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Havi látogatás"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Évi látogatás"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Összes oldal megtekintése"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Összes oldal megtekintése"
1041
  msgid "Search Engine referred"
1042
  msgstr "Keresőmotor hivatkozás"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Összes bejegyzés"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Összes oldal"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Összes hozzászólás"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Összes spam"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Összes felhasználó"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Átlagos bejegyzés"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Átlagos hozzászólás"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Átlagos felhasználó"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Utolsó bejegyzés dátuma"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Név"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Tételek"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Tegnapi látogatás"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Keresőmotor hivatkozás"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Keresőmotor típusának kiválasztása"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "Az aktuális PHP verzió"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP Statistics el lett távolítva, kérjük, kapcsolja ki és törölje."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statisztika"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Teljes statisztikája a WordPress telek."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Követés-ban WP Statistics online felhasználó nem engedélyezett, kérjük megy (% s), és lehetővé teszi."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "beállítás oldal"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Találatok követése a WP Statistics-ban nincs engedélyezve, bekapcsoláshoz menjen az %s oldalra."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Látogató követés a WP Statistics-ban nincs engedélyezve, bekapcsoláshoz menjen a (%s) oldalra."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP gyűjtés nem aktív, engedélyezéshez menjen a %s fülre."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Beállítások"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Kattintson ide a bővítmény megtekintéséhez a WordPress.org-on"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "WordPress.org oldal megtekintése"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Kattintson ide a bővítményértékeléséhez és áttekintéséhez a WordPress.org-on."
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Bővítmény értékelése"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statisztika - találatok"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Áttekintés"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "Elérhető"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "Hivatkozók"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Keresések"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Kereső szavak"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Top mai látogatók"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimalizálás"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Kézikönyv"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "Oldal"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "Opciók"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Mai Látogató"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Mai látogatás"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Tegnapi látogató"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Statisztikák megtekintése"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "ODF fájl letöltése"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "HTML fájl letöltése"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Kézikönyv nem található."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WP Statisztika %s telepítve a(z)"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap már az aktuális verzió!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini frissítés"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Frissíti %s GeoIP adatbázisrekordok látogatók."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "a(z) %s adatait sikerült törölni a(z) %s napnál régebbi."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Nincs rekord törlése: %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Kérjük, válasszon 30 napnál magasabb értéket."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Bővebben kikapcsolás/bekapcsolás"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Böngészők"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Figyelem: Kizárások jelenleg nem kerülnek rögzítésre, lehet, hogy
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Kizárás statisztika"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 nap"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 nap"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 nap"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 hónap"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 hónap"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 hónap"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 hónap"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 év"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "/"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Mind"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Az oldal címe nem található"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Látogatások"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Idő: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Találatok"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "a(z) %s platform adatok sikeresen törölve."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Nincs eltávolítható platform adat!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s tábla adatai sikeresen törölve."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Hiba, %s nincs ürítve!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Adatbázis index"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Országok"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Gratulálunk a telepítés befejeződött, nincs további teendője."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Exportálás"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Adatbázis exportálás"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Adatbázis exportálás"
1858
  msgid "Please select"
1859
  msgstr "Kérjük válasszon"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Vállasza ki a táblát amit exportálni szeretne."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Export formátuma"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Megjegyzés: mivel az imént tisztította meg az adatbázist, újra be k
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Megtekintések"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP-címek helyett vagdalék érték."
2208
  msgid "Install routine complete."
2209
  msgstr "Felszerel rutin teljes."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Erőforrás/információ"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Tisztítás"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Adatbázis"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Frissítések"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Történeti"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Ha szüksége van a meghatalmazást erőteljesebb megoldást érdemes nézni a WordPress plugin könyvtárban (% s)."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Kizárások"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Ez letörli a kézikönyvet a beállítások mentésekor, biztos benne?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Ez a szolgáltatás IP-címeket nem tárolja az adatbázisban, de ehelyett használható egyedi kivonatokat. A \"Store teljes felhasználói ügynök string\" beállítás ki lesz kapcsolva, ha ez be van jelölve. Nem lesz képes-hoz visszaszerez a jövőben, hogy visszaszerezze a helyadatokat, ha ez engedélyezve van az IP-címek."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Jelenlévő látogatók"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr "Keresés táblázat átalakítás befejeződött,%d sor hozzáadva"
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "Találatok számának nagyobbnak vagy egyenlőnek kell lennie, mint 10!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "Oldallátogatások"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "Hozzászólás számláló"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "Spam számláló"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "Felhasználó számláló"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "Hozzászólás átlag"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "Megjegyzés átlag"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "Felhasználói átlag"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "Keresési szolgáltató"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "Szám formátum"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "Angol"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "Nemzetközi"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "Gondolt már arra, hogy adományozzon a WP Statisztikának?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "Adományoz"
288
 
302
  msgid "Close"
303
  msgstr "Bezárás"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "Válassza ki a megjeleníteni kívánt statisztikát."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "Statisztikai"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "Bejegyzés számláló"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "Időkeret"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr "Szűrés"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "Tartomány"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "HH/NN/ÉÉÉÉ"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "Utolsó 7 nap (hét)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "Baidu"
440
 
537
  msgstr "Egy azonosított felhasználó minden egyes találatának egységesítése. Jelenleg %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Oldal"
544
 
823
  msgstr "Bármilyen rövid kód (shortcode) támogatott a WordPress levél törzsében, beleértve az összes WP Statisztika rövid kódot (rendelkezésre álló kódokat ld. admin kézikönyv). Íme néhány példa:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Jelenlévő felhasználó"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Mai Látogató"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Mai látogatás"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Tegnapi Látogató"
844
 
847
  msgstr "Tegnapi látogatás"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Összes Látogató"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Összes látogatás"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Egyik sem"
863
 
916
  msgid "Map type"
917
  msgstr "Típusa"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "4 hetente egyszer"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statisztikák"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Megjeleníti az oldal statisztikáit a sidebaron."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Heti látogatás"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Havi látogatás"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Évi látogatás"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Összes oldal megtekintése"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Keresőmotor hivatkozás"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Összes bejegyzés"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Összes oldal"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Összes hozzászólás"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Összes spam"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Összes felhasználó"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Átlagos bejegyzés"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Átlagos hozzászólás"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Átlagos felhasználó"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Utolsó bejegyzés dátuma"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Név"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Tételek"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Tegnapi látogatás"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Keresőmotor hivatkozás"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Keresőmotor típusának kiválasztása"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP Statistics el lett távolítva, kérjük, kapcsolja ki és törölje."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statisztika"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Teljes statisztikája a WordPress telek."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Beállítások"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Kattintson ide a bővítmény megtekintéséhez a WordPress.org-on"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "WordPress.org oldal megtekintése"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Kattintson ide a bővítményértékeléséhez és áttekintéséhez a WordPress.org-on."
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Bővítmény értékelése"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statisztika - találatok"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Áttekintés"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "Elérhető"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "Hivatkozók"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Keresések"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Kereső szavak"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Top mai látogatók"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimalizálás"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Kézikönyv"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "Oldal"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "Opciók"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Mai Látogató"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Mai látogatás"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Tegnapi látogató"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Statisztikák megtekintése"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "ODF fájl letöltése"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "HTML fájl letöltése"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Kézikönyv nem található."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WP Statisztika %s telepítve a(z)"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini frissítés"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1415
  msgstr "Frissíti %s GeoIP adatbázisrekordok látogatók."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "a(z) %s adatait sikerült törölni a(z) %s napnál régebbi."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Nincs rekord törlése: %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Kérjük, válasszon 30 napnál magasabb értéket."
1436
 
1456
  msgstr "Bővebben kikapcsolás/bekapcsolás"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Böngészők"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Kizárás statisztika"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 nap"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 nap"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 nap"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 hónap"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 hónap"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 hónap"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 hónap"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 év"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Mind"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Látogatások"
1686
 
1773
  msgstr "Idő: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Találatok"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Nincs eltávolítható platform adat!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s tábla adatai sikeresen törölve."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Hiba, %s nincs ürítve!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Országok"
1852
 
1877
  msgstr "Gratulálunk a telepítés befejeződött, nincs további teendője."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Exportálás"
1883
 
1886
  msgstr "Adatbázis exportálás"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Kérjük válasszon"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Vállasza ki a táblát amit exportálni szeretne."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Export formátuma"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Megtekintések"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Felszerel rutin teljes."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Erőforrás/információ"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Tisztítás"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Adatbázis"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Frissítések"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Történeti"
2267
 
2444
  msgstr "Ha szüksége van a meghatalmazást erőteljesebb megoldást érdemes nézni a WordPress plugin könyvtárban (% s)."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Kizárások"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Ez a szolgáltatás IP-címeket nem tárolja az adatbázisban, de ehelyett használható egyedi kivonatokat. A \"Store teljes felhasználói ügynök string\" beállítás ki lesz kapcsolva, ha ez be van jelölve. Nem lesz képes-hoz visszaszerez a jövőben, hogy visszaszerezze a helyadatokat, ha ez engedélyezve van az IP-címek."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Jelenlévő látogatók"
2706
 
languages/wp_statistics-id_ID.mo CHANGED
Binary file
languages/wp_statistics-id_ID.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Untuk setiap kunjungan untuk mendata beberapa hit. Saat ini %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Halaman"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "User sedang online"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Pengunjung hari ini"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Pengunjung Hari ini"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Pengunjung kemarin"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Kemarin"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Total pengunjung"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Jumlah Pengunjung"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Tidak ada"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Peta jenis"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Setiap 2 minggu sekali"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Setiap 4 minggu"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistik"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistik"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Tampilkan statistik situs di sidebar."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Pengunjung Minggu ini"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Pengunjung Bulan ini"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Pengunjung Tahun ini"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Total tampilan halaman"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Total tampilan halaman"
1041
  msgid "Search Engine referred"
1042
  msgstr "Pencari yang disebut"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Jumlah Posting"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Jumlah Halaman"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Jumlah Komentar"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Jumlah Spam"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Jumlah Anggota"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Rata-rata Posting"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Rata-rata Komentar"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Rata-rata Anggota"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Tanggal Posting Terakhir"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Nama"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Butir"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Pengunjung Kemarin"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Pencari yang disebut"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Pilih opsi untuk mesin pencari"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Statistik lengkap untuk situs WordPress Anda."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Pengguna online pelacakan dalam WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "Halaman pengaturan"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Memukul pelacakan di WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Pelacakan dalam WP Statistics pengunjung tidak diaktifkan, harap menuju %s dan mengaktifkannya."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "Koleksi GeoIP tidak aktif, harap menuju %s dan mengaktifkan fitur ini."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Pengaturan"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Klik di sini untuk mengunjungi plugin di WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Kunjungi halaman WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Klik di sini untuk menilai dan meninjau plugin ini di WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Menilai plugin ini"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Ikhtisar"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Pencarian"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Kata-kata pencarian"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimasi"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manual"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Pengunjung hari ini"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Hari ini mengunjungi"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Pengunjung kemarin"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Lihat statistik"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Men-download ODF file"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Men-download HTML file"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Manual file tidak ditemukan."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap sudah di versi saat ini!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Diperbarui %s GeoIP record di database pengunjung."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "data %s lebih tua dari %s hari dibersihkan berhasil."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Tidak ada catatan ditemukan untuk membersihkan dari %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Silakan pilih nilai lebih dari 30 hari."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Klik untuk beralih"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Browser"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Perhatian: Pengecualian tidak saat ini diatur untuk direkam, hasil di ba
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Pengecualian Statistik"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 hari"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 hari"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 hari"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 bulan"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 bulan"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 bulan"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 bulan"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 tahun"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Dari"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Semua"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Judul Halaman tidak ditemukan"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Kunjungan"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Waktu: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Hits"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s platform data dihapus berhasil."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "data tabel %s berhasil dihapus."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Kesalahan, %s tidak dikosongkan!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Indeks database"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Negara"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Selamat, instalasi ini sudah sampai tanggal, tidak ada hubungannya."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Ekspor"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Ekspor dari"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Ekspor dari"
1858
  msgid "Please select"
1859
  msgstr "Silakan pilih"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Pilih tabel untuk output file."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Ekspor ke"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Pengunjung"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "Alamat IP diganti dengan nilai hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Menginstal rutin lengkap."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Sumber-sumber/informasi"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Membersihkan"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Database"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Update"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Jika Anda memerlukan solusi yang lebih kuat untuk mendelegasikan akses Anda mungkin ingin melihat %s di WordPress plugin direktori."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Pengecualian"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Ini akan menghapus manual ketika Anda menyimpan pengaturan, Anda yakin?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Fitur ini tidak akan menyimpan alamat IP dalam database tetapi sebaliknya digunakan hash unik. \"Store seluruh pengguna agen string\" pengaturan akan dinonaktifkan jika ini dipilih. Anda tidak akan dapat memulihkan alamat IP di masa depan untuk memulihkan informasi lokasi jika ini diaktifkan."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Pengguna Online"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Untuk setiap kunjungan untuk mendata beberapa hit. Saat ini %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Halaman"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "User sedang online"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Pengunjung hari ini"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Pengunjung Hari ini"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Pengunjung kemarin"
844
 
847
  msgstr "Kemarin"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Total pengunjung"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Jumlah Pengunjung"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Tidak ada"
863
 
916
  msgid "Map type"
917
  msgstr "Peta jenis"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Setiap 4 minggu"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistik"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Tampilkan statistik situs di sidebar."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Pengunjung Minggu ini"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Pengunjung Bulan ini"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Pengunjung Tahun ini"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Total tampilan halaman"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Pencari yang disebut"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Jumlah Posting"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Jumlah Halaman"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Jumlah Komentar"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Jumlah Spam"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Jumlah Anggota"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Rata-rata Posting"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Rata-rata Komentar"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Rata-rata Anggota"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Tanggal Posting Terakhir"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Nama"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Butir"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Pengunjung Kemarin"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Pencari yang disebut"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Pilih opsi untuk mesin pencari"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Statistik lengkap untuk situs WordPress Anda."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Pengaturan"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Klik di sini untuk mengunjungi plugin di WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Kunjungi halaman WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Klik di sini untuk menilai dan meninjau plugin ini di WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Menilai plugin ini"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - Hits"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Ikhtisar"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Pencarian"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Kata-kata pencarian"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimasi"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manual"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Pengunjung hari ini"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Hari ini mengunjungi"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Pengunjung kemarin"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Lihat statistik"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Men-download ODF file"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Men-download HTML file"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Manual file tidak ditemukan."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1415
  msgstr "Diperbarui %s GeoIP record di database pengunjung."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "data %s lebih tua dari %s hari dibersihkan berhasil."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Tidak ada catatan ditemukan untuk membersihkan dari %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Silakan pilih nilai lebih dari 30 hari."
1436
 
1456
  msgstr "Klik untuk beralih"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Browser"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Pengecualian Statistik"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 hari"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 hari"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 hari"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 bulan"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 bulan"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 bulan"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 bulan"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 tahun"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Semua"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Kunjungan"
1686
 
1773
  msgstr "Waktu: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Hits"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "data tabel %s berhasil dihapus."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Kesalahan, %s tidak dikosongkan!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Negara"
1852
 
1877
  msgstr "Selamat, instalasi ini sudah sampai tanggal, tidak ada hubungannya."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Ekspor"
1883
 
1886
  msgstr "Ekspor dari"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Silakan pilih"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Pilih tabel untuk output file."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Ekspor ke"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Pengunjung"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Menginstal rutin lengkap."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Sumber-sumber/informasi"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Membersihkan"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Database"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Update"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Jika Anda memerlukan solusi yang lebih kuat untuk mendelegasikan akses Anda mungkin ingin melihat %s di WordPress plugin direktori."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Pengecualian"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Fitur ini tidak akan menyimpan alamat IP dalam database tetapi sebaliknya digunakan hash unik. \"Store seluruh pengguna agen string\" pengaturan akan dinonaktifkan jika ini dipilih. Anda tidak akan dapat memulihkan alamat IP di masa depan untuk memulihkan informasi lokasi jika ini diaktifkan."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Pengguna Online"
2706
 
languages/wp_statistics-it_IT.mo CHANGED
Binary file
languages/wp_statistics-it_IT.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Per ogni visita tenere conto di parecchi Hits. Attualmente %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Pagine"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Utenti Online"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Visitatori Oggi"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Visite Oggi"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Visitatori Ieri"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Visite Ieri"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Visitatori Totali"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Visite Totali"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Nessuo"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Tipo di mappa"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Una volta ogni 2 settimane"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Una volta ogni 4 settimane"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistiche"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistiche"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Visualizza statistiche del sito nella barra laterale."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Visite Settimana"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Visite Mese"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Visite Anni"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Totale Pagine Viste"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Totale Pagine Viste"
1041
  msgid "Search Engine referred"
1042
  msgstr "Motore di Ricerca di riferimento"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Messaggi Totali"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Totale Pagine"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Totale Commenti"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Spam Totale"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Totale Utenti"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Media Messaggi"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Media Commenti"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Utenti Medi"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Data Ultimo Post"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Nome"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Oggetti"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Visite di ieri"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Motore di Ricerca di provenienza"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Selezionare il tipo di motore di ricerca"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Statistiche complete per il tuo sito WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Il tracciamento degli utenti online su Wp Statistics non è abilitata, vai su %s e attivala."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "Pagina di Configurazione"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Non è abilitato il rilevamento hit in WP Statistics, vai su %s e attivala."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Il rilevamento dei visitatori in WP Statistics non è abilitato, vai su %s e abilitalo."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "Il GeoIP non è attivo, vai su %s per abilitare questa funzionalità."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Impostazioni"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Clicca qui per vedere il plugin su WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Pagina visita WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Clicca qui per votare e vedere questo plugin su WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Vota questo plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics – Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Panoramica"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Ricerche"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Parole di Ricerca"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Top Visite Odierne"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Ottimizzazione"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manuale"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Visitatori di oggi"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Visite di oggi"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Visitatori di ieri"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Vedi Statistiche"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Scarica file ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Scarica file HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "File con il manuale non trovato."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap è già alla versione corrente!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Aggiornati %s record GeoIP nel database visitatori."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "dati %s meno %s giorni eliminati con successo."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Nessun record trovato per pulire da %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "selezionare un valore di oltre 30 giorni."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Fare clic per attivare"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Browsers"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Attenzione!!: Le Esclusioni al monento non sono registrate. I risultati
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Statistiche Esclusioni"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 Giorni"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 Giorni"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 Giorni"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 Mesi"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 Mesi"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 Mesi"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 Mesi"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 Anno"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Da"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Tutti"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Nessun titolo di pagina trovato"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Visite"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Ora: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Hits"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s dati piattaforma eliminati con successo."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "dati di tabella %s cancellati con successo."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Errore, %s non svuotato!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Database Index"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Paesi"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Congratulazioni, l'installazione è già aggiornata all'ultima versione, non devi fare altro."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Esporta"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Esporta da"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Esporta da"
1858
  msgid "Please select"
1859
  msgstr "Selezionare"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Selezionare la tabella per il file di output."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Export su"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Visitatori"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "Indirizzi IP sostituiti con i valori hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Installazione completa della routine."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Risorse/informazioni"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Pulisci"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Database"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Aggiornamenti"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Se avete bisogno di una soluzione più sicura per delegare l'accesso, potresti guardare %s nella WordPress plugin directory."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Esclusioni"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Questo eliminerà la documentazione quando si salveranno le impostazioni
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Questa caratteristica non memorizza gli indirizzi IP nel database ma invece utilizza un hash univoco. l'impostazione \"Archivia per intero la stringa dello user agent\" verrà disabilitata se si seleziona questa opzione. WP Statistic non sarà più in grado, da questo momento, di recuperare gli indirizzi IP e gli altri dati associati."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Utenti Online"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Per ogni visita tenere conto di parecchi Hits. Attualmente %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Pagine"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Utenti Online"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Visitatori Oggi"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Visite Oggi"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Visitatori Ieri"
844
 
847
  msgstr "Visite Ieri"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Visitatori Totali"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Visite Totali"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Nessuo"
863
 
916
  msgid "Map type"
917
  msgstr "Tipo di mappa"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Una volta ogni 4 settimane"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistiche"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Visualizza statistiche del sito nella barra laterale."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Visite Settimana"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Visite Mese"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Visite Anni"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Totale Pagine Viste"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Motore di Ricerca di riferimento"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Messaggi Totali"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Totale Pagine"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Totale Commenti"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Spam Totale"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Totale Utenti"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Media Messaggi"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Media Commenti"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Utenti Medi"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Data Ultimo Post"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Nome"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Oggetti"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Visite di ieri"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Motore di Ricerca di provenienza"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Selezionare il tipo di motore di ricerca"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Statistiche complete per il tuo sito WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Impostazioni"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Clicca qui per vedere il plugin su WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Pagina visita WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Clicca qui per votare e vedere questo plugin su WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Vota questo plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics – Hits"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Panoramica"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Ricerche"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Parole di Ricerca"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Top Visite Odierne"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Ottimizzazione"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manuale"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Visitatori di oggi"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Visite di oggi"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Visitatori di ieri"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Vedi Statistiche"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Scarica file ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Scarica file HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "File con il manuale non trovato."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr "Aggiornati %s record GeoIP nel database visitatori."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "dati %s meno %s giorni eliminati con successo."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Nessun record trovato per pulire da %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "selezionare un valore di oltre 30 giorni."
1436
 
1456
  msgstr "Fare clic per attivare"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Browsers"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Statistiche Esclusioni"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 Giorni"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 Giorni"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 Giorni"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 Mesi"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 Mesi"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 Mesi"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 Mesi"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 Anno"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Tutti"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Visite"
1686
 
1773
  msgstr "Ora: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Hits"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "dati di tabella %s cancellati con successo."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Errore, %s non svuotato!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Paesi"
1852
 
1877
  msgstr "Congratulazioni, l'installazione è già aggiornata all'ultima versione, non devi fare altro."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Esporta"
1883
 
1886
  msgstr "Esporta da"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Selezionare"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Selezionare la tabella per il file di output."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Export su"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Visitatori"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Installazione completa della routine."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Risorse/informazioni"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Pulisci"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Database"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Aggiornamenti"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Se avete bisogno di una soluzione più sicura per delegare l'accesso, potresti guardare %s nella WordPress plugin directory."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Esclusioni"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Questa caratteristica non memorizza gli indirizzi IP nel database ma invece utilizza un hash univoco. l'impostazione \"Archivia per intero la stringa dello user agent\" verrà disabilitata se si seleziona questa opzione. WP Statistic non sarà più in grado, da questo momento, di recuperare gli indirizzi IP e gli altri dati associati."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Utenti Online"
2706
 
languages/wp_statistics-ja.mo CHANGED
Binary file
languages/wp_statistics-ja.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr "%s のレコードが正常にパージされました。"
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "ヒット数は10以上でなければなりません!"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "ページ訪問数"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "ページ数"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "コメント数"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "スパム数"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "ユーザ数"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "投稿数の平均"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "コメント数の平均"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "ユーザ数の平均"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "統計を取得するための時間範囲、strtotime() (http://php.net/manual/en/datetime.formats.php) が計算に使用されます。"
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "検索プロバイダ"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "統計情報を取得するための検索プロバイダ"
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "数の書式"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "数値を表示する形式: 国際化, 英語, なし​​"
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "英語"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "インターナショナル"
212
 
@@ -226,7 +282,7 @@ msgstr "全時間の合計"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "WP Statisticsへの寄付について考えたことはありますか?"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "寄付します"
232
 
@@ -246,27 +302,27 @@ msgstr "今すぐ寄付します!"
246
  msgid "Close"
247
  msgstr "クローズ"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "表示したい統計情報を選択します。"
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "統計"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "投稿数"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "時間範囲"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "へ"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "行きます"
272
 
@@ -310,11 +366,11 @@ msgstr "WP Statisticsの古いインストールは境界状態で訪問テー
310
  msgid "Filtered by"
311
  msgstr "によってフィルタ"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "範囲"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr "最近の30日 (月)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "最近の7日間 (1週間)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "百度"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "それぞれの訪問について複数のヒットを考慮する。現在値は%s。"
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "ページ"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "WP Statisticsのためのショートコード(使用可能なコードのリストについては、管理マニュアルを参照してください)全てを含む、インストールされているWordPressでサポートされている全てのショートコードが、メッセージの本文でサポートされています ​​。ここではいくつかの例を示します。"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "オンラインユーザー"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "今日の訪問者"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "今日の訪問数"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "昨日の訪問者数"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "昨日の訪問数"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "総訪問者数"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "総訪問数"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "なし"
807
 
@@ -860,7 +916,7 @@ msgstr "ページ/投稿エディタウィジェットを無効にします。"
860
  msgid "Map type"
861
  msgstr "マップタイプ"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "グーグル"
@@ -1013,7 +1069,7 @@ msgstr "2週間毎に1回"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "4週間毎に1回"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "統計"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "統計"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "サイドバーにサイトの統計を表示します。"
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "今週の訪問数"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "今月の訪問者"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "年間の訪問数"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "総ページビュー数"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "総ページビュー数"
1041
  msgid "Search Engine referred"
1042
  msgstr "参照した検索エンジン"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "総投稿数"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "総ページ数"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "総コメント数"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "合計スパム数"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "総ユーザー数"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "平均投稿数"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "平均コメント数"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "平均ユーザー数"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "最終投稿日"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "名"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "アイテム"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "昨日の訪問数"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "参照した検索エンジン"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "検索エンジンの種類を選択"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "現在のPHPバージョンは"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP Statisticsは削除されています。無効にして削除してください。"
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Word Pressサイトのための完全な統計情報を表示します。"
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "WP Statisticsでオンラインユーザの追跡が有効になっていません。%sに移動して有効にしてください。"
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "設定ページ"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "WP Statisticsでヒットの追跡が有効になっていません。%sに移動して有効にしてください。"
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "WP Statisticsで訪問者の追跡が有効になっていません。%sに移動し、それを有効にしてください。"
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIPコレクションが有効ではありません。%sに移動してこの機能を有効にしてください。"
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "設定"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "ここをクリックして、WordPress.orgのプラグインを訪問してください"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "WordPress.orgページを訪問します"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "ここをクリックして、WordPress.orgでこのプラグインの評価とレビューをしてください。"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "このプラグインを評価する"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - ヒット"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "概要"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "オンライン"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "参照元"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "検索"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "検索ワード"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "今日のトップ訪問者"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "最適化"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "マニュアル"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "サイト"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "オプション"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "今日の訪問者"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "今日の訪問"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "昨日の訪問者"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "統計を見る"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "ODFファイルをダウンロード"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "HTMLファイルをダウンロード"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "マニュアルファイルが見つかりません。"
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WPの統計は、%s上に設置されています"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscapは既に最新バージョンです!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini更新"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "訪問者データベースで%sのGeoIPレコードを更新しました。"
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%sの%s日以上古いデータを正常に削除しました。"
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "%sから削除すべきレコードはありません!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "データベース整理"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "30日以上の値を選択してください。"
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "クリックして切り替えます"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "ブラウザ"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "注意: 現在、除外を記録するように設定されていませ
1449
  msgid "Exclusions Statistics"
1450
  msgstr "除外統計"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10日"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20日"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30日"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2ヶ月"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3ヶ月"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6ヶ月"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9ヶ月"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1年"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "から"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "すべて"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "ページのタイトルが見つかりません"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "訪問"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "時間: %sの"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "ヒット数"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%sのプラットフォームのデータが正常に削除されまし
1779
  msgid "No platform data found to remove!"
1780
  msgstr "削除すべきプラットフォームのデータはありません!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%sのテーブルデータが正常に削除されました。"
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "エラー %sが空ではありません!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "データベースのインデックス"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "国"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "おめでとうございます、あなたのインストールは既に最新になり、すべきことは何もありません。"
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "エクスポート"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "からのエクスポート"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "からのエクスポート"
1858
  msgid "Please select"
1859
  msgstr "選択してください"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "ファイルに出力するテーブルを選択します。"
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "にエクスポート"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "注: データベースからパージしたばかりなので、番号
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "訪問者"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IPアドレスをハッシュ値に置き換えます。"
2208
  msgid "Install routine complete."
2209
  msgstr "イ​​ンストールルーチンが完了しました。"
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "リソース/情報"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "削除"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "データベース"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "更新"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "履歴"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "あなたがアクセス権を委任するより堅牢なソリューションが必要な場合は、WordPressのプラグインディレクトリ内の%sで見たいと思うかもしれません。"
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "除外"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "これは設定を保存するときマニュアルを削除しますが
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "この機能は、データベース内にIPアドレスを格納せず、代わりに一意のハッシュを使用します。これが選択されている場合は、「全ユーザーエージェント文字列を保存」の設定は無効となります。これが有効になっている場合は、将来的に位置情報を回復するためにIPアドレスを回復することはできません。"
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "オンラインユーザ"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "ヒット数は10以上でなければなりません!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "ページ訪問数"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "ページ数"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "コメント数"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "スパム数"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "ユーザ数"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "投稿数の平均"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "コメント数の平均"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "ユーザ数の平均"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "検索プロバイダ"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "統計情報を取得するための検索プロバイダ"
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "数の書式"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "数値を表示する形式: 国際化, 英語, なし​​"
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "英語"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "インターナショナル"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "WP Statisticsへの寄付について考えたことはありますか?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "寄付します"
288
 
302
  msgid "Close"
303
  msgstr "クローズ"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "表示したい統計情報を選択します。"
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "統計"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "投稿数"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "時間範囲"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "へ"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "行きます"
328
 
366
  msgid "Filtered by"
367
  msgstr "によってフィルタ"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "範囲"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "最近の7日間 (1週間)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "百度"
440
 
537
  msgstr "それぞれの訪問について複数のヒットを考慮する。現在値は%s。"
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "ページ"
544
 
823
  msgstr "WP Statisticsのためのショートコード(使用可能なコードのリストについては、管理マニュアルを参照してください)全てを含む、インストールされているWordPressでサポートされている全てのショートコードが、メッセージの本文でサポートされています ​​。ここではいくつかの例を示します。"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "オンラインユーザー"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "今日の訪問者"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "今日の訪問数"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "昨日の訪問者数"
844
 
847
  msgstr "昨日の訪問数"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "総訪問者数"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "総訪問数"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "なし"
863
 
916
  msgid "Map type"
917
  msgstr "マップタイプ"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "グーグル"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "4週間毎に1回"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "統計"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "サイドバーにサイトの統計を表示します。"
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "今週の訪問数"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "今月の訪問者"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "年間の訪問数"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "総ページビュー数"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "参照した検索エンジン"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "総投稿数"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "総ページ数"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "総コメント数"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "合計スパム数"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "総ユーザー数"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "平均投稿数"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "平均コメント数"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "平均ユーザー数"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "最終投稿日"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "名"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "アイテム"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "昨日の訪問数"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "参照した検索エンジン"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "検索エンジンの種類を選択"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP Statisticsは削除されています。無効にして削除してください。"
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Word Pressサイトのための完全な統計情報を表示します。"
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "設定"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "ここをクリックして、WordPress.orgのプラグインを訪問してください"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "WordPress.orgページを訪問します"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "ここをクリックして、WordPress.orgでこのプラグインの評価とレビューをしてください。"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "このプラグインを評価する"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - ヒット"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "概要"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "オンライン"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "参照元"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "検索"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "検索ワード"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "今日のトップ訪問者"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "最適化"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "マニュアル"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "サイト"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "オプション"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "今日の訪問者"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "今日の訪問"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "昨日の訪問者"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "統計を見る"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "ODFファイルをダウンロード"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "HTMLファイルをダウンロード"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "マニュアルファイルが見つかりません。"
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WPの統計は、%s上に設置されています"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini更新"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1415
  msgstr "訪問者データベースで%sのGeoIPレコードを更新しました。"
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%sの%s日以上古いデータを正常に削除しました。"
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "%sから削除すべきレコードはありません!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "データベース整理"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "30日以上の値を選択してください。"
1436
 
1456
  msgstr "クリックして切り替えます"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "ブラウザ"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "除外統計"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10日"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20日"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30日"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2ヶ月"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3ヶ月"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6ヶ月"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9ヶ月"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1年"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "すべて"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "訪問"
1686
 
1773
  msgstr "時間: %sの"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "ヒット数"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "削除すべきプラットフォームのデータはありません!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%sのテーブルデータが正常に削除されました。"
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "エラー %sが空ではありません!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "国"
1852
 
1877
  msgstr "おめでとうございます、あなたのインストールは既に最新になり、すべきことは何もありません。"
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "エクスポート"
1883
 
1886
  msgstr "からのエクスポート"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "選択してください"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "ファイルに出力するテーブルを選択します。"
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "にエクスポート"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "訪問者"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "イ​​ンストールルーチンが完了しました。"
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "リソース/情報"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "削除"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "データベース"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "更新"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "履歴"
2267
 
2444
  msgstr "あなたがアクセス権を委任するより堅牢なソリューションが必要な場合は、WordPressのプラグインディレクトリ内の%sで見たいと思うかもしれません。"
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "除外"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "この機能は、データベース内にIPアドレスを格納せず、代わりに一意のハッシュを使用します。これが選択されている場合は、「全ユーザーエージェント文字列を保存」の設定は無効となります。これが有効になっている場合は、将来的に位置情報を回復するためにIPアドレスを回復することはできません。"
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "オンラインユーザ"
2706
 
languages/wp_statistics-nl_NL.mo CHANGED
Binary file
languages/wp_statistics-nl_NL.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr "%s records succesvol verwijderd."
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "Aantal hits moet groter of gelijk aan 10 zijn!"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "Paginabezoeken"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "Aantal pagina&#39;s"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "Aantal commentaren"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "Spam aantal"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "Aantal gebruikers"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "Gemiddeld aantal berichten"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "Gemiddeld aantal commentaren"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "Gebruikergemiddelde"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "De tijdsduur voor het verkrijgen van de statistieken. De PHP-functie 'strtotime()' (http://php.net/manual/en/datetime.formats.php) zal worden gebruikt voor de berekening."
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "Zoekmachine"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "De zoekmachine waarvan de statistieken verkregen worden."
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "Getalformaat"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "Het formaat om getallen weer te geven in: i18n, Engels, geen."
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "Engels"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "Internationaal"
212
 
@@ -226,7 +282,7 @@ msgstr "Alles"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "Heb je nagedacht om te doneren aan WP Statistics?"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "Doneren"
232
 
@@ -246,27 +302,27 @@ msgstr "Doneer nu!"
246
  msgid "Close"
247
  msgstr "Afsluiten"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "Selecteer de statistiek die u wilt weergeven."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "Statistisch"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "Berichten teller"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "Tijdsduur"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "naar"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "Ga"
272
 
@@ -310,11 +366,11 @@ msgstr "Oudere installaties van WP-statistics staan in sommige gevallen dubbele
310
  msgid "Filtered by"
311
  msgstr "Gefilterd op"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "Reeks"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr "Laatste 30 dagen (maand)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "Laatste 7 dagen (week)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "Baidu"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Voor elk bezoek meerdere hits tellen. Momenteel %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Pagina 's"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "Elke shortcode die ondersteund worden door uw WordPress-installatie, inclusief alle shortcodes van WP Statistics (zie de beheerdershandleiding voor een lijst van beschikbare codes) wordt ondersteund in de inhoud van het bericht. Hier zijn enkele voorbeelden:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Gebruiker Online"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Vandaag bezoeker"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Vandaag bezoek"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Gisteren bezoeker"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Gisteren bezoek"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Totaal aantal bezoekers"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Totale bezoek"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Geen"
807
 
@@ -860,7 +916,7 @@ msgstr "Uitschakelen van de pagina/bericht-bewerker widget."
860
  msgid "Map type"
861
  msgstr "Kaarttype"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Eenmaal per 2 weken"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Eenmaal per 4 weken"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistieken"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistieken"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Sitestatistieken in zijbalk weergeven."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Week bezoek"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Maand bezoek"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Jaar bezoeken"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Totale pageviews"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Totale pageviews"
1041
  msgid "Search Engine referred"
1042
  msgstr "Zoekmachine bedoelde"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Totaal aantal berichten"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Totaal aantal pagina 's"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Totaal commentaren"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Totale Spams"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Totaal aantal bezoekers"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Gemiddelde berichten"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Gemiddelde reacties"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Gemiddelde bezoekers"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Datum laatste bericht"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Naam"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Artikelen"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Bezoek gisteren"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Zoekmachine bedoelde"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Selecteer type zoekmachine"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "Uw huidige PHP-versie is"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP CBS is verwijderd, u kunt het nu uitschakelen en verwijderen."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Volledige statistieken voor uw WordPress site."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "On line-gebruiker volgen in statistieken van WP is niet ingeschakeld, ga naar %s en inschakelen."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "pagina-instelling"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Hit volgen in statistieken van WP is niet ingeschakeld, ga naar %s en inschakelen."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Bezoeker bijhouden in WP Statistics niet is ingeschakeld, ga naar %s en inschakelen."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP collectie is niet actief, ga naar %s en deze functie inschakelen."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Instellingen"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Klik hier om naar de plug-in op WordPress.org te gaan"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Bezoek WordPress.org pagina"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Klik hier om deze plug-in op WordPress.org te beoordelen en waardering te geven."
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Waardeer deze plug-in"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP statistiek - Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Overzicht"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "Online"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "Verwijzers"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Zoekopdrachten"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Zoekwoorden"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Topbezoekers vandaag"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimalisatie"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Handleiding"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "Site"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "Opties"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Bezoeker vandaag"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Bezoek vandaag"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Bezoeker gisteren"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Weergave Statistieken"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "ODF bestand downloaden"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Het HTML-bestand downloaden"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Handleiding-bestand niet gevonden."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WP Statistics%s geïnstalleerd op"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "Browscap al op de huidige versie!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini update over"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "%s-GeoIP records bijgewerkt in de bezoekers-database."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s gegevens ouder dan %s dagen met succes verwijderd."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Geen records gevonden om te zuiveren van %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "Database opgeschoond op"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Selecteer een waarde meer dan 30 dagen."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Klik hierop om te schakelen"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Browsers"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Let op: Uitsluitingen worden momenteel niet geregistreerd. Onderstaande
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Statistieken uitsluitingen"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 dagen"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 dagen"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 dagen"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 maanden"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 maanden"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 maanden"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 maanden"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 jaar"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Van"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Alle"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Geen paginatitel gevonden"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Bezoeken"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Tijd: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Hits"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s platform gegevens verwijderd."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Geen platform-gegevens gevonden om te verwijderen!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "tabelgegevens %s succesvol verwijderd."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Fout, %s niet leeggemaakt!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Database Index"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Landen"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Gefeliciteerd, is uw installatie al up-to-date. Er is hier niets te doen."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Exporteren"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Exporteren vanuit"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Exporteren vanuit"
1858
  msgid "Please select"
1859
  msgstr "Gelieve te selecteren"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Selecteer de tabel voor het downloadbestand."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Exporteren naar"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Opmerking: Omdat de database net opgeschoond is, moet u deze pagina herl
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Bezoekers"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP-adressen vervangen met hash-waarden."
2208
  msgid "Install routine complete."
2209
  msgstr "Installeren volledige routine."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Middelen/informatie"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Systeemaanpassingen"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Database"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Updates"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Historie"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Als u een robuustere oplossing voor gemachtigden-toegang wilt,kunt u kijken naar %s in de WordPress plug-inmap."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Uitsluitingen"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Dit zal de handleiding verwijderen wanneer u de instellingen opslaan, be
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Deze functie zal IP-adressen niet in de database opslaan maar zal in plaats daarvan een unieke hash gebruiken. De \"hele gebruikers-agent-string opslaan\"-instelling wordt uitgeschakeld als deze optie is geselecteerd. U kan de IP-adressen dan niet meer herleiden tot locatie-informatie."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Gebruikers Online"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "Aantal hits moet groter of gelijk aan 10 zijn!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "Paginabezoeken"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "Aantal pagina&#39;s"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "Aantal commentaren"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "Spam aantal"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "Aantal gebruikers"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "Gemiddeld aantal berichten"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "Gemiddeld aantal commentaren"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "Gebruikergemiddelde"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "Zoekmachine"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "De zoekmachine waarvan de statistieken verkregen worden."
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "Getalformaat"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "Het formaat om getallen weer te geven in: i18n, Engels, geen."
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "Engels"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "Internationaal"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "Heb je nagedacht om te doneren aan WP Statistics?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "Doneren"
288
 
302
  msgid "Close"
303
  msgstr "Afsluiten"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "Selecteer de statistiek die u wilt weergeven."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "Statistisch"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "Berichten teller"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "Tijdsduur"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "naar"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "Ga"
328
 
366
  msgid "Filtered by"
367
  msgstr "Gefilterd op"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "Reeks"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "Laatste 7 dagen (week)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "Baidu"
440
 
537
  msgstr "Voor elk bezoek meerdere hits tellen. Momenteel %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Pagina 's"
544
 
823
  msgstr "Elke shortcode die ondersteund worden door uw WordPress-installatie, inclusief alle shortcodes van WP Statistics (zie de beheerdershandleiding voor een lijst van beschikbare codes) wordt ondersteund in de inhoud van het bericht. Hier zijn enkele voorbeelden:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Gebruiker Online"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Vandaag bezoeker"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Vandaag bezoek"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Gisteren bezoeker"
844
 
847
  msgstr "Gisteren bezoek"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Totaal aantal bezoekers"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Totale bezoek"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Geen"
863
 
916
  msgid "Map type"
917
  msgstr "Kaarttype"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Eenmaal per 4 weken"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistieken"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Sitestatistieken in zijbalk weergeven."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Week bezoek"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Maand bezoek"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Jaar bezoeken"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Totale pageviews"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Zoekmachine bedoelde"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Totaal aantal berichten"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Totaal aantal pagina 's"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Totaal commentaren"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Totale Spams"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Totaal aantal bezoekers"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Gemiddelde berichten"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Gemiddelde reacties"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Gemiddelde bezoekers"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Datum laatste bericht"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Naam"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Artikelen"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Bezoek gisteren"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Zoekmachine bedoelde"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Selecteer type zoekmachine"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP CBS is verwijderd, u kunt het nu uitschakelen en verwijderen."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Volledige statistieken voor uw WordPress site."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Instellingen"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Klik hier om naar de plug-in op WordPress.org te gaan"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Bezoek WordPress.org pagina"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Klik hier om deze plug-in op WordPress.org te beoordelen en waardering te geven."
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Waardeer deze plug-in"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP statistiek - Hits"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Overzicht"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "Online"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "Verwijzers"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Zoekopdrachten"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Zoekwoorden"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Topbezoekers vandaag"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimalisatie"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Handleiding"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "Site"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "Opties"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Bezoeker vandaag"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Bezoek vandaag"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Bezoeker gisteren"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Weergave Statistieken"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "ODF bestand downloaden"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Het HTML-bestand downloaden"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Handleiding-bestand niet gevonden."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WP Statistics%s geïnstalleerd op"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini update over"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1415
  msgstr "%s-GeoIP records bijgewerkt in de bezoekers-database."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s gegevens ouder dan %s dagen met succes verwijderd."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Geen records gevonden om te zuiveren van %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "Database opgeschoond op"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Selecteer een waarde meer dan 30 dagen."
1436
 
1456
  msgstr "Klik hierop om te schakelen"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Browsers"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Statistieken uitsluitingen"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 dagen"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 dagen"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 dagen"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 maanden"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 maanden"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 maanden"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 maanden"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 jaar"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Alle"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Bezoeken"
1686
 
1773
  msgstr "Tijd: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Hits"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Geen platform-gegevens gevonden om te verwijderen!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "tabelgegevens %s succesvol verwijderd."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Fout, %s niet leeggemaakt!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Landen"
1852
 
1877
  msgstr "Gefeliciteerd, is uw installatie al up-to-date. Er is hier niets te doen."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Exporteren"
1883
 
1886
  msgstr "Exporteren vanuit"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Gelieve te selecteren"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Selecteer de tabel voor het downloadbestand."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Exporteren naar"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Bezoekers"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Installeren volledige routine."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Middelen/informatie"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Systeemaanpassingen"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Database"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Updates"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Historie"
2267
 
2444
  msgstr "Als u een robuustere oplossing voor gemachtigden-toegang wilt,kunt u kijken naar %s in de WordPress plug-inmap."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Uitsluitingen"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Deze functie zal IP-adressen niet in de database opslaan maar zal in plaats daarvan een unieke hash gebruiken. De \"hele gebruikers-agent-string opslaan\"-instelling wordt uitgeschakeld als deze optie is geselecteerd. U kan de IP-adressen dan niet meer herleiden tot locatie-informatie."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Gebruikers Online"
2706
 
languages/wp_statistics-pl_PL.mo CHANGED
Binary file
languages/wp_statistics-pl_PL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-05-01 12:30:08+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Strony"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "Dowolny krótki kod obsługiwany przez Twoją instalację WordPressa, obejmuje wszystkie krótkie kody dla WP Statistics (zobacz podręcznik administratora uzyskując listę dostępnych kodów), które są obsługiwane w treści wiadomości. Oto kilka przykładów:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Osób online"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Odwiedziło dzisiaj"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Odwiedzin dzisiaj"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Odwiedziło wczoraj"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Odwiedzin wczoraj"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Razem odwiedzających"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Razem odwiedzin"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Żaden"
807
 
@@ -860,7 +916,7 @@ msgstr "Wyłącz widget edytora strony/wpisu."
860
  msgid "Map type"
861
  msgstr "Typ mapy"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Raz na 2 tygodnie"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Raz na 4 tygodnie"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statystyki"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statystyki"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Pokaż stronę Statystyki w pasku bocznym."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Odwiedzin w tygodniu"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Odwiedzin w miesiącu"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Odwiedzin w roku"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Razem odwiedzonych stron"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Razem odwiedzonych stron"
1041
  msgid "Search Engine referred"
1042
  msgstr "Wyszukiwarka, o której mowa"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Razem wpisów"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Razem stron"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Razem komentarzy"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Razem spamów"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Razem uzytkowników"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Średnio wpisów"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Średnio komentarzy"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Średnio użytkowników"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Data ostatniego wpisu"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Nazwa"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Wpisów"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Wczoraj odwiedzin"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Odniesienia wyszukiwarki"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Wybierz typ wyszukiwarki"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "Twoja bieżąca wersja PHP"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP Statistics został usunięty, proszę wyłączyć i usunąć go."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Uzupełnij statystyki dla Twojej strony WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Śledzenie aktywnych użytkowników w WP Statistics nie jest włączone, przejdź do %s i włącz go."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "ustawienia strony"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Śledzenie wejść w WP Statistics nie jest włączone, przejdź do %s i włącz go."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Śledzenie gości w WP Statistics nie jest włączone, przejdź do %s i włącz go."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "Biblioteka GeoIP nie jest aktywna, przejdź do %s i włącz ją."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Ustawienia"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Kliknij tutaj, aby odwiedzić wtyczkę WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Odwiedź stronę WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Kliknij tutaj, aby ocenić i opisać tę wtyczkę na WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Oceń tę wtyczkę"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - Wejścia"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Przegląd"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "Dostępni użytkownicy"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "Referenci"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Wyszukiwarki"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Wyszukiwane frazy"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Najlepsi dzisiejsi odwiedzający"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optymizacja"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Podręcznik"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "Teren"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "Opcje"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Dzisiaj odwiedziło"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Dzisiaj odwiedzin"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Wczoraj odwiedziło"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Zobacz statystyki"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Pobierz plik ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Pobierz plik HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Plik podręcznika nie znaleziony."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WP Statistics %s zainstalował się"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap już w aktualnej wersji!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini zaktualizował się"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Zaktualizowano %s rekordów GeoIP w bazie danych odwiedzających. "
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s danych starszych niż %s dni pomyślnie usuniętych."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Nie ma rekordów do przeczyszczenia %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "Baza danych wyczyszczona"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Proszę wybrać wartość w ciągu 30 dni."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Kliknij, aby przełączyć"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Przeglądarki"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Uwaga: Wykluczenia nie są obecnie ustawione na zapisywanie, poniższe w
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Statytyki wykluczeń"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 dni"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 dni"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 dni"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 miesiące"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 miesiące"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 miesięcy"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 miesięcy"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "Rok"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "z"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Wszystkie"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Tytuł strony nie znaleziony"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Odwiedzin"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Czas: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Wejścia"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "Dane platformy %s pomyślnie usunięte."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Nie znaleziono danych platform, aby usunąć!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "Dane tabeli %s pomyślnie usunięte."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Błąd, %s nie opróźniono!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Indeks bazy danych"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Kraje"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Gratulacje, instalacja jest już aktualna, nic nie rób."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Eksportuj"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Eksportuj z"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Eksportuj z"
1858
  msgid "Please select"
1859
  msgstr "Proszę wybrać"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Wybierż tablę dla pliku wyjściowego."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Eksportuj do"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Uwaga: Ponieważ właśnie usunięto bazę danych, należy załadować t
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Odzwiedzający"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "Adresy IP zastąpione wartościami skrótu."
2208
  msgid "Install routine complete."
2209
  msgstr "Zainstaluj rutynowe zakończona."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Zasoby/Informacje"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Wyczyść"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Baza danych"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Zaktualizuj"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Historyczny"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, możesz zajrzeć do %s w katalogu wtyczek WordPress."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Wykluczenia"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Spowoduje to usunięcie instrukcji po zapisaniu ustawień, czy na pewno?
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Ta funkcja nie będzie przechowywać adresów IP w bazie danych, ale zamiast tego stosować unikalny hash. Ustawienie \"Przechowuj cały ciąg agenta użytkownika\" zostanie wyłączone, jeśli ta opcja jest zaznaczona. Nie będzie w stanie odzyskać adresów IP w przyszłości w celu odzyskania informacji o lokalizacji, jeśli ta jest włączona."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Aktywni użytkownicy"
2669
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-09-03 12:39:46+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr "ID posta/strony do wygenerowania statystyk."
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr "ID posta/strony"
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr "Ask.com"
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr "śledzenie odwiedzających"
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr "kolekcja geoip"
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "indeks w bazie wizyt"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr "Aktualizacje bazy danych są wymagane, przejdź do %s i zaktualizuj: %s"
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr "indeks w bazie krajów"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr "tabela wyszukiwania"
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr "strona z ustawieniami"
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ","
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr "Następujące funkcje są wyłączone, przejdź do %s i włącz je: %s"
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "śledzenie trafień"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr "śledzenie użytkowników online"
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Strony"
544
 
823
  msgstr "Dowolny krótki kod obsługiwany przez Twoją instalację WordPressa, obejmuje wszystkie krótkie kody dla WP Statistics (zobacz podręcznik administratora uzyskując listę dostępnych kodów), które są obsługiwane w treści wiadomości. Oto kilka przykładów:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Osób online"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Odwiedziło dzisiaj"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Odwiedzin dzisiaj"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Odwiedziło wczoraj"
844
 
847
  msgstr "Odwiedzin wczoraj"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Razem odwiedzających"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Razem odwiedzin"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Żaden"
863
 
916
  msgid "Map type"
917
  msgstr "Typ mapy"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Raz na 4 tygodnie"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statystyki"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Pokaż stronę Statystyki w pasku bocznym."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Odwiedzin w tygodniu"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Odwiedzin w miesiącu"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Odwiedzin w roku"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Razem odwiedzonych stron"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Wyszukiwarka, o której mowa"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Razem wpisów"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Razem stron"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Razem komentarzy"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Razem spamów"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Razem uzytkowników"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Średnio wpisów"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Średnio komentarzy"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Średnio użytkowników"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Data ostatniego wpisu"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Nazwa"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Wpisów"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Wczoraj odwiedzin"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Odniesienia wyszukiwarki"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Wybierz typ wyszukiwarki"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP Statistics został usunięty, proszę wyłączyć i usunąć go."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Uzupełnij statystyki dla Twojej strony WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Ustawienia"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Kliknij tutaj, aby odwiedzić wtyczkę WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Odwiedź stronę WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Kliknij tutaj, aby ocenić i opisać tę wtyczkę na WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Oceń tę wtyczkę"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - Wejścia"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Przegląd"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "Dostępni użytkownicy"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "Referenci"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Wyszukiwarki"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Wyszukiwane frazy"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Najlepsi dzisiejsi odwiedzający"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optymizacja"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Podręcznik"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "Teren"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "Opcje"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Dzisiaj odwiedziło"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Dzisiaj odwiedzin"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Wczoraj odwiedziło"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Zobacz statystyki"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Pobierz plik ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Pobierz plik HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Plik podręcznika nie znaleziony."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WP Statistics %s zainstalował się"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini zaktualizował się"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr "Zaktualizowano %s rekordów GeoIP w bazie danych odwiedzających. "
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s danych starszych niż %s dni pomyślnie usuniętych."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Nie ma rekordów do przeczyszczenia %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "Baza danych wyczyszczona"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Proszę wybrać wartość w ciągu 30 dni."
1436
 
1456
  msgstr "Kliknij, aby przełączyć"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Przeglądarki"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Statytyki wykluczeń"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 dni"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 dni"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 dni"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 miesiące"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 miesiące"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 miesięcy"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 miesięcy"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "Rok"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Wszystkie"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Odwiedzin"
1686
 
1773
  msgstr "Czas: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Wejścia"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Nie znaleziono danych platform, aby usunąć!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "Dane tabeli %s pomyślnie usunięte."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Błąd, %s nie opróźniono!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Kraje"
1852
 
1877
  msgstr "Gratulacje, instalacja jest już aktualna, nic nie rób."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Eksportuj"
1883
 
1886
  msgstr "Eksportuj z"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Proszę wybrać"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Wybierż tablę dla pliku wyjściowego."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Eksportuj do"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Odzwiedzający"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Zainstaluj rutynowe zakończona."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Zasoby/Informacje"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Wyczyść"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Baza danych"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Zaktualizuj"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Historyczny"
2267
 
2444
  msgstr "Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, możesz zajrzeć do %s w katalogu wtyczek WordPress."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Wykluczenia"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Ta funkcja nie będzie przechowywać adresów IP w bazie danych, ale zamiast tego stosować unikalny hash. Ustawienie \"Przechowuj cały ciąg agenta użytkownika\" zostanie wyłączone, jeśli ta opcja jest zaznaczona. Nie będzie w stanie odzyskać adresów IP w przyszłości w celu odzyskania informacji o lokalizacji, jeśli ta jest włączona."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Aktywni użytkownicy"
2706
 
languages/wp_statistics-pt_BR.mo CHANGED
Binary file
languages/wp_statistics-pt_BR.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Para cada visita contabilizar vários hits. Atualmente a %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Páginas"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Usuário on-line"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Visitantes hoje"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Visita hoje"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Ontem o visitante"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Ontem visitar"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Total visitantes"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Visita total"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Nenhum"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Tipo de mapa"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Uma vez a cada 2 semanas"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Uma vez a cada 4 semanas"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Estatísticas"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Estatísticas"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Mostre estatísticas do site na barra lateral."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Visita da semana"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Visita do mês"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Anos visita"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Total Page Views"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Total Page Views"
1041
  msgid "Search Engine referred"
1042
  msgstr "Refere o motor de busca"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Total de mensagens"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Total de páginas"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Comentários totais"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Total de Spams"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Total de usuários"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Média de Posts"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Médios comentários"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Média de usuários"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Data último Post"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Nome"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Itens"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Visita de ontem"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Motor de busca conhecido"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Seleccione o tipo de motor de busca"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "Estatísticas da WP"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Estatísticas completas para o seu site WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Usuário on-line, acompanhamento de estatísticas WP não está habilitado, por favor, vá para %s e habilitá-lo."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "página de configuração"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Sucesso controle nas estatísticas WP não está habilitado, por favor vá para %s e habilitá-lo."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Visitante em WP Statistics de rastreamento não é habilitada, vá para %s e habilitá-lo."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP coleção não está ativa, por favor, vá para %s e habilitar esse recurso."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Configurações"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Clique aqui para visitar o plugin no WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Visite a página do WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Clique aqui para avaliar e revisar este plugin no WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Classifique este plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP-Statistics - Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Visão geral"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Pesquisas"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Palavras de pesquisa"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Otimização"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manual"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Visitantes hoje"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Hoje visitamos"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Ontem o visitante"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "View Stats"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Baixar arquivo ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Baixar arquivo HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Manual arquivo não encontrado."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Você não tem permissões suficientes para acessar esta página."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap já na versão atual!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Atualizado %s GeoIP registros no banco de dados de visitantes."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "dados de %s mais de %s dias purgados com êxito."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Nenhum registro encontrado para a purga de %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Por favor, selecione um valor de mais de 30 dias."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Clique para alternar entre"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Navegadores"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Atenção: Exclusão não estão atualmente definidas para ser gravado,
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Estatísticas de exclusões"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 dias"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 dias"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 dias"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 meses"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 meses"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 meses"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 meses"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 ano"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "De"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Todos os"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "title da página não encontrado"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Visitas"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Tempo: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Hits"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "dados de %s plataformas excluídos com sucesso."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "dados da tabela %s excluídos com sucesso."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Erro, %s não esvaziado!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Índice de banco de dados"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Países"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Parabéns, sua instalação é já até à data, nada a fazer."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Exportação"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Exportação de"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Exportação de"
1858
  msgid "Please select"
1859
  msgstr "Por favor selecione"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Selecione a tabela para o arquivo de saída."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Exportar para"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Visitantes"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "Endereços IP substituído com valores de hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Instale a rotina completa."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Recursos/informação"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Purga"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Banco de dados"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Atualizações"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Se você precisa de uma solução mais robusta para delegar acesso, que você pode querer olhar para %s no diretório plugin WordPress."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Exclusões"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Isso excluirá o manual quando você salvar as configurações, você te
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Esse recurso não irá armazenar endereços IP no banco de dados, mas em vez disso, usou um hash exclusivo. O string de agente de usuário inteira \"Store\" configuração será desabilitada se esta opção estiver seleccionada. Você não será capaz de recuperar os endereços IP no futuro para recuperar informações de localização, se essa opção estiver habilitada."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Usuários on-line"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Para cada visita contabilizar vários hits. Atualmente a %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Páginas"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Usuário on-line"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Visitantes hoje"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Visita hoje"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Ontem o visitante"
844
 
847
  msgstr "Ontem visitar"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Total visitantes"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Visita total"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Nenhum"
863
 
916
  msgid "Map type"
917
  msgstr "Tipo de mapa"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Uma vez a cada 4 semanas"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Estatísticas"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Mostre estatísticas do site na barra lateral."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Visita da semana"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Visita do mês"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Anos visita"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Total Page Views"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Refere o motor de busca"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Total de mensagens"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Total de páginas"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Comentários totais"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Total de Spams"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Total de usuários"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Média de Posts"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Médios comentários"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Média de usuários"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Data último Post"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Nome"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Itens"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Visita de ontem"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Motor de busca conhecido"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Seleccione o tipo de motor de busca"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "Estatísticas da WP"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Estatísticas completas para o seu site WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Configurações"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Clique aqui para visitar o plugin no WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Visite a página do WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Clique aqui para avaliar e revisar este plugin no WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Classifique este plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP-Statistics - Hits"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Visão geral"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Pesquisas"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Palavras de pesquisa"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Otimização"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manual"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Visitantes hoje"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Hoje visitamos"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Ontem o visitante"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "View Stats"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Baixar arquivo ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Baixar arquivo HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Manual arquivo não encontrado."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Você não tem permissões suficientes para acessar esta página."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1415
  msgstr "Atualizado %s GeoIP registros no banco de dados de visitantes."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "dados de %s mais de %s dias purgados com êxito."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Nenhum registro encontrado para a purga de %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Por favor, selecione um valor de mais de 30 dias."
1436
 
1456
  msgstr "Clique para alternar entre"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Navegadores"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Estatísticas de exclusões"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 dias"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 dias"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 dias"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 meses"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 meses"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 meses"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 meses"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 ano"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Todos os"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Visitas"
1686
 
1773
  msgstr "Tempo: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Hits"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "dados da tabela %s excluídos com sucesso."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Erro, %s não esvaziado!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Países"
1852
 
1877
  msgstr "Parabéns, sua instalação é já até à data, nada a fazer."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Exportação"
1883
 
1886
  msgstr "Exportação de"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Por favor selecione"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Selecione a tabela para o arquivo de saída."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Exportar para"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Visitantes"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Instale a rotina completa."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Recursos/informação"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Purga"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Banco de dados"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Atualizações"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Se você precisa de uma solução mais robusta para delegar acesso, que você pode querer olhar para %s no diretório plugin WordPress."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Exclusões"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Esse recurso não irá armazenar endereços IP no banco de dados, mas em vez disso, usou um hash exclusivo. O string de agente de usuário inteira \"Store\" configuração será desabilitada se esta opção estiver seleccionada. Você não será capaz de recuperar os endereços IP no futuro para recuperar informações de localização, se essa opção estiver habilitada."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Usuários on-line"
2706
 
languages/wp_statistics-ro_RO.mo CHANGED
Binary file
languages/wp_statistics-ro_RO.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Pentru fiecare vizita a ţine cont de mai multe hit-uri. În prezent %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Pagini"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Useri online"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Vizitatori astăzi"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Vizite azi"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Ieri vizitator"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Vizitaţi ieri"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Total vizitatori"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Vizite pe an"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Nici unul"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Tip hartă"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "O dată la 2 săptămâni"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "O dată la 4 săptămâni"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistici"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistici"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Arată Statistici site în bara laterală."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Vizite pe saptamana"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Vizite pe luna"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Vizite pe an"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Total de vizualizări"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Total de vizualizări"
1041
  msgid "Search Engine referred"
1042
  msgstr "Motor de căutare prevăzute"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Postari totale"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Pagini totale"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Comentarii totale"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Spam total"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Useri totali"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Postari in medie"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Comentarii in medie"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Useri in medie"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Data ultimei postari"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Nume"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Elemente"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Vizite ieri"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Motor de căutare prevăzute"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Selectaţi tipul de motor de căutare"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Complet de statistici pentru site-ul WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Utilizator online de urmărire în WP Statistics nu este activat, vă rugăm să mergeţi la %s şi activa."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "Pagina de setare"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Lovit de urmărire în WP Statistics nu este activat, vă rugăm să mergeţi la %s şi activa."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Vizitator de urmărire în WP Statistics nu este activat, vă rugăm să mergeţi la %s şi activa."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP colectare nu este activ, vă rugăm să mergeţi la %s şi activaţi această caracteristică."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Setări"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Click aici pentru a vizita plugin-ul pe WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Vizitaţi pagina de WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Click aici pentru a evalua şi revizui acest plug-in pe WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Rata de acest plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - hit-uri"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Privire de ansamblu"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Căutări"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Căutare cuvinte"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimizare"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manual de"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Azi vizitatori"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Astăzi vizita"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Ieri vizitator"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Vezi statisticile"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Descarcă ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Descărcaţi fişierul HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Manualul fişier negăsit."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap deja la versiunea curentă!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Actualizat %s GeoIP înregistrările bazei de date de vizitatori."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s date mai vechi de %s zile curăţit cu succes."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Înregistrări găsite epurare din %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Vă rugăm să selectaţi o valoare de peste 30 de zile."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Faceţi clic pentru a comuta"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Browsere"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Atentie: Excluderea nu sunt în prezent stabilite pentru a fi înregistr
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Excluderi statistici"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 zile"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 de zile"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 de zile"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 luni"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 luni"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 luni"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 luni"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 an"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "La"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Toate"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Nici a title de pagina găsit"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Vizite"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Timp: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Hit-uri"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "platforma de date %s şters cu succes."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "date de tabel %s şters cu succes."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Eroare, %s nu golite!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Indicele de baze de date"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Ţări"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Felicitări, instalarea este deja până la data, nimic de a face."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Export"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Exportul din"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Exportul din"
1858
  msgid "Please select"
1859
  msgstr "Vă rugăm să selectaţi"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Selectaţi tabelul pentru fişierul de ieşire."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Export"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Vizitatori"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "Adrese IP înlocuite cu valorile hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Instalarea completă de rutină."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Resurse/informatii"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Epurare"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Baza de date"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Actualizări"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Dacă aveţi nevoie de o soluţie mai robust pentru a delega acces aţi putea dori să se uite la %s în WordPress plug-in directorul."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Excluderi"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Aceasta va şterge manual când salvaţi setările, sigur?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Această caracteristică nu va stoca adrese IP în baza de date, dar în schimb folosit un hash unic. \"Store întreaga utilizator agent string\" setarea va fi dezactivat dacă aceasta este bifată. Nu va fi capabil de a recupera adresele IP în viitor pentru a recupera informatii de localizare dacă acest lucru este permis."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Utilizatori Online"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Pentru fiecare vizita a ţine cont de mai multe hit-uri. În prezent %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Pagini"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Useri online"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Vizitatori astăzi"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Vizite azi"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Ieri vizitator"
844
 
847
  msgstr "Vizitaţi ieri"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Total vizitatori"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Vizite pe an"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Nici unul"
863
 
916
  msgid "Map type"
917
  msgstr "Tip hartă"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "O dată la 4 săptămâni"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistici"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Arată Statistici site în bara laterală."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Vizite pe saptamana"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Vizite pe luna"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Vizite pe an"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Total de vizualizări"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Motor de căutare prevăzute"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Postari totale"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Pagini totale"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Comentarii totale"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Spam total"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Useri totali"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Postari in medie"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Comentarii in medie"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Useri in medie"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Data ultimei postari"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Nume"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Elemente"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Vizite ieri"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Motor de căutare prevăzute"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Selectaţi tipul de motor de căutare"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Complet de statistici pentru site-ul WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Setări"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Click aici pentru a vizita plugin-ul pe WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Vizitaţi pagina de WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Click aici pentru a evalua şi revizui acest plug-in pe WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Rata de acest plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - hit-uri"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Privire de ansamblu"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Căutări"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Căutare cuvinte"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimizare"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manual de"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Azi vizitatori"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Astăzi vizita"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Ieri vizitator"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Vezi statisticile"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Descarcă ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Descărcaţi fişierul HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Manualul fişier negăsit."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1415
  msgstr "Actualizat %s GeoIP înregistrările bazei de date de vizitatori."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s date mai vechi de %s zile curăţit cu succes."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Înregistrări găsite epurare din %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Vă rugăm să selectaţi o valoare de peste 30 de zile."
1436
 
1456
  msgstr "Faceţi clic pentru a comuta"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Browsere"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Excluderi statistici"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 zile"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 de zile"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 de zile"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 luni"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 luni"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 luni"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 luni"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 an"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Toate"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Vizite"
1686
 
1773
  msgstr "Timp: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Hit-uri"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "date de tabel %s şters cu succes."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Eroare, %s nu golite!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Ţări"
1852
 
1877
  msgstr "Felicitări, instalarea este deja până la data, nimic de a face."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Export"
1883
 
1886
  msgstr "Exportul din"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Vă rugăm să selectaţi"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Selectaţi tabelul pentru fişierul de ieşire."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Export"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Vizitatori"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Instalarea completă de rutină."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Resurse/informatii"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Epurare"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Baza de date"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Actualizări"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Dacă aveţi nevoie de o soluţie mai robust pentru a delega acces aţi putea dori să se uite la %s în WordPress plug-in directorul."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Excluderi"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Această caracteristică nu va stoca adrese IP în baza de date, dar în schimb folosit un hash unic. \"Store întreaga utilizator agent string\" setarea va fi dezactivat dacă aceasta este bifată. Nu va fi capabil de a recupera adresele IP în viitor pentru a recupera informatii de localizare dacă acest lucru este permis."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Utilizatori Online"
2706
 
languages/wp_statistics-ru_RU.mo CHANGED
Binary file
languages/wp_statistics-ru_RU.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Для каждого визита за несколько посещений. Сейчас %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Страниц"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Посетителей онлайн"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Сегодня посетитель"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Сегодня посетителей"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Вчера посетитель"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Вчера посетителей"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Всего посетителей"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Всего визитов"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Нет"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Тип карты"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Каждые 2 недели"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Каждые 4 недели"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Статистика"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Статистика"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Показать статистику сайта в боковой панели."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Посетителей за неделю"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Посетителей за месяц"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Посетителей за год"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Общее количество просмотров"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Общее количество просмотров"
1041
  msgid "Search Engine referred"
1042
  msgstr "Поисковая система указанных"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Всего записей"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Всего страниц"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Всего комментариев"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Всего спама"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Всего участников"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Среднее число записей"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Среднее число комментариев"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Среднее число участников"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Последняя запись на сайте"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Имя"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Пункты"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Вчера посетителей"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Поисковая система указанных"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Выберите тип поискового движка"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Полная статистика для вашего сайта WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Онлайн отслеживание в WP статистика пользователей не включена, перейдите к %s и включить его."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "Настройка страницы"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Хит отслеживания в WP статистика не включена, перейдите к %s и включить его."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Отслеживания в WP Статистика посетителей не включается, перейдите к %s и включить его."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP коллекция не является активным, перейдите к %s и включить эту функцию."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Настройки"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Нажмите здесь, чтобы посетить на WordPress.org плагин"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Посетите страницы WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Нажмите здесь, чтобы оценить и пересмотреть этот плагин на WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Оценить этот плагин"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - хиты"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Обзор"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Поиск"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Поисковые слова"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Оптимизация"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Вручную"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Сегодня посетитель"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Сегодня посетить"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Вчера посетитель"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Статистика"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Скачать ODF файл"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Скачать файл HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Вручную файл не найден."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "У вас нет достаточных прав для доступа к этой странице."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap уже на текущей версии!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Обновление %s GeoIP записей в базе данных посетителей."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s данные старше дней %s успешно очищены."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Записи не найдены для очистки из %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Пожалуйста, выберите значение более 30 дней."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Нажмите для переключения"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Браузеры"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Внимание: Исключение не установлены в н
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Статистика исключения"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 дней"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 дней"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 дней"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 месяца"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 месяца"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 месяцев"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 месяцев"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 год"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "От"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Все"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Название не найдено"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Посещений"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Время: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Хиты"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "Платформа данных %s успешно удалены."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "данные таблицы %s успешно удалены."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Ошибка %s не опустели!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Индекс базы данных"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Страны"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Поздравляем ваша установка находится уже в курсе, ничего не делать."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Экспорт"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Экспорт из"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Экспорт из"
1858
  msgid "Please select"
1859
  msgstr "Пожалуйста, выберите"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Выберите таблицу для выходного файла."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Экспортировать в"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Посетителей"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP-адреса заменяются значениями хэша."
2208
  msgid "Install routine complete."
2209
  msgstr "Установите полную рутину."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Ресурсы/информация"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Очистка"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "База данных"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Обновления"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Если вам нужно более надежное решение для делегирования доступа вы можете взглянуть на %s в WordPress плагин каталога."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Исключения"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Это приведет к удалению руководства пр
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Данная функция будет сохранять в базе данных уникальный хэш вместо IP-адреса. Функция \"Сохранять user-агенты\" будет отключена. Так же вы не сможете использовать IP-адреса для определения информации о местоположении."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Пользователей онлайн"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Для каждого визита за несколько посещений. Сейчас %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Страниц"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Посетителей онлайн"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Сегодня посетитель"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Сегодня посетителей"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Вчера посетитель"
844
 
847
  msgstr "Вчера посетителей"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Всего посетителей"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Всего визитов"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Нет"
863
 
916
  msgid "Map type"
917
  msgstr "Тип карты"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Каждые 4 недели"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Статистика"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Показать статистику сайта в боковой панели."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Посетителей за неделю"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Посетителей за месяц"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Посетителей за год"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Общее количество просмотров"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Поисковая система указанных"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Всего записей"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Всего страниц"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Всего комментариев"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Всего спама"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Всего участников"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Среднее число записей"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Среднее число комментариев"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Среднее число участников"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Последняя запись на сайте"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Имя"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Пункты"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Вчера посетителей"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Поисковая система указанных"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Выберите тип поискового движка"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Полная статистика для вашего сайта WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Настройки"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Нажмите здесь, чтобы посетить на WordPress.org плагин"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Посетите страницы WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Нажмите здесь, чтобы оценить и пересмотреть этот плагин на WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Оценить этот плагин"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - хиты"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Обзор"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Поиск"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Поисковые слова"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Оптимизация"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Вручную"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Сегодня посетитель"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Сегодня посетить"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Вчера посетитель"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Статистика"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Скачать ODF файл"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Скачать файл HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Вручную файл не найден."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "У вас нет достаточных прав для доступа к этой странице."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1415
  msgstr "Обновление %s GeoIP записей в базе данных посетителей."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s данные старше дней %s успешно очищены."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Записи не найдены для очистки из %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Пожалуйста, выберите значение более 30 дней."
1436
 
1456
  msgstr "Нажмите для переключения"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Браузеры"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Статистика исключения"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 дней"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 дней"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 дней"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 месяца"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 месяца"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 месяцев"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 месяцев"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 год"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Все"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Посещений"
1686
 
1773
  msgstr "Время: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Хиты"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "данные таблицы %s успешно удалены."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Ошибка %s не опустели!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Страны"
1852
 
1877
  msgstr "Поздравляем ваша установка находится уже в курсе, ничего не делать."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Экспорт"
1883
 
1886
  msgstr "Экспорт из"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Пожалуйста, выберите"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Выберите таблицу для выходного файла."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Экспортировать в"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Посетителей"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Установите полную рутину."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Ресурсы/информация"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Очистка"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "База данных"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Обновления"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Если вам нужно более надежное решение для делегирования доступа вы можете взглянуть на %s в WordPress плагин каталога."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Исключения"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Данная функция будет сохранять в базе данных уникальный хэш вместо IP-адреса. Функция \"Сохранять user-агенты\" будет отключена. Так же вы не сможете использовать IP-адреса для определения информации о местоположении."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Пользователей онлайн"
2706
 
languages/wp_statistics-ru_UA.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr ""
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr ""
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr ""
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr ""
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr ""
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr ""
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr ""
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr ""
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr ""
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr ""
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr ""
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr ""
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr ""
@@ -1013,7 +1069,7 @@ msgstr ""
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr ""
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr ""
1019
 
@@ -1021,19 +1077,19 @@ msgstr ""
1021
  msgid "Show site stats in sidebar."
1022
  msgstr ""
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr ""
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr ""
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr ""
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr ""
1039
 
@@ -1041,59 +1097,59 @@ msgstr ""
1041
  msgid "Search Engine referred"
1042
  msgstr ""
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr ""
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr ""
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr ""
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr ""
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr ""
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr ""
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr ""
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr ""
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr ""
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr ""
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr ""
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr ""
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr ""
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr ""
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr ""
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr ""
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr ""
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr ""
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr ""
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr ""
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr ""
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr ""
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr ""
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr ""
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr ""
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr ""
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr ""
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr ""
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr ""
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr ""
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr ""
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr ""
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr ""
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr ""
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr ""
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr ""
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr ""
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr ""
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr ""
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr ""
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr ""
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr ""
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr ""
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr ""
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr ""
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr ""
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr ""
1426
 
@@ -1449,35 +1486,35 @@ msgstr ""
1449
  msgid "Exclusions Statistics"
1450
  msgstr ""
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr ""
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr ""
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr ""
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr ""
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr ""
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr ""
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr ""
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr ""
1483
 
@@ -1555,7 +1592,7 @@ msgstr ""
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr ""
1561
 
@@ -1643,7 +1680,7 @@ msgstr ""
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr ""
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr ""
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr ""
1743
 
@@ -1779,11 +1816,11 @@ msgstr ""
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr ""
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr ""
1789
 
@@ -1809,7 +1846,7 @@ msgstr ""
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr ""
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr ""
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr ""
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr ""
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr ""
1858
  msgid "Please select"
1859
  msgstr ""
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr ""
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr ""
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr ""
1899
 
@@ -2208,23 +2245,23 @@ msgstr ""
2208
  msgid "Install routine complete."
2209
  msgstr ""
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr ""
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr ""
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr ""
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr ""
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr ""
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr ""
2414
 
@@ -2663,7 +2700,7 @@ msgstr ""
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr ""
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr ""
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr ""
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr ""
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr ""
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr ""
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr ""
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr ""
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr ""
844
 
847
  msgstr ""
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr ""
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr ""
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr ""
863
 
916
  msgid "Map type"
917
  msgstr ""
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr ""
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr ""
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr ""
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr ""
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr ""
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr ""
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr ""
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr ""
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr ""
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr ""
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr ""
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr ""
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr ""
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr ""
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr ""
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr ""
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr ""
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr ""
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr ""
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr ""
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr ""
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr ""
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr ""
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr ""
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr ""
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr ""
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr ""
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr ""
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr ""
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr ""
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr ""
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr ""
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr ""
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr ""
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr ""
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr ""
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr ""
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr ""
1436
 
1456
  msgstr ""
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr ""
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr ""
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr ""
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr ""
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr ""
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr ""
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr ""
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr ""
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr ""
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr ""
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr ""
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr ""
1686
 
1773
  msgstr ""
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr ""
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr ""
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr ""
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr ""
1852
 
1877
  msgstr ""
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr ""
1883
 
1886
  msgstr ""
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr ""
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr ""
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr ""
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr ""
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr ""
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr ""
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr ""
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr ""
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr ""
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr ""
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr ""
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr ""
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr ""
2706
 
languages/wp_statistics-sk_SK.mo CHANGED
Binary file
languages/wp_statistics-sk_SK.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-08-03 08:27:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
14
- msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr "Konverzia vyhľadavacej tabuľky dokončená, pridaných %d riadkov."
20
 
@@ -80,7 +140,7 @@ msgstr "Využitie Piwik Referrer Spam Blacklist "
80
 
81
  #: includes/settings/tabs/wps-exclusions.php:148
82
  msgid "Treat corrupt browser info as a bot"
83
- msgstr ""
84
 
85
  #: includes/log/exclusions.php:24
86
  msgid "404 Pages"
@@ -92,7 +152,7 @@ msgstr "Dátum"
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:151
94
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
95
- msgstr ""
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:215
98
  msgid "Excluded 404 pages"
@@ -150,63 +210,59 @@ msgstr "%s záznamov úspešne uvoľnených."
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "Počet zobrazení musí byť väčší alebo rovný 10!"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "Návštev stránok"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "Počet stránok"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "Počet komentárov"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
- msgstr "Počet Spamu"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "Počet používateľov"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "Priemerne príspevkov"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "Komentárov priemerne"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "Časový rámec pre získanie štatistiky, pre tento výpočet bude použitá funkcia strtotime() (http://php.net/manual/en/datetime.formats.php)."
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "Poskytovateľ vyhľadávania"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "Poskytovateľ vyhľadávania pre získanie štatistických údajov."
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "Číselný formát"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "Formát zobrazenia čísla v: i18n, angličtina, nič."
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "Angličtina"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "Medzinárodný"
212
 
@@ -226,7 +282,7 @@ msgstr "Celkovo"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "Už ste premýšľali o podpore pre WP Statistics?"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "Prispejte"
232
 
@@ -246,27 +302,27 @@ msgstr "Prispejte práve teraz!"
246
  msgid "Close"
247
  msgstr "Zavrieť"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "Vyberte štatistiku, ktorú chcete zobraziť."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "Štatistický"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "Počet príspevkov"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "Časový rámec"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "do"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "Prejsť"
272
 
@@ -310,11 +366,11 @@ msgstr "Staršie inštalácie WP Statistics umožňujú v hraničnom prípade du
310
  msgid "Filtered by"
311
  msgstr "Filtrované podľa"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "Rozsah"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/RRRR"
320
 
@@ -358,27 +414,27 @@ msgstr "Posledných 30 dní (Mesiac)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "Posledných 7 dní (Týždeň)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "Baidu"
384
 
@@ -454,7 +510,7 @@ msgstr "Sekúnd"
454
 
455
  #: includes/settings/tabs/wps-general.php:105
456
  msgid "Time for the check accurate online user in the site. Now: %s Second"
457
- msgstr "Čas pre odhlásenie presné on-line užívateľov na webe. Teraz: %s druhý"
458
 
459
  #: includes/settings/tabs/wps-general.php:111
460
  msgid "Record all user"
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Za každú návštevu započítať niekoľko zobrazení. Momentálne %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Stránky"
488
 
@@ -608,7 +664,7 @@ msgstr "Vyplňte chýbajúce GeoIP po aktualizácii GeoIP DB"
608
 
609
  #: includes/settings/tabs/wps-externals.php:110
610
  msgid "Update any missing GeoIP data after downloading a new database."
611
- msgstr "Aktualizovať chýbajúce údaje, GeoIP po stiahnutí novej databázy."
612
 
613
  #: includes/settings/tabs/wps-externals.php:116
614
  msgid "Country code for private IP addresses"
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "Akýkoľvek skrátený kód (shortcode) podporovaný inštaláciou WordPress, zahŕňa všetky skrátené kódy pre WP Statistics (viď. administrátorsky návod pre zoznam dostupných kódov), sú podporované v tele správy. Tu je niekoľko príkladov:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
- msgstr "Aktívny Používateľ"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
- msgstr "Dnes Návštevníkov"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
- msgstr "Dnes Návštev"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Včera Návštevníkov"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Včera Návštev"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Celkom návštevníkov"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
- msgstr "Celkom Visit"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Žiadna"
807
 
@@ -860,7 +916,7 @@ msgstr "Zakázať widget editora stránky/príspevku."
860
  msgid "Map type"
861
  msgstr "Typ mapy"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -952,7 +1008,7 @@ msgstr "Odstránenie WP Statisitcs"
952
 
953
  #: includes/settings/tabs/wps-removal.php:20
954
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
955
- msgstr ""
956
 
957
  #: includes/settings/tabs/wps-removal.php:23
958
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
@@ -1013,7 +1069,7 @@ msgstr "Raz za 2 týždne"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Raz za 4 týždne"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Štatistiky"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Štatistiky"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Zobraziť štatistiky stránok v bočnom paneli."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Tyzden Visit"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Návštevy mesačne"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Roky Navstivte"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Celkový počet zobrazení stránky"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Celkový počet zobrazení stránky"
1041
  msgid "Search Engine referred"
1042
  msgstr "Odkazovaný vyhľadávač"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Celkom prispevkov"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Celkom stránok"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
- msgstr "Pocet komentarov"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Celkom spamy"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Celkom používateľov"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Priemer príspevkov"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Priemer komentárov"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Priemerny Uzivatelske"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Dátum posledného príspevku"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Meno"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
- msgstr "Polozky"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Včera návštev"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
- msgstr "Odkazovaný Vyhľadávač "
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Vyberte typ vyhladávača"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "Vaša aktuálna verzia PHP je"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "Aplikácia WP Statistics bola odstránená, prosím, vypnite a zmažte ju."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Kompletné štatistiky pre vaše WordPress stránky."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Sledovanie online používateľov nie je povolené vo WP Statistics, prosím prejdite na %s a povoľte to."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "Nastavenie stránky"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Sledovania zobrazenia nie je povolené vo WP Statistics, prosím prejdite na %s a aktivujte ho."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Návštevník tracking v WP Statistics nie je povolená, prosím prejdite na %s a umožniť mu."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "Zber údajov GeoIP nie je aktívny, prosím prejdite na %s a aktivujte túto funkciu."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Nastavenia"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Kliknite tu pre návštevu pluginu na WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Navštívte stránku WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Kliknite tu pre ohodnotenie a posúdenie tohto pluginu na WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Hodnotiť tento zásuvný modul (plugin)"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - hity"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Prehľad"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "Online"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "Odkazovače"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Vyhľadávanie"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Hľadané slová"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Top návštevníci dnes"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimalizácia"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manuál"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "Stránka"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "Možnosti"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Dnes návštevníkov"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Dnes navštíviť"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Včera návštevníkov"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Zobrazenie štatistiky"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Stiahnuť ODF súbor"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Stiahnuť súbor vo formáte HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Súbor manuálu nebol nájdený."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Nemáte dostatočné oprávnenia pre prístup k tejto stránke."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WP Statistics %s inštalovaný na"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap už v aktuálnej verzii!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini aktualizovaný na"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Aktualizovať %s GeoIP záznamov v databáze návštevníkov."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s údaje staršie ako %s dní úspešne vymazané."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Žiadne záznamy nenájdené na odstránenie z %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "Databáza vyčistená"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Vyberte hodnotu viac ako 30 dní."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Kliknutím prepnúť"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Prehliadače"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Pozor: Vylúčenia nie sú aktuálne nastavené na zaznamenávanie, výs
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Štatistiky vylúčení"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 dní"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 dní"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 dní"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 mesiace"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 mesiace"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 mesiacov"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 mesiacov"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 rok"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "z"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Všetko"
1561
 
@@ -1643,13 +1680,13 @@ msgstr "Nenašiel sa názov stránky"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Návštevy"
1649
 
1650
  #: includes/log/top-referring.php:4
1651
  msgid "To be added soon"
1652
- msgstr "Ktoré sa dopĺňajú čoskoro"
1653
 
1654
  #: includes/log/top-referring.php:77
1655
  msgid "Referring sites from"
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Čas: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Zobrazenia"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "údaje platformy %s úspešne vymazané."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Neboli nájdené žiadne údaje platformy na odstránenie!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s údaje tabuľky úspešne vymazané."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Chyba, %s nie je vyprázdnený!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Index databázy"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Krajiny"
1815
 
@@ -1818,7 +1855,7 @@ msgstr "Krajiny"
1818
  #: includes/optimization/tabs/wps-optimization-updates.php:25
1819
  #: includes/optimization/tabs/wps-optimization-updates.php:40
1820
  msgid "Update Now!"
1821
- msgstr "aktualizovať teraz!"
1822
 
1823
  #: includes/optimization/tabs/wps-optimization-database.php:40
1824
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Gratulujeme, vaša inštalácia je už aktuálna, nič nebude vykonané."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Export"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Export z"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Export z"
1858
  msgid "Please select"
1859
  msgstr "Prosím, vyberte"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Vyberte tabuľku pre výstupný súbor."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Export do"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Poznámka: Ako ste práve vyčistili databázu, musíte znova načítať
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Návštevníci"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP adresy nahradené hodnotami hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Inštalačná rutina kompletná."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Zdroje/Informácie"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Odstraňujem"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Databáza"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Aktualizácie"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Historický"
2230
 
@@ -2282,7 +2319,7 @@ msgstr "Podpora"
2282
 
2283
  #: includes/settings/tabs/wps-about.php:57
2284
  msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
2285
- msgstr "Ľutujeme, máte problém s WP Statistics a sme radi pomohli. Tu je niekoľko vecí, ktoré urobiť, než nás budete kontaktovať:"
2286
 
2287
  #: includes/settings/tabs/wps-about.php:60
2288
  #: includes/settings/tabs/wps-about.php:61
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Ak potrebujete viacej robustné riešenie na delegovanie prístupu, asi sa budete chcieť pozrieť na %s v adresári WordPress zasúvného modulu."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Vylúčenia"
2414
 
@@ -2663,10 +2700,10 @@ msgstr "To odstráni manuálne uložíte nastavenia, sú si istí?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Táto funkcia nebude ukladať IP adresy v databáze, ale namiesto toho použije jedinečné hodnoty hash. Ak je táto možnosť vybratá, nastavenie \"Uložiť celý reťazec agenta používateľa\" sa vypne. Pri tomto nastavení nebudete môcť v budúcnosti obnoviť IP adresy a získať tak informácie o polohe."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
- msgstr "Aktívni používatelia"
2669
 
2670
  #: includes/settings/tabs/wps-general.php:87
2671
  msgid "User online"
2672
- msgstr "Aktívny používateľ"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-31 09:48:39+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
  msgstr ""
16
 
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr "ID príspevku / stránky"
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr "Ask.com"
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr "Na výpočet štatistiky bude použitý časový rámec strtotime() (http://php.net/manual/en/datetime.formats.php). Použite &quot;celkom&quot;, pre získanie všetkých zaznamenaných dát."
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr "kolekcia GeoIP"
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "databázový index návštev"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr "Je potrebná aktualizácia databázy, prejdite do%s a aktualizujte nasledovné:%s"
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr "databázový index krajín"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ","
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr "Nasledujúce funkcie sú vypnuté, prejdite do %s, a aktivujte ich: %s"
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "sledovanie zobrazení"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr "on-line sledovanie používateľov"
72
+
73
+ #: wp-statistics.php:716
74
+ msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
+ msgstr "Nasledujúca tabuľka(ky) zásuvného modulu neexistuje v databáze, prosím, znova spustite inštaláčnú %s rutinu %s:"
76
+
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr "Konverzia vyhľadavacej tabuľky dokončená, pridaných %d riadkov."
80
 
140
 
141
  #: includes/settings/tabs/wps-exclusions.php:148
142
  msgid "Treat corrupt browser info as a bot"
143
+ msgstr "Zaobchádzať s narušenými informáciami prehliadača ako s robotom"
144
 
145
  #: includes/log/exclusions.php:24
146
  msgid "404 Pages"
152
 
153
  #: includes/settings/tabs/wps-exclusions.php:151
154
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
155
+ msgstr "Považovať každého návštevníka s nekompletnými informáciami prehliadača (chýbajúce IP adresy alebo prázdny reťazca agenta) za robota."
156
 
157
  #: includes/settings/tabs/wps-exclusions.php:215
158
  msgid "Excluded 404 pages"
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "Počet zobrazení musí byť väčší alebo rovný 10!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "Návštev stránok"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "Počet stránok"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "Počet komentárov"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
+ msgstr "Počet spamu"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "Počet používateľov"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "Priemerne príspevkov"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "Komentárov priemerne"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "Poskytovateľ vyhľadávania"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "Poskytovateľ vyhľadávania pre získanie štatistických údajov."
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "Číselný formát"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "Formát zobrazenia čísla v: i18n, angličtina, nič."
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "Angličtina"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "Medzinárodný"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "Už ste premýšľali o podpore pre WP Statistics?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "Prispejte"
288
 
302
  msgid "Close"
303
  msgstr "Zavrieť"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "Vyberte štatistiku, ktorú chcete zobraziť."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "Štatistický"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "Počet príspevkov"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "Časový rámec"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "do"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "Prejsť"
328
 
366
  msgid "Filtered by"
367
  msgstr "Filtrované podľa"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "Rozsah"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/RRRR"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "Posledných 7 dní (Týždeň)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "Baidu"
440
 
510
 
511
  #: includes/settings/tabs/wps-general.php:105
512
  msgid "Time for the check accurate online user in the site. Now: %s Second"
513
+ msgstr "Čas pre presnú kontrolu on-line pužívateľov na stránke. Teraz: %s sekúnd"
514
 
515
  #: includes/settings/tabs/wps-general.php:111
516
  msgid "Record all user"
537
  msgstr "Za každú návštevu započítať niekoľko zobrazení. Momentálne %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Stránky"
544
 
664
 
665
  #: includes/settings/tabs/wps-externals.php:110
666
  msgid "Update any missing GeoIP data after downloading a new database."
667
+ msgstr "Aktualizovať chýbajúce GeoIP údaje po stiahnutí novej databázy."
668
 
669
  #: includes/settings/tabs/wps-externals.php:116
670
  msgid "Country code for private IP addresses"
823
  msgstr "Akýkoľvek skrátený kód (shortcode) podporovaný inštaláciou WordPress, zahŕňa všetky skrátené kódy pre WP Statistics (viď. administrátorsky návod pre zoznam dostupných kódov), sú podporované v tele správy. Tu je niekoľko príkladov:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
+ msgstr "Používateľ online"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
+ msgstr "Dnes návštevníkov"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
+ msgstr "Dnes návštev"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Včera Návštevníkov"
844
 
847
  msgstr "Včera Návštev"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Celkom návštevníkov"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
+ msgstr "Návštev celkom"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Žiadna"
863
 
916
  msgid "Map type"
917
  msgstr "Typ mapy"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1008
 
1009
  #: includes/settings/tabs/wps-removal.php:20
1010
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
1011
+ msgstr "Odinštalovanie WP Statistics neodstráni dáta a nastavenia, môžete použiť túto možnosť na odstránenie dát WP Statistics z vášej inštalácie pred odinštalovaním zásuvného modulu."
1012
 
1013
  #: includes/settings/tabs/wps-removal.php:23
1014
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Raz za 4 týždne"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Štatistiky"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Zobraziť štatistiky stránok v bočnom paneli."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Tyzden Visit"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Návštevy mesačne"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Roky Navstivte"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Celkový počet zobrazení stránky"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Odkazovaný vyhľadávač"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Celkom prispevkov"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Celkom stránok"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
+ msgstr "Komentárov celkovo"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Celkom spamy"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Celkom používateľov"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Priemer príspevkov"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Priemer komentárov"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Priemerny Uzivatelske"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Dátum posledného príspevku"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Meno"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
+ msgstr "Položky"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Včera návštev"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
+ msgstr "Odkazovaný vyhľadávač "
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Vyberte typ vyhladávača"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "Aplikácia WP Statistics bola odstránená, prosím, vypnite a zmažte ju."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Kompletné štatistiky pre vaše WordPress stránky."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Nastavenia"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Kliknite tu pre návštevu pluginu na WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Navštívte stránku WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Kliknite tu pre ohodnotenie a posúdenie tohto pluginu na WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Hodnotiť tento zásuvný modul (plugin)"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - hity"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Prehľad"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "Online"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "Odkazovače"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Vyhľadávanie"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Hľadané slová"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Top návštevníci dnes"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimalizácia"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manuál"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "Stránka"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "Možnosti"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Dnes návštevníkov"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Dnes navštíviť"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Včera návštevníkov"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Zobrazenie štatistiky"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Stiahnuť ODF súbor"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Stiahnuť súbor vo formáte HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Súbor manuálu nebol nájdený."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Nemáte dostatočné oprávnenia pre prístup k tejto stránke."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WP Statistics %s inštalovaný na"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini aktualizovaný na"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1415
  msgstr "Aktualizovať %s GeoIP záznamov v databáze návštevníkov."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s údaje staršie ako %s dní úspešne vymazané."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Žiadne záznamy nenájdené na odstránenie z %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "Databáza vyčistená"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Vyberte hodnotu viac ako 30 dní."
1436
 
1456
  msgstr "Kliknutím prepnúť"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Prehliadače"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Štatistiky vylúčení"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 dní"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 dní"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 dní"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 mesiace"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 mesiace"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 mesiacov"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 mesiacov"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 rok"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Všetko"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Návštevy"
1686
 
1687
  #: includes/log/top-referring.php:4
1688
  msgid "To be added soon"
1689
+ msgstr "Bude pridané čoskoro"
1690
 
1691
  #: includes/log/top-referring.php:77
1692
  msgid "Referring sites from"
1773
  msgstr "Čas: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Zobrazenia"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Neboli nájdené žiadne údaje platformy na odstránenie!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s údaje tabuľky úspešne vymazané."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Chyba, %s nie je vyprázdnený!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Krajiny"
1852
 
1855
  #: includes/optimization/tabs/wps-optimization-updates.php:25
1856
  #: includes/optimization/tabs/wps-optimization-updates.php:40
1857
  msgid "Update Now!"
1858
+ msgstr "Aktualizovať teraz!"
1859
 
1860
  #: includes/optimization/tabs/wps-optimization-database.php:40
1861
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
1877
  msgstr "Gratulujeme, vaša inštalácia je už aktuálna, nič nebude vykonané."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Export"
1883
 
1886
  msgstr "Export z"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Prosím, vyberte"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Vyberte tabuľku pre výstupný súbor."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Export do"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Návštevníci"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Inštalačná rutina kompletná."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Zdroje/Informácie"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Odstraňujem"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Databáza"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Aktualizácie"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Historický"
2267
 
2319
 
2320
  #: includes/settings/tabs/wps-about.php:57
2321
  msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
2322
+ msgstr "Ľutujeme, že máte problém s WP Statistics, radi vám pomôžeme. Tu je niekoľko vecí, ktoré je potrebné urobiť, než nás budete kontaktovať:"
2323
 
2324
  #: includes/settings/tabs/wps-about.php:60
2325
  #: includes/settings/tabs/wps-about.php:61
2444
  msgstr "Ak potrebujete viacej robustné riešenie na delegovanie prístupu, asi sa budete chcieť pozrieť na %s v adresári WordPress zasúvného modulu."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Vylúčenia"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Táto funkcia nebude ukladať IP adresy v databáze, ale namiesto toho použije jedinečné hodnoty hash. Ak je táto možnosť vybratá, nastavenie \"Uložiť celý reťazec agenta používateľa\" sa vypne. Pri tomto nastavení nebudete môcť v budúcnosti obnoviť IP adresy a získať tak informácie o polohe."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
+ msgstr "Používatelia online"
2706
 
2707
  #: includes/settings/tabs/wps-general.php:87
2708
  msgid "User online"
2709
+ msgstr "Používateľ online"
languages/wp_statistics-sr_RS.mo CHANGED
Binary file
languages/wp_statistics-sr_RS.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr ""
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Za svakog posetioca broji se po nekoliko zahteva. Trenutno %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Stranice"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Online korisnici"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Današnji posetioci"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Današnja poseta"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Jučerašnji posetioci"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Jučerašnja poseta"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Ukupno posetilaca"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Ukupna poseta"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Nijedan"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Vrsta mape"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Jednom u 2 nedelje"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Jednom u 4 nedelje"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistike"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistike"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Prikaži statistiku site-a u bočnoj traci sa menijem"
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Nedeljna poseta"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Mesečna poseta"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Godišnja poseta"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Ukupan broj pregleda stranice"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Ukupan broj pregleda stranice"
1041
  msgid "Search Engine referred"
1042
  msgstr "Uputi pretraživača"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Ukupno postova"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Ukupno stranica"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Ukupno komentara"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Ukupno spam-ova"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Ukupno korisnika"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Prosečno postova"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Prosečno komentara"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Prosečno korisnika"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Datum poslednjeg posta"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Naziv"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Stavke"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Jučerašnja poseta"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Uputi pretraživača"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Odaberite vrstu pretraživača"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Kompletirajte statistiku za svoj WordPress site."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Усер Праћење у ВП Статистика није омогућен, молимо идите на %s и омогућити гаомогућена.,"
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "поставка паге"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "хит Праћење у ВП статистике није молимо идите на %s и омогућити га."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "посетилац праћење у ВП Статистика није омогућен, молимо идите на %s и омогућити гаактивна.,"
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "ГеоИП збирка није молимо идите на %s и омогућите поставкуфункцију.>"
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Podešavanja"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Kliknite ovde da biste posetili plugin na WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Posetite stranicu WordPress.org "
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Kliknite ovde da biste ocenili i komentarisali ovaj plugin na WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Ocenite ovaj plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - Zahtevi"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Pregled"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Pretrage"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Reči za pretragu"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimizacija"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Uputstvo"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Broj posetilaca danas"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Broj poseta danas"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Broj poseta juče"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Vidi statistiku"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Preuzmi ODF datoteku"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Preuzmi HTML datoteku"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Datoteka sa uputstvom nije pronađena"
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "бровсцап већ у тренутној верзији"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "хттп://вп-статистицс.цом/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "GeoIP zapisi %s ažurirani u bazi podataka posetilaca"
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "обрисан %s подаци старији од %s дана успешно очишћен"
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Не са намерени цистка од %s Фајл!."
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Odaberite vrednost preko 30 dana."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Klikni za aktiviranje/deaktiviranje"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Pretraživači"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Pažnja: Trenutno se izuzeci ne beleže, rezultati koji slede možda ne
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Statistika izuzetaka"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 dana"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 dana"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 dana"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 meseca"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 meseca"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 meseci"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 meseci"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 godina"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Iz"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Svi"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Nije pronađen naslov stranice "
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Posete"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Тиме: %s подаци"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Zahtevi"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "платформаза податке %s успешно обрисан"
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "подаци Табела %s успешно"
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Greška, %s nije ispražnjen!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Indeks baze podataka"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Države"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Čestitamo! Vaša instalacija već je ažurirana, nemate šta da radite."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Izvezi"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Izvezi iz"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Izvezi iz"
1858
  msgid "Please select"
1859
  msgstr "Odaberite"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Odaberite tabelu za izlaznu datoteku."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Izvezi u"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Posetioci"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP adrese zamenjene hash vrednostima."
2208
  msgid "Install routine complete."
2209
  msgstr "Инсталл рутинску ЦОМПЛЕТЕбровсцап..."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Izvori/Informacije"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Brisanje"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Baza podataka"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Ažuriranja"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Ako vam je potrebno striktnije rešenje za raspodelu pristupa, možda ćete hteti da pogledate %s u WordPress plugin direktorijumu."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Izuzeci"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Kad sačuvate podešavanja, obrisaćete priručnik. Jeste li sigurni?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Ова функција неће чувати ИП адресе у бази података, али уместо тога користи јединствену хасх. \"Сторе цела Прелистувач стринг \" Постављање ће бити онемогућен ако је он изабран. Нећете бити у стању да се опорави ИП адресе у будућности да се опорави информације о локацији, ако је то омогућено."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Online korisnici"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr ""
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Za svakog posetioca broji se po nekoliko zahteva. Trenutno %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Stranice"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Online korisnici"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Današnji posetioci"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Današnja poseta"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Jučerašnji posetioci"
844
 
847
  msgstr "Jučerašnja poseta"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Ukupno posetilaca"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Ukupna poseta"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Nijedan"
863
 
916
  msgid "Map type"
917
  msgstr "Vrsta mape"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Jednom u 4 nedelje"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistike"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Prikaži statistiku site-a u bočnoj traci sa menijem"
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Nedeljna poseta"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Mesečna poseta"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Godišnja poseta"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Ukupan broj pregleda stranice"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Uputi pretraživača"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Ukupno postova"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Ukupno stranica"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Ukupno komentara"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Ukupno spam-ova"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Ukupno korisnika"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Prosečno postova"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Prosečno komentara"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Prosečno korisnika"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Datum poslednjeg posta"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Naziv"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Stavke"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Jučerašnja poseta"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Uputi pretraživača"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Odaberite vrstu pretraživača"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Kompletirajte statistiku za svoj WordPress site."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Podešavanja"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Kliknite ovde da biste posetili plugin na WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Posetite stranicu WordPress.org "
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Kliknite ovde da biste ocenili i komentarisali ovaj plugin na WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Ocenite ovaj plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - Zahtevi"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Pregled"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Pretrage"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Reči za pretragu"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimizacija"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Uputstvo"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Broj posetilaca danas"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Broj poseta danas"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Broj poseta juče"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Vidi statistiku"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Preuzmi ODF datoteku"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Preuzmi HTML datoteku"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Datoteka sa uputstvom nije pronađena"
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "хттп://вп-статистицс.цом/"
1415
  msgstr "GeoIP zapisi %s ažurirani u bazi podataka posetilaca"
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "обрисан %s подаци старији од %s дана успешно очишћен"
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Не са намерени цистка од %s Фајл!."
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Odaberite vrednost preko 30 dana."
1436
 
1456
  msgstr "Klikni za aktiviranje/deaktiviranje"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Pretraživači"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Statistika izuzetaka"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 dana"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 dana"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 dana"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 meseca"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 meseca"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 meseci"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 meseci"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 godina"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Svi"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Posete"
1686
 
1773
  msgstr "Тиме: %s подаци"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Zahtevi"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "подаци Табела %s успешно"
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Greška, %s nije ispražnjen!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Države"
1852
 
1877
  msgstr "Čestitamo! Vaša instalacija već je ažurirana, nemate šta da radite."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Izvezi"
1883
 
1886
  msgstr "Izvezi iz"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Odaberite"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Odaberite tabelu za izlaznu datoteku."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Izvezi u"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Posetioci"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Инсталл рутинску ЦОМПЛЕТЕбровсцап..."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Izvori/Informacije"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Brisanje"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Baza podataka"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Ažuriranja"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Ako vam je potrebno striktnije rešenje za raspodelu pristupa, možda ćete hteti da pogledate %s u WordPress plugin direktorijumu."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Izuzeci"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Ова функција неће чувати ИП адресе у бази података, али уместо тога користи јединствену хасх. \"Сторе цела Прелистувач стринг \" Постављање ће бити онемогућен ако је он изабран. Нећете бити у стању да се опорави ИП адресе у будућности да се опорави информације о локацији, ако је то омогућено."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Online korisnici"
2706
 
languages/wp_statistics-sv_SE.mo CHANGED
Binary file
languages/wp_statistics-sv_SE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-07-23 14:41:20+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,33 +10,93 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
14
- msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgid "Search table conversion complete, %d rows added."
19
- msgstr ""
20
 
21
  #: includes/optimization/tabs/wps-optimization-database.php:107
22
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
23
- msgstr ""
24
 
25
  #: includes/optimization/tabs/wps-optimization-database.php:86
26
  msgid "Search Table"
27
- msgstr ""
28
 
29
  #: includes/optimization/tabs/wps-optimization-database.php:91
30
  msgid "Convert"
31
- msgstr ""
32
 
33
  #: includes/optimization/tabs/wps-optimization-database.php:100
34
  msgid "Convert Now!"
35
- msgstr ""
36
 
37
  #: includes/optimization/tabs/wps-optimization-database.php:101
38
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
39
- msgstr ""
40
 
41
  #: includes/log/exclusions.php:24
42
  msgid "Referrer Spam"
@@ -150,63 +210,59 @@ msgstr "%s registreringar framgångsrikt bortstädade."
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "Antal träffar måste vara större än eller lika med 10!"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "Sidbesök"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "Antal sidor"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "Antal kommentarer"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "Antal spam"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "Antal användare"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "Genomsnittligt antal inlägg"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "Genomsnittligt antal kommentarer"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "Genomsnittligt antal användare"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "Tidsramen för att få statistiken för strtotime () (http://php.net/manual/en/datetime.formats.php) används för beräkningen."
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "Sökleverantör"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "Sökleverantören att få statistik för."
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "Sifferformat"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "Formatet för att visa värden: i18n, engelska, inget."
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "Engelska"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "Internationell"
212
 
@@ -226,7 +282,7 @@ msgstr "Totalt under hela tidsperioden"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "Kan du tänka dig en donation till WP Statistics?"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "Donera"
232
 
@@ -246,27 +302,27 @@ msgstr "Donera nu!"
246
  msgid "Close"
247
  msgstr "Stäng"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "Välj vilken statistik du vill visa."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "Statistik"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "Antal inlägg"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "Tidsram"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "till"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "start"
272
 
@@ -310,11 +366,11 @@ msgstr "I äldre installationer av WP Statistics kan dubbletter i besökstabelle
310
  msgid "Filtered by"
311
  msgstr "Filtrerat med"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "Område"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr "Senaste månaden (30 dagar)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "Senaste veckan (7 dagar)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "Baidu"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Faktor för varje besök vid flera träffar. För närvarande %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Sidor"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "Använd \"shortcode\" som stöds i WordPress för att ange innehållet. Se i administrationsmanualen för WP Statistics vilka koder som kan användas. Här följer ett par exempel:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Uppkopplade användare"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Besökare idag"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Besök idag"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Besökare igår"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Besök igår"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Besökare totalt"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Besök totalt"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Tomt"
807
 
@@ -860,7 +916,7 @@ msgstr "Inaktivera eventuellt redigerings-widget."
860
  msgid "Map type"
861
  msgstr "Karttyp"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Varannan vecka"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Var fjärde vecka"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Statistik"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Statistik"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Visa sajtens statistik i sidopanelen."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Besök per vecka"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Besök per månad"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Besök per år"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Totalt antal sidvisningar"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Totalt antal sidvisningar"
1041
  msgid "Search Engine referred"
1042
  msgstr "Sökmotorlänkar"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Totalt antal inlägg"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Totalt antal sidor"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Totalt antal kommentarer"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Totalt antal spammar"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Totalt antal användare"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Genomsnittligt antal inlägg"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Genomsnittligt antal kommentarer"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Genomsnittligt antal användare"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Senaste inläggsdatum"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Namn"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Enheter"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Besök igår"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Sökmotorlänkar"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Välj sökmotor"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "Din nuvarande PHP-version är"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP Statistik har tagits bort, var vänlig inaktivera och radera det."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Komplett statistik för din Wordpress-sajt."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Spårning av uppkopplad användare i WP Statistics är inte aktiverat, vänligen gå till %s för aktivering."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "inställningssidan"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Spårning av träffar i WP Statistics är inte aktiverat, vänligen gå till %s och aktivera det."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Spårning av besökare i WP Statistik är inte aktiverat, vänligen gå till %s och aktivera det."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP insamling är inte aktiverad, vänligen gå till %s och aktivera funktionen."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Inställningar"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Klicka här för att besöka tillägget hos WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Besök sidan WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Klicka här för att betygsätta och recensera detta tillägg hos WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Betygsätt detta tillägg"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - träffar"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Översikt"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "Uppkopplingar"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "Länkreferenser"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Sökningar"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Sökord"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Besökartopp idag"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Optimering"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manual"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "Sajt"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "Alternativ"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Besökare idag"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Besök idag"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Besökare igår"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Visa statistik"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Hämta ODF-fil"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Hämta HTML-fil"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Manualfilen hittades inte."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Du har inte behörighet för åtkomst till den här sidan."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WP Statistics %s installerad på"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap har redan den senaste versionen!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Uppdatering av browscap.ini pågår"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Uppdaterat %s GeoIP poster i besökardatabasen."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s data äldre än %s dagar har städats bort."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Inga dataposter att städa bort från %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "Databasrensning pågår"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Var vänlig välj minst 30 dagar."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Klicka för att växla"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Webbläsare"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Lystring: Uteslutning är för närvarande inte inställd för att lagra
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Uteslutningsstatistik"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 dagar"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 dagar"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 dagar"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 månader"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 månader"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 månader"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 månader"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 år"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Från"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Allt"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Sidtiteln saknas"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Besök"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Tid:%s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Träffar"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s plattformsdata har raderats."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Ingen plattformsdata finns att ta bort!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s tabelldata har raderats."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Fel, %s inte tömd!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Databasindex"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Länder"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Grattis, din installation är redan sjyst, ingen åtgärd behövs."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Exportera"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Exportera från"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Exportera från"
1858
  msgid "Please select"
1859
  msgstr "Vänligen välj"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Välj tabell som ska exporteras"
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Exportera till"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Obs! Om du nyligen har städat i databasen måste du ladda om denna sida
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Besökare"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP-adresserna har ersatts med hashade värden."
2208
  msgid "Install routine complete."
2209
  msgstr "Installationen är klar."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Resurser/information"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Städning"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Databas"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Uppdateringar"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Historik"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Om du behöver en mer genomgripande lösning för att delegera åtkomst kanske du är hjälpt av %s i Tilläggskatalogen för WordPress."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Uteslutningar"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Detta kommer att ta bort den manuella när du sparar inställningarna,
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Den här funktionen kommer inte att lagra IP-adresser i databasen utan använde en unik hash. Den &quot;Lagra hela user agent string&quot; inställningen inaktiveras om detta är valt. Du kommer inte att kunna återställa IP-adresserna i framtiden att återvinna platsinformation om det är aktiverat."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Uppkopplingar"
2669
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-29 22:14:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr "ID för inlägg/sida att samla sidstatistik om."
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr "ID för inlägg/sida"
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr "Ask.com"
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr "Tidsramen för statistikinsamlingen, strtotime() (http://php.net/manual/en/datetime.formats.php) används för beräkningen. Ange \"total\" för att få med alla insamlade dagar."
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr "spårning av besökare"
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr "geoip-insamling"
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "databasindex för besök"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr "Uppdateringar av databasen är nödvändiga, vänligen gå till %s och uppdatera följande: %s"
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr "databasindex för länder"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr "sök tabellen"
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr "inställningssidan"
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
  msgstr ""
60
 
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr "Följande funktioner är inaktiverade, vänligen gå till %s och aktivera dem: %s"
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "spårning av träff"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr "spårning av uppkopplade användare "
72
+
73
+ #: wp-statistics.php:716
74
+ msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
+ msgstr "Följande tilläggstabell(er) saknas i databasen, vänligen kör %s installeringsrutin %s:"
76
+
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
+ msgstr "Konvertering av söktabell klar, ökade med %d rader."
80
 
81
  #: includes/optimization/tabs/wps-optimization-database.php:107
82
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
83
+ msgstr "Äldre installationer av WP Statistics lagrar information om sökningar i besökartabellen som kan leda till prestandaproblem vid stora datamängder. En ny tabell har skapats för att samla informationen mer effektivt."
84
 
85
  #: includes/optimization/tabs/wps-optimization-database.php:86
86
  msgid "Search Table"
87
+ msgstr "Söktabell"
88
 
89
  #: includes/optimization/tabs/wps-optimization-database.php:91
90
  msgid "Convert"
91
+ msgstr "Konvertera"
92
 
93
  #: includes/optimization/tabs/wps-optimization-database.php:100
94
  msgid "Convert Now!"
95
+ msgstr "Konvertera nu!"
96
 
97
  #: includes/optimization/tabs/wps-optimization-database.php:101
98
  msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
99
+ msgstr "Äldre installationer av WP Statistics sätt att lagra information om sökningar i besökartabellen kan leda till prestandaproblem vid stora datamängder. En ny tabell har skapats för att samla informationen mer effektivt, men de gamla uppgifterna måste först konverteras till det nya formatet innan den kan användas."
100
 
101
  #: includes/log/exclusions.php:24
102
  msgid "Referrer Spam"
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "Antal träffar måste vara större än eller lika med 10!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "Sidbesök"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "Antal sidor"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "Antal kommentarer"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "Antal spam"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "Antal användare"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "Genomsnittligt antal inlägg"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "Genomsnittligt antal kommentarer"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "Genomsnittligt antal användare"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "Sökleverantör"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "Sökleverantören att få statistik för."
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "Sifferformat"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "Formatet för att visa värden: i18n, engelska, inget."
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "Engelska"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "Internationell"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "Kan du tänka dig en donation till WP Statistics?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "Donera"
288
 
302
  msgid "Close"
303
  msgstr "Stäng"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "Välj vilken statistik du vill visa."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "Statistik"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "Antal inlägg"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "Tidsram"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "till"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "start"
328
 
366
  msgid "Filtered by"
367
  msgstr "Filtrerat med"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "Område"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "Senaste veckan (7 dagar)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "Baidu"
440
 
537
  msgstr "Faktor för varje besök vid flera träffar. För närvarande %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Sidor"
544
 
823
  msgstr "Använd \"shortcode\" som stöds i WordPress för att ange innehållet. Se i administrationsmanualen för WP Statistics vilka koder som kan användas. Här följer ett par exempel:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Uppkopplade användare"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Besökare idag"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Besök idag"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Besökare igår"
844
 
847
  msgstr "Besök igår"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Besökare totalt"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Besök totalt"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Tomt"
863
 
916
  msgid "Map type"
917
  msgstr "Karttyp"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Var fjärde vecka"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Statistik"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Visa sajtens statistik i sidopanelen."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Besök per vecka"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Besök per månad"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Besök per år"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Totalt antal sidvisningar"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Sökmotorlänkar"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Totalt antal inlägg"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Totalt antal sidor"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Totalt antal kommentarer"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Totalt antal spammar"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Totalt antal användare"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Genomsnittligt antal inlägg"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Genomsnittligt antal kommentarer"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Genomsnittligt antal användare"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Senaste inläggsdatum"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Namn"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Enheter"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Besök igår"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Sökmotorlänkar"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Välj sökmotor"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP Statistik har tagits bort, var vänlig inaktivera och radera det."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Komplett statistik för din Wordpress-sajt."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Inställningar"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Klicka här för att besöka tillägget hos WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Besök sidan WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Klicka här för att betygsätta och recensera detta tillägg hos WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Betygsätt detta tillägg"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - träffar"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Översikt"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "Uppkopplingar"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "Länkreferenser"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Sökningar"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Sökord"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Besökartopp idag"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Optimering"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manual"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "Sajt"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "Alternativ"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Besökare idag"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Besök idag"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Besökare igår"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Visa statistik"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Hämta ODF-fil"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Hämta HTML-fil"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Manualfilen hittades inte."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Du har inte behörighet för åtkomst till den här sidan."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WP Statistics %s installerad på"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Uppdatering av browscap.ini pågår"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1415
  msgstr "Uppdaterat %s GeoIP poster i besökardatabasen."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s data äldre än %s dagar har städats bort."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Inga dataposter att städa bort från %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "Databasrensning pågår"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Var vänlig välj minst 30 dagar."
1436
 
1456
  msgstr "Klicka för att växla"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Webbläsare"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Uteslutningsstatistik"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 dagar"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 dagar"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 dagar"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 månader"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 månader"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 månader"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 månader"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 år"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Allt"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Besök"
1686
 
1773
  msgstr "Tid:%s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Träffar"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Ingen plattformsdata finns att ta bort!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s tabelldata har raderats."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Fel, %s inte tömd!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Länder"
1852
 
1877
  msgstr "Grattis, din installation är redan sjyst, ingen åtgärd behövs."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Exportera"
1883
 
1886
  msgstr "Exportera från"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Vänligen välj"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Välj tabell som ska exporteras"
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Exportera till"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Besökare"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Installationen är klar."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Resurser/information"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Städning"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Databas"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Uppdateringar"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Historik"
2267
 
2444
  msgstr "Om du behöver en mer genomgripande lösning för att delegera åtkomst kanske du är hjälpt av %s i Tilläggskatalogen för WordPress."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Uteslutningar"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Den här funktionen kommer inte att lagra IP-adresser i databasen utan använde en unik hash. Den &quot;Lagra hela user agent string&quot; inställningen inaktiveras om detta är valt. Du kommer inte att kunna återställa IP-adresserna i framtiden att återvinna platsinformation om det är aktiverat."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Uppkopplingar"
2706
 
languages/wp_statistics-tr_TR.mo CHANGED
Binary file
languages/wp_statistics-tr_TR.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr ""
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Muhtelif ziyaretleri olan kayıtlı üyeler. ŞuAnda %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Sayfalar"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "WordPress kurgunuz tarafından desteklenen kısakodlar ve WP İstatistik için kullanılan bütün kısakodları da desteklemektedir. Bu konudaki örnekler için bakınız:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "ŞuAnda Kullanıcı"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Bugünkü Ziyaretciler"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Bugünkü Ziyaret"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Dünkü Ziyaretci"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Dünkü Ziyaret"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Toplam Ziyaretci"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Toplam Ziyaret"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Hiçbiri"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Harita türü"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Bir kez her 2 hafta"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "4 haftada bir kez"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "İstatistikler"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "İstatistikler"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Site istatistikleri kenar çubuğunda göster."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Haftalık Ziyaret"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Aylık Ziyaret"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Yılık Ziyaret"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Sayfa Görülme Toplamı"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Sayfa Görülme Toplamı"
1041
  msgid "Search Engine referred"
1042
  msgstr "Arama Motoru Referansı"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Toplam Postalar"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Toplam Sayfalar"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Toplam Yorumlar"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Toplam Gereksizler"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Toplam Kullanıcı"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Ortalama Posta Sayısı"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Ortalama Yorum Sayısı"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Ortalama Kullanıcı Sayısı"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Son Posta Tarihi"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "İsim"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Ürünler"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Dünkü Ziyaret"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Anılan arama motoru"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Arama motoru türü seçin"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP İstatistik silinip kaldırıldı, eklentiyi pasif hale getirip siliniz."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "WordPress site tam istatistikleri."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Online kullanıcı WP Statisticsleri izleme etkin değildir, lütfen %s öğesine gidin ve etkinleştirin."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "ayar sayfası"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "WP Statistics hit izleme etkin değildir, lütfen %s öğesine gidin ve etkinleştirin."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Ziyaretçi WP Statisticsleri izleme etkin değildir, lütfen %s öğesine gidin ve etkinleştirin."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP toplama etkin değil, lütfen %s öğesine gidin ve bu özelliği etkinleştirin."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Ayarlar"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Eklenti WordPress.org ziyaret etmek için tıklayın"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "WordPress.org sayfasını ziyaret edin"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Oranı ve bu eklenti WordPress.org üzerinde incelemek için tıklayınız"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Bu eklenti oranı"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statisticsleri - Hits"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Genel Bakış"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Aramalar"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Arama Kelimeleri"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "İyileştirme"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Manuel"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Bugünkü Ziyaretciler"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Bugünkü Ziyaretler"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Dünkü Ziyaretci"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "İstatistiklere Bak"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "ODF Dosyası indir"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "HTML Dosyası indir"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Manuel Dosya bulunmadı."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Bu sayfaya girme yetkiniz yok."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "Geçerli sürüm de zaten Browscap!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "%s IP Coğrafyası Bilgisi Ziyaretci Kayıtlarında Güncellendi."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s veri başarıyla temizlendi %s günden daha eski."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Kayıt %s öğesinden temizlemek için bulunamadı!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Lütfen 30 Gün Üzerinde Bir Değer Seçin."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Geçiş yapmak için tıklayın"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Tarayıcılar"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Dikkat: İstisnalar henüz belirlenmedi ve sonuçlar mevcut istatistikle
1449
  msgid "Exclusions Statistics"
1450
  msgstr "İstatistik İstisnaları"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 Günlük"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 Günlük"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 Günlük"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 Aylık"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 Aylık"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 Aylık"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 Aylık"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 Yıllık"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "/"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Hepsi"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Sayfa Başlığı bulunmadı"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Ziyaretler"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Süre: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Ziyaretler"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s platformu verileri başarıyla silindi."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Kaldırılacak herhangi bir platform bilgisi yok!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s tablo verileri başarıyla silindi."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Hata, %s Bilgi Var!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Veritabanı dizini"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Ülkeler"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Tebrikler, yüklemenizin zaten tarihine kadar hiçbir durumda."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Dışarı Verme"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Dışarı aktarılacak veriler"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Dışarı aktarılacak veriler"
1858
  msgid "Please select"
1859
  msgstr "Lütfen seçin"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "İstenen Tabloyu Seçiniz"
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Dışarı aktarma dosya türü"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Not: Data temizliğini yeni yaptınız, sayfayı yenilerseniz verileri d
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Ziyaretciler"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP adresleri karma değerleri ile değiştirilir."
2208
  msgid "Install routine complete."
2209
  msgstr "Rutin tam yükleyin."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Kaynaklar / Bilgiler"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Temizleme"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Veritabanı"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Güncelleme"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Geçmiş"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Daha Sağlıklı Bilgiler İçin Eklenti Dizinine Bakınız : %s "
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "İstisnalar"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Bu ayarları kaydettiğinizde-ecek silmek belgili tanımlık elle yapıl
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Bu özellik, IP adresleri veritabanında depolamaz ancak benzersiz bir karma değeri kullanılır. \"Store tüm kullanıcı aracısı string\" ayar devre dışı bırakılır Bu seçiliyse. Gelecekte bu etkin konum bilgileri kurtarmak için IP adresleri kurtarmanız mümkün olmayacaktır."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Online kullanıcılar"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr ""
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Muhtelif ziyaretleri olan kayıtlı üyeler. ŞuAnda %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Sayfalar"
544
 
823
  msgstr "WordPress kurgunuz tarafından desteklenen kısakodlar ve WP İstatistik için kullanılan bütün kısakodları da desteklemektedir. Bu konudaki örnekler için bakınız:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "ŞuAnda Kullanıcı"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Bugünkü Ziyaretciler"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Bugünkü Ziyaret"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Dünkü Ziyaretci"
844
 
847
  msgstr "Dünkü Ziyaret"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Toplam Ziyaretci"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Toplam Ziyaret"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Hiçbiri"
863
 
916
  msgid "Map type"
917
  msgstr "Harita türü"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "4 haftada bir kez"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "İstatistikler"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Site istatistikleri kenar çubuğunda göster."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Haftalık Ziyaret"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Aylık Ziyaret"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Yılık Ziyaret"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Sayfa Görülme Toplamı"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Arama Motoru Referansı"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Toplam Postalar"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Toplam Sayfalar"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Toplam Yorumlar"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Toplam Gereksizler"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Toplam Kullanıcı"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Ortalama Posta Sayısı"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Ortalama Yorum Sayısı"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Ortalama Kullanıcı Sayısı"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Son Posta Tarihi"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "İsim"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Ürünler"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Dünkü Ziyaret"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Anılan arama motoru"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Arama motoru türü seçin"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP İstatistik silinip kaldırıldı, eklentiyi pasif hale getirip siliniz."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "WordPress site tam istatistikleri."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Ayarlar"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Eklenti WordPress.org ziyaret etmek için tıklayın"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "WordPress.org sayfasını ziyaret edin"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Oranı ve bu eklenti WordPress.org üzerinde incelemek için tıklayınız"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Bu eklenti oranı"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statisticsleri - Hits"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Genel Bakış"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Aramalar"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Arama Kelimeleri"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "İyileştirme"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Manuel"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Bugünkü Ziyaretciler"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Bugünkü Ziyaretler"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Dünkü Ziyaretci"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "İstatistiklere Bak"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "ODF Dosyası indir"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "HTML Dosyası indir"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Manuel Dosya bulunmadı."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Bu sayfaya girme yetkiniz yok."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr "%s IP Coğrafyası Bilgisi Ziyaretci Kayıtlarında Güncellendi."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s veri başarıyla temizlendi %s günden daha eski."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Kayıt %s öğesinden temizlemek için bulunamadı!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Lütfen 30 Gün Üzerinde Bir Değer Seçin."
1436
 
1456
  msgstr "Geçiş yapmak için tıklayın"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Tarayıcılar"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "İstatistik İstisnaları"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 Günlük"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 Günlük"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 Günlük"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 Aylık"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 Aylık"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 Aylık"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 Aylık"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 Yıllık"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Hepsi"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Ziyaretler"
1686
 
1773
  msgstr "Süre: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Ziyaretler"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Kaldırılacak herhangi bir platform bilgisi yok!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s tablo verileri başarıyla silindi."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Hata, %s Bilgi Var!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Ülkeler"
1852
 
1877
  msgstr "Tebrikler, yüklemenizin zaten tarihine kadar hiçbir durumda."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Dışarı Verme"
1883
 
1886
  msgstr "Dışarı aktarılacak veriler"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Lütfen seçin"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "İstenen Tabloyu Seçiniz"
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Dışarı aktarma dosya türü"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Ziyaretciler"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Rutin tam yükleyin."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Kaynaklar / Bilgiler"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Temizleme"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Veritabanı"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Güncelleme"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Geçmiş"
2267
 
2444
  msgstr "Daha Sağlıklı Bilgiler İçin Eklenti Dizinine Bakınız : %s "
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "İstisnalar"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Bu özellik, IP adresleri veritabanında depolamaz ancak benzersiz bir karma değeri kullanılır. \"Store tüm kullanıcı aracısı string\" ayar devre dışı bırakılır Bu seçiliyse. Gelecekte bu etkin konum bilgileri kurtarmak için IP adresleri kurtarmanız mümkün olmayacaktır."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Online kullanıcılar"
2706
 
languages/wp_statistics-uk.mo CHANGED
Binary file
languages/wp_statistics-uk.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-07-26 15:21:34+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr "Конвертування пошукової таблиці завершено, %d рядків додано."
20
 
@@ -150,63 +210,59 @@ msgstr "%s записів успішно очищено."
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr "Число переглядів повинно бути більше або дорівнювати 10!"
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr "Відвідування сторінки"
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr "Кількість сторінок"
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr "Кількість коментарів"
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr "Кількість спаму"
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr "Кількість користувачів"
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr "середня кількість публікацій"
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr "середня кількість коментарів"
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr "Середня кількість користувачів"
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr "Інтервал часу для отримання статистики для, strtotime() (http://php.net/manual/en/datetime.formats.php) буде використано для його обчислення."
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr "Пошуковий провайдер"
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr "Пошуковий провайдер для отримання статистики"
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr "Числовий формат"
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr "Формат для відображення чисел в: i18n, англйська, нічого."
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr "Англійська"
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr "Міжнародна"
212
 
@@ -226,7 +282,7 @@ msgstr "Увесь сумарний час"
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr "Чи замислювалися ви про пожертвування для WP Statistics?"
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr "Пожертвувати"
232
 
@@ -246,27 +302,27 @@ msgstr "Пожертвувати зараз!"
246
  msgid "Close"
247
  msgstr "Закрити"
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr "Вибрати статистику, яку хочете відображати."
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr "Статистика"
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr "Кількість публікацій"
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr "Інтервал часу"
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr "до"
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr "перейти"
272
 
@@ -310,11 +366,11 @@ msgstr "Старі установки WP Statistics дублювали запи
310
  msgid "Filtered by"
311
  msgstr "Відфільтровано по"
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr "Діапазон"
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "ММ/ДД/РРРР"
320
 
@@ -358,27 +414,27 @@ msgstr "Останні 30 днів (місяць)"
358
  msgid "Last 7 Days (Week)"
359
  msgstr "Останні 7 днів (тиждень)"
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr "Yahoo!"
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr "Yandex"
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr "clearch.org"
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr "DuckDuckGo"
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr "Bing"
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr "Baidu"
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "На кожен візит декілька переглядів. В даний час %s"
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Сторінки"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr "Будь-який шорткод, що підтримується вашою установкою WordPress, включає всі шорткоди для WP Statistics (див інструкцію адміністратора для списку доступних кодів), підтримувані в тілі повідомлення. Ось деякі приклади:"
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Користувач онлайн"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Сьогодняшній відвідувач"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Сьогоднішнє відвідування"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Вчорашній відвідувач"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Вчорашнє відвідування"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Всього відвідувачів"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Всього відвідувань"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Жодного"
807
 
@@ -860,7 +916,7 @@ msgstr "Відключити цей віджет-редактор сторінк
860
  msgid "Map type"
861
  msgstr "Тип карти"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Один раз кожні 2 тижні"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Один раз на 4 тижні"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Статистика"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Статистика"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Відображати статистику сайту у бічній панелі."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Відвідувань за тиждень"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Відвідувань за місяць"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Відвідувань за рік"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Усього переглядів сторінки"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Усього переглядів сторінки"
1041
  msgid "Search Engine referred"
1042
  msgstr "Направлені пошуковики"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Всього публікацій"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Всього сторінок"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Всього коментарів"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Всього спаму"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Всього користувачів"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Середня кількість публікацій"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Середня кількість коментарів"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Середня кількість користувачів"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Останні зміни в публікації"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Ім'я"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Об'єкти"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Вчорашнє відвідування"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Направлений пошуковик"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Вибрати тип пошуковика"
1099
 
@@ -1113,136 +1169,115 @@ msgstr "Ваша поточна версія PHP"
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr "WP Statistics видалено, будь ласка відключіть і видаліть його."
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP Statistics"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Повна статистика для вашого сайту WordPress."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Відстеження онлайн користувача в WP Statistics не включено, перейдіть до %s і включіть його."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "Сторінка налаштувань"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Відстеження переглядів в WP Statistics не включено, перейдіть до %s і включіть його."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Відстеження відвідувачів у WP Statistics не включено, перейдіть до %s і включіть його."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "Набір GeoIP не активна, перейдіть до %s і включіть цю функцію."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Налаштування"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Натисніть тут, щоб відвідати плагін на WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Відвідайте плагін на WordPress.org"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Натисніть тут, щоб оцінити і переглянути цей плагін на WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Оцінити цей плагін"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP Statistics - перегляди"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Перегляд"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr "Онлайн"
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr "Рефери"
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Пошуки"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Пошукові слова"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr "Топ відвідувачі за сьогодні"
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Оптимізація"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Інструкція"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr "Сайт"
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr "Опції"
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Сьогодняшній відвідувач"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Сьогоднішнє відвідування"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Вчорашній відвідувач"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Переглянути статистику"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Завантажити файл ODF "
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Завантажити файл HTML "
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Інструкцію не знайдено."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "Ви не маєте достатніх прав для доступу до цієї сторінки."
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr "WP Statistics %s установлений на"
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap вже в поточній версії!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr "Browscap.ini оновлено на"
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Оновлено %s GeoIP записів бази даних відвідувачів."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s даних старіше %s днів успішно очищено."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Записів не знайдено для очищення з %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr "База даних, відсічена на"
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "Будь ласка, виберіть значення протягом 30 днів."
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Натисніть для переміщення"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Браузери"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Увага: Виключення наразі не записуютьс
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Виключення в статистиці"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 днів"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 днів"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 днів"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 місяці"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 місяці"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 місяців"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 місяців"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 рік"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Від"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Все"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Не знайдено назви сторінки"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Відвідування"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Час: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Перегляди"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s даних платформи видалені успішно."
1779
  msgid "No platform data found to remove!"
1780
  msgstr "Даних платформи для видалення не знайдено!"
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s даних таблиці успішно видалено."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Помилка %s не очищено!"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Індекс бази даних"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Країни"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Вітаємо, установка вже оновлена, нічого не треба робити."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Експорт"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Експорт з"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Експорт з"
1858
  msgid "Please select"
1859
  msgstr "Будь ласка виберіть"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Виділіть таблицю для вихідного файлу."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Експорт до"
1868
 
@@ -1892,8 +1929,8 @@ msgstr "Примітка: оскільки ви тільки що очистил
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Відвідувачі"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP-адреси замінені хеш значеннями."
2208
  msgid "Install routine complete."
2209
  msgstr "Установка завершена."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Джерела/інформація"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Очищення"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "База даних"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Оновлення"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr "Історичні"
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Якщо вам потрібне більш стійке рішення для делегування доступу, перегляньте %s в каталозі плагіну в WordPress."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Вилучення"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Це видалить інструкцію при збереженні
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Ця функція не зберігатиме IP адреси в базі даних, але замість цььго, використані унікальні хеши. Налаштування \"Зберігати весь рядок агента користувача\" буде виключене, якщо ви виберете цю функцію. Ви не зможете повернути IP адреси в майбутньому для повернення деталей розташування, якщо ви активуєте цю функцію."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Користувачі онлайн"
2669
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-30 03:27:07+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr "ID повідомлення/сторінки для отримання статистики."
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr "ID повідомлення/сторінки для статистики на сторінці. "
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr "Ask.com"
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr "Строк отримання статистики, strtotime() (http://php.net/manual/en/datetime.formats.php) використовуватиметься для її розрахунку. Використовуйте \"total\", щоб отримати всі записані дати."
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr "відстеження відвідувачів"
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr "Колекція geoip "
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr "Індекс бази даних щодо відвідувань"
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr "Потрібно оновлення баз даних , перейдіть до %s і оновіть наступне: %s"
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr " Індекс бази даних країн"
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr "Таблиця пошуку"
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr "сторінка налаштувань"
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ","
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr "Наступні функції відключені, перейдіть до %s і включіть їх:%s"
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr "Відстеження переглядів"
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr "Відстеження користувачів онлайн"
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr "Конвертування пошукової таблиці завершено, %d рядків додано."
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr "Число переглядів повинно бути більше або дорівнювати 10!"
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr "Відвідування сторінки"
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr "Кількість сторінок"
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr "Кількість коментарів"
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr "Кількість спаму"
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr "Кількість користувачів"
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr "середня кількість публікацій"
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr "середня кількість коментарів"
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr "Середня кількість користувачів"
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr "Пошуковий провайдер"
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr "Пошуковий провайдер для отримання статистики"
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr "Числовий формат"
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr "Формат для відображення чисел в: i18n, англйська, нічого."
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr "Англійська"
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr "Міжнародна"
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr "Чи замислювалися ви про пожертвування для WP Statistics?"
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr "Пожертвувати"
288
 
302
  msgid "Close"
303
  msgstr "Закрити"
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr "Вибрати статистику, яку хочете відображати."
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr "Статистика"
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr "Кількість публікацій"
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr "Інтервал часу"
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr "до"
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr "перейти"
328
 
366
  msgid "Filtered by"
367
  msgstr "Відфільтровано по"
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr "Діапазон"
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "ММ/ДД/РРРР"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr "Останні 7 днів (тиждень)"
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr "Yahoo!"
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr "Yandex"
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr "clearch.org"
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr "DuckDuckGo"
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr "Bing"
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr "Baidu"
440
 
537
  msgstr "На кожен візит декілька переглядів. В даний час %s"
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Сторінки"
544
 
823
  msgstr "Будь-який шорткод, що підтримується вашою установкою WordPress, включає всі шорткоди для WP Statistics (див інструкцію адміністратора для списку доступних кодів), підтримувані в тілі повідомлення. Ось деякі приклади:"
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Користувач онлайн"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Сьогодняшній відвідувач"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Сьогоднішнє відвідування"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Вчорашній відвідувач"
844
 
847
  msgstr "Вчорашнє відвідування"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Всього відвідувачів"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Всього відвідувань"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Жодного"
863
 
916
  msgid "Map type"
917
  msgstr "Тип карти"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Один раз на 4 тижні"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Статистика"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Відображати статистику сайту у бічній панелі."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Відвідувань за тиждень"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Відвідувань за місяць"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Відвідувань за рік"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Усього переглядів сторінки"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Направлені пошуковики"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Всього публікацій"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Всього сторінок"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Всього коментарів"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Всього спаму"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Всього користувачів"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Середня кількість публікацій"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Середня кількість коментарів"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Середня кількість користувачів"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Останні зміни в публікації"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Ім'я"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Об'єкти"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Вчорашнє відвідування"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Направлений пошуковик"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Вибрати тип пошуковика"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr "WP Statistics видалено, будь ласка відключіть і видаліть його."
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP Statistics"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Повна статистика для вашого сайту WordPress."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Налаштування"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Натисніть тут, щоб відвідати плагін на WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Відвідайте плагін на WordPress.org"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Натисніть тут, щоб оцінити і переглянути цей плагін на WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Оцінити цей плагін"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP Statistics - перегляди"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Перегляд"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr "Онлайн"
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr "Рефери"
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Пошуки"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Пошукові слова"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr "Топ відвідувачі за сьогодні"
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Оптимізація"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Інструкція"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr "Сайт"
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr "Опції"
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Сьогодняшній відвідувач"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Сьогоднішнє відвідування"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Вчорашній відвідувач"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Переглянути статистику"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Завантажити файл ODF "
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Завантажити файл HTML "
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Інструкцію не знайдено."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "Ви не маєте достатніх прав для доступу до цієї сторінки."
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr "WP Statistics %s установлений на"
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr "Browscap.ini оновлено на"
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://wp-statistics.com/"
1415
  msgstr "Оновлено %s GeoIP записів бази даних відвідувачів."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s даних старіше %s днів успішно очищено."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Записів не знайдено для очищення з %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr "База даних, відсічена на"
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "Будь ласка, виберіть значення протягом 30 днів."
1436
 
1456
  msgstr "Натисніть для переміщення"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Браузери"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Виключення в статистиці"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 днів"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 днів"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 днів"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 місяці"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 місяці"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 місяців"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 місяців"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 рік"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Все"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Відвідування"
1686
 
1773
  msgstr "Час: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Перегляди"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr "Даних платформи для видалення не знайдено!"
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s даних таблиці успішно видалено."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Помилка %s не очищено!"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Країни"
1852
 
1877
  msgstr "Вітаємо, установка вже оновлена, нічого не треба робити."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Експорт"
1883
 
1886
  msgstr "Експорт з"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Будь ласка виберіть"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Виділіть таблицю для вихідного файлу."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Експорт до"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Відвідувачі"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Установка завершена."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Джерела/інформація"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Очищення"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "База даних"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Оновлення"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr "Історичні"
2267
 
2444
  msgstr "Якщо вам потрібне більш стійке рішення для делегування доступу, перегляньте %s в каталозі плагіну в WordPress."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Вилучення"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Ця функція не зберігатиме IP адреси в базі даних, але замість цььго, використані унікальні хеши. Налаштування \"Зберігати весь рядок агента користувача\" буде виключене, якщо ви виберете цю функцію. Ви не зможете повернути IP адреси в майбутньому для повернення деталей розташування, якщо ви активуєте цю функцію."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Користувачі онлайн"
2706
 
languages/wp_statistics-vi.mo CHANGED
Binary file
languages/wp_statistics-vi.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "Cho mỗi truy cập vào tài khoản cho một số lượt truy cập. Hiện nay %s."
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "Trang"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "Người online"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "Số người truy câp hôm nay"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "Lượt truy cập hôm nay"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "Số người truy câp hôm qua"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "Lượt truy cập hôm qua"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "Số lượt truy cập"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "Tất cả chuyến thăm"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "Không có"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "Loại bản đồ"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "Google"
@@ -1013,7 +1069,7 @@ msgstr "Một lần mỗi 2 tuần"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "Một lần mỗi tuần 4"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "Thống kê"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "Thống kê"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "Hiển thị thống kê trang web trong thanh bên."
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "Chuyến thăm tuần"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "Chuyến thăm tháng"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "Tuổi truy cập vào"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "Xem tất cả trang"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "Xem tất cả trang"
1041
  msgid "Search Engine referred"
1042
  msgstr "Công cụ tìm kiếm được gọi"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "Tổng số bài viết"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "Tất cả trang"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "Tổng số bình"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "Tất cả spam"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "Tất cả người dùng"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "Trung bình là bài viết"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "Ý kiến trung bình"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "Người dùng trung bình"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "Cuối ngày đăng"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "Tên"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "Mục"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "Lượt truy cập hôm qua"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "Công cụ tìm kiếm được gọi"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "Chọn loại cỗ máy tìm kiếm"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "Thống kê WP"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "Hoàn thành các thống kê cho trang web WordPress của bạn."
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "Người dùng trực tuyến theo dõi trong WP thống kê không được kích hoạt, hãy đi đến %s và kích hoạt nó."
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "thiết lập trang"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "Nhấn theo dõi trong WP thống kê không được kích hoạt, hãy đi đến %s và kích hoạt nó."
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "Số lượt truy cập theo dõi trong WP thống kê không được kích hoạt, hãy đi đến %s và kích hoạt nó."
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP bộ sưu tập là không hoạt động, hãy đi đến %s và kích hoạt tính năng này."
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "Cài đặt"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "Click vào đây để truy cập vào các plugin trên WordPress.org"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "Truy cập WordPress.org Trang"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "Click vào đây để đánh giá và xem xét này plugin trên WordPress.org"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "Tỷ lệ này plugin"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "Thống kê WP - lượt truy cập"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "Tổng quan"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "Lượt tìm kiếm"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "Từ được tìm kiếm"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "Tối ưu hóa"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "Hướng dẫn sử dụng"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "Số người truy câp hôm nay"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "Lượt truy cập hôm nay"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "Số người truy cập hôm qua"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "Xem số liệu thống kê"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "Tải về tập tin ODF"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "Tải xuống tệp HTML"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "Hướng dẫn sử dụng tập tin không tìm thấy."
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr ".Bạn không có quyền truy cập trang này"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "browscap đã có tại phiên bản hiện tại!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "http://WP-Statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "Cập Nhật bản ghi GeoIP %s trong cơ sở dữ liệu số lượt truy cập."
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s dữ liệu cũ hơn %s ngày thanh trừng thành công."
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "Không có hồ sơ tìm thấy để tẩy từ %s!"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr ".Hãy chọn giá trị lớn hơn 30 ngày"
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "Nhấn vào đây để chuyển đổi"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "Trình duyệt"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "Chú ý: Loại trừ không hiện đang được thiết lập để
1449
  msgid "Exclusions Statistics"
1450
  msgstr "Loại trừ số liệu thống kê"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 ngày"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 ngày"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 ngày"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 tháng"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 tháng"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 tháng"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 tháng"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 năm"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "Từ"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "Tất cả"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "Tiêu đề trang không tìm thấy"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "Các lượt truy cập"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "Thời gian: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "Lượt đếm"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s nền tảng dữ liệu đã xóa thành công."
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s bảng dữ liệu đã xóa thành công."
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "Lỗi, %s không trống"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "Cơ sở dữ liệu chỉ mục"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "Quốc gia"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "Xin chúc mừng, cài đặt là đã đến nay, không có gì để làm."
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "Xuất khẩu"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "Xuất khẩu từ"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "Xuất khẩu từ"
1858
  msgid "Please select"
1859
  msgstr "Vui lòng chọn"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "Chọn bảng cho các tập tin đầu ra."
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "Xuất khẩu để"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "Lượng người truy cập"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "Địa chỉ IP thay thế với giá trị hash."
2208
  msgid "Install routine complete."
2209
  msgstr "Cài đặt hoàn thành thói quen."
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "Tài nguyên/thông tin"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "Lọc"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "Cơ sở dữ liệu"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "Cập Nhật"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "Nếu bạn cần một giải pháp mạnh mẽ hơn để đại biểu truy cập bạn có thể muốn nhìn vào %s trong thư mục plugin WordPress."
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "Ngoại trừ"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "Điều này sẽ xóa sổ tay khi bạn lưu cài đặt, bạn có ch
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "Tính năng này sẽ không lưu trữ địa chỉ IP trong cơ sở dữ liệu nhưng thay vào đó sử dụng một băm duy nhất. \"Store người dùng toàn bộ đại lý string\" cài đặt sẽ bị vô hiệu nếu điều này được chọn. Bạn sẽ không thể phục hồi các địa chỉ IP trong tương lai để phục hồi thông tin vị trí nếu điều này được kích hoạt."
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "Người dùng trực tuyến"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "Cho mỗi truy cập vào tài khoản cho một số lượt truy cập. Hiện nay %s."
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "Trang"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "Người online"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "Số người truy câp hôm nay"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "Lượt truy cập hôm nay"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "Số người truy câp hôm qua"
844
 
847
  msgstr "Lượt truy cập hôm qua"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "Số lượt truy cập"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "Tất cả chuyến thăm"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "Không có"
863
 
916
  msgid "Map type"
917
  msgstr "Loại bản đồ"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "Google"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "Một lần mỗi tuần 4"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "Thống kê"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Hiển thị thống kê trang web trong thanh bên."
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Chuyến thăm tuần"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Chuyến thăm tháng"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Tuổi truy cập vào"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Xem tất cả trang"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "Công cụ tìm kiếm được gọi"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Tổng số bài viết"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Tất cả trang"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Tổng số bình"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Tất cả spam"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Tất cả người dùng"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Trung bình là bài viết"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Ý kiến trung bình"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Người dùng trung bình"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "Cuối ngày đăng"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "Tên"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "Mục"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "Lượt truy cập hôm qua"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "Công cụ tìm kiếm được gọi"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "Chọn loại cỗ máy tìm kiếm"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "Thống kê WP"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "Hoàn thành các thống kê cho trang web WordPress của bạn."
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "Cài đặt"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "Click vào đây để truy cập vào các plugin trên WordPress.org"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "Truy cập WordPress.org Trang"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "Click vào đây để đánh giá và xem xét này plugin trên WordPress.org"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "Tỷ lệ này plugin"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "Thống kê WP - lượt truy cập"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "Tổng quan"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "Lượt tìm kiếm"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "Từ được tìm kiếm"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "Tối ưu hóa"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "Hướng dẫn sử dụng"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "Số người truy câp hôm nay"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "Lượt truy cập hôm nay"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "Số người truy cập hôm qua"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "Xem số liệu thống kê"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "Tải về tập tin ODF"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "Tải xuống tệp HTML"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "Hướng dẫn sử dụng tập tin không tìm thấy."
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr ".Bạn không có quyền truy cập trang này"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "http://WP-Statistics.com/"
1415
  msgstr "Cập Nhật bản ghi GeoIP %s trong cơ sở dữ liệu số lượt truy cập."
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s dữ liệu cũ hơn %s ngày thanh trừng thành công."
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "Không có hồ sơ tìm thấy để tẩy từ %s!"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr ".Hãy chọn giá trị lớn hơn 30 ngày"
1436
 
1456
  msgstr "Nhấn vào đây để chuyển đổi"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "Trình duyệt"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "Loại trừ số liệu thống kê"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 ngày"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 ngày"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 ngày"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 tháng"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 tháng"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 tháng"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 tháng"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 năm"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "Tất cả"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "Các lượt truy cập"
1686
 
1773
  msgstr "Thời gian: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "Lượt đếm"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s bảng dữ liệu đã xóa thành công."
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "Lỗi, %s không trống"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "Quốc gia"
1852
 
1877
  msgstr "Xin chúc mừng, cài đặt là đã đến nay, không có gì để làm."
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "Xuất khẩu"
1883
 
1886
  msgstr "Xuất khẩu từ"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "Vui lòng chọn"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "Chọn bảng cho các tập tin đầu ra."
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "Xuất khẩu để"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "Lượng người truy cập"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "Cài đặt hoàn thành thói quen."
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "Tài nguyên/thông tin"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "Lọc"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "Cơ sở dữ liệu"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "Cập Nhật"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "Nếu bạn cần một giải pháp mạnh mẽ hơn để đại biểu truy cập bạn có thể muốn nhìn vào %s trong thư mục plugin WordPress."
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "Ngoại trừ"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "Tính năng này sẽ không lưu trữ địa chỉ IP trong cơ sở dữ liệu nhưng thay vào đó sử dụng một băm duy nhất. \"Store người dùng toàn bộ đại lý string\" cài đặt sẽ bị vô hiệu nếu điều này được chọn. Bạn sẽ không thể phục hồi các địa chỉ IP trong tương lai để phục hồi thông tin vị trí nếu điều này được kích hoạt."
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "Người dùng trực tuyến"
2706
 
languages/wp_statistics-zh_CN.mo CHANGED
Binary file
languages/wp_statistics-zh_CN.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "每一个访问计算多少位访客,现时 %s "
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "页"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "在线用户"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "今日访客"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "今日访问"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "昨日访客"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "昨日访问"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "累计访客"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "累计访问"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "没有一个"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "映射类型"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "谷歌 (Google)"
@@ -1013,7 +1069,7 @@ msgstr "每隔 2 周"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "每隔 4 周"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "统计"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "统计"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "在侧边栏中显示网站的统计资料。"
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "本周访问"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "本月访问"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "本年访问"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "页面访问总数"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "页面访问总数"
1041
  msgid "Search Engine referred"
1042
  msgstr "搜索引擎引用次数"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "总计文章"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "总计页面"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "总计回响"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "总计垃圾"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "总计用户"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "平均文章"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "平均回响"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "平均用户"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "最后发表日期"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "名称"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "条目"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "昨日访问"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "搜索引擎提交"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "选择搜寻引擎种类"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP 统计"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "完整的统计资料,为你的 WordPress 站点的。"
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "在线用户跟踪 WP Statistic 中未启用,请转到 %s,并启用它。"
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "设置页面"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "WP Statistics命中的跟踪未启用,请转到 %s,并启用它。"
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "访客在 WP Statistics跟踪未启用,请转到 %s,并启用它。"
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP 集合未处于活动状态,请转到 %s 并启用此功能。"
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "设定"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "点击这里访问插件上好"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "访问好页面"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "单击此处打分和评论这上好的插件"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "率这个插件"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP 统计-命中"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "总览"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "搜索"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "词语搜索"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "优化"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "手动"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "累计访客"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "累计访问"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "昨日访客"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "检阅统计数据"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "ODF 文件下载"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "下载 HTML 文件"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "手动文件找不到。"
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "你没有足够权限访问此页"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "已经在当前版本的 browscap!"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr ""
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "在访客数据库中更新%s GeoIP。"
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s 的数据超过 %s 天成功清除。"
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "没有找到要从 %s 清除的记录 !"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "请选择一个大于30天的值"
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "点击切换"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "浏览器"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "小心:现在没有设定记录过滤信息,所以下面的结果可
1449
  msgid "Exclusions Statistics"
1450
  msgstr "排除统计"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 天"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 天"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 天"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2个月"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3个月"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6个月"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9个月"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "一年"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "由"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "全部"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "发现没有页面标题"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "点击"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "时间: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "点击数"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s 平台数据已成功删除。"
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s 已成功删除的表数据。"
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "错误,%s 未清空。"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "数据库索引"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "国家"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "恭喜,您的安装是已经到目前为止,什么都不做。"
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "导出"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "导出来源"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "导出来源"
1858
  msgid "Please select"
1859
  msgstr "请选择"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "导出格式"
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "导出到"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "访客"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP 地址替换为哈希值。"
2208
  msgid "Install routine complete."
2209
  msgstr "安装例行完成。"
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "资源/信息"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "清除"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "数据库"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "更新"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "如果你需要一个更加稳妥的解决方案来优雅的访问,那么你可以在WordPress的插件目录看一下 %s。"
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "过滤"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "这将删除手册 》,当您保存设置时,你确定吗?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "此功能不会将 IP 地址存储在数据库中,但相反用唯一的哈希。\"Store 整个用户代理 string\"设置将被禁用,如果选择了此选项。你将不能恢复的 IP 地址在将来恢复位置的信息,如果启用此选项。"
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "用户在线"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "每一个访问计算多少位访客,现时 %s "
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "页"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "在线用户"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "今日访客"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "今日访问"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "昨日访客"
844
 
847
  msgstr "昨日访问"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "累计访客"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "累计访问"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "没有一个"
863
 
916
  msgid "Map type"
917
  msgstr "映射类型"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "谷歌 (Google)"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "每隔 4 周"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "统计"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "在侧边栏中显示网站的统计资料。"
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "本周访问"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "本月访问"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "本年访问"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "页面访问总数"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "搜索引擎引用次数"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "总计文章"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "总计页面"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "总计回响"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "总计垃圾"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "总计用户"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "平均文章"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "平均回响"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "平均用户"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "最后发表日期"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "名称"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "条目"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "昨日访问"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "搜索引擎提交"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "选择搜寻引擎种类"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP 统计"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "完整的统计资料,为你的 WordPress 站点的。"
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "设定"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "点击这里访问插件上好"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "访问好页面"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "单击此处打分和评论这上好的插件"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "率这个插件"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP 统计-命中"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "总览"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "搜索"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "词语搜索"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "优化"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "手动"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "累计访客"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "累计访问"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "昨日访客"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "检阅统计数据"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "ODF 文件下载"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "下载 HTML 文件"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "手动文件找不到。"
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "你没有足够权限访问此页"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr ""
1415
  msgstr "在访客数据库中更新%s GeoIP。"
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s 的数据超过 %s 天成功清除。"
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "没有找到要从 %s 清除的记录 !"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "请选择一个大于30天的值"
1436
 
1456
  msgstr "点击切换"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "浏览器"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "排除统计"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 天"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 天"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 天"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2个月"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3个月"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6个月"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9个月"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "一年"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "全部"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "点击"
1686
 
1773
  msgstr "时间: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "点击数"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s 已成功删除的表数据。"
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "错误,%s 未清空。"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "国家"
1852
 
1877
  msgstr "恭喜,您的安装是已经到目前为止,什么都不做。"
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "导出"
1883
 
1886
  msgstr "导出来源"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "请选择"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "导出格式"
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "导出到"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "访客"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "安装例行完成。"
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "资源/信息"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "清除"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "数据库"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "更新"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "如果你需要一个更加稳妥的解决方案来优雅的访问,那么你可以在WordPress的插件目录看一下 %s。"
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "过滤"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "此功能不会将 IP 地址存储在数据库中,但相反用唯一的哈希。\"Store 整个用户代理 string\"设置将被禁用,如果选择了此选项。你将不能恢复的 IP 地址在将来恢复位置的信息,如果启用此选项。"
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "用户在线"
2706
 
languages/wp_statistics-zh_TW.mo CHANGED
Binary file
languages/wp_statistics-zh_TW.po CHANGED
@@ -10,11 +10,71 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
15
  msgstr ""
16
 
17
- #: includes/optimization/wps-optimization.php:176
18
  msgid "Search table conversion complete, %d rows added."
19
  msgstr ""
20
 
@@ -150,63 +210,59 @@ msgstr ""
150
  msgid "Number of hits must be greater than or equal to 10!"
151
  msgstr ""
152
 
153
- #: shortcode.php:139
154
  msgid "Page Visits"
155
  msgstr ""
156
 
157
- #: shortcode.php:142
158
  msgid "Page Count"
159
  msgstr ""
160
 
161
- #: shortcode.php:143
162
  msgid "Comment Count"
163
  msgstr ""
164
 
165
- #: shortcode.php:144
166
  msgid "Spam Count"
167
  msgstr ""
168
 
169
- #: shortcode.php:145
170
  msgid "User Count"
171
  msgstr ""
172
 
173
- #: shortcode.php:146
174
  msgid "Post Average"
175
  msgstr ""
176
 
177
- #: shortcode.php:147
178
  msgid "Comment Average"
179
  msgstr ""
180
 
181
- #: shortcode.php:148
182
  msgid "User Average"
183
  msgstr ""
184
 
185
- #: shortcode.php:156
186
- msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
187
- msgstr ""
188
-
189
- #: shortcode.php:160
190
  msgid "Search Provider"
191
  msgstr ""
192
 
193
- #: shortcode.php:163
194
  msgid "The search provider to get statistics on."
195
  msgstr ""
196
 
197
- #: shortcode.php:167
198
  msgid "Number Format"
199
  msgstr ""
200
 
201
- #: shortcode.php:170
202
  msgid "The format to display numbers in: i18n, english, none."
203
  msgstr ""
204
 
205
- #: shortcode.php:174
206
  msgid "English"
207
  msgstr ""
208
 
209
- #: shortcode.php:175
210
  msgid "International"
211
  msgstr ""
212
 
@@ -226,7 +282,7 @@ msgstr ""
226
  msgid "Have you thought about donating to WP Statistics?"
227
  msgstr ""
228
 
229
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
230
  msgid "Donate"
231
  msgstr ""
232
 
@@ -246,27 +302,27 @@ msgstr ""
246
  msgid "Close"
247
  msgstr ""
248
 
249
- #: shortcode.php:133
250
  msgid "Select the statistic you wish to display."
251
  msgstr ""
252
 
253
- #: shortcode.php:130
254
  msgid "Statistic"
255
  msgstr ""
256
 
257
- #: shortcode.php:141
258
  msgid "Post Count"
259
  msgstr ""
260
 
261
- #: shortcode.php:153
262
  msgid "Time Frame"
263
  msgstr ""
264
 
265
- #: includes/functions/functions.php:981
266
  msgid "to"
267
  msgstr ""
268
 
269
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
270
  msgid "Go"
271
  msgstr ""
272
 
@@ -310,11 +366,11 @@ msgstr ""
310
  msgid "Filtered by"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:974 includes/functions/functions.php:977
314
  msgid "Range"
315
  msgstr ""
316
 
317
- #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
318
  msgid "MM/DD/YYYY"
319
  msgstr "MM/DD/YYYY"
320
 
@@ -358,27 +414,27 @@ msgstr ""
358
  msgid "Last 7 Days (Week)"
359
  msgstr ""
360
 
361
- #: includes/functions/functions.php:405
362
  msgid "Yahoo!"
363
  msgstr ""
364
 
365
- #: includes/functions/functions.php:406
366
  msgid "Yandex"
367
  msgstr ""
368
 
369
- #: includes/functions/functions.php:402
370
  msgid "clearch.org"
371
  msgstr ""
372
 
373
- #: includes/functions/functions.php:403
374
  msgid "DuckDuckGo"
375
  msgstr ""
376
 
377
- #: includes/functions/functions.php:401
378
  msgid "Bing"
379
  msgstr ""
380
 
381
- #: includes/functions/functions.php:400
382
  msgid "Baidu"
383
  msgstr ""
384
 
@@ -481,8 +537,8 @@ msgid "For each visit to account for several hits. Currently %s."
481
  msgstr "每一個訪問計算多少位訪客,現時 %s "
482
 
483
  #: includes/settings/tabs/wps-general.php:177
484
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
485
- #: wp-statistics.php:431
486
  msgid "Pages"
487
  msgstr "頁"
488
 
@@ -767,22 +823,22 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
767
  msgstr ""
768
 
769
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
770
- #: widget.php:245 wp-statistics.php:536
771
  msgid "User Online"
772
  msgstr "在線用戶"
773
 
774
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
775
- #: widget.php:251
776
  msgid "Today Visitor"
777
  msgstr "累計訪客"
778
 
779
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
780
- #: widget.php:248
781
  msgid "Today Visit"
782
  msgstr "累計點擊"
783
 
784
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
785
- #: widget.php:257
786
  msgid "Yesterday Visitor"
787
  msgstr "昨日訪客"
788
 
@@ -791,17 +847,17 @@ msgid "Yesterday Visit"
791
  msgstr "昨日點擊"
792
 
793
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
794
- #: widget.php:272
795
  msgid "Total Visitor"
796
  msgstr "累計訪客"
797
 
798
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
799
- #: widget.php:269
800
  msgid "Total Visit"
801
  msgstr "累計點擊"
802
 
803
  #: includes/settings/tabs/wps-overview-display.php:23
804
- #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
805
  msgid "None"
806
  msgstr "沒有一個"
807
 
@@ -860,7 +916,7 @@ msgstr ""
860
  msgid "Map type"
861
  msgstr "映射類型"
862
 
863
- #: includes/functions/functions.php:404
864
  #: includes/settings/tabs/wps-overview-display.php:128
865
  msgid "Google"
866
  msgstr "谷歌 (Google)"
@@ -1013,7 +1069,7 @@ msgstr "每隔 2 周"
1013
  msgid "Once Every 4 Weeks"
1014
  msgstr "每隔 4 周"
1015
 
1016
- #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1017
  msgid "Statistics"
1018
  msgstr "統計"
1019
 
@@ -1021,19 +1077,19 @@ msgstr "統計"
1021
  msgid "Show site stats in sidebar."
1022
  msgstr "在側邊欄中顯示網站的統計資料。"
1023
 
1024
- #: widget.php:73 widget.php:260
1025
  msgid "Week Visit"
1026
  msgstr "本周點擊"
1027
 
1028
- #: widget.php:80 widget.php:263
1029
  msgid "Month Visit"
1030
  msgstr "本月點擊"
1031
 
1032
- #: widget.php:87 widget.php:266
1033
  msgid "Years Visit"
1034
  msgstr "本年點擊"
1035
 
1036
- #: widget.php:108 widget.php:275
1037
  msgid "Total Page Views"
1038
  msgstr "頁面訪問總數"
1039
 
@@ -1041,59 +1097,59 @@ msgstr "頁面訪問總數"
1041
  msgid "Search Engine referred"
1042
  msgstr "搜尋引擎提交"
1043
 
1044
- #: widget.php:123 widget.php:298
1045
  msgid "Total Posts"
1046
  msgstr "總計文章"
1047
 
1048
- #: widget.php:130 widget.php:301
1049
  msgid "Total Pages"
1050
  msgstr "總計頁面"
1051
 
1052
- #: widget.php:137 widget.php:304
1053
  msgid "Total Comments"
1054
  msgstr "總計迴響"
1055
 
1056
- #: widget.php:144 widget.php:307
1057
  msgid "Total Spams"
1058
  msgstr "總計垃圾"
1059
 
1060
- #: widget.php:151 widget.php:310
1061
  msgid "Total Users"
1062
  msgstr "總計用戶"
1063
 
1064
- #: widget.php:158 widget.php:313
1065
  msgid "Average Posts"
1066
  msgstr "平均文章"
1067
 
1068
- #: widget.php:165 widget.php:316
1069
  msgid "Average Comments"
1070
  msgstr "平均迴響"
1071
 
1072
- #: widget.php:172 widget.php:319
1073
  msgid "Average Users"
1074
  msgstr "平均用戶"
1075
 
1076
- #: shortcode.php:149 widget.php:179 widget.php:322
1077
  msgid "Last Post Date"
1078
  msgstr "上次發表日期"
1079
 
1080
- #: widget.php:238
1081
  msgid "Name"
1082
  msgstr "名稱"
1083
 
1084
- #: widget.php:242
1085
  msgid "Items"
1086
  msgstr "專案"
1087
 
1088
- #: widget.php:254 wp-statistics.php:561
1089
  msgid "Yesterday visit"
1090
  msgstr "昨日點擊"
1091
 
1092
- #: widget.php:278
1093
  msgid "Search Engine Referred"
1094
  msgstr "搜尋引擎提交"
1095
 
1096
- #: widget.php:281
1097
  msgid "Select type of search engine"
1098
  msgstr "選擇搜尋引擎種類"
1099
 
@@ -1113,136 +1169,115 @@ msgstr ""
1113
  msgid "WP Statistics has been removed, please disable and delete it."
1114
  msgstr ""
1115
 
1116
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1117
  #. Plugin Name of the plugin/theme
1118
  #: wp-statistics.php:37
1119
  msgid "WP Statistics"
1120
  msgstr "WP 統計"
1121
 
1122
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1123
  #. Description of the plugin/theme
1124
  #: wp-statistics.php:38
1125
  msgid "Complete statistics for your WordPress site."
1126
  msgstr "完整的統計資料,為你的 WordPress 網站的。"
1127
 
1128
- #: wp-statistics.php:137
1129
- msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1130
- msgstr "線上使用者跟蹤 WP Statistic 中未啟用,請轉到 %s,並啟用它。"
1131
-
1132
- #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1133
- #: wp-statistics.php:146
1134
- msgid "setting page"
1135
- msgstr "設置頁面"
1136
-
1137
- #: wp-statistics.php:140
1138
- msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
- msgstr "WP Statistics 命中的跟蹤未啟用,請轉到 %s,並啟用它。"
1140
-
1141
- #: wp-statistics.php:143
1142
- msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1143
- msgstr "訪客在 WP Statistics 跟蹤未啟用,請轉到 %s,並啟用它。"
1144
-
1145
- #: wp-statistics.php:146
1146
- msgid "GeoIP collection is not active, please go to %s and enable this feature."
1147
- msgstr "GeoIP 集合未處於活動狀態,請轉到 %s 並啟用此功能。"
1148
-
1149
- #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1150
  msgid "Settings"
1151
  msgstr "設定"
1152
 
1153
- #: wp-statistics.php:265
1154
  msgid "Click here to visit the plugin on WordPress.org"
1155
  msgstr "點擊這裡訪問外掛程式上好"
1156
 
1157
- #: wp-statistics.php:265
1158
  msgid "Visit WordPress.org page"
1159
  msgstr "訪問好頁面"
1160
 
1161
- #: wp-statistics.php:268
1162
  msgid "Click here to rate and review this plugin on WordPress.org"
1163
  msgstr "按一下此處打分和評論這上好的外掛程式"
1164
 
1165
- #: wp-statistics.php:268
1166
  msgid "Rate this plugin"
1167
  msgstr "率這個外掛程式"
1168
 
1169
- #: wp-statistics.php:312
1170
  msgid "WP Statistics - Hits"
1171
  msgstr "WP 統計-命中"
1172
 
1173
- #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1174
  msgid "Overview"
1175
  msgstr "概述"
1176
 
1177
- #: wp-statistics.php:354 wp-statistics.php:430
1178
  msgid "Online"
1179
  msgstr ""
1180
 
1181
- #: wp-statistics.php:356 wp-statistics.php:432
1182
  msgid "Referrers"
1183
  msgstr ""
1184
 
1185
- #: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
1186
  msgid "Searches"
1187
  msgstr "搜索"
1188
 
1189
- #: wp-statistics.php:358 wp-statistics.php:434
1190
  msgid "Search Words"
1191
  msgstr "搜索詞"
1192
 
1193
- #: wp-statistics.php:359 wp-statistics.php:435
1194
  msgid "Top Visitors Today"
1195
  msgstr ""
1196
 
1197
- #: wp-statistics.php:364 wp-statistics.php:437
1198
  msgid "Optimization"
1199
  msgstr "優化"
1200
 
1201
- #: wp-statistics.php:370 wp-statistics.php:401
1202
  msgid "Manual"
1203
  msgstr "手動"
1204
 
1205
- #: wp-statistics.php:416
1206
  msgid "Site"
1207
  msgstr ""
1208
 
1209
- #: wp-statistics.php:417
1210
  msgid "Options"
1211
  msgstr ""
1212
 
1213
- #: wp-statistics.php:543
1214
  msgid "Today visitor"
1215
  msgstr "累計訪客"
1216
 
1217
- #: wp-statistics.php:549
1218
  msgid "Today visit"
1219
  msgstr "累計點擊"
1220
 
1221
- #: wp-statistics.php:555
1222
  msgid "Yesterday visitor"
1223
  msgstr "昨日訪客"
1224
 
1225
- #: wp-statistics.php:567
1226
  msgid "View Stats"
1227
  msgstr "檢閱統計數據"
1228
 
1229
- #: wp-statistics.php:591
1230
  msgid "Download ODF file"
1231
  msgstr "ODF 檔下載"
1232
 
1233
- #: wp-statistics.php:592
1234
  msgid "Download HTML file"
1235
  msgstr "下載 HTML 檔案"
1236
 
1237
- #: wp-statistics.php:596
1238
  msgid "Manual file not found."
1239
  msgstr "手動檔找不到。"
1240
 
1241
- #: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
1242
  msgid "You do not have sufficient permissions to access this page."
1243
  msgstr "你沒有足夠權限訪問此頁"
1244
 
1245
- #: wp-statistics.php:241
1246
  msgid "WP Statistics %s installed on"
1247
  msgstr ""
1248
 
@@ -1290,9 +1325,9 @@ msgstr "已經在當前版本的 browscap !"
1290
  msgid "Browscap.ini update on"
1291
  msgstr ""
1292
 
1293
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1294
  #. Plugin URI of the plugin/theme
1295
- #. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
1296
  #. Author URI of the plugin/theme
1297
  msgid "http://wp-statistics.com/"
1298
  msgstr "HTTP://wp-statistics.com/"
@@ -1380,20 +1415,22 @@ msgid "Updated %s GeoIP records in the visitors database."
1380
  msgstr "更新 %s GeoIP 訪問資料庫中的記錄。"
1381
 
1382
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1383
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
1384
  msgid "%s data older than %s days purged successfully."
1385
  msgstr "%s 的資料超過 %s 天成功清除。"
1386
 
1387
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1388
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
1389
  msgid "No records found to purge from %s!"
1390
  msgstr "沒有找到要從 %s 清除的記錄 !"
1391
 
1392
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1393
  msgid "Database pruned on"
1394
  msgstr ""
1395
 
1396
- #: includes/functions/purge.php:103
1397
  msgid "Please select a value over 30 days."
1398
  msgstr "請選擇一個值超過 30 天。"
1399
 
@@ -1419,8 +1456,8 @@ msgid "Click to toggle"
1419
  msgstr "按一下可切換"
1420
 
1421
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1422
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1423
- #: wp-statistics.php:426
1424
  msgid "Browsers"
1425
  msgstr "瀏覽器"
1426
 
@@ -1449,35 +1486,35 @@ msgstr "注意: 排斥不當前設置被記錄下來,下面的結果可能
1449
  msgid "Exclusions Statistics"
1450
  msgstr "排除統計"
1451
 
1452
- #: includes/functions/functions.php:931
1453
  msgid "10 Days"
1454
  msgstr "10 天"
1455
 
1456
- #: includes/functions/functions.php:931
1457
  msgid "20 Days"
1458
  msgstr "20 天"
1459
 
1460
- #: includes/functions/functions.php:931
1461
  msgid "30 Days"
1462
  msgstr "30 天"
1463
 
1464
- #: includes/functions/functions.php:931
1465
  msgid "2 Months"
1466
  msgstr "2 個月"
1467
 
1468
- #: includes/functions/functions.php:931
1469
  msgid "3 Months"
1470
  msgstr "3 個月"
1471
 
1472
- #: includes/functions/functions.php:931
1473
  msgid "6 Months"
1474
  msgstr "6 個月"
1475
 
1476
- #: includes/functions/functions.php:931
1477
  msgid "9 Months"
1478
  msgstr "9 個月"
1479
 
1480
- #: includes/functions/functions.php:931
1481
  msgid "1 Year"
1482
  msgstr "1 年"
1483
 
@@ -1555,7 +1592,7 @@ msgstr "由"
1555
 
1556
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1557
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1558
- #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1559
  msgid "All"
1560
  msgstr "全部"
1561
 
@@ -1643,7 +1680,7 @@ msgstr "發現沒有頁面標題"
1643
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1644
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1645
  #: includes/settings/tabs/wps-general.php:122
1646
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:137
1647
  msgid "Visits"
1648
  msgstr "點擊"
1649
 
@@ -1736,8 +1773,8 @@ msgid "Time: %s"
1736
  msgstr "時間: %s"
1737
 
1738
  #: includes/log/widgets/top.visitors.php:31
1739
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1740
- #: wp-statistics.php:353 wp-statistics.php:429
1741
  msgid "Hits"
1742
  msgstr "命中"
1743
 
@@ -1779,11 +1816,11 @@ msgstr "%s 平臺資料已成功刪除。"
1779
  msgid "No platform data found to remove!"
1780
  msgstr ""
1781
 
1782
- #: includes/functions/functions.php:1019
1783
  msgid "%s table data deleted successfully."
1784
  msgstr "%s 已成功刪除的表資料。"
1785
 
1786
- #: includes/functions/functions.php:1023
1787
  msgid "Error, %s not emptied!"
1788
  msgstr "錯誤,%s 不為空 !"
1789
 
@@ -1809,7 +1846,7 @@ msgstr "資料庫索引"
1809
 
1810
  #: includes/optimization/tabs/wps-optimization-database.php:25
1811
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1812
- #: wp-statistics.php:351 wp-statistics.php:427
1813
  msgid "Countries"
1814
  msgstr "國家"
1815
 
@@ -1840,7 +1877,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
1840
  msgstr "恭喜,您的安裝是已經到目前為止,什麼都不做。"
1841
 
1842
  #: includes/optimization/tabs/wps-optimization-export.php:8
1843
- #: includes/optimization/wps-optimization.php:215
1844
  msgid "Export"
1845
  msgstr "出口"
1846
 
@@ -1849,7 +1886,7 @@ msgid "Export from"
1849
  msgstr "從匯出"
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-export.php:18
1852
- #: includes/optimization/tabs/wps-optimization-export.php:36
1853
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1854
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:265
@@ -1858,11 +1895,11 @@ msgstr "從匯出"
1858
  msgid "Please select"
1859
  msgstr "請選擇"
1860
 
1861
- #: includes/optimization/tabs/wps-optimization-export.php:25
1862
  msgid "Select the table for the output file."
1863
  msgstr "選擇用於輸出檔案的表。"
1864
 
1865
- #: includes/optimization/tabs/wps-optimization-export.php:31
1866
  msgid "Export To"
1867
  msgstr "匯出到"
1868
 
@@ -1892,8 +1929,8 @@ msgstr ""
1892
 
1893
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1894
  #: includes/settings/tabs/wps-general.php:138
1895
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:138
1896
- #: wp-statistics.php:360 wp-statistics.php:436
1897
  msgid "Visitors"
1898
  msgstr "訪客"
1899
 
@@ -2208,23 +2245,23 @@ msgstr "IP 位址替換為雜湊值。"
2208
  msgid "Install routine complete."
2209
  msgstr "安裝例行完成。"
2210
 
2211
- #: includes/optimization/wps-optimization.php:214
2212
  msgid "Resources/Information"
2213
  msgstr "資源/資訊"
2214
 
2215
- #: includes/optimization/wps-optimization.php:216
2216
  msgid "Purging"
2217
  msgstr "清除"
2218
 
2219
- #: includes/optimization/wps-optimization.php:217
2220
  msgid "Database"
2221
  msgstr "資料庫"
2222
 
2223
- #: includes/optimization/wps-optimization.php:218
2224
  msgid "Updates"
2225
  msgstr "更新"
2226
 
2227
- #: includes/optimization/wps-optimization.php:219
2228
  msgid "Historical"
2229
  msgstr ""
2230
 
@@ -2407,8 +2444,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2407
  msgstr "如果你需要一個更加健壯的解決方案,委派你可能想看看在 WordPress 外掛程式目錄中 %s 的存取權限。"
2408
 
2409
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2410
- #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2411
- #: wp-statistics.php:428
2412
  msgid "Exclusions"
2413
  msgstr "排除"
2414
 
@@ -2663,7 +2700,7 @@ msgstr "這將刪除手冊 》,當您保存設置時,你確定嗎?"
2663
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2664
  msgstr "此功能不會將 IP 位址存儲在資料庫中,但相反用唯一的雜湊。\"Store 整個使用者代理 string\"設置將被禁用,如果選擇了此選項。你將不能恢復的 IP 位址在將來恢復位置的資訊,如果啟用此選項。"
2665
 
2666
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:136
2667
  msgid "Users Online"
2668
  msgstr "使用者線上"
2669
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: shortcode.php:184
14
+ msgid "The post/page id to get page statistics on."
15
+ msgstr ""
16
+
17
+ #: shortcode.php:181
18
+ msgid "Post/Page ID"
19
+ msgstr ""
20
+
21
+ #: includes/functions/functions.php:400
22
+ msgid "Ask.com"
23
+ msgstr ""
24
+
25
+ #: shortcode.php:158
26
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
27
+ msgstr ""
28
+
29
+ #: wp-statistics.php:144
30
+ msgid "visitor tracking"
31
+ msgstr ""
32
+
33
+ #: wp-statistics.php:145
34
+ msgid "geoip collection"
35
+ msgstr ""
36
+
37
+ #: wp-statistics.php:161
38
+ msgid "visit database index"
39
+ msgstr ""
40
+
41
+ #: wp-statistics.php:170
42
+ msgid "Database updates are required, please go to %s and update the following: %s"
43
+ msgstr ""
44
+
45
+ #: wp-statistics.php:161
46
+ msgid "countries database index"
47
+ msgstr ""
48
+
49
+ #: wp-statistics.php:154
50
+ msgid "search table"
51
+ msgstr ""
52
+
53
+ #: wp-statistics.php:148 wp-statistics.php:170
54
+ msgid "settings page"
55
+ msgstr ""
56
+
57
+ #: wp-statistics.php:148 wp-statistics.php:170
58
+ msgid ","
59
+ msgstr ""
60
+
61
+ #: wp-statistics.php:148
62
+ msgid "The following features are disabled, please go to %s and enable them: %s"
63
+ msgstr ""
64
+
65
+ #: wp-statistics.php:143
66
+ msgid "hit tracking"
67
+ msgstr ""
68
+
69
+ #: wp-statistics.php:142
70
+ msgid "online user tracking"
71
+ msgstr ""
72
+
73
+ #: wp-statistics.php:716
74
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
75
  msgstr ""
76
 
77
+ #: includes/optimization/wps-optimization.php:196
78
  msgid "Search table conversion complete, %d rows added."
79
  msgstr ""
80
 
210
  msgid "Number of hits must be greater than or equal to 10!"
211
  msgstr ""
212
 
213
+ #: shortcode.php:141
214
  msgid "Page Visits"
215
  msgstr ""
216
 
217
+ #: shortcode.php:144
218
  msgid "Page Count"
219
  msgstr ""
220
 
221
+ #: shortcode.php:145
222
  msgid "Comment Count"
223
  msgstr ""
224
 
225
+ #: shortcode.php:146
226
  msgid "Spam Count"
227
  msgstr ""
228
 
229
+ #: shortcode.php:147
230
  msgid "User Count"
231
  msgstr ""
232
 
233
+ #: shortcode.php:148
234
  msgid "Post Average"
235
  msgstr ""
236
 
237
+ #: shortcode.php:149
238
  msgid "Comment Average"
239
  msgstr ""
240
 
241
+ #: shortcode.php:150
242
  msgid "User Average"
243
  msgstr ""
244
 
245
+ #: shortcode.php:162
 
 
 
 
246
  msgid "Search Provider"
247
  msgstr ""
248
 
249
+ #: shortcode.php:165
250
  msgid "The search provider to get statistics on."
251
  msgstr ""
252
 
253
+ #: shortcode.php:169
254
  msgid "Number Format"
255
  msgstr ""
256
 
257
+ #: shortcode.php:172
258
  msgid "The format to display numbers in: i18n, english, none."
259
  msgstr ""
260
 
261
+ #: shortcode.php:176
262
  msgid "English"
263
  msgstr ""
264
 
265
+ #: shortcode.php:177
266
  msgid "International"
267
  msgstr ""
268
 
282
  msgid "Have you thought about donating to WP Statistics?"
283
  msgstr ""
284
 
285
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:392
286
  msgid "Donate"
287
  msgstr ""
288
 
302
  msgid "Close"
303
  msgstr ""
304
 
305
+ #: shortcode.php:135
306
  msgid "Select the statistic you wish to display."
307
  msgstr ""
308
 
309
+ #: shortcode.php:132
310
  msgid "Statistic"
311
  msgstr ""
312
 
313
+ #: shortcode.php:143
314
  msgid "Post Count"
315
  msgstr ""
316
 
317
+ #: shortcode.php:155
318
  msgid "Time Frame"
319
  msgstr ""
320
 
321
+ #: includes/functions/functions.php:982
322
  msgid "to"
323
  msgstr ""
324
 
325
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
326
  msgid "Go"
327
  msgstr ""
328
 
366
  msgid "Filtered by"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:975 includes/functions/functions.php:978
370
  msgid "Range"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:982 includes/log/top-visitors.php:29
374
  msgid "MM/DD/YYYY"
375
  msgstr "MM/DD/YYYY"
376
 
414
  msgid "Last 7 Days (Week)"
415
  msgstr ""
416
 
417
+ #: includes/functions/functions.php:406
418
  msgid "Yahoo!"
419
  msgstr ""
420
 
421
+ #: includes/functions/functions.php:407
422
  msgid "Yandex"
423
  msgstr ""
424
 
425
+ #: includes/functions/functions.php:403
426
  msgid "clearch.org"
427
  msgstr ""
428
 
429
+ #: includes/functions/functions.php:404
430
  msgid "DuckDuckGo"
431
  msgstr ""
432
 
433
+ #: includes/functions/functions.php:402
434
  msgid "Bing"
435
  msgstr ""
436
 
437
+ #: includes/functions/functions.php:401
438
  msgid "Baidu"
439
  msgstr ""
440
 
537
  msgstr "每一個訪問計算多少位訪客,現時 %s "
538
 
539
  #: includes/settings/tabs/wps-general.php:177
540
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:381
541
+ #: wp-statistics.php:457
542
  msgid "Pages"
543
  msgstr "頁"
544
 
823
  msgstr ""
824
 
825
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
826
+ #: widget.php:247 wp-statistics.php:562
827
  msgid "User Online"
828
  msgstr "在線用戶"
829
 
830
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
831
+ #: widget.php:253
832
  msgid "Today Visitor"
833
  msgstr "累計訪客"
834
 
835
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
836
+ #: widget.php:250
837
  msgid "Today Visit"
838
  msgstr "累計點擊"
839
 
840
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
841
+ #: widget.php:259
842
  msgid "Yesterday Visitor"
843
  msgstr "昨日訪客"
844
 
847
  msgstr "昨日點擊"
848
 
849
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
850
+ #: widget.php:274
851
  msgid "Total Visitor"
852
  msgstr "累計訪客"
853
 
854
  #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
855
+ #: widget.php:271
856
  msgid "Total Visit"
857
  msgstr "累計點擊"
858
 
859
  #: includes/settings/tabs/wps-overview-display.php:23
860
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:175
861
  msgid "None"
862
  msgstr "沒有一個"
863
 
916
  msgid "Map type"
917
  msgstr "映射類型"
918
 
919
+ #: includes/functions/functions.php:405
920
  #: includes/settings/tabs/wps-overview-display.php:128
921
  msgid "Google"
922
  msgstr "谷歌 (Google)"
1069
  msgid "Once Every 4 Weeks"
1070
  msgstr "每隔 4 周"
1071
 
1072
+ #: widget.php:14 wp-statistics.php:372 wp-statistics.php:410
1073
  msgid "Statistics"
1074
  msgstr "統計"
1075
 
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "在側邊欄中顯示網站的統計資料。"
1079
 
1080
+ #: widget.php:73 widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "本周點擊"
1083
 
1084
+ #: widget.php:80 widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "本月點擊"
1087
 
1088
+ #: widget.php:87 widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "本年點擊"
1091
 
1092
+ #: widget.php:108 widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "頁面訪問總數"
1095
 
1097
  msgid "Search Engine referred"
1098
  msgstr "搜尋引擎提交"
1099
 
1100
+ #: widget.php:123 widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "總計文章"
1103
 
1104
+ #: widget.php:130 widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "總計頁面"
1107
 
1108
+ #: widget.php:137 widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "總計迴響"
1111
 
1112
+ #: widget.php:144 widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "總計垃圾"
1115
 
1116
+ #: widget.php:151 widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "總計用戶"
1119
 
1120
+ #: widget.php:158 widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "平均文章"
1123
 
1124
+ #: widget.php:165 widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "平均迴響"
1127
 
1128
+ #: widget.php:172 widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "平均用戶"
1131
 
1132
+ #: shortcode.php:151 widget.php:179 widget.php:324
1133
  msgid "Last Post Date"
1134
  msgstr "上次發表日期"
1135
 
1136
+ #: widget.php:240
1137
  msgid "Name"
1138
  msgstr "名稱"
1139
 
1140
+ #: widget.php:244
1141
  msgid "Items"
1142
  msgstr "專案"
1143
 
1144
+ #: widget.php:256 wp-statistics.php:587
1145
  msgid "Yesterday visit"
1146
  msgstr "昨日點擊"
1147
 
1148
+ #: widget.php:280
1149
  msgid "Search Engine Referred"
1150
  msgstr "搜尋引擎提交"
1151
 
1152
+ #: widget.php:283
1153
  msgid "Select type of search engine"
1154
  msgstr "選擇搜尋引擎種類"
1155
 
1169
  msgid "WP Statistics has been removed, please disable and delete it."
1170
  msgstr ""
1171
 
1172
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1173
  #. Plugin Name of the plugin/theme
1174
  #: wp-statistics.php:37
1175
  msgid "WP Statistics"
1176
  msgstr "WP 統計"
1177
 
1178
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1179
  #. Description of the plugin/theme
1180
  #: wp-statistics.php:38
1181
  msgid "Complete statistics for your WordPress site."
1182
  msgstr "完整的統計資料,為你的 WordPress 網站的。"
1183
 
1184
+ #: wp-statistics.php:277 wp-statistics.php:391 wp-statistics.php:464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Settings"
1186
  msgstr "設定"
1187
 
1188
+ #: wp-statistics.php:289
1189
  msgid "Click here to visit the plugin on WordPress.org"
1190
  msgstr "點擊這裡訪問外掛程式上好"
1191
 
1192
+ #: wp-statistics.php:289
1193
  msgid "Visit WordPress.org page"
1194
  msgstr "訪問好頁面"
1195
 
1196
+ #: wp-statistics.php:292
1197
  msgid "Click here to rate and review this plugin on WordPress.org"
1198
  msgstr "按一下此處打分和評論這上好的外掛程式"
1199
 
1200
+ #: wp-statistics.php:292
1201
  msgid "Rate this plugin"
1202
  msgstr "率這個外掛程式"
1203
 
1204
+ #: wp-statistics.php:336
1205
  msgid "WP Statistics - Hits"
1206
  msgstr "WP 統計-命中"
1207
 
1208
+ #: wp-statistics.php:375 wp-statistics.php:413 wp-statistics.php:451
1209
  msgid "Overview"
1210
  msgstr "概述"
1211
 
1212
+ #: wp-statistics.php:380 wp-statistics.php:456
1213
  msgid "Online"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:382 wp-statistics.php:458
1217
  msgid "Referrers"
1218
  msgstr ""
1219
 
1220
+ #: shortcode.php:142 wp-statistics.php:383 wp-statistics.php:459
1221
  msgid "Searches"
1222
  msgstr "搜索"
1223
 
1224
+ #: wp-statistics.php:384 wp-statistics.php:460
1225
  msgid "Search Words"
1226
  msgstr "搜索詞"
1227
 
1228
+ #: wp-statistics.php:385 wp-statistics.php:461
1229
  msgid "Top Visitors Today"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:390 wp-statistics.php:463
1233
  msgid "Optimization"
1234
  msgstr "優化"
1235
 
1236
+ #: wp-statistics.php:396 wp-statistics.php:427
1237
  msgid "Manual"
1238
  msgstr "手動"
1239
 
1240
+ #: wp-statistics.php:442
1241
  msgid "Site"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics.php:443
1245
  msgid "Options"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:569
1249
  msgid "Today visitor"
1250
  msgstr "累計訪客"
1251
 
1252
+ #: wp-statistics.php:575
1253
  msgid "Today visit"
1254
  msgstr "累計點擊"
1255
 
1256
+ #: wp-statistics.php:581
1257
  msgid "Yesterday visitor"
1258
  msgstr "昨日訪客"
1259
 
1260
+ #: wp-statistics.php:593
1261
  msgid "View Stats"
1262
  msgstr "檢閱統計數據"
1263
 
1264
+ #: wp-statistics.php:617
1265
  msgid "Download ODF file"
1266
  msgstr "ODF 檔下載"
1267
 
1268
+ #: wp-statistics.php:618
1269
  msgid "Download HTML file"
1270
  msgstr "下載 HTML 檔案"
1271
 
1272
+ #: wp-statistics.php:622
1273
  msgid "Manual file not found."
1274
  msgstr "手動檔找不到。"
1275
 
1276
+ #: wp-statistics.php:689 wp-statistics.php:814 wp-statistics.php:848
1277
  msgid "You do not have sufficient permissions to access this page."
1278
  msgstr "你沒有足夠權限訪問此頁"
1279
 
1280
+ #: wp-statistics.php:265
1281
  msgid "WP Statistics %s installed on"
1282
  msgstr ""
1283
 
1325
  msgid "Browscap.ini update on"
1326
  msgstr ""
1327
 
1328
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1329
  #. Plugin URI of the plugin/theme
1330
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.5.3) #-#-#-#-#
1331
  #. Author URI of the plugin/theme
1332
  msgid "http://wp-statistics.com/"
1333
  msgstr "HTTP://wp-statistics.com/"
1415
  msgstr "更新 %s GeoIP 訪問資料庫中的記錄。"
1416
 
1417
  #: includes/functions/purge.php:21 includes/functions/purge.php:39
1418
+ #: includes/functions/purge.php:50 includes/functions/purge.php:61
1419
+ #: includes/functions/purge.php:94
1420
  msgid "%s data older than %s days purged successfully."
1421
  msgstr "%s 的資料超過 %s 天成功清除。"
1422
 
1423
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1424
+ #: includes/functions/purge.php:52 includes/functions/purge.php:63
1425
+ #: includes/functions/purge.php:96
1426
  msgid "No records found to purge from %s!"
1427
  msgstr "沒有找到要從 %s 清除的記錄 !"
1428
 
1429
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1430
  msgid "Database pruned on"
1431
  msgstr ""
1432
 
1433
+ #: includes/functions/purge.php:114
1434
  msgid "Please select a value over 30 days."
1435
  msgstr "請選擇一個值超過 30 天。"
1436
 
1456
  msgstr "按一下可切換"
1457
 
1458
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1459
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:376
1460
+ #: wp-statistics.php:452
1461
  msgid "Browsers"
1462
  msgstr "瀏覽器"
1463
 
1486
  msgid "Exclusions Statistics"
1487
  msgstr "排除統計"
1488
 
1489
+ #: includes/functions/functions.php:932
1490
  msgid "10 Days"
1491
  msgstr "10 天"
1492
 
1493
+ #: includes/functions/functions.php:932
1494
  msgid "20 Days"
1495
  msgstr "20 天"
1496
 
1497
+ #: includes/functions/functions.php:932
1498
  msgid "30 Days"
1499
  msgstr "30 天"
1500
 
1501
+ #: includes/functions/functions.php:932
1502
  msgid "2 Months"
1503
  msgstr "2 個月"
1504
 
1505
+ #: includes/functions/functions.php:932
1506
  msgid "3 Months"
1507
  msgstr "3 個月"
1508
 
1509
+ #: includes/functions/functions.php:932
1510
  msgid "6 Months"
1511
  msgstr "6 個月"
1512
 
1513
+ #: includes/functions/functions.php:932
1514
  msgid "9 Months"
1515
  msgstr "9 個月"
1516
 
1517
+ #: includes/functions/functions.php:932
1518
  msgid "1 Year"
1519
  msgstr "1 年"
1520
 
1592
 
1593
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1594
  #: includes/log/top-referring.php:65 includes/log/top-referring.php:68
1595
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:296
1596
  msgid "All"
1597
  msgstr "全部"
1598
 
1680
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1681
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1682
  #: includes/settings/tabs/wps-general.php:122
1683
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1684
  msgid "Visits"
1685
  msgstr "點擊"
1686
 
1773
  msgstr "時間: %s"
1774
 
1775
  #: includes/log/widgets/top.visitors.php:31
1776
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:301
1777
+ #: wp-statistics.php:379 wp-statistics.php:455
1778
  msgid "Hits"
1779
  msgstr "命中"
1780
 
1816
  msgid "No platform data found to remove!"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions/functions.php:1020
1820
  msgid "%s table data deleted successfully."
1821
  msgstr "%s 已成功刪除的表資料。"
1822
 
1823
+ #: includes/functions/functions.php:1024
1824
  msgid "Error, %s not emptied!"
1825
  msgstr "錯誤,%s 不為空 !"
1826
 
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-database.php:25
1848
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1849
+ #: wp-statistics.php:377 wp-statistics.php:453
1850
  msgid "Countries"
1851
  msgstr "國家"
1852
 
1877
  msgstr "恭喜,您的安裝是已經到目前為止,什麼都不做。"
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-export.php:8
1880
+ #: includes/optimization/wps-optimization.php:235
1881
  msgid "Export"
1882
  msgstr "出口"
1883
 
1886
  msgstr "從匯出"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-export.php:18
1889
+ #: includes/optimization/tabs/wps-optimization-export.php:37
1890
  #: includes/optimization/tabs/wps-optimization-purging.php:185
1891
  #: includes/optimization/tabs/wps-optimization-purging.php:241
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:265
1895
  msgid "Please select"
1896
  msgstr "請選擇"
1897
 
1898
+ #: includes/optimization/tabs/wps-optimization-export.php:26
1899
  msgid "Select the table for the output file."
1900
  msgstr "選擇用於輸出檔案的表。"
1901
 
1902
+ #: includes/optimization/tabs/wps-optimization-export.php:32
1903
  msgid "Export To"
1904
  msgstr "匯出到"
1905
 
1929
 
1930
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1931
  #: includes/settings/tabs/wps-general.php:138
1932
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1933
+ #: wp-statistics.php:386 wp-statistics.php:462
1934
  msgid "Visitors"
1935
  msgstr "訪客"
1936
 
2245
  msgid "Install routine complete."
2246
  msgstr "安裝例行完成。"
2247
 
2248
+ #: includes/optimization/wps-optimization.php:234
2249
  msgid "Resources/Information"
2250
  msgstr "資源/資訊"
2251
 
2252
+ #: includes/optimization/wps-optimization.php:236
2253
  msgid "Purging"
2254
  msgstr "清除"
2255
 
2256
+ #: includes/optimization/wps-optimization.php:237
2257
  msgid "Database"
2258
  msgstr "資料庫"
2259
 
2260
+ #: includes/optimization/wps-optimization.php:238
2261
  msgid "Updates"
2262
  msgstr "更新"
2263
 
2264
+ #: includes/optimization/wps-optimization.php:239
2265
  msgid "Historical"
2266
  msgstr ""
2267
 
2444
  msgstr "如果你需要一個更加健壯的解決方案,委派你可能想看看在 WordPress 外掛程式目錄中 %s 的存取權限。"
2445
 
2446
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2447
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:378
2448
+ #: wp-statistics.php:454
2449
  msgid "Exclusions"
2450
  msgstr "排除"
2451
 
2700
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2701
  msgstr "此功能不會將 IP 位址存儲在資料庫中,但相反用唯一的雜湊。\"Store 整個使用者代理 string\"設置將被禁用,如果選擇了此選項。你將不能恢復的 IP 位址在將來恢復位置的資訊,如果啟用此選項。"
2702
 
2703
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2704
  msgid "Users Online"
2705
  msgstr "使用者線上"
2706
 
manual/WP Statistics Admin Manual.html CHANGED
@@ -5,7 +5,7 @@
5
  <title></title>
6
  <meta name="generator" content="LibreOffice 5.0.0.5 (Windows)"/>
7
  <meta name="created" content="2014-06-03T18:16:55.146000000"/>
8
- <meta name="changed" content="2015-08-14T09:51:40.743000000"/>
9
  <style type="text/css">
10
  @page { margin: 2cm }
11
  p { margin-bottom: 0.25cm; line-height: 120% }
@@ -29,7 +29,7 @@
29
  <body lang="en-CA" dir="ltr">
30
  <div title="header">
31
  <p style="margin-bottom: 0.5cm; line-height: 100%; text-decoration: none">
32
- WP Statistics Administrators Manual Version 9.5</p>
33
  </div>
34
  <p style="margin-bottom: 0cm; line-height: 100%"><br/>
35
 
@@ -93,7 +93,7 @@ Manual</p>
93
 
94
  </p>
95
  <p align="center" style="margin-bottom: 0cm; line-height: 100%">Version
96
- 9.5</p>
97
  <h1 class="western" style="page-break-before: always"><a name="__RefHeading__105_1031655526"></a>
98
  </h1>
99
  <div id="Table of Contents1" dir="ltr">
@@ -260,8 +260,8 @@ Features</h1>
260
  <p style="line-height: 100%">Automatically prune the databases
261
  of old data</p>
262
  <li/>
263
- <p style="line-height: 100%">Export the data to Excel, XML,
264
- CSV or TSV files</p>
265
  <li/>
266
  <p style="line-height: 100%">Overview and detail pages for all
267
  kinds of data, including; browser versions, country stats, hits,
@@ -600,6 +600,30 @@ to replace it or disable it.<br/>
600
  <br/>
601
  <br/>
602
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
603
  </p>
604
  <h1 class="western" style="page-break-before: always"><a name="__RefHeading__2783_1716611363"></a>
605
  Support</h1>
@@ -3184,19 +3208,13 @@ the data or need to migrate to another statistics plug-in.</p>
3184
  <p>Export To:</p>
3185
  </td>
3186
  <td width="105" style="border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm">
3187
- <p>Excel, XML, CSV, TSV</p>
3188
  </td>
3189
  <td width="428" style="border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: 1px solid #000000; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0.1cm">
3190
  <p>The format to export to.
3191
  </p>
3192
  <p><br/>
3193
 
3194
- </p>
3195
- <p>Excel will export an XML formatted XLS file (you may see a
3196
- warning from Excel about the file not being in the correct format,
3197
- you can ignore it).</p>
3198
- <p><br/>
3199
-
3200
  </p>
3201
  <p>XML will export an XML formatted file.</p>
3202
  <p><br/>
@@ -4024,8 +4042,8 @@ Shortcodes</h1>
4024
  in either a post and page body as well as an HTML widget.
4025
  </p>
4026
  <p>The general shortcode format is:</p>
4027
- <p> [wpstatistics stat=xxx time=xxxx provider=xxxx
4028
- format=xxxxxx]<br/>
4029
  <br/>
4030
  Where:</p>
4031
  <table width="100%" cellpadding="5" cellspacing="0">
@@ -4086,7 +4104,7 @@ Where:</p>
4086
  </td>
4087
  <td width="68%" style="border-top: none; border-bottom: 1px solid #000000; border-left: none; border-right: 1px solid #000000; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0cm; padding-right: 0.1cm">
4088
  <p>The search provider to get stats on
4089
- (bing/duckduckgo/google/yahoo/yandex).</p>
4090
  </td>
4091
  </tr>
4092
  <tr valign="top">
@@ -4100,8 +4118,22 @@ Where:</p>
4100
  without any formating)</p>
4101
  </td>
4102
  </tr>
 
 
 
 
 
 
 
 
 
4103
  </table>
4104
- <p>The &ldquo;stat&rdquo; field can be any of the following:</p>
 
 
 
 
 
4105
  <table width="100%" cellpadding="5" cellspacing="0">
4106
  <col width="82*">
4107
  <col width="174*">
5
  <title></title>
6
  <meta name="generator" content="LibreOffice 5.0.0.5 (Windows)"/>
7
  <meta name="created" content="2014-06-03T18:16:55.146000000"/>
8
+ <meta name="changed" content="2015-08-28T08:53:11.400000000"/>
9
  <style type="text/css">
10
  @page { margin: 2cm }
11
  p { margin-bottom: 0.25cm; line-height: 120% }
29
  <body lang="en-CA" dir="ltr">
30
  <div title="header">
31
  <p style="margin-bottom: 0.5cm; line-height: 100%; text-decoration: none">
32
+ WP Statistics Administrators Manual Version 9.6</p>
33
  </div>
34
  <p style="margin-bottom: 0cm; line-height: 100%"><br/>
35
 
93
 
94
  </p>
95
  <p align="center" style="margin-bottom: 0cm; line-height: 100%">Version
96
+ 9.6</p>
97
  <h1 class="western" style="page-break-before: always"><a name="__RefHeading__105_1031655526"></a>
98
  </h1>
99
  <div id="Table of Contents1" dir="ltr">
260
  <p style="line-height: 100%">Automatically prune the databases
261
  of old data</p>
262
  <li/>
263
+ <p style="line-height: 100%">Export the data to XML, CSV or
264
+ TSV files</p>
265
  <li/>
266
  <p style="line-height: 100%">Overview and detail pages for all
267
  kinds of data, including; browser versions, country stats, hits,
600
  <br/>
601
  <br/>
602
 
603
+ </p>
604
+ <h2 class="western">I've installed WP Statistics for the first time
605
+ on a site and when I go to the statistics pages I get an error saying
606
+ like &quot;The following plugin table(s) do not exist in the
607
+ database&quot;</h2>
608
+ <p><br/>
609
+ This is because something has gone wrong during the
610
+ installation. <br/>
611
+ <br/>
612
+ At the end of the message will be a list
613
+ of tables that are missing, you can use the provided link to re-run
614
+ the installation routine. If that does not resolve the issue and the
615
+ visitors table is the only table listed, you may want to check your
616
+ MySQL version. Some older versions of MySQL (in the 5.0.x series)
617
+ have issues with complex compound indexes, which we use on the
618
+ visitors table. If this is the case, check with your hosting
619
+ provider and see if they can upgrade to a newer version of MySQL.<br/>
620
+ <br/>
621
+ If
622
+ you still have issues open a new thread on the support forum and
623
+ we'll try and resolve it for you.<br/>
624
+ <br/>
625
+ <br/>
626
+
627
  </p>
628
  <h1 class="western" style="page-break-before: always"><a name="__RefHeading__2783_1716611363"></a>
629
  Support</h1>
3208
  <p>Export To:</p>
3209
  </td>
3210
  <td width="105" style="border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm">
3211
+ <p>XML, CSV, TSV</p>
3212
  </td>
3213
  <td width="428" style="border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: 1px solid #000000; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0.1cm">
3214
  <p>The format to export to.
3215
  </p>
3216
  <p><br/>
3217
 
 
 
 
 
 
 
3218
  </p>
3219
  <p>XML will export an XML formatted file.</p>
3220
  <p><br/>
4042
  in either a post and page body as well as an HTML widget.
4043
  </p>
4044
  <p>The general shortcode format is:</p>
4045
+ <p> [wpstatistics stat=xxx time=xxxx provider=xxxx format=xxxxxx
4046
+ id=xxx]<br/>
4047
  <br/>
4048
  Where:</p>
4049
  <table width="100%" cellpadding="5" cellspacing="0">
4104
  </td>
4105
  <td width="68%" style="border-top: none; border-bottom: 1px solid #000000; border-left: none; border-right: 1px solid #000000; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0cm; padding-right: 0.1cm">
4106
  <p>The search provider to get stats on
4107
+ (ask/bing/clearch/duckduckgo/google/yahoo/yandex).</p>
4108
  </td>
4109
  </tr>
4110
  <tr valign="top">
4118
  without any formating)</p>
4119
  </td>
4120
  </tr>
4121
+ <tr valign="top">
4122
+ <td width="32%" style="border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm">
4123
+ <p>Id</p>
4124
+ </td>
4125
+ <td width="68%" style="border-top: none; border-bottom: 1px solid #000000; border-left: none; border-right: 1px solid #000000; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0cm; padding-right: 0.1cm">
4126
+ <p>The page/post ID to get statistics on. Only used on
4127
+ pagevisits.</p>
4128
+ </td>
4129
+ </tr>
4130
  </table>
4131
+ <p><br/>
4132
+ <br/>
4133
+
4134
+ </p>
4135
+ <p style="page-break-before: always">The &ldquo;stat&rdquo; field can
4136
+ be any of the following:</p>
4137
  <table width="100%" cellpadding="5" cellspacing="0">
4138
  <col width="82*">
4139
  <col width="174*">
manual/WP Statistics Admin Manual.odt CHANGED
Binary file
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wp-statistics.com/donate/
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 4.3
7
- Stable tag: 9.5.3
8
  License: GPL3
9
 
10
  Complete statistics for your WordPress site.
@@ -31,12 +31,17 @@ This product includes GeoLite2 data created by MaxMind, available from http://ww
31
  * Record statistics on exclusions
32
  * Automatic updates to the GeoIP database
33
  * Automatically prune the databases of old data
34
- * Export the data to Excel, XML, CSV or TSV files
35
  * Widget to provide information to your users
36
  * Shortcodes for many different types of data in both widgets and posts/pages
37
  * Dashboard widgets for the admin area
38
  * Comprehensive Admin Manual
39
 
 
 
 
 
 
40
  = Support =
41
  We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:
42
 
@@ -61,31 +66,6 @@ Still not having any luck? Open a new thread on one of the support forums and we
61
  * [English Support Forum](http://wordpress.org/support/plugin/wp-statistics)
62
  * [Persian Support Forum](http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/)
63
 
64
- = Translations =
65
- * English
66
- * Persian
67
- * Portuguese [Thanks](http://www.musicalmente.info/)
68
- * Romanian [Thanks Luke Tyler](http://www.nobelcom.com/)
69
- * French Thanks Anice Gnampa. Additional translations by Nicolas Baudet, eldidi and apeedn
70
- * Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
71
- * Spanish Thanks Jose
72
- * Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
73
- * Turkish [Thanks aidinMC](http://www.artadl.ir/) & [Manset27.com](http://www.manset27.com/) & [Abdullah Manaz](http://www.manaz.net/)
74
- * Italian [Thanks Tony Bellardi](http://www.tonybellardi.com/) & Andrea Beducci
75
- * German [Thanks Andreas Martin](http://www.andreasmartin.com/) and Mike
76
- * Russian [Thanks Oleg](http://www.bestplugins.ru/)
77
- * Bengali [Thanks Mehdi Akram](http://www.shamokaldarpon.com/)
78
- * Serbian [Thanks Radovan Georgijevic](http://www.georgijevic.info/) & [Thanks Ogi Djuraskovic](http://firstsiteguide.com/)
79
- * Polish Thanks Radosław Rak and Tomasz Stulka.
80
- * Indonesian [Thanks Agit Amrullah](http://www.facebook.com/agitowblinkerz/)
81
- * Hungarian [Thanks ZSIMI](http://www.zsimi.hu/)
82
- * Chinese (Taiwan) [Thanks Toine Cheung](https://twitter.com/ToineCheung)
83
- * Chinese (China) [Thanks Toine Cheung](https://twitter.com/ToineCheung)
84
- * Ukrainian [Ivanka Skakun](http://www.everycloudtech.com/)
85
- * Dutch thanks Friso van Wieringen.
86
-
87
- Translations are done by people just like you, help make WP Statistics available to more people around the world and [do a translation](http://wp-statistics.com/translations/) today!
88
-
89
  == Installation ==
90
  1. Upload `wp-statistics` to the `/wp-content/plugins/` directory.
91
  2. Activate the plugin through the 'Plugins' menu in WordPress.
@@ -255,6 +235,9 @@ If you still have issues open a new thread on the support forum and we'll try an
255
  10. View latest search engine referrers Statistics page.
256
 
257
  == Upgrade Notice ==
 
 
 
258
  = 9.5.3 =
259
  BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. This release creates a new table for search engine/words for performance improvements, however you must convert your data to the new format via the Statistics->Optimization->Database tab.
260
 
@@ -299,6 +282,21 @@ BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure
299
  This release updates some core code to do with timezones, hence the change to version 9.0, if you see any issues with timezones, please let us know. In addition, you may see an increase in your visits count as a race condition that dropped some visits has been resolved.
300
 
301
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  = 9.5.3 =
303
  * Release Date: August 19, 2015
304
  * Added: More robust error reporting if a plugin table is missing.
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 4.3
7
+ Stable tag: 9.6
8
  License: GPL3
9
 
10
  Complete statistics for your WordPress site.
31
  * Record statistics on exclusions
32
  * Automatic updates to the GeoIP database
33
  * Automatically prune the databases of old data
34
+ * Export the data to XML, CSV or TSV files
35
  * Widget to provide information to your users
36
  * Shortcodes for many different types of data in both widgets and posts/pages
37
  * Dashboard widgets for the admin area
38
  * Comprehensive Admin Manual
39
 
40
+ = Translations =
41
+ WP Statistics has been translated in to many languages, for the current list and contributors, please visit the [translators](https://wp-statistics.com/translators/) page on [wp-statistics.com](https://wp-statistics.com/).
42
+
43
+ Translations are done by people just like you, help make WP Statistics available to more people around the world and [do a translation](http://wp-statistics.com/translations/) today!
44
+
45
  = Support =
46
  We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:
47
 
66
  * [English Support Forum](http://wordpress.org/support/plugin/wp-statistics)
67
  * [Persian Support Forum](http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/)
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  == Installation ==
70
  1. Upload `wp-statistics` to the `/wp-content/plugins/` directory.
71
  2. Activate the plugin through the 'Plugins' menu in WordPress.
235
  10. View latest search engine referrers Statistics page.
236
 
237
  == Upgrade Notice ==
238
+ = 9.6 =
239
+ Have you updated your database indexes and search table? If not please go to Statistics->Optimization->Database after you have installed the update and run the updates.
240
+
241
  = 9.5.3 =
242
  BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. This release creates a new table for search engine/words for performance improvements, however you must convert your data to the new format via the Statistics->Optimization->Database tab.
243
 
282
  This release updates some core code to do with timezones, hence the change to version 9.0, if you see any issues with timezones, please let us know. In addition, you may see an increase in your visits count as a race condition that dropped some visits has been resolved.
283
 
284
  == Changelog ==
285
+ = 9.6 =
286
+ * Release Date: September 3, 2015
287
+ * Added: New admin notices for if the database requires updates.
288
+ * Added: Page/post id field to pagestats shortcode.
289
+ * Added: Ask.com to search engine list, disabled by default.
290
+ * Fixed: Display of the dashboard referrers widget.
291
+ * Fixed: incorrect table name when dropping the old 'AString' field.
292
+ * Fixed: Error message if the global $wp_roles hadn't been set when we accessed it.
293
+ * Fixed: When exporting, no data was exported.
294
+ * Fixed: When excluding countries, multiple entries would not be parsed correctly.
295
+ * Updated: Purging code now includes the search table.
296
+ * Updated: Search conversion code to limit the number of records retreived to 10000 and then loop through them to ensure we don't run out of memory during the conversion process.
297
+ * Updated: Cleaned up the admin notices code.
298
+ * Updated: Persian translation. Thanks Ali Zeinali.
299
+
300
  = 9.5.3 =
301
  * Release Date: August 19, 2015
302
  * Added: More robust error reporting if a plugin table is missing.
shortcode.php CHANGED
@@ -6,13 +6,14 @@
6
  /*
7
  WP Statitics shortcode is in the format of:
8
 
9
- [wpstatistics stat=xxx time=xxxx provider=xxxx format=xxxxxx]
10
 
11
  Where:
12
  stat = the statistic you want.
13
  time = is the timeframe, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it.
14
  provider = the search provider to get stats on.
15
- format = i18n, english, none
 
16
  */
17
 
18
  if( ! is_array( $atts ) ) { return; }
@@ -21,6 +22,7 @@
21
  if( !array_key_exists( 'time', $atts ) ) { $atts['time'] = null; }
22
  if( !array_key_exists( 'provider', $atts ) ) { $atts['provider'] = null; }
23
  if( !array_key_exists( 'format', $atts ) ) { $atts['format'] = null; }
 
24
 
25
  $formatnumber = array_key_exists( 'format', $atts );
26
 
@@ -38,7 +40,7 @@
38
  break;
39
 
40
  case 'pagevisits':
41
- $result = wp_statistics_pages($atts['time']);
42
  break;
43
 
44
  case 'searches':
@@ -153,7 +155,7 @@
153
  'label' => __('Time Frame', 'wp_statistics'),
154
  'attr' => 'time',
155
  'type' => 'url',
156
- 'description' => __('The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it.', 'wp_statistics'),
157
  'meta' => array('size'=>'10'),
158
  ),
159
  array(
@@ -175,6 +177,13 @@
175
  'i18n' => __('International', 'wp_statistics'),
176
  ),
177
  ),
 
 
 
 
 
 
 
178
  ),
179
  )
180
  );
6
  /*
7
  WP Statitics shortcode is in the format of:
8
 
9
+ [wpstatistics stat=xxx time=xxxx provider=xxxx format=xxxxxx id=xxx]
10
 
11
  Where:
12
  stat = the statistic you want.
13
  time = is the timeframe, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it.
14
  provider = the search provider to get stats on.
15
+ format = i18n, english, none.
16
+ id = the page/post id to get stats on.
17
  */
18
 
19
  if( ! is_array( $atts ) ) { return; }
22
  if( !array_key_exists( 'time', $atts ) ) { $atts['time'] = null; }
23
  if( !array_key_exists( 'provider', $atts ) ) { $atts['provider'] = null; }
24
  if( !array_key_exists( 'format', $atts ) ) { $atts['format'] = null; }
25
+ if( !array_key_exists( 'id', $atts ) ) { $atts['id'] = null; }
26
 
27
  $formatnumber = array_key_exists( 'format', $atts );
28
 
40
  break;
41
 
42
  case 'pagevisits':
43
+ $result = wp_statistics_pages($atts['time'], null, $atts['id']);
44
  break;
45
 
46
  case 'searches':
155
  'label' => __('Time Frame', 'wp_statistics'),
156
  'attr' => 'time',
157
  'type' => 'url',
158
+ 'description' => __('The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use "total" to get all recorded dates.', 'wp_statistics'),
159
  'meta' => array('size'=>'10'),
160
  ),
161
  array(
177
  'i18n' => __('International', 'wp_statistics'),
178
  ),
179
  ),
180
+ array(
181
+ 'label' => __('Post/Page ID', 'wp_statistics'),
182
+ 'attr' => 'id',
183
+ 'type' => 'number',
184
+ 'description' => __('The post/page id to get page statistics on.', 'wp_statistics'),
185
+ 'meta' => array('size'=>'5'),
186
+ ),
187
  ),
188
  )
189
  );
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Statistics
4
  Plugin URI: http://wp-statistics.com/
5
  Description: Complete statistics for your WordPress site.
6
- Version: 9.5.3
7
  Author: Mostafa Soufi & Greg Ross
8
  Author URI: http://wp-statistics.com/
9
  Text Domain: wp_statistics
@@ -12,7 +12,7 @@ License: GPL2
12
  */
13
 
14
  // These defines are used later for various reasons.
15
- define('WP_STATISTICS_VERSION', '9.5.3');
16
  define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
17
  define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
18
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
@@ -128,31 +128,55 @@ License: GPL2
128
  // This function outputs error messages in the admin interface if the primary components of WP Statistics are enabled.
129
  function wp_statistics_not_enable() {
130
  GLOBAL $WP_Statistics;
131
-
132
  // If the user had told us to be quite, do so.
133
  if( !$WP_Statistics->get_option('hide_notices') ) {
 
 
 
 
 
134
  $get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/settings";
135
 
136
- if( !$WP_Statistics->get_option('useronline') )
137
- echo '<div class="update-nag"><p>'.sprintf(__('Online user tracking in WP Statistics is not enabled, please go to %s and enable it.', 'wp_statistics'), '<a href="' . $get_bloginfo_url . '">' . __( 'setting page', 'wp_statistics') . '</a>').'</p></div>';
 
 
 
 
 
 
 
 
 
 
 
 
138
 
139
- if( !$WP_Statistics->get_option('visits') )
140
- echo '<div class="update-nag"><p>'.sprintf(__('Hit tracking in WP Statistics is not enabled, please go to %s and enable it.', 'wp_statistics'), '<a href="' . $get_bloginfo_url . '">' . __( 'setting page', 'wp_statistics') . '</a>').'</p></div>';
141
 
142
- if( !$WP_Statistics->get_option('visitors') )
143
- echo '<div class="update-nag"><p>'.sprintf(__('Visitor tracking in WP Statistics is not enabled, please go to %s and enable it.', 'wp_statistics'), '<a href="' . $get_bloginfo_url . '">' . __( 'setting page', 'wp_statistics') . '</a>').'</p></div>';
 
144
 
145
- if(!$WP_Statistics->get_option('geoip') && wp_statistics_geoip_supported())
146
- echo '<div class="update-nag"><p>'.sprintf(__('GeoIP collection is not active, please go to %s and enable this feature.', 'wp_statistics'), '<a href="' . $get_bloginfo_url . '&tab=externals">' . __( 'setting page', 'wp_statistics') . '</a>').'</p></div>';
 
 
 
 
 
 
 
 
147
  }
148
  }
149
 
150
  // Display the admin notices if we should.
151
- if( !$WP_Statistics->get_option('useronline') || !$WP_Statistics->get_option('visits') || !$WP_Statistics->get_option('visitors') || !$WP_Statistics->get_option('geoip') ) {
152
- if( isset( $pagenow ) && array_key_exists( 'page', $_GET ) ) {
153
- if( $pagenow == "admin.php" && substr( $_GET['page'], 0, 14) == 'wp-statistics/') {
154
- add_action('admin_notices', 'wp_statistics_not_enable');
155
- }
156
  }
157
  }
158
 
@@ -322,6 +346,8 @@ License: GPL2
322
 
323
  $role_list = $wp_roles->get_names();
324
 
 
 
325
  foreach( $wp_roles->roles as $role ) {
326
 
327
  $cap_list = $role['capabilities'];
3
  Plugin Name: WP Statistics
4
  Plugin URI: http://wp-statistics.com/
5
  Description: Complete statistics for your WordPress site.
6
+ Version: 9.6
7
  Author: Mostafa Soufi & Greg Ross
8
  Author URI: http://wp-statistics.com/
9
  Text Domain: wp_statistics
12
  */
13
 
14
  // These defines are used later for various reasons.
15
+ define('WP_STATISTICS_VERSION', '9.6');
16
  define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
17
  define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
18
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
128
  // This function outputs error messages in the admin interface if the primary components of WP Statistics are enabled.
129
  function wp_statistics_not_enable() {
130
  GLOBAL $WP_Statistics;
131
+
132
  // If the user had told us to be quite, do so.
133
  if( !$WP_Statistics->get_option('hide_notices') ) {
134
+
135
+ // Check to make sure the current user can manage WP Statistics, if not there's no point displaying the warnings.
136
+ $manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
137
+ if( ! current_user_can( $manage_cap ) ) { return; }
138
+
139
  $get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/settings";
140
 
141
+ $itemstoenable = array();
142
+ if( !$WP_Statistics->get_option('useronline') ) { $itemstoenable[] = __('online user tracking', 'wp_statistics'); }
143
+ if( !$WP_Statistics->get_option('visits') ) { $itemstoenable[] = __('hit tracking', 'wp_statistics'); }
144
+ if( !$WP_Statistics->get_option('visitors') ) { $itemstoenable[] = __('visitor tracking', 'wp_statistics'); }
145
+ if( !$WP_Statistics->get_option('geoip') && wp_statistics_geoip_supported()) { $itemstoenable[] = __('geoip collection', 'wp_statistics'); }
146
+
147
+ if( count( $itemstoenable ) > 0 )
148
+ echo '<div class="update-nag">'.sprintf(__('The following features are disabled, please go to %s and enable them: %s', 'wp_statistics'), '<a href="' . $get_bloginfo_url . '">' . __( 'settings page', 'wp_statistics') . '</a>', implode(__(',', 'wp_statistics'), $itemstoenable)).'</div>';
149
+
150
+ $get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/optimization";
151
+
152
+ $dbupdatestodo = array();
153
+
154
+ if(!$WP_Statistics->get_option('search_converted')) { $dbupdatestodo[] = __('search table', 'wp_statistics'); }
155
 
156
+ // Check to see if there are any database changes the user hasn't done yet.
157
+ $dbupdates = $WP_Statistics->get_option('pending_db_updates', false);
158
 
159
+ // The database updates are stored in an array so loop thorugh it and output some notices.
160
+ if( is_array( $dbupdates ) ) {
161
+ $dbstrings = array( 'date_ip_agent' => __('countries database index', 'wp_statistics'), 'unique_date' => __('visit database index', 'wp_statistics') );
162
 
163
+ foreach( $dbupdates as $key => $update ) {
164
+ if( $update == true ) {
165
+ $dbupdatestodo[] = $dbstrings[$key];
166
+ }
167
+ }
168
+
169
+ if( count( $dbupdatestodo ) > 0 )
170
+ echo '<div class="update-nag">'.sprintf(__('Database updates are required, please go to %s and update the following: %s', 'wp_statistics'), '<a href="' . $get_bloginfo_url . '">' . __( 'settings page', 'wp_statistics') . '</a>', implode(__(',', 'wp_statistics'), $dbupdatestodo)).'</div>';
171
+
172
+ }
173
  }
174
  }
175
 
176
  // Display the admin notices if we should.
177
+ if( isset( $pagenow ) && array_key_exists( 'page', $_GET ) ) {
178
+ if( $pagenow == "admin.php" && substr( $_GET['page'], 0, 14) == 'wp-statistics/') {
179
+ add_action('admin_notices', 'wp_statistics_not_enable');
 
 
180
  }
181
  }
182
 
346
 
347
  $role_list = $wp_roles->get_names();
348
 
349
+ if( !is_array( $wp_roles ) || !is_array( $wp_roles->roles) ) { return 'manage_options'; }
350
+
351
  foreach( $wp_roles->roles as $role ) {
352
 
353
  $cap_list = $role['capabilities'];
wps-install.php CHANGED
@@ -157,13 +157,34 @@
157
  $result = $wpdb->query( "SHOW COLUMNS FROM {$wp_prefix}statistics_visitor LIKE 'AString'" );
158
 
159
  if( $result > 0 ) {
160
- $wpdb->query( "ALTER TABLE `{$wp_prefix}statistics_historical` DROP `AString`" );
161
  }
162
 
163
  // Store the new version information.
164
  update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
165
  update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  // Get the robots list, we'll use this for both upgrades and new installs.
168
  include_once('robotslist.php');
169
 
@@ -271,6 +292,7 @@
271
  if( $WP_Statistics->get_option('robotlist') === FALSE ) { $WP_Statistics->store_option('robotlist',$wps_robotslist); }
272
  if( $WP_Statistics->get_option('exclude_administrator') === FALSE ) { $WP_Statistics->store_option('exclude_administrator',TRUE); }
273
  if( $WP_Statistics->get_option('disable_se_clearch') === FALSE ) { $WP_Statistics->store_option('disable_se_clearch',TRUE); }
 
274
  if( $WP_Statistics->get_option('map_type') === FALSE ) { $WP_Statistics->store_option('map_type','jqvmap'); }
275
 
276
  if( $WPS_Installed == false ) {
157
  $result = $wpdb->query( "SHOW COLUMNS FROM {$wp_prefix}statistics_visitor LIKE 'AString'" );
158
 
159
  if( $result > 0 ) {
160
+ $wpdb->query( "ALTER TABLE `{$wp_prefix}statistics_visitor` DROP `AString`" );
161
  }
162
 
163
  // Store the new version information.
164
  update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
165
  update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
166
 
167
+ // Now check to see what database updates may be required and record them for a user notice later.
168
+ $dbupdates = array();
169
+
170
+ // Check the number of index's on the visitors table, if it's only 5 we need to check for duplicate entries and remove them
171
+ $result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = 'date_ip_agent'");
172
+
173
+ // Note, the result will be the number of fields contained in the index, so in our case 5.
174
+ if( $result != 5 ) {
175
+ $dbupdates['date_ip_agent'] = true;
176
+ }
177
+
178
+ // Check the number of index's on the visits table, if it's only 5 we need to check for duplicate entries and remove them
179
+ $result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visit WHERE Key_name = 'unique_date'");
180
+
181
+ // Note, the result will be the number of fields contained in the index, so in our case 1.
182
+ if( $result != 1 ) {
183
+ $dbupdates['unique_date'] = true;
184
+ }
185
+
186
+ $WP_Statistics->update_option( 'pending_db_updates', $dbupdates );
187
+
188
  // Get the robots list, we'll use this for both upgrades and new installs.
189
  include_once('robotslist.php');
190
 
292
  if( $WP_Statistics->get_option('robotlist') === FALSE ) { $WP_Statistics->store_option('robotlist',$wps_robotslist); }
293
  if( $WP_Statistics->get_option('exclude_administrator') === FALSE ) { $WP_Statistics->store_option('exclude_administrator',TRUE); }
294
  if( $WP_Statistics->get_option('disable_se_clearch') === FALSE ) { $WP_Statistics->store_option('disable_se_clearch',TRUE); }
295
+ if( $WP_Statistics->get_option('disable_se_ask') === FALSE ) { $WP_Statistics->store_option('disable_se_ask',TRUE); }
296
  if( $WP_Statistics->get_option('map_type') === FALSE ) { $WP_Statistics->store_option('map_type','jqvmap'); }
297
 
298
  if( $WPS_Installed == false ) {