WP Statistics - Version 10.1

Version Description

This is primarily a maintenance release with updates to various libraries and bug fixes.

=

Download this release

Release Info

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

Code changes from version 10.0.5 to 10.1

dashboard.php CHANGED
@@ -55,7 +55,7 @@
55
  if (!$WP_Statistics->get_option('disable_dashboard')) {
56
  wp_add_dashboard_widget( 'wp-statistics-quickstats-widget', __('Quick Stats', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'quickstats' ) );
57
  if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-browsers-widget', __('Top 10 Browsers', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'browsers' ) ); }
58
- if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-countries-widget', __('Top 10 Countries', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'countries' ) ); }
59
  if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-hitsmap-widget', __('Today\'s Visitor Map', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'hitsmap' ) ); }
60
  if( $WP_Statistics->get_option('visits') ) { wp_add_dashboard_widget( 'wp-statistics-hits-widget', __('Hit Statistics', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'hits' ) ); }
61
  if( $WP_Statistics->get_option('pages') ) { wp_add_dashboard_widget( 'wp-statistics-pages-widget', __('Top 10 Pages', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'pages' ) ); }
55
  if (!$WP_Statistics->get_option('disable_dashboard')) {
56
  wp_add_dashboard_widget( 'wp-statistics-quickstats-widget', __('Quick Stats', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'quickstats' ) );
57
  if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-browsers-widget', __('Top 10 Browsers', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'browsers' ) ); }
58
+ if( $WP_Statistics->get_option('geoip') && $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-countries-widget', __('Top 10 Countries', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'countries' ) ); }
59
  if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-hitsmap-widget', __('Today\'s Visitor Map', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'hitsmap' ) ); }
60
  if( $WP_Statistics->get_option('visits') ) { wp_add_dashboard_widget( 'wp-statistics-hits-widget', __('Hit Statistics', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'hits' ) ); }
61
  if( $WP_Statistics->get_option('pages') ) { wp_add_dashboard_widget( 'wp-statistics-pages-widget', __('Top 10 Pages', 'wp_statistics'), 'wp_statistics_generate_dashboard_postbox_contents', $control_callback = null, array( 'widget' => 'pages' ) ); }
includes/classes/hits.class.php CHANGED
@@ -475,7 +475,12 @@
475
  if( !$this->current_page_id && is_object( $wp_query ) ) {
476
  $this->current_page_id = $wp_query->get_queried_object_id();
477
  }
478
-
 
 
 
 
 
479
  // Get the current page URI.
480
  $page_uri = wp_statistics_get_uri();
481
 
475
  if( !$this->current_page_id && is_object( $wp_query ) ) {
476
  $this->current_page_id = $wp_query->get_queried_object_id();
477
  }
478
+
479
+ // If we didn't find a page id, we don't have anything else to do.
480
+ if( ! $this->current_page_id ) {
481
+ return;
482
+ }
483
+
484
  // Get the current page URI.
485
  $page_uri = wp_statistics_get_uri();
486
 
includes/functions/functions.php CHANGED
@@ -146,7 +146,7 @@
146
  }
147
 
148
  // This function returns the statistics for a given page.
149
- function wp_statistics_pages($time, $page_uri = '', $id = -1) {
150
 
151
  // We need database and the global $WP_Statistics object access.
152
  global $wpdb, $WP_Statistics;
@@ -198,7 +198,10 @@
198
  $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE {$page_sql}";
199
  $history = $WP_Statistics->Get_Historical_Data( $history_key, $history_id );
200
  break;
201
-
 
 
 
202
  default:
203
  $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$page_sql}";
204
  break;
@@ -237,11 +240,15 @@
237
  }
238
 
239
  // This function returns a multi-dimensional array, with the total number of pages and an array or URI's sorted in order with their URI, count, id and title.
240
- function wp_statistics_get_top_pages() {
241
  global $wpdb;
242
 
243
  // Get every unique URI from the pages database.
244
- $result = $wpdb->get_results( "SELECT DISTINCT uri FROM {$wpdb->prefix}statistics_pages", ARRAY_N );
 
 
 
 
245
 
246
  $total = 0;
247
  $uris = array();
@@ -270,7 +277,11 @@
270
  }
271
 
272
  // Add the current post to the array.
273
- $uris[] = array( $out[0], wp_statistics_pages( 'total', $out[0] ), $id, $title );
 
 
 
 
274
  }
275
 
276
  // If we have more than one result, let's sort them using usort.
146
  }
147
 
148
  // This function returns the statistics for a given page.
149
+ function wp_statistics_pages($time, $page_uri = '', $id = -1, $rangestartdate = null, $rangeenddate = null ) {
150
 
151
  // We need database and the global $WP_Statistics object access.
152
  global $wpdb, $WP_Statistics;
198
  $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE {$page_sql}";
199
  $history = $WP_Statistics->Get_Historical_Data( $history_key, $history_id );
200
  break;
201
+ case 'range':
202
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` BETWEEN '" . $WP_Statistics->Current_Date('Y-m-d', '-0', strtotime( $rangestartdate )) . "' AND '" . $WP_Statistics->Current_Date('Y-m-d', '-0', strtotime( $rangeenddate) ) . "' AND {$page_sql}";
203
+
204
+ break;
205
  default:
206
  $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$page_sql}";
207
  break;
240
  }
241
 
242
  // This function returns a multi-dimensional array, with the total number of pages and an array or URI's sorted in order with their URI, count, id and title.
243
+ function wp_statistics_get_top_pages( $rangestartdate = null, $rangeenddate = null ) {
244
  global $wpdb;
245
 
246
  // Get every unique URI from the pages database.
247
+ if( $rangestartdate != null && $rangeenddate != null ) {
248
+ $result = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT uri FROM {$wpdb->prefix}statistics_pages WHERE `date` BETWEEN %s AND %s", $rangestartdate, $rangeenddate ), ARRAY_N);
249
+ } else {
250
+ $result = $wpdb->get_results( "SELECT DISTINCT uri FROM {$wpdb->prefix}statistics_pages", ARRAY_N );
251
+ }
252
 
253
  $total = 0;
254
  $uris = array();
277
  }
278
 
279
  // Add the current post to the array.
280
+ if( $rangestartdate != null && $rangeenddate != null ) {
281
+ $uris[] = array( $out[0], wp_statistics_pages( 'range', $out[0], -1, $rangestartdate, $rangeenddate ), $id, $title );
282
+ } else {
283
+ $uris[] = array( $out[0], wp_statistics_pages( 'total', $out[0] ), $id, $title );
284
+ }
285
  }
286
 
287
  // If we have more than one result, let's sort them using usort.
includes/functions/manual.php CHANGED
@@ -28,12 +28,10 @@
28
  closedir( $dir );
29
 
30
  if( $filename != '' ) {
31
- $filename = substr( $filename, 0, -strlen( $ext ) );
32
- $filename .= ' V' . WP_STATISTICS_VERSION . $ext;
33
  header('Content-Type: application/octet-stream;');
34
  header('Content-Disposition: attachment; filename="' . $filename . '"');
35
 
36
- readfile( $filepath . $filename );
37
  }
38
  }
39
  }
28
  closedir( $dir );
29
 
30
  if( $filename != '' ) {
 
 
31
  header('Content-Type: application/octet-stream;');
32
  header('Content-Disposition: attachment; filename="' . $filename . '"');
33
 
34
+ readfile( $filepath . '/' . $filename );
35
  }
36
  }
37
  }
includes/functions/purge.php CHANGED
@@ -68,7 +68,7 @@
68
  $historical = 0;
69
 
70
  // The first thing we need to do is update the historical data by finding all the unique pages.
71
- $result = $wpdb->get_results( $wpdb->preapare( "SELECT DISTINCT uri FROM {$table_name} WHERE `date` < %s", $date_string ) );
72
 
73
  // If we have a result, let's store the historical data.
74
  if( $result ) {
68
  $historical = 0;
69
 
70
  // The first thing we need to do is update the historical data by finding all the unique pages.
71
+ $result = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT uri FROM {$table_name} WHERE `date` < %s", $date_string ) );
72
 
73
  // If we have a result, let's store the historical data.
74
  if( $result ) {
includes/log/top-pages.php CHANGED
@@ -4,8 +4,6 @@
4
  });
5
  </script>
6
  <?php
7
- list( $total, $uris ) = wp_statistics_get_top_pages();
8
-
9
  $daysToDisplay = 20;
10
  if( array_key_exists('hitdays',$_GET) ) { $daysToDisplay = intval($_GET['hitdays']); }
11
 
@@ -13,6 +11,9 @@
13
  if( array_key_exists('rangeend', $_GET ) ) { $rangeend = $_GET['rangeend']; } else { $rangeend = ''; }
14
 
15
  list( $daysToDisplay, $rangestart_utime, $rangeend_utime ) = wp_statistics_date_range_calculator( $daysToDisplay, $rangestart, $rangeend );
 
 
 
16
  ?>
17
  <div class="wrap">
18
  <?php screen_icon('options-general'); ?>
@@ -50,6 +51,12 @@
50
  echo "];\n";
51
  if( $count > 4 ) { break; }
52
  }
 
 
 
 
 
 
53
 
54
  $tickInterval = $daysToDisplay / 20;
55
  if( $tickInterval < 1 ) { $tickInterval = 1; }
4
  });
5
  </script>
6
  <?php
 
 
7
  $daysToDisplay = 20;
8
  if( array_key_exists('hitdays',$_GET) ) { $daysToDisplay = intval($_GET['hitdays']); }
9
 
11
  if( array_key_exists('rangeend', $_GET ) ) { $rangeend = $_GET['rangeend']; } else { $rangeend = ''; }
12
 
13
  list( $daysToDisplay, $rangestart_utime, $rangeend_utime ) = wp_statistics_date_range_calculator( $daysToDisplay, $rangestart, $rangeend );
14
+
15
+ list( $total, $uris ) = wp_statistics_get_top_pages( $WP_Statistics->Real_Current_Date('Y-m-d', '-0', $rangestart_utime), $WP_Statistics->Real_Current_Date('Y-m-d', '-0', $rangeend_utime) );
16
+
17
  ?>
18
  <div class="wrap">
19
  <?php screen_icon('options-general'); ?>
51
  echo "];\n";
52
  if( $count > 4 ) { break; }
53
  }
54
+
55
+ if( $count < 6 ) {
56
+ for( $i = $count + 1 ; $i < 6; $i++ ) {
57
+ echo "var pages_data_line" . $i . " = [];\n";
58
+ }
59
+ }
60
 
61
  $tickInterval = $daysToDisplay / 20;
62
  if( $tickInterval < 1 ) { $tickInterval = 1; }
includes/optimization/tabs/wps-optimization-resources.php CHANGED
@@ -177,12 +177,12 @@
177
 
178
  <tr valign="top">
179
  <th scope="row">
180
- <?php _e('BC Math', 'wp_statistics'); ?>:
181
  </th>
182
 
183
  <td>
184
- <strong><?php if( function_exists('bcadd') ) { _e('Installed','wp_statistics'); } else { _e('Not installed', 'wp_statistics'); }?></strong>
185
- <p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
186
  </td>
187
  </tr>
188
 
177
 
178
  <tr valign="top">
179
  <th scope="row">
180
+ <?php _e('Zlib gzopen()', 'wp_statistics'); ?>:
181
  </th>
182
 
183
  <td>
184
+ <strong><?php if( function_exists('gzopen') ) { _e('Installed','wp_statistics'); } else { _e('Not installed', 'wp_statistics'); }?></strong>
185
+ <p class="description"><?php _e('If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully.', 'wp_statistics'); ?></p>
186
  </td>
187
  </tr>
188
 
languages/wp-statistics-da.po DELETED
@@ -1,2630 +0,0 @@
1
- # Translation of WP Statistics in Danish
2
- # This file is distributed under the same license as the WP Statistics package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: +0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-beta\n"
11
- "Project-Id-Version: WP Statistics\n"
12
-
13
- #: wp-statistics.php:95
14
- msgid "&#151; You are running an unsupported version of PHP."
15
- msgstr ""
16
-
17
- #: wp-statistics.php:95
18
- msgid "WP Statistics Disabled"
19
- msgstr ""
20
-
21
- #: wp-statistics.php:99
22
- msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
23
- msgstr ""
24
-
25
- #: wp-statistics.php:101
26
- msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
27
- msgstr ""
28
-
29
- #: ajax.php:281
30
- msgid "ERROR: Widget not found!"
31
- msgstr ""
32
-
33
- #: dashboard.php:103 includes/log/log.php:13
34
- msgid "Loading..."
35
- msgstr ""
36
-
37
- #: dashboard.php:121 includes/log/log.php:2
38
- msgid "Reloading..."
39
- msgstr ""
40
-
41
- #: includes/log/top-visitors.php:41 wp-statistics.php:447
42
- msgid "Top Visitors"
43
- msgstr ""
44
-
45
- #: wp-statistics.php:206
46
- msgid "optimization page"
47
- msgstr ""
48
-
49
- #: includes/settings/tabs/wps-maintenance.php:35
50
- #: includes/settings/tabs/wps-maintenance.php:63
51
- msgid "Enabled"
52
- msgstr ""
53
-
54
- #: includes/settings/tabs/wps-maintenance.php:30
55
- msgid "Purge Old Data Daily"
56
- msgstr ""
57
-
58
- #: includes/settings/tabs/wps-maintenance.php:41
59
- msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
60
- msgstr ""
61
-
62
- #: includes/settings/tabs/wps-maintenance.php:47
63
- msgid "Purge data older than"
64
- msgstr ""
65
-
66
- #: includes/settings/tabs/wps-maintenance.php:58
67
- msgid "Purge High Hit Count Visitors Daily"
68
- msgstr ""
69
-
70
- #: includes/settings/tabs/wps-maintenance.php:69
71
- msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
72
- msgstr ""
73
-
74
- #: includes/settings/tabs/wps-maintenance.php:81
75
- msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
76
- msgstr ""
77
-
78
- #: shortcode.php:184
79
- msgid "The post/page id to get page statistics on."
80
- msgstr ""
81
-
82
- #: shortcode.php:181
83
- msgid "Post/Page ID"
84
- msgstr ""
85
-
86
- #: includes/functions/functions.php:424
87
- msgid "Ask.com"
88
- msgstr ""
89
-
90
- #: shortcode.php:158
91
- 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."
92
- msgstr ""
93
-
94
- #: wp-statistics.php:180
95
- msgid "visitor tracking"
96
- msgstr ""
97
-
98
- #: wp-statistics.php:181
99
- msgid "geoip collection"
100
- msgstr ""
101
-
102
- #: wp-statistics.php:197
103
- msgid "visit database index"
104
- msgstr ""
105
-
106
- #: wp-statistics.php:206
107
- msgid "Database updates are required, please go to %s and update the following: %s"
108
- msgstr ""
109
-
110
- #: wp-statistics.php:197
111
- msgid "countries database index"
112
- msgstr ""
113
-
114
- #: wp-statistics.php:190
115
- msgid "search table"
116
- msgstr ""
117
-
118
- #: wp-statistics.php:184
119
- msgid "settings page"
120
- msgstr ""
121
-
122
- #: wp-statistics.php:184 wp-statistics.php:206
123
- msgid ","
124
- msgstr ""
125
-
126
- #: wp-statistics.php:184
127
- msgid "The following features are disabled, please go to %s and enable them: %s"
128
- msgstr ""
129
-
130
- #: wp-statistics.php:179
131
- msgid "hit tracking"
132
- msgstr ""
133
-
134
- #: wp-statistics.php:178
135
- msgid "online user tracking"
136
- msgstr ""
137
-
138
- #: wp-statistics.php:775
139
- msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
140
- msgstr ""
141
-
142
- #: includes/optimization/wps-optimization.php:196
143
- msgid "Search table conversion complete, %d rows added."
144
- msgstr ""
145
-
146
- #: includes/optimization/tabs/wps-optimization-database.php:113
147
- 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."
148
- msgstr ""
149
-
150
- #: includes/optimization/tabs/wps-optimization-database.php:94
151
- msgid "Search Table"
152
- msgstr ""
153
-
154
- #: includes/optimization/tabs/wps-optimization-database.php:99
155
- msgid "Convert"
156
- msgstr ""
157
-
158
- #: includes/optimization/tabs/wps-optimization-database.php:106
159
- msgid "Convert Now!"
160
- msgstr ""
161
-
162
- #: includes/optimization/tabs/wps-optimization-database.php:107
163
- 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."
164
- msgstr ""
165
-
166
- #: includes/log/exclusions.php:24
167
- msgid "Referrer Spam"
168
- msgstr ""
169
-
170
- #: includes/settings/tabs/wps-externals.php:279
171
- msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
172
- msgstr ""
173
-
174
- #: includes/settings/wps-settings.php:105
175
- msgid "Externals"
176
- msgstr ""
177
-
178
- #: includes/settings/tabs/wps-externals.php:220
179
- msgid "Piwik Referrer Spam Blacklist settings"
180
- msgstr ""
181
-
182
- #: includes/settings/tabs/wps-externals.php:255
183
- msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
184
- msgstr ""
185
-
186
- #: includes/settings/tabs/wps-externals.php:248
187
- msgid "Download Piwik Referrer Spam Blacklist Database"
188
- msgstr ""
189
-
190
- #: includes/settings/tabs/wps-externals.php:243
191
- msgid "Update Piwik Referrer Spam Blacklist Info"
192
- msgstr ""
193
-
194
- #: includes/settings/tabs/wps-externals.php:237
195
- msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
196
- msgstr ""
197
-
198
- #: includes/settings/tabs/wps-externals.php:225
199
- msgid "Referrer spam blacklist is provided by Piwik, available from %s."
200
- msgstr ""
201
-
202
- #: includes/settings/tabs/wps-externals.php:231
203
- msgid "Piwik Referrer Spam Blacklist usage"
204
- msgstr ""
205
-
206
- #: includes/settings/tabs/wps-exclusions.php:148
207
- msgid "Treat corrupt browser info as a bot"
208
- msgstr ""
209
-
210
- #: includes/log/exclusions.php:24
211
- msgid "404 Pages"
212
- msgstr ""
213
-
214
- #: includes/log/top-visitors.php:26
215
- msgid "Date"
216
- msgstr ""
217
-
218
- #: includes/settings/tabs/wps-exclusions.php:151
219
- msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
220
- msgstr ""
221
-
222
- #: includes/settings/tabs/wps-exclusions.php:215
223
- msgid "Excluded 404 pages"
224
- msgstr ""
225
-
226
- #: includes/settings/tabs/wps-exclusions.php:218
227
- msgid "Exclude any URL that returns a \"404 - Not Found\" message."
228
- msgstr ""
229
-
230
- #: wps-updates.php:29
231
- msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
232
- msgstr ""
233
-
234
- #: includes/settings/tabs/wps-general.php:281
235
- msgid "Add page title to empty search words"
236
- msgstr ""
237
-
238
- #: includes/settings/tabs/wps-general.php:287
239
- 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."
240
- msgstr ""
241
-
242
- #: includes/optimization/tabs/wps-optimization-purging.php:218
243
- #: includes/settings/tabs/wps-maintenance.php:75
244
- msgid "Purge visitors with more than"
245
- msgstr ""
246
-
247
- #: includes/optimization/tabs/wps-optimization-purging.php:223
248
- msgid "hits"
249
- msgstr ""
250
-
251
- #: includes/optimization/tabs/wps-optimization-purging.php:224
252
- 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."
253
- msgstr ""
254
-
255
- #: includes/functions/purge-hits.php:28
256
- msgid "No visitors found to purge."
257
- msgstr ""
258
-
259
- #: includes/functions/purge-hits.php:25
260
- msgid "%s records purged successfully."
261
- msgstr ""
262
-
263
- #: ajax.php:178 includes/functions/purge-hits.php:32
264
- msgid "Number of hits must be greater than or equal to 10!"
265
- msgstr ""
266
-
267
- #: shortcode.php:141
268
- msgid "Page Visits"
269
- msgstr ""
270
-
271
- #: shortcode.php:144
272
- msgid "Page Count"
273
- msgstr ""
274
-
275
- #: shortcode.php:145
276
- msgid "Comment Count"
277
- msgstr ""
278
-
279
- #: shortcode.php:146
280
- msgid "Spam Count"
281
- msgstr ""
282
-
283
- #: shortcode.php:147
284
- msgid "User Count"
285
- msgstr ""
286
-
287
- #: shortcode.php:148
288
- msgid "Post Average"
289
- msgstr ""
290
-
291
- #: shortcode.php:149
292
- msgid "Comment Average"
293
- msgstr ""
294
-
295
- #: shortcode.php:150
296
- msgid "User Average"
297
- msgstr ""
298
-
299
- #: shortcode.php:162
300
- msgid "Search Provider"
301
- msgstr ""
302
-
303
- #: shortcode.php:165
304
- msgid "The search provider to get statistics on."
305
- msgstr ""
306
-
307
- #: shortcode.php:169
308
- msgid "Number Format"
309
- msgstr ""
310
-
311
- #: shortcode.php:172
312
- msgid "The format to display numbers in: i18n, english, none."
313
- msgstr ""
314
-
315
- #: shortcode.php:176
316
- msgid "English"
317
- msgstr ""
318
-
319
- #: shortcode.php:177
320
- msgid "International"
321
- msgstr ""
322
-
323
- #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
324
- msgid "Hits Statistics Summary"
325
- msgstr ""
326
-
327
- #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
328
- msgid "Chart Total"
329
- msgstr ""
330
-
331
- #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
332
- msgid "All Time Total"
333
- msgstr ""
334
-
335
- #: includes/log/log.php:6
336
- msgid "Have you thought about donating to WP Statistics?"
337
- msgstr ""
338
-
339
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:429
340
- msgid "Donate"
341
- msgstr ""
342
-
343
- #: includes/settings/tabs/wps-about.php:24
344
- msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
345
- msgstr ""
346
-
347
- #: includes/settings/tabs/wps-about.php:24
348
- msgid "donation"
349
- msgstr ""
350
-
351
- #: includes/log/log.php:6
352
- msgid "Donate Now!"
353
- msgstr ""
354
-
355
- #: includes/log/log.php:6
356
- msgid "Close"
357
- msgstr ""
358
-
359
- #: shortcode.php:135
360
- msgid "Select the statistic you wish to display."
361
- msgstr ""
362
-
363
- #: shortcode.php:132
364
- msgid "Statistic"
365
- msgstr ""
366
-
367
- #: shortcode.php:143
368
- msgid "Post Count"
369
- msgstr ""
370
-
371
- #: shortcode.php:155
372
- msgid "Time Frame"
373
- msgstr ""
374
-
375
- #: includes/functions/functions.php:1009
376
- msgid "to"
377
- msgstr ""
378
-
379
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
380
- msgid "Go"
381
- msgstr ""
382
-
383
- #: includes/log/top-pages.php:95
384
- msgid "Rank #5"
385
- msgstr ""
386
-
387
- #: includes/log/top-pages.php:95
388
- msgid "Rank #4"
389
- msgstr ""
390
-
391
- #: includes/log/top-pages.php:95
392
- msgid "Rank #3"
393
- msgstr ""
394
-
395
- #: includes/log/top-pages.php:95
396
- msgid "Rank #1"
397
- msgstr ""
398
-
399
- #: includes/log/top-pages.php:95
400
- msgid "Rank #2"
401
- msgstr ""
402
-
403
- #: includes/optimization/tabs/wps-optimization-database.php:60
404
- msgid "Visits Table"
405
- msgstr ""
406
-
407
- #: includes/optimization/tabs/wps-optimization-database.php:75
408
- 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."
409
- msgstr ""
410
-
411
- #: includes/optimization/tabs/wps-optimization-database.php:76
412
- msgid "This operation could take a long time on installs with many rows in the visits table."
413
- msgstr ""
414
-
415
- #: includes/optimization/tabs/wps-optimization-database.php:82
416
- 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."
417
- msgstr ""
418
-
419
- #: includes/log/last-visitor.php:68
420
- msgid "Filtered by"
421
- msgstr ""
422
-
423
- #: includes/functions/functions.php:1002 includes/functions/functions.php:1005
424
- msgid "Range"
425
- msgstr ""
426
-
427
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
428
- msgid "MM/DD/YYYY"
429
- msgstr ""
430
-
431
- #: includes/settings/tabs/wps-general.php:342
432
- msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
433
- msgstr ""
434
-
435
- #: includes/settings/tabs/wps-general.php:336
436
- msgid "Force English"
437
- msgstr ""
438
-
439
- #: includes/settings/tabs/wps-general.php:331
440
- msgid "Languages"
441
- msgstr ""
442
-
443
- #: includes/settings/tabs/wps-exclusions.php:227
444
- 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."
445
- msgstr ""
446
-
447
- #: includes/settings/tabs/wps-exclusions.php:225
448
- msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
449
- msgstr ""
450
-
451
- #: includes/settings/tabs/wps-exclusions.php:222
452
- msgid "Excluded URLs list"
453
- msgstr ""
454
-
455
- #: includes/log/exclusions.php:24
456
- msgid "Excluded URL"
457
- msgstr ""
458
-
459
- #: includes/log/widgets/quickstats.php:52 includes/log/widgets/summary.php:52
460
- msgid "Last 365 Days (Year)"
461
- msgstr ""
462
-
463
- #: includes/log/widgets/quickstats.php:46 includes/log/widgets/summary.php:46
464
- msgid "Last 30 Days (Month)"
465
- msgstr ""
466
-
467
- #: includes/log/widgets/quickstats.php:40 includes/log/widgets/summary.php:40
468
- msgid "Last 7 Days (Week)"
469
- msgstr ""
470
-
471
- #: includes/functions/functions.php:430
472
- msgid "Yahoo!"
473
- msgstr ""
474
-
475
- #: includes/functions/functions.php:431
476
- msgid "Yandex"
477
- msgstr ""
478
-
479
- #: includes/functions/functions.php:427
480
- msgid "clearch.org"
481
- msgstr ""
482
-
483
- #: includes/functions/functions.php:428
484
- msgid "DuckDuckGo"
485
- msgstr ""
486
-
487
- #: includes/functions/functions.php:426
488
- msgid "Bing"
489
- msgstr ""
490
-
491
- #: includes/functions/functions.php:425
492
- msgid "Baidu"
493
- msgstr ""
494
-
495
- #: editor.php:69
496
- msgid "Hits in the last 20 days"
497
- msgstr ""
498
-
499
- #: includes/log/exclusions.php:24
500
- msgid "Feeds"
501
- msgstr ""
502
-
503
- #: includes/log/exclusions.php:24
504
- msgid "User Role"
505
- msgstr ""
506
-
507
- #: includes/log/exclusions.php:24
508
- msgid "Login Page"
509
- msgstr ""
510
-
511
- #: includes/log/exclusions.php:24
512
- msgid "Admin Page"
513
- msgstr ""
514
-
515
- #: includes/log/exclusions.php:24
516
- msgid "Self Referral"
517
- msgstr ""
518
-
519
- #: includes/log/exclusions.php:24
520
- msgid "IP Match"
521
- msgstr ""
522
-
523
- #: includes/log/exclusions.php:24
524
- msgid "Robot"
525
- msgstr ""
526
-
527
- #: includes/log/online.php:100
528
- msgid "Currently there are no users online in the site."
529
- msgstr ""
530
-
531
- #: includes/log/exclusions.php:24
532
- msgid "Robot Threshold"
533
- msgstr ""
534
-
535
- #: includes/log/exclusions.php:24
536
- msgid "Honey Pot"
537
- msgstr ""
538
-
539
- #: includes/log/widgets/page.php:8
540
- msgid "Page Trending Stats"
541
- msgstr ""
542
-
543
- #: includes/log/exclusions.php:24
544
- msgid "Hostname"
545
- msgstr ""
546
-
547
- #: includes/settings/tabs/wps-general.php:93
548
- #: includes/settings/tabs/wps-general.php:133
549
- #: includes/settings/tabs/wps-general.php:149
550
- #: includes/settings/tabs/wps-general.php:188
551
- #: includes/settings/tabs/wps-general.php:200
552
- #: includes/settings/tabs/wps-general.php:229
553
- #: includes/settings/tabs/wps-notifications.php:122
554
- msgid "Enable or disable this feature"
555
- msgstr ""
556
-
557
- #: includes/settings/tabs/wps-general.php:99
558
- msgid "Check for online users every"
559
- msgstr ""
560
-
561
- #: includes/settings/tabs/wps-general.php:104
562
- msgid "Second"
563
- msgstr ""
564
-
565
- #: includes/settings/tabs/wps-general.php:105
566
- msgid "Time for the check accurate online user in the site. Now: %s Second"
567
- msgstr ""
568
-
569
- #: includes/settings/tabs/wps-general.php:111
570
- msgid "Record all user"
571
- msgstr ""
572
-
573
- #: includes/settings/tabs/wps-general.php:117
574
- msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
575
- msgstr ""
576
-
577
- #: includes/settings/tabs/wps-general.php:155
578
- msgid "Store entire user agent string"
579
- msgstr ""
580
-
581
- #: includes/settings/tabs/wps-general.php:161
582
- msgid "Only enabled for debugging"
583
- msgstr ""
584
-
585
- #: includes/settings/tabs/wps-general.php:167
586
- msgid "Coefficient per visitor"
587
- msgstr ""
588
-
589
- #: includes/settings/tabs/wps-general.php:172
590
- msgid "For each visit to account for several hits. Currently %s."
591
- msgstr ""
592
-
593
- #: includes/settings/tabs/wps-general.php:177
594
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:418
595
- #: wp-statistics.php:516
596
- msgid "Pages"
597
- msgstr ""
598
-
599
- #: includes/settings/tabs/wps-general.php:194
600
- msgid "Track all pages"
601
- msgstr ""
602
-
603
- #: includes/settings/tabs/wps-general.php:209
604
- msgid "Strip parameters from URI"
605
- msgstr ""
606
-
607
- #: includes/settings/tabs/wps-general.php:215
608
- msgid "This will remove anything after the ? in a URL."
609
- msgstr ""
610
-
611
- #: includes/settings/tabs/wps-general.php:223
612
- msgid "Disable hits column in post/pages list"
613
- msgstr ""
614
-
615
- #: includes/settings/tabs/wps-general.php:234
616
- msgid "Miscellaneous"
617
- msgstr ""
618
-
619
- #: includes/settings/tabs/wps-general.php:239
620
- msgid "Show stats in menu bar"
621
- msgstr ""
622
-
623
- #: includes/settings/tabs/wps-general.php:244
624
- msgid "No"
625
- msgstr ""
626
-
627
- #: includes/settings/tabs/wps-general.php:245
628
- msgid "Yes"
629
- msgstr ""
630
-
631
- #: includes/settings/tabs/wps-general.php:247
632
- msgid "Show stats in admin menu bar"
633
- msgstr ""
634
-
635
- #: includes/settings/tabs/wps-general.php:253
636
- msgid "Hide admin notices about non active features"
637
- msgstr ""
638
-
639
- #: includes/settings/tabs/wps-general.php:259
640
- msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
641
- msgstr ""
642
-
643
- #: includes/settings/tabs/wps-general.php:265
644
- msgid "Delete the manual"
645
- msgstr ""
646
-
647
- #: includes/settings/tabs/wps-general.php:271
648
- 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."
649
- msgstr ""
650
-
651
- #: includes/settings/tabs/wps-general.php:276
652
- msgid "Search Engines"
653
- msgstr ""
654
-
655
- #: includes/settings/tabs/wps-general.php:293
656
- msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
657
- msgstr ""
658
-
659
- #: includes/settings/tabs/wps-general.php:308
660
- msgid "disable"
661
- msgstr ""
662
-
663
- #: includes/settings/tabs/wps-general.php:309
664
- msgid "Disable %s from data collection and reporting."
665
- msgstr ""
666
-
667
- #: includes/settings/tabs/wps-general.php:315
668
- msgid "Charts"
669
- msgstr ""
670
-
671
- #: includes/settings/tabs/wps-general.php:320
672
- msgid "Include totals"
673
- msgstr ""
674
-
675
- #: includes/settings/tabs/wps-general.php:326
676
- msgid "Add a total line to charts with multiple values, like the search engine referrals"
677
- msgstr ""
678
-
679
- #: includes/settings/tabs/wps-externals.php:32
680
- msgid "GeoIP settings"
681
- msgstr ""
682
-
683
- #: includes/settings/tabs/wps-externals.php:37
684
- msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
685
- msgstr ""
686
-
687
- #: includes/settings/tabs/wps-externals.php:47
688
- msgid "GeoIP collection"
689
- msgstr ""
690
-
691
- #: includes/settings/tabs/wps-externals.php:53
692
- msgid "For get more information and location (country) from visitor, enable this feature."
693
- msgstr ""
694
-
695
- #: includes/settings/tabs/wps-externals.php:59
696
- msgid "Update GeoIP Info"
697
- msgstr ""
698
-
699
- #: includes/settings/tabs/wps-externals.php:64
700
- msgid "Download GeoIP Database"
701
- msgstr ""
702
-
703
- #: includes/settings/tabs/wps-externals.php:71
704
- msgid "Schedule monthly update of GeoIP DB"
705
- msgstr ""
706
-
707
- #: includes/settings/tabs/wps-externals.php:97
708
- msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
709
- msgstr ""
710
-
711
- #: includes/settings/tabs/wps-externals.php:98
712
- msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
713
- msgstr ""
714
-
715
- #: includes/settings/tabs/wps-externals.php:104
716
- msgid "Populate missing GeoIP after update of GeoIP DB"
717
- msgstr ""
718
-
719
- #: includes/settings/tabs/wps-externals.php:110
720
- msgid "Update any missing GeoIP data after downloading a new database."
721
- msgstr ""
722
-
723
- #: includes/settings/tabs/wps-externals.php:116
724
- msgid "Country code for private IP addresses"
725
- msgstr ""
726
-
727
- #: includes/settings/tabs/wps-externals.php:121
728
- msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
729
- msgstr ""
730
-
731
- #: includes/settings/tabs/wps-externals.php:132
732
- msgid "GeoIP collection is disabled due to the following reasons:"
733
- msgstr ""
734
-
735
- #: includes/settings/tabs/wps-externals.php:135
736
- msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
737
- msgstr ""
738
-
739
- #: includes/settings/tabs/wps-externals.php:140
740
- msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
741
- msgstr ""
742
-
743
- #: includes/settings/tabs/wps-externals.php:146
744
- msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
745
- msgstr ""
746
-
747
- #: includes/settings/tabs/wps-externals.php:152
748
- msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
749
- msgstr ""
750
-
751
- #: includes/settings/tabs/wps-maintenance.php:20
752
- msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
753
- msgstr ""
754
-
755
- #: includes/settings/tabs/wps-maintenance.php:52
756
- msgid "Days"
757
- msgstr ""
758
-
759
- #: includes/settings/tabs/wps-maintenance.php:53
760
- msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
761
- msgstr ""
762
-
763
- #: includes/settings/tabs/wps-notifications.php:44
764
- msgid "Common Report Options"
765
- msgstr ""
766
-
767
- #: includes/settings/tabs/wps-notifications.php:49
768
- msgid "E-mail addresses"
769
- msgstr ""
770
-
771
- #: includes/settings/tabs/wps-notifications.php:54
772
- msgid "A comma separated list of e-mail addresses to send reports to."
773
- msgstr ""
774
-
775
- #: includes/settings/tabs/wps-notifications.php:59
776
- msgid "Update Reports"
777
- msgstr ""
778
-
779
- #: includes/log/exclusions.php:24
780
- #: includes/settings/tabs/wps-notifications.php:64
781
- msgid "Browscap"
782
- msgstr ""
783
-
784
- #: includes/settings/tabs/wps-notifications.php:70
785
- msgid "Send a report whenever the browscap.ini is updated."
786
- msgstr ""
787
-
788
- #: includes/log/exclusions.php:24
789
- #: includes/settings/tabs/wps-notifications.php:76
790
- msgid "GeoIP"
791
- msgstr ""
792
-
793
- #: includes/settings/tabs/wps-notifications.php:82
794
- msgid "Send a report whenever the GeoIP database is updated."
795
- msgstr ""
796
-
797
- #: includes/settings/tabs/wps-notifications.php:88
798
- msgid "Pruning"
799
- msgstr ""
800
-
801
- #: includes/settings/tabs/wps-notifications.php:94
802
- msgid "Send a report whenever the pruning of database is run."
803
- msgstr ""
804
-
805
- #: includes/settings/tabs/wps-notifications.php:100
806
- msgid "Upgrade"
807
- msgstr ""
808
-
809
- #: includes/settings/tabs/wps-notifications.php:106
810
- msgid "Send a report whenever the plugin is upgraded."
811
- msgstr ""
812
-
813
- #: includes/settings/tabs/wps-notifications.php:111
814
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
815
- msgid "Statistical reporting"
816
- msgstr ""
817
-
818
- #: includes/settings/tabs/wps-notifications.php:129
819
- msgid "Schedule"
820
- msgstr ""
821
-
822
- #: includes/settings/tabs/wps-notifications.php:153
823
- msgid "Select how often to receive statistical report."
824
- msgstr ""
825
-
826
- #: includes/settings/tabs/wps-notifications.php:159
827
- msgid "Send reports via"
828
- msgstr ""
829
-
830
- #: includes/settings/tabs/wps-notifications.php:165
831
- msgid "Email"
832
- msgstr ""
833
-
834
- #: includes/settings/tabs/wps-notifications.php:167
835
- msgid "SMS"
836
- msgstr ""
837
-
838
- #: includes/settings/tabs/wps-notifications.php:170
839
- msgid "Select delivery method for statistical report."
840
- msgstr ""
841
-
842
- #: includes/settings/tabs/wps-notifications.php:173
843
- msgid "Note: To send SMS text messages please install the %s plugin."
844
- msgstr ""
845
-
846
- #: includes/settings/tabs/wps-notifications.php:173
847
- msgid "WordPress SMS"
848
- msgstr ""
849
-
850
- #: includes/settings/tabs/wps-notifications.php:180
851
- msgid "Report body"
852
- msgstr ""
853
-
854
- #: includes/settings/tabs/wps-notifications.php:185
855
- msgid "Enter the contents of the report."
856
- msgstr ""
857
-
858
- #: includes/settings/tabs/wps-notifications.php:187
859
- msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
860
- msgstr ""
861
-
862
- #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
863
- #: widget.php:247 wp-statistics.php:621
864
- msgid "User Online"
865
- msgstr ""
866
-
867
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
868
- #: widget.php:253
869
- msgid "Today Visitor"
870
- msgstr ""
871
-
872
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
873
- #: widget.php:250
874
- msgid "Today Visit"
875
- msgstr ""
876
-
877
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
878
- #: widget.php:259
879
- msgid "Yesterday Visitor"
880
- msgstr ""
881
-
882
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
883
- msgid "Yesterday Visit"
884
- msgstr ""
885
-
886
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
887
- #: widget.php:274
888
- msgid "Total Visitor"
889
- msgstr ""
890
-
891
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
892
- #: widget.php:271
893
- msgid "Total Visit"
894
- msgstr ""
895
-
896
- #: shortcode.php:175
897
- msgid "None"
898
- msgstr ""
899
-
900
- #: includes/settings/wps-settings.php:108
901
- msgid "About"
902
- msgstr ""
903
-
904
- #: includes/settings/tabs/wps-overview-display.php:20
905
- msgid "Dashboard"
906
- msgstr ""
907
-
908
- #: includes/settings/tabs/wps-overview-display.php:24
909
- #: includes/settings/tabs/wps-overview-display.php:44
910
- #: includes/settings/tabs/wps-overview-display.php:64
911
- msgid "The following items are global to all users."
912
- msgstr ""
913
-
914
- #: includes/settings/tabs/wps-overview-display.php:29
915
- msgid "Disable dashboard widgets"
916
- msgstr ""
917
-
918
- #: includes/settings/tabs/wps-overview-display.php:35
919
- msgid "Disable the dashboard widgets."
920
- msgstr ""
921
-
922
- #: includes/settings/tabs/wps-overview-display.php:40
923
- msgid "Page/Post Editor"
924
- msgstr ""
925
-
926
- #: includes/settings/tabs/wps-overview-display.php:49
927
- msgid "Disable post/page editor widget"
928
- msgstr ""
929
-
930
- #: includes/settings/tabs/wps-overview-display.php:55
931
- msgid "Disable the page/post editor widget."
932
- msgstr ""
933
-
934
- #: includes/settings/tabs/wps-overview-display.php:69
935
- msgid "Map type"
936
- msgstr ""
937
-
938
- #: includes/functions/functions.php:429
939
- #: includes/settings/tabs/wps-overview-display.php:75
940
- msgid "Google"
941
- msgstr ""
942
-
943
- #: includes/settings/tabs/wps-overview-display.php:75
944
- msgid "JQVMap"
945
- msgstr ""
946
-
947
- #: includes/settings/tabs/wps-overview-display.php:82
948
- msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
949
- msgstr ""
950
-
951
- #: includes/settings/tabs/wps-overview-display.php:83
952
- msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
953
- msgstr ""
954
-
955
- #: includes/settings/tabs/wps-overview-display.php:89
956
- msgid "Disable map"
957
- msgstr ""
958
-
959
- #: includes/settings/tabs/wps-overview-display.php:95
960
- msgid "Disable the map display"
961
- msgstr ""
962
-
963
- #: includes/settings/tabs/wps-overview-display.php:101
964
- msgid "Get country location from Google"
965
- msgstr ""
966
-
967
- #: includes/settings/tabs/wps-overview-display.php:107
968
- msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
969
- msgstr ""
970
-
971
- #: includes/settings/tabs/wps-removal.php:15
972
- msgid "WP Statisitcs Removal"
973
- msgstr ""
974
-
975
- #: includes/settings/tabs/wps-removal.php:20
976
- 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."
977
- msgstr ""
978
-
979
- #: includes/settings/tabs/wps-removal.php:23
980
- 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."
981
- msgstr ""
982
-
983
- #: includes/settings/tabs/wps-removal.php:29
984
- msgid "Remove data and settings"
985
- msgstr ""
986
-
987
- #: includes/settings/tabs/wps-removal.php:34
988
- msgid "Remove"
989
- msgstr ""
990
-
991
- #: includes/settings/tabs/wps-removal.php:35
992
- msgid "Remove data and settings, this action cannot be undone."
993
- msgstr ""
994
-
995
- #: includes/settings/wps-settings.php:100
996
- msgid "General"
997
- msgstr ""
998
-
999
- #: includes/settings/wps-settings.php:101
1000
- msgid "Notifications"
1001
- msgstr ""
1002
-
1003
- #: includes/settings/wps-settings.php:102
1004
- msgid "Dashboard/Overview"
1005
- msgstr ""
1006
-
1007
- #: includes/settings/wps-settings.php:106
1008
- msgid "Maintenance"
1009
- msgstr ""
1010
-
1011
- #: includes/settings/wps-settings.php:107
1012
- msgid "Removal"
1013
- msgstr ""
1014
-
1015
- #: includes/settings/tabs/wps-access-level.php:85
1016
- #: includes/settings/tabs/wps-exclusions.php:234
1017
- #: includes/settings/tabs/wps-externals.php:286
1018
- #: includes/settings/tabs/wps-general.php:349
1019
- #: includes/settings/tabs/wps-maintenance.php:88
1020
- #: includes/settings/tabs/wps-notifications.php:201
1021
- #: includes/settings/tabs/wps-overview-display.php:116
1022
- #: includes/settings/tabs/wps-removal.php:42
1023
- msgid "Update"
1024
- msgstr ""
1025
-
1026
- #: schedule.php:10
1027
- msgid "Once Weekly"
1028
- msgstr ""
1029
-
1030
- #: schedule.php:17
1031
- msgid "Once Every 2 Weeks"
1032
- msgstr ""
1033
-
1034
- #: schedule.php:24
1035
- msgid "Once Every 4 Weeks"
1036
- msgstr ""
1037
-
1038
- #: widget.php:14 wp-statistics.php:408 wp-statistics.php:469
1039
- msgid "Statistics"
1040
- msgstr ""
1041
-
1042
- #: widget.php:15
1043
- msgid "Show site stats in sidebar."
1044
- msgstr ""
1045
-
1046
- #: widget.php:73 widget.php:262
1047
- msgid "Week Visit"
1048
- msgstr ""
1049
-
1050
- #: widget.php:80 widget.php:265
1051
- msgid "Month Visit"
1052
- msgstr ""
1053
-
1054
- #: widget.php:87 widget.php:268
1055
- msgid "Years Visit"
1056
- msgstr ""
1057
-
1058
- #: widget.php:108 widget.php:277
1059
- msgid "Total Page Views"
1060
- msgstr ""
1061
-
1062
- #: widget.php:116
1063
- msgid "Search Engine referred"
1064
- msgstr ""
1065
-
1066
- #: widget.php:123 widget.php:300
1067
- msgid "Total Posts"
1068
- msgstr ""
1069
-
1070
- #: widget.php:130 widget.php:303
1071
- msgid "Total Pages"
1072
- msgstr ""
1073
-
1074
- #: widget.php:137 widget.php:306
1075
- msgid "Total Comments"
1076
- msgstr ""
1077
-
1078
- #: widget.php:144 widget.php:309
1079
- msgid "Total Spams"
1080
- msgstr ""
1081
-
1082
- #: widget.php:151 widget.php:312
1083
- msgid "Total Users"
1084
- msgstr ""
1085
-
1086
- #: widget.php:158 widget.php:315
1087
- msgid "Average Posts"
1088
- msgstr ""
1089
-
1090
- #: widget.php:165 widget.php:318
1091
- msgid "Average Comments"
1092
- msgstr ""
1093
-
1094
- #: widget.php:172 widget.php:321
1095
- msgid "Average Users"
1096
- msgstr ""
1097
-
1098
- #: shortcode.php:151 widget.php:179 widget.php:324
1099
- msgid "Last Post Date"
1100
- msgstr ""
1101
-
1102
- #: widget.php:240
1103
- msgid "Name"
1104
- msgstr ""
1105
-
1106
- #: widget.php:244
1107
- msgid "Items"
1108
- msgstr ""
1109
-
1110
- #: widget.php:256 wp-statistics.php:646
1111
- msgid "Yesterday visit"
1112
- msgstr ""
1113
-
1114
- #: widget.php:280
1115
- msgid "Search Engine Referred"
1116
- msgstr ""
1117
-
1118
- #: widget.php:283
1119
- msgid "Select type of search engine"
1120
- msgstr ""
1121
-
1122
- #: wp-statistics.php:122
1123
- msgid "WP Statistics has been removed, please disable and delete it."
1124
- msgstr ""
1125
-
1126
- #. Plugin Name of the plugin/theme
1127
- #: wp-statistics.php:54
1128
- msgid "WP Statistics"
1129
- msgstr ""
1130
-
1131
- #. Description of the plugin/theme
1132
- #: wp-statistics.php:55
1133
- msgid "Complete statistics for your WordPress site."
1134
- msgstr ""
1135
-
1136
- #: wp-statistics.php:313 wp-statistics.php:428 wp-statistics.php:523
1137
- msgid "Settings"
1138
- msgstr ""
1139
-
1140
- #: wp-statistics.php:325
1141
- msgid "Click here to visit the plugin on WordPress.org"
1142
- msgstr ""
1143
-
1144
- #: wp-statistics.php:325
1145
- msgid "Visit WordPress.org page"
1146
- msgstr ""
1147
-
1148
- #: wp-statistics.php:328
1149
- msgid "Click here to rate and review this plugin on WordPress.org"
1150
- msgstr ""
1151
-
1152
- #: wp-statistics.php:328
1153
- msgid "Rate this plugin"
1154
- msgstr ""
1155
-
1156
- #: wp-statistics.php:372
1157
- msgid "WP Statistics - Hits"
1158
- msgstr ""
1159
-
1160
- #: wp-statistics.php:411 wp-statistics.php:472 wp-statistics.php:510
1161
- msgid "Overview"
1162
- msgstr ""
1163
-
1164
- #: wp-statistics.php:417 wp-statistics.php:515
1165
- msgid "Online"
1166
- msgstr ""
1167
-
1168
- #: wp-statistics.php:419 wp-statistics.php:517
1169
- msgid "Referrers"
1170
- msgstr ""
1171
-
1172
- #: shortcode.php:142 wp-statistics.php:420 wp-statistics.php:518
1173
- msgid "Searches"
1174
- msgstr ""
1175
-
1176
- #: wp-statistics.php:421 wp-statistics.php:519
1177
- msgid "Search Words"
1178
- msgstr ""
1179
-
1180
- #: wp-statistics.php:422 wp-statistics.php:520
1181
- msgid "Top Visitors Today"
1182
- msgstr ""
1183
-
1184
- #: wp-statistics.php:427 wp-statistics.php:522
1185
- msgid "Optimization"
1186
- msgstr ""
1187
-
1188
- #: wp-statistics.php:433 wp-statistics.php:486
1189
- msgid "Manual"
1190
- msgstr ""
1191
-
1192
- #: wp-statistics.php:501
1193
- msgid "Site"
1194
- msgstr ""
1195
-
1196
- #: wp-statistics.php:502
1197
- msgid "Options"
1198
- msgstr ""
1199
-
1200
- #: wp-statistics.php:628
1201
- msgid "Today visitor"
1202
- msgstr ""
1203
-
1204
- #: wp-statistics.php:634
1205
- msgid "Today visit"
1206
- msgstr ""
1207
-
1208
- #: wp-statistics.php:640
1209
- msgid "Yesterday visitor"
1210
- msgstr ""
1211
-
1212
- #: wp-statistics.php:652
1213
- msgid "View Stats"
1214
- msgstr ""
1215
-
1216
- #: wp-statistics.php:676
1217
- msgid "Download ODF file"
1218
- msgstr ""
1219
-
1220
- #: wp-statistics.php:677
1221
- msgid "Download HTML file"
1222
- msgstr ""
1223
-
1224
- #: wp-statistics.php:681
1225
- msgid "Manual file not found."
1226
- msgstr ""
1227
-
1228
- #: wp-statistics.php:748 wp-statistics.php:878 wp-statistics.php:913
1229
- msgid "You do not have sufficient permissions to access this page."
1230
- msgstr ""
1231
-
1232
- #: wp-statistics.php:301
1233
- msgid "WP Statistics %s installed on"
1234
- msgstr ""
1235
-
1236
- #: wps-updates.php:39
1237
- msgid "Error downloading GeoIP database from: %s - %s"
1238
- msgstr ""
1239
-
1240
- #: wps-updates.php:50
1241
- msgid "Error could not open downloaded GeoIP database for reading: %s"
1242
- msgstr ""
1243
-
1244
- #: wps-updates.php:57
1245
- msgid "Error could not open destination GeoIP database for writing %s"
1246
- msgstr ""
1247
-
1248
- #: wps-updates.php:73
1249
- msgid "GeoIP Database updated successfully!"
1250
- msgstr ""
1251
-
1252
- #: wps-updates.php:98
1253
- msgid "GeoIP update on"
1254
- msgstr ""
1255
-
1256
- #: wps-updates.php:165
1257
- msgid "Error downloading browscap database from: %s - %s"
1258
- msgstr ""
1259
-
1260
- #: wps-updates.php:274
1261
- msgid "browscap database updated successfully!"
1262
- msgstr ""
1263
-
1264
- #: wps-updates.php:284
1265
- msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1266
- msgstr ""
1267
-
1268
- #: wps-updates.php:292
1269
- msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1270
- msgstr ""
1271
-
1272
- #: wps-updates.php:314
1273
- msgid "browscap already at current version!"
1274
- msgstr ""
1275
-
1276
- #: wps-updates.php:327
1277
- msgid "Browscap.ini update on"
1278
- msgstr ""
1279
-
1280
- #. Plugin URI of the plugin/theme
1281
- #. Author URI of the plugin/theme
1282
- msgid "http://wp-statistics.com/"
1283
- msgstr ""
1284
-
1285
- #. Author of the plugin/theme
1286
- msgid "Mostafa Soufi & Greg Ross"
1287
- msgstr ""
1288
-
1289
- #: dashboard.php:56
1290
- msgid "Quick Stats"
1291
- msgstr ""
1292
-
1293
- #: dashboard.php:57 includes/log/widgets/browsers.php:41
1294
- msgid "Top 10 Browsers"
1295
- msgstr ""
1296
-
1297
- #: dashboard.php:58 wp-statistics.php:457
1298
- msgid "Top 10 Countries"
1299
- msgstr ""
1300
-
1301
- #: dashboard.php:59
1302
- msgid "Today's Visitor Map"
1303
- msgstr ""
1304
-
1305
- #: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
1306
- #: wp-statistics.php:446
1307
- msgid "Hit Statistics"
1308
- msgstr ""
1309
-
1310
- #: dashboard.php:61 wp-statistics.php:450
1311
- msgid "Top 10 Pages"
1312
- msgstr ""
1313
-
1314
- #: dashboard.php:62 includes/log/last-visitor.php:36 wp-statistics.php:451
1315
- msgid "Recent Visitors"
1316
- msgstr ""
1317
-
1318
- #: dashboard.php:63 includes/log/top-referring.php:59
1319
- #: includes/log/top-referring.php:81 wp-statistics.php:456
1320
- msgid "Top Referring Sites"
1321
- msgstr ""
1322
-
1323
- #: dashboard.php:64 includes/log/widgets/quickstats.php:75
1324
- #: includes/log/widgets/summary.php:75 wp-statistics.php:448
1325
- msgid "Search Engine Referrals"
1326
- msgstr ""
1327
-
1328
- #: dashboard.php:65 wp-statistics.php:454
1329
- msgid "Summary"
1330
- msgstr ""
1331
-
1332
- #: dashboard.php:66 includes/log/last-search.php:31 wp-statistics.php:449
1333
- msgid "Latest Search Words"
1334
- msgstr ""
1335
-
1336
- #: dashboard.php:67
1337
- msgid "Top 10 Visitors Today"
1338
- msgstr ""
1339
-
1340
- #: editor.php:63
1341
- msgid "This post is not yet published."
1342
- msgstr ""
1343
-
1344
- #: includes/functions/geoip-populate.php:24
1345
- msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1346
- msgstr ""
1347
-
1348
- #: includes/functions/geoip-populate.php:48
1349
- msgid "Updated %s GeoIP records in the visitors database."
1350
- msgstr ""
1351
-
1352
- #: includes/functions/purge.php:21 includes/functions/purge.php:39
1353
- #: includes/functions/purge.php:50 includes/functions/purge.php:61
1354
- #: includes/functions/purge.php:94
1355
- msgid "%s data older than %s days purged successfully."
1356
- msgstr ""
1357
-
1358
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
1359
- #: includes/functions/purge.php:52 includes/functions/purge.php:63
1360
- #: includes/functions/purge.php:96
1361
- msgid "No records found to purge from %s!"
1362
- msgstr ""
1363
-
1364
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1365
- msgid "Database pruned on"
1366
- msgstr ""
1367
-
1368
- #: includes/functions/purge.php:114
1369
- msgid "Please select a value over 30 days."
1370
- msgstr ""
1371
-
1372
- #: includes/log/all-browsers.php:21
1373
- msgid "Browser Statistics"
1374
- msgstr ""
1375
-
1376
- #: includes/log/all-browsers.php:29 includes/log/all-browsers.php:113
1377
- #: includes/log/all-browsers.php:248 includes/log/exclusions.php:72
1378
- #: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
1379
- #: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
1380
- #: includes/log/last-visitor.php:67 includes/log/online.php:17
1381
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
1382
- #: includes/log/top-countries.php:26 includes/log/top-pages.php:28
1383
- #: includes/log/top-pages.php:148 includes/log/top-referring.php:77
1384
- #: includes/log/top-visitors.php:40
1385
- msgid "Click to toggle"
1386
- msgstr ""
1387
-
1388
- #: includes/log/all-browsers.php:30 wp-statistics.php:413 wp-statistics.php:455
1389
- #: wp-statistics.php:511
1390
- msgid "Browsers"
1391
- msgstr ""
1392
-
1393
- #: includes/log/all-browsers.php:57
1394
- msgid "Browsers by type"
1395
- msgstr ""
1396
-
1397
- #: includes/log/all-browsers.php:114 includes/log/widgets/top.visitors.php:18
1398
- #: includes/optimization/tabs/wps-optimization-resources.php:302
1399
- msgid "Platform"
1400
- msgstr ""
1401
-
1402
- #: includes/log/all-browsers.php:141
1403
- msgid "Browsers by platform"
1404
- msgstr ""
1405
-
1406
- #: includes/log/all-browsers.php:249
1407
- msgid "%s Version"
1408
- msgstr ""
1409
-
1410
- #: includes/log/exclusions.php:8
1411
- msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1412
- msgstr ""
1413
-
1414
- #: includes/log/exclusions.php:64
1415
- msgid "Exclusions Statistics"
1416
- msgstr ""
1417
-
1418
- #: includes/functions/functions.php:959
1419
- msgid "10 Days"
1420
- msgstr ""
1421
-
1422
- #: includes/functions/functions.php:959
1423
- msgid "20 Days"
1424
- msgstr ""
1425
-
1426
- #: includes/functions/functions.php:959
1427
- msgid "30 Days"
1428
- msgstr ""
1429
-
1430
- #: includes/functions/functions.php:959
1431
- msgid "2 Months"
1432
- msgstr ""
1433
-
1434
- #: includes/functions/functions.php:959
1435
- msgid "3 Months"
1436
- msgstr ""
1437
-
1438
- #: includes/functions/functions.php:959
1439
- msgid "6 Months"
1440
- msgstr ""
1441
-
1442
- #: includes/functions/functions.php:959
1443
- msgid "9 Months"
1444
- msgstr ""
1445
-
1446
- #: includes/functions/functions.php:959
1447
- msgid "1 Year"
1448
- msgstr ""
1449
-
1450
- #: includes/log/exclusions.php:73
1451
- msgid "Exclusions Statistical Chart"
1452
- msgstr ""
1453
-
1454
- #: includes/log/exclusions.php:95
1455
- msgid "Excluded hits in the last"
1456
- msgstr ""
1457
-
1458
- #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1459
- #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:42
1460
- #: includes/log/widgets/search.php:42
1461
- #: includes/optimization/tabs/wps-optimization-purging.php:208
1462
- msgid "days"
1463
- msgstr ""
1464
-
1465
- #: includes/log/exclusions.php:116
1466
- msgid "Number of excluded hits"
1467
- msgstr ""
1468
-
1469
- #: includes/log/hit-statistics.php:27
1470
- msgid "Hits Statistics Chart"
1471
- msgstr ""
1472
-
1473
- #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:42
1474
- msgid "Hits in the last"
1475
- msgstr ""
1476
-
1477
- #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:63
1478
- msgid "Number of visits and visitors"
1479
- msgstr ""
1480
-
1481
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1482
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:24
1483
- #: includes/log/widgets/summary.php:24
1484
- msgid "Visit"
1485
- msgstr ""
1486
-
1487
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1488
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:23
1489
- #: includes/log/widgets/summary.php:23
1490
- msgid "Visitor"
1491
- msgstr ""
1492
-
1493
- #: includes/log/last-search.php:65
1494
- msgid "Latest Search Word Statistics"
1495
- msgstr ""
1496
-
1497
- #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1498
- #: includes/log/online.php:50 includes/log/widgets/google.map.php:68
1499
- #: includes/log/widgets/jqv.map.php:55 includes/log/widgets/recent.php:14
1500
- #: includes/log/widgets/words.php:27
1501
- msgid "#hash#"
1502
- msgstr ""
1503
-
1504
- #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1505
- #: includes/log/online.php:55 includes/log/top-referring.php:112
1506
- #: includes/log/widgets/recent.php:19 includes/log/widgets/words.php:42
1507
- #: includes/settings/tabs/wps-overview-display.php:60
1508
- msgid "Map"
1509
- msgstr ""
1510
-
1511
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1512
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1513
- #: includes/log/top-referring.php:153
1514
- msgid "Page"
1515
- msgstr ""
1516
-
1517
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1518
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1519
- #: includes/log/top-referring.php:153
1520
- msgid "From"
1521
- msgstr ""
1522
-
1523
- #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1524
- #: includes/log/top-referring.php:67 includes/log/top-referring.php:70
1525
- #: includes/optimization/tabs/wps-optimization-purging.php:192 widget.php:296
1526
- msgid "All"
1527
- msgstr ""
1528
-
1529
- #: includes/log/last-visitor.php:68
1530
- msgid "Recent Visitor Statistics"
1531
- msgstr ""
1532
-
1533
- #: includes/log/online.php:11 includes/log/online.php:18
1534
- msgid "Online Users"
1535
- msgstr ""
1536
-
1537
- #: includes/log/online.php:75
1538
- msgid "Online for "
1539
- msgstr ""
1540
-
1541
- #: includes/log/page-statistics.php:26
1542
- msgid "Page Trend for Post ID"
1543
- msgstr ""
1544
-
1545
- #: includes/log/page-statistics.php:35
1546
- msgid "Page Trend"
1547
- msgstr ""
1548
-
1549
- #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1550
- msgid "Search Engine Referral Statistics"
1551
- msgstr ""
1552
-
1553
- #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:42
1554
- msgid "Search engine referrals in the last"
1555
- msgstr ""
1556
-
1557
- #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:63
1558
- msgid "Number of referrals"
1559
- msgstr ""
1560
-
1561
- #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1562
- #: includes/log/widgets/quickstats.php:58
1563
- #: includes/log/widgets/quickstats.php:105 includes/log/widgets/search.php:77
1564
- #: includes/log/widgets/summary.php:58 includes/log/widgets/summary.php:105
1565
- msgid "Total"
1566
- msgstr ""
1567
-
1568
- #: includes/log/top-countries.php:18 includes/log/top-countries.php:27
1569
- msgid "Top Countries"
1570
- msgstr ""
1571
-
1572
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:9
1573
- #: includes/log/widgets/top.visitors.php:11
1574
- msgid "Rank"
1575
- msgstr ""
1576
-
1577
- #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:10
1578
- #: includes/log/widgets/top.visitors.php:13
1579
- msgid "Flag"
1580
- msgstr ""
1581
-
1582
- #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:11
1583
- #: includes/log/widgets/top.visitors.php:14
1584
- msgid "Country"
1585
- msgstr ""
1586
-
1587
- #: includes/log/top-countries.php:34 includes/log/widgets/countries.php:12
1588
- msgid "Visitor Count"
1589
- msgstr ""
1590
-
1591
- #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
1592
- msgid "Top Pages"
1593
- msgstr ""
1594
-
1595
- #: includes/log/top-pages.php:29
1596
- msgid "Top 5 Pages Trends"
1597
- msgstr ""
1598
-
1599
- #: includes/log/top-pages.php:60
1600
- msgid "Top 5 Page Trending Stats"
1601
- msgstr ""
1602
-
1603
- #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
1604
- msgid "Number of Hits"
1605
- msgstr ""
1606
-
1607
- #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:13
1608
- msgid "No page title found"
1609
- msgstr ""
1610
-
1611
- #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:16
1612
- #: includes/optimization/tabs/wps-optimization-historical.php:37
1613
- #: includes/settings/tabs/wps-general.php:122
1614
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1615
- msgid "Visits"
1616
- msgstr ""
1617
-
1618
- #: includes/log/top-referring.php:4
1619
- msgid "To be added soon"
1620
- msgstr ""
1621
-
1622
- #: includes/log/top-referring.php:79
1623
- msgid "Referring sites from"
1624
- msgstr ""
1625
-
1626
- #: includes/log/top-referring.php:137 includes/log/widgets/referring.php:29
1627
- msgid "References"
1628
- msgstr ""
1629
-
1630
- #: includes/log/top-visitors.php:12
1631
- msgid "Top 100 Visitors Today"
1632
- msgstr ""
1633
-
1634
- #: includes/log/log.php:10
1635
- msgid "About WP Statistics Version %s"
1636
- msgstr ""
1637
-
1638
- #: includes/log/widgets/about.php:11
1639
- msgid "Website"
1640
- msgstr ""
1641
-
1642
- #: includes/log/widgets/about.php:12
1643
- msgid "Rate and Review"
1644
- msgstr ""
1645
-
1646
- #: includes/log/widgets/about.php:16
1647
- msgid "More Information"
1648
- msgstr ""
1649
-
1650
- #: includes/log/widgets/about.php:25 includes/settings/tabs/wps-about.php:12
1651
- msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1652
- msgstr ""
1653
-
1654
- #: includes/log/widgets/browsers.php:34
1655
- msgid "Other"
1656
- msgstr ""
1657
-
1658
- #: wp-statistics.php:445
1659
- msgid "Today Visitors Map"
1660
- msgstr ""
1661
-
1662
- #: includes/log/widgets/referring.php:30
1663
- msgid "Address"
1664
- msgstr ""
1665
-
1666
- #: includes/log/widgets/quickstats.php:12 includes/log/widgets/summary.php:12
1667
- msgid "User(s) Online"
1668
- msgstr ""
1669
-
1670
- #: includes/log/widgets/quickstats.php:28
1671
- #: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
1672
- #: includes/log/widgets/summary.php:80
1673
- msgid "Today"
1674
- msgstr ""
1675
-
1676
- #: includes/log/widgets/quickstats.php:34
1677
- #: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
1678
- #: includes/log/widgets/summary.php:81
1679
- msgid "Yesterday"
1680
- msgstr ""
1681
-
1682
- #: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
1683
- msgid "Daily Total"
1684
- msgstr ""
1685
-
1686
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
1687
- msgid "Current Time and Date"
1688
- msgstr ""
1689
-
1690
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
1691
- msgid "(Adjustment)"
1692
- msgstr ""
1693
-
1694
- #: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
1695
- msgid "Date: %s"
1696
- msgstr ""
1697
-
1698
- #: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
1699
- msgid "Time: %s"
1700
- msgstr ""
1701
-
1702
- #: includes/log/widgets/top.visitors.php:12
1703
- #: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:337
1704
- #: wp-statistics.php:416 wp-statistics.php:514
1705
- msgid "Hits"
1706
- msgstr ""
1707
-
1708
- #: includes/log/widgets/top.visitors.php:15
1709
- msgid "IP"
1710
- msgstr ""
1711
-
1712
- #: includes/log/widgets/top.visitors.php:17
1713
- msgid "Agent"
1714
- msgstr ""
1715
-
1716
- #: includes/log/widgets/top.visitors.php:19
1717
- #: includes/optimization/tabs/wps-optimization-resources.php:291
1718
- msgid "Version"
1719
- msgstr ""
1720
-
1721
- #: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:284
1722
- #: includes/optimization/wps-optimization.php:6
1723
- msgid "Access denied!"
1724
- msgstr ""
1725
-
1726
- #: ajax.php:31
1727
- msgid "%s agent data deleted successfully."
1728
- msgstr ""
1729
-
1730
- #: ajax.php:34
1731
- msgid "No agent data found to remove!"
1732
- msgstr ""
1733
-
1734
- #: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
1735
- msgid "Please select the desired items."
1736
- msgstr ""
1737
-
1738
- #: ajax.php:62
1739
- msgid "%s platform data deleted successfully."
1740
- msgstr ""
1741
-
1742
- #: ajax.php:65
1743
- msgid "No platform data found to remove!"
1744
- msgstr ""
1745
-
1746
- #: includes/functions/functions.php:1051
1747
- msgid "%s table data deleted successfully."
1748
- msgstr ""
1749
-
1750
- #: includes/functions/functions.php:1055
1751
- msgid "Error, %s not emptied!"
1752
- msgstr ""
1753
-
1754
- #: includes/optimization/tabs/wps-optimization-database.php:5
1755
- msgid "Database Setup"
1756
- msgstr ""
1757
-
1758
- #: includes/optimization/tabs/wps-optimization-database.php:10
1759
- msgid "Re-run Install"
1760
- msgstr ""
1761
-
1762
- #: includes/optimization/tabs/wps-optimization-database.php:14
1763
- msgid "Install Now!"
1764
- msgstr ""
1765
-
1766
- #: includes/optimization/tabs/wps-optimization-database.php:15
1767
- 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."
1768
- msgstr ""
1769
-
1770
- #: includes/optimization/tabs/wps-optimization-database.php:20
1771
- msgid "Database Index"
1772
- msgstr ""
1773
-
1774
- #: includes/optimization/tabs/wps-optimization-database.php:25
1775
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1776
- #: wp-statistics.php:414 wp-statistics.php:512
1777
- msgid "Countries"
1778
- msgstr ""
1779
-
1780
- #: includes/optimization/tabs/wps-optimization-database.php:42
1781
- #: includes/optimization/tabs/wps-optimization-database.php:74
1782
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1783
- #: includes/optimization/tabs/wps-optimization-updates.php:40
1784
- msgid "Update Now!"
1785
- msgstr ""
1786
-
1787
- #: includes/optimization/tabs/wps-optimization-database.php:43
1788
- 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."
1789
- msgstr ""
1790
-
1791
- #: includes/optimization/tabs/wps-optimization-database.php:44
1792
- #: includes/optimization/tabs/wps-optimization-database.php:108
1793
- msgid "This operation could take a long time on installs with many rows in the visitors table."
1794
- msgstr ""
1795
-
1796
- #: includes/optimization/tabs/wps-optimization-database.php:50
1797
- 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."
1798
- msgstr ""
1799
-
1800
- #: includes/optimization/tabs/wps-optimization-database.php:51
1801
- #: includes/optimization/tabs/wps-optimization-database.php:83
1802
- #: includes/optimization/tabs/wps-optimization-database.php:114
1803
- msgid "Congratulations, your installation is already up to date, nothing to do."
1804
- msgstr ""
1805
-
1806
- #: includes/optimization/tabs/wps-optimization-export.php:8
1807
- #: includes/optimization/wps-optimization.php:235
1808
- msgid "Export"
1809
- msgstr ""
1810
-
1811
- #: includes/optimization/tabs/wps-optimization-export.php:13
1812
- msgid "Export from"
1813
- msgstr ""
1814
-
1815
- #: includes/optimization/tabs/wps-optimization-export.php:18
1816
- #: includes/optimization/tabs/wps-optimization-export.php:37
1817
- #: includes/optimization/tabs/wps-optimization-purging.php:185
1818
- #: includes/optimization/tabs/wps-optimization-purging.php:242
1819
- #: includes/optimization/tabs/wps-optimization-purging.php:266
1820
- #: includes/settings/tabs/wps-notifications.php:134
1821
- #: includes/settings/tabs/wps-notifications.php:164
1822
- msgid "Please select"
1823
- msgstr ""
1824
-
1825
- #: includes/optimization/tabs/wps-optimization-export.php:26
1826
- msgid "Select the table for the output file."
1827
- msgstr ""
1828
-
1829
- #: includes/optimization/tabs/wps-optimization-export.php:32
1830
- msgid "Export To"
1831
- msgstr ""
1832
-
1833
- #: includes/optimization/tabs/wps-optimization-export.php:42
1834
- msgid "Select the output file type."
1835
- msgstr ""
1836
-
1837
- #: includes/optimization/tabs/wps-optimization-export.php:48
1838
- msgid "Include Header Row"
1839
- msgstr ""
1840
-
1841
- #: includes/optimization/tabs/wps-optimization-export.php:53
1842
- msgid "Include a header row as the first line of the exported file."
1843
- msgstr ""
1844
-
1845
- #: includes/optimization/tabs/wps-optimization-export.php:54
1846
- msgid "Start Now!"
1847
- msgstr ""
1848
-
1849
- #: includes/optimization/tabs/wps-optimization-historical.php:15
1850
- msgid "Historical Values"
1851
- msgstr ""
1852
-
1853
- #: includes/optimization/tabs/wps-optimization-historical.php:20
1854
- msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1855
- msgstr ""
1856
-
1857
- #: includes/optimization/tabs/wps-optimization-historical.php:26
1858
- #: includes/settings/tabs/wps-general.php:138
1859
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1860
- #: wp-statistics.php:423 wp-statistics.php:521
1861
- msgid "Visitors"
1862
- msgstr ""
1863
-
1864
- #: includes/optimization/tabs/wps-optimization-historical.php:31
1865
- msgid "Number of historical number of visitors to the site (current value is %s)."
1866
- msgstr ""
1867
-
1868
- #: includes/optimization/tabs/wps-optimization-historical.php:42
1869
- msgid "Number of historical number of visits to the site (current value is %s)."
1870
- msgstr ""
1871
-
1872
- #: includes/optimization/tabs/wps-optimization-historical.php:48
1873
- msgid "Update now!"
1874
- msgstr ""
1875
-
1876
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1877
- #: includes/optimization/tabs/wps-optimization-purging.php:43
1878
- #: includes/optimization/tabs/wps-optimization-purging.php:75
1879
- #: includes/optimization/tabs/wps-optimization-purging.php:107
1880
- #: includes/optimization/tabs/wps-optimization-purging.php:141
1881
- msgid "Are you sure?"
1882
- msgstr ""
1883
-
1884
- #: includes/optimization/tabs/wps-optimization-purging.php:175
1885
- msgid "Data"
1886
- msgstr ""
1887
-
1888
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1889
- msgid "Empty Table"
1890
- msgstr ""
1891
-
1892
- #: includes/optimization/tabs/wps-optimization-purging.php:194
1893
- msgid "All data table will be lost."
1894
- msgstr ""
1895
-
1896
- #: includes/optimization/tabs/wps-optimization-purging.php:195
1897
- msgid "Clear now!"
1898
- msgstr ""
1899
-
1900
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1901
- msgid "Purge records older than"
1902
- msgstr ""
1903
-
1904
- #: includes/optimization/tabs/wps-optimization-purging.php:209
1905
- msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1906
- msgstr ""
1907
-
1908
- #: includes/optimization/tabs/wps-optimization-purging.php:210
1909
- #: includes/optimization/tabs/wps-optimization-purging.php:225
1910
- msgid "Purge now!"
1911
- msgstr ""
1912
-
1913
- #: includes/optimization/tabs/wps-optimization-purging.php:232
1914
- msgid "Delete User Agent Types"
1915
- msgstr ""
1916
-
1917
- #: includes/optimization/tabs/wps-optimization-purging.php:237
1918
- msgid "Delete Agents"
1919
- msgstr ""
1920
-
1921
- #: includes/optimization/tabs/wps-optimization-purging.php:252
1922
- msgid "All visitor data will be lost for this agent type."
1923
- msgstr ""
1924
-
1925
- #: includes/optimization/tabs/wps-optimization-purging.php:253
1926
- #: includes/optimization/tabs/wps-optimization-purging.php:277
1927
- msgid "Delete now!"
1928
- msgstr ""
1929
-
1930
- #: includes/optimization/tabs/wps-optimization-purging.php:261
1931
- msgid "Delete Platforms"
1932
- msgstr ""
1933
-
1934
- #: includes/optimization/tabs/wps-optimization-purging.php:276
1935
- msgid "All visitor data will be lost for this platform type."
1936
- msgstr ""
1937
-
1938
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1939
- msgid "Resources"
1940
- msgstr ""
1941
-
1942
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1943
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1944
- msgid "Memory usage in PHP"
1945
- msgstr ""
1946
-
1947
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1948
- msgid "Byte"
1949
- msgstr ""
1950
-
1951
- #: includes/optimization/tabs/wps-optimization-resources.php:33
1952
- msgid "PHP Memory Limit"
1953
- msgstr ""
1954
-
1955
- #: includes/optimization/tabs/wps-optimization-resources.php:38
1956
- msgid "The memory limit a script is allowed to consume, set in php.ini."
1957
- msgstr ""
1958
-
1959
- #: includes/optimization/tabs/wps-optimization-resources.php:44
1960
- #: includes/optimization/tabs/wps-optimization-resources.php:55
1961
- #: includes/optimization/tabs/wps-optimization-resources.php:66
1962
- #: includes/optimization/tabs/wps-optimization-resources.php:77
1963
- #: includes/optimization/tabs/wps-optimization-resources.php:88
1964
- #: includes/optimization/tabs/wps-optimization-resources.php:99
1965
- #: includes/optimization/tabs/wps-optimization-resources.php:110
1966
- msgid "Number of rows in the %s table"
1967
- msgstr ""
1968
-
1969
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1970
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1971
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1972
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1973
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1974
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1975
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1976
- msgid "Row"
1977
- msgstr ""
1978
-
1979
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1980
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1981
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1982
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1983
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1984
- #: includes/optimization/tabs/wps-optimization-resources.php:104
1985
- #: includes/optimization/tabs/wps-optimization-resources.php:115
1986
- msgid "Number of rows"
1987
- msgstr ""
1988
-
1989
- #: includes/optimization/tabs/wps-optimization-resources.php:120
1990
- msgid "Version Info"
1991
- msgstr ""
1992
-
1993
- #: includes/optimization/tabs/wps-optimization-resources.php:125
1994
- msgid "WP Statistics Version"
1995
- msgstr ""
1996
-
1997
- #: includes/optimization/tabs/wps-optimization-resources.php:130
1998
- msgid "The WP Statistics version you are running."
1999
- msgstr ""
2000
-
2001
- #: includes/optimization/tabs/wps-optimization-resources.php:136
2002
- msgid "PHP Version"
2003
- msgstr ""
2004
-
2005
- #: includes/optimization/tabs/wps-optimization-resources.php:141
2006
- msgid "The PHP version you are running."
2007
- msgstr ""
2008
-
2009
- #: includes/optimization/tabs/wps-optimization-resources.php:147
2010
- msgid "PHP Safe Mode"
2011
- msgstr ""
2012
-
2013
- #: includes/optimization/tabs/wps-optimization-resources.php:152
2014
- msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2015
- msgstr ""
2016
-
2017
- #: includes/optimization/tabs/wps-optimization-resources.php:158
2018
- msgid "jQuery Version"
2019
- msgstr ""
2020
-
2021
- #: includes/optimization/tabs/wps-optimization-resources.php:163
2022
- msgid "The jQuery version you are running."
2023
- msgstr ""
2024
-
2025
- #: includes/optimization/tabs/wps-optimization-resources.php:169
2026
- msgid "cURL Version"
2027
- msgstr ""
2028
-
2029
- #: includes/optimization/tabs/wps-optimization-resources.php:173
2030
- msgid "cURL not installed"
2031
- msgstr ""
2032
-
2033
- #: includes/optimization/tabs/wps-optimization-resources.php:174
2034
- msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2035
- msgstr ""
2036
-
2037
- #: includes/optimization/tabs/wps-optimization-resources.php:180
2038
- msgid "BC Math"
2039
- msgstr ""
2040
-
2041
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2042
- msgid "Installed"
2043
- msgstr ""
2044
-
2045
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2046
- msgid "Not installed"
2047
- msgstr ""
2048
-
2049
- #: includes/optimization/tabs/wps-optimization-resources.php:185
2050
- 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."
2051
- msgstr ""
2052
-
2053
- #: includes/optimization/tabs/wps-optimization-resources.php:190
2054
- msgid "File Info"
2055
- msgstr ""
2056
-
2057
- #: includes/optimization/tabs/wps-optimization-resources.php:195
2058
- msgid "GeoIP Database"
2059
- msgstr ""
2060
-
2061
- #: includes/optimization/tabs/wps-optimization-resources.php:204
2062
- msgid "Database file does not exist."
2063
- msgstr ""
2064
-
2065
- #: includes/optimization/tabs/wps-optimization-resources.php:206
2066
- #: includes/optimization/tabs/wps-optimization-resources.php:225
2067
- #: includes/optimization/tabs/wps-optimization-resources.php:244
2068
- msgid ", created on "
2069
- msgstr ""
2070
-
2071
- #: includes/optimization/tabs/wps-optimization-resources.php:208
2072
- msgid "The file size and date of the GeoIP database."
2073
- msgstr ""
2074
-
2075
- #: includes/optimization/tabs/wps-optimization-resources.php:214
2076
- msgid "browscap.ini File"
2077
- msgstr ""
2078
-
2079
- #: includes/optimization/tabs/wps-optimization-resources.php:223
2080
- msgid "browscap.ini file does not exist."
2081
- msgstr ""
2082
-
2083
- #: includes/optimization/tabs/wps-optimization-resources.php:227
2084
- msgid "The file size and date of the browscap.ini file."
2085
- msgstr ""
2086
-
2087
- #: includes/optimization/tabs/wps-optimization-resources.php:233
2088
- msgid "browscap Cache File"
2089
- msgstr ""
2090
-
2091
- #: includes/optimization/tabs/wps-optimization-resources.php:242
2092
- msgid "browscap cache file does not exist."
2093
- msgstr ""
2094
-
2095
- #: includes/optimization/tabs/wps-optimization-resources.php:246
2096
- msgid "The file size and date of the browscap cache file."
2097
- msgstr ""
2098
-
2099
- #: includes/optimization/tabs/wps-optimization-resources.php:251
2100
- msgid "Client Info"
2101
- msgstr ""
2102
-
2103
- #: includes/optimization/tabs/wps-optimization-resources.php:256
2104
- msgid "Client IP"
2105
- msgstr ""
2106
-
2107
- #: includes/optimization/tabs/wps-optimization-resources.php:261
2108
- msgid "The client IP address."
2109
- msgstr ""
2110
-
2111
- #: includes/optimization/tabs/wps-optimization-resources.php:267
2112
- msgid "User Agent"
2113
- msgstr ""
2114
-
2115
- #: includes/optimization/tabs/wps-optimization-resources.php:272
2116
- msgid "The client user agent string."
2117
- msgstr ""
2118
-
2119
- #: includes/optimization/tabs/wps-optimization-resources.php:278
2120
- msgid "Browser"
2121
- msgstr ""
2122
-
2123
- #: includes/optimization/tabs/wps-optimization-resources.php:285
2124
- msgid "The detected client browser."
2125
- msgstr ""
2126
-
2127
- #: includes/optimization/tabs/wps-optimization-resources.php:296
2128
- msgid "The detected client browser version."
2129
- msgstr ""
2130
-
2131
- #: includes/optimization/tabs/wps-optimization-resources.php:307
2132
- msgid "The detected client platform."
2133
- msgstr ""
2134
-
2135
- #: includes/optimization/tabs/wps-optimization-updates.php:4
2136
- msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2137
- msgstr ""
2138
-
2139
- #: includes/optimization/tabs/wps-optimization-updates.php:16
2140
- msgid "GeoIP Options"
2141
- msgstr ""
2142
-
2143
- #: includes/optimization/tabs/wps-optimization-updates.php:26
2144
- msgid "Updates any unknown location data in the database, this may take a while"
2145
- msgstr ""
2146
-
2147
- #: includes/optimization/tabs/wps-optimization-updates.php:31
2148
- #: includes/settings/tabs/wps-general.php:66
2149
- msgid "IP Addresses"
2150
- msgstr ""
2151
-
2152
- #: includes/optimization/tabs/wps-optimization-updates.php:36
2153
- #: includes/settings/tabs/wps-general.php:71
2154
- msgid "Hash IP Addresses"
2155
- msgstr ""
2156
-
2157
- #: includes/optimization/tabs/wps-optimization-updates.php:41
2158
- 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"
2159
- msgstr ""
2160
-
2161
- #: includes/optimization/wps-optimization.php:43
2162
- msgid "IP Addresses replaced with hash values."
2163
- msgstr ""
2164
-
2165
- #: includes/optimization/wps-optimization.php:51
2166
- msgid "Install routine complete."
2167
- msgstr ""
2168
-
2169
- #: includes/optimization/wps-optimization.php:234
2170
- msgid "Resources/Information"
2171
- msgstr ""
2172
-
2173
- #: includes/optimization/wps-optimization.php:236
2174
- msgid "Purging"
2175
- msgstr ""
2176
-
2177
- #: includes/optimization/wps-optimization.php:237
2178
- msgid "Database"
2179
- msgstr ""
2180
-
2181
- #: includes/optimization/wps-optimization.php:238
2182
- msgid "Updates"
2183
- msgstr ""
2184
-
2185
- #: includes/optimization/wps-optimization.php:239
2186
- msgid "Historical"
2187
- msgstr ""
2188
-
2189
- #: includes/settings/tabs/wps-about.php:8
2190
- msgid "WP Statistics V%s"
2191
- msgstr ""
2192
-
2193
- #: includes/settings/tabs/wps-about.php:28
2194
- msgid "Visit Us Online"
2195
- msgstr ""
2196
-
2197
- #: includes/settings/tabs/wps-about.php:32
2198
- msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2199
- msgstr ""
2200
-
2201
- #: includes/settings/tabs/wps-about.php:32
2202
- msgid "website"
2203
- msgstr ""
2204
-
2205
- #: includes/settings/tabs/wps-about.php:36
2206
- msgid "Rate and Review at WordPress.org"
2207
- msgstr ""
2208
-
2209
- #: includes/settings/tabs/wps-about.php:40
2210
- msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2211
- msgstr ""
2212
-
2213
- #: includes/settings/tabs/wps-about.php:40
2214
- msgid "rating and review"
2215
- msgstr ""
2216
-
2217
- #: includes/settings/tabs/wps-about.php:40
2218
- msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2219
- msgstr ""
2220
-
2221
- #: includes/settings/tabs/wps-about.php:44
2222
- msgid "Translations"
2223
- msgstr ""
2224
-
2225
- #: includes/settings/tabs/wps-about.php:48
2226
- msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2227
- msgstr ""
2228
-
2229
- #: includes/settings/tabs/wps-about.php:48
2230
- msgid "translation collaboration site"
2231
- msgstr ""
2232
-
2233
- #: includes/settings/tabs/wps-about.php:48
2234
- msgid "drop us a line"
2235
- msgstr ""
2236
-
2237
- #: includes/settings/tabs/wps-about.php:52
2238
- msgid "Support"
2239
- msgstr ""
2240
-
2241
- #: includes/settings/tabs/wps-about.php:57
2242
- 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:"
2243
- msgstr ""
2244
-
2245
- #: includes/settings/tabs/wps-about.php:60
2246
- #: includes/settings/tabs/wps-about.php:61
2247
- msgid "Have you read the %s?"
2248
- msgstr ""
2249
-
2250
- #: includes/settings/tabs/wps-about.php:60
2251
- msgid "FAQs"
2252
- msgstr ""
2253
-
2254
- #: includes/settings/tabs/wps-about.php:61
2255
- msgid "manual"
2256
- msgstr ""
2257
-
2258
- #: includes/settings/tabs/wps-about.php:62
2259
- msgid "Have you search the %s for a similar issue?"
2260
- msgstr ""
2261
-
2262
- #: includes/settings/tabs/wps-about.php:62
2263
- msgid "support forum"
2264
- msgstr ""
2265
-
2266
- #: includes/settings/tabs/wps-about.php:63
2267
- msgid "Have you search the Internet for any error messages you are receiving?"
2268
- msgstr ""
2269
-
2270
- #: includes/settings/tabs/wps-about.php:64
2271
- msgid "Make sure you have access to your PHP error logs."
2272
- msgstr ""
2273
-
2274
- #: includes/settings/tabs/wps-about.php:67
2275
- msgid "And a few things to double-check:"
2276
- msgstr ""
2277
-
2278
- #: includes/settings/tabs/wps-about.php:70
2279
- msgid "How's your memory_limit in php.ini?"
2280
- msgstr ""
2281
-
2282
- #: includes/settings/tabs/wps-about.php:71
2283
- msgid "Have you tried disabling any other plugins you may have installed?"
2284
- msgstr ""
2285
-
2286
- #: includes/settings/tabs/wps-about.php:72
2287
- msgid "Have you tried using the default WordPress theme?"
2288
- msgstr ""
2289
-
2290
- #: includes/settings/tabs/wps-about.php:73
2291
- msgid "Have you double checked the plugin settings?"
2292
- msgstr ""
2293
-
2294
- #: includes/settings/tabs/wps-about.php:74
2295
- msgid "Do you have all the required PHP extensions installed?"
2296
- msgstr ""
2297
-
2298
- #: includes/settings/tabs/wps-about.php:75
2299
- msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2300
- msgstr ""
2301
-
2302
- #: includes/settings/tabs/wps-about.php:76
2303
- msgid "Have you checked your PHP and web server error logs?"
2304
- msgstr ""
2305
-
2306
- #: includes/settings/tabs/wps-about.php:79
2307
- msgid "Still not having any luck?"
2308
- msgstr ""
2309
-
2310
- #: includes/settings/tabs/wps-about.php:79
2311
- msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2312
- msgstr ""
2313
-
2314
- #: includes/settings/tabs/wps-about.php:79
2315
- msgid "WordPress.org support forum"
2316
- msgstr ""
2317
-
2318
- #: includes/settings/tabs/wps-about.php:83
2319
- msgid "Alternatively %s support is available as well."
2320
- msgstr ""
2321
-
2322
- #: includes/settings/tabs/wps-about.php:83
2323
- msgid "Farsi"
2324
- msgstr ""
2325
-
2326
- #: includes/settings/tabs/wps-exclusions.php:21
2327
- msgid "WP Statistics Honey Pot Page"
2328
- msgstr ""
2329
-
2330
- #: includes/settings/tabs/wps-exclusions.php:22
2331
- msgid "This is the honey pot for WP Statistics to use, do not delete."
2332
- msgstr ""
2333
-
2334
- #: includes/settings/tabs/wps-access-level.php:23
2335
- #: includes/settings/wps-settings.php:103
2336
- msgid "Access Levels"
2337
- msgstr ""
2338
-
2339
- #: includes/settings/tabs/wps-access-level.php:52
2340
- msgid "Required user level to view WP Statistics"
2341
- msgstr ""
2342
-
2343
- #: includes/settings/tabs/wps-access-level.php:67
2344
- msgid "Required user level to manage WP Statistics"
2345
- msgstr ""
2346
-
2347
- #: includes/settings/tabs/wps-access-level.php:75
2348
- msgid "See the %s for details on capability levels."
2349
- msgstr ""
2350
-
2351
- #: includes/settings/tabs/wps-access-level.php:75
2352
- msgid "WordPress Roles and Capabilities page"
2353
- msgstr ""
2354
-
2355
- #: includes/settings/tabs/wps-access-level.php:76
2356
- msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2357
- msgstr ""
2358
-
2359
- #: includes/settings/tabs/wps-access-level.php:77
2360
- msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2361
- msgstr ""
2362
-
2363
- #: includes/settings/tabs/wps-access-level.php:78
2364
- msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2365
- msgstr ""
2366
-
2367
- #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2368
- #: includes/settings/wps-settings.php:104 wp-statistics.php:415
2369
- #: wp-statistics.php:513
2370
- msgid "Exclusions"
2371
- msgstr ""
2372
-
2373
- #: includes/settings/tabs/wps-exclusions.php:50
2374
- msgid "Record exclusions"
2375
- msgstr ""
2376
-
2377
- #: includes/settings/tabs/wps-exclusions.php:52
2378
- #: includes/settings/tabs/wps-exclusions.php:106
2379
- #: includes/settings/tabs/wps-exclusions.php:133
2380
- #: includes/settings/tabs/wps-exclusions.php:150
2381
- msgid "Enable"
2382
- msgstr ""
2383
-
2384
- #: includes/settings/tabs/wps-exclusions.php:53
2385
- 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."
2386
- msgstr ""
2387
-
2388
- #: includes/settings/tabs/wps-exclusions.php:58
2389
- msgid "Exclude User Roles"
2390
- msgstr ""
2391
-
2392
- #: includes/settings/tabs/wps-exclusions.php:74
2393
- #: includes/settings/tabs/wps-exclusions.php:196
2394
- #: includes/settings/tabs/wps-exclusions.php:203
2395
- #: includes/settings/tabs/wps-exclusions.php:210
2396
- #: includes/settings/tabs/wps-exclusions.php:217
2397
- msgid "Exclude"
2398
- msgstr ""
2399
-
2400
- #: includes/settings/tabs/wps-exclusions.php:75
2401
- msgid "Exclude %s role from data collection."
2402
- msgstr ""
2403
-
2404
- #: includes/settings/tabs/wps-exclusions.php:81
2405
- msgid "IP/Robot Exclusions"
2406
- msgstr ""
2407
-
2408
- #: includes/settings/tabs/wps-exclusions.php:85
2409
- msgid "Robot list"
2410
- msgstr ""
2411
-
2412
- #: includes/settings/tabs/wps-exclusions.php:98
2413
- 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."
2414
- msgstr ""
2415
-
2416
- #: includes/settings/tabs/wps-exclusions.php:99
2417
- msgid "Reset to Default"
2418
- msgstr ""
2419
-
2420
- #: includes/settings/tabs/wps-exclusions.php:104
2421
- msgid "Force robot list update after upgrades"
2422
- msgstr ""
2423
-
2424
- #: includes/settings/tabs/wps-exclusions.php:107
2425
- 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."
2426
- msgstr ""
2427
-
2428
- #: includes/settings/tabs/wps-exclusions.php:112
2429
- msgid "Robot visit threshold"
2430
- msgstr ""
2431
-
2432
- #: includes/settings/tabs/wps-exclusions.php:115
2433
- msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2434
- msgstr ""
2435
-
2436
- #: includes/settings/tabs/wps-exclusions.php:120
2437
- msgid "Excluded IP address list"
2438
- msgstr ""
2439
-
2440
- #: includes/settings/tabs/wps-exclusions.php:123
2441
- msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2442
- msgstr ""
2443
-
2444
- #: includes/settings/tabs/wps-exclusions.php:124
2445
- msgid "Add 10.0.0.0"
2446
- msgstr ""
2447
-
2448
- #: includes/settings/tabs/wps-exclusions.php:125
2449
- msgid "Add 172.16.0.0"
2450
- msgstr ""
2451
-
2452
- #: includes/settings/tabs/wps-exclusions.php:126
2453
- msgid "Add 192.168.0.0"
2454
- msgstr ""
2455
-
2456
- #: includes/settings/tabs/wps-exclusions.php:131
2457
- msgid "Use honey pot"
2458
- msgstr ""
2459
-
2460
- #: includes/settings/tabs/wps-exclusions.php:134
2461
- msgid "Use a honey pot page to identify robots."
2462
- msgstr ""
2463
-
2464
- #: includes/settings/tabs/wps-exclusions.php:139
2465
- msgid "Honey pot post id"
2466
- msgstr ""
2467
-
2468
- #: includes/settings/tabs/wps-exclusions.php:142
2469
- msgid "The post id to use for the honeypot page."
2470
- msgstr ""
2471
-
2472
- #: includes/settings/tabs/wps-exclusions.php:143
2473
- msgid "Create a new honey pot page"
2474
- msgstr ""
2475
-
2476
- #: includes/settings/tabs/wps-exclusions.php:156
2477
- msgid "GeoIP Exclusions"
2478
- msgstr ""
2479
-
2480
- #: includes/settings/tabs/wps-exclusions.php:160
2481
- msgid "Excluded countries list"
2482
- msgstr ""
2483
-
2484
- #: includes/settings/tabs/wps-exclusions.php:163
2485
- 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."
2486
- msgstr ""
2487
-
2488
- #: includes/settings/tabs/wps-exclusions.php:168
2489
- msgid "Included countries list"
2490
- msgstr ""
2491
-
2492
- #: includes/settings/tabs/wps-exclusions.php:171
2493
- 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."
2494
- msgstr ""
2495
-
2496
- #: includes/settings/tabs/wps-exclusions.php:176
2497
- msgid "Host Exclusions"
2498
- msgstr ""
2499
-
2500
- #: includes/settings/tabs/wps-exclusions.php:180
2501
- msgid "Excluded hosts list"
2502
- msgstr ""
2503
-
2504
- #: includes/settings/tabs/wps-exclusions.php:183
2505
- msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2506
- msgstr ""
2507
-
2508
- #: includes/settings/tabs/wps-exclusions.php:185
2509
- 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."
2510
- msgstr ""
2511
-
2512
- #: includes/settings/tabs/wps-exclusions.php:190
2513
- msgid "Site URL Exclusions"
2514
- msgstr ""
2515
-
2516
- #: includes/settings/tabs/wps-exclusions.php:194
2517
- msgid "Excluded login page"
2518
- msgstr ""
2519
-
2520
- #: includes/settings/tabs/wps-exclusions.php:197
2521
- msgid "Exclude the login page for registering as a hit."
2522
- msgstr ""
2523
-
2524
- #: includes/settings/tabs/wps-exclusions.php:201
2525
- msgid "Excluded admin pages"
2526
- msgstr ""
2527
-
2528
- #: includes/settings/tabs/wps-exclusions.php:204
2529
- msgid "Exclude the admin pages for registering as a hit."
2530
- msgstr ""
2531
-
2532
- #: includes/settings/tabs/wps-exclusions.php:208
2533
- msgid "Excluded RSS feeds"
2534
- msgstr ""
2535
-
2536
- #: includes/settings/tabs/wps-exclusions.php:211
2537
- msgid "Exclude the RSS feeds for registering as a hit."
2538
- msgstr ""
2539
-
2540
- #: includes/settings/tabs/wps-externals.php:162
2541
- msgid "browscap settings"
2542
- msgstr ""
2543
-
2544
- #: includes/settings/tabs/wps-externals.php:167
2545
- msgid "browscap usage"
2546
- msgstr ""
2547
-
2548
- #: includes/settings/tabs/wps-externals.php:52
2549
- #: includes/settings/tabs/wps-externals.php:76
2550
- #: includes/settings/tabs/wps-externals.php:109
2551
- #: includes/settings/tabs/wps-externals.php:172
2552
- #: includes/settings/tabs/wps-externals.php:196
2553
- #: includes/settings/tabs/wps-externals.php:236
2554
- #: includes/settings/tabs/wps-externals.php:260
2555
- #: includes/settings/tabs/wps-general.php:76
2556
- #: includes/settings/tabs/wps-general.php:92
2557
- #: includes/settings/tabs/wps-general.php:116
2558
- #: includes/settings/tabs/wps-general.php:132
2559
- #: includes/settings/tabs/wps-general.php:148
2560
- #: includes/settings/tabs/wps-general.php:160
2561
- #: includes/settings/tabs/wps-general.php:187
2562
- #: includes/settings/tabs/wps-general.php:199
2563
- #: includes/settings/tabs/wps-general.php:214
2564
- #: includes/settings/tabs/wps-general.php:228
2565
- #: includes/settings/tabs/wps-general.php:258
2566
- #: includes/settings/tabs/wps-general.php:270
2567
- #: includes/settings/tabs/wps-general.php:286
2568
- #: includes/settings/tabs/wps-general.php:325
2569
- #: includes/settings/tabs/wps-general.php:341
2570
- #: includes/settings/tabs/wps-maintenance.php:40
2571
- #: includes/settings/tabs/wps-maintenance.php:68
2572
- #: includes/settings/tabs/wps-notifications.php:69
2573
- #: includes/settings/tabs/wps-notifications.php:81
2574
- #: includes/settings/tabs/wps-notifications.php:93
2575
- #: includes/settings/tabs/wps-notifications.php:105
2576
- #: includes/settings/tabs/wps-notifications.php:121
2577
- #: includes/settings/tabs/wps-overview-display.php:34
2578
- #: includes/settings/tabs/wps-overview-display.php:54
2579
- #: includes/settings/tabs/wps-overview-display.php:94
2580
- #: includes/settings/tabs/wps-overview-display.php:106
2581
- msgid "Active"
2582
- msgstr ""
2583
-
2584
- #: includes/settings/tabs/wps-externals.php:173
2585
- msgid "The browscap database will be downloaded and used to detect robots."
2586
- msgstr ""
2587
-
2588
- #: includes/settings/tabs/wps-externals.php:179
2589
- msgid "Update browscap Info"
2590
- msgstr ""
2591
-
2592
- #: includes/settings/tabs/wps-externals.php:184
2593
- msgid "Download browscap Database"
2594
- msgstr ""
2595
-
2596
- #: includes/settings/tabs/wps-externals.php:65
2597
- #: includes/settings/tabs/wps-externals.php:185
2598
- #: includes/settings/tabs/wps-externals.php:249
2599
- msgid "Save changes on this page to download the update."
2600
- msgstr ""
2601
-
2602
- #: includes/settings/tabs/wps-externals.php:191
2603
- msgid "Schedule weekly update of browscap DB"
2604
- msgstr ""
2605
-
2606
- #: includes/settings/tabs/wps-externals.php:79
2607
- #: includes/settings/tabs/wps-externals.php:199
2608
- #: includes/settings/tabs/wps-externals.php:263
2609
- msgid "Next update will be"
2610
- msgstr ""
2611
-
2612
- #: includes/settings/tabs/wps-externals.php:215
2613
- msgid "Download of the browscap database will be scheduled for once a week."
2614
- msgstr ""
2615
-
2616
- #: includes/settings/tabs/wps-general.php:50
2617
- msgid "This will delete the manual when you save the settings, are you sure?"
2618
- msgstr ""
2619
-
2620
- #: includes/settings/tabs/wps-general.php:77
2621
- 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."
2622
- msgstr ""
2623
-
2624
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2625
- msgid "Users Online"
2626
- msgstr ""
2627
-
2628
- #: includes/settings/tabs/wps-general.php:87
2629
- msgid "User online"
2630
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp_statistics-ar.mo CHANGED
Binary file
languages/wp_statistics-ar.po CHANGED
@@ -2,2629 +2,2728 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-06 14:28:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
- "X-Generator: GlotPress/1.0-beta\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "&#151; You are running an unsupported version of PHP."
15
  msgstr "&#151; أنت تقوم بتشغيل إصدار PHP غير معتمد."
16
 
17
- #: wp-statistics.php:95
18
  msgid "WP Statistics Disabled"
19
  msgstr "إحصائيات ووردبريس معطلة"
20
 
21
- #: wp-statistics.php:99
22
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
23
  msgstr "إحصائيات ووردبريس وجدت إصدار PHP %s غير معتمد, الإضافة تتطلب إصدار PHP %s أو أعلى!"
24
 
25
- #: wp-statistics.php:101
26
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
27
  msgstr "يرجى الاتصال بموفر خدمة الاستضافة للترقية إلى إصدار معتمد أو عطل إحصائيات ووردبريس لإزالة هذه الرسالة."
28
 
29
- #: ajax.php:281
30
  msgid "ERROR: Widget not found!"
31
  msgstr "خطأ: القطعة غير موجود!"
32
 
33
- #: dashboard.php:103 includes/log/log.php:13
 
34
  msgid "Loading..."
35
  msgstr "تحميل..."
36
 
37
- #: dashboard.php:121 includes/log/log.php:2
 
38
  msgid "Reloading..."
39
  msgstr "إعادة تحميل ..."
40
 
41
- #: includes/log/top-visitors.php:41 wp-statistics.php:447
 
42
  msgid "Top Visitors"
43
  msgstr "كبار الزوار"
44
 
45
- #: wp-statistics.php:206
46
  msgid "optimization page"
47
  msgstr "صفحة التحسين"
48
 
49
- #: includes/settings/tabs/wps-maintenance.php:35
50
- #: includes/settings/tabs/wps-maintenance.php:63
51
  msgid "Enabled"
52
  msgstr "تمكين"
53
 
54
- #: includes/settings/tabs/wps-maintenance.php:30
55
  msgid "Purge Old Data Daily"
56
  msgstr "تطهير البيانات اليومية القديمة"
57
 
58
- #: includes/settings/tabs/wps-maintenance.php:41
59
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
60
  msgstr "سيتم تشغيل المهام المجدولة لووردبريس يوميا لتطهير أي بيانات قديمة من عدد محدد من الأيام."
61
 
62
- #: includes/settings/tabs/wps-maintenance.php:47
63
  msgid "Purge data older than"
64
  msgstr "تطهير البيانات الأقدم من"
65
 
66
- #: includes/settings/tabs/wps-maintenance.php:58
67
  msgid "Purge High Hit Count Visitors Daily"
68
  msgstr "تطهير النقرات العالية لعدد الزوار اليومي"
69
 
70
- #: includes/settings/tabs/wps-maintenance.php:69
71
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
72
  msgstr "سيتم تشغيل مهام ووردبريس المجدولة يوميا لتطهير أي إحصائيات بيانات مستخدمين حيث أن المستخدم لديه أكثر من عدد محدد من الزيارات في اليوم الواحد (الملقب أنها ربما تكون بوت)."
73
 
74
- #: includes/settings/tabs/wps-maintenance.php:81
75
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
76
  msgstr "عدد الزيارات المطلوبة لحذف الزائر. قيمة الحد الأدنى هو 10 نقرات. والقيم الغير صالحة ستعطل في وضع الصيانة اليومي."
77
 
78
- #: shortcode.php:184
79
  msgid "The post/page id to get page statistics on."
80
  msgstr "رقم المقال/الصفحة للحصول على احصائياتها."
81
 
82
- #: shortcode.php:181
83
  msgid "Post/Page ID"
84
  msgstr "رقم المقال/الصفحة"
85
 
86
- #: includes/functions/functions.php:424
87
  msgid "Ask.com"
88
  msgstr "Ask.com"
89
 
90
- #: shortcode.php:158
91
  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."
92
  msgstr "الجدول الزمني للحصول على إحصائية لـ, strtotime() (http://php.net/manual/en/datetime.formats.php) سيتم استخدامها لحساب ذلك. استخدام \"المجموع\" للحصول على كل التواريخ المسجلة."
93
 
94
- #: wp-statistics.php:180
95
  msgid "visitor tracking"
96
  msgstr "تتبع الزوار"
97
 
98
- #: wp-statistics.php:181
99
  msgid "geoip collection"
100
  msgstr "مجموعة geoip"
101
 
102
- #: wp-statistics.php:197
103
  msgid "visit database index"
104
  msgstr "زيارة فهرس قاعدة البيانات"
105
 
106
- #: wp-statistics.php:206
107
  msgid "Database updates are required, please go to %s and update the following: %s"
108
  msgstr "يجب تحديث قاعدة البيانات، يرجى الذهاب إلى %s وتحديث التالي: %s"
109
 
110
- #: wp-statistics.php:197
111
  msgid "countries database index"
112
  msgstr "دول فهرس قاعدة البيانات"
113
 
114
- #: wp-statistics.php:190
115
  msgid "search table"
116
  msgstr "جدول البحث"
117
 
118
- #: wp-statistics.php:184
119
  msgid "settings page"
120
  msgstr "صفحة الإعدادات"
121
 
122
- #: wp-statistics.php:184 wp-statistics.php:206
123
  msgid ","
124
  msgstr "،"
125
 
126
- #: wp-statistics.php:184
127
  msgid "The following features are disabled, please go to %s and enable them: %s"
128
  msgstr "الميزات التالية معطلة، يرجى الذهاب إلى %s وتمكينها: %s"
129
 
130
- #: wp-statistics.php:179
131
  msgid "hit tracking"
132
  msgstr "تتبع النقرات"
133
 
134
- #: wp-statistics.php:178
135
  msgid "online user tracking"
136
  msgstr "تتبع المستخدم المتصل"
137
 
138
- #: wp-statistics.php:775
139
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
140
  msgstr "جدول الإضافة التالية غير موجود في قاعدة البيانات, يرجى إعادة تشغيل %s للتثبيت الروتيني %s:"
141
 
142
- #: includes/optimization/wps-optimization.php:196
143
  msgid "Search table conversion complete, %d rows added."
144
  msgstr "بحث تحويل الجدول المكتمل، الصفوف %d أضيفت."
145
 
146
- #: includes/optimization/tabs/wps-optimization-database.php:113
147
  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."
148
  msgstr "التثبيت القديمة من احصائيات ووردبريس تخزن تفاصيل البحث في جدول آخر التي يمكن أن تصبح مشكلة على أداء مجموعات البيانات الكبيرة. تم إنشاء جدول جديد لإجراء هذه المعلومات بطريقة أفضل للتحجيم."
149
 
150
- #: includes/optimization/tabs/wps-optimization-database.php:94
151
  msgid "Search Table"
152
  msgstr "جدول البحث"
153
 
154
- #: includes/optimization/tabs/wps-optimization-database.php:99
155
  msgid "Convert"
156
  msgstr "التحويل"
157
 
158
- #: includes/optimization/tabs/wps-optimization-database.php:106
159
  msgid "Convert Now!"
160
  msgstr "تحويل الآن!"
161
 
162
- #: includes/optimization/tabs/wps-optimization-database.php:107
163
  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."
164
  msgstr "التثبيت القديمة من احصائيات ووردبريس تخزن تفاصيل البحث في جدول آخر التي يمكن أن تصبح مشكلة على أداء مجموعات البيانات الكبيرة. تم إنشاء جدول جديد لإجراء هذه المعلومات بطريقة أفضل للتدرج، ولكن يجب أولا تحويل البيانات القديمة إلى الشكل الجديد قبل أن تتمكن من استخدامها."
165
 
166
- #: includes/log/exclusions.php:24
167
  msgid "Referrer Spam"
168
  msgstr "إحالات البريد المزعج"
169
 
170
- #: includes/settings/tabs/wps-externals.php:279
171
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
172
  msgstr "سيتم جدولة التحميل من قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها بالقائمة السوداء لمرة واحدة في الأسبوع."
173
 
174
- #: includes/settings/wps-settings.php:105
175
  msgid "Externals"
176
  msgstr "الجهات الخارجية"
177
 
178
- #: includes/settings/tabs/wps-externals.php:220
179
  msgid "Piwik Referrer Spam Blacklist settings"
180
  msgstr "إعدادات القائمة السوداء Piwik لإحالات الرسائل الغير مرغوب فيها"
181
 
182
- #: includes/settings/tabs/wps-externals.php:255
183
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
184
  msgstr "جدولة التحديث الأسبوعي لـ Piwik لإحالات الرسائل الغير مرغوب فيها بقاعدة بيانات القائمة السوداء"
185
 
186
- #: includes/settings/tabs/wps-externals.php:248
187
  msgid "Download Piwik Referrer Spam Blacklist Database"
188
  msgstr "تحميل قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها من القائمة السوداء"
189
 
190
- #: includes/settings/tabs/wps-externals.php:243
191
  msgid "Update Piwik Referrer Spam Blacklist Info"
192
  msgstr "تحديث Piwik لإحالات الرسائل الغير مرغوب فيها بمعلومات القائمة السوداء"
193
 
194
- #: includes/settings/tabs/wps-externals.php:237
195
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
196
  msgstr "سيتم تحميل قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها بالقائمة السوداء واستخدامها للكشف عن مرجعية البريد المزعج."
197
 
198
- #: includes/settings/tabs/wps-externals.php:225
199
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
200
  msgstr "يتم توفير إحالات الرسائل الغير مرغوب فيها بالقائمة السوداء من قبل Piwik، وهي متاحة من %s."
201
 
202
- #: includes/settings/tabs/wps-externals.php:231
203
  msgid "Piwik Referrer Spam Blacklist usage"
204
  msgstr "المرجع Piwik للرسائل الغير المرغوب فيها باستخدام القائمة السوداء"
205
 
206
- #: includes/settings/tabs/wps-exclusions.php:148
207
  msgid "Treat corrupt browser info as a bot"
208
  msgstr "علاج معلومات المتصفح فاسدة بوت"
209
 
210
- #: includes/log/exclusions.php:24
211
  msgid "404 Pages"
212
  msgstr "404 صفحات"
213
 
214
- #: includes/log/top-visitors.php:26
215
  msgid "Date"
216
  msgstr "تاريخ"
217
 
218
- #: includes/settings/tabs/wps-exclusions.php:151
219
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
220
  msgstr "علاج أي زائر مع معلومات الفاسدة المتصفح (عنوان IP مفقود أو فارغة سلسلة عامل المستخدم) على الروبوت."
221
 
222
- #: includes/settings/tabs/wps-exclusions.php:215
223
  msgid "Excluded 404 pages"
224
  msgstr "استبعاد 404 صفحات"
225
 
226
- #: includes/settings/tabs/wps-exclusions.php:218
227
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
228
  msgstr "استبعاد أي URL التي تقوم بإرجاع - رسالة &quot;404 لم يتم العثور على&quot;."
229
 
230
- #: wps-updates.php:29
231
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
232
  msgstr "خطأ في إنشاء GeoIP دليل قاعدة البيانات، تأكد من خادم الويب الخاص بك لديه أذونات لإنشاء الدلائل في:٪ الصورة"
233
 
234
- #: includes/settings/tabs/wps-general.php:281
235
  msgid "Add page title to empty search words"
236
  msgstr "إضافة عنوان الصفحة على كلمات بحث فارغة"
237
 
238
- #: includes/settings/tabs/wps-general.php:287
239
  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."
240
  msgstr "إذا تم التعرف على محرك بحث باسم المرجع لكنه لا يشمل استعلام البحث هذا الخيار يوجب استبدال عنوان الصفحة في الاقتباس الذي يسبقه \"~:\" كما طلب البحث للمساعدة في تحديد ما قد تم البحث عنه من قبل المستخدم."
241
 
242
- #: includes/optimization/tabs/wps-optimization-purging.php:218
243
- #: includes/settings/tabs/wps-maintenance.php:75
244
  msgid "Purge visitors with more than"
245
  msgstr "الزوار المطهرين مع أكثر من"
246
 
247
- #: includes/optimization/tabs/wps-optimization-purging.php:223
248
  msgid "hits"
249
  msgstr "مشاهدات"
250
 
251
- #: includes/optimization/tabs/wps-optimization-purging.php:224
252
  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."
253
  msgstr "حذف بيانات إحصائيات المستخدم حيث أن المستخدم لديه أكثر من عدد محدد من الزيارات في يوم واحد. هذا يمكن أن يكون مفيد لتوضيح البيانات القديمة عندما يتم زيارة موقعك من خلال بوت. سيؤدي ذلك إلى إزالة الزوار ونقراتهم في الموقع، على كل حال هذا لن يزيل النقرات الفردية للصفحة كما لم يتم تسجيل تلك البيانات على أساس كل استخدام. قيمة الحد الأدنى هو 10 نقرات."
254
 
255
- #: includes/functions/purge-hits.php:28
256
  msgid "No visitors found to purge."
257
  msgstr "لم يتم إيجاد زوار في التطهير."
258
 
259
- #: includes/functions/purge-hits.php:25
260
  msgid "%s records purged successfully."
261
  msgstr "%s سجلات طهرت بنجاح."
262
 
263
- #: ajax.php:178 includes/functions/purge-hits.php:32
 
264
  msgid "Number of hits must be greater than or equal to 10!"
265
  msgstr "عدد الزيارات يجب أن يكون أكبر من أو يساوي 10!"
266
 
267
- #: shortcode.php:141
268
  msgid "Page Visits"
269
  msgstr "عدد زيارات هذه الصفحة"
270
 
271
- #: shortcode.php:144
272
  msgid "Page Count"
273
  msgstr "عدد الصفحة"
274
 
275
- #: shortcode.php:145
276
  msgid "Comment Count"
277
  msgstr "عدد التعليق"
278
 
279
- #: shortcode.php:146
280
  msgid "Spam Count"
281
  msgstr "عدد السبام"
282
 
283
- #: shortcode.php:147
284
  msgid "User Count"
285
  msgstr "عدد المستخدم"
286
 
287
- #: shortcode.php:148
288
  msgid "Post Average"
289
  msgstr "متوسط المشاركة"
290
 
291
- #: shortcode.php:149
292
  msgid "Comment Average"
293
  msgstr "متوسط التعليق"
294
 
295
- #: shortcode.php:150
296
  msgid "User Average"
297
  msgstr "متوسط المستخدم"
298
 
299
- #: shortcode.php:162
300
  msgid "Search Provider"
301
  msgstr "محرك البحث"
302
 
303
- #: shortcode.php:165
304
  msgid "The search provider to get statistics on."
305
  msgstr "مزود البحث للحصول على إحصائيات عن."
306
 
307
- #: shortcode.php:169
308
  msgid "Number Format"
309
  msgstr "صيغة الرقم"
310
 
311
- #: shortcode.php:172
312
  msgid "The format to display numbers in: i18n, english, none."
313
  msgstr "صيغة الأرقام للعرض في: I18N، الانجليزية، لا شيء."
314
 
315
- #: shortcode.php:176
316
  msgid "English"
317
  msgstr "الإنجليزية"
318
 
319
- #: shortcode.php:177
320
  msgid "International"
321
  msgstr "دولي"
322
 
323
- #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
 
324
  msgid "Hits Statistics Summary"
325
  msgstr "موجز إحصائيات المشاهدات"
326
 
327
- #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
 
328
  msgid "Chart Total"
329
  msgstr "إجمالي الرسم البياني"
330
 
331
- #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
 
332
  msgid "All Time Total"
333
  msgstr "مجموع كل الوقت"
334
 
335
- #: includes/log/log.php:6
336
  msgid "Have you thought about donating to WP Statistics?"
337
  msgstr "هل فكرت في التبرع لإحصائيات ووردبريس؟"
338
 
339
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:429
 
340
  msgid "Donate"
341
  msgstr "التبرع"
342
 
343
- #: includes/settings/tabs/wps-about.php:24
344
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
345
  msgstr "صف لنا مدى إستمتاعك في منتج إحصائيات ووردبريس؟ واضغط صفحة %s وبيّن لنا بعض الحب!"
346
 
347
- #: includes/settings/tabs/wps-about.php:24
348
  msgid "donation"
349
  msgstr "التبرعات"
350
 
351
- #: includes/log/log.php:6
352
  msgid "Donate Now!"
353
  msgstr "تبرع الآن!"
354
 
355
- #: includes/log/log.php:6
356
  msgid "Close"
357
  msgstr "إغلاق"
358
 
359
- #: shortcode.php:135
360
  msgid "Select the statistic you wish to display."
361
  msgstr "حدد الإحصائية التي ترغب في عرضها."
362
 
363
- #: shortcode.php:132
364
  msgid "Statistic"
365
  msgstr "إحصائية"
366
 
367
- #: shortcode.php:143
368
  msgid "Post Count"
369
  msgstr "عدد المقال"
370
 
371
- #: shortcode.php:155
372
  msgid "Time Frame"
373
  msgstr "الإطار الزمني"
374
 
375
- #: includes/functions/functions.php:1009
376
  msgid "to"
377
  msgstr "إلى"
378
 
379
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
380
  msgid "Go"
381
  msgstr "إذهب"
382
 
383
- #: includes/log/top-pages.php:95
384
  msgid "Rank #5"
385
  msgstr "المرتبة #5"
386
 
387
- #: includes/log/top-pages.php:95
388
  msgid "Rank #4"
389
  msgstr "المرتبة #4"
390
 
391
- #: includes/log/top-pages.php:95
392
  msgid "Rank #3"
393
  msgstr "المرتبة #3"
394
 
395
- #: includes/log/top-pages.php:95
396
  msgid "Rank #1"
397
  msgstr "المرتبة #1"
398
 
399
- #: includes/log/top-pages.php:95
400
  msgid "Rank #2"
401
  msgstr "المرتبة #2"
402
 
403
- #: includes/optimization/tabs/wps-optimization-database.php:60
404
  msgid "Visits Table"
405
  msgstr "جدول الزيارات"
406
 
407
- #: includes/optimization/tabs/wps-optimization-database.php:75
408
  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."
409
  msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات في كل مرة. بتثبيت أحدث حماية مقابل هذا الفهرس الفريد على الجدول. و لإنشاء فهرس على الإصدارات القديمة المثبتة يجب أن يتم حذف الإدخالات المكررة أولا. أنقر على \"التحديث الآن\" لفحص جدول الزيارات، وحذف الإدخالات المكررة وإضافة الفهرس."
410
 
411
- #: includes/optimization/tabs/wps-optimization-database.php:76
412
  msgid "This operation could take a long time on installs with many rows in the visits table."
413
  msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا لتثبيت العديد من الصفوف في جدول الزيارات."
414
 
415
- #: includes/optimization/tabs/wps-optimization-database.php:82
416
  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."
417
  msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات. للحماية من ذلك ثبت الفهرس الفريد في الجدول."
418
 
419
- #: includes/log/last-visitor.php:68
420
  msgid "Filtered by"
421
  msgstr "تمت تصفيتها من قبل"
422
 
423
- #: includes/functions/functions.php:1002 includes/functions/functions.php:1005
 
424
  msgid "Range"
425
  msgstr "المدى"
426
 
427
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
428
  msgid "MM/DD/YYYY"
429
  msgstr "MM/DD/YYYY"
430
 
431
- #: includes/settings/tabs/wps-general.php:342
432
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
433
  msgstr "لا تستخدم الترجمات واستخدام بدلاً من ذلك الإعدادات الافتراضية الإنجليزية لإحصائيات ووردبريس (يتطلب تحميل صفحتين)"
434
 
435
- #: includes/settings/tabs/wps-general.php:336
436
  msgid "Force English"
437
  msgstr "إجبار اللغة الإنجليزية"
438
 
439
- #: includes/settings/tabs/wps-general.php:331
440
  msgid "Languages"
441
  msgstr "اللغات"
442
 
443
- #: includes/settings/tabs/wps-exclusions.php:227
444
  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."
445
  msgstr "ملاحظة: هذا الخيار لن يتعامل مع معايير عنوان URL، (أي شيء بعد علامة؟) إلا اسم البرنامج النصي . سيتم تجاهل إدخالات أقل من حرفين."
446
 
447
- #: includes/settings/tabs/wps-exclusions.php:225
448
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
449
  msgstr "قائمة عناوين المواقع المحلية (اتصل بنا,حول, واحد في كل سطر) للإستبعاد من جمع الإحصائيات."
450
 
451
- #: includes/settings/tabs/wps-exclusions.php:222
452
  msgid "Excluded URLs list"
453
  msgstr "قائمة عناوين المواقع المستبعدة"
454
 
455
- #: includes/log/exclusions.php:24
456
  msgid "Excluded URL"
457
  msgstr "العناوين المستبعدة"
458
 
459
- #: includes/log/widgets/quickstats.php:52 includes/log/widgets/summary.php:52
 
460
  msgid "Last 365 Days (Year)"
461
  msgstr "مشاركة 365 يوم (السنة)"
462
 
463
- #: includes/log/widgets/quickstats.php:46 includes/log/widgets/summary.php:46
 
464
  msgid "Last 30 Days (Month)"
465
  msgstr "آخر 30 يوم (شهر)"
466
 
467
- #: includes/log/widgets/quickstats.php:40 includes/log/widgets/summary.php:40
 
468
  msgid "Last 7 Days (Week)"
469
  msgstr "آخر 7 أيام (أسبوع)"
470
 
471
- #: includes/functions/functions.php:430
472
  msgid "Yahoo!"
473
  msgstr "ياهو!"
474
 
475
- #: includes/functions/functions.php:431
476
  msgid "Yandex"
477
  msgstr "ياندكس"
478
 
479
- #: includes/functions/functions.php:427
480
  msgid "clearch.org"
481
  msgstr "clearch.org"
482
 
483
- #: includes/functions/functions.php:428
484
  msgid "DuckDuckGo"
485
  msgstr "دك دك غو"
486
 
487
- #: includes/functions/functions.php:426
488
  msgid "Bing"
489
  msgstr "بينج"
490
 
491
- #: includes/functions/functions.php:425
492
  msgid "Baidu"
493
  msgstr "بايدو"
494
 
495
- #: editor.php:69
496
- msgid "Hits in the last 20 days"
497
- msgstr "النقرات في 20 يوما الماضية"
498
-
499
- #: includes/log/exclusions.php:24
500
  msgid "Feeds"
501
  msgstr "التغذيات"
502
 
503
- #: includes/log/exclusions.php:24
504
  msgid "User Role"
505
  msgstr "دور المستخدم"
506
 
507
- #: includes/log/exclusions.php:24
508
  msgid "Login Page"
509
  msgstr "صفحة تسجيل الدخول"
510
 
511
- #: includes/log/exclusions.php:24
512
  msgid "Admin Page"
513
  msgstr "صفحة الإدارة"
514
 
515
- #: includes/log/exclusions.php:24
516
  msgid "Self Referral"
517
  msgstr "الإحالة الذاتية"
518
 
519
- #: includes/log/exclusions.php:24
520
  msgid "IP Match"
521
  msgstr "المتطابق IP"
522
 
523
- #: includes/log/exclusions.php:24
524
  msgid "Robot"
525
  msgstr "روبوت"
526
 
527
- #: includes/log/online.php:100
528
  msgid "Currently there are no users online in the site."
529
  msgstr "حالياً هناك مستخدمين متواجدين في الموقع."
530
 
531
- #: includes/log/exclusions.php:24
532
  msgid "Robot Threshold"
533
  msgstr "الحد من الروبوت"
534
 
535
- #: includes/log/exclusions.php:24
536
  msgid "Honey Pot"
537
  msgstr "وعاء العسل"
538
 
539
- #: includes/log/widgets/page.php:8
540
  msgid "Page Trending Stats"
541
  msgstr "صفحة الإحصائيات الأكثر رواجاً"
542
 
543
- #: includes/log/exclusions.php:24
544
  msgid "Hostname"
545
  msgstr "اسم المضيف"
546
 
547
- #: includes/settings/tabs/wps-general.php:93
548
- #: includes/settings/tabs/wps-general.php:133
549
- #: includes/settings/tabs/wps-general.php:149
550
- #: includes/settings/tabs/wps-general.php:188
551
- #: includes/settings/tabs/wps-general.php:200
552
- #: includes/settings/tabs/wps-general.php:229
553
- #: includes/settings/tabs/wps-notifications.php:122
554
  msgid "Enable or disable this feature"
555
  msgstr "تمكين أو تعطيل هذه الميزة"
556
 
557
- #: includes/settings/tabs/wps-general.php:99
558
  msgid "Check for online users every"
559
  msgstr "تحقق من المتصلين في الموقع في كل"
560
 
561
- #: includes/settings/tabs/wps-general.php:104
562
  msgid "Second"
563
  msgstr "ثانية"
564
 
565
- #: includes/settings/tabs/wps-general.php:105
566
  msgid "Time for the check accurate online user in the site. Now: %s Second"
567
  msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
568
 
569
- #: includes/settings/tabs/wps-general.php:111
570
  msgid "Record all user"
571
  msgstr "تسجيل جميع المستخدمين"
572
 
573
- #: includes/settings/tabs/wps-general.php:117
574
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
575
  msgstr "يتجاهل إعدادات الإقصاء ويسجل كل المستخدمين التي يتم على الانترنت (بما في ذلك الإحالة الذاتية والروبوتات). وينبغي أن تستخدم فقط لاستكشاف الأخطاء وإصلاحها."
576
 
577
- #: includes/settings/tabs/wps-general.php:155
578
  msgid "Store entire user agent string"
579
  msgstr "تخزين كامل سلسلة عامل المستخدم"
580
 
581
- #: includes/settings/tabs/wps-general.php:161
582
  msgid "Only enabled for debugging"
583
  msgstr "تمكين فقط من أجل التصحيح"
584
 
585
- #: includes/settings/tabs/wps-general.php:167
586
  msgid "Coefficient per visitor"
587
  msgstr "درجة لكل زائر"
588
 
589
- #: includes/settings/tabs/wps-general.php:172
590
  msgid "For each visit to account for several hits. Currently %s."
591
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
592
 
593
- #: includes/settings/tabs/wps-general.php:177
594
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:418
595
- #: wp-statistics.php:516
596
  msgid "Pages"
597
  msgstr "الصفحات"
598
 
599
- #: includes/settings/tabs/wps-general.php:194
600
  msgid "Track all pages"
601
  msgstr "تتبع جميع الصفحات"
602
 
603
- #: includes/settings/tabs/wps-general.php:209
604
  msgid "Strip parameters from URI"
605
  msgstr "معايير الشريط من URI"
606
 
607
- #: includes/settings/tabs/wps-general.php:215
608
  msgid "This will remove anything after the ? in a URL."
609
  msgstr "سيؤدي هذا إلى إزالة أي شيء بعد؟ في URL."
610
 
611
- #: includes/settings/tabs/wps-general.php:223
612
  msgid "Disable hits column in post/pages list"
613
  msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
614
 
615
- #: includes/settings/tabs/wps-general.php:234
616
  msgid "Miscellaneous"
617
  msgstr "متفرقات"
618
 
619
- #: includes/settings/tabs/wps-general.php:239
620
  msgid "Show stats in menu bar"
621
  msgstr "إظهار الاحصائيات في شريط القوائم"
622
 
623
- #: includes/settings/tabs/wps-general.php:244
624
  msgid "No"
625
  msgstr "لا"
626
 
627
- #: includes/settings/tabs/wps-general.php:245
628
  msgid "Yes"
629
  msgstr "نعم"
630
 
631
- #: includes/settings/tabs/wps-general.php:247
632
  msgid "Show stats in admin menu bar"
633
  msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
634
 
635
- #: includes/settings/tabs/wps-general.php:253
636
  msgid "Hide admin notices about non active features"
637
  msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
638
 
639
- #: includes/settings/tabs/wps-general.php:259
640
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
641
  msgstr "افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية في صفحة المشرف، وهذا الخيار لتعطيل هذه الإشعارات."
642
 
643
- #: includes/settings/tabs/wps-general.php:265
644
  msgid "Delete the manual"
645
  msgstr "حذف الدليل"
646
 
647
- #: includes/settings/tabs/wps-general.php:271
648
  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."
649
  msgstr "افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا تم تمكين هذا الخيار سيتم حذفه الآن، وخلال الترقيات في المستقبل."
650
 
651
- #: includes/settings/tabs/wps-general.php:276
652
  msgid "Search Engines"
653
  msgstr "محركات البحث"
654
 
655
- #: includes/settings/tabs/wps-general.php:293
656
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
657
  msgstr "تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
658
 
659
- #: includes/settings/tabs/wps-general.php:308
660
  msgid "disable"
661
  msgstr "تعطيل"
662
 
663
- #: includes/settings/tabs/wps-general.php:309
664
  msgid "Disable %s from data collection and reporting."
665
  msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
666
 
667
- #: includes/settings/tabs/wps-general.php:315
668
  msgid "Charts"
669
  msgstr "الرسوم البيانية"
670
 
671
- #: includes/settings/tabs/wps-general.php:320
672
  msgid "Include totals"
673
  msgstr "تتضمن الاجماليات"
674
 
675
- #: includes/settings/tabs/wps-general.php:326
676
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
677
  msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
678
 
679
- #: includes/settings/tabs/wps-externals.php:32
680
  msgid "GeoIP settings"
681
  msgstr "إعدادات GeoIP"
682
 
683
- #: includes/settings/tabs/wps-externals.php:37
684
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
685
  msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
686
 
687
- #: includes/settings/tabs/wps-externals.php:47
688
  msgid "GeoIP collection"
689
  msgstr "مجموعة GeoIP"
690
 
691
- #: includes/settings/tabs/wps-externals.php:53
692
  msgid "For get more information and location (country) from visitor, enable this feature."
693
  msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
694
 
695
- #: includes/settings/tabs/wps-externals.php:59
696
  msgid "Update GeoIP Info"
697
  msgstr "تحديث معلومات GeoIP"
698
 
699
- #: includes/settings/tabs/wps-externals.php:64
700
  msgid "Download GeoIP Database"
701
  msgstr "تحميل قاعدة بيانات GeoIP"
702
 
703
- #: includes/settings/tabs/wps-externals.php:71
704
  msgid "Schedule monthly update of GeoIP DB"
705
  msgstr "جدولة التحديث الشهري لGeoIP DB"
706
 
707
- #: includes/settings/tabs/wps-externals.php:97
708
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
709
  msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
710
 
711
- #: includes/settings/tabs/wps-externals.php:98
712
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
713
  msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
714
 
715
- #: includes/settings/tabs/wps-externals.php:104
716
  msgid "Populate missing GeoIP after update of GeoIP DB"
717
  msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
718
 
719
- #: includes/settings/tabs/wps-externals.php:110
720
  msgid "Update any missing GeoIP data after downloading a new database."
721
  msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
722
 
723
- #: includes/settings/tabs/wps-externals.php:116
724
  msgid "Country code for private IP addresses"
725
  msgstr "رمز البلد لعناوين IP خاصة"
726
 
727
- #: includes/settings/tabs/wps-externals.php:121
728
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
729
  msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
730
 
731
- #: includes/settings/tabs/wps-externals.php:132
732
  msgid "GeoIP collection is disabled due to the following reasons:"
733
  msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
734
 
735
- #: includes/settings/tabs/wps-externals.php:135
736
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
737
  msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
738
 
739
- #: includes/settings/tabs/wps-externals.php:140
740
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
741
  msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
742
 
743
- #: includes/settings/tabs/wps-externals.php:146
744
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
745
  msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
746
 
747
- #: includes/settings/tabs/wps-externals.php:152
748
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
749
  msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
750
 
751
- #: includes/settings/tabs/wps-maintenance.php:20
752
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
753
  msgstr "سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد من أنك تريد تمكين هذا الخيار؟"
754
 
755
- #: includes/settings/tabs/wps-maintenance.php:52
756
  msgid "Days"
757
  msgstr "أيام"
758
 
759
- #: includes/settings/tabs/wps-maintenance.php:53
760
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
761
  msgstr "عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
762
 
763
- #: includes/settings/tabs/wps-notifications.php:44
764
  msgid "Common Report Options"
765
  msgstr "خيارات تقرير المشترك"
766
 
767
- #: includes/settings/tabs/wps-notifications.php:49
768
  msgid "E-mail addresses"
769
  msgstr "عناوين البريد الإلكتروني"
770
 
771
- #: includes/settings/tabs/wps-notifications.php:54
772
  msgid "A comma separated list of e-mail addresses to send reports to."
773
  msgstr "أفصل قائمة عناوين البريد الإلكتروني بفاصلة لإرسال التقارير إلى."
774
 
775
- #: includes/settings/tabs/wps-notifications.php:59
776
  msgid "Update Reports"
777
  msgstr "تقارير التحديث"
778
 
779
- #: includes/log/exclusions.php:24
780
- #: includes/settings/tabs/wps-notifications.php:64
781
  msgid "Browscap"
782
  msgstr "Browscap"
783
 
784
- #: includes/settings/tabs/wps-notifications.php:70
785
  msgid "Send a report whenever the browscap.ini is updated."
786
  msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
787
 
788
- #: includes/log/exclusions.php:24
789
- #: includes/settings/tabs/wps-notifications.php:76
790
  msgid "GeoIP"
791
  msgstr "GeoIP"
792
 
793
- #: includes/settings/tabs/wps-notifications.php:82
794
  msgid "Send a report whenever the GeoIP database is updated."
795
  msgstr "إرسال تقرير كلما يتم تحديث قاعدة البيانات GeoIP."
796
 
797
- #: includes/settings/tabs/wps-notifications.php:88
798
  msgid "Pruning"
799
  msgstr "تنقيح"
800
 
801
- #: includes/settings/tabs/wps-notifications.php:94
802
  msgid "Send a report whenever the pruning of database is run."
803
  msgstr "إرسال تقرير كلما يتم تشغيل التنقيح في قاعدة البيانات."
804
 
805
- #: includes/settings/tabs/wps-notifications.php:100
806
  msgid "Upgrade"
807
  msgstr "ترقية"
808
 
809
- #: includes/settings/tabs/wps-notifications.php:106
810
  msgid "Send a report whenever the plugin is upgraded."
811
  msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
812
 
813
- #: includes/settings/tabs/wps-notifications.php:111
814
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
 
815
  msgid "Statistical reporting"
816
  msgstr "تقارير الإحصائيات"
817
 
818
- #: includes/settings/tabs/wps-notifications.php:129
819
  msgid "Schedule"
820
  msgstr "جدول"
821
 
822
- #: includes/settings/tabs/wps-notifications.php:153
823
  msgid "Select how often to receive statistical report."
824
  msgstr "حدد عدد المرات لتلقي تقرير إحصائي."
825
 
826
- #: includes/settings/tabs/wps-notifications.php:159
827
  msgid "Send reports via"
828
  msgstr "إرسال التقارير عن طريق"
829
 
830
- #: includes/settings/tabs/wps-notifications.php:165
831
  msgid "Email"
832
  msgstr "البريد الإلكتروني"
833
 
834
- #: includes/settings/tabs/wps-notifications.php:167
835
  msgid "SMS"
836
  msgstr "رسائل نصية"
837
 
838
- #: includes/settings/tabs/wps-notifications.php:170
839
  msgid "Select delivery method for statistical report."
840
  msgstr "حدد طريقة التسليم للتقرير الإحصائي."
841
 
842
- #: includes/settings/tabs/wps-notifications.php:173
843
  msgid "Note: To send SMS text messages please install the %s plugin."
844
  msgstr "ملاحظة: لإرسال رسائل نصية SMS الرجاء تثبيت إضافة %s."
845
 
846
- #: includes/settings/tabs/wps-notifications.php:173
847
  msgid "WordPress SMS"
848
  msgstr "الرسائل النصية"
849
 
850
- #: includes/settings/tabs/wps-notifications.php:180
851
  msgid "Report body"
852
  msgstr "تقرير الهيئة"
853
 
854
- #: includes/settings/tabs/wps-notifications.php:185
855
  msgid "Enter the contents of the report."
856
  msgstr "أدخل محتويات التقرير."
857
 
858
- #: includes/settings/tabs/wps-notifications.php:187
859
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
860
  msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
861
 
862
- #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
863
- #: widget.php:247 wp-statistics.php:621
 
864
  msgid "User Online"
865
  msgstr "المتواجدين الآن"
866
 
867
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
868
- #: widget.php:253
869
  msgid "Today Visitor"
870
  msgstr "زوار اليوم"
871
 
872
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
873
- #: widget.php:250
874
  msgid "Today Visit"
875
  msgstr "زيارات اليوم"
876
 
877
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
878
- #: widget.php:259
879
  msgid "Yesterday Visitor"
880
  msgstr "زوار الأمس"
881
 
882
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
 
883
  msgid "Yesterday Visit"
884
  msgstr "زيارات الأمس"
885
 
886
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
887
- #: widget.php:274
888
  msgid "Total Visitor"
889
  msgstr "مجموع الزوار"
890
 
891
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
892
- #: widget.php:271
893
  msgid "Total Visit"
894
  msgstr "مجموع الزيارات"
895
 
896
- #: shortcode.php:175
897
  msgid "None"
898
  msgstr "لا شيء"
899
 
900
- #: includes/settings/wps-settings.php:108
901
  msgid "About"
902
  msgstr "حول"
903
 
904
- #: includes/settings/tabs/wps-overview-display.php:20
905
  msgid "Dashboard"
906
  msgstr "لوحة القيادة"
907
 
908
- #: includes/settings/tabs/wps-overview-display.php:24
909
- #: includes/settings/tabs/wps-overview-display.php:44
910
- #: includes/settings/tabs/wps-overview-display.php:64
911
  msgid "The following items are global to all users."
912
  msgstr "العناصر التالية هي عالمية لجميع المستخدمين."
913
 
914
- #: includes/settings/tabs/wps-overview-display.php:29
915
  msgid "Disable dashboard widgets"
916
  msgstr "تعطيل قطع لوحة القيادة"
917
 
918
- #: includes/settings/tabs/wps-overview-display.php:35
919
  msgid "Disable the dashboard widgets."
920
  msgstr "تعطيل القطع للوحة القيادة"
921
 
922
- #: includes/settings/tabs/wps-overview-display.php:40
923
  msgid "Page/Post Editor"
924
  msgstr "محرر الصفحة/المشاركة"
925
 
926
- #: includes/settings/tabs/wps-overview-display.php:49
927
  msgid "Disable post/page editor widget"
928
  msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
929
 
930
- #: includes/settings/tabs/wps-overview-display.php:55
931
  msgid "Disable the page/post editor widget."
932
  msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
933
 
934
- #: includes/settings/tabs/wps-overview-display.php:69
935
  msgid "Map type"
936
  msgstr "نوع الخريطة"
937
 
938
- #: includes/functions/functions.php:429
939
- #: includes/settings/tabs/wps-overview-display.php:75
940
  msgid "Google"
941
  msgstr "جوجل"
942
 
943
- #: includes/settings/tabs/wps-overview-display.php:75
944
  msgid "JQVMap"
945
  msgstr "JQVMap"
946
 
947
- #: includes/settings/tabs/wps-overview-display.php:82
948
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
949
  msgstr "خيار \"جوجل\" يتوجب استخدام خدمة الخرائط جوجل لرسم زوار مؤخرا. (يتطلب الوصول إلى Google)"
950
 
951
- #: includes/settings/tabs/wps-overview-display.php:83
952
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
953
  msgstr "خيار \"JQVMap\" استخدام مكتبة خرائط JQVMap جافا سكريبت لرسم الزوار مؤخرا. (لا يتطلب أي خدمات خارجية)."
954
 
955
- #: includes/settings/tabs/wps-overview-display.php:89
956
  msgid "Disable map"
957
  msgstr "تعطيل الخريطة"
958
 
959
- #: includes/settings/tabs/wps-overview-display.php:95
960
  msgid "Disable the map display"
961
  msgstr "تعطيل عرض الخريطة"
962
 
963
- #: includes/settings/tabs/wps-overview-display.php:101
964
  msgid "Get country location from Google"
965
  msgstr "الحصول على موقع البلد من جوجل"
966
 
967
- #: includes/settings/tabs/wps-overview-display.php:107
968
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
969
  msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
970
 
971
- #: includes/settings/tabs/wps-removal.php:15
972
  msgid "WP Statisitcs Removal"
973
  msgstr "إزالة احصائيات ووردبريس"
974
 
975
- #: includes/settings/tabs/wps-removal.php:20
976
  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."
977
  msgstr "إزالة احصائيات ووردبريس لن تقوم بإزالة البيانات والإعدادات، يمكنك استخدام هذا الخيار لإزالة البيانات الخاصة بك قبل إلغاء تثبيت البرنامج المساعد."
978
 
979
- #: includes/settings/tabs/wps-removal.php:23
980
  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."
981
  msgstr "بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل الصفحة مرة أخرى."
982
 
983
- #: includes/settings/tabs/wps-removal.php:29
984
  msgid "Remove data and settings"
985
  msgstr "إزالة البيانات والإعدادات"
986
 
987
- #: includes/settings/tabs/wps-removal.php:34
988
  msgid "Remove"
989
  msgstr "إزالة"
990
 
991
- #: includes/settings/tabs/wps-removal.php:35
992
  msgid "Remove data and settings, this action cannot be undone."
993
  msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
994
 
995
- #: includes/settings/wps-settings.php:100
996
  msgid "General"
997
  msgstr "عام"
998
 
999
- #: includes/settings/wps-settings.php:101
1000
  msgid "Notifications"
1001
  msgstr "الإشعارات"
1002
 
1003
- #: includes/settings/wps-settings.php:102
1004
  msgid "Dashboard/Overview"
1005
  msgstr "اللوحة/نظرة عامة"
1006
 
1007
- #: includes/settings/wps-settings.php:106
1008
  msgid "Maintenance"
1009
  msgstr "صيانة"
1010
 
1011
- #: includes/settings/wps-settings.php:107
1012
  msgid "Removal"
1013
  msgstr "الإزالة"
1014
 
1015
- #: includes/settings/tabs/wps-access-level.php:85
1016
- #: includes/settings/tabs/wps-exclusions.php:234
1017
- #: includes/settings/tabs/wps-externals.php:286
1018
- #: includes/settings/tabs/wps-general.php:349
1019
- #: includes/settings/tabs/wps-maintenance.php:88
1020
- #: includes/settings/tabs/wps-notifications.php:201
1021
- #: includes/settings/tabs/wps-overview-display.php:116
1022
- #: includes/settings/tabs/wps-removal.php:42
1023
  msgid "Update"
1024
  msgstr "تحديث"
1025
 
1026
- #: schedule.php:10
1027
  msgid "Once Weekly"
1028
  msgstr "مرة كل أسبوع"
1029
 
1030
- #: schedule.php:17
1031
  msgid "Once Every 2 Weeks"
1032
  msgstr "مرة كل 2 أسابيع"
1033
 
1034
- #: schedule.php:24
1035
  msgid "Once Every 4 Weeks"
1036
  msgstr "مرة كل 4 أسابيع"
1037
 
1038
- #: widget.php:14 wp-statistics.php:408 wp-statistics.php:469
 
1039
  msgid "Statistics"
1040
  msgstr "الاحصائيات"
1041
 
1042
- #: widget.php:15
1043
  msgid "Show site stats in sidebar."
1044
  msgstr "عرض احصائيات الموقع في الشريط الجانبي."
1045
 
1046
- #: widget.php:73 widget.php:262
1047
  msgid "Week Visit"
1048
  msgstr "زيارات الأسبوع"
1049
 
1050
- #: widget.php:80 widget.php:265
1051
  msgid "Month Visit"
1052
  msgstr "زيارات الشهر"
1053
 
1054
- #: widget.php:87 widget.php:268
1055
  msgid "Years Visit"
1056
  msgstr "زيارات السنة"
1057
 
1058
- #: widget.php:108 widget.php:277
1059
  msgid "Total Page Views"
1060
  msgstr "مجموع مشاهدات الصفحة"
1061
 
1062
- #: widget.php:116
1063
  msgid "Search Engine referred"
1064
  msgstr "محرك البحث المشار"
1065
 
1066
- #: widget.php:123 widget.php:300
1067
  msgid "Total Posts"
1068
  msgstr "إجمالي المشاركات"
1069
 
1070
- #: widget.php:130 widget.php:303
1071
  msgid "Total Pages"
1072
  msgstr "إجمالي الصفحات"
1073
 
1074
- #: widget.php:137 widget.php:306
1075
  msgid "Total Comments"
1076
  msgstr "إجمالي التعليقات"
1077
 
1078
- #: widget.php:144 widget.php:309
1079
  msgid "Total Spams"
1080
  msgstr "إجمالي السبام"
1081
 
1082
- #: widget.php:151 widget.php:312
1083
  msgid "Total Users"
1084
  msgstr "عدد الاعضاء"
1085
 
1086
- #: widget.php:158 widget.php:315
1087
  msgid "Average Posts"
1088
  msgstr "متوسط المشاركات"
1089
 
1090
- #: widget.php:165 widget.php:318
1091
  msgid "Average Comments"
1092
  msgstr "متوسط التعليقات"
1093
 
1094
- #: widget.php:172 widget.php:321
1095
  msgid "Average Users"
1096
  msgstr "متوسط الاعضاء"
1097
 
1098
- #: shortcode.php:151 widget.php:179 widget.php:324
 
1099
  msgid "Last Post Date"
1100
  msgstr "تاريخ آخر مشاركة"
1101
 
1102
- #: widget.php:240
1103
  msgid "Name"
1104
  msgstr "الأسم"
1105
 
1106
- #: widget.php:244
1107
  msgid "Items"
1108
  msgstr "البنود"
1109
 
1110
- #: widget.php:256 wp-statistics.php:646
1111
  msgid "Yesterday visit"
1112
  msgstr "زيارات الأمس"
1113
 
1114
- #: widget.php:280
1115
  msgid "Search Engine Referred"
1116
  msgstr "محرك بحث المشارين"
1117
 
1118
- #: widget.php:283
1119
  msgid "Select type of search engine"
1120
  msgstr "حدد نوع من محرك البحث"
1121
 
1122
- #: wp-statistics.php:122
1123
  msgid "WP Statistics has been removed, please disable and delete it."
1124
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
1125
 
1126
- #. Plugin Name of the plugin/theme
1127
- #: wp-statistics.php:54
1128
  msgid "WP Statistics"
1129
  msgstr "احصائيات ووردبريس"
1130
 
1131
- #. Description of the plugin/theme
1132
- #: wp-statistics.php:55
1133
  msgid "Complete statistics for your WordPress site."
1134
  msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
1135
 
1136
- #: wp-statistics.php:313 wp-statistics.php:428 wp-statistics.php:523
 
1137
  msgid "Settings"
1138
  msgstr "الإعدادات"
1139
 
1140
- #: wp-statistics.php:325
1141
  msgid "Click here to visit the plugin on WordPress.org"
1142
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
1143
 
1144
- #: wp-statistics.php:325
1145
  msgid "Visit WordPress.org page"
1146
  msgstr "زيارة صفحة WordPress.org"
1147
 
1148
- #: wp-statistics.php:328
1149
  msgid "Click here to rate and review this plugin on WordPress.org"
1150
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
1151
 
1152
- #: wp-statistics.php:328
1153
  msgid "Rate this plugin"
1154
  msgstr "ضع تقييمك لهذه الاضافة"
1155
 
1156
- #: wp-statistics.php:372
1157
  msgid "WP Statistics - Hits"
1158
  msgstr "احصائيات ووردبريس - الزيارات"
1159
 
1160
- #: wp-statistics.php:411 wp-statistics.php:472 wp-statistics.php:510
 
1161
  msgid "Overview"
1162
  msgstr "نظرة عامة"
1163
 
1164
- #: wp-statistics.php:417 wp-statistics.php:515
1165
  msgid "Online"
1166
  msgstr "المتواجدون"
1167
 
1168
- #: wp-statistics.php:419 wp-statistics.php:517
1169
  msgid "Referrers"
1170
  msgstr "الدعوات"
1171
 
1172
- #: shortcode.php:142 wp-statistics.php:420 wp-statistics.php:518
 
1173
  msgid "Searches"
1174
  msgstr "عمليات البحث"
1175
 
1176
- #: wp-statistics.php:421 wp-statistics.php:519
1177
  msgid "Search Words"
1178
  msgstr "كلمات البحث"
1179
 
1180
- #: wp-statistics.php:422 wp-statistics.php:520
1181
  msgid "Top Visitors Today"
1182
  msgstr "أعلى زوار اليوم"
1183
 
1184
- #: wp-statistics.php:427 wp-statistics.php:522
1185
  msgid "Optimization"
1186
  msgstr "التحسين"
1187
 
1188
- #: wp-statistics.php:433 wp-statistics.php:486
1189
  msgid "Manual"
1190
  msgstr "الدليل"
1191
 
1192
- #: wp-statistics.php:501
1193
  msgid "Site"
1194
  msgstr "موقع"
1195
 
1196
- #: wp-statistics.php:502
1197
  msgid "Options"
1198
  msgstr "خيارات"
1199
 
1200
- #: wp-statistics.php:628
1201
  msgid "Today visitor"
1202
  msgstr "زوار اليوم"
1203
 
1204
- #: wp-statistics.php:634
1205
  msgid "Today visit"
1206
  msgstr "زيارات اليوم"
1207
 
1208
- #: wp-statistics.php:640
1209
  msgid "Yesterday visitor"
1210
  msgstr "زيارات الأمس"
1211
 
1212
- #: wp-statistics.php:652
1213
  msgid "View Stats"
1214
  msgstr "عرض الإحصائيات"
1215
 
1216
- #: wp-statistics.php:676
1217
  msgid "Download ODF file"
1218
  msgstr "تحميل ملف ODF"
1219
 
1220
- #: wp-statistics.php:677
1221
  msgid "Download HTML file"
1222
  msgstr "تحميل ملف HTML"
1223
 
1224
- #: wp-statistics.php:681
1225
  msgid "Manual file not found."
1226
  msgstr "لم يتم العثور على ملف الدليل."
1227
 
1228
- #: wp-statistics.php:748 wp-statistics.php:878 wp-statistics.php:913
 
1229
  msgid "You do not have sufficient permissions to access this page."
1230
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
1231
 
1232
- #: wp-statistics.php:301
1233
  msgid "WP Statistics %s installed on"
1234
  msgstr "احصائيات ووردبريس %s مثبتة على"
1235
 
1236
- #: wps-updates.php:39
1237
  msgid "Error downloading GeoIP database from: %s - %s"
1238
  msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
1239
 
1240
- #: wps-updates.php:50
1241
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1242
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
1243
 
1244
- #: wps-updates.php:57
1245
  msgid "Error could not open destination GeoIP database for writing %s"
1246
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
1247
 
1248
- #: wps-updates.php:73
1249
  msgid "GeoIP Database updated successfully!"
1250
  msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
1251
 
1252
- #: wps-updates.php:98
1253
  msgid "GeoIP update on"
1254
  msgstr "تحديث GeoIP على"
1255
 
1256
- #: wps-updates.php:165
1257
  msgid "Error downloading browscap database from: %s - %s"
1258
  msgstr "خطأ في قاعدة بيانات browscap تحميل من: %s - %s"
1259
 
1260
- #: wps-updates.php:274
1261
  msgid "browscap database updated successfully!"
1262
  msgstr "قاعدة بيانات browscap تم تحديثها بنجاح!"
1263
 
1264
- #: wps-updates.php:284
1265
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1266
  msgstr "تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap.ini السابق."
1267
 
1268
- #: wps-updates.php:292
1269
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1270
  msgstr "تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
1271
 
1272
- #: wps-updates.php:314
1273
  msgid "browscap already at current version!"
1274
  msgstr "browscap بالفعل في النسخة الحالية!"
1275
 
1276
- #: wps-updates.php:327
1277
  msgid "Browscap.ini update on"
1278
  msgstr "تحديث Browscap.ini على"
1279
 
1280
- #. Plugin URI of the plugin/theme
1281
- #. Author URI of the plugin/theme
1282
- msgid "http://wp-statistics.com/"
1283
- msgstr "http://wp-statistics.com/"
1284
-
1285
- #. Author of the plugin/theme
1286
- msgid "Mostafa Soufi & Greg Ross"
1287
- msgstr "مصطفى الصوفي وجريج روس"
1288
-
1289
- #: dashboard.php:56
1290
  msgid "Quick Stats"
1291
  msgstr "إحصائيات سريعة"
1292
 
1293
- #: dashboard.php:57 includes/log/widgets/browsers.php:41
 
1294
  msgid "Top 10 Browsers"
1295
  msgstr "أفضل 10 متصفحات"
1296
 
1297
- #: dashboard.php:58 wp-statistics.php:457
1298
  msgid "Top 10 Countries"
1299
  msgstr "أعلى 10 دول"
1300
 
1301
- #: dashboard.php:59
1302
  msgid "Today's Visitor Map"
1303
  msgstr "خريطة زوار اليوم"
1304
 
1305
- #: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
1306
- #: wp-statistics.php:446
 
1307
  msgid "Hit Statistics"
1308
  msgstr "احصائية النقرات"
1309
 
1310
- #: dashboard.php:61 wp-statistics.php:450
1311
  msgid "Top 10 Pages"
1312
  msgstr "أفضل 10 صفحات"
1313
 
1314
- #: dashboard.php:62 includes/log/last-visitor.php:36 wp-statistics.php:451
 
 
1315
  msgid "Recent Visitors"
1316
  msgstr "الزيارات الأخيرة"
1317
 
1318
- #: dashboard.php:63 includes/log/top-referring.php:59
1319
- #: includes/log/top-referring.php:81 wp-statistics.php:456
 
 
1320
  msgid "Top Referring Sites"
1321
  msgstr "أعلى المواقع اشارة"
1322
 
1323
- #: dashboard.php:64 includes/log/widgets/quickstats.php:75
1324
- #: includes/log/widgets/summary.php:75 wp-statistics.php:448
 
 
1325
  msgid "Search Engine Referrals"
1326
  msgstr "إحالات محرك البحث"
1327
 
1328
- #: dashboard.php:65 wp-statistics.php:454
1329
  msgid "Summary"
1330
  msgstr "ملخص"
1331
 
1332
- #: dashboard.php:66 includes/log/last-search.php:31 wp-statistics.php:449
 
1333
  msgid "Latest Search Words"
1334
  msgstr "أحدث كلمات البحث"
1335
 
1336
- #: dashboard.php:67
1337
  msgid "Top 10 Visitors Today"
1338
  msgstr "أفضل 10 زوار اليوم"
1339
 
1340
- #: editor.php:63
1341
  msgid "This post is not yet published."
1342
  msgstr "لم يتم نشر هذا المقال حتى الآن."
1343
 
1344
- #: includes/functions/geoip-populate.php:24
1345
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1346
  msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
1347
 
1348
- #: includes/functions/geoip-populate.php:48
1349
  msgid "Updated %s GeoIP records in the visitors database."
1350
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
1351
 
1352
- #: includes/functions/purge.php:21 includes/functions/purge.php:39
1353
- #: includes/functions/purge.php:50 includes/functions/purge.php:61
1354
- #: includes/functions/purge.php:94
 
 
1355
  msgid "%s data older than %s days purged successfully."
1356
  msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
1357
 
1358
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
1359
- #: includes/functions/purge.php:52 includes/functions/purge.php:63
1360
- #: includes/functions/purge.php:96
 
 
1361
  msgid "No records found to purge from %s!"
1362
  msgstr "لا توجد سجلات للتخلص من %s!"
1363
 
1364
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
 
1365
  msgid "Database pruned on"
1366
  msgstr "قاعدة بيانات مجردة على"
1367
 
1368
- #: includes/functions/purge.php:114
1369
  msgid "Please select a value over 30 days."
1370
  msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
1371
 
1372
- #: includes/log/all-browsers.php:21
1373
  msgid "Browser Statistics"
1374
  msgstr "إحصائيات المتصفح"
1375
 
1376
- #: includes/log/all-browsers.php:29 includes/log/all-browsers.php:113
1377
- #: includes/log/all-browsers.php:248 includes/log/exclusions.php:72
1378
- #: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
1379
- #: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
1380
- #: includes/log/last-visitor.php:67 includes/log/online.php:17
1381
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
1382
- #: includes/log/top-countries.php:26 includes/log/top-pages.php:28
1383
- #: includes/log/top-pages.php:148 includes/log/top-referring.php:77
1384
- #: includes/log/top-visitors.php:40
 
 
 
 
 
 
 
 
1385
  msgid "Click to toggle"
1386
  msgstr "انقر للتبديل"
1387
 
1388
- #: includes/log/all-browsers.php:30 wp-statistics.php:413 wp-statistics.php:455
1389
- #: wp-statistics.php:511
 
1390
  msgid "Browsers"
1391
  msgstr "المتصفحات"
1392
 
1393
- #: includes/log/all-browsers.php:57
1394
  msgid "Browsers by type"
1395
  msgstr "حسب نوع المتصفحات"
1396
 
1397
- #: includes/log/all-browsers.php:114 includes/log/widgets/top.visitors.php:18
1398
- #: includes/optimization/tabs/wps-optimization-resources.php:302
 
1399
  msgid "Platform"
1400
  msgstr "المنصة"
1401
 
1402
- #: includes/log/all-browsers.php:141
1403
  msgid "Browsers by platform"
1404
  msgstr "حسب نوع المنصة"
1405
 
1406
- #: includes/log/all-browsers.php:249
1407
  msgid "%s Version"
1408
  msgstr "الإصدار %s"
1409
 
1410
- #: includes/log/exclusions.php:8
1411
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1412
  msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
1413
 
1414
- #: includes/log/exclusions.php:64
1415
  msgid "Exclusions Statistics"
1416
  msgstr "استثناءات الاحصائيات"
1417
 
1418
- #: includes/functions/functions.php:959
1419
  msgid "10 Days"
1420
  msgstr "10 أيام"
1421
 
1422
- #: includes/functions/functions.php:959
1423
  msgid "20 Days"
1424
  msgstr "20 يوم"
1425
 
1426
- #: includes/functions/functions.php:959
1427
  msgid "30 Days"
1428
  msgstr "30 يو م"
1429
 
1430
- #: includes/functions/functions.php:959
1431
  msgid "2 Months"
1432
  msgstr "شهرين"
1433
 
1434
- #: includes/functions/functions.php:959
1435
  msgid "3 Months"
1436
  msgstr "3 أشهر"
1437
 
1438
- #: includes/functions/functions.php:959
1439
  msgid "6 Months"
1440
  msgstr "6 أشهر"
1441
 
1442
- #: includes/functions/functions.php:959
1443
  msgid "9 Months"
1444
  msgstr "9 أشهر"
1445
 
1446
- #: includes/functions/functions.php:959
1447
  msgid "1 Year"
1448
  msgstr "سنة"
1449
 
1450
- #: includes/log/exclusions.php:73
1451
  msgid "Exclusions Statistical Chart"
1452
  msgstr "الرسم البياني لإحصائيات الاستثناءات"
1453
 
1454
- #: includes/log/exclusions.php:95
1455
  msgid "Excluded hits in the last"
1456
  msgstr "استبعاد النقرات في الأخير"
1457
 
1458
- #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1459
- #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:42
1460
- #: includes/log/widgets/search.php:42
1461
- #: includes/optimization/tabs/wps-optimization-purging.php:208
 
 
1462
  msgid "days"
1463
  msgstr "أيام"
1464
 
1465
- #: includes/log/exclusions.php:116
1466
  msgid "Number of excluded hits"
1467
  msgstr "عدد الزيارات المستبعدة"
1468
 
1469
- #: includes/log/hit-statistics.php:27
1470
  msgid "Hits Statistics Chart"
1471
  msgstr "الرسم البياني لاحصائيات النقرات"
1472
 
1473
- #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:42
 
1474
  msgid "Hits in the last"
1475
  msgstr "آخر النقرات"
1476
 
1477
- #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:63
 
1478
  msgid "Number of visits and visitors"
1479
  msgstr "عدد الزيارات والزوار"
1480
 
1481
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1482
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:24
1483
- #: includes/log/widgets/summary.php:24
 
 
1484
  msgid "Visit"
1485
  msgstr "زيارة"
1486
 
1487
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1488
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:23
1489
- #: includes/log/widgets/summary.php:23
 
 
1490
  msgid "Visitor"
1491
  msgstr "زائر"
1492
 
1493
- #: includes/log/last-search.php:65
1494
  msgid "Latest Search Word Statistics"
1495
  msgstr "أحصائيات أحدث كلمات البحث"
1496
 
1497
- #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1498
- #: includes/log/online.php:50 includes/log/widgets/google.map.php:68
1499
- #: includes/log/widgets/jqv.map.php:55 includes/log/widgets/recent.php:14
1500
- #: includes/log/widgets/words.php:27
 
 
 
1501
  msgid "#hash#"
1502
  msgstr "#hash#"
1503
 
1504
- #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1505
- #: includes/log/online.php:55 includes/log/top-referring.php:112
1506
- #: includes/log/widgets/recent.php:19 includes/log/widgets/words.php:42
1507
- #: includes/settings/tabs/wps-overview-display.php:60
 
 
 
1508
  msgid "Map"
1509
  msgstr "خريطة"
1510
 
1511
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1512
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1513
- #: includes/log/top-referring.php:153
 
 
1514
  msgid "Page"
1515
  msgstr "صفحة"
1516
 
1517
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1518
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1519
- #: includes/log/top-referring.php:153
 
 
1520
  msgid "From"
1521
  msgstr "من"
1522
 
1523
- #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1524
- #: includes/log/top-referring.php:67 includes/log/top-referring.php:70
1525
- #: includes/optimization/tabs/wps-optimization-purging.php:192 widget.php:296
 
 
 
1526
  msgid "All"
1527
  msgstr "الكل"
1528
 
1529
- #: includes/log/last-visitor.php:68
1530
  msgid "Recent Visitor Statistics"
1531
  msgstr "آخر إحصائيات الزوار"
1532
 
1533
- #: includes/log/online.php:11 includes/log/online.php:18
 
1534
  msgid "Online Users"
1535
  msgstr "المستخدمين على الانترنت"
1536
 
1537
- #: includes/log/online.php:75
1538
  msgid "Online for "
1539
  msgstr "متصل لـ"
1540
 
1541
- #: includes/log/page-statistics.php:26
1542
  msgid "Page Trend for Post ID"
1543
  msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
1544
 
1545
- #: includes/log/page-statistics.php:35
1546
  msgid "Page Trend"
1547
  msgstr "الصفحة الأكثر رواجاً"
1548
 
1549
- #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
 
1550
  msgid "Search Engine Referral Statistics"
1551
  msgstr "إحصائيات مرجعية محرك البحث"
1552
 
1553
- #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:42
 
1554
  msgid "Search engine referrals in the last"
1555
  msgstr "إحالات محرك البحث في الأخير"
1556
 
1557
- #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:63
 
1558
  msgid "Number of referrals"
1559
  msgstr "عدد الإحالات"
1560
 
1561
- #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1562
- #: includes/log/widgets/quickstats.php:58
1563
- #: includes/log/widgets/quickstats.php:105 includes/log/widgets/search.php:77
1564
- #: includes/log/widgets/summary.php:58 includes/log/widgets/summary.php:105
 
 
 
1565
  msgid "Total"
1566
  msgstr "المجموع"
1567
 
1568
- #: includes/log/top-countries.php:18 includes/log/top-countries.php:27
 
1569
  msgid "Top Countries"
1570
  msgstr "أفضل الدول"
1571
 
1572
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:9
1573
- #: includes/log/widgets/top.visitors.php:11
 
1574
  msgid "Rank"
1575
  msgstr "الترتيب"
1576
 
1577
- #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:10
1578
- #: includes/log/widgets/top.visitors.php:13
 
1579
  msgid "Flag"
1580
  msgstr "العلم"
1581
 
1582
- #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:11
1583
- #: includes/log/widgets/top.visitors.php:14
 
1584
  msgid "Country"
1585
  msgstr "الدولة"
1586
 
1587
- #: includes/log/top-countries.php:34 includes/log/widgets/countries.php:12
 
1588
  msgid "Visitor Count"
1589
  msgstr "عدد الزوار"
1590
 
1591
- #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
 
1592
  msgid "Top Pages"
1593
  msgstr "أفضل الصفحات"
1594
 
1595
- #: includes/log/top-pages.php:29
1596
  msgid "Top 5 Pages Trends"
1597
  msgstr "الصفحات الـ5 الأكثر رواجاً"
1598
 
1599
- #: includes/log/top-pages.php:60
1600
  msgid "Top 5 Page Trending Stats"
1601
  msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
1602
 
1603
- #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
 
1604
  msgid "Number of Hits"
1605
  msgstr "عدد الزيارات"
1606
 
1607
- #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:13
 
1608
  msgid "No page title found"
1609
  msgstr "لم يتم العثور على عنوان الصفحة"
1610
 
1611
- #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:16
1612
- #: includes/optimization/tabs/wps-optimization-historical.php:37
1613
- #: includes/settings/tabs/wps-general.php:122
1614
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
 
 
1615
  msgid "Visits"
1616
  msgstr "الزيارات"
1617
 
1618
- #: includes/log/top-referring.php:4
1619
  msgid "To be added soon"
1620
  msgstr "تضاف قريبا"
1621
 
1622
- #: includes/log/top-referring.php:79
1623
  msgid "Referring sites from"
1624
  msgstr "مواقع اشارة من"
1625
 
1626
- #: includes/log/top-referring.php:137 includes/log/widgets/referring.php:29
 
1627
  msgid "References"
1628
  msgstr "المراجع"
1629
 
1630
- #: includes/log/top-visitors.php:12
1631
  msgid "Top 100 Visitors Today"
1632
  msgstr "أفضل 100 زائر اليوم"
1633
 
1634
- #: includes/log/log.php:10
1635
  msgid "About WP Statistics Version %s"
1636
  msgstr "حول إصدار احصائيات ووردبريس %s"
1637
 
1638
- #: includes/log/widgets/about.php:11
1639
  msgid "Website"
1640
  msgstr "الموقع"
1641
 
1642
- #: includes/log/widgets/about.php:12
1643
  msgid "Rate and Review"
1644
  msgstr "التقييم والمراجعة"
1645
 
1646
- #: includes/log/widgets/about.php:16
1647
  msgid "More Information"
1648
  msgstr "مزيد من المعلومات"
1649
 
1650
- #: includes/log/widgets/about.php:25 includes/settings/tabs/wps-about.php:12
 
1651
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1652
  msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
1653
 
1654
- #: includes/log/widgets/browsers.php:34
1655
  msgid "Other"
1656
  msgstr "أخرى"
1657
 
1658
- #: wp-statistics.php:445
1659
  msgid "Today Visitors Map"
1660
  msgstr "خريطة زوار اليوم"
1661
 
1662
- #: includes/log/widgets/referring.php:30
1663
  msgid "Address"
1664
  msgstr "العنوان"
1665
 
1666
- #: includes/log/widgets/quickstats.php:12 includes/log/widgets/summary.php:12
 
1667
  msgid "User(s) Online"
1668
  msgstr "المتصلين على الانترنت"
1669
 
1670
- #: includes/log/widgets/quickstats.php:28
1671
- #: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
1672
- #: includes/log/widgets/summary.php:80
 
1673
  msgid "Today"
1674
  msgstr "اليوم"
1675
 
1676
- #: includes/log/widgets/quickstats.php:34
1677
- #: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
1678
- #: includes/log/widgets/summary.php:81
 
1679
  msgid "Yesterday"
1680
  msgstr "الأمس"
1681
 
1682
- #: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
 
1683
  msgid "Daily Total"
1684
  msgstr "المجموع اليومي"
1685
 
1686
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1687
  msgid "Current Time and Date"
1688
  msgstr "التوقيت الحالي و التاريخ"
1689
 
1690
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1691
  msgid "(Adjustment)"
1692
  msgstr "(التوافق)"
1693
 
1694
- #: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
 
1695
  msgid "Date: %s"
1696
  msgstr "التاريخ: %s"
1697
 
1698
- #: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
 
1699
  msgid "Time: %s"
1700
  msgstr "التوقيت: %s"
1701
 
1702
- #: includes/log/widgets/top.visitors.php:12
1703
- #: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:337
1704
- #: wp-statistics.php:416 wp-statistics.php:514
 
1705
  msgid "Hits"
1706
  msgstr "نقرات"
1707
 
1708
- #: includes/log/widgets/top.visitors.php:15
1709
  msgid "IP"
1710
  msgstr "IP"
1711
 
1712
- #: includes/log/widgets/top.visitors.php:17
1713
  msgid "Agent"
1714
  msgstr "وكيل"
1715
 
1716
- #: includes/log/widgets/top.visitors.php:19
1717
- #: includes/optimization/tabs/wps-optimization-resources.php:291
1718
  msgid "Version"
1719
  msgstr "الإصدار"
1720
 
1721
- #: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:284
1722
- #: includes/optimization/wps-optimization.php:6
 
 
1723
  msgid "Access denied!"
1724
  msgstr "تم رفض الوصول!"
1725
 
1726
- #: ajax.php:31
1727
  msgid "%s agent data deleted successfully."
1728
  msgstr "%s تم حذف بيانات الوكيل بنجاح."
1729
 
1730
- #: ajax.php:34
1731
  msgid "No agent data found to remove!"
1732
  msgstr "لا توجد بيانات وكيل لإزالتها!"
1733
 
1734
- #: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
 
1735
  msgid "Please select the desired items."
1736
  msgstr "يرجى تحديد العناصر المطلوبة."
1737
 
1738
- #: ajax.php:62
1739
  msgid "%s platform data deleted successfully."
1740
  msgstr "%s تم حذف بيانات المنصة بنجاح."
1741
 
1742
- #: ajax.php:65
1743
  msgid "No platform data found to remove!"
1744
  msgstr "لا توجد بيانات منصة لإزالتها!"
1745
 
1746
- #: includes/functions/functions.php:1051
1747
  msgid "%s table data deleted successfully."
1748
  msgstr "%s تم حذف بيانات الجدول بنجاح."
1749
 
1750
- #: includes/functions/functions.php:1055
1751
  msgid "Error, %s not emptied!"
1752
  msgstr "خطأ, %s لم يتم التفريغ!"
1753
 
1754
- #: includes/optimization/tabs/wps-optimization-database.php:5
1755
  msgid "Database Setup"
1756
  msgstr "إعداد قاعدة البيانات"
1757
 
1758
- #: includes/optimization/tabs/wps-optimization-database.php:10
1759
  msgid "Re-run Install"
1760
  msgstr "إعادة تشغيل التثبيت"
1761
 
1762
- #: includes/optimization/tabs/wps-optimization-database.php:14
1763
  msgid "Install Now!"
1764
  msgstr "تثبيت الآن!"
1765
 
1766
- #: includes/optimization/tabs/wps-optimization-database.php:15
1767
  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."
1768
  msgstr "لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر سيعيد تنفيذ العملية مرة أخرى."
1769
 
1770
- #: includes/optimization/tabs/wps-optimization-database.php:20
1771
  msgid "Database Index"
1772
  msgstr "فهرس قاعدة بيانات"
1773
 
1774
- #: includes/optimization/tabs/wps-optimization-database.php:25
1775
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1776
- #: wp-statistics.php:414 wp-statistics.php:512
1777
  msgid "Countries"
1778
  msgstr "الدول"
1779
 
1780
- #: includes/optimization/tabs/wps-optimization-database.php:42
1781
- #: includes/optimization/tabs/wps-optimization-database.php:74
1782
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1783
- #: includes/optimization/tabs/wps-optimization-updates.php:40
1784
  msgid "Update Now!"
1785
  msgstr "تحديث الآن!"
1786
 
1787
- #: includes/optimization/tabs/wps-optimization-database.php:43
1788
  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."
1789
  msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
1790
 
1791
- #: includes/optimization/tabs/wps-optimization-database.php:44
1792
- #: includes/optimization/tabs/wps-optimization-database.php:108
1793
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1794
  msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
1795
 
1796
- #: includes/optimization/tabs/wps-optimization-database.php:50
1797
  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."
1798
  msgstr "الإصدارات القديمة من منتج احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار في بعض الحالات. عند تثبيت إصدارات أحدث من ذلك سيتم إضافة فهرس فريد على الجدول."
1799
 
1800
- #: includes/optimization/tabs/wps-optimization-database.php:51
1801
- #: includes/optimization/tabs/wps-optimization-database.php:83
1802
- #: includes/optimization/tabs/wps-optimization-database.php:114
1803
  msgid "Congratulations, your installation is already up to date, nothing to do."
1804
  msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
1805
 
1806
- #: includes/optimization/tabs/wps-optimization-export.php:8
1807
- #: includes/optimization/wps-optimization.php:235
1808
  msgid "Export"
1809
  msgstr "تصدير"
1810
 
1811
- #: includes/optimization/tabs/wps-optimization-export.php:13
1812
  msgid "Export from"
1813
  msgstr "التصدير من"
1814
 
1815
- #: includes/optimization/tabs/wps-optimization-export.php:18
1816
- #: includes/optimization/tabs/wps-optimization-export.php:37
1817
- #: includes/optimization/tabs/wps-optimization-purging.php:185
1818
- #: includes/optimization/tabs/wps-optimization-purging.php:242
1819
- #: includes/optimization/tabs/wps-optimization-purging.php:266
1820
- #: includes/settings/tabs/wps-notifications.php:134
1821
- #: includes/settings/tabs/wps-notifications.php:164
1822
  msgid "Please select"
1823
  msgstr "الرجاء تحديد"
1824
 
1825
- #: includes/optimization/tabs/wps-optimization-export.php:26
1826
  msgid "Select the table for the output file."
1827
  msgstr "حدد الجدول لملف الإخراج."
1828
 
1829
- #: includes/optimization/tabs/wps-optimization-export.php:32
1830
  msgid "Export To"
1831
  msgstr "التصدير لـ"
1832
 
1833
- #: includes/optimization/tabs/wps-optimization-export.php:42
1834
  msgid "Select the output file type."
1835
  msgstr "حدد نوع ملف الإخراج."
1836
 
1837
- #: includes/optimization/tabs/wps-optimization-export.php:48
1838
  msgid "Include Header Row"
1839
  msgstr "تضمين رأس الصف"
1840
 
1841
- #: includes/optimization/tabs/wps-optimization-export.php:53
1842
  msgid "Include a header row as the first line of the exported file."
1843
  msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
1844
 
1845
- #: includes/optimization/tabs/wps-optimization-export.php:54
1846
  msgid "Start Now!"
1847
  msgstr "ابدأ الآن!"
1848
 
1849
- #: includes/optimization/tabs/wps-optimization-historical.php:15
1850
  msgid "Historical Values"
1851
  msgstr "القيم التاريخية"
1852
 
1853
- #: includes/optimization/tabs/wps-optimization-historical.php:20
1854
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1855
  msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام صحيحة."
1856
 
1857
- #: includes/optimization/tabs/wps-optimization-historical.php:26
1858
- #: includes/settings/tabs/wps-general.php:138
1859
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1860
- #: wp-statistics.php:423 wp-statistics.php:521
 
1861
  msgid "Visitors"
1862
  msgstr "الزوار"
1863
 
1864
- #: includes/optimization/tabs/wps-optimization-historical.php:31
1865
  msgid "Number of historical number of visitors to the site (current value is %s)."
1866
  msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
1867
 
1868
- #: includes/optimization/tabs/wps-optimization-historical.php:42
1869
  msgid "Number of historical number of visits to the site (current value is %s)."
1870
  msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
1871
 
1872
- #: includes/optimization/tabs/wps-optimization-historical.php:48
1873
  msgid "Update now!"
1874
  msgstr "تحديث الآن!"
1875
 
1876
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1877
- #: includes/optimization/tabs/wps-optimization-purging.php:43
1878
- #: includes/optimization/tabs/wps-optimization-purging.php:75
1879
- #: includes/optimization/tabs/wps-optimization-purging.php:107
1880
- #: includes/optimization/tabs/wps-optimization-purging.php:141
1881
  msgid "Are you sure?"
1882
  msgstr "هل أنت متأكد؟"
1883
 
1884
- #: includes/optimization/tabs/wps-optimization-purging.php:175
1885
  msgid "Data"
1886
  msgstr "المعطيات"
1887
 
1888
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1889
  msgid "Empty Table"
1890
  msgstr "تفريغ الجدول"
1891
 
1892
- #: includes/optimization/tabs/wps-optimization-purging.php:194
1893
  msgid "All data table will be lost."
1894
  msgstr "سيتم فقدان جميع البيانات الجدول."
1895
 
1896
- #: includes/optimization/tabs/wps-optimization-purging.php:195
1897
  msgid "Clear now!"
1898
  msgstr "مسح الآن!"
1899
 
1900
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1901
  msgid "Purge records older than"
1902
  msgstr "سجلات الضخ أقدم من"
1903
 
1904
- #: includes/optimization/tabs/wps-optimization-purging.php:209
1905
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1906
  msgstr "بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد الأدنى هو 30 يوما."
1907
 
1908
- #: includes/optimization/tabs/wps-optimization-purging.php:210
1909
- #: includes/optimization/tabs/wps-optimization-purging.php:225
1910
  msgid "Purge now!"
1911
  msgstr "ضخ الآن!"
1912
 
1913
- #: includes/optimization/tabs/wps-optimization-purging.php:232
1914
  msgid "Delete User Agent Types"
1915
  msgstr "حذف أنواع وكيل العضو"
1916
 
1917
- #: includes/optimization/tabs/wps-optimization-purging.php:237
1918
  msgid "Delete Agents"
1919
  msgstr "حذف الوكلاء"
1920
 
1921
- #: includes/optimization/tabs/wps-optimization-purging.php:252
1922
  msgid "All visitor data will be lost for this agent type."
1923
  msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
1924
 
1925
- #: includes/optimization/tabs/wps-optimization-purging.php:253
1926
- #: includes/optimization/tabs/wps-optimization-purging.php:277
1927
  msgid "Delete now!"
1928
  msgstr "حذف الآن!"
1929
 
1930
- #: includes/optimization/tabs/wps-optimization-purging.php:261
1931
  msgid "Delete Platforms"
1932
  msgstr "حذف المنصات"
1933
 
1934
- #: includes/optimization/tabs/wps-optimization-purging.php:276
1935
  msgid "All visitor data will be lost for this platform type."
1936
  msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
1937
 
1938
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1939
  msgid "Resources"
1940
  msgstr "الموارد"
1941
 
1942
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1943
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1944
  msgid "Memory usage in PHP"
1945
  msgstr "استخدام الذاكرة في PHP"
1946
 
1947
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1948
  msgid "Byte"
1949
  msgstr "بايت"
1950
 
1951
- #: includes/optimization/tabs/wps-optimization-resources.php:33
1952
  msgid "PHP Memory Limit"
1953
  msgstr "حدود ذاكرة PHP"
1954
 
1955
- #: includes/optimization/tabs/wps-optimization-resources.php:38
1956
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1957
  msgstr "حدود الذاكرة تسمح للبرنامج النصي باستهلاك حد معين، قم بتعيين ملف php.ini."
1958
 
1959
- #: includes/optimization/tabs/wps-optimization-resources.php:44
1960
- #: includes/optimization/tabs/wps-optimization-resources.php:55
1961
- #: includes/optimization/tabs/wps-optimization-resources.php:66
1962
- #: includes/optimization/tabs/wps-optimization-resources.php:77
1963
- #: includes/optimization/tabs/wps-optimization-resources.php:88
1964
- #: includes/optimization/tabs/wps-optimization-resources.php:99
1965
- #: includes/optimization/tabs/wps-optimization-resources.php:110
1966
  msgid "Number of rows in the %s table"
1967
  msgstr "عدد الصفوف في جدول %s"
1968
 
1969
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1970
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1971
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1972
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1973
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1974
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1975
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1976
  msgid "Row"
1977
  msgstr "صف"
1978
 
1979
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1980
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1981
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1982
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1983
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1984
- #: includes/optimization/tabs/wps-optimization-resources.php:104
1985
- #: includes/optimization/tabs/wps-optimization-resources.php:115
1986
  msgid "Number of rows"
1987
  msgstr "عدد الصفوف"
1988
 
1989
- #: includes/optimization/tabs/wps-optimization-resources.php:120
1990
  msgid "Version Info"
1991
  msgstr "معلومات الإصدار"
1992
 
1993
- #: includes/optimization/tabs/wps-optimization-resources.php:125
1994
  msgid "WP Statistics Version"
1995
  msgstr "نسخة WP Statistics"
1996
 
1997
- #: includes/optimization/tabs/wps-optimization-resources.php:130
1998
  msgid "The WP Statistics version you are running."
1999
  msgstr "إصدار WP Statistics."
2000
 
2001
- #: includes/optimization/tabs/wps-optimization-resources.php:136
2002
  msgid "PHP Version"
2003
  msgstr "نسخة PHP"
2004
 
2005
- #: includes/optimization/tabs/wps-optimization-resources.php:141
2006
  msgid "The PHP version you are running."
2007
  msgstr "إصدار PHP."
2008
 
2009
- #: includes/optimization/tabs/wps-optimization-resources.php:147
2010
  msgid "PHP Safe Mode"
2011
  msgstr "الوضع الآمن PHP"
2012
 
2013
- #: includes/optimization/tabs/wps-optimization-resources.php:152
2014
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2015
  msgstr "هل الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
2016
 
2017
- #: includes/optimization/tabs/wps-optimization-resources.php:158
2018
  msgid "jQuery Version"
2019
  msgstr "نسخة jQuery"
2020
 
2021
- #: includes/optimization/tabs/wps-optimization-resources.php:163
2022
  msgid "The jQuery version you are running."
2023
  msgstr "إصدار jQuery."
2024
 
2025
- #: includes/optimization/tabs/wps-optimization-resources.php:169
2026
  msgid "cURL Version"
2027
  msgstr "إصدار cURL"
2028
 
2029
- #: includes/optimization/tabs/wps-optimization-resources.php:173
2030
  msgid "cURL not installed"
2031
  msgstr "cURL غير مثبت"
2032
 
2033
- #: includes/optimization/tabs/wps-optimization-resources.php:174
2034
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2035
  msgstr "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم تثبيته يتم تعطيل GeoIP."
2036
 
2037
- #: includes/optimization/tabs/wps-optimization-resources.php:180
2038
- msgid "BC Math"
2039
- msgstr "BC Math"
2040
-
2041
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2042
  msgid "Installed"
2043
  msgstr "مثبت"
2044
 
2045
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2046
  msgid "Not installed"
2047
  msgstr "غير مثبت"
2048
 
2049
- #: includes/optimization/tabs/wps-optimization-resources.php:185
2050
- 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."
2051
- msgstr "هل تم تثبيت PHP BC Math Extension مسبقاً. الآن ملحق BC Math لم يعد مطلوبا لكود GeoIP ويتم سرده هنا فقط لأسباب تاريخية."
2052
-
2053
- #: includes/optimization/tabs/wps-optimization-resources.php:190
2054
  msgid "File Info"
2055
  msgstr "معلومات عن الملف"
2056
 
2057
- #: includes/optimization/tabs/wps-optimization-resources.php:195
2058
  msgid "GeoIP Database"
2059
  msgstr "قاعدة بيانات GeoIP"
2060
 
2061
- #: includes/optimization/tabs/wps-optimization-resources.php:204
2062
  msgid "Database file does not exist."
2063
  msgstr "لا وجود لملف قاعدة البيانات."
2064
 
2065
- #: includes/optimization/tabs/wps-optimization-resources.php:206
2066
- #: includes/optimization/tabs/wps-optimization-resources.php:225
2067
- #: includes/optimization/tabs/wps-optimization-resources.php:244
2068
  msgid ", created on "
2069
  msgstr "، التي تم إنشاؤها على"
2070
 
2071
- #: includes/optimization/tabs/wps-optimization-resources.php:208
2072
  msgid "The file size and date of the GeoIP database."
2073
  msgstr "حجم الملف والتاريخ من قاعدة بيانات GeoIP."
2074
 
2075
- #: includes/optimization/tabs/wps-optimization-resources.php:214
2076
  msgid "browscap.ini File"
2077
  msgstr "ملف browscap.ini"
2078
 
2079
- #: includes/optimization/tabs/wps-optimization-resources.php:223
2080
  msgid "browscap.ini file does not exist."
2081
  msgstr "لا وجود لملف browscap.ini."
2082
 
2083
- #: includes/optimization/tabs/wps-optimization-resources.php:227
2084
  msgid "The file size and date of the browscap.ini file."
2085
  msgstr "حجم الملف وتاريخ الملف browscap.ini."
2086
 
2087
- #: includes/optimization/tabs/wps-optimization-resources.php:233
2088
  msgid "browscap Cache File"
2089
  msgstr "browscap ملف ذاكرة التخزين المؤقت"
2090
 
2091
- #: includes/optimization/tabs/wps-optimization-resources.php:242
2092
  msgid "browscap cache file does not exist."
2093
  msgstr "لا وجود لملف ذاكرة التخزين المؤقت browscap."
2094
 
2095
- #: includes/optimization/tabs/wps-optimization-resources.php:246
2096
  msgid "The file size and date of the browscap cache file."
2097
  msgstr "حجم الملف وتاريخ الملف المؤقت browscap."
2098
 
2099
- #: includes/optimization/tabs/wps-optimization-resources.php:251
2100
  msgid "Client Info"
2101
  msgstr "معلومات العميل"
2102
 
2103
- #: includes/optimization/tabs/wps-optimization-resources.php:256
2104
  msgid "Client IP"
2105
  msgstr "IP العميل"
2106
 
2107
- #: includes/optimization/tabs/wps-optimization-resources.php:261
2108
  msgid "The client IP address."
2109
  msgstr "عنوان IP للعميل."
2110
 
2111
- #: includes/optimization/tabs/wps-optimization-resources.php:267
2112
  msgid "User Agent"
2113
  msgstr "وكيل المستخدم"
2114
 
2115
- #: includes/optimization/tabs/wps-optimization-resources.php:272
2116
  msgid "The client user agent string."
2117
  msgstr "سلسلة عامل المستخدم العميل."
2118
 
2119
- #: includes/optimization/tabs/wps-optimization-resources.php:278
2120
  msgid "Browser"
2121
  msgstr "المتصفح"
2122
 
2123
- #: includes/optimization/tabs/wps-optimization-resources.php:285
2124
  msgid "The detected client browser."
2125
  msgstr "مستكشف مستعرض العميل."
2126
 
2127
- #: includes/optimization/tabs/wps-optimization-resources.php:296
2128
  msgid "The detected client browser version."
2129
  msgstr "إصدار مستكشف مستعرض العميل."
2130
 
2131
- #: includes/optimization/tabs/wps-optimization-resources.php:307
2132
  msgid "The detected client platform."
2133
  msgstr "مستكشف منصة العميل"
2134
 
2135
- #: includes/optimization/tabs/wps-optimization-updates.php:4
2136
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2137
  msgstr "سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا يمكن التراجع، هل أنت متأكد؟"
2138
 
2139
- #: includes/optimization/tabs/wps-optimization-updates.php:16
2140
  msgid "GeoIP Options"
2141
  msgstr "خيارات GeoIP"
2142
 
2143
- #: includes/optimization/tabs/wps-optimization-updates.php:26
2144
  msgid "Updates any unknown location data in the database, this may take a while"
2145
  msgstr "تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
2146
 
2147
- #: includes/optimization/tabs/wps-optimization-updates.php:31
2148
- #: includes/settings/tabs/wps-general.php:66
2149
  msgid "IP Addresses"
2150
  msgstr "عناوين IP"
2151
 
2152
- #: includes/optimization/tabs/wps-optimization-updates.php:36
2153
- #: includes/settings/tabs/wps-general.php:71
2154
  msgid "Hash IP Addresses"
2155
  msgstr "عناوين IP المجزئة"
2156
 
2157
- #: includes/optimization/tabs/wps-optimization-updates.php:41
2158
  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"
2159
  msgstr "استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على استرداد عناوين IP في المستقبل لتجميع معلومات عن الموقع بعد ذلك وهذا قد يستغرق بعض الوقت"
2160
 
2161
- #: includes/optimization/wps-optimization.php:43
2162
  msgid "IP Addresses replaced with hash values."
2163
  msgstr "استبدال عناوين IP مع قيم التجزئة."
2164
 
2165
- #: includes/optimization/wps-optimization.php:51
2166
  msgid "Install routine complete."
2167
  msgstr "التثبيت الكامل الروتيني."
2168
 
2169
- #: includes/optimization/wps-optimization.php:234
2170
  msgid "Resources/Information"
2171
  msgstr "الموارد/معلومات"
2172
 
2173
- #: includes/optimization/wps-optimization.php:236
2174
  msgid "Purging"
2175
  msgstr "تطهير"
2176
 
2177
- #: includes/optimization/wps-optimization.php:237
2178
  msgid "Database"
2179
  msgstr "قاعدة البيانات"
2180
 
2181
- #: includes/optimization/wps-optimization.php:238
2182
  msgid "Updates"
2183
  msgstr "تحديثات"
2184
 
2185
- #: includes/optimization/wps-optimization.php:239
2186
  msgid "Historical"
2187
  msgstr "التاريخي"
2188
 
2189
- #: includes/settings/tabs/wps-about.php:8
2190
  msgid "WP Statistics V%s"
2191
  msgstr "WP Statistics V%s"
2192
 
2193
- #: includes/settings/tabs/wps-about.php:28
2194
  msgid "Visit Us Online"
2195
  msgstr "زورونا على الإنترنت"
2196
 
2197
- #: includes/settings/tabs/wps-about.php:32
2198
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2199
  msgstr "قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات ووردبريس."
2200
 
2201
- #: includes/settings/tabs/wps-about.php:32
2202
  msgid "website"
2203
  msgstr "الموقع"
2204
 
2205
- #: includes/settings/tabs/wps-about.php:36
2206
  msgid "Rate and Review at WordPress.org"
2207
  msgstr "التقييم و المراجعة في WordPress.org"
2208
 
2209
- #: includes/settings/tabs/wps-about.php:40
2210
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2211
  msgstr "كل الشكر لتثبيت احصائيات ووردبريس، ونحن نشجعكم على تقديم"
2212
 
2213
- #: includes/settings/tabs/wps-about.php:40
2214
  msgid "rating and review"
2215
  msgstr "التقييم و المراجعة"
2216
 
2217
- #: includes/settings/tabs/wps-about.php:40
2218
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2219
  msgstr "في WordPress.org. حيث أن ملاحظاتكم في موضع تقدير دائماً!"
2220
 
2221
- #: includes/settings/tabs/wps-about.php:44
2222
  msgid "Translations"
2223
  msgstr "الترجمات"
2224
 
2225
- #: includes/settings/tabs/wps-about.php:48
2226
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2227
  msgstr "احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
2228
 
2229
- #: includes/settings/tabs/wps-about.php:48
2230
  msgid "translation collaboration site"
2231
  msgstr "الموقع التعاوني للترجمة"
2232
 
2233
- #: includes/settings/tabs/wps-about.php:48
2234
  msgid "drop us a line"
2235
  msgstr "اترك لنا رسالة"
2236
 
2237
- #: includes/settings/tabs/wps-about.php:52
2238
  msgid "Support"
2239
  msgstr "دعم"
2240
 
2241
- #: includes/settings/tabs/wps-about.php:57
2242
  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:"
2243
  msgstr "نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
2244
 
2245
- #: includes/settings/tabs/wps-about.php:60
2246
- #: includes/settings/tabs/wps-about.php:61
2247
  msgid "Have you read the %s?"
2248
  msgstr "هل قرأت %s؟"
2249
 
2250
- #: includes/settings/tabs/wps-about.php:60
2251
  msgid "FAQs"
2252
  msgstr "أسئلة وأجوبة"
2253
 
2254
- #: includes/settings/tabs/wps-about.php:61
2255
  msgid "manual"
2256
  msgstr "الدليل"
2257
 
2258
- #: includes/settings/tabs/wps-about.php:62
2259
  msgid "Have you search the %s for a similar issue?"
2260
  msgstr "هل بحثت في %s لمشكلة مشابهة؟"
2261
 
2262
- #: includes/settings/tabs/wps-about.php:62
2263
  msgid "support forum"
2264
  msgstr "منتدى الدعم"
2265
 
2266
- #: includes/settings/tabs/wps-about.php:63
2267
  msgid "Have you search the Internet for any error messages you are receiving?"
2268
  msgstr "هل بحثت في الإنترنت عن أي رسائل خطأ التي تظهر لك؟"
2269
 
2270
- #: includes/settings/tabs/wps-about.php:64
2271
  msgid "Make sure you have access to your PHP error logs."
2272
  msgstr "تأكد أن لديك الوصول إلى سجلات الخطأ PHP الخاص بك."
2273
 
2274
- #: includes/settings/tabs/wps-about.php:67
2275
  msgid "And a few things to double-check:"
2276
  msgstr "وعدد قليل من الأشياء الأخرى:"
2277
 
2278
- #: includes/settings/tabs/wps-about.php:70
2279
  msgid "How's your memory_limit in php.ini?"
2280
  msgstr "كيف حال memory_limit الخاصة بك في ملف php.ini؟"
2281
 
2282
- #: includes/settings/tabs/wps-about.php:71
2283
  msgid "Have you tried disabling any other plugins you may have installed?"
2284
  msgstr "هل حاولت تعطيل أي إضافات أخرى التي قد تم تثبيتها؟"
2285
 
2286
- #: includes/settings/tabs/wps-about.php:72
2287
  msgid "Have you tried using the default WordPress theme?"
2288
  msgstr "هل حاولت استخدام المظهر الافتراضي للوردبريس؟"
2289
 
2290
- #: includes/settings/tabs/wps-about.php:73
2291
  msgid "Have you double checked the plugin settings?"
2292
  msgstr "هل ضاعفت الفحص على إعدادات البرنامج المساعد؟"
2293
 
2294
- #: includes/settings/tabs/wps-about.php:74
2295
  msgid "Do you have all the required PHP extensions installed?"
2296
  msgstr "هل قمت بتثبيت جميع ملحقات PHP المطلوبة؟"
2297
 
2298
- #: includes/settings/tabs/wps-about.php:75
2299
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2300
  msgstr "أنت تحصل على صفحة فارغة أو غير مكتملة العرض في المستعرض الخاص بك؟ قم بعرض المصدر للصفحة وتحقق من وجود أية أخطاء قاتلة؟"
2301
 
2302
- #: includes/settings/tabs/wps-about.php:76
2303
  msgid "Have you checked your PHP and web server error logs?"
2304
  msgstr "هل راجعت سجل أخطاء الـPHP الخاص بك؟"
2305
 
2306
- #: includes/settings/tabs/wps-about.php:79
2307
  msgid "Still not having any luck?"
2308
  msgstr "لم يحالفك الحظ حتى الآن؟"
2309
 
2310
- #: includes/settings/tabs/wps-about.php:79
2311
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2312
  msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
2313
 
2314
- #: includes/settings/tabs/wps-about.php:79
2315
  msgid "WordPress.org support forum"
2316
  msgstr "منتدى الدعم"
2317
 
2318
- #: includes/settings/tabs/wps-about.php:83
2319
  msgid "Alternatively %s support is available as well."
2320
  msgstr "كما أنه يتوفر دعم للغة %s كذلك."
2321
 
2322
- #: includes/settings/tabs/wps-about.php:83
2323
  msgid "Farsi"
2324
  msgstr "الفارسية"
2325
 
2326
- #: includes/settings/tabs/wps-exclusions.php:21
2327
  msgid "WP Statistics Honey Pot Page"
2328
  msgstr "الفسفور الابيض الاحصائيات عاء العسل الصفحة"
2329
 
2330
- #: includes/settings/tabs/wps-exclusions.php:22
2331
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2332
  msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
2333
 
2334
- #: includes/settings/tabs/wps-access-level.php:23
2335
- #: includes/settings/wps-settings.php:103
2336
  msgid "Access Levels"
2337
  msgstr "مستويات الوصول"
2338
 
2339
- #: includes/settings/tabs/wps-access-level.php:52
2340
  msgid "Required user level to view WP Statistics"
2341
  msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
2342
 
2343
- #: includes/settings/tabs/wps-access-level.php:67
2344
  msgid "Required user level to manage WP Statistics"
2345
  msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
2346
 
2347
- #: includes/settings/tabs/wps-access-level.php:75
2348
  msgid "See the %s for details on capability levels."
2349
  msgstr "اطلع على %s لمزيد من التفاصيل على مستويات القدرة."
2350
 
2351
- #: includes/settings/tabs/wps-access-level.php:75
2352
  msgid "WordPress Roles and Capabilities page"
2353
  msgstr "أدوار وقدرات صفحة ووردبريس"
2354
 
2355
- #: includes/settings/tabs/wps-access-level.php:76
2356
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2357
  msgstr "تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
2358
 
2359
- #: includes/settings/tabs/wps-access-level.php:77
2360
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2361
  msgstr "كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
2362
 
2363
- #: includes/settings/tabs/wps-access-level.php:78
2364
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2365
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2366
 
2367
- #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2368
- #: includes/settings/wps-settings.php:104 wp-statistics.php:415
2369
- #: wp-statistics.php:513
 
2370
  msgid "Exclusions"
2371
  msgstr "الاستثناءات"
2372
 
2373
- #: includes/settings/tabs/wps-exclusions.php:50
2374
  msgid "Record exclusions"
2375
  msgstr "سجل الاستثناءات"
2376
 
2377
- #: includes/settings/tabs/wps-exclusions.php:52
2378
- #: includes/settings/tabs/wps-exclusions.php:106
2379
- #: includes/settings/tabs/wps-exclusions.php:133
2380
- #: includes/settings/tabs/wps-exclusions.php:150
2381
  msgid "Enable"
2382
  msgstr "تمكين"
2383
 
2384
- #: includes/settings/tabs/wps-exclusions.php:53
2385
  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."
2386
  msgstr "يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، وليس فقط المستخدم الفعلي للموقع."
2387
 
2388
- #: includes/settings/tabs/wps-exclusions.php:58
2389
  msgid "Exclude User Roles"
2390
  msgstr "استبعاد أدوار المستخدم"
2391
 
2392
- #: includes/settings/tabs/wps-exclusions.php:74
2393
- #: includes/settings/tabs/wps-exclusions.php:196
2394
- #: includes/settings/tabs/wps-exclusions.php:203
2395
- #: includes/settings/tabs/wps-exclusions.php:210
2396
- #: includes/settings/tabs/wps-exclusions.php:217
2397
  msgid "Exclude"
2398
  msgstr "منع"
2399
 
2400
- #: includes/settings/tabs/wps-exclusions.php:75
2401
  msgid "Exclude %s role from data collection."
2402
  msgstr "استبعاد دور %s من جمع البيانات."
2403
 
2404
- #: includes/settings/tabs/wps-exclusions.php:81
2405
  msgid "IP/Robot Exclusions"
2406
  msgstr "استثناءات IP/Robot"
2407
 
2408
- #: includes/settings/tabs/wps-exclusions.php:85
2409
  msgid "Robot list"
2410
  msgstr "قائمة الروبوت"
2411
 
2412
- #: includes/settings/tabs/wps-exclusions.php:98
2413
  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."
2414
  msgstr "قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
2415
 
2416
- #: includes/settings/tabs/wps-exclusions.php:99
2417
  msgid "Reset to Default"
2418
  msgstr "إعادة تعيين إلى الافتراضي"
2419
 
2420
- #: includes/settings/tabs/wps-exclusions.php:104
2421
  msgid "Force robot list update after upgrades"
2422
  msgstr "إجبار تحديث قائمة الربوت بعد الترقيات"
2423
 
2424
- #: includes/settings/tabs/wps-exclusions.php:107
2425
  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."
2426
  msgstr "إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة سوف تضيع."
2427
 
2428
- #: includes/settings/tabs/wps-exclusions.php:112
2429
  msgid "Robot visit threshold"
2430
  msgstr "الحد الأدنى بزيارة الروبوت"
2431
 
2432
- #: includes/settings/tabs/wps-exclusions.php:115
2433
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2434
  msgstr "تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = تعطيل."
2435
 
2436
- #: includes/settings/tabs/wps-exclusions.php:120
2437
  msgid "Excluded IP address list"
2438
  msgstr "قائمة عناوين IP المستبعدة"
2439
 
2440
- #: includes/settings/tabs/wps-exclusions.php:123
2441
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2442
  msgstr "قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و 192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية 32 أو 255.255.255.255.255."
2443
 
2444
- #: includes/settings/tabs/wps-exclusions.php:124
2445
  msgid "Add 10.0.0.0"
2446
  msgstr "إضافة 10.0.0.0"
2447
 
2448
- #: includes/settings/tabs/wps-exclusions.php:125
2449
  msgid "Add 172.16.0.0"
2450
  msgstr "إضافة 172.16.0.0"
2451
 
2452
- #: includes/settings/tabs/wps-exclusions.php:126
2453
  msgid "Add 192.168.0.0"
2454
  msgstr "إضافة 192.168.0.0"
2455
 
2456
- #: includes/settings/tabs/wps-exclusions.php:131
2457
  msgid "Use honey pot"
2458
  msgstr "استخدام وعاء العسل"
2459
 
2460
- #: includes/settings/tabs/wps-exclusions.php:134
2461
  msgid "Use a honey pot page to identify robots."
2462
  msgstr "استخدام صفحة وعاء العسل لتحديد الروبوتات."
2463
 
2464
- #: includes/settings/tabs/wps-exclusions.php:139
2465
  msgid "Honey pot post id"
2466
  msgstr "معرف مقال وعاء العسل"
2467
 
2468
- #: includes/settings/tabs/wps-exclusions.php:142
2469
  msgid "The post id to use for the honeypot page."
2470
  msgstr "رقم المشاركة لاستخدامها في صفحة المصيدة."
2471
 
2472
- #: includes/settings/tabs/wps-exclusions.php:143
2473
  msgid "Create a new honey pot page"
2474
  msgstr "إنشاء صفحة وعاء عسل جديدة"
2475
 
2476
- #: includes/settings/tabs/wps-exclusions.php:156
2477
  msgid "GeoIP Exclusions"
2478
  msgstr "استثناءات GeoIP"
2479
 
2480
- #: includes/settings/tabs/wps-exclusions.php:160
2481
  msgid "Excluded countries list"
2482
  msgstr "قائمة الدول المستثناة"
2483
 
2484
- #: includes/settings/tabs/wps-exclusions.php:163
2485
  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."
2486
  msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لاستبعاد من جمع الإحصاءات. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
2487
 
2488
- #: includes/settings/tabs/wps-exclusions.php:168
2489
  msgid "Included countries list"
2490
  msgstr "قائمة البلدان المدرجة"
2491
 
2492
- #: includes/settings/tabs/wps-exclusions.php:171
2493
  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."
2494
  msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لتشمل في جمع الإحصاءات، إذا كانت هذه القائمة ليست فارغة، سيتم تسجيل الزوار فقط من الدول المدرجة. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
2495
 
2496
- #: includes/settings/tabs/wps-exclusions.php:176
2497
  msgid "Host Exclusions"
2498
  msgstr "استثناءات المضيف"
2499
 
2500
- #: includes/settings/tabs/wps-exclusions.php:180
2501
  msgid "Excluded hosts list"
2502
  msgstr "قائمة المضيفين المستبعدين"
2503
 
2504
- #: includes/settings/tabs/wps-exclusions.php:183
2505
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2506
  msgstr "قائمة أسماء المضيف المؤهل بالكامل (أي. server.example.com، سطر واحد في المائة) لاستبعاد من جمع الإحصاءات."
2507
 
2508
- #: includes/settings/tabs/wps-exclusions.php:185
2509
  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."
2510
  msgstr "ملاحظة: هذا الخيار لإجراء بحث DNS عكسي على تحميل كل صفحة ولكن بدلا من ذلك بالتخزين المؤقت لعنوان الـIP لأسماء المضيفين المنصوص عليها هي ساعة واحدة. إذا كنت استبعدت المضيفين وقم بتعيين حيوي قد تجد بعض الدرجات من التداخل عندما يتغير عنوان IP للمضيف وذلك وعندما يتم تحديث ذاكرة التخزين المؤقت قد يؤدي في بعض الزيارات المسجلة."
2511
 
2512
- #: includes/settings/tabs/wps-exclusions.php:190
2513
  msgid "Site URL Exclusions"
2514
  msgstr "رابط الموقع المستثنى"
2515
 
2516
- #: includes/settings/tabs/wps-exclusions.php:194
2517
  msgid "Excluded login page"
2518
  msgstr "استبعاد صفحة تسجيل الدخول"
2519
 
2520
- #: includes/settings/tabs/wps-exclusions.php:197
2521
  msgid "Exclude the login page for registering as a hit."
2522
  msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
2523
 
2524
- #: includes/settings/tabs/wps-exclusions.php:201
2525
  msgid "Excluded admin pages"
2526
  msgstr "استبعاد الصفحات الإدارية"
2527
 
2528
- #: includes/settings/tabs/wps-exclusions.php:204
2529
  msgid "Exclude the admin pages for registering as a hit."
2530
  msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
2531
 
2532
- #: includes/settings/tabs/wps-exclusions.php:208
2533
  msgid "Excluded RSS feeds"
2534
  msgstr "آر إس إس مستبعدة"
2535
 
2536
- #: includes/settings/tabs/wps-exclusions.php:211
2537
  msgid "Exclude the RSS feeds for registering as a hit."
2538
  msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
2539
 
2540
- #: includes/settings/tabs/wps-externals.php:162
2541
  msgid "browscap settings"
2542
  msgstr "إعدادات browscap"
2543
 
2544
- #: includes/settings/tabs/wps-externals.php:167
2545
  msgid "browscap usage"
2546
  msgstr "استخدام browscap"
2547
 
2548
- #: includes/settings/tabs/wps-externals.php:52
2549
- #: includes/settings/tabs/wps-externals.php:76
2550
- #: includes/settings/tabs/wps-externals.php:109
2551
- #: includes/settings/tabs/wps-externals.php:172
2552
- #: includes/settings/tabs/wps-externals.php:196
2553
- #: includes/settings/tabs/wps-externals.php:236
2554
- #: includes/settings/tabs/wps-externals.php:260
2555
- #: includes/settings/tabs/wps-general.php:76
2556
- #: includes/settings/tabs/wps-general.php:92
2557
- #: includes/settings/tabs/wps-general.php:116
2558
- #: includes/settings/tabs/wps-general.php:132
2559
- #: includes/settings/tabs/wps-general.php:148
2560
- #: includes/settings/tabs/wps-general.php:160
2561
- #: includes/settings/tabs/wps-general.php:187
2562
- #: includes/settings/tabs/wps-general.php:199
2563
- #: includes/settings/tabs/wps-general.php:214
2564
- #: includes/settings/tabs/wps-general.php:228
2565
- #: includes/settings/tabs/wps-general.php:258
2566
- #: includes/settings/tabs/wps-general.php:270
2567
- #: includes/settings/tabs/wps-general.php:286
2568
- #: includes/settings/tabs/wps-general.php:325
2569
- #: includes/settings/tabs/wps-general.php:341
2570
- #: includes/settings/tabs/wps-maintenance.php:40
2571
- #: includes/settings/tabs/wps-maintenance.php:68
2572
- #: includes/settings/tabs/wps-notifications.php:69
2573
- #: includes/settings/tabs/wps-notifications.php:81
2574
- #: includes/settings/tabs/wps-notifications.php:93
2575
- #: includes/settings/tabs/wps-notifications.php:105
2576
- #: includes/settings/tabs/wps-notifications.php:121
2577
- #: includes/settings/tabs/wps-overview-display.php:34
2578
- #: includes/settings/tabs/wps-overview-display.php:54
2579
- #: includes/settings/tabs/wps-overview-display.php:94
2580
- #: includes/settings/tabs/wps-overview-display.php:106
2581
  msgid "Active"
2582
  msgstr "تفعيل"
2583
 
2584
- #: includes/settings/tabs/wps-externals.php:173
2585
  msgid "The browscap database will be downloaded and used to detect robots."
2586
  msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
2587
 
2588
- #: includes/settings/tabs/wps-externals.php:179
2589
  msgid "Update browscap Info"
2590
  msgstr "تحديث معلومات browscap"
2591
 
2592
- #: includes/settings/tabs/wps-externals.php:184
2593
  msgid "Download browscap Database"
2594
  msgstr "تحميل قاعدة بيانات browscap"
2595
 
2596
- #: includes/settings/tabs/wps-externals.php:65
2597
- #: includes/settings/tabs/wps-externals.php:185
2598
- #: includes/settings/tabs/wps-externals.php:249
2599
  msgid "Save changes on this page to download the update."
2600
  msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
2601
 
2602
- #: includes/settings/tabs/wps-externals.php:191
2603
  msgid "Schedule weekly update of browscap DB"
2604
  msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
2605
 
2606
- #: includes/settings/tabs/wps-externals.php:79
2607
- #: includes/settings/tabs/wps-externals.php:199
2608
- #: includes/settings/tabs/wps-externals.php:263
2609
  msgid "Next update will be"
2610
  msgstr "التحديث القادم سيكون في"
2611
 
2612
- #: includes/settings/tabs/wps-externals.php:215
2613
  msgid "Download of the browscap database will be scheduled for once a week."
2614
  msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
2615
 
2616
- #: includes/settings/tabs/wps-general.php:50
2617
  msgid "This will delete the manual when you save the settings, are you sure?"
2618
  msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
2619
 
2620
- #: includes/settings/tabs/wps-general.php:77
2621
  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."
2622
  msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
2623
 
2624
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
 
2625
  msgid "Users Online"
2626
  msgstr "الإعضاء المتواجدين"
2627
 
2628
- #: includes/settings/tabs/wps-general.php:87
2629
  msgid "User online"
2630
  msgstr "المتواجدين الآن"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-03-26 05:58:31+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
+ "X-Generator: GlotPress/1.0.2\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: wp-statistics/ajax.php:220
14
+ msgid "No matching widget found!"
15
+ msgstr "لايوجد ودجات متطابق!"
16
+
17
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
18
+ msgid "Zlib gzopen()"
19
+ msgstr "Zlib gzopen()"
20
+
21
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
22
+ msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
23
+ msgstr "إذا الدالة gzopen() منصبة. قاعدة بيانات GeoIP تتطلب gzopen() للتحميل بنجاح."
24
+
25
+ #: wp-statistics/wps-updates.php:16
26
+ msgid "Error the download_url() or gzopen() functions do not exist!"
27
+ msgstr "خطأ في download_url() أو gzopen() الوظائف لا وجود لها."
28
+
29
+ #: wp-statistics/wps-updates.php:45
30
+ msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
31
+ msgstr "خطأ في صلاحيات دليل قاعدة بيانات GeoIP, تأكد من أن الخادم يعطي صلاحيات الكتابة للدليل في: %s"
32
+
33
+ #: wp-statistics/wp-statistics.php:95
34
  msgid "&#151; You are running an unsupported version of PHP."
35
  msgstr "&#151; أنت تقوم بتشغيل إصدار PHP غير معتمد."
36
 
37
+ #: wp-statistics/wp-statistics.php:95
38
  msgid "WP Statistics Disabled"
39
  msgstr "إحصائيات ووردبريس معطلة"
40
 
41
+ #: wp-statistics/wp-statistics.php:99
42
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
43
  msgstr "إحصائيات ووردبريس وجدت إصدار PHP %s غير معتمد, الإضافة تتطلب إصدار PHP %s أو أعلى!"
44
 
45
+ #: wp-statistics/wp-statistics.php:101
46
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
47
  msgstr "يرجى الاتصال بموفر خدمة الاستضافة للترقية إلى إصدار معتمد أو عطل إحصائيات ووردبريس لإزالة هذه الرسالة."
48
 
49
+ #: wp-statistics/ajax.php:299
50
  msgid "ERROR: Widget not found!"
51
  msgstr "خطأ: القطعة غير موجود!"
52
 
53
+ #: wp-statistics/dashboard.php:111 wp-statistics/editor.php:66
54
+ #: wp-statistics/includes/log/log.php:20
55
  msgid "Loading..."
56
  msgstr "تحميل..."
57
 
58
+ #: wp-statistics/dashboard.php:129 wp-statistics/editor.php:84
59
+ #: wp-statistics/includes/log/log.php:2
60
  msgid "Reloading..."
61
  msgstr "إعادة تحميل ..."
62
 
63
+ #: wp-statistics/includes/log/top-visitors.php:41
64
+ #: wp-statistics/wp-statistics.php:447
65
  msgid "Top Visitors"
66
  msgstr "كبار الزوار"
67
 
68
+ #: wp-statistics/wp-statistics.php:206
69
  msgid "optimization page"
70
  msgstr "صفحة التحسين"
71
 
72
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
73
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
74
  msgid "Enabled"
75
  msgstr "تمكين"
76
 
77
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
78
  msgid "Purge Old Data Daily"
79
  msgstr "تطهير البيانات اليومية القديمة"
80
 
81
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
82
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
83
  msgstr "سيتم تشغيل المهام المجدولة لووردبريس يوميا لتطهير أي بيانات قديمة من عدد محدد من الأيام."
84
 
85
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
86
  msgid "Purge data older than"
87
  msgstr "تطهير البيانات الأقدم من"
88
 
89
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
90
  msgid "Purge High Hit Count Visitors Daily"
91
  msgstr "تطهير النقرات العالية لعدد الزوار اليومي"
92
 
93
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
94
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
95
  msgstr "سيتم تشغيل مهام ووردبريس المجدولة يوميا لتطهير أي إحصائيات بيانات مستخدمين حيث أن المستخدم لديه أكثر من عدد محدد من الزيارات في اليوم الواحد (الملقب أنها ربما تكون بوت)."
96
 
97
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
98
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
99
  msgstr "عدد الزيارات المطلوبة لحذف الزائر. قيمة الحد الأدنى هو 10 نقرات. والقيم الغير صالحة ستعطل في وضع الصيانة اليومي."
100
 
101
+ #: wp-statistics/shortcode.php:184
102
  msgid "The post/page id to get page statistics on."
103
  msgstr "رقم المقال/الصفحة للحصول على احصائياتها."
104
 
105
+ #: wp-statistics/shortcode.php:181
106
  msgid "Post/Page ID"
107
  msgstr "رقم المقال/الصفحة"
108
 
109
+ #: wp-statistics/includes/functions/functions.php:435
110
  msgid "Ask.com"
111
  msgstr "Ask.com"
112
 
113
+ #: wp-statistics/shortcode.php:158
114
  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."
115
  msgstr "الجدول الزمني للحصول على إحصائية لـ, strtotime() (http://php.net/manual/en/datetime.formats.php) سيتم استخدامها لحساب ذلك. استخدام \"المجموع\" للحصول على كل التواريخ المسجلة."
116
 
117
+ #: wp-statistics/wp-statistics.php:180
118
  msgid "visitor tracking"
119
  msgstr "تتبع الزوار"
120
 
121
+ #: wp-statistics/wp-statistics.php:181
122
  msgid "geoip collection"
123
  msgstr "مجموعة geoip"
124
 
125
+ #: wp-statistics/wp-statistics.php:197
126
  msgid "visit database index"
127
  msgstr "زيارة فهرس قاعدة البيانات"
128
 
129
+ #: wp-statistics/wp-statistics.php:206
130
  msgid "Database updates are required, please go to %s and update the following: %s"
131
  msgstr "يجب تحديث قاعدة البيانات، يرجى الذهاب إلى %s وتحديث التالي: %s"
132
 
133
+ #: wp-statistics/wp-statistics.php:197
134
  msgid "countries database index"
135
  msgstr "دول فهرس قاعدة البيانات"
136
 
137
+ #: wp-statistics/wp-statistics.php:190
138
  msgid "search table"
139
  msgstr "جدول البحث"
140
 
141
+ #: wp-statistics/wp-statistics.php:184
142
  msgid "settings page"
143
  msgstr "صفحة الإعدادات"
144
 
145
+ #: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
146
  msgid ","
147
  msgstr "،"
148
 
149
+ #: wp-statistics/wp-statistics.php:184
150
  msgid "The following features are disabled, please go to %s and enable them: %s"
151
  msgstr "الميزات التالية معطلة، يرجى الذهاب إلى %s وتمكينها: %s"
152
 
153
+ #: wp-statistics/wp-statistics.php:179
154
  msgid "hit tracking"
155
  msgstr "تتبع النقرات"
156
 
157
+ #: wp-statistics/wp-statistics.php:178
158
  msgid "online user tracking"
159
  msgstr "تتبع المستخدم المتصل"
160
 
161
+ #: wp-statistics/wp-statistics.php:775
162
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
163
  msgstr "جدول الإضافة التالية غير موجود في قاعدة البيانات, يرجى إعادة تشغيل %s للتثبيت الروتيني %s:"
164
 
165
+ #: wp-statistics/includes/optimization/wps-optimization.php:196
166
  msgid "Search table conversion complete, %d rows added."
167
  msgstr "بحث تحويل الجدول المكتمل، الصفوف %d أضيفت."
168
 
169
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
170
  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."
171
  msgstr "التثبيت القديمة من احصائيات ووردبريس تخزن تفاصيل البحث في جدول آخر التي يمكن أن تصبح مشكلة على أداء مجموعات البيانات الكبيرة. تم إنشاء جدول جديد لإجراء هذه المعلومات بطريقة أفضل للتحجيم."
172
 
173
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
174
  msgid "Search Table"
175
  msgstr "جدول البحث"
176
 
177
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
178
  msgid "Convert"
179
  msgstr "التحويل"
180
 
181
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
182
  msgid "Convert Now!"
183
  msgstr "تحويل الآن!"
184
 
185
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
186
  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."
187
  msgstr "التثبيت القديمة من احصائيات ووردبريس تخزن تفاصيل البحث في جدول آخر التي يمكن أن تصبح مشكلة على أداء مجموعات البيانات الكبيرة. تم إنشاء جدول جديد لإجراء هذه المعلومات بطريقة أفضل للتدرج، ولكن يجب أولا تحويل البيانات القديمة إلى الشكل الجديد قبل أن تتمكن من استخدامها."
188
 
189
+ #: wp-statistics/includes/log/exclusions.php:24
190
  msgid "Referrer Spam"
191
  msgstr "إحالات البريد المزعج"
192
 
193
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:279
194
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
195
  msgstr "سيتم جدولة التحميل من قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها بالقائمة السوداء لمرة واحدة في الأسبوع."
196
 
197
+ #: wp-statistics/includes/settings/wps-settings.php:105
198
  msgid "Externals"
199
  msgstr "الجهات الخارجية"
200
 
201
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:220
202
  msgid "Piwik Referrer Spam Blacklist settings"
203
  msgstr "إعدادات القائمة السوداء Piwik لإحالات الرسائل الغير مرغوب فيها"
204
 
205
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:255
206
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
207
  msgstr "جدولة التحديث الأسبوعي لـ Piwik لإحالات الرسائل الغير مرغوب فيها بقاعدة بيانات القائمة السوداء"
208
 
209
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:248
210
  msgid "Download Piwik Referrer Spam Blacklist Database"
211
  msgstr "تحميل قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها من القائمة السوداء"
212
 
213
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:243
214
  msgid "Update Piwik Referrer Spam Blacklist Info"
215
  msgstr "تحديث Piwik لإحالات الرسائل الغير مرغوب فيها بمعلومات القائمة السوداء"
216
 
217
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:237
218
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
219
  msgstr "سيتم تحميل قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها بالقائمة السوداء واستخدامها للكشف عن مرجعية البريد المزعج."
220
 
221
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:225
222
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
223
  msgstr "يتم توفير إحالات الرسائل الغير مرغوب فيها بالقائمة السوداء من قبل Piwik، وهي متاحة من %s."
224
 
225
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:231
226
  msgid "Piwik Referrer Spam Blacklist usage"
227
  msgstr "المرجع Piwik للرسائل الغير المرغوب فيها باستخدام القائمة السوداء"
228
 
229
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
230
  msgid "Treat corrupt browser info as a bot"
231
  msgstr "علاج معلومات المتصفح فاسدة بوت"
232
 
233
+ #: wp-statistics/includes/log/exclusions.php:24
234
  msgid "404 Pages"
235
  msgstr "404 صفحات"
236
 
237
+ #: wp-statistics/includes/log/top-visitors.php:26
238
  msgid "Date"
239
  msgstr "تاريخ"
240
 
241
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
242
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
243
  msgstr "علاج أي زائر مع معلومات الفاسدة المتصفح (عنوان IP مفقود أو فارغة سلسلة عامل المستخدم) على الروبوت."
244
 
245
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
246
  msgid "Excluded 404 pages"
247
  msgstr "استبعاد 404 صفحات"
248
 
249
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
250
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
251
  msgstr "استبعاد أي URL التي تقوم بإرجاع - رسالة &quot;404 لم يتم العثور على&quot;."
252
 
253
+ #: wp-statistics/wps-updates.php:37
254
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
255
  msgstr "خطأ في إنشاء GeoIP دليل قاعدة البيانات، تأكد من خادم الويب الخاص بك لديه أذونات لإنشاء الدلائل في:٪ الصورة"
256
 
257
+ #: wp-statistics/includes/settings/tabs/wps-general.php:281
258
  msgid "Add page title to empty search words"
259
  msgstr "إضافة عنوان الصفحة على كلمات بحث فارغة"
260
 
261
+ #: wp-statistics/includes/settings/tabs/wps-general.php:287
262
  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."
263
  msgstr "إذا تم التعرف على محرك بحث باسم المرجع لكنه لا يشمل استعلام البحث هذا الخيار يوجب استبدال عنوان الصفحة في الاقتباس الذي يسبقه \"~:\" كما طلب البحث للمساعدة في تحديد ما قد تم البحث عنه من قبل المستخدم."
264
 
265
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
266
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
267
  msgid "Purge visitors with more than"
268
  msgstr "الزوار المطهرين مع أكثر من"
269
 
270
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
271
  msgid "hits"
272
  msgstr "مشاهدات"
273
 
274
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
275
  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."
276
  msgstr "حذف بيانات إحصائيات المستخدم حيث أن المستخدم لديه أكثر من عدد محدد من الزيارات في يوم واحد. هذا يمكن أن يكون مفيد لتوضيح البيانات القديمة عندما يتم زيارة موقعك من خلال بوت. سيؤدي ذلك إلى إزالة الزوار ونقراتهم في الموقع، على كل حال هذا لن يزيل النقرات الفردية للصفحة كما لم يتم تسجيل تلك البيانات على أساس كل استخدام. قيمة الحد الأدنى هو 10 نقرات."
277
 
278
+ #: wp-statistics/includes/functions/purge-hits.php:28
279
  msgid "No visitors found to purge."
280
  msgstr "لم يتم إيجاد زوار في التطهير."
281
 
282
+ #: wp-statistics/includes/functions/purge-hits.php:25
283
  msgid "%s records purged successfully."
284
  msgstr "%s سجلات طهرت بنجاح."
285
 
286
+ #: wp-statistics/ajax.php:178
287
+ #: wp-statistics/includes/functions/purge-hits.php:32
288
  msgid "Number of hits must be greater than or equal to 10!"
289
  msgstr "عدد الزيارات يجب أن يكون أكبر من أو يساوي 10!"
290
 
291
+ #: wp-statistics/shortcode.php:141
292
  msgid "Page Visits"
293
  msgstr "عدد زيارات هذه الصفحة"
294
 
295
+ #: wp-statistics/shortcode.php:144
296
  msgid "Page Count"
297
  msgstr "عدد الصفحة"
298
 
299
+ #: wp-statistics/shortcode.php:145
300
  msgid "Comment Count"
301
  msgstr "عدد التعليق"
302
 
303
+ #: wp-statistics/shortcode.php:146
304
  msgid "Spam Count"
305
  msgstr "عدد السبام"
306
 
307
+ #: wp-statistics/shortcode.php:147
308
  msgid "User Count"
309
  msgstr "عدد المستخدم"
310
 
311
+ #: wp-statistics/shortcode.php:148
312
  msgid "Post Average"
313
  msgstr "متوسط المشاركة"
314
 
315
+ #: wp-statistics/shortcode.php:149
316
  msgid "Comment Average"
317
  msgstr "متوسط التعليق"
318
 
319
+ #: wp-statistics/shortcode.php:150
320
  msgid "User Average"
321
  msgstr "متوسط المستخدم"
322
 
323
+ #: wp-statistics/shortcode.php:162
324
  msgid "Search Provider"
325
  msgstr "محرك البحث"
326
 
327
+ #: wp-statistics/shortcode.php:165
328
  msgid "The search provider to get statistics on."
329
  msgstr "مزود البحث للحصول على إحصائيات عن."
330
 
331
+ #: wp-statistics/shortcode.php:169
332
  msgid "Number Format"
333
  msgstr "صيغة الرقم"
334
 
335
+ #: wp-statistics/shortcode.php:172
336
  msgid "The format to display numbers in: i18n, english, none."
337
  msgstr "صيغة الأرقام للعرض في: I18N، الانجليزية، لا شيء."
338
 
339
+ #: wp-statistics/shortcode.php:176
340
  msgid "English"
341
  msgstr "الإنجليزية"
342
 
343
+ #: wp-statistics/shortcode.php:177
344
  msgid "International"
345
  msgstr "دولي"
346
 
347
+ #: wp-statistics/includes/log/exclusions.php:191
348
+ #: wp-statistics/includes/log/hit-statistics.php:164
349
  msgid "Hits Statistics Summary"
350
  msgstr "موجز إحصائيات المشاهدات"
351
 
352
+ #: wp-statistics/includes/log/exclusions.php:201
353
+ #: wp-statistics/includes/log/hit-statistics.php:175
354
  msgid "Chart Total"
355
  msgstr "إجمالي الرسم البياني"
356
 
357
+ #: wp-statistics/includes/log/exclusions.php:206
358
+ #: wp-statistics/includes/log/hit-statistics.php:181
359
  msgid "All Time Total"
360
  msgstr "مجموع كل الوقت"
361
 
362
+ #: wp-statistics/includes/log/log.php:6
363
  msgid "Have you thought about donating to WP Statistics?"
364
  msgstr "هل فكرت في التبرع لإحصائيات ووردبريس؟"
365
 
366
+ #: wp-statistics/includes/settings/tabs/wps-about.php:20
367
+ #: wp-statistics/wp-statistics.php:429
368
  msgid "Donate"
369
  msgstr "التبرع"
370
 
371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
372
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
373
  msgstr "صف لنا مدى إستمتاعك في منتج إحصائيات ووردبريس؟ واضغط صفحة %s وبيّن لنا بعض الحب!"
374
 
375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
376
  msgid "donation"
377
  msgstr "التبرعات"
378
 
379
+ #: wp-statistics/includes/log/log.php:6
380
  msgid "Donate Now!"
381
  msgstr "تبرع الآن!"
382
 
383
+ #: wp-statistics/includes/log/log.php:6
384
  msgid "Close"
385
  msgstr "إغلاق"
386
 
387
+ #: wp-statistics/shortcode.php:135
388
  msgid "Select the statistic you wish to display."
389
  msgstr "حدد الإحصائية التي ترغب في عرضها."
390
 
391
+ #: wp-statistics/shortcode.php:132
392
  msgid "Statistic"
393
  msgstr "إحصائية"
394
 
395
+ #: wp-statistics/shortcode.php:143
396
  msgid "Post Count"
397
  msgstr "عدد المقال"
398
 
399
+ #: wp-statistics/shortcode.php:155
400
  msgid "Time Frame"
401
  msgstr "الإطار الزمني"
402
 
403
+ #: wp-statistics/includes/functions/functions.php:1032
404
  msgid "to"
405
  msgstr "إلى"
406
 
407
+ #: wp-statistics/includes/functions/functions.php:1032
408
+ #: wp-statistics/includes/log/top-visitors.php:29
409
  msgid "Go"
410
  msgstr "إذهب"
411
 
412
+ #: wp-statistics/includes/log/top-pages.php:102
413
  msgid "Rank #5"
414
  msgstr "المرتبة #5"
415
 
416
+ #: wp-statistics/includes/log/top-pages.php:102
417
  msgid "Rank #4"
418
  msgstr "المرتبة #4"
419
 
420
+ #: wp-statistics/includes/log/top-pages.php:102
421
  msgid "Rank #3"
422
  msgstr "المرتبة #3"
423
 
424
+ #: wp-statistics/includes/log/top-pages.php:102
425
  msgid "Rank #1"
426
  msgstr "المرتبة #1"
427
 
428
+ #: wp-statistics/includes/log/top-pages.php:102
429
  msgid "Rank #2"
430
  msgstr "المرتبة #2"
431
 
432
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
433
  msgid "Visits Table"
434
  msgstr "جدول الزيارات"
435
 
436
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
437
  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."
438
  msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات في كل مرة. بتثبيت أحدث حماية مقابل هذا الفهرس الفريد على الجدول. و لإنشاء فهرس على الإصدارات القديمة المثبتة يجب أن يتم حذف الإدخالات المكررة أولا. أنقر على \"التحديث الآن\" لفحص جدول الزيارات، وحذف الإدخالات المكررة وإضافة الفهرس."
439
 
440
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
441
  msgid "This operation could take a long time on installs with many rows in the visits table."
442
  msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا لتثبيت العديد من الصفوف في جدول الزيارات."
443
 
444
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
445
  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."
446
  msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات. للحماية من ذلك ثبت الفهرس الفريد في الجدول."
447
 
448
+ #: wp-statistics/includes/log/last-visitor.php:68
449
  msgid "Filtered by"
450
  msgstr "تمت تصفيتها من قبل"
451
 
452
+ #: wp-statistics/includes/functions/functions.php:1026
453
+ #: wp-statistics/includes/functions/functions.php:1029
454
  msgid "Range"
455
  msgstr "المدى"
456
 
457
+ #: wp-statistics/includes/functions/functions.php:1032
458
+ #: wp-statistics/includes/log/top-visitors.php:29
459
  msgid "MM/DD/YYYY"
460
  msgstr "MM/DD/YYYY"
461
 
462
+ #: wp-statistics/includes/settings/tabs/wps-general.php:342
463
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
464
  msgstr "لا تستخدم الترجمات واستخدام بدلاً من ذلك الإعدادات الافتراضية الإنجليزية لإحصائيات ووردبريس (يتطلب تحميل صفحتين)"
465
 
466
+ #: wp-statistics/includes/settings/tabs/wps-general.php:336
467
  msgid "Force English"
468
  msgstr "إجبار اللغة الإنجليزية"
469
 
470
+ #: wp-statistics/includes/settings/tabs/wps-general.php:331
471
  msgid "Languages"
472
  msgstr "اللغات"
473
 
474
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
475
  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."
476
  msgstr "ملاحظة: هذا الخيار لن يتعامل مع معايير عنوان URL، (أي شيء بعد علامة؟) إلا اسم البرنامج النصي . سيتم تجاهل إدخالات أقل من حرفين."
477
 
478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
479
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
480
  msgstr "قائمة عناوين المواقع المحلية (اتصل بنا,حول, واحد في كل سطر) للإستبعاد من جمع الإحصائيات."
481
 
482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
483
  msgid "Excluded URLs list"
484
  msgstr "قائمة عناوين المواقع المستبعدة"
485
 
486
+ #: wp-statistics/includes/log/exclusions.php:24
487
  msgid "Excluded URL"
488
  msgstr "العناوين المستبعدة"
489
 
490
+ #: wp-statistics/includes/log/widgets/quickstats.php:52
491
+ #: wp-statistics/includes/log/widgets/summary.php:52
492
  msgid "Last 365 Days (Year)"
493
  msgstr "مشاركة 365 يوم (السنة)"
494
 
495
+ #: wp-statistics/includes/log/widgets/quickstats.php:46
496
+ #: wp-statistics/includes/log/widgets/summary.php:46
497
  msgid "Last 30 Days (Month)"
498
  msgstr "آخر 30 يوم (شهر)"
499
 
500
+ #: wp-statistics/includes/log/widgets/quickstats.php:40
501
+ #: wp-statistics/includes/log/widgets/summary.php:40
502
  msgid "Last 7 Days (Week)"
503
  msgstr "آخر 7 أيام (أسبوع)"
504
 
505
+ #: wp-statistics/includes/functions/functions.php:441
506
  msgid "Yahoo!"
507
  msgstr "ياهو!"
508
 
509
+ #: wp-statistics/includes/functions/functions.php:442
510
  msgid "Yandex"
511
  msgstr "ياندكس"
512
 
513
+ #: wp-statistics/includes/functions/functions.php:438
514
  msgid "clearch.org"
515
  msgstr "clearch.org"
516
 
517
+ #: wp-statistics/includes/functions/functions.php:439
518
  msgid "DuckDuckGo"
519
  msgstr "دك دك غو"
520
 
521
+ #: wp-statistics/includes/functions/functions.php:437
522
  msgid "Bing"
523
  msgstr "بينج"
524
 
525
+ #: wp-statistics/includes/functions/functions.php:436
526
  msgid "Baidu"
527
  msgstr "بايدو"
528
 
529
+ #: wp-statistics/includes/log/exclusions.php:24
 
 
 
 
530
  msgid "Feeds"
531
  msgstr "التغذيات"
532
 
533
+ #: wp-statistics/includes/log/exclusions.php:24
534
  msgid "User Role"
535
  msgstr "دور المستخدم"
536
 
537
+ #: wp-statistics/includes/log/exclusions.php:24
538
  msgid "Login Page"
539
  msgstr "صفحة تسجيل الدخول"
540
 
541
+ #: wp-statistics/includes/log/exclusions.php:24
542
  msgid "Admin Page"
543
  msgstr "صفحة الإدارة"
544
 
545
+ #: wp-statistics/includes/log/exclusions.php:24
546
  msgid "Self Referral"
547
  msgstr "الإحالة الذاتية"
548
 
549
+ #: wp-statistics/includes/log/exclusions.php:24
550
  msgid "IP Match"
551
  msgstr "المتطابق IP"
552
 
553
+ #: wp-statistics/includes/log/exclusions.php:24
554
  msgid "Robot"
555
  msgstr "روبوت"
556
 
557
+ #: wp-statistics/includes/log/online.php:100
558
  msgid "Currently there are no users online in the site."
559
  msgstr "حالياً هناك مستخدمين متواجدين في الموقع."
560
 
561
+ #: wp-statistics/includes/log/exclusions.php:24
562
  msgid "Robot Threshold"
563
  msgstr "الحد من الروبوت"
564
 
565
+ #: wp-statistics/includes/log/exclusions.php:24
566
  msgid "Honey Pot"
567
  msgstr "وعاء العسل"
568
 
569
+ #: wp-statistics/includes/log/widgets/page.php:8
570
  msgid "Page Trending Stats"
571
  msgstr "صفحة الإحصائيات الأكثر رواجاً"
572
 
573
+ #: wp-statistics/includes/log/exclusions.php:24
574
  msgid "Hostname"
575
  msgstr "اسم المضيف"
576
 
577
+ #: wp-statistics/includes/settings/tabs/wps-general.php:93
578
+ #: wp-statistics/includes/settings/tabs/wps-general.php:133
579
+ #: wp-statistics/includes/settings/tabs/wps-general.php:149
580
+ #: wp-statistics/includes/settings/tabs/wps-general.php:188
581
+ #: wp-statistics/includes/settings/tabs/wps-general.php:200
582
+ #: wp-statistics/includes/settings/tabs/wps-general.php:229
583
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:122
584
  msgid "Enable or disable this feature"
585
  msgstr "تمكين أو تعطيل هذه الميزة"
586
 
587
+ #: wp-statistics/includes/settings/tabs/wps-general.php:99
588
  msgid "Check for online users every"
589
  msgstr "تحقق من المتصلين في الموقع في كل"
590
 
591
+ #: wp-statistics/includes/settings/tabs/wps-general.php:104
592
  msgid "Second"
593
  msgstr "ثانية"
594
 
595
+ #: wp-statistics/includes/settings/tabs/wps-general.php:105
596
  msgid "Time for the check accurate online user in the site. Now: %s Second"
597
  msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
598
 
599
+ #: wp-statistics/includes/settings/tabs/wps-general.php:111
600
  msgid "Record all user"
601
  msgstr "تسجيل جميع المستخدمين"
602
 
603
+ #: wp-statistics/includes/settings/tabs/wps-general.php:117
604
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
605
  msgstr "يتجاهل إعدادات الإقصاء ويسجل كل المستخدمين التي يتم على الانترنت (بما في ذلك الإحالة الذاتية والروبوتات). وينبغي أن تستخدم فقط لاستكشاف الأخطاء وإصلاحها."
606
 
607
+ #: wp-statistics/includes/settings/tabs/wps-general.php:155
608
  msgid "Store entire user agent string"
609
  msgstr "تخزين كامل سلسلة عامل المستخدم"
610
 
611
+ #: wp-statistics/includes/settings/tabs/wps-general.php:161
612
  msgid "Only enabled for debugging"
613
  msgstr "تمكين فقط من أجل التصحيح"
614
 
615
+ #: wp-statistics/includes/settings/tabs/wps-general.php:167
616
  msgid "Coefficient per visitor"
617
  msgstr "درجة لكل زائر"
618
 
619
+ #: wp-statistics/includes/settings/tabs/wps-general.php:172
620
  msgid "For each visit to account for several hits. Currently %s."
621
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
622
 
623
+ #: wp-statistics/includes/settings/tabs/wps-general.php:177
624
+ #: wp-statistics/includes/settings/tabs/wps-general.php:182
625
+ #: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:516
626
  msgid "Pages"
627
  msgstr "الصفحات"
628
 
629
+ #: wp-statistics/includes/settings/tabs/wps-general.php:194
630
  msgid "Track all pages"
631
  msgstr "تتبع جميع الصفحات"
632
 
633
+ #: wp-statistics/includes/settings/tabs/wps-general.php:209
634
  msgid "Strip parameters from URI"
635
  msgstr "معايير الشريط من URI"
636
 
637
+ #: wp-statistics/includes/settings/tabs/wps-general.php:215
638
  msgid "This will remove anything after the ? in a URL."
639
  msgstr "سيؤدي هذا إلى إزالة أي شيء بعد؟ في URL."
640
 
641
+ #: wp-statistics/includes/settings/tabs/wps-general.php:223
642
  msgid "Disable hits column in post/pages list"
643
  msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
644
 
645
+ #: wp-statistics/includes/settings/tabs/wps-general.php:234
646
  msgid "Miscellaneous"
647
  msgstr "متفرقات"
648
 
649
+ #: wp-statistics/includes/settings/tabs/wps-general.php:239
650
  msgid "Show stats in menu bar"
651
  msgstr "إظهار الاحصائيات في شريط القوائم"
652
 
653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:244
654
  msgid "No"
655
  msgstr "لا"
656
 
657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:245
658
  msgid "Yes"
659
  msgstr "نعم"
660
 
661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:247
662
  msgid "Show stats in admin menu bar"
663
  msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
664
 
665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:253
666
  msgid "Hide admin notices about non active features"
667
  msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
668
 
669
+ #: wp-statistics/includes/settings/tabs/wps-general.php:259
670
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
671
  msgstr "افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية في صفحة المشرف، وهذا الخيار لتعطيل هذه الإشعارات."
672
 
673
+ #: wp-statistics/includes/settings/tabs/wps-general.php:265
674
  msgid "Delete the manual"
675
  msgstr "حذف الدليل"
676
 
677
+ #: wp-statistics/includes/settings/tabs/wps-general.php:271
678
  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."
679
  msgstr "افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا تم تمكين هذا الخيار سيتم حذفه الآن، وخلال الترقيات في المستقبل."
680
 
681
+ #: wp-statistics/includes/settings/tabs/wps-general.php:276
682
  msgid "Search Engines"
683
  msgstr "محركات البحث"
684
 
685
+ #: wp-statistics/includes/settings/tabs/wps-general.php:293
686
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
687
  msgstr "تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
688
 
689
+ #: wp-statistics/includes/settings/tabs/wps-general.php:308
690
  msgid "disable"
691
  msgstr "تعطيل"
692
 
693
+ #: wp-statistics/includes/settings/tabs/wps-general.php:309
694
  msgid "Disable %s from data collection and reporting."
695
  msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
696
 
697
+ #: wp-statistics/includes/settings/tabs/wps-general.php:315
698
  msgid "Charts"
699
  msgstr "الرسوم البيانية"
700
 
701
+ #: wp-statistics/includes/settings/tabs/wps-general.php:320
702
  msgid "Include totals"
703
  msgstr "تتضمن الاجماليات"
704
 
705
+ #: wp-statistics/includes/settings/tabs/wps-general.php:326
706
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
707
  msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
708
 
709
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:32
710
  msgid "GeoIP settings"
711
  msgstr "إعدادات GeoIP"
712
 
713
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:37
714
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
715
  msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
716
 
717
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:47
718
  msgid "GeoIP collection"
719
  msgstr "مجموعة GeoIP"
720
 
721
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:53
722
  msgid "For get more information and location (country) from visitor, enable this feature."
723
  msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
724
 
725
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:59
726
  msgid "Update GeoIP Info"
727
  msgstr "تحديث معلومات GeoIP"
728
 
729
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:64
730
  msgid "Download GeoIP Database"
731
  msgstr "تحميل قاعدة بيانات GeoIP"
732
 
733
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:71
734
  msgid "Schedule monthly update of GeoIP DB"
735
  msgstr "جدولة التحديث الشهري لGeoIP DB"
736
 
737
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:97
738
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
739
  msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
740
 
741
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:98
742
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
743
  msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
744
 
745
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:104
746
  msgid "Populate missing GeoIP after update of GeoIP DB"
747
  msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
748
 
749
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:110
750
  msgid "Update any missing GeoIP data after downloading a new database."
751
  msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
752
 
753
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:116
754
  msgid "Country code for private IP addresses"
755
  msgstr "رمز البلد لعناوين IP خاصة"
756
 
757
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:121
758
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
759
  msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
760
 
761
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:132
762
  msgid "GeoIP collection is disabled due to the following reasons:"
763
  msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
764
 
765
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:135
766
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
767
  msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
768
 
769
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:140
770
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
771
  msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
772
 
773
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:146
774
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
775
  msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
776
 
777
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:152
778
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
779
  msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
780
 
781
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
782
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
783
  msgstr "سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد من أنك تريد تمكين هذا الخيار؟"
784
 
785
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
786
  msgid "Days"
787
  msgstr "أيام"
788
 
789
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
790
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
791
  msgstr "عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
792
 
793
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:44
794
  msgid "Common Report Options"
795
  msgstr "خيارات تقرير المشترك"
796
 
797
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:49
798
  msgid "E-mail addresses"
799
  msgstr "عناوين البريد الإلكتروني"
800
 
801
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:54
802
  msgid "A comma separated list of e-mail addresses to send reports to."
803
  msgstr "أفصل قائمة عناوين البريد الإلكتروني بفاصلة لإرسال التقارير إلى."
804
 
805
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:59
806
  msgid "Update Reports"
807
  msgstr "تقارير التحديث"
808
 
809
+ #: wp-statistics/includes/log/exclusions.php:24
810
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:64
811
  msgid "Browscap"
812
  msgstr "Browscap"
813
 
814
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:70
815
  msgid "Send a report whenever the browscap.ini is updated."
816
  msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
817
 
818
+ #: wp-statistics/includes/log/exclusions.php:24
819
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:76
820
  msgid "GeoIP"
821
  msgstr "GeoIP"
822
 
823
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:82
824
  msgid "Send a report whenever the GeoIP database is updated."
825
  msgstr "إرسال تقرير كلما يتم تحديث قاعدة البيانات GeoIP."
826
 
827
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:88
828
  msgid "Pruning"
829
  msgstr "تنقيح"
830
 
831
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:94
832
  msgid "Send a report whenever the pruning of database is run."
833
  msgstr "إرسال تقرير كلما يتم تشغيل التنقيح في قاعدة البيانات."
834
 
835
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:100
836
  msgid "Upgrade"
837
  msgstr "ترقية"
838
 
839
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:106
840
  msgid "Send a report whenever the plugin is upgraded."
841
  msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
842
 
843
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:111
844
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:116
845
+ #: wp-statistics/schedule.php:221
846
  msgid "Statistical reporting"
847
  msgstr "تقارير الإحصائيات"
848
 
849
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:129
850
  msgid "Schedule"
851
  msgstr "جدول"
852
 
853
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:153
854
  msgid "Select how often to receive statistical report."
855
  msgstr "حدد عدد المرات لتلقي تقرير إحصائي."
856
 
857
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:159
858
  msgid "Send reports via"
859
  msgstr "إرسال التقارير عن طريق"
860
 
861
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:165
862
  msgid "Email"
863
  msgstr "البريد الإلكتروني"
864
 
865
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:167
866
  msgid "SMS"
867
  msgstr "رسائل نصية"
868
 
869
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:170
870
  msgid "Select delivery method for statistical report."
871
  msgstr "حدد طريقة التسليم للتقرير الإحصائي."
872
 
873
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
874
  msgid "Note: To send SMS text messages please install the %s plugin."
875
  msgstr "ملاحظة: لإرسال رسائل نصية SMS الرجاء تثبيت إضافة %s."
876
 
877
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
878
  msgid "WordPress SMS"
879
  msgstr "الرسائل النصية"
880
 
881
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:180
882
  msgid "Report body"
883
  msgstr "تقرير الهيئة"
884
 
885
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:185
886
  msgid "Enter the contents of the report."
887
  msgstr "أدخل محتويات التقرير."
888
 
889
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:187
890
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
891
  msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
892
 
893
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:188
894
+ #: wp-statistics/widget.php:38 wp-statistics/widget.php:247
895
+ #: wp-statistics/wp-statistics.php:621
896
  msgid "User Online"
897
  msgstr "المتواجدين الآن"
898
 
899
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:189
900
+ #: wp-statistics/widget.php:52 wp-statistics/widget.php:253
901
  msgid "Today Visitor"
902
  msgstr "زوار اليوم"
903
 
904
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:190
905
+ #: wp-statistics/widget.php:45 wp-statistics/widget.php:250
906
  msgid "Today Visit"
907
  msgstr "زيارات اليوم"
908
 
909
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:191
910
+ #: wp-statistics/widget.php:66 wp-statistics/widget.php:259
911
  msgid "Yesterday Visitor"
912
  msgstr "زوار الأمس"
913
 
914
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:192
915
+ #: wp-statistics/widget.php:59
916
  msgid "Yesterday Visit"
917
  msgstr "زيارات الأمس"
918
 
919
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:193
920
+ #: wp-statistics/widget.php:101 wp-statistics/widget.php:274
921
  msgid "Total Visitor"
922
  msgstr "مجموع الزوار"
923
 
924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:194
925
+ #: wp-statistics/widget.php:94 wp-statistics/widget.php:271
926
  msgid "Total Visit"
927
  msgstr "مجموع الزيارات"
928
 
929
+ #: wp-statistics/shortcode.php:175
930
  msgid "None"
931
  msgstr "لا شيء"
932
 
933
+ #: wp-statistics/includes/settings/wps-settings.php:108
934
  msgid "About"
935
  msgstr "حول"
936
 
937
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
938
  msgid "Dashboard"
939
  msgstr "لوحة القيادة"
940
 
941
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
942
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
943
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
944
  msgid "The following items are global to all users."
945
  msgstr "العناصر التالية هي عالمية لجميع المستخدمين."
946
 
947
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
948
  msgid "Disable dashboard widgets"
949
  msgstr "تعطيل قطع لوحة القيادة"
950
 
951
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
952
  msgid "Disable the dashboard widgets."
953
  msgstr "تعطيل القطع للوحة القيادة"
954
 
955
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
956
  msgid "Page/Post Editor"
957
  msgstr "محرر الصفحة/المشاركة"
958
 
959
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
960
  msgid "Disable post/page editor widget"
961
  msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
962
 
963
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
964
  msgid "Disable the page/post editor widget."
965
  msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
966
 
967
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
968
  msgid "Map type"
969
  msgstr "نوع الخريطة"
970
 
971
+ #: wp-statistics/includes/functions/functions.php:440
972
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
973
  msgid "Google"
974
  msgstr "جوجل"
975
 
976
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
977
  msgid "JQVMap"
978
  msgstr "JQVMap"
979
 
980
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
981
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
982
  msgstr "خيار \"جوجل\" يتوجب استخدام خدمة الخرائط جوجل لرسم زوار مؤخرا. (يتطلب الوصول إلى Google)"
983
 
984
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
985
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
986
  msgstr "خيار \"JQVMap\" استخدام مكتبة خرائط JQVMap جافا سكريبت لرسم الزوار مؤخرا. (لا يتطلب أي خدمات خارجية)."
987
 
988
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
989
  msgid "Disable map"
990
  msgstr "تعطيل الخريطة"
991
 
992
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:95
993
  msgid "Disable the map display"
994
  msgstr "تعطيل عرض الخريطة"
995
 
996
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:101
997
  msgid "Get country location from Google"
998
  msgstr "الحصول على موقع البلد من جوجل"
999
 
1000
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:107
1001
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
1002
  msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
1003
 
1004
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:15
1005
  msgid "WP Statisitcs Removal"
1006
  msgstr "إزالة احصائيات ووردبريس"
1007
 
1008
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:20
1009
  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."
1010
  msgstr "إزالة احصائيات ووردبريس لن تقوم بإزالة البيانات والإعدادات، يمكنك استخدام هذا الخيار لإزالة البيانات الخاصة بك قبل إلغاء تثبيت البرنامج المساعد."
1011
 
1012
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:23
1013
  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."
1014
  msgstr "بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل الصفحة مرة أخرى."
1015
 
1016
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:29
1017
  msgid "Remove data and settings"
1018
  msgstr "إزالة البيانات والإعدادات"
1019
 
1020
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:34
1021
  msgid "Remove"
1022
  msgstr "إزالة"
1023
 
1024
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:35
1025
  msgid "Remove data and settings, this action cannot be undone."
1026
  msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
1027
 
1028
+ #: wp-statistics/includes/settings/wps-settings.php:100
1029
  msgid "General"
1030
  msgstr "عام"
1031
 
1032
+ #: wp-statistics/includes/settings/wps-settings.php:101
1033
  msgid "Notifications"
1034
  msgstr "الإشعارات"
1035
 
1036
+ #: wp-statistics/includes/settings/wps-settings.php:102
1037
  msgid "Dashboard/Overview"
1038
  msgstr "اللوحة/نظرة عامة"
1039
 
1040
+ #: wp-statistics/includes/settings/wps-settings.php:106
1041
  msgid "Maintenance"
1042
  msgstr "صيانة"
1043
 
1044
+ #: wp-statistics/includes/settings/wps-settings.php:107
1045
  msgid "Removal"
1046
  msgstr "الإزالة"
1047
 
1048
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:85
1049
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
1050
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:286
1051
+ #: wp-statistics/includes/settings/tabs/wps-general.php:349
1052
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
1053
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:201
1054
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:116
1055
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:42
1056
  msgid "Update"
1057
  msgstr "تحديث"
1058
 
1059
+ #: wp-statistics/schedule.php:10
1060
  msgid "Once Weekly"
1061
  msgstr "مرة كل أسبوع"
1062
 
1063
+ #: wp-statistics/schedule.php:17
1064
  msgid "Once Every 2 Weeks"
1065
  msgstr "مرة كل 2 أسابيع"
1066
 
1067
+ #: wp-statistics/schedule.php:24
1068
  msgid "Once Every 4 Weeks"
1069
  msgstr "مرة كل 4 أسابيع"
1070
 
1071
+ #: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
1072
+ #: wp-statistics/wp-statistics.php:469
1073
  msgid "Statistics"
1074
  msgstr "الاحصائيات"
1075
 
1076
+ #: wp-statistics/widget.php:15
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "عرض احصائيات الموقع في الشريط الجانبي."
1079
 
1080
+ #: wp-statistics/widget.php:73 wp-statistics/widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "زيارات الأسبوع"
1083
 
1084
+ #: wp-statistics/widget.php:80 wp-statistics/widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "زيارات الشهر"
1087
 
1088
+ #: wp-statistics/widget.php:87 wp-statistics/widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "زيارات السنة"
1091
 
1092
+ #: wp-statistics/widget.php:108 wp-statistics/widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "مجموع مشاهدات الصفحة"
1095
 
1096
+ #: wp-statistics/widget.php:116
1097
  msgid "Search Engine referred"
1098
  msgstr "محرك البحث المشار"
1099
 
1100
+ #: wp-statistics/widget.php:123 wp-statistics/widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "إجمالي المشاركات"
1103
 
1104
+ #: wp-statistics/widget.php:130 wp-statistics/widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "إجمالي الصفحات"
1107
 
1108
+ #: wp-statistics/widget.php:137 wp-statistics/widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "إجمالي التعليقات"
1111
 
1112
+ #: wp-statistics/widget.php:144 wp-statistics/widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "إجمالي السبام"
1115
 
1116
+ #: wp-statistics/widget.php:151 wp-statistics/widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "عدد الاعضاء"
1119
 
1120
+ #: wp-statistics/widget.php:158 wp-statistics/widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "متوسط المشاركات"
1123
 
1124
+ #: wp-statistics/widget.php:165 wp-statistics/widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "متوسط التعليقات"
1127
 
1128
+ #: wp-statistics/widget.php:172 wp-statistics/widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "متوسط الاعضاء"
1131
 
1132
+ #: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
1133
+ #: wp-statistics/widget.php:324
1134
  msgid "Last Post Date"
1135
  msgstr "تاريخ آخر مشاركة"
1136
 
1137
+ #: wp-statistics/widget.php:240
1138
  msgid "Name"
1139
  msgstr "الأسم"
1140
 
1141
+ #: wp-statistics/widget.php:244
1142
  msgid "Items"
1143
  msgstr "البنود"
1144
 
1145
+ #: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:646
1146
  msgid "Yesterday visit"
1147
  msgstr "زيارات الأمس"
1148
 
1149
+ #: wp-statistics/widget.php:280
1150
  msgid "Search Engine Referred"
1151
  msgstr "محرك بحث المشارين"
1152
 
1153
+ #: wp-statistics/widget.php:283
1154
  msgid "Select type of search engine"
1155
  msgstr "حدد نوع من محرك البحث"
1156
 
1157
+ #: wp-statistics/wp-statistics.php:122
1158
  msgid "WP Statistics has been removed, please disable and delete it."
1159
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
1160
 
1161
+ #: wp-statistics/wp-statistics.php:54
 
1162
  msgid "WP Statistics"
1163
  msgstr "احصائيات ووردبريس"
1164
 
1165
+ #: wp-statistics/wp-statistics.php:55
 
1166
  msgid "Complete statistics for your WordPress site."
1167
  msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
1168
 
1169
+ #: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
1170
+ #: wp-statistics/wp-statistics.php:523
1171
  msgid "Settings"
1172
  msgstr "الإعدادات"
1173
 
1174
+ #: wp-statistics/wp-statistics.php:325
1175
  msgid "Click here to visit the plugin on WordPress.org"
1176
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
1177
 
1178
+ #: wp-statistics/wp-statistics.php:325
1179
  msgid "Visit WordPress.org page"
1180
  msgstr "زيارة صفحة WordPress.org"
1181
 
1182
+ #: wp-statistics/wp-statistics.php:328
1183
  msgid "Click here to rate and review this plugin on WordPress.org"
1184
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
1185
 
1186
+ #: wp-statistics/wp-statistics.php:328
1187
  msgid "Rate this plugin"
1188
  msgstr "ضع تقييمك لهذه الاضافة"
1189
 
1190
+ #: wp-statistics/wp-statistics.php:372
1191
  msgid "WP Statistics - Hits"
1192
  msgstr "احصائيات ووردبريس - الزيارات"
1193
 
1194
+ #: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:472
1195
+ #: wp-statistics/wp-statistics.php:510
1196
  msgid "Overview"
1197
  msgstr "نظرة عامة"
1198
 
1199
+ #: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:515
1200
  msgid "Online"
1201
  msgstr "المتواجدون"
1202
 
1203
+ #: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:517
1204
  msgid "Referrers"
1205
  msgstr "الدعوات"
1206
 
1207
+ #: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
1208
+ #: wp-statistics/wp-statistics.php:518
1209
  msgid "Searches"
1210
  msgstr "عمليات البحث"
1211
 
1212
+ #: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:519
1213
  msgid "Search Words"
1214
  msgstr "كلمات البحث"
1215
 
1216
+ #: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:520
1217
  msgid "Top Visitors Today"
1218
  msgstr "أعلى زوار اليوم"
1219
 
1220
+ #: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:522
1221
  msgid "Optimization"
1222
  msgstr "التحسين"
1223
 
1224
+ #: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:486
1225
  msgid "Manual"
1226
  msgstr "الدليل"
1227
 
1228
+ #: wp-statistics/wp-statistics.php:501
1229
  msgid "Site"
1230
  msgstr "موقع"
1231
 
1232
+ #: wp-statistics/wp-statistics.php:502
1233
  msgid "Options"
1234
  msgstr "خيارات"
1235
 
1236
+ #: wp-statistics/wp-statistics.php:628
1237
  msgid "Today visitor"
1238
  msgstr "زوار اليوم"
1239
 
1240
+ #: wp-statistics/wp-statistics.php:634
1241
  msgid "Today visit"
1242
  msgstr "زيارات اليوم"
1243
 
1244
+ #: wp-statistics/wp-statistics.php:640
1245
  msgid "Yesterday visitor"
1246
  msgstr "زيارات الأمس"
1247
 
1248
+ #: wp-statistics/wp-statistics.php:652
1249
  msgid "View Stats"
1250
  msgstr "عرض الإحصائيات"
1251
 
1252
+ #: wp-statistics/wp-statistics.php:676
1253
  msgid "Download ODF file"
1254
  msgstr "تحميل ملف ODF"
1255
 
1256
+ #: wp-statistics/wp-statistics.php:677
1257
  msgid "Download HTML file"
1258
  msgstr "تحميل ملف HTML"
1259
 
1260
+ #: wp-statistics/wp-statistics.php:681
1261
  msgid "Manual file not found."
1262
  msgstr "لم يتم العثور على ملف الدليل."
1263
 
1264
+ #: wp-statistics/wp-statistics.php:748 wp-statistics/wp-statistics.php:880
1265
+ #: wp-statistics/wp-statistics.php:915
1266
  msgid "You do not have sufficient permissions to access this page."
1267
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
1268
 
1269
+ #: wp-statistics/wp-statistics.php:301
1270
  msgid "WP Statistics %s installed on"
1271
  msgstr "احصائيات ووردبريس %s مثبتة على"
1272
 
1273
+ #: wp-statistics/wps-updates.php:54
1274
  msgid "Error downloading GeoIP database from: %s - %s"
1275
  msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
1276
 
1277
+ #: wp-statistics/wps-updates.php:65
1278
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1279
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
1280
 
1281
+ #: wp-statistics/wps-updates.php:72
1282
  msgid "Error could not open destination GeoIP database for writing %s"
1283
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
1284
 
1285
+ #: wp-statistics/wps-updates.php:88
1286
  msgid "GeoIP Database updated successfully!"
1287
  msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
1288
 
1289
+ #: wp-statistics/wps-updates.php:113
1290
  msgid "GeoIP update on"
1291
  msgstr "تحديث GeoIP على"
1292
 
1293
+ #: wp-statistics/wps-updates.php:180
1294
  msgid "Error downloading browscap database from: %s - %s"
1295
  msgstr "خطأ في قاعدة بيانات browscap تحميل من: %s - %s"
1296
 
1297
+ #: wp-statistics/wps-updates.php:289
1298
  msgid "browscap database updated successfully!"
1299
  msgstr "قاعدة بيانات browscap تم تحديثها بنجاح!"
1300
 
1301
+ #: wp-statistics/wps-updates.php:299
1302
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1303
  msgstr "تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap.ini السابق."
1304
 
1305
+ #: wp-statistics/wps-updates.php:307
1306
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1307
  msgstr "تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
1308
 
1309
+ #: wp-statistics/wps-updates.php:329
1310
  msgid "browscap already at current version!"
1311
  msgstr "browscap بالفعل في النسخة الحالية!"
1312
 
1313
+ #: wp-statistics/wps-updates.php:342
1314
  msgid "Browscap.ini update on"
1315
  msgstr "تحديث Browscap.ini على"
1316
 
1317
+ #: wp-statistics/dashboard.php:56
 
 
 
 
 
 
 
 
 
1318
  msgid "Quick Stats"
1319
  msgstr "إحصائيات سريعة"
1320
 
1321
+ #: wp-statistics/dashboard.php:57
1322
+ #: wp-statistics/includes/log/widgets/browsers.php:41
1323
  msgid "Top 10 Browsers"
1324
  msgstr "أفضل 10 متصفحات"
1325
 
1326
+ #: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:457
1327
  msgid "Top 10 Countries"
1328
  msgstr "أعلى 10 دول"
1329
 
1330
+ #: wp-statistics/dashboard.php:59
1331
  msgid "Today's Visitor Map"
1332
  msgstr "خريطة زوار اليوم"
1333
 
1334
+ #: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
1335
+ #: wp-statistics/includes/log/hit-statistics.php:8
1336
+ #: wp-statistics/wp-statistics.php:446
1337
  msgid "Hit Statistics"
1338
  msgstr "احصائية النقرات"
1339
 
1340
+ #: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:450
1341
  msgid "Top 10 Pages"
1342
  msgstr "أفضل 10 صفحات"
1343
 
1344
+ #: wp-statistics/dashboard.php:62
1345
+ #: wp-statistics/includes/log/last-visitor.php:36
1346
+ #: wp-statistics/wp-statistics.php:451
1347
  msgid "Recent Visitors"
1348
  msgstr "الزيارات الأخيرة"
1349
 
1350
+ #: wp-statistics/dashboard.php:63
1351
+ #: wp-statistics/includes/log/top-referring.php:59
1352
+ #: wp-statistics/includes/log/top-referring.php:81
1353
+ #: wp-statistics/wp-statistics.php:456
1354
  msgid "Top Referring Sites"
1355
  msgstr "أعلى المواقع اشارة"
1356
 
1357
+ #: wp-statistics/dashboard.php:64
1358
+ #: wp-statistics/includes/log/widgets/quickstats.php:75
1359
+ #: wp-statistics/includes/log/widgets/summary.php:75
1360
+ #: wp-statistics/wp-statistics.php:448
1361
  msgid "Search Engine Referrals"
1362
  msgstr "إحالات محرك البحث"
1363
 
1364
+ #: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:454
1365
  msgid "Summary"
1366
  msgstr "ملخص"
1367
 
1368
+ #: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
1369
+ #: wp-statistics/wp-statistics.php:449
1370
  msgid "Latest Search Words"
1371
  msgstr "أحدث كلمات البحث"
1372
 
1373
+ #: wp-statistics/dashboard.php:67
1374
  msgid "Top 10 Visitors Today"
1375
  msgstr "أفضل 10 زوار اليوم"
1376
 
1377
+ #: wp-statistics/editor.php:58
1378
  msgid "This post is not yet published."
1379
  msgstr "لم يتم نشر هذا المقال حتى الآن."
1380
 
1381
+ #: wp-statistics/includes/functions/geoip-populate.php:24
1382
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1383
  msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
1384
 
1385
+ #: wp-statistics/includes/functions/geoip-populate.php:48
1386
  msgid "Updated %s GeoIP records in the visitors database."
1387
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
1388
 
1389
+ #: wp-statistics/includes/functions/purge.php:21
1390
+ #: wp-statistics/includes/functions/purge.php:39
1391
+ #: wp-statistics/includes/functions/purge.php:50
1392
+ #: wp-statistics/includes/functions/purge.php:61
1393
+ #: wp-statistics/includes/functions/purge.php:94
1394
  msgid "%s data older than %s days purged successfully."
1395
  msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
1396
 
1397
+ #: wp-statistics/includes/functions/purge.php:23
1398
+ #: wp-statistics/includes/functions/purge.php:41
1399
+ #: wp-statistics/includes/functions/purge.php:52
1400
+ #: wp-statistics/includes/functions/purge.php:63
1401
+ #: wp-statistics/includes/functions/purge.php:96
1402
  msgid "No records found to purge from %s!"
1403
  msgstr "لا توجد سجلات للتخلص من %s!"
1404
 
1405
+ #: wp-statistics/includes/functions/purge-hits.php:45
1406
+ #: wp-statistics/includes/functions/purge.php:109
1407
  msgid "Database pruned on"
1408
  msgstr "قاعدة بيانات مجردة على"
1409
 
1410
+ #: wp-statistics/includes/functions/purge.php:114
1411
  msgid "Please select a value over 30 days."
1412
  msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
1413
 
1414
+ #: wp-statistics/includes/log/all-browsers.php:21
1415
  msgid "Browser Statistics"
1416
  msgstr "إحصائيات المتصفح"
1417
 
1418
+ #: wp-statistics/includes/log/all-browsers.php:29
1419
+ #: wp-statistics/includes/log/all-browsers.php:113
1420
+ #: wp-statistics/includes/log/all-browsers.php:248
1421
+ #: wp-statistics/includes/log/exclusions.php:72
1422
+ #: wp-statistics/includes/log/exclusions.php:190
1423
+ #: wp-statistics/includes/log/hit-statistics.php:26
1424
+ #: wp-statistics/includes/log/hit-statistics.php:163
1425
+ #: wp-statistics/includes/log/last-search.php:64
1426
+ #: wp-statistics/includes/log/last-visitor.php:67
1427
+ #: wp-statistics/includes/log/online.php:17
1428
+ #: wp-statistics/includes/log/page-statistics.php:34
1429
+ #: wp-statistics/includes/log/search-statistics.php:27
1430
+ #: wp-statistics/includes/log/top-countries.php:26
1431
+ #: wp-statistics/includes/log/top-pages.php:29
1432
+ #: wp-statistics/includes/log/top-pages.php:155
1433
+ #: wp-statistics/includes/log/top-referring.php:77
1434
+ #: wp-statistics/includes/log/top-visitors.php:40
1435
  msgid "Click to toggle"
1436
  msgstr "انقر للتبديل"
1437
 
1438
+ #: wp-statistics/includes/log/all-browsers.php:30
1439
+ #: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:455
1440
+ #: wp-statistics/wp-statistics.php:511
1441
  msgid "Browsers"
1442
  msgstr "المتصفحات"
1443
 
1444
+ #: wp-statistics/includes/log/all-browsers.php:57
1445
  msgid "Browsers by type"
1446
  msgstr "حسب نوع المتصفحات"
1447
 
1448
+ #: wp-statistics/includes/log/all-browsers.php:114
1449
+ #: wp-statistics/includes/log/widgets/top.visitors.php:18
1450
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1451
  msgid "Platform"
1452
  msgstr "المنصة"
1453
 
1454
+ #: wp-statistics/includes/log/all-browsers.php:141
1455
  msgid "Browsers by platform"
1456
  msgstr "حسب نوع المنصة"
1457
 
1458
+ #: wp-statistics/includes/log/all-browsers.php:249
1459
  msgid "%s Version"
1460
  msgstr "الإصدار %s"
1461
 
1462
+ #: wp-statistics/includes/log/exclusions.php:8
1463
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1464
  msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
1465
 
1466
+ #: wp-statistics/includes/log/exclusions.php:64
1467
  msgid "Exclusions Statistics"
1468
  msgstr "استثناءات الاحصائيات"
1469
 
1470
+ #: wp-statistics/includes/functions/functions.php:970
1471
  msgid "10 Days"
1472
  msgstr "10 أيام"
1473
 
1474
+ #: wp-statistics/includes/functions/functions.php:970
1475
  msgid "20 Days"
1476
  msgstr "20 يوم"
1477
 
1478
+ #: wp-statistics/includes/functions/functions.php:970
1479
  msgid "30 Days"
1480
  msgstr "30 يو م"
1481
 
1482
+ #: wp-statistics/includes/functions/functions.php:970
1483
  msgid "2 Months"
1484
  msgstr "شهرين"
1485
 
1486
+ #: wp-statistics/includes/functions/functions.php:970
1487
  msgid "3 Months"
1488
  msgstr "3 أشهر"
1489
 
1490
+ #: wp-statistics/includes/functions/functions.php:970
1491
  msgid "6 Months"
1492
  msgstr "6 أشهر"
1493
 
1494
+ #: wp-statistics/includes/functions/functions.php:970
1495
  msgid "9 Months"
1496
  msgstr "9 أشهر"
1497
 
1498
+ #: wp-statistics/includes/functions/functions.php:970
1499
  msgid "1 Year"
1500
  msgstr "سنة"
1501
 
1502
+ #: wp-statistics/includes/log/exclusions.php:73
1503
  msgid "Exclusions Statistical Chart"
1504
  msgstr "الرسم البياني لإحصائيات الاستثناءات"
1505
 
1506
+ #: wp-statistics/includes/log/exclusions.php:95
1507
  msgid "Excluded hits in the last"
1508
  msgstr "استبعاد النقرات في الأخير"
1509
 
1510
+ #: wp-statistics/includes/log/exclusions.php:95
1511
+ #: wp-statistics/includes/log/hit-statistics.php:66
1512
+ #: wp-statistics/includes/log/search-statistics.php:69
1513
+ #: wp-statistics/includes/log/widgets/hits.php:42
1514
+ #: wp-statistics/includes/log/widgets/search.php:42
1515
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
1516
  msgid "days"
1517
  msgstr "أيام"
1518
 
1519
+ #: wp-statistics/includes/log/exclusions.php:116
1520
  msgid "Number of excluded hits"
1521
  msgstr "عدد الزيارات المستبعدة"
1522
 
1523
+ #: wp-statistics/includes/log/hit-statistics.php:27
1524
  msgid "Hits Statistics Chart"
1525
  msgstr "الرسم البياني لاحصائيات النقرات"
1526
 
1527
+ #: wp-statistics/includes/log/hit-statistics.php:66
1528
+ #: wp-statistics/includes/log/widgets/hits.php:42
1529
  msgid "Hits in the last"
1530
  msgstr "آخر النقرات"
1531
 
1532
+ #: wp-statistics/includes/log/hit-statistics.php:87
1533
+ #: wp-statistics/includes/log/widgets/hits.php:63
1534
  msgid "Number of visits and visitors"
1535
  msgstr "عدد الزيارات والزوار"
1536
 
1537
+ #: wp-statistics/includes/log/hit-statistics.php:101
1538
+ #: wp-statistics/includes/log/hit-statistics.php:170
1539
+ #: wp-statistics/includes/log/widgets/hits.php:77
1540
+ #: wp-statistics/includes/log/widgets/quickstats.php:24
1541
+ #: wp-statistics/includes/log/widgets/summary.php:24
1542
  msgid "Visit"
1543
  msgstr "زيارة"
1544
 
1545
+ #: wp-statistics/includes/log/hit-statistics.php:101
1546
+ #: wp-statistics/includes/log/hit-statistics.php:171
1547
+ #: wp-statistics/includes/log/widgets/hits.php:77
1548
+ #: wp-statistics/includes/log/widgets/quickstats.php:23
1549
+ #: wp-statistics/includes/log/widgets/summary.php:23
1550
  msgid "Visitor"
1551
  msgstr "زائر"
1552
 
1553
+ #: wp-statistics/includes/log/last-search.php:65
1554
  msgid "Latest Search Word Statistics"
1555
  msgstr "أحصائيات أحدث كلمات البحث"
1556
 
1557
+ #: wp-statistics/includes/log/last-search.php:110
1558
+ #: wp-statistics/includes/log/last-visitor.php:101
1559
+ #: wp-statistics/includes/log/online.php:50
1560
+ #: wp-statistics/includes/log/widgets/google.map.php:60
1561
+ #: wp-statistics/includes/log/widgets/jqv.map.php:55
1562
+ #: wp-statistics/includes/log/widgets/recent.php:14
1563
+ #: wp-statistics/includes/log/widgets/words.php:27
1564
  msgid "#hash#"
1565
  msgstr "#hash#"
1566
 
1567
+ #: wp-statistics/includes/log/last-search.php:115
1568
+ #: wp-statistics/includes/log/last-visitor.php:106
1569
+ #: wp-statistics/includes/log/online.php:55
1570
+ #: wp-statistics/includes/log/top-referring.php:112
1571
+ #: wp-statistics/includes/log/widgets/recent.php:19
1572
+ #: wp-statistics/includes/log/widgets/words.php:42
1573
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
1574
  msgid "Map"
1575
  msgstr "خريطة"
1576
 
1577
+ #: wp-statistics/includes/log/last-search.php:159
1578
+ #: wp-statistics/includes/log/last-visitor.php:139
1579
+ #: wp-statistics/includes/log/online.php:109
1580
+ #: wp-statistics/includes/log/top-pages.php:205
1581
+ #: wp-statistics/includes/log/top-referring.php:153
1582
  msgid "Page"
1583
  msgstr "صفحة"
1584
 
1585
+ #: wp-statistics/includes/log/last-search.php:159
1586
+ #: wp-statistics/includes/log/last-visitor.php:139
1587
+ #: wp-statistics/includes/log/online.php:109
1588
+ #: wp-statistics/includes/log/top-pages.php:205
1589
+ #: wp-statistics/includes/log/top-referring.php:153
1590
  msgid "From"
1591
  msgstr "من"
1592
 
1593
+ #: wp-statistics/includes/log/last-search.php:47
1594
+ #: wp-statistics/includes/log/last-visitor.php:38
1595
+ #: wp-statistics/includes/log/top-referring.php:67
1596
+ #: wp-statistics/includes/log/top-referring.php:70
1597
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
1598
+ #: wp-statistics/widget.php:296
1599
  msgid "All"
1600
  msgstr "الكل"
1601
 
1602
+ #: wp-statistics/includes/log/last-visitor.php:68
1603
  msgid "Recent Visitor Statistics"
1604
  msgstr "آخر إحصائيات الزوار"
1605
 
1606
+ #: wp-statistics/includes/log/online.php:11
1607
+ #: wp-statistics/includes/log/online.php:18
1608
  msgid "Online Users"
1609
  msgstr "المستخدمين على الانترنت"
1610
 
1611
+ #: wp-statistics/includes/log/online.php:75
1612
  msgid "Online for "
1613
  msgstr "متصل لـ"
1614
 
1615
+ #: wp-statistics/includes/log/page-statistics.php:26
1616
  msgid "Page Trend for Post ID"
1617
  msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
1618
 
1619
+ #: wp-statistics/includes/log/page-statistics.php:35
1620
  msgid "Page Trend"
1621
  msgstr "الصفحة الأكثر رواجاً"
1622
 
1623
+ #: wp-statistics/includes/log/search-statistics.php:19
1624
+ #: wp-statistics/includes/log/search-statistics.php:28
1625
  msgid "Search Engine Referral Statistics"
1626
  msgstr "إحصائيات مرجعية محرك البحث"
1627
 
1628
+ #: wp-statistics/includes/log/search-statistics.php:69
1629
+ #: wp-statistics/includes/log/widgets/search.php:42
1630
  msgid "Search engine referrals in the last"
1631
  msgstr "إحالات محرك البحث في الأخير"
1632
 
1633
+ #: wp-statistics/includes/log/search-statistics.php:90
1634
+ #: wp-statistics/includes/log/widgets/search.php:63
1635
  msgid "Number of referrals"
1636
  msgstr "عدد الإحالات"
1637
 
1638
+ #: wp-statistics/includes/log/exclusions.php:24
1639
+ #: wp-statistics/includes/log/search-statistics.php:104
1640
+ #: wp-statistics/includes/log/widgets/quickstats.php:58
1641
+ #: wp-statistics/includes/log/widgets/quickstats.php:105
1642
+ #: wp-statistics/includes/log/widgets/search.php:77
1643
+ #: wp-statistics/includes/log/widgets/summary.php:58
1644
+ #: wp-statistics/includes/log/widgets/summary.php:105
1645
  msgid "Total"
1646
  msgstr "المجموع"
1647
 
1648
+ #: wp-statistics/includes/log/top-countries.php:18
1649
+ #: wp-statistics/includes/log/top-countries.php:27
1650
  msgid "Top Countries"
1651
  msgstr "أفضل الدول"
1652
 
1653
+ #: wp-statistics/includes/log/top-countries.php:31
1654
+ #: wp-statistics/includes/log/widgets/countries.php:9
1655
+ #: wp-statistics/includes/log/widgets/top.visitors.php:11
1656
  msgid "Rank"
1657
  msgstr "الترتيب"
1658
 
1659
+ #: wp-statistics/includes/log/top-countries.php:32
1660
+ #: wp-statistics/includes/log/widgets/countries.php:10
1661
+ #: wp-statistics/includes/log/widgets/top.visitors.php:13
1662
  msgid "Flag"
1663
  msgstr "العلم"
1664
 
1665
+ #: wp-statistics/includes/log/top-countries.php:33
1666
+ #: wp-statistics/includes/log/widgets/countries.php:11
1667
+ #: wp-statistics/includes/log/widgets/top.visitors.php:14
1668
  msgid "Country"
1669
  msgstr "الدولة"
1670
 
1671
+ #: wp-statistics/includes/log/top-countries.php:34
1672
+ #: wp-statistics/includes/log/widgets/countries.php:12
1673
  msgid "Visitor Count"
1674
  msgstr "عدد الزوار"
1675
 
1676
+ #: wp-statistics/includes/log/top-pages.php:20
1677
+ #: wp-statistics/includes/log/top-pages.php:156
1678
  msgid "Top Pages"
1679
  msgstr "أفضل الصفحات"
1680
 
1681
+ #: wp-statistics/includes/log/top-pages.php:30
1682
  msgid "Top 5 Pages Trends"
1683
  msgstr "الصفحات الـ5 الأكثر رواجاً"
1684
 
1685
+ #: wp-statistics/includes/log/top-pages.php:67
1686
  msgid "Top 5 Page Trending Stats"
1687
  msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
1688
 
1689
+ #: wp-statistics/includes/log/top-pages.php:88
1690
+ #: wp-statistics/includes/log/widgets/page.php:63
1691
  msgid "Number of Hits"
1692
  msgstr "عدد الزيارات"
1693
 
1694
+ #: wp-statistics/includes/log/top-pages.php:184
1695
+ #: wp-statistics/includes/log/widgets/pages.php:13
1696
  msgid "No page title found"
1697
  msgstr "لم يتم العثور على عنوان الصفحة"
1698
 
1699
+ #: wp-statistics/includes/log/top-pages.php:187
1700
+ #: wp-statistics/includes/log/widgets/pages.php:16
1701
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
1702
+ #: wp-statistics/includes/settings/tabs/wps-general.php:122
1703
+ #: wp-statistics/includes/settings/tabs/wps-general.php:127
1704
+ #: wp-statistics/shortcode.php:139
1705
  msgid "Visits"
1706
  msgstr "الزيارات"
1707
 
1708
+ #: wp-statistics/includes/log/top-referring.php:4
1709
  msgid "To be added soon"
1710
  msgstr "تضاف قريبا"
1711
 
1712
+ #: wp-statistics/includes/log/top-referring.php:79
1713
  msgid "Referring sites from"
1714
  msgstr "مواقع اشارة من"
1715
 
1716
+ #: wp-statistics/includes/log/top-referring.php:137
1717
+ #: wp-statistics/includes/log/widgets/referring.php:35
1718
  msgid "References"
1719
  msgstr "المراجع"
1720
 
1721
+ #: wp-statistics/includes/log/top-visitors.php:12
1722
  msgid "Top 100 Visitors Today"
1723
  msgstr "أفضل 100 زائر اليوم"
1724
 
1725
+ #: wp-statistics/includes/log/log.php:17
1726
  msgid "About WP Statistics Version %s"
1727
  msgstr "حول إصدار احصائيات ووردبريس %s"
1728
 
1729
+ #: wp-statistics/includes/log/widgets/about.php:11
1730
  msgid "Website"
1731
  msgstr "الموقع"
1732
 
1733
+ #: wp-statistics/includes/log/widgets/about.php:12
1734
  msgid "Rate and Review"
1735
  msgstr "التقييم والمراجعة"
1736
 
1737
+ #: wp-statistics/includes/log/widgets/about.php:16
1738
  msgid "More Information"
1739
  msgstr "مزيد من المعلومات"
1740
 
1741
+ #: wp-statistics/includes/log/widgets/about.php:25
1742
+ #: wp-statistics/includes/settings/tabs/wps-about.php:12
1743
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1744
  msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
1745
 
1746
+ #: wp-statistics/includes/log/widgets/browsers.php:34
1747
  msgid "Other"
1748
  msgstr "أخرى"
1749
 
1750
+ #: wp-statistics/wp-statistics.php:445
1751
  msgid "Today Visitors Map"
1752
  msgstr "خريطة زوار اليوم"
1753
 
1754
+ #: wp-statistics/includes/log/widgets/referring.php:36
1755
  msgid "Address"
1756
  msgstr "العنوان"
1757
 
1758
+ #: wp-statistics/includes/log/widgets/quickstats.php:12
1759
+ #: wp-statistics/includes/log/widgets/summary.php:12
1760
  msgid "User(s) Online"
1761
  msgstr "المتصلين على الانترنت"
1762
 
1763
+ #: wp-statistics/includes/log/widgets/quickstats.php:28
1764
+ #: wp-statistics/includes/log/widgets/quickstats.php:80
1765
+ #: wp-statistics/includes/log/widgets/summary.php:28
1766
+ #: wp-statistics/includes/log/widgets/summary.php:80
1767
  msgid "Today"
1768
  msgstr "اليوم"
1769
 
1770
+ #: wp-statistics/includes/log/widgets/quickstats.php:34
1771
+ #: wp-statistics/includes/log/widgets/quickstats.php:81
1772
+ #: wp-statistics/includes/log/widgets/summary.php:34
1773
+ #: wp-statistics/includes/log/widgets/summary.php:81
1774
  msgid "Yesterday"
1775
  msgstr "الأمس"
1776
 
1777
+ #: wp-statistics/includes/log/widgets/quickstats.php:99
1778
+ #: wp-statistics/includes/log/widgets/summary.php:99
1779
  msgid "Daily Total"
1780
  msgstr "المجموع اليومي"
1781
 
1782
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1783
+ #: wp-statistics/includes/log/widgets/summary.php:118
1784
  msgid "Current Time and Date"
1785
  msgstr "التوقيت الحالي و التاريخ"
1786
 
1787
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1788
+ #: wp-statistics/includes/log/widgets/summary.php:118
1789
  msgid "(Adjustment)"
1790
  msgstr "(التوافق)"
1791
 
1792
+ #: wp-statistics/includes/log/widgets/quickstats.php:122
1793
+ #: wp-statistics/includes/log/widgets/summary.php:122
1794
  msgid "Date: %s"
1795
  msgstr "التاريخ: %s"
1796
 
1797
+ #: wp-statistics/includes/log/widgets/quickstats.php:126
1798
+ #: wp-statistics/includes/log/widgets/summary.php:126
1799
  msgid "Time: %s"
1800
  msgstr "التوقيت: %s"
1801
 
1802
+ #: wp-statistics/includes/log/widgets/top.visitors.php:12
1803
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
1804
+ #: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
1805
+ #: wp-statistics/wp-statistics.php:514
1806
  msgid "Hits"
1807
  msgstr "نقرات"
1808
 
1809
+ #: wp-statistics/includes/log/widgets/top.visitors.php:15
1810
  msgid "IP"
1811
  msgstr "IP"
1812
 
1813
+ #: wp-statistics/includes/log/widgets/top.visitors.php:17
1814
  msgid "Agent"
1815
  msgstr "وكيل"
1816
 
1817
+ #: wp-statistics/includes/log/widgets/top.visitors.php:19
1818
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1819
  msgid "Version"
1820
  msgstr "الإصدار"
1821
 
1822
+ #: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
1823
+ #: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
1824
+ #: wp-statistics/ajax.php:184 wp-statistics/ajax.php:302
1825
+ #: wp-statistics/includes/optimization/wps-optimization.php:6
1826
  msgid "Access denied!"
1827
  msgstr "تم رفض الوصول!"
1828
 
1829
+ #: wp-statistics/ajax.php:31
1830
  msgid "%s agent data deleted successfully."
1831
  msgstr "%s تم حذف بيانات الوكيل بنجاح."
1832
 
1833
+ #: wp-statistics/ajax.php:34
1834
  msgid "No agent data found to remove!"
1835
  msgstr "لا توجد بيانات وكيل لإزالتها!"
1836
 
1837
+ #: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
1838
+ #: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
1839
  msgid "Please select the desired items."
1840
  msgstr "يرجى تحديد العناصر المطلوبة."
1841
 
1842
+ #: wp-statistics/ajax.php:62
1843
  msgid "%s platform data deleted successfully."
1844
  msgstr "%s تم حذف بيانات المنصة بنجاح."
1845
 
1846
+ #: wp-statistics/ajax.php:65
1847
  msgid "No platform data found to remove!"
1848
  msgstr "لا توجد بيانات منصة لإزالتها!"
1849
 
1850
+ #: wp-statistics/includes/functions/functions.php:1074
1851
  msgid "%s table data deleted successfully."
1852
  msgstr "%s تم حذف بيانات الجدول بنجاح."
1853
 
1854
+ #: wp-statistics/includes/functions/functions.php:1078
1855
  msgid "Error, %s not emptied!"
1856
  msgstr "خطأ, %s لم يتم التفريغ!"
1857
 
1858
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1859
  msgid "Database Setup"
1860
  msgstr "إعداد قاعدة البيانات"
1861
 
1862
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1863
  msgid "Re-run Install"
1864
  msgstr "إعادة تشغيل التثبيت"
1865
 
1866
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1867
  msgid "Install Now!"
1868
  msgstr "تثبيت الآن!"
1869
 
1870
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1871
  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."
1872
  msgstr "لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر سيعيد تنفيذ العملية مرة أخرى."
1873
 
1874
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1875
  msgid "Database Index"
1876
  msgstr "فهرس قاعدة بيانات"
1877
 
1878
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1879
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1880
+ #: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:512
1881
  msgid "Countries"
1882
  msgstr "الدول"
1883
 
1884
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
1885
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
1886
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1887
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1888
  msgid "Update Now!"
1889
  msgstr "تحديث الآن!"
1890
 
1891
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
1892
  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."
1893
  msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
1894
 
1895
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
1896
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
1897
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1898
  msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
1899
 
1900
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
1901
  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."
1902
  msgstr "الإصدارات القديمة من منتج احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار في بعض الحالات. عند تثبيت إصدارات أحدث من ذلك سيتم إضافة فهرس فريد على الجدول."
1903
 
1904
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
1905
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
1906
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
1907
  msgid "Congratulations, your installation is already up to date, nothing to do."
1908
  msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
1909
 
1910
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
1911
+ #: wp-statistics/includes/optimization/wps-optimization.php:235
1912
  msgid "Export"
1913
  msgstr "تصدير"
1914
 
1915
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
1916
  msgid "Export from"
1917
  msgstr "التصدير من"
1918
 
1919
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
1920
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
1921
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
1922
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
1923
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
1924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:134
1925
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:164
1926
  msgid "Please select"
1927
  msgstr "الرجاء تحديد"
1928
 
1929
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
1930
  msgid "Select the table for the output file."
1931
  msgstr "حدد الجدول لملف الإخراج."
1932
 
1933
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
1934
  msgid "Export To"
1935
  msgstr "التصدير لـ"
1936
 
1937
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
1938
  msgid "Select the output file type."
1939
  msgstr "حدد نوع ملف الإخراج."
1940
 
1941
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
1942
  msgid "Include Header Row"
1943
  msgstr "تضمين رأس الصف"
1944
 
1945
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1946
  msgid "Include a header row as the first line of the exported file."
1947
  msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
1948
 
1949
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
1950
  msgid "Start Now!"
1951
  msgstr "ابدأ الآن!"
1952
 
1953
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1954
  msgid "Historical Values"
1955
  msgstr "القيم التاريخية"
1956
 
1957
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1958
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1959
  msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام صحيحة."
1960
 
1961
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1962
+ #: wp-statistics/includes/settings/tabs/wps-general.php:138
1963
+ #: wp-statistics/includes/settings/tabs/wps-general.php:143
1964
+ #: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
1965
+ #: wp-statistics/wp-statistics.php:521
1966
  msgid "Visitors"
1967
  msgstr "الزوار"
1968
 
1969
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1970
  msgid "Number of historical number of visitors to the site (current value is %s)."
1971
  msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
1972
 
1973
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1974
  msgid "Number of historical number of visits to the site (current value is %s)."
1975
  msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
1976
 
1977
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1978
  msgid "Update now!"
1979
  msgstr "تحديث الآن!"
1980
 
1981
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1982
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
1983
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
1984
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
1985
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
1986
  msgid "Are you sure?"
1987
  msgstr "هل أنت متأكد؟"
1988
 
1989
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
1990
  msgid "Data"
1991
  msgstr "المعطيات"
1992
 
1993
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1994
  msgid "Empty Table"
1995
  msgstr "تفريغ الجدول"
1996
 
1997
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
1998
  msgid "All data table will be lost."
1999
  msgstr "سيتم فقدان جميع البيانات الجدول."
2000
 
2001
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
2002
  msgid "Clear now!"
2003
  msgstr "مسح الآن!"
2004
 
2005
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
2006
  msgid "Purge records older than"
2007
  msgstr "سجلات الضخ أقدم من"
2008
 
2009
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
2010
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
2011
  msgstr "بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد الأدنى هو 30 يوما."
2012
 
2013
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
2014
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
2015
  msgid "Purge now!"
2016
  msgstr "ضخ الآن!"
2017
 
2018
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
2019
  msgid "Delete User Agent Types"
2020
  msgstr "حذف أنواع وكيل العضو"
2021
 
2022
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
2023
  msgid "Delete Agents"
2024
  msgstr "حذف الوكلاء"
2025
 
2026
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
2027
  msgid "All visitor data will be lost for this agent type."
2028
  msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
2029
 
2030
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
2031
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
2032
  msgid "Delete now!"
2033
  msgstr "حذف الآن!"
2034
 
2035
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
2036
  msgid "Delete Platforms"
2037
  msgstr "حذف المنصات"
2038
 
2039
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
2040
  msgid "All visitor data will be lost for this platform type."
2041
  msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
2042
 
2043
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
2044
  msgid "Resources"
2045
  msgstr "الموارد"
2046
 
2047
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
2048
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
2049
  msgid "Memory usage in PHP"
2050
  msgstr "استخدام الذاكرة في PHP"
2051
 
2052
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
2053
  msgid "Byte"
2054
  msgstr "بايت"
2055
 
2056
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
2057
  msgid "PHP Memory Limit"
2058
  msgstr "حدود ذاكرة PHP"
2059
 
2060
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
2061
  msgid "The memory limit a script is allowed to consume, set in php.ini."
2062
  msgstr "حدود الذاكرة تسمح للبرنامج النصي باستهلاك حد معين، قم بتعيين ملف php.ini."
2063
 
2064
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
2065
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
2066
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
2067
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
2068
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
2069
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
2070
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
2071
  msgid "Number of rows in the %s table"
2072
  msgstr "عدد الصفوف في جدول %s"
2073
 
2074
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
2075
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
2076
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
2077
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
2078
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
2079
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
2080
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
2081
  msgid "Row"
2082
  msgstr "صف"
2083
 
2084
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
2085
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
2086
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
2087
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
2088
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
2089
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
2090
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
2091
  msgid "Number of rows"
2092
  msgstr "عدد الصفوف"
2093
 
2094
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
2095
  msgid "Version Info"
2096
  msgstr "معلومات الإصدار"
2097
 
2098
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
2099
  msgid "WP Statistics Version"
2100
  msgstr "نسخة WP Statistics"
2101
 
2102
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
2103
  msgid "The WP Statistics version you are running."
2104
  msgstr "إصدار WP Statistics."
2105
 
2106
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
2107
  msgid "PHP Version"
2108
  msgstr "نسخة PHP"
2109
 
2110
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
2111
  msgid "The PHP version you are running."
2112
  msgstr "إصدار PHP."
2113
 
2114
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
2115
  msgid "PHP Safe Mode"
2116
  msgstr "الوضع الآمن PHP"
2117
 
2118
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
2119
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2120
  msgstr "هل الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
2121
 
2122
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
2123
  msgid "jQuery Version"
2124
  msgstr "نسخة jQuery"
2125
 
2126
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
2127
  msgid "The jQuery version you are running."
2128
  msgstr "إصدار jQuery."
2129
 
2130
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
2131
  msgid "cURL Version"
2132
  msgstr "إصدار cURL"
2133
 
2134
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
2135
  msgid "cURL not installed"
2136
  msgstr "cURL غير مثبت"
2137
 
2138
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
2139
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2140
  msgstr "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم تثبيته يتم تعطيل GeoIP."
2141
 
2142
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
 
 
 
 
2143
  msgid "Installed"
2144
  msgstr "مثبت"
2145
 
2146
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2147
  msgid "Not installed"
2148
  msgstr "غير مثبت"
2149
 
2150
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
 
 
 
 
2151
  msgid "File Info"
2152
  msgstr "معلومات عن الملف"
2153
 
2154
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
2155
  msgid "GeoIP Database"
2156
  msgstr "قاعدة بيانات GeoIP"
2157
 
2158
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
2159
  msgid "Database file does not exist."
2160
  msgstr "لا وجود لملف قاعدة البيانات."
2161
 
2162
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
2163
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
2164
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
2165
  msgid ", created on "
2166
  msgstr "، التي تم إنشاؤها على"
2167
 
2168
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
2169
  msgid "The file size and date of the GeoIP database."
2170
  msgstr "حجم الملف والتاريخ من قاعدة بيانات GeoIP."
2171
 
2172
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
2173
  msgid "browscap.ini File"
2174
  msgstr "ملف browscap.ini"
2175
 
2176
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
2177
  msgid "browscap.ini file does not exist."
2178
  msgstr "لا وجود لملف browscap.ini."
2179
 
2180
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
2181
  msgid "The file size and date of the browscap.ini file."
2182
  msgstr "حجم الملف وتاريخ الملف browscap.ini."
2183
 
2184
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
2185
  msgid "browscap Cache File"
2186
  msgstr "browscap ملف ذاكرة التخزين المؤقت"
2187
 
2188
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
2189
  msgid "browscap cache file does not exist."
2190
  msgstr "لا وجود لملف ذاكرة التخزين المؤقت browscap."
2191
 
2192
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
2193
  msgid "The file size and date of the browscap cache file."
2194
  msgstr "حجم الملف وتاريخ الملف المؤقت browscap."
2195
 
2196
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
2197
  msgid "Client Info"
2198
  msgstr "معلومات العميل"
2199
 
2200
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
2201
  msgid "Client IP"
2202
  msgstr "IP العميل"
2203
 
2204
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
2205
  msgid "The client IP address."
2206
  msgstr "عنوان IP للعميل."
2207
 
2208
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
2209
  msgid "User Agent"
2210
  msgstr "وكيل المستخدم"
2211
 
2212
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2213
  msgid "The client user agent string."
2214
  msgstr "سلسلة عامل المستخدم العميل."
2215
 
2216
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2217
  msgid "Browser"
2218
  msgstr "المتصفح"
2219
 
2220
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2221
  msgid "The detected client browser."
2222
  msgstr "مستكشف مستعرض العميل."
2223
 
2224
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2225
  msgid "The detected client browser version."
2226
  msgstr "إصدار مستكشف مستعرض العميل."
2227
 
2228
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2229
  msgid "The detected client platform."
2230
  msgstr "مستكشف منصة العميل"
2231
 
2232
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2233
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2234
  msgstr "سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا يمكن التراجع، هل أنت متأكد؟"
2235
 
2236
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2237
  msgid "GeoIP Options"
2238
  msgstr "خيارات GeoIP"
2239
 
2240
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2241
  msgid "Updates any unknown location data in the database, this may take a while"
2242
  msgstr "تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
2243
 
2244
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2245
+ #: wp-statistics/includes/settings/tabs/wps-general.php:66
2246
  msgid "IP Addresses"
2247
  msgstr "عناوين IP"
2248
 
2249
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2250
+ #: wp-statistics/includes/settings/tabs/wps-general.php:71
2251
  msgid "Hash IP Addresses"
2252
  msgstr "عناوين IP المجزئة"
2253
 
2254
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2255
  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"
2256
  msgstr "استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على استرداد عناوين IP في المستقبل لتجميع معلومات عن الموقع بعد ذلك وهذا قد يستغرق بعض الوقت"
2257
 
2258
+ #: wp-statistics/includes/optimization/wps-optimization.php:43
2259
  msgid "IP Addresses replaced with hash values."
2260
  msgstr "استبدال عناوين IP مع قيم التجزئة."
2261
 
2262
+ #: wp-statistics/includes/optimization/wps-optimization.php:51
2263
  msgid "Install routine complete."
2264
  msgstr "التثبيت الكامل الروتيني."
2265
 
2266
+ #: wp-statistics/includes/optimization/wps-optimization.php:234
2267
  msgid "Resources/Information"
2268
  msgstr "الموارد/معلومات"
2269
 
2270
+ #: wp-statistics/includes/optimization/wps-optimization.php:236
2271
  msgid "Purging"
2272
  msgstr "تطهير"
2273
 
2274
+ #: wp-statistics/includes/optimization/wps-optimization.php:237
2275
  msgid "Database"
2276
  msgstr "قاعدة البيانات"
2277
 
2278
+ #: wp-statistics/includes/optimization/wps-optimization.php:238
2279
  msgid "Updates"
2280
  msgstr "تحديثات"
2281
 
2282
+ #: wp-statistics/includes/optimization/wps-optimization.php:239
2283
  msgid "Historical"
2284
  msgstr "التاريخي"
2285
 
2286
+ #: wp-statistics/includes/settings/tabs/wps-about.php:8
2287
  msgid "WP Statistics V%s"
2288
  msgstr "WP Statistics V%s"
2289
 
2290
+ #: wp-statistics/includes/settings/tabs/wps-about.php:28
2291
  msgid "Visit Us Online"
2292
  msgstr "زورونا على الإنترنت"
2293
 
2294
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2295
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2296
  msgstr "قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات ووردبريس."
2297
 
2298
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2299
  msgid "website"
2300
  msgstr "الموقع"
2301
 
2302
+ #: wp-statistics/includes/settings/tabs/wps-about.php:36
2303
  msgid "Rate and Review at WordPress.org"
2304
  msgstr "التقييم و المراجعة في WordPress.org"
2305
 
2306
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2307
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2308
  msgstr "كل الشكر لتثبيت احصائيات ووردبريس، ونحن نشجعكم على تقديم"
2309
 
2310
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2311
  msgid "rating and review"
2312
  msgstr "التقييم و المراجعة"
2313
 
2314
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2315
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2316
  msgstr "في WordPress.org. حيث أن ملاحظاتكم في موضع تقدير دائماً!"
2317
 
2318
+ #: wp-statistics/includes/settings/tabs/wps-about.php:44
2319
  msgid "Translations"
2320
  msgstr "الترجمات"
2321
 
2322
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2323
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2324
  msgstr "احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
2325
 
2326
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2327
  msgid "translation collaboration site"
2328
  msgstr "الموقع التعاوني للترجمة"
2329
 
2330
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2331
  msgid "drop us a line"
2332
  msgstr "اترك لنا رسالة"
2333
 
2334
+ #: wp-statistics/includes/settings/tabs/wps-about.php:52
2335
  msgid "Support"
2336
  msgstr "دعم"
2337
 
2338
+ #: wp-statistics/includes/settings/tabs/wps-about.php:57
2339
  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:"
2340
  msgstr "نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
2341
 
2342
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2343
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2344
  msgid "Have you read the %s?"
2345
  msgstr "هل قرأت %s؟"
2346
 
2347
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2348
  msgid "FAQs"
2349
  msgstr "أسئلة وأجوبة"
2350
 
2351
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2352
  msgid "manual"
2353
  msgstr "الدليل"
2354
 
2355
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2356
  msgid "Have you search the %s for a similar issue?"
2357
  msgstr "هل بحثت في %s لمشكلة مشابهة؟"
2358
 
2359
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2360
  msgid "support forum"
2361
  msgstr "منتدى الدعم"
2362
 
2363
+ #: wp-statistics/includes/settings/tabs/wps-about.php:63
2364
  msgid "Have you search the Internet for any error messages you are receiving?"
2365
  msgstr "هل بحثت في الإنترنت عن أي رسائل خطأ التي تظهر لك؟"
2366
 
2367
+ #: wp-statistics/includes/settings/tabs/wps-about.php:64
2368
  msgid "Make sure you have access to your PHP error logs."
2369
  msgstr "تأكد أن لديك الوصول إلى سجلات الخطأ PHP الخاص بك."
2370
 
2371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:67
2372
  msgid "And a few things to double-check:"
2373
  msgstr "وعدد قليل من الأشياء الأخرى:"
2374
 
2375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:70
2376
  msgid "How's your memory_limit in php.ini?"
2377
  msgstr "كيف حال memory_limit الخاصة بك في ملف php.ini؟"
2378
 
2379
+ #: wp-statistics/includes/settings/tabs/wps-about.php:71
2380
  msgid "Have you tried disabling any other plugins you may have installed?"
2381
  msgstr "هل حاولت تعطيل أي إضافات أخرى التي قد تم تثبيتها؟"
2382
 
2383
+ #: wp-statistics/includes/settings/tabs/wps-about.php:72
2384
  msgid "Have you tried using the default WordPress theme?"
2385
  msgstr "هل حاولت استخدام المظهر الافتراضي للوردبريس؟"
2386
 
2387
+ #: wp-statistics/includes/settings/tabs/wps-about.php:73
2388
  msgid "Have you double checked the plugin settings?"
2389
  msgstr "هل ضاعفت الفحص على إعدادات البرنامج المساعد؟"
2390
 
2391
+ #: wp-statistics/includes/settings/tabs/wps-about.php:74
2392
  msgid "Do you have all the required PHP extensions installed?"
2393
  msgstr "هل قمت بتثبيت جميع ملحقات PHP المطلوبة؟"
2394
 
2395
+ #: wp-statistics/includes/settings/tabs/wps-about.php:75
2396
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2397
  msgstr "أنت تحصل على صفحة فارغة أو غير مكتملة العرض في المستعرض الخاص بك؟ قم بعرض المصدر للصفحة وتحقق من وجود أية أخطاء قاتلة؟"
2398
 
2399
+ #: wp-statistics/includes/settings/tabs/wps-about.php:76
2400
  msgid "Have you checked your PHP and web server error logs?"
2401
  msgstr "هل راجعت سجل أخطاء الـPHP الخاص بك؟"
2402
 
2403
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2404
  msgid "Still not having any luck?"
2405
  msgstr "لم يحالفك الحظ حتى الآن؟"
2406
 
2407
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2408
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2409
  msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
2410
 
2411
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2412
  msgid "WordPress.org support forum"
2413
  msgstr "منتدى الدعم"
2414
 
2415
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2416
  msgid "Alternatively %s support is available as well."
2417
  msgstr "كما أنه يتوفر دعم للغة %s كذلك."
2418
 
2419
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2420
  msgid "Farsi"
2421
  msgstr "الفارسية"
2422
 
2423
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
2424
  msgid "WP Statistics Honey Pot Page"
2425
  msgstr "الفسفور الابيض الاحصائيات عاء العسل الصفحة"
2426
 
2427
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
2428
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2429
  msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
2430
 
2431
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:23
2432
+ #: wp-statistics/includes/settings/wps-settings.php:103
2433
  msgid "Access Levels"
2434
  msgstr "مستويات الوصول"
2435
 
2436
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:52
2437
  msgid "Required user level to view WP Statistics"
2438
  msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
2439
 
2440
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:67
2441
  msgid "Required user level to manage WP Statistics"
2442
  msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
2443
 
2444
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2445
  msgid "See the %s for details on capability levels."
2446
  msgstr "اطلع على %s لمزيد من التفاصيل على مستويات القدرة."
2447
 
2448
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2449
  msgid "WordPress Roles and Capabilities page"
2450
  msgstr "أدوار وقدرات صفحة ووردبريس"
2451
 
2452
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:76
2453
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2454
  msgstr "تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
2455
 
2456
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:77
2457
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2458
  msgstr "كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
2459
 
2460
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:78
2461
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2462
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2463
 
2464
+ #: wp-statistics/includes/log/exclusions.php:197
2465
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
2466
+ #: wp-statistics/includes/settings/wps-settings.php:104
2467
+ #: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:513
2468
  msgid "Exclusions"
2469
  msgstr "الاستثناءات"
2470
 
2471
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
2472
  msgid "Record exclusions"
2473
  msgstr "سجل الاستثناءات"
2474
 
2475
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
2476
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
2477
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
2478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
2479
  msgid "Enable"
2480
  msgstr "تمكين"
2481
 
2482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
2483
  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."
2484
  msgstr "يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، وليس فقط المستخدم الفعلي للموقع."
2485
 
2486
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
2487
  msgid "Exclude User Roles"
2488
  msgstr "استبعاد أدوار المستخدم"
2489
 
2490
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
2491
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
2492
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
2493
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
2494
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
2495
  msgid "Exclude"
2496
  msgstr "منع"
2497
 
2498
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
2499
  msgid "Exclude %s role from data collection."
2500
  msgstr "استبعاد دور %s من جمع البيانات."
2501
 
2502
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
2503
  msgid "IP/Robot Exclusions"
2504
  msgstr "استثناءات IP/Robot"
2505
 
2506
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
2507
  msgid "Robot list"
2508
  msgstr "قائمة الروبوت"
2509
 
2510
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
2511
  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."
2512
  msgstr "قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
2513
 
2514
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
2515
  msgid "Reset to Default"
2516
  msgstr "إعادة تعيين إلى الافتراضي"
2517
 
2518
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
2519
  msgid "Force robot list update after upgrades"
2520
  msgstr "إجبار تحديث قائمة الربوت بعد الترقيات"
2521
 
2522
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
2523
  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."
2524
  msgstr "إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة سوف تضيع."
2525
 
2526
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
2527
  msgid "Robot visit threshold"
2528
  msgstr "الحد الأدنى بزيارة الروبوت"
2529
 
2530
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
2531
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2532
  msgstr "تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = تعطيل."
2533
 
2534
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
2535
  msgid "Excluded IP address list"
2536
  msgstr "قائمة عناوين IP المستبعدة"
2537
 
2538
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
2539
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2540
  msgstr "قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و 192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية 32 أو 255.255.255.255.255."
2541
 
2542
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
2543
  msgid "Add 10.0.0.0"
2544
  msgstr "إضافة 10.0.0.0"
2545
 
2546
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
2547
  msgid "Add 172.16.0.0"
2548
  msgstr "إضافة 172.16.0.0"
2549
 
2550
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
2551
  msgid "Add 192.168.0.0"
2552
  msgstr "إضافة 192.168.0.0"
2553
 
2554
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
2555
  msgid "Use honey pot"
2556
  msgstr "استخدام وعاء العسل"
2557
 
2558
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
2559
  msgid "Use a honey pot page to identify robots."
2560
  msgstr "استخدام صفحة وعاء العسل لتحديد الروبوتات."
2561
 
2562
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
2563
  msgid "Honey pot post id"
2564
  msgstr "معرف مقال وعاء العسل"
2565
 
2566
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
2567
  msgid "The post id to use for the honeypot page."
2568
  msgstr "رقم المشاركة لاستخدامها في صفحة المصيدة."
2569
 
2570
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
2571
  msgid "Create a new honey pot page"
2572
  msgstr "إنشاء صفحة وعاء عسل جديدة"
2573
 
2574
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
2575
  msgid "GeoIP Exclusions"
2576
  msgstr "استثناءات GeoIP"
2577
 
2578
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
2579
  msgid "Excluded countries list"
2580
  msgstr "قائمة الدول المستثناة"
2581
 
2582
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
2583
  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."
2584
  msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لاستبعاد من جمع الإحصاءات. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
2585
 
2586
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
2587
  msgid "Included countries list"
2588
  msgstr "قائمة البلدان المدرجة"
2589
 
2590
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
2591
  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."
2592
  msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لتشمل في جمع الإحصاءات، إذا كانت هذه القائمة ليست فارغة، سيتم تسجيل الزوار فقط من الدول المدرجة. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
2593
 
2594
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
2595
  msgid "Host Exclusions"
2596
  msgstr "استثناءات المضيف"
2597
 
2598
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
2599
  msgid "Excluded hosts list"
2600
  msgstr "قائمة المضيفين المستبعدين"
2601
 
2602
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
2603
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2604
  msgstr "قائمة أسماء المضيف المؤهل بالكامل (أي. server.example.com، سطر واحد في المائة) لاستبعاد من جمع الإحصاءات."
2605
 
2606
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
2607
  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."
2608
  msgstr "ملاحظة: هذا الخيار لإجراء بحث DNS عكسي على تحميل كل صفحة ولكن بدلا من ذلك بالتخزين المؤقت لعنوان الـIP لأسماء المضيفين المنصوص عليها هي ساعة واحدة. إذا كنت استبعدت المضيفين وقم بتعيين حيوي قد تجد بعض الدرجات من التداخل عندما يتغير عنوان IP للمضيف وذلك وعندما يتم تحديث ذاكرة التخزين المؤقت قد يؤدي في بعض الزيارات المسجلة."
2609
 
2610
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
2611
  msgid "Site URL Exclusions"
2612
  msgstr "رابط الموقع المستثنى"
2613
 
2614
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
2615
  msgid "Excluded login page"
2616
  msgstr "استبعاد صفحة تسجيل الدخول"
2617
 
2618
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
2619
  msgid "Exclude the login page for registering as a hit."
2620
  msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
2621
 
2622
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
2623
  msgid "Excluded admin pages"
2624
  msgstr "استبعاد الصفحات الإدارية"
2625
 
2626
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
2627
  msgid "Exclude the admin pages for registering as a hit."
2628
  msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
2629
 
2630
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
2631
  msgid "Excluded RSS feeds"
2632
  msgstr "آر إس إس مستبعدة"
2633
 
2634
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
2635
  msgid "Exclude the RSS feeds for registering as a hit."
2636
  msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
2637
 
2638
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:162
2639
  msgid "browscap settings"
2640
  msgstr "إعدادات browscap"
2641
 
2642
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:167
2643
  msgid "browscap usage"
2644
  msgstr "استخدام browscap"
2645
 
2646
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:52
2647
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:76
2648
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:109
2649
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:172
2650
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:196
2651
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:236
2652
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:260
2653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:76
2654
+ #: wp-statistics/includes/settings/tabs/wps-general.php:92
2655
+ #: wp-statistics/includes/settings/tabs/wps-general.php:116
2656
+ #: wp-statistics/includes/settings/tabs/wps-general.php:132
2657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:148
2658
+ #: wp-statistics/includes/settings/tabs/wps-general.php:160
2659
+ #: wp-statistics/includes/settings/tabs/wps-general.php:187
2660
+ #: wp-statistics/includes/settings/tabs/wps-general.php:199
2661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:214
2662
+ #: wp-statistics/includes/settings/tabs/wps-general.php:228
2663
+ #: wp-statistics/includes/settings/tabs/wps-general.php:258
2664
+ #: wp-statistics/includes/settings/tabs/wps-general.php:270
2665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:286
2666
+ #: wp-statistics/includes/settings/tabs/wps-general.php:325
2667
+ #: wp-statistics/includes/settings/tabs/wps-general.php:341
2668
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
2669
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
2670
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:69
2671
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:81
2672
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:93
2673
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:105
2674
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:121
2675
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
2676
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
2677
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:94
2678
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:106
2679
  msgid "Active"
2680
  msgstr "تفعيل"
2681
 
2682
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:173
2683
  msgid "The browscap database will be downloaded and used to detect robots."
2684
  msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
2685
 
2686
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:179
2687
  msgid "Update browscap Info"
2688
  msgstr "تحديث معلومات browscap"
2689
 
2690
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:184
2691
  msgid "Download browscap Database"
2692
  msgstr "تحميل قاعدة بيانات browscap"
2693
 
2694
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:65
2695
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:185
2696
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:249
2697
  msgid "Save changes on this page to download the update."
2698
  msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
2699
 
2700
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:191
2701
  msgid "Schedule weekly update of browscap DB"
2702
  msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
2703
 
2704
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:79
2705
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:199
2706
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:263
2707
  msgid "Next update will be"
2708
  msgstr "التحديث القادم سيكون في"
2709
 
2710
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:215
2711
  msgid "Download of the browscap database will be scheduled for once a week."
2712
  msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
2713
 
2714
+ #: wp-statistics/includes/settings/tabs/wps-general.php:50
2715
  msgid "This will delete the manual when you save the settings, are you sure?"
2716
  msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
2717
 
2718
+ #: wp-statistics/includes/settings/tabs/wps-general.php:77
2719
  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."
2720
  msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
2721
 
2722
+ #: wp-statistics/includes/settings/tabs/wps-general.php:82
2723
+ #: wp-statistics/shortcode.php:138
2724
  msgid "Users Online"
2725
  msgstr "الإعضاء المتواجدين"
2726
 
2727
+ #: wp-statistics/includes/settings/tabs/wps-general.php:87
2728
  msgid "User online"
2729
  msgstr "المتواجدين الآن"
languages/wp_statistics-bg_BG.mo CHANGED
Binary file
languages/wp_statistics-bg_BG.po CHANGED
@@ -7,2624 +7,2723 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-beta\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "&#151; You are running an unsupported version of PHP."
15
  msgstr ""
16
 
17
- #: wp-statistics.php:95
18
  msgid "WP Statistics Disabled"
19
  msgstr ""
20
 
21
- #: wp-statistics.php:99
22
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
23
  msgstr ""
24
 
25
- #: wp-statistics.php:101
26
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
27
  msgstr ""
28
 
29
- #: ajax.php:281
30
  msgid "ERROR: Widget not found!"
31
  msgstr ""
32
 
33
- #: dashboard.php:103 includes/log/log.php:13
 
34
  msgid "Loading..."
35
  msgstr ""
36
 
37
- #: dashboard.php:121 includes/log/log.php:2
 
38
  msgid "Reloading..."
39
  msgstr ""
40
 
41
- #: includes/log/top-visitors.php:41 wp-statistics.php:447
 
42
  msgid "Top Visitors"
43
  msgstr ""
44
 
45
- #: wp-statistics.php:206
46
  msgid "optimization page"
47
  msgstr ""
48
 
49
- #: includes/settings/tabs/wps-maintenance.php:35
50
- #: includes/settings/tabs/wps-maintenance.php:63
51
  msgid "Enabled"
52
  msgstr ""
53
 
54
- #: includes/settings/tabs/wps-maintenance.php:30
55
  msgid "Purge Old Data Daily"
56
  msgstr ""
57
 
58
- #: includes/settings/tabs/wps-maintenance.php:41
59
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
60
  msgstr ""
61
 
62
- #: includes/settings/tabs/wps-maintenance.php:47
63
  msgid "Purge data older than"
64
  msgstr ""
65
 
66
- #: includes/settings/tabs/wps-maintenance.php:58
67
  msgid "Purge High Hit Count Visitors Daily"
68
  msgstr ""
69
 
70
- #: includes/settings/tabs/wps-maintenance.php:69
71
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
72
  msgstr ""
73
 
74
- #: includes/settings/tabs/wps-maintenance.php:81
75
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
76
  msgstr ""
77
 
78
- #: shortcode.php:184
79
  msgid "The post/page id to get page statistics on."
80
  msgstr ""
81
 
82
- #: shortcode.php:181
83
  msgid "Post/Page ID"
84
  msgstr ""
85
 
86
- #: includes/functions/functions.php:424
87
  msgid "Ask.com"
88
  msgstr ""
89
 
90
- #: shortcode.php:158
91
  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."
92
  msgstr ""
93
 
94
- #: wp-statistics.php:180
95
  msgid "visitor tracking"
96
  msgstr ""
97
 
98
- #: wp-statistics.php:181
99
  msgid "geoip collection"
100
  msgstr ""
101
 
102
- #: wp-statistics.php:197
103
  msgid "visit database index"
104
  msgstr ""
105
 
106
- #: wp-statistics.php:206
107
  msgid "Database updates are required, please go to %s and update the following: %s"
108
  msgstr ""
109
 
110
- #: wp-statistics.php:197
111
  msgid "countries database index"
112
  msgstr ""
113
 
114
- #: wp-statistics.php:190
115
  msgid "search table"
116
  msgstr ""
117
 
118
- #: wp-statistics.php:184
119
  msgid "settings page"
120
  msgstr ""
121
 
122
- #: wp-statistics.php:184 wp-statistics.php:206
123
  msgid ","
124
  msgstr ""
125
 
126
- #: wp-statistics.php:184
127
  msgid "The following features are disabled, please go to %s and enable them: %s"
128
  msgstr ""
129
 
130
- #: wp-statistics.php:179
131
  msgid "hit tracking"
132
  msgstr ""
133
 
134
- #: wp-statistics.php:178
135
  msgid "online user tracking"
136
  msgstr ""
137
 
138
- #: wp-statistics.php:775
139
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
140
  msgstr ""
141
 
142
- #: includes/optimization/wps-optimization.php:196
143
  msgid "Search table conversion complete, %d rows added."
144
  msgstr ""
145
 
146
- #: includes/optimization/tabs/wps-optimization-database.php:113
147
  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."
148
  msgstr ""
149
 
150
- #: includes/optimization/tabs/wps-optimization-database.php:94
151
  msgid "Search Table"
152
  msgstr ""
153
 
154
- #: includes/optimization/tabs/wps-optimization-database.php:99
155
  msgid "Convert"
156
  msgstr ""
157
 
158
- #: includes/optimization/tabs/wps-optimization-database.php:106
159
  msgid "Convert Now!"
160
  msgstr ""
161
 
162
- #: includes/optimization/tabs/wps-optimization-database.php:107
163
  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."
164
  msgstr ""
165
 
166
- #: includes/log/exclusions.php:24
167
  msgid "Referrer Spam"
168
  msgstr ""
169
 
170
- #: includes/settings/tabs/wps-externals.php:279
171
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
172
  msgstr ""
173
 
174
- #: includes/settings/wps-settings.php:105
175
  msgid "Externals"
176
  msgstr ""
177
 
178
- #: includes/settings/tabs/wps-externals.php:220
179
  msgid "Piwik Referrer Spam Blacklist settings"
180
  msgstr ""
181
 
182
- #: includes/settings/tabs/wps-externals.php:255
183
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
184
  msgstr ""
185
 
186
- #: includes/settings/tabs/wps-externals.php:248
187
  msgid "Download Piwik Referrer Spam Blacklist Database"
188
  msgstr ""
189
 
190
- #: includes/settings/tabs/wps-externals.php:243
191
  msgid "Update Piwik Referrer Spam Blacklist Info"
192
  msgstr ""
193
 
194
- #: includes/settings/tabs/wps-externals.php:237
195
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
196
  msgstr ""
197
 
198
- #: includes/settings/tabs/wps-externals.php:225
199
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
200
  msgstr ""
201
 
202
- #: includes/settings/tabs/wps-externals.php:231
203
  msgid "Piwik Referrer Spam Blacklist usage"
204
  msgstr ""
205
 
206
- #: includes/settings/tabs/wps-exclusions.php:148
207
  msgid "Treat corrupt browser info as a bot"
208
  msgstr ""
209
 
210
- #: includes/log/exclusions.php:24
211
  msgid "404 Pages"
212
  msgstr ""
213
 
214
- #: includes/log/top-visitors.php:26
215
  msgid "Date"
216
  msgstr ""
217
 
218
- #: includes/settings/tabs/wps-exclusions.php:151
219
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
220
  msgstr ""
221
 
222
- #: includes/settings/tabs/wps-exclusions.php:215
223
  msgid "Excluded 404 pages"
224
  msgstr ""
225
 
226
- #: includes/settings/tabs/wps-exclusions.php:218
227
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
228
  msgstr ""
229
 
230
- #: wps-updates.php:29
231
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
232
  msgstr ""
233
 
234
- #: includes/settings/tabs/wps-general.php:281
235
  msgid "Add page title to empty search words"
236
  msgstr ""
237
 
238
- #: includes/settings/tabs/wps-general.php:287
239
  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."
240
  msgstr ""
241
 
242
- #: includes/optimization/tabs/wps-optimization-purging.php:218
243
- #: includes/settings/tabs/wps-maintenance.php:75
244
  msgid "Purge visitors with more than"
245
  msgstr ""
246
 
247
- #: includes/optimization/tabs/wps-optimization-purging.php:223
248
  msgid "hits"
249
  msgstr ""
250
 
251
- #: includes/optimization/tabs/wps-optimization-purging.php:224
252
  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."
253
  msgstr ""
254
 
255
- #: includes/functions/purge-hits.php:28
256
  msgid "No visitors found to purge."
257
  msgstr ""
258
 
259
- #: includes/functions/purge-hits.php:25
260
  msgid "%s records purged successfully."
261
  msgstr ""
262
 
263
- #: ajax.php:178 includes/functions/purge-hits.php:32
 
264
  msgid "Number of hits must be greater than or equal to 10!"
265
  msgstr ""
266
 
267
- #: shortcode.php:141
268
  msgid "Page Visits"
269
  msgstr ""
270
 
271
- #: shortcode.php:144
272
  msgid "Page Count"
273
  msgstr ""
274
 
275
- #: shortcode.php:145
276
  msgid "Comment Count"
277
  msgstr ""
278
 
279
- #: shortcode.php:146
280
  msgid "Spam Count"
281
  msgstr ""
282
 
283
- #: shortcode.php:147
284
  msgid "User Count"
285
  msgstr ""
286
 
287
- #: shortcode.php:148
288
  msgid "Post Average"
289
  msgstr ""
290
 
291
- #: shortcode.php:149
292
  msgid "Comment Average"
293
  msgstr ""
294
 
295
- #: shortcode.php:150
296
  msgid "User Average"
297
  msgstr ""
298
 
299
- #: shortcode.php:162
300
  msgid "Search Provider"
301
  msgstr ""
302
 
303
- #: shortcode.php:165
304
  msgid "The search provider to get statistics on."
305
  msgstr ""
306
 
307
- #: shortcode.php:169
308
  msgid "Number Format"
309
  msgstr ""
310
 
311
- #: shortcode.php:172
312
  msgid "The format to display numbers in: i18n, english, none."
313
  msgstr ""
314
 
315
- #: shortcode.php:176
316
  msgid "English"
317
  msgstr ""
318
 
319
- #: shortcode.php:177
320
  msgid "International"
321
  msgstr ""
322
 
323
- #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
 
324
  msgid "Hits Statistics Summary"
325
  msgstr ""
326
 
327
- #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
 
328
  msgid "Chart Total"
329
  msgstr ""
330
 
331
- #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
 
332
  msgid "All Time Total"
333
  msgstr ""
334
 
335
- #: includes/log/log.php:6
336
  msgid "Have you thought about donating to WP Statistics?"
337
  msgstr ""
338
 
339
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:429
 
340
  msgid "Donate"
341
  msgstr ""
342
 
343
- #: includes/settings/tabs/wps-about.php:24
344
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
345
  msgstr ""
346
 
347
- #: includes/settings/tabs/wps-about.php:24
348
  msgid "donation"
349
  msgstr ""
350
 
351
- #: includes/log/log.php:6
352
  msgid "Donate Now!"
353
  msgstr ""
354
 
355
- #: includes/log/log.php:6
356
  msgid "Close"
357
  msgstr ""
358
 
359
- #: shortcode.php:135
360
  msgid "Select the statistic you wish to display."
361
  msgstr ""
362
 
363
- #: shortcode.php:132
364
  msgid "Statistic"
365
  msgstr ""
366
 
367
- #: shortcode.php:143
368
  msgid "Post Count"
369
  msgstr ""
370
 
371
- #: shortcode.php:155
372
  msgid "Time Frame"
373
  msgstr ""
374
 
375
- #: includes/functions/functions.php:1009
376
  msgid "to"
377
  msgstr ""
378
 
379
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
380
  msgid "Go"
381
  msgstr ""
382
 
383
- #: includes/log/top-pages.php:95
384
  msgid "Rank #5"
385
  msgstr ""
386
 
387
- #: includes/log/top-pages.php:95
388
  msgid "Rank #4"
389
  msgstr ""
390
 
391
- #: includes/log/top-pages.php:95
392
  msgid "Rank #3"
393
  msgstr ""
394
 
395
- #: includes/log/top-pages.php:95
396
  msgid "Rank #1"
397
  msgstr ""
398
 
399
- #: includes/log/top-pages.php:95
400
  msgid "Rank #2"
401
  msgstr ""
402
 
403
- #: includes/optimization/tabs/wps-optimization-database.php:60
404
  msgid "Visits Table"
405
  msgstr ""
406
 
407
- #: includes/optimization/tabs/wps-optimization-database.php:75
408
  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."
409
  msgstr ""
410
 
411
- #: includes/optimization/tabs/wps-optimization-database.php:76
412
  msgid "This operation could take a long time on installs with many rows in the visits table."
413
  msgstr ""
414
 
415
- #: includes/optimization/tabs/wps-optimization-database.php:82
416
  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."
417
  msgstr ""
418
 
419
- #: includes/log/last-visitor.php:68
420
  msgid "Filtered by"
421
  msgstr ""
422
 
423
- #: includes/functions/functions.php:1002 includes/functions/functions.php:1005
 
424
  msgid "Range"
425
  msgstr ""
426
 
427
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
428
  msgid "MM/DD/YYYY"
429
  msgstr "MM/DD/YYYY"
430
 
431
- #: includes/settings/tabs/wps-general.php:342
432
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
433
  msgstr ""
434
 
435
- #: includes/settings/tabs/wps-general.php:336
436
  msgid "Force English"
437
  msgstr ""
438
 
439
- #: includes/settings/tabs/wps-general.php:331
440
  msgid "Languages"
441
  msgstr ""
442
 
443
- #: includes/settings/tabs/wps-exclusions.php:227
444
  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."
445
  msgstr ""
446
 
447
- #: includes/settings/tabs/wps-exclusions.php:225
448
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
449
  msgstr ""
450
 
451
- #: includes/settings/tabs/wps-exclusions.php:222
452
  msgid "Excluded URLs list"
453
  msgstr ""
454
 
455
- #: includes/log/exclusions.php:24
456
  msgid "Excluded URL"
457
  msgstr ""
458
 
459
- #: includes/log/widgets/quickstats.php:52 includes/log/widgets/summary.php:52
 
460
  msgid "Last 365 Days (Year)"
461
  msgstr ""
462
 
463
- #: includes/log/widgets/quickstats.php:46 includes/log/widgets/summary.php:46
 
464
  msgid "Last 30 Days (Month)"
465
  msgstr ""
466
 
467
- #: includes/log/widgets/quickstats.php:40 includes/log/widgets/summary.php:40
 
468
  msgid "Last 7 Days (Week)"
469
  msgstr ""
470
 
471
- #: includes/functions/functions.php:430
472
  msgid "Yahoo!"
473
  msgstr ""
474
 
475
- #: includes/functions/functions.php:431
476
  msgid "Yandex"
477
  msgstr ""
478
 
479
- #: includes/functions/functions.php:427
480
  msgid "clearch.org"
481
  msgstr ""
482
 
483
- #: includes/functions/functions.php:428
484
  msgid "DuckDuckGo"
485
  msgstr ""
486
 
487
- #: includes/functions/functions.php:426
488
  msgid "Bing"
489
  msgstr ""
490
 
491
- #: includes/functions/functions.php:425
492
  msgid "Baidu"
493
  msgstr ""
494
 
495
- #: editor.php:69
496
- msgid "Hits in the last 20 days"
497
- msgstr ""
498
-
499
- #: includes/log/exclusions.php:24
500
  msgid "Feeds"
501
  msgstr ""
502
 
503
- #: includes/log/exclusions.php:24
504
  msgid "User Role"
505
  msgstr ""
506
 
507
- #: includes/log/exclusions.php:24
508
  msgid "Login Page"
509
  msgstr ""
510
 
511
- #: includes/log/exclusions.php:24
512
  msgid "Admin Page"
513
  msgstr ""
514
 
515
- #: includes/log/exclusions.php:24
516
  msgid "Self Referral"
517
  msgstr ""
518
 
519
- #: includes/log/exclusions.php:24
520
  msgid "IP Match"
521
  msgstr ""
522
 
523
- #: includes/log/exclusions.php:24
524
  msgid "Robot"
525
  msgstr ""
526
 
527
- #: includes/log/online.php:100
528
  msgid "Currently there are no users online in the site."
529
  msgstr ""
530
 
531
- #: includes/log/exclusions.php:24
532
  msgid "Robot Threshold"
533
  msgstr ""
534
 
535
- #: includes/log/exclusions.php:24
536
  msgid "Honey Pot"
537
  msgstr ""
538
 
539
- #: includes/log/widgets/page.php:8
540
  msgid "Page Trending Stats"
541
  msgstr ""
542
 
543
- #: includes/log/exclusions.php:24
544
  msgid "Hostname"
545
  msgstr ""
546
 
547
- #: includes/settings/tabs/wps-general.php:93
548
- #: includes/settings/tabs/wps-general.php:133
549
- #: includes/settings/tabs/wps-general.php:149
550
- #: includes/settings/tabs/wps-general.php:188
551
- #: includes/settings/tabs/wps-general.php:200
552
- #: includes/settings/tabs/wps-general.php:229
553
- #: includes/settings/tabs/wps-notifications.php:122
554
  msgid "Enable or disable this feature"
555
  msgstr "Разрешаване или забраняване на тази функция"
556
 
557
- #: includes/settings/tabs/wps-general.php:99
558
  msgid "Check for online users every"
559
  msgstr "Проверявай за онлайн потребители на всеки"
560
 
561
- #: includes/settings/tabs/wps-general.php:104
562
  msgid "Second"
563
  msgstr "Секунда"
564
 
565
- #: includes/settings/tabs/wps-general.php:105
566
  msgid "Time for the check accurate online user in the site. Now: %s Second"
567
  msgstr "Времето за точна проверка онлайн потребителя в сайта. Сега: %s втори"
568
 
569
- #: includes/settings/tabs/wps-general.php:111
570
  msgid "Record all user"
571
  msgstr ""
572
 
573
- #: includes/settings/tabs/wps-general.php:117
574
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
575
  msgstr ""
576
 
577
- #: includes/settings/tabs/wps-general.php:155
578
  msgid "Store entire user agent string"
579
  msgstr "Съхранява цялата потребител фактор канап"
580
 
581
- #: includes/settings/tabs/wps-general.php:161
582
  msgid "Only enabled for debugging"
583
  msgstr "Разрешена за отстраняване на грешки"
584
 
585
- #: includes/settings/tabs/wps-general.php:167
586
  msgid "Coefficient per visitor"
587
  msgstr "Коефициент за потребител"
588
 
589
- #: includes/settings/tabs/wps-general.php:172
590
  msgid "For each visit to account for several hits. Currently %s."
591
  msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
592
 
593
- #: includes/settings/tabs/wps-general.php:177
594
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:418
595
- #: wp-statistics.php:516
596
  msgid "Pages"
597
  msgstr "Страници"
598
 
599
- #: includes/settings/tabs/wps-general.php:194
600
  msgid "Track all pages"
601
  msgstr "Проследяване на всички страници"
602
 
603
- #: includes/settings/tabs/wps-general.php:209
604
  msgid "Strip parameters from URI"
605
  msgstr ""
606
 
607
- #: includes/settings/tabs/wps-general.php:215
608
  msgid "This will remove anything after the ? in a URL."
609
  msgstr ""
610
 
611
- #: includes/settings/tabs/wps-general.php:223
612
  msgid "Disable hits column in post/pages list"
613
  msgstr "Забрани хитове колона пост/страници списък"
614
 
615
- #: includes/settings/tabs/wps-general.php:234
616
  msgid "Miscellaneous"
617
  msgstr "Разни"
618
 
619
- #: includes/settings/tabs/wps-general.php:239
620
  msgid "Show stats in menu bar"
621
  msgstr "Покажи статистиките в менюто"
622
 
623
- #: includes/settings/tabs/wps-general.php:244
624
  msgid "No"
625
  msgstr "Не"
626
 
627
- #: includes/settings/tabs/wps-general.php:245
628
  msgid "Yes"
629
  msgstr "Да"
630
 
631
- #: includes/settings/tabs/wps-general.php:247
632
  msgid "Show stats in admin menu bar"
633
  msgstr "Покажи статистиките в админ менюто"
634
 
635
- #: includes/settings/tabs/wps-general.php:253
636
  msgid "Hide admin notices about non active features"
637
  msgstr "Скрий администратор обявления за не са активни функции"
638
 
639
- #: includes/settings/tabs/wps-general.php:259
640
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
641
  msgstr "По подразбиране WP Statistics показва предупреждение, ако някой от основните функции са забранени на всяка страница, Админ, тази опция ще забраните тези съобщения."
642
 
643
- #: includes/settings/tabs/wps-general.php:265
644
  msgid "Delete the manual"
645
  msgstr "Изтриване на наръчника"
646
 
647
- #: includes/settings/tabs/wps-general.php:271
648
  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."
649
  msgstr "По подразбиране WP Statistics съхранява администратор ръководство в плъгин директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и по време на ъпгрейд в бъдеще."
650
 
651
- #: includes/settings/tabs/wps-general.php:276
652
  msgid "Search Engines"
653
  msgstr ""
654
 
655
- #: includes/settings/tabs/wps-general.php:293
656
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
657
  msgstr "Деактивирането на всички търсещи машини не е позволено, това ще доведе до всички търсещи машини са активни."
658
 
659
- #: includes/settings/tabs/wps-general.php:308
660
  msgid "disable"
661
  msgstr "забрани"
662
 
663
- #: includes/settings/tabs/wps-general.php:309
664
  msgid "Disable %s from data collection and reporting."
665
  msgstr "Изключете %s от събирането на данни и докладване."
666
 
667
- #: includes/settings/tabs/wps-general.php:315
668
  msgid "Charts"
669
  msgstr "Диаграми"
670
 
671
- #: includes/settings/tabs/wps-general.php:320
672
  msgid "Include totals"
673
  msgstr "Включва общи суми"
674
 
675
- #: includes/settings/tabs/wps-general.php:326
676
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
677
  msgstr "Добавяне на обща линия за диаграми с множество стойности, като търсене двигател референции"
678
 
679
- #: includes/settings/tabs/wps-externals.php:32
680
  msgid "GeoIP settings"
681
  msgstr "GeoIP настройки"
682
 
683
- #: includes/settings/tabs/wps-externals.php:37
684
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
685
  msgstr "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от MaxMind, достъпни от %s."
686
 
687
- #: includes/settings/tabs/wps-externals.php:47
688
  msgid "GeoIP collection"
689
  msgstr "GeoIP колекция"
690
 
691
- #: includes/settings/tabs/wps-externals.php:53
692
  msgid "For get more information and location (country) from visitor, enable this feature."
693
  msgstr "За да получите повече информация и местоположението (страната) от посетител, активирате тази функция."
694
 
695
- #: includes/settings/tabs/wps-externals.php:59
696
  msgid "Update GeoIP Info"
697
  msgstr "GeoIP информация актуализация"
698
 
699
- #: includes/settings/tabs/wps-externals.php:64
700
  msgid "Download GeoIP Database"
701
  msgstr "Изтегли GeoIP база данни"
702
 
703
- #: includes/settings/tabs/wps-externals.php:71
704
  msgid "Schedule monthly update of GeoIP DB"
705
  msgstr "Месечна актуализация график на GeoIP DB"
706
 
707
- #: includes/settings/tabs/wps-externals.php:97
708
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
709
  msgstr "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия вторник на месеца."
710
 
711
- #: includes/settings/tabs/wps-externals.php:98
712
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
713
  msgstr "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, (което обикновено означава пън, която идва с приставката е все още на място)."
714
 
715
- #: includes/settings/tabs/wps-externals.php:104
716
  msgid "Populate missing GeoIP after update of GeoIP DB"
717
  msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
718
 
719
- #: includes/settings/tabs/wps-externals.php:110
720
  msgid "Update any missing GeoIP data after downloading a new database."
721
  msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
722
 
723
- #: includes/settings/tabs/wps-externals.php:116
724
  msgid "Country code for private IP addresses"
725
  msgstr ""
726
 
727
- #: includes/settings/tabs/wps-externals.php:121
728
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
729
  msgstr ""
730
 
731
- #: includes/settings/tabs/wps-externals.php:132
732
  msgid "GeoIP collection is disabled due to the following reasons:"
733
  msgstr "GeoIP колекция е забранена поради следните причини:"
734
 
735
- #: includes/settings/tabs/wps-externals.php:135
736
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
737
  msgstr "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради инсталирани PHP версия са "
738
 
739
- #: includes/settings/tabs/wps-externals.php:140
740
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
741
  msgstr "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата версия на PHP!"
742
 
743
- #: includes/settings/tabs/wps-externals.php:146
744
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
745
  msgstr "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена на вашата версия на PHP!"
746
 
747
- #: includes/settings/tabs/wps-externals.php:152
748
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
749
  msgstr "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен режим!"
750
 
751
- #: includes/settings/tabs/wps-maintenance.php:20
752
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
753
  msgstr "Това ще изтрие данни от базата данни всеки ден, наистина ли искате да разрешите тази опция?"
754
 
755
- #: includes/settings/tabs/wps-maintenance.php:52
756
  msgid "Days"
757
  msgstr "Дни"
758
 
759
- #: includes/settings/tabs/wps-maintenance.php:53
760
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
761
  msgstr "Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. Невалидни стойности ще забрани ежедневна поддръжка."
762
 
763
- #: includes/settings/tabs/wps-notifications.php:44
764
  msgid "Common Report Options"
765
  msgstr ""
766
 
767
- #: includes/settings/tabs/wps-notifications.php:49
768
  msgid "E-mail addresses"
769
  msgstr "Имейл адреси"
770
 
771
- #: includes/settings/tabs/wps-notifications.php:54
772
  msgid "A comma separated list of e-mail addresses to send reports to."
773
  msgstr ""
774
 
775
- #: includes/settings/tabs/wps-notifications.php:59
776
  msgid "Update Reports"
777
  msgstr ""
778
 
779
- #: includes/log/exclusions.php:24
780
- #: includes/settings/tabs/wps-notifications.php:64
781
  msgid "Browscap"
782
  msgstr ""
783
 
784
- #: includes/settings/tabs/wps-notifications.php:70
785
  msgid "Send a report whenever the browscap.ini is updated."
786
  msgstr ""
787
 
788
- #: includes/log/exclusions.php:24
789
- #: includes/settings/tabs/wps-notifications.php:76
790
  msgid "GeoIP"
791
  msgstr "GeoIP"
792
 
793
- #: includes/settings/tabs/wps-notifications.php:82
794
  msgid "Send a report whenever the GeoIP database is updated."
795
  msgstr ""
796
 
797
- #: includes/settings/tabs/wps-notifications.php:88
798
  msgid "Pruning"
799
  msgstr ""
800
 
801
- #: includes/settings/tabs/wps-notifications.php:94
802
  msgid "Send a report whenever the pruning of database is run."
803
  msgstr ""
804
 
805
- #: includes/settings/tabs/wps-notifications.php:100
806
  msgid "Upgrade"
807
  msgstr ""
808
 
809
- #: includes/settings/tabs/wps-notifications.php:106
810
  msgid "Send a report whenever the plugin is upgraded."
811
  msgstr ""
812
 
813
- #: includes/settings/tabs/wps-notifications.php:111
814
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
 
815
  msgid "Statistical reporting"
816
  msgstr "Статистическата отчетност"
817
 
818
- #: includes/settings/tabs/wps-notifications.php:129
819
  msgid "Schedule"
820
  msgstr "График"
821
 
822
- #: includes/settings/tabs/wps-notifications.php:153
823
  msgid "Select how often to receive statistical report."
824
  msgstr ""
825
 
826
- #: includes/settings/tabs/wps-notifications.php:159
827
  msgid "Send reports via"
828
  msgstr "Изпрати отчетите чрез"
829
 
830
- #: includes/settings/tabs/wps-notifications.php:165
831
  msgid "Email"
832
  msgstr "Имейл"
833
 
834
- #: includes/settings/tabs/wps-notifications.php:167
835
  msgid "SMS"
836
  msgstr "SMS"
837
 
838
- #: includes/settings/tabs/wps-notifications.php:170
839
  msgid "Select delivery method for statistical report."
840
  msgstr ""
841
 
842
- #: includes/settings/tabs/wps-notifications.php:173
843
  msgid "Note: To send SMS text messages please install the %s plugin."
844
  msgstr "Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s плъгин."
845
 
846
- #: includes/settings/tabs/wps-notifications.php:173
847
  msgid "WordPress SMS"
848
  msgstr "WordPress SMS"
849
 
850
- #: includes/settings/tabs/wps-notifications.php:180
851
  msgid "Report body"
852
  msgstr "Тялото на доклада"
853
 
854
- #: includes/settings/tabs/wps-notifications.php:185
855
  msgid "Enter the contents of the report."
856
  msgstr ""
857
 
858
- #: includes/settings/tabs/wps-notifications.php:187
859
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
860
  msgstr ""
861
 
862
- #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
863
- #: widget.php:247 wp-statistics.php:621
 
864
  msgid "User Online"
865
  msgstr "Онлайн потребители"
866
 
867
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
868
- #: widget.php:253
869
  msgid "Today Visitor"
870
  msgstr "Днес посетителите"
871
 
872
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
873
- #: widget.php:250
874
  msgid "Today Visit"
875
  msgstr "Посещения от днес"
876
 
877
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
878
- #: widget.php:259
879
  msgid "Yesterday Visitor"
880
  msgstr "Вчера посетител"
881
 
882
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
 
883
  msgid "Yesterday Visit"
884
  msgstr "Вчерашни посещения"
885
 
886
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
887
- #: widget.php:274
888
  msgid "Total Visitor"
889
  msgstr "Общо посетител"
890
 
891
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
892
- #: widget.php:271
893
  msgid "Total Visit"
894
  msgstr "Общо посещения"
895
 
896
- #: shortcode.php:175
897
  msgid "None"
898
  msgstr "Няма"
899
 
900
- #: includes/settings/wps-settings.php:108
901
  msgid "About"
902
  msgstr "За"
903
 
904
- #: includes/settings/tabs/wps-overview-display.php:20
905
  msgid "Dashboard"
906
  msgstr ""
907
 
908
- #: includes/settings/tabs/wps-overview-display.php:24
909
- #: includes/settings/tabs/wps-overview-display.php:44
910
- #: includes/settings/tabs/wps-overview-display.php:64
911
  msgid "The following items are global to all users."
912
  msgstr ""
913
 
914
- #: includes/settings/tabs/wps-overview-display.php:29
915
  msgid "Disable dashboard widgets"
916
  msgstr ""
917
 
918
- #: includes/settings/tabs/wps-overview-display.php:35
919
  msgid "Disable the dashboard widgets."
920
  msgstr ""
921
 
922
- #: includes/settings/tabs/wps-overview-display.php:40
923
  msgid "Page/Post Editor"
924
  msgstr ""
925
 
926
- #: includes/settings/tabs/wps-overview-display.php:49
927
  msgid "Disable post/page editor widget"
928
  msgstr ""
929
 
930
- #: includes/settings/tabs/wps-overview-display.php:55
931
  msgid "Disable the page/post editor widget."
932
  msgstr ""
933
 
934
- #: includes/settings/tabs/wps-overview-display.php:69
935
  msgid "Map type"
936
  msgstr "Тип карта"
937
 
938
- #: includes/functions/functions.php:429
939
- #: includes/settings/tabs/wps-overview-display.php:75
940
  msgid "Google"
941
  msgstr "Google"
942
 
943
- #: includes/settings/tabs/wps-overview-display.php:75
944
  msgid "JQVMap"
945
  msgstr "JQVMap"
946
 
947
- #: includes/settings/tabs/wps-overview-display.php:82
948
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
949
  msgstr "\"Google\" опция ще използва на Google картографска услуга да начертаете последните посетители (изисква достъп до Google)."
950
 
951
- #: includes/settings/tabs/wps-overview-display.php:83
952
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
953
  msgstr "\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да начертаете последните посетители (изисква extenral услуги)."
954
 
955
- #: includes/settings/tabs/wps-overview-display.php:89
956
  msgid "Disable map"
957
  msgstr "Забраняване на картата"
958
 
959
- #: includes/settings/tabs/wps-overview-display.php:95
960
  msgid "Disable the map display"
961
  msgstr "Забраняване на показването на картите"
962
 
963
- #: includes/settings/tabs/wps-overview-display.php:101
964
  msgid "Get country location from Google"
965
  msgstr "Се страна местоположение от Google"
966
 
967
- #: includes/settings/tabs/wps-overview-display.php:107
968
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
969
  msgstr "Тази функция може да доведе до намаляване на производителността, когато разглеждате статистиката и е валидно, ако типът на картата е настроено на \"Google само\"."
970
 
971
- #: includes/settings/tabs/wps-removal.php:15
972
  msgid "WP Statisitcs Removal"
973
  msgstr ""
974
 
975
- #: includes/settings/tabs/wps-removal.php:20
976
  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."
977
  msgstr ""
978
 
979
- #: includes/settings/tabs/wps-removal.php:23
980
  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."
981
  msgstr ""
982
 
983
- #: includes/settings/tabs/wps-removal.php:29
984
  msgid "Remove data and settings"
985
  msgstr ""
986
 
987
- #: includes/settings/tabs/wps-removal.php:34
988
  msgid "Remove"
989
  msgstr ""
990
 
991
- #: includes/settings/tabs/wps-removal.php:35
992
  msgid "Remove data and settings, this action cannot be undone."
993
  msgstr ""
994
 
995
- #: includes/settings/wps-settings.php:100
996
  msgid "General"
997
  msgstr "Общи"
998
 
999
- #: includes/settings/wps-settings.php:101
1000
  msgid "Notifications"
1001
  msgstr ""
1002
 
1003
- #: includes/settings/wps-settings.php:102
1004
  msgid "Dashboard/Overview"
1005
  msgstr ""
1006
 
1007
- #: includes/settings/wps-settings.php:106
1008
  msgid "Maintenance"
1009
  msgstr "Поддръжка"
1010
 
1011
- #: includes/settings/wps-settings.php:107
1012
  msgid "Removal"
1013
  msgstr ""
1014
 
1015
- #: includes/settings/tabs/wps-access-level.php:85
1016
- #: includes/settings/tabs/wps-exclusions.php:234
1017
- #: includes/settings/tabs/wps-externals.php:286
1018
- #: includes/settings/tabs/wps-general.php:349
1019
- #: includes/settings/tabs/wps-maintenance.php:88
1020
- #: includes/settings/tabs/wps-notifications.php:201
1021
- #: includes/settings/tabs/wps-overview-display.php:116
1022
- #: includes/settings/tabs/wps-removal.php:42
1023
  msgid "Update"
1024
  msgstr "Актуализация"
1025
 
1026
- #: schedule.php:10
1027
  msgid "Once Weekly"
1028
  msgstr "Веднъж седмично"
1029
 
1030
- #: schedule.php:17
1031
  msgid "Once Every 2 Weeks"
1032
  msgstr "Веднъж на всеки 2 седмици"
1033
 
1034
- #: schedule.php:24
1035
  msgid "Once Every 4 Weeks"
1036
  msgstr "Веднъж на всеки 4 седмици"
1037
 
1038
- #: widget.php:14 wp-statistics.php:408 wp-statistics.php:469
 
1039
  msgid "Statistics"
1040
  msgstr "Статистики"
1041
 
1042
- #: widget.php:15
1043
  msgid "Show site stats in sidebar."
1044
  msgstr "Показване на статистика на сайт в страничната лента."
1045
 
1046
- #: widget.php:73 widget.php:262
1047
  msgid "Week Visit"
1048
  msgstr "Седмични посещения"
1049
 
1050
- #: widget.php:80 widget.php:265
1051
  msgid "Month Visit"
1052
  msgstr "Месечни посещения"
1053
 
1054
- #: widget.php:87 widget.php:268
1055
  msgid "Years Visit"
1056
  msgstr "Годишни посещения"
1057
 
1058
- #: widget.php:108 widget.php:277
1059
  msgid "Total Page Views"
1060
  msgstr "Общо изгледи на страница"
1061
 
1062
- #: widget.php:116
1063
  msgid "Search Engine referred"
1064
  msgstr "Търсачката по"
1065
 
1066
- #: widget.php:123 widget.php:300
1067
  msgid "Total Posts"
1068
  msgstr "Общо публикации"
1069
 
1070
- #: widget.php:130 widget.php:303
1071
  msgid "Total Pages"
1072
  msgstr "Общо страници"
1073
 
1074
- #: widget.php:137 widget.php:306
1075
  msgid "Total Comments"
1076
  msgstr "Общо коментари"
1077
 
1078
- #: widget.php:144 widget.php:309
1079
  msgid "Total Spams"
1080
  msgstr "Общо спам"
1081
 
1082
- #: widget.php:151 widget.php:312
1083
  msgid "Total Users"
1084
  msgstr "Общо потребители"
1085
 
1086
- #: widget.php:158 widget.php:315
1087
  msgid "Average Posts"
1088
  msgstr "Средно публикации"
1089
 
1090
- #: widget.php:165 widget.php:318
1091
  msgid "Average Comments"
1092
  msgstr "Средно коментари"
1093
 
1094
- #: widget.php:172 widget.php:321
1095
  msgid "Average Users"
1096
  msgstr "Средно потребители"
1097
 
1098
- #: shortcode.php:151 widget.php:179 widget.php:324
 
1099
  msgid "Last Post Date"
1100
  msgstr "Последно добавена публикация"
1101
 
1102
- #: widget.php:240
1103
  msgid "Name"
1104
  msgstr "Име"
1105
 
1106
- #: widget.php:244
1107
  msgid "Items"
1108
  msgstr "Броя"
1109
 
1110
- #: widget.php:256 wp-statistics.php:646
1111
  msgid "Yesterday visit"
1112
  msgstr "Вчерашни посещения"
1113
 
1114
- #: widget.php:280
1115
  msgid "Search Engine Referred"
1116
  msgstr "Търсачката по"
1117
 
1118
- #: widget.php:283
1119
  msgid "Select type of search engine"
1120
  msgstr "Изберете тип търсачка"
1121
 
1122
- #: wp-statistics.php:122
1123
  msgid "WP Statistics has been removed, please disable and delete it."
1124
  msgstr ""
1125
 
1126
- #. Plugin Name of the plugin/theme
1127
- #: wp-statistics.php:54
1128
  msgid "WP Statistics"
1129
  msgstr "WP Statistics"
1130
 
1131
- #. Description of the plugin/theme
1132
- #: wp-statistics.php:55
1133
  msgid "Complete statistics for your WordPress site."
1134
  msgstr "Пълна статистика за вашия сайт WordPress."
1135
 
1136
- #: wp-statistics.php:313 wp-statistics.php:428 wp-statistics.php:523
 
1137
  msgid "Settings"
1138
  msgstr "Настройки"
1139
 
1140
- #: wp-statistics.php:325
1141
  msgid "Click here to visit the plugin on WordPress.org"
1142
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
1143
 
1144
- #: wp-statistics.php:325
1145
  msgid "Visit WordPress.org page"
1146
  msgstr "Посетете страницата на WordPress.org"
1147
 
1148
- #: wp-statistics.php:328
1149
  msgid "Click here to rate and review this plugin on WordPress.org"
1150
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
1151
 
1152
- #: wp-statistics.php:328
1153
  msgid "Rate this plugin"
1154
  msgstr "Оцени този плъгин"
1155
 
1156
- #: wp-statistics.php:372
1157
  msgid "WP Statistics - Hits"
1158
  msgstr "WP-статистика - хитове"
1159
 
1160
- #: wp-statistics.php:411 wp-statistics.php:472 wp-statistics.php:510
 
1161
  msgid "Overview"
1162
  msgstr "Общ преглед"
1163
 
1164
- #: wp-statistics.php:417 wp-statistics.php:515
1165
  msgid "Online"
1166
  msgstr ""
1167
 
1168
- #: wp-statistics.php:419 wp-statistics.php:517
1169
  msgid "Referrers"
1170
  msgstr ""
1171
 
1172
- #: shortcode.php:142 wp-statistics.php:420 wp-statistics.php:518
 
1173
  msgid "Searches"
1174
  msgstr "Търсения"
1175
 
1176
- #: wp-statistics.php:421 wp-statistics.php:519
1177
  msgid "Search Words"
1178
  msgstr "Думи за търсене"
1179
 
1180
- #: wp-statistics.php:422 wp-statistics.php:520
1181
  msgid "Top Visitors Today"
1182
  msgstr ""
1183
 
1184
- #: wp-statistics.php:427 wp-statistics.php:522
1185
  msgid "Optimization"
1186
  msgstr "Оптимизация"
1187
 
1188
- #: wp-statistics.php:433 wp-statistics.php:486
1189
  msgid "Manual"
1190
  msgstr "Ръководство"
1191
 
1192
- #: wp-statistics.php:501
1193
  msgid "Site"
1194
  msgstr ""
1195
 
1196
- #: wp-statistics.php:502
1197
  msgid "Options"
1198
  msgstr ""
1199
 
1200
- #: wp-statistics.php:628
1201
  msgid "Today visitor"
1202
  msgstr "Днес посетителите"
1203
 
1204
- #: wp-statistics.php:634
1205
  msgid "Today visit"
1206
  msgstr "Днес, посетете"
1207
 
1208
- #: wp-statistics.php:640
1209
  msgid "Yesterday visitor"
1210
  msgstr "Вчера посетител"
1211
 
1212
- #: wp-statistics.php:652
1213
  msgid "View Stats"
1214
  msgstr "Преглед на статистиките"
1215
 
1216
- #: wp-statistics.php:676
1217
  msgid "Download ODF file"
1218
  msgstr "Изтегляне на ODF файл"
1219
 
1220
- #: wp-statistics.php:677
1221
  msgid "Download HTML file"
1222
  msgstr "Изтегли HTML файл"
1223
 
1224
- #: wp-statistics.php:681
1225
  msgid "Manual file not found."
1226
  msgstr "Ръчно файлът не е намерен."
1227
 
1228
- #: wp-statistics.php:748 wp-statistics.php:878 wp-statistics.php:913
 
1229
  msgid "You do not have sufficient permissions to access this page."
1230
  msgstr "Нямате права за тази страница"
1231
 
1232
- #: wp-statistics.php:301
1233
  msgid "WP Statistics %s installed on"
1234
  msgstr ""
1235
 
1236
- #: wps-updates.php:39
1237
  msgid "Error downloading GeoIP database from: %s - %s"
1238
  msgstr "Грешка при изтегляне на базата от данни от GeoIP: %s - %s"
1239
 
1240
- #: wps-updates.php:50
1241
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1242
  msgstr "Грешка не може да отвори изтегления GeoIP база данни за четене: %s"
1243
 
1244
- #: wps-updates.php:57
1245
  msgid "Error could not open destination GeoIP database for writing %s"
1246
  msgstr "Грешка не може да отвори GeoIP база данни местоназначение за писане на %s"
1247
 
1248
- #: wps-updates.php:73
1249
  msgid "GeoIP Database updated successfully!"
1250
  msgstr "GeoIP базата данни се актуализира успешно!"
1251
 
1252
- #: wps-updates.php:98
1253
  msgid "GeoIP update on"
1254
  msgstr ""
1255
 
1256
- #: wps-updates.php:165
1257
  msgid "Error downloading browscap database from: %s - %s"
1258
  msgstr "Грешка при изтегляне на browscap база данни от: %s - %s"
1259
 
1260
- #: wps-updates.php:274
1261
  msgid "browscap database updated successfully!"
1262
  msgstr "browscap база данни, актуализирани успешно!"
1263
 
1264
- #: wps-updates.php:284
1265
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1266
  msgstr ""
1267
 
1268
- #: wps-updates.php:292
1269
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1270
  msgstr ""
1271
 
1272
- #: wps-updates.php:314
1273
  msgid "browscap already at current version!"
1274
  msgstr "browscap вече в текущата версия!"
1275
 
1276
- #: wps-updates.php:327
1277
  msgid "Browscap.ini update on"
1278
  msgstr ""
1279
 
1280
- #. Plugin URI of the plugin/theme
1281
- #. Author URI of the plugin/theme
1282
- msgid "http://wp-statistics.com/"
1283
- msgstr "http://WP-Statistics.com/"
1284
-
1285
- #. Author of the plugin/theme
1286
- msgid "Mostafa Soufi & Greg Ross"
1287
- msgstr "Mostafa Soufi & Грег Рос"
1288
-
1289
- #: dashboard.php:56
1290
  msgid "Quick Stats"
1291
  msgstr ""
1292
 
1293
- #: dashboard.php:57 includes/log/widgets/browsers.php:41
 
1294
  msgid "Top 10 Browsers"
1295
  msgstr "Топ 10 браузъри"
1296
 
1297
- #: dashboard.php:58 wp-statistics.php:457
1298
  msgid "Top 10 Countries"
1299
  msgstr "Топ 10 страни"
1300
 
1301
- #: dashboard.php:59
1302
  msgid "Today's Visitor Map"
1303
  msgstr ""
1304
 
1305
- #: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
1306
- #: wp-statistics.php:446
 
1307
  msgid "Hit Statistics"
1308
  msgstr "Удари статистика"
1309
 
1310
- #: dashboard.php:61 wp-statistics.php:450
1311
  msgid "Top 10 Pages"
1312
  msgstr "Топ 10 страници"
1313
 
1314
- #: dashboard.php:62 includes/log/last-visitor.php:36 wp-statistics.php:451
 
 
1315
  msgid "Recent Visitors"
1316
  msgstr "Последните посетители"
1317
 
1318
- #: dashboard.php:63 includes/log/top-referring.php:59
1319
- #: includes/log/top-referring.php:81 wp-statistics.php:456
 
 
1320
  msgid "Top Referring Sites"
1321
  msgstr "Топ Препращащи сайтове"
1322
 
1323
- #: dashboard.php:64 includes/log/widgets/quickstats.php:75
1324
- #: includes/log/widgets/summary.php:75 wp-statistics.php:448
 
 
1325
  msgid "Search Engine Referrals"
1326
  msgstr "Търсене двигател референции"
1327
 
1328
- #: dashboard.php:65 wp-statistics.php:454
1329
  msgid "Summary"
1330
  msgstr "Резюме"
1331
 
1332
- #: dashboard.php:66 includes/log/last-search.php:31 wp-statistics.php:449
 
1333
  msgid "Latest Search Words"
1334
  msgstr "Последни думи за търсене"
1335
 
1336
- #: dashboard.php:67
1337
  msgid "Top 10 Visitors Today"
1338
  msgstr ""
1339
 
1340
- #: editor.php:63
1341
  msgid "This post is not yet published."
1342
  msgstr ""
1343
 
1344
- #: includes/functions/geoip-populate.php:24
1345
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1346
  msgstr "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в страницата Настройки."
1347
 
1348
- #: includes/functions/geoip-populate.php:48
1349
  msgid "Updated %s GeoIP records in the visitors database."
1350
  msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
1351
 
1352
- #: includes/functions/purge.php:21 includes/functions/purge.php:39
1353
- #: includes/functions/purge.php:50 includes/functions/purge.php:61
1354
- #: includes/functions/purge.php:94
 
 
1355
  msgid "%s data older than %s days purged successfully."
1356
  msgstr "%s данни по-стари от %s дни, прочистват успешно."
1357
 
1358
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
1359
- #: includes/functions/purge.php:52 includes/functions/purge.php:63
1360
- #: includes/functions/purge.php:96
 
 
1361
  msgid "No records found to purge from %s!"
1362
  msgstr "Няма намерени за продухване от %s записи!"
1363
 
1364
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
 
1365
  msgid "Database pruned on"
1366
  msgstr ""
1367
 
1368
- #: includes/functions/purge.php:114
1369
  msgid "Please select a value over 30 days."
1370
  msgstr "Моля изберете стойност над 30 дни."
1371
 
1372
- #: includes/log/all-browsers.php:21
1373
  msgid "Browser Statistics"
1374
  msgstr "Браузър статистика"
1375
 
1376
- #: includes/log/all-browsers.php:29 includes/log/all-browsers.php:113
1377
- #: includes/log/all-browsers.php:248 includes/log/exclusions.php:72
1378
- #: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
1379
- #: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
1380
- #: includes/log/last-visitor.php:67 includes/log/online.php:17
1381
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
1382
- #: includes/log/top-countries.php:26 includes/log/top-pages.php:28
1383
- #: includes/log/top-pages.php:148 includes/log/top-referring.php:77
1384
- #: includes/log/top-visitors.php:40
 
 
 
 
 
 
 
 
1385
  msgid "Click to toggle"
1386
  msgstr "Щракнете за превключване"
1387
 
1388
- #: includes/log/all-browsers.php:30 wp-statistics.php:413 wp-statistics.php:455
1389
- #: wp-statistics.php:511
 
1390
  msgid "Browsers"
1391
  msgstr "Браузъри"
1392
 
1393
- #: includes/log/all-browsers.php:57
1394
  msgid "Browsers by type"
1395
  msgstr "Браузъри по вид"
1396
 
1397
- #: includes/log/all-browsers.php:114 includes/log/widgets/top.visitors.php:18
1398
- #: includes/optimization/tabs/wps-optimization-resources.php:302
 
1399
  msgid "Platform"
1400
  msgstr "Платформа"
1401
 
1402
- #: includes/log/all-browsers.php:141
1403
  msgid "Browsers by platform"
1404
  msgstr "Браузъри по платформа"
1405
 
1406
- #: includes/log/all-browsers.php:249
1407
  msgid "%s Version"
1408
  msgstr "версия на %s"
1409
 
1410
- #: includes/log/exclusions.php:8
1411
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1412
  msgstr "Внимание: Изключване не са в момента зададени да се отчита, по-долу резултатите може да не отразява текущата статистика!"
1413
 
1414
- #: includes/log/exclusions.php:64
1415
  msgid "Exclusions Statistics"
1416
  msgstr "Изключения статистика"
1417
 
1418
- #: includes/functions/functions.php:959
1419
  msgid "10 Days"
1420
  msgstr "10 дни"
1421
 
1422
- #: includes/functions/functions.php:959
1423
  msgid "20 Days"
1424
  msgstr "20 дни"
1425
 
1426
- #: includes/functions/functions.php:959
1427
  msgid "30 Days"
1428
  msgstr "30 дни"
1429
 
1430
- #: includes/functions/functions.php:959
1431
  msgid "2 Months"
1432
  msgstr "2 месеца"
1433
 
1434
- #: includes/functions/functions.php:959
1435
  msgid "3 Months"
1436
  msgstr "3 месеца"
1437
 
1438
- #: includes/functions/functions.php:959
1439
  msgid "6 Months"
1440
  msgstr "6 месеца"
1441
 
1442
- #: includes/functions/functions.php:959
1443
  msgid "9 Months"
1444
  msgstr "9 месеца"
1445
 
1446
- #: includes/functions/functions.php:959
1447
  msgid "1 Year"
1448
  msgstr "1 година"
1449
 
1450
- #: includes/log/exclusions.php:73
1451
  msgid "Exclusions Statistical Chart"
1452
  msgstr "Изключения статистически диаграма"
1453
 
1454
- #: includes/log/exclusions.php:95
1455
  msgid "Excluded hits in the last"
1456
  msgstr "Изключени хитове през последните"
1457
 
1458
- #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1459
- #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:42
1460
- #: includes/log/widgets/search.php:42
1461
- #: includes/optimization/tabs/wps-optimization-purging.php:208
 
 
1462
  msgid "days"
1463
  msgstr "дни"
1464
 
1465
- #: includes/log/exclusions.php:116
1466
  msgid "Number of excluded hits"
1467
  msgstr "Броя на изключените хитове"
1468
 
1469
- #: includes/log/hit-statistics.php:27
1470
  msgid "Hits Statistics Chart"
1471
  msgstr "Хитове статистика диаграма"
1472
 
1473
- #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:42
 
1474
  msgid "Hits in the last"
1475
  msgstr "Хитове през последните"
1476
 
1477
- #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:63
 
1478
  msgid "Number of visits and visitors"
1479
  msgstr "Броят на посещенията и посетителите"
1480
 
1481
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1482
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:24
1483
- #: includes/log/widgets/summary.php:24
 
 
1484
  msgid "Visit"
1485
  msgstr "Посетете"
1486
 
1487
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1488
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:23
1489
- #: includes/log/widgets/summary.php:23
 
 
1490
  msgid "Visitor"
1491
  msgstr "Посетител"
1492
 
1493
- #: includes/log/last-search.php:65
1494
  msgid "Latest Search Word Statistics"
1495
  msgstr "Последни Търсене дума статистика"
1496
 
1497
- #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1498
- #: includes/log/online.php:50 includes/log/widgets/google.map.php:68
1499
- #: includes/log/widgets/jqv.map.php:55 includes/log/widgets/recent.php:14
1500
- #: includes/log/widgets/words.php:27
 
 
 
1501
  msgid "#hash#"
1502
  msgstr "#hash #"
1503
 
1504
- #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1505
- #: includes/log/online.php:55 includes/log/top-referring.php:112
1506
- #: includes/log/widgets/recent.php:19 includes/log/widgets/words.php:42
1507
- #: includes/settings/tabs/wps-overview-display.php:60
 
 
 
1508
  msgid "Map"
1509
  msgstr "Карта"
1510
 
1511
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1512
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1513
- #: includes/log/top-referring.php:153
 
 
1514
  msgid "Page"
1515
  msgstr "Страница"
1516
 
1517
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1518
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1519
- #: includes/log/top-referring.php:153
 
 
1520
  msgid "From"
1521
  msgstr "От"
1522
 
1523
- #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1524
- #: includes/log/top-referring.php:67 includes/log/top-referring.php:70
1525
- #: includes/optimization/tabs/wps-optimization-purging.php:192 widget.php:296
 
 
 
1526
  msgid "All"
1527
  msgstr "Всички"
1528
 
1529
- #: includes/log/last-visitor.php:68
1530
  msgid "Recent Visitor Statistics"
1531
  msgstr "Последните посетител статистика"
1532
 
1533
- #: includes/log/online.php:11 includes/log/online.php:18
 
1534
  msgid "Online Users"
1535
  msgstr ""
1536
 
1537
- #: includes/log/online.php:75
1538
  msgid "Online for "
1539
  msgstr ""
1540
 
1541
- #: includes/log/page-statistics.php:26
1542
  msgid "Page Trend for Post ID"
1543
  msgstr "Страница тенденция за пост номер"
1544
 
1545
- #: includes/log/page-statistics.php:35
1546
  msgid "Page Trend"
1547
  msgstr "Страница тенденция"
1548
 
1549
- #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
 
1550
  msgid "Search Engine Referral Statistics"
1551
  msgstr "Търсене двигател сезиране статистика"
1552
 
1553
- #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:42
 
1554
  msgid "Search engine referrals in the last"
1555
  msgstr "Търсене двигател референции в последните"
1556
 
1557
- #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:63
 
1558
  msgid "Number of referrals"
1559
  msgstr "Брой препращания"
1560
 
1561
- #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1562
- #: includes/log/widgets/quickstats.php:58
1563
- #: includes/log/widgets/quickstats.php:105 includes/log/widgets/search.php:77
1564
- #: includes/log/widgets/summary.php:58 includes/log/widgets/summary.php:105
 
 
 
1565
  msgid "Total"
1566
  msgstr "Общо"
1567
 
1568
- #: includes/log/top-countries.php:18 includes/log/top-countries.php:27
 
1569
  msgid "Top Countries"
1570
  msgstr "Топ страни"
1571
 
1572
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:9
1573
- #: includes/log/widgets/top.visitors.php:11
 
1574
  msgid "Rank"
1575
  msgstr "Ранг"
1576
 
1577
- #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:10
1578
- #: includes/log/widgets/top.visitors.php:13
 
1579
  msgid "Flag"
1580
  msgstr "Флаг"
1581
 
1582
- #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:11
1583
- #: includes/log/widgets/top.visitors.php:14
 
1584
  msgid "Country"
1585
  msgstr "Страна"
1586
 
1587
- #: includes/log/top-countries.php:34 includes/log/widgets/countries.php:12
 
1588
  msgid "Visitor Count"
1589
  msgstr "Посетител брой"
1590
 
1591
- #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
 
1592
  msgid "Top Pages"
1593
  msgstr "Топ страници"
1594
 
1595
- #: includes/log/top-pages.php:29
1596
  msgid "Top 5 Pages Trends"
1597
  msgstr "Топ 5 страници тенденции"
1598
 
1599
- #: includes/log/top-pages.php:60
1600
  msgid "Top 5 Page Trending Stats"
1601
  msgstr "Топ 5 страница тенденция статистика"
1602
 
1603
- #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
 
1604
  msgid "Number of Hits"
1605
  msgstr "Брой посещения"
1606
 
1607
- #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:13
 
1608
  msgid "No page title found"
1609
  msgstr "Няма намерени заглавието на страницата"
1610
 
1611
- #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:16
1612
- #: includes/optimization/tabs/wps-optimization-historical.php:37
1613
- #: includes/settings/tabs/wps-general.php:122
1614
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
 
 
1615
  msgid "Visits"
1616
  msgstr "Посещения"
1617
 
1618
- #: includes/log/top-referring.php:4
1619
  msgid "To be added soon"
1620
  msgstr "Да бъде добавена скоро"
1621
 
1622
- #: includes/log/top-referring.php:79
1623
  msgid "Referring sites from"
1624
  msgstr "Препращащи сайтове от"
1625
 
1626
- #: includes/log/top-referring.php:137 includes/log/widgets/referring.php:29
 
1627
  msgid "References"
1628
  msgstr "Препратки"
1629
 
1630
- #: includes/log/top-visitors.php:12
1631
  msgid "Top 100 Visitors Today"
1632
  msgstr ""
1633
 
1634
- #: includes/log/log.php:10
1635
  msgid "About WP Statistics Version %s"
1636
  msgstr "За WP Statistics версия %s"
1637
 
1638
- #: includes/log/widgets/about.php:11
1639
  msgid "Website"
1640
  msgstr "Уебсайт"
1641
 
1642
- #: includes/log/widgets/about.php:12
1643
  msgid "Rate and Review"
1644
  msgstr "И преглед"
1645
 
1646
- #: includes/log/widgets/about.php:16
1647
  msgid "More Information"
1648
  msgstr "Повече информация"
1649
 
1650
- #: includes/log/widgets/about.php:25 includes/settings/tabs/wps-about.php:12
 
1651
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1652
  msgstr "Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
1653
 
1654
- #: includes/log/widgets/browsers.php:34
1655
  msgid "Other"
1656
  msgstr "Други"
1657
 
1658
- #: wp-statistics.php:445
1659
  msgid "Today Visitors Map"
1660
  msgstr "Днес посетителите карта"
1661
 
1662
- #: includes/log/widgets/referring.php:30
1663
  msgid "Address"
1664
  msgstr "Адрес"
1665
 
1666
- #: includes/log/widgets/quickstats.php:12 includes/log/widgets/summary.php:12
 
1667
  msgid "User(s) Online"
1668
  msgstr "Потребител(и) онлайн"
1669
 
1670
- #: includes/log/widgets/quickstats.php:28
1671
- #: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
1672
- #: includes/log/widgets/summary.php:80
 
1673
  msgid "Today"
1674
  msgstr "Днес"
1675
 
1676
- #: includes/log/widgets/quickstats.php:34
1677
- #: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
1678
- #: includes/log/widgets/summary.php:81
 
1679
  msgid "Yesterday"
1680
  msgstr "Вчера"
1681
 
1682
- #: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
 
1683
  msgid "Daily Total"
1684
  msgstr "Ежедневно общо"
1685
 
1686
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1687
  msgid "Current Time and Date"
1688
  msgstr "Текущия час и дата"
1689
 
1690
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1691
  msgid "(Adjustment)"
1692
  msgstr "(Корекция)"
1693
 
1694
- #: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
 
1695
  msgid "Date: %s"
1696
  msgstr "Дата: %s"
1697
 
1698
- #: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
 
1699
  msgid "Time: %s"
1700
  msgstr "Време: %s"
1701
 
1702
- #: includes/log/widgets/top.visitors.php:12
1703
- #: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:337
1704
- #: wp-statistics.php:416 wp-statistics.php:514
 
1705
  msgid "Hits"
1706
  msgstr "Посещения"
1707
 
1708
- #: includes/log/widgets/top.visitors.php:15
1709
  msgid "IP"
1710
  msgstr ""
1711
 
1712
- #: includes/log/widgets/top.visitors.php:17
1713
  msgid "Agent"
1714
  msgstr ""
1715
 
1716
- #: includes/log/widgets/top.visitors.php:19
1717
- #: includes/optimization/tabs/wps-optimization-resources.php:291
1718
  msgid "Version"
1719
  msgstr ""
1720
 
1721
- #: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:284
1722
- #: includes/optimization/wps-optimization.php:6
 
 
1723
  msgid "Access denied!"
1724
  msgstr "Отказан достъп!"
1725
 
1726
- #: ajax.php:31
1727
  msgid "%s agent data deleted successfully."
1728
  msgstr "%s агент данни изтрито успешно."
1729
 
1730
- #: ajax.php:34
1731
  msgid "No agent data found to remove!"
1732
  msgstr ""
1733
 
1734
- #: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
 
1735
  msgid "Please select the desired items."
1736
  msgstr "Моля изберете желаните елементи."
1737
 
1738
- #: ajax.php:62
1739
  msgid "%s platform data deleted successfully."
1740
  msgstr "%s платформа данни изтрито успешно."
1741
 
1742
- #: ajax.php:65
1743
  msgid "No platform data found to remove!"
1744
  msgstr ""
1745
 
1746
- #: includes/functions/functions.php:1051
1747
  msgid "%s table data deleted successfully."
1748
  msgstr "%s таблични данни изтрито успешно."
1749
 
1750
- #: includes/functions/functions.php:1055
1751
  msgid "Error, %s not emptied!"
1752
  msgstr "Грешка, %s не се изпразва!"
1753
 
1754
- #: includes/optimization/tabs/wps-optimization-database.php:5
1755
  msgid "Database Setup"
1756
  msgstr "Настройка на база данни"
1757
 
1758
- #: includes/optimization/tabs/wps-optimization-database.php:10
1759
  msgid "Re-run Install"
1760
  msgstr "Изпълнете отново инсталиране"
1761
 
1762
- #: includes/optimization/tabs/wps-optimization-database.php:14
1763
  msgid "Install Now!"
1764
  msgstr "Инсталирай сега!"
1765
 
1766
- #: includes/optimization/tabs/wps-optimization-database.php:15
1767
  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."
1768
  msgstr "Ако по някаква причина вашата инсталация на WP Statistics липсва таблиците в базата данни или други основни елементи, това отново ще изпълни процеса на инсталиране."
1769
 
1770
- #: includes/optimization/tabs/wps-optimization-database.php:20
1771
  msgid "Database Index"
1772
  msgstr "Индекс на база данни"
1773
 
1774
- #: includes/optimization/tabs/wps-optimization-database.php:25
1775
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1776
- #: wp-statistics.php:414 wp-statistics.php:512
1777
  msgid "Countries"
1778
  msgstr "Страни"
1779
 
1780
- #: includes/optimization/tabs/wps-optimization-database.php:42
1781
- #: includes/optimization/tabs/wps-optimization-database.php:74
1782
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1783
- #: includes/optimization/tabs/wps-optimization-updates.php:40
1784
  msgid "Update Now!"
1785
  msgstr "Актуализирай сега!"
1786
 
1787
- #: includes/optimization/tabs/wps-optimization-database.php:43
1788
  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."
1789
  msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата. За да създадете индекса на на по-старите инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху \"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се записи и да добавите към индекса."
1790
 
1791
- #: includes/optimization/tabs/wps-optimization-database.php:44
1792
- #: includes/optimization/tabs/wps-optimization-database.php:108
1793
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1794
  msgstr "Тази операция може да отнеме много време на настанявам с много редове в таблицата на посетителите."
1795
 
1796
- #: includes/optimization/tabs/wps-optimization-database.php:50
1797
  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."
1798
  msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата."
1799
 
1800
- #: includes/optimization/tabs/wps-optimization-database.php:51
1801
- #: includes/optimization/tabs/wps-optimization-database.php:83
1802
- #: includes/optimization/tabs/wps-optimization-database.php:114
1803
  msgid "Congratulations, your installation is already up to date, nothing to do."
1804
  msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
1805
 
1806
- #: includes/optimization/tabs/wps-optimization-export.php:8
1807
- #: includes/optimization/wps-optimization.php:235
1808
  msgid "Export"
1809
  msgstr "Износ"
1810
 
1811
- #: includes/optimization/tabs/wps-optimization-export.php:13
1812
  msgid "Export from"
1813
  msgstr "Износ от"
1814
 
1815
- #: includes/optimization/tabs/wps-optimization-export.php:18
1816
- #: includes/optimization/tabs/wps-optimization-export.php:37
1817
- #: includes/optimization/tabs/wps-optimization-purging.php:185
1818
- #: includes/optimization/tabs/wps-optimization-purging.php:242
1819
- #: includes/optimization/tabs/wps-optimization-purging.php:266
1820
- #: includes/settings/tabs/wps-notifications.php:134
1821
- #: includes/settings/tabs/wps-notifications.php:164
1822
  msgid "Please select"
1823
  msgstr "Моля изберете"
1824
 
1825
- #: includes/optimization/tabs/wps-optimization-export.php:26
1826
  msgid "Select the table for the output file."
1827
  msgstr "Изберете таблицата за изходния файл."
1828
 
1829
- #: includes/optimization/tabs/wps-optimization-export.php:32
1830
  msgid "Export To"
1831
  msgstr "Експортиране в"
1832
 
1833
- #: includes/optimization/tabs/wps-optimization-export.php:42
1834
  msgid "Select the output file type."
1835
  msgstr "Изберете типа на изходния файл."
1836
 
1837
- #: includes/optimization/tabs/wps-optimization-export.php:48
1838
  msgid "Include Header Row"
1839
  msgstr "Включва заглавен ред"
1840
 
1841
- #: includes/optimization/tabs/wps-optimization-export.php:53
1842
  msgid "Include a header row as the first line of the exported file."
1843
  msgstr "Включва заглавен ред на първия ред от експортирания файл."
1844
 
1845
- #: includes/optimization/tabs/wps-optimization-export.php:54
1846
  msgid "Start Now!"
1847
  msgstr "Започнете сега!"
1848
 
1849
- #: includes/optimization/tabs/wps-optimization-historical.php:15
1850
  msgid "Historical Values"
1851
  msgstr ""
1852
 
1853
- #: includes/optimization/tabs/wps-optimization-historical.php:20
1854
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1855
  msgstr ""
1856
 
1857
- #: includes/optimization/tabs/wps-optimization-historical.php:26
1858
- #: includes/settings/tabs/wps-general.php:138
1859
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1860
- #: wp-statistics.php:423 wp-statistics.php:521
 
1861
  msgid "Visitors"
1862
  msgstr "Посетители"
1863
 
1864
- #: includes/optimization/tabs/wps-optimization-historical.php:31
1865
  msgid "Number of historical number of visitors to the site (current value is %s)."
1866
  msgstr ""
1867
 
1868
- #: includes/optimization/tabs/wps-optimization-historical.php:42
1869
  msgid "Number of historical number of visits to the site (current value is %s)."
1870
  msgstr ""
1871
 
1872
- #: includes/optimization/tabs/wps-optimization-historical.php:48
1873
  msgid "Update now!"
1874
  msgstr ""
1875
 
1876
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1877
- #: includes/optimization/tabs/wps-optimization-purging.php:43
1878
- #: includes/optimization/tabs/wps-optimization-purging.php:75
1879
- #: includes/optimization/tabs/wps-optimization-purging.php:107
1880
- #: includes/optimization/tabs/wps-optimization-purging.php:141
1881
  msgid "Are you sure?"
1882
  msgstr "Сигурни ли сте?"
1883
 
1884
- #: includes/optimization/tabs/wps-optimization-purging.php:175
1885
  msgid "Data"
1886
  msgstr "Данни"
1887
 
1888
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1889
  msgid "Empty Table"
1890
  msgstr "Празна таблица"
1891
 
1892
- #: includes/optimization/tabs/wps-optimization-purging.php:194
1893
  msgid "All data table will be lost."
1894
  msgstr "Таблица с всички данни ще бъдат загубени."
1895
 
1896
- #: includes/optimization/tabs/wps-optimization-purging.php:195
1897
  msgid "Clear now!"
1898
  msgstr "Изчистване сега!"
1899
 
1900
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1901
  msgid "Purge records older than"
1902
  msgstr "Изтриване на записи по-стари от"
1903
 
1904
- #: includes/optimization/tabs/wps-optimization-purging.php:209
1905
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1906
  msgstr "Изтрит потребител статистика данни по-стари от определен брой дни. Минималната стойност е 30 дни."
1907
 
1908
- #: includes/optimization/tabs/wps-optimization-purging.php:210
1909
- #: includes/optimization/tabs/wps-optimization-purging.php:225
1910
  msgid "Purge now!"
1911
  msgstr "Чистка сега!"
1912
 
1913
- #: includes/optimization/tabs/wps-optimization-purging.php:232
1914
  msgid "Delete User Agent Types"
1915
  msgstr "Изтриване на потребителски агент типове"
1916
 
1917
- #: includes/optimization/tabs/wps-optimization-purging.php:237
1918
  msgid "Delete Agents"
1919
  msgstr "Изтриване на агенти"
1920
 
1921
- #: includes/optimization/tabs/wps-optimization-purging.php:252
1922
  msgid "All visitor data will be lost for this agent type."
1923
  msgstr "Всички посетител данни ще бъдат загубени за този агент тип."
1924
 
1925
- #: includes/optimization/tabs/wps-optimization-purging.php:253
1926
- #: includes/optimization/tabs/wps-optimization-purging.php:277
1927
  msgid "Delete now!"
1928
  msgstr "Изтриване сега!"
1929
 
1930
- #: includes/optimization/tabs/wps-optimization-purging.php:261
1931
  msgid "Delete Platforms"
1932
  msgstr "Изтриване на платформи"
1933
 
1934
- #: includes/optimization/tabs/wps-optimization-purging.php:276
1935
  msgid "All visitor data will be lost for this platform type."
1936
  msgstr "Всички посетител данни ще бъдат загубени за тази платформа тип."
1937
 
1938
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1939
  msgid "Resources"
1940
  msgstr "Ресурси"
1941
 
1942
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1943
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1944
  msgid "Memory usage in PHP"
1945
  msgstr "Памет отнасяне в PHP"
1946
 
1947
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1948
  msgid "Byte"
1949
  msgstr "Байт"
1950
 
1951
- #: includes/optimization/tabs/wps-optimization-resources.php:33
1952
  msgid "PHP Memory Limit"
1953
  msgstr "PHP памет граница"
1954
 
1955
- #: includes/optimization/tabs/wps-optimization-resources.php:38
1956
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1957
  msgstr "Памет граница скрипт е разрешено да се консумират, определени в php.ini."
1958
 
1959
- #: includes/optimization/tabs/wps-optimization-resources.php:44
1960
- #: includes/optimization/tabs/wps-optimization-resources.php:55
1961
- #: includes/optimization/tabs/wps-optimization-resources.php:66
1962
- #: includes/optimization/tabs/wps-optimization-resources.php:77
1963
- #: includes/optimization/tabs/wps-optimization-resources.php:88
1964
- #: includes/optimization/tabs/wps-optimization-resources.php:99
1965
- #: includes/optimization/tabs/wps-optimization-resources.php:110
1966
  msgid "Number of rows in the %s table"
1967
  msgstr "Брой редове в таблицата на %s"
1968
 
1969
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1970
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1971
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1972
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1973
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1974
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1975
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1976
  msgid "Row"
1977
  msgstr "Ред"
1978
 
1979
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1980
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1981
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1982
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1983
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1984
- #: includes/optimization/tabs/wps-optimization-resources.php:104
1985
- #: includes/optimization/tabs/wps-optimization-resources.php:115
1986
  msgid "Number of rows"
1987
  msgstr "Брой редове"
1988
 
1989
- #: includes/optimization/tabs/wps-optimization-resources.php:120
1990
  msgid "Version Info"
1991
  msgstr "Информация за версията"
1992
 
1993
- #: includes/optimization/tabs/wps-optimization-resources.php:125
1994
  msgid "WP Statistics Version"
1995
  msgstr "Статистика на WP версия"
1996
 
1997
- #: includes/optimization/tabs/wps-optimization-resources.php:130
1998
  msgid "The WP Statistics version you are running."
1999
  msgstr "Версията на WP Statistics, която изпълнявате."
2000
 
2001
- #: includes/optimization/tabs/wps-optimization-resources.php:136
2002
  msgid "PHP Version"
2003
  msgstr "PHP версия"
2004
 
2005
- #: includes/optimization/tabs/wps-optimization-resources.php:141
2006
  msgid "The PHP version you are running."
2007
  msgstr "Версията на PHP, която изпълнявате."
2008
 
2009
- #: includes/optimization/tabs/wps-optimization-resources.php:147
2010
  msgid "PHP Safe Mode"
2011
  msgstr "PHP безопасен режим"
2012
 
2013
- #: includes/optimization/tabs/wps-optimization-resources.php:152
2014
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2015
  msgstr "Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
2016
 
2017
- #: includes/optimization/tabs/wps-optimization-resources.php:158
2018
  msgid "jQuery Version"
2019
  msgstr "jQuery версия"
2020
 
2021
- #: includes/optimization/tabs/wps-optimization-resources.php:163
2022
  msgid "The jQuery version you are running."
2023
  msgstr "JQuery версия, която изпълнявате."
2024
 
2025
- #: includes/optimization/tabs/wps-optimization-resources.php:169
2026
  msgid "cURL Version"
2027
  msgstr "Навийте версия"
2028
 
2029
- #: includes/optimization/tabs/wps-optimization-resources.php:173
2030
  msgid "cURL not installed"
2031
  msgstr "Навийте не е инсталиран"
2032
 
2033
- #: includes/optimization/tabs/wps-optimization-resources.php:174
2034
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2035
  msgstr "PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
2036
 
2037
- #: includes/optimization/tabs/wps-optimization-resources.php:180
2038
- msgid "BC Math"
2039
- msgstr "Математика ПР.н.е."
2040
-
2041
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2042
  msgid "Installed"
2043
  msgstr "Инсталирани"
2044
 
2045
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2046
  msgid "Not installed"
2047
  msgstr "Не е инсталиран"
2048
 
2049
- #: includes/optimization/tabs/wps-optimization-resources.php:185
2050
- 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."
2051
- msgstr "Ако PHP ПР.н.е математика разширението е инсталирано. ПР.н.е математика вече не е необходима за GeoIP код и е изброени тук само с исторически причини."
2052
-
2053
- #: includes/optimization/tabs/wps-optimization-resources.php:190
2054
  msgid "File Info"
2055
  msgstr "Инфо за файла"
2056
 
2057
- #: includes/optimization/tabs/wps-optimization-resources.php:195
2058
  msgid "GeoIP Database"
2059
  msgstr "GeoIP база данни"
2060
 
2061
- #: includes/optimization/tabs/wps-optimization-resources.php:204
2062
  msgid "Database file does not exist."
2063
  msgstr "Файл от база данни не съществува."
2064
 
2065
- #: includes/optimization/tabs/wps-optimization-resources.php:206
2066
- #: includes/optimization/tabs/wps-optimization-resources.php:225
2067
- #: includes/optimization/tabs/wps-optimization-resources.php:244
2068
  msgid ", created on "
2069
  msgstr ", създаден на "
2070
 
2071
- #: includes/optimization/tabs/wps-optimization-resources.php:208
2072
  msgid "The file size and date of the GeoIP database."
2073
  msgstr "Размера на файла и датата на GeoIP базата данни."
2074
 
2075
- #: includes/optimization/tabs/wps-optimization-resources.php:214
2076
  msgid "browscap.ini File"
2077
  msgstr "browscap.ini файл"
2078
 
2079
- #: includes/optimization/tabs/wps-optimization-resources.php:223
2080
  msgid "browscap.ini file does not exist."
2081
  msgstr "browscap.ini файл не съществува."
2082
 
2083
- #: includes/optimization/tabs/wps-optimization-resources.php:227
2084
  msgid "The file size and date of the browscap.ini file."
2085
  msgstr "Размера на файла и датата на файла browscap.ini."
2086
 
2087
- #: includes/optimization/tabs/wps-optimization-resources.php:233
2088
  msgid "browscap Cache File"
2089
  msgstr "browscap кеш файл"
2090
 
2091
- #: includes/optimization/tabs/wps-optimization-resources.php:242
2092
  msgid "browscap cache file does not exist."
2093
  msgstr "browscap кеш файл не съществува."
2094
 
2095
- #: includes/optimization/tabs/wps-optimization-resources.php:246
2096
  msgid "The file size and date of the browscap cache file."
2097
  msgstr "Размера на файла и датата на кеш файла на browscap."
2098
 
2099
- #: includes/optimization/tabs/wps-optimization-resources.php:251
2100
  msgid "Client Info"
2101
  msgstr "Информация за клиента"
2102
 
2103
- #: includes/optimization/tabs/wps-optimization-resources.php:256
2104
  msgid "Client IP"
2105
  msgstr "Клиент IP"
2106
 
2107
- #: includes/optimization/tabs/wps-optimization-resources.php:261
2108
  msgid "The client IP address."
2109
  msgstr "IP адреса на клиента."
2110
 
2111
- #: includes/optimization/tabs/wps-optimization-resources.php:267
2112
  msgid "User Agent"
2113
  msgstr "Потребителски агент"
2114
 
2115
- #: includes/optimization/tabs/wps-optimization-resources.php:272
2116
  msgid "The client user agent string."
2117
  msgstr "Клиент потребител фактор канап."
2118
 
2119
- #: includes/optimization/tabs/wps-optimization-resources.php:278
2120
  msgid "Browser"
2121
  msgstr ""
2122
 
2123
- #: includes/optimization/tabs/wps-optimization-resources.php:285
2124
  msgid "The detected client browser."
2125
  msgstr ""
2126
 
2127
- #: includes/optimization/tabs/wps-optimization-resources.php:296
2128
  msgid "The detected client browser version."
2129
  msgstr ""
2130
 
2131
- #: includes/optimization/tabs/wps-optimization-resources.php:307
2132
  msgid "The detected client platform."
2133
  msgstr ""
2134
 
2135
- #: includes/optimization/tabs/wps-optimization-updates.php:4
2136
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2137
  msgstr "Това ще замести всички IP адреси в базата данни с хашиш стойности и не може да се отмени, сигурен ли сте?"
2138
 
2139
- #: includes/optimization/tabs/wps-optimization-updates.php:16
2140
  msgid "GeoIP Options"
2141
  msgstr "GeoIP опции"
2142
 
2143
- #: includes/optimization/tabs/wps-optimization-updates.php:26
2144
  msgid "Updates any unknown location data in the database, this may take a while"
2145
  msgstr "Актуализира неизвестно местоположение данни в базата данни, това може да отнеме известно време"
2146
 
2147
- #: includes/optimization/tabs/wps-optimization-updates.php:31
2148
- #: includes/settings/tabs/wps-general.php:66
2149
  msgid "IP Addresses"
2150
  msgstr "IP адреси"
2151
 
2152
- #: includes/optimization/tabs/wps-optimization-updates.php:36
2153
- #: includes/settings/tabs/wps-general.php:71
2154
  msgid "Hash IP Addresses"
2155
  msgstr "Хеш IP адреси"
2156
 
2157
- #: includes/optimization/tabs/wps-optimization-updates.php:41
2158
  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"
2159
  msgstr "Замени IP адреси в базата данни с хашиш стойности, вие няма да можете да възстановите IP адресите в бъдеще да попълните местоположението информация след това и това може да отнеме известно време"
2160
 
2161
- #: includes/optimization/wps-optimization.php:43
2162
  msgid "IP Addresses replaced with hash values."
2163
  msgstr "IP адреси се заменят с хеш стойности."
2164
 
2165
- #: includes/optimization/wps-optimization.php:51
2166
  msgid "Install routine complete."
2167
  msgstr "Инсталиране на ежедневието пълна."
2168
 
2169
- #: includes/optimization/wps-optimization.php:234
2170
  msgid "Resources/Information"
2171
  msgstr "Ресурси/информация"
2172
 
2173
- #: includes/optimization/wps-optimization.php:236
2174
  msgid "Purging"
2175
  msgstr "Прочистване"
2176
 
2177
- #: includes/optimization/wps-optimization.php:237
2178
  msgid "Database"
2179
  msgstr "База данни"
2180
 
2181
- #: includes/optimization/wps-optimization.php:238
2182
  msgid "Updates"
2183
  msgstr "Актуализации"
2184
 
2185
- #: includes/optimization/wps-optimization.php:239
2186
  msgid "Historical"
2187
  msgstr ""
2188
 
2189
- #: includes/settings/tabs/wps-about.php:8
2190
  msgid "WP Statistics V%s"
2191
  msgstr "WP Statistics V %s"
2192
 
2193
- #: includes/settings/tabs/wps-about.php:28
2194
  msgid "Visit Us Online"
2195
  msgstr "Посетете ни онлайн"
2196
 
2197
- #: includes/settings/tabs/wps-about.php:32
2198
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2199
  msgstr "Елате ни голям нов %s и поддържа актуална с последните новини за WP Statistics."
2200
 
2201
- #: includes/settings/tabs/wps-about.php:32
2202
  msgid "website"
2203
  msgstr "уебсайт"
2204
 
2205
- #: includes/settings/tabs/wps-about.php:36
2206
  msgid "Rate and Review at WordPress.org"
2207
  msgstr "И преглед в WordPress.org"
2208
 
2209
- #: includes/settings/tabs/wps-about.php:40
2210
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2211
  msgstr "Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
2212
 
2213
- #: includes/settings/tabs/wps-about.php:40
2214
  msgid "rating and review"
2215
  msgstr "Оценка и преглед"
2216
 
2217
- #: includes/settings/tabs/wps-about.php:40
2218
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2219
  msgstr "над в WordPress.org. Вашето мнение е много оценявам!"
2220
 
2221
- #: includes/settings/tabs/wps-about.php:44
2222
  msgid "Translations"
2223
  msgstr "Преводи"
2224
 
2225
- #: includes/settings/tabs/wps-about.php:48
2226
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2227
  msgstr "WP Statistics подкрепя интернационализацията и ние насърчаваме потребителите да представят преводи, моля посетете нашия %s да видите текущото състояние и %s, ако искате да помогне."
2228
 
2229
- #: includes/settings/tabs/wps-about.php:48
2230
  msgid "translation collaboration site"
2231
  msgstr "сайт за съвместна работа на превод"
2232
 
2233
- #: includes/settings/tabs/wps-about.php:48
2234
  msgid "drop us a line"
2235
  msgstr "пишете ни линия"
2236
 
2237
- #: includes/settings/tabs/wps-about.php:52
2238
  msgid "Support"
2239
  msgstr "Поддръжка"
2240
 
2241
- #: includes/settings/tabs/wps-about.php:57
2242
  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:"
2243
  msgstr "Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
2244
 
2245
- #: includes/settings/tabs/wps-about.php:60
2246
- #: includes/settings/tabs/wps-about.php:61
2247
  msgid "Have you read the %s?"
2248
  msgstr "Чели ли сте на %s?"
2249
 
2250
- #: includes/settings/tabs/wps-about.php:60
2251
  msgid "FAQs"
2252
  msgstr "Често задавани въпроси"
2253
 
2254
- #: includes/settings/tabs/wps-about.php:61
2255
  msgid "manual"
2256
  msgstr "ръководство"
2257
 
2258
- #: includes/settings/tabs/wps-about.php:62
2259
  msgid "Have you search the %s for a similar issue?"
2260
  msgstr "Имате ли търси %s за подобен проблем?"
2261
 
2262
- #: includes/settings/tabs/wps-about.php:62
2263
  msgid "support forum"
2264
  msgstr "подкрепа форум"
2265
 
2266
- #: includes/settings/tabs/wps-about.php:63
2267
  msgid "Have you search the Internet for any error messages you are receiving?"
2268
  msgstr "Има ли търсене в интернет за всички съобщения за грешка, получавате?"
2269
 
2270
- #: includes/settings/tabs/wps-about.php:64
2271
  msgid "Make sure you have access to your PHP error logs."
2272
  msgstr ""
2273
 
2274
- #: includes/settings/tabs/wps-about.php:67
2275
  msgid "And a few things to double-check:"
2276
  msgstr "И няколко неща, за да проверете отново:"
2277
 
2278
- #: includes/settings/tabs/wps-about.php:70
2279
  msgid "How's your memory_limit in php.ini?"
2280
  msgstr "Как е вашата memory_limit в php.ini?"
2281
 
2282
- #: includes/settings/tabs/wps-about.php:71
2283
  msgid "Have you tried disabling any other plugins you may have installed?"
2284
  msgstr "Били ли сте опитвали Деактивирането на всички други плъгини, които сте инсталирали?"
2285
 
2286
- #: includes/settings/tabs/wps-about.php:72
2287
  msgid "Have you tried using the default WordPress theme?"
2288
  msgstr "Били ли сте опитвали използване на подразбиране WordPress тема?"
2289
 
2290
- #: includes/settings/tabs/wps-about.php:73
2291
  msgid "Have you double checked the plugin settings?"
2292
  msgstr "Имате ли двойно проверени настройките на плъгин?"
2293
 
2294
- #: includes/settings/tabs/wps-about.php:74
2295
  msgid "Do you have all the required PHP extensions installed?"
2296
  msgstr "Имате ли всички необходими PHP разширения инсталирани?"
2297
 
2298
- #: includes/settings/tabs/wps-about.php:75
2299
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2300
  msgstr "Получавате ли празни или непълни страница показва в браузъра си? Видя ли преглед на източника на страницата и проверете за фатални грешки?"
2301
 
2302
- #: includes/settings/tabs/wps-about.php:76
2303
  msgid "Have you checked your PHP and web server error logs?"
2304
  msgstr "Проверихте ли вашия PHP и уеб сървър грешка логове?"
2305
 
2306
- #: includes/settings/tabs/wps-about.php:79
2307
  msgid "Still not having any luck?"
2308
  msgstr "Все още не е късм?"
2309
 
2310
- #: includes/settings/tabs/wps-about.php:79
2311
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2312
  msgstr "След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
2313
 
2314
- #: includes/settings/tabs/wps-about.php:79
2315
  msgid "WordPress.org support forum"
2316
  msgstr "WordPress.org подкрепа форум"
2317
 
2318
- #: includes/settings/tabs/wps-about.php:83
2319
  msgid "Alternatively %s support is available as well."
2320
  msgstr "Алтернативно %s поддръжка е наличен."
2321
 
2322
- #: includes/settings/tabs/wps-about.php:83
2323
  msgid "Farsi"
2324
  msgstr "Фарси"
2325
 
2326
- #: includes/settings/tabs/wps-exclusions.php:21
2327
  msgid "WP Statistics Honey Pot Page"
2328
  msgstr ""
2329
 
2330
- #: includes/settings/tabs/wps-exclusions.php:22
2331
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2332
  msgstr ""
2333
 
2334
- #: includes/settings/tabs/wps-access-level.php:23
2335
- #: includes/settings/wps-settings.php:103
2336
  msgid "Access Levels"
2337
  msgstr "Нива на достъп"
2338
 
2339
- #: includes/settings/tabs/wps-access-level.php:52
2340
  msgid "Required user level to view WP Statistics"
2341
  msgstr "Изисква ниво на потребител за да видите статистика за WP"
2342
 
2343
- #: includes/settings/tabs/wps-access-level.php:67
2344
  msgid "Required user level to manage WP Statistics"
2345
  msgstr "Изисква потребителско ниво, за да управлявате WP Statistics"
2346
 
2347
- #: includes/settings/tabs/wps-access-level.php:75
2348
  msgid "See the %s for details on capability levels."
2349
  msgstr "Вижте %s за повече информация на способности."
2350
 
2351
- #: includes/settings/tabs/wps-access-level.php:75
2352
  msgid "WordPress Roles and Capabilities page"
2353
  msgstr "Страница WordPress роли и възможности"
2354
 
2355
- #: includes/settings/tabs/wps-access-level.php:76
2356
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2357
  msgstr "Съвет: manage_network = супер администратор мрежа, manage_options = администратор, edit_others_posts = редактор, publish_posts = автор, edit_posts = сътрудник, прочетете = всеки."
2358
 
2359
- #: includes/settings/tabs/wps-access-level.php:77
2360
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2361
  msgstr "Всяка една от горните casscades правата нагоре в конфигурацията по подразбиране на WordPress. Така например избора на publish_posts предоставя правото на автори, редактори, администратори и супер администратори."
2362
 
2363
- #: includes/settings/tabs/wps-access-level.php:78
2364
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2365
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2366
 
2367
- #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2368
- #: includes/settings/wps-settings.php:104 wp-statistics.php:415
2369
- #: wp-statistics.php:513
 
2370
  msgid "Exclusions"
2371
  msgstr "Изключения"
2372
 
2373
- #: includes/settings/tabs/wps-exclusions.php:50
2374
  msgid "Record exclusions"
2375
  msgstr "Запис изключения"
2376
 
2377
- #: includes/settings/tabs/wps-exclusions.php:52
2378
- #: includes/settings/tabs/wps-exclusions.php:106
2379
- #: includes/settings/tabs/wps-exclusions.php:133
2380
- #: includes/settings/tabs/wps-exclusions.php:150
2381
  msgid "Enable"
2382
  msgstr "Разреши"
2383
 
2384
- #: includes/settings/tabs/wps-exclusions.php:53
2385
  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."
2386
  msgstr "Това ще запише всички изключени хитове в отделна таблица с причините, защо е изключен, но никаква друга информация. Това ще генерира много данни, но е полезно, ако искате да видите общия брой на посещения вашия сайт получава, не само действителен потребител посещения."
2387
 
2388
- #: includes/settings/tabs/wps-exclusions.php:58
2389
  msgid "Exclude User Roles"
2390
  msgstr "Изключване на потребителски роли"
2391
 
2392
- #: includes/settings/tabs/wps-exclusions.php:74
2393
- #: includes/settings/tabs/wps-exclusions.php:196
2394
- #: includes/settings/tabs/wps-exclusions.php:203
2395
- #: includes/settings/tabs/wps-exclusions.php:210
2396
- #: includes/settings/tabs/wps-exclusions.php:217
2397
  msgid "Exclude"
2398
  msgstr "Изключи"
2399
 
2400
- #: includes/settings/tabs/wps-exclusions.php:75
2401
  msgid "Exclude %s role from data collection."
2402
  msgstr "%S роля да изключат от събирането на данни."
2403
 
2404
- #: includes/settings/tabs/wps-exclusions.php:81
2405
  msgid "IP/Robot Exclusions"
2406
  msgstr "IP/робот изключвания"
2407
 
2408
- #: includes/settings/tabs/wps-exclusions.php:85
2409
  msgid "Robot list"
2410
  msgstr "Робот списък"
2411
 
2412
- #: includes/settings/tabs/wps-exclusions.php:98
2413
  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."
2414
  msgstr "Списък на думи, (по един на ред) за мач срещу за откриване на роботи. Записите трябва да бъдат най-малко 4 символа или те ще бъдат игнорирани."
2415
 
2416
- #: includes/settings/tabs/wps-exclusions.php:99
2417
  msgid "Reset to Default"
2418
  msgstr "Възстанови по подразбиране"
2419
 
2420
- #: includes/settings/tabs/wps-exclusions.php:104
2421
  msgid "Force robot list update after upgrades"
2422
  msgstr "Сила робот списък актуализация след ъпгрейд"
2423
 
2424
- #: includes/settings/tabs/wps-exclusions.php:107
2425
  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."
2426
  msgstr "Сила списъка на робот, за да се възстанови по подразбиране след актуализация на WP Statistics се провежда. Забележка Ако тази опция е разрешена по потребителски роботи, вие сте добавили към списъка ще бъдат загубени."
2427
 
2428
- #: includes/settings/tabs/wps-exclusions.php:112
2429
  msgid "Robot visit threshold"
2430
  msgstr ""
2431
 
2432
- #: includes/settings/tabs/wps-exclusions.php:115
2433
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2434
  msgstr ""
2435
 
2436
- #: includes/settings/tabs/wps-exclusions.php:120
2437
  msgid "Excluded IP address list"
2438
  msgstr "Изключените IP адресен списък"
2439
 
2440
- #: includes/settings/tabs/wps-exclusions.php:123
2441
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2442
  msgstr "Списък на IP адреси и подмрежа маски (по един на ред) да се изключат от статистиката колекция (192.168.0.0/24 и 192.168.0.0/255.255.255.0 формати се приемат). За да зададете IP адрес само, използвайте подмрежа стойност на 32 или 255.255.255.255."
2443
 
2444
- #: includes/settings/tabs/wps-exclusions.php:124
2445
  msgid "Add 10.0.0.0"
2446
  msgstr "Добави 10.0.0.0"
2447
 
2448
- #: includes/settings/tabs/wps-exclusions.php:125
2449
  msgid "Add 172.16.0.0"
2450
  msgstr "Добави 172.16.0.0"
2451
 
2452
- #: includes/settings/tabs/wps-exclusions.php:126
2453
  msgid "Add 192.168.0.0"
2454
  msgstr "Добави 192.168.0.0"
2455
 
2456
- #: includes/settings/tabs/wps-exclusions.php:131
2457
  msgid "Use honey pot"
2458
  msgstr ""
2459
 
2460
- #: includes/settings/tabs/wps-exclusions.php:134
2461
  msgid "Use a honey pot page to identify robots."
2462
  msgstr ""
2463
 
2464
- #: includes/settings/tabs/wps-exclusions.php:139
2465
  msgid "Honey pot post id"
2466
  msgstr ""
2467
 
2468
- #: includes/settings/tabs/wps-exclusions.php:142
2469
  msgid "The post id to use for the honeypot page."
2470
  msgstr ""
2471
 
2472
- #: includes/settings/tabs/wps-exclusions.php:143
2473
  msgid "Create a new honey pot page"
2474
  msgstr ""
2475
 
2476
- #: includes/settings/tabs/wps-exclusions.php:156
2477
  msgid "GeoIP Exclusions"
2478
  msgstr ""
2479
 
2480
- #: includes/settings/tabs/wps-exclusions.php:160
2481
  msgid "Excluded countries list"
2482
  msgstr ""
2483
 
2484
- #: includes/settings/tabs/wps-exclusions.php:163
2485
  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."
2486
  msgstr ""
2487
 
2488
- #: includes/settings/tabs/wps-exclusions.php:168
2489
  msgid "Included countries list"
2490
  msgstr ""
2491
 
2492
- #: includes/settings/tabs/wps-exclusions.php:171
2493
  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."
2494
  msgstr ""
2495
 
2496
- #: includes/settings/tabs/wps-exclusions.php:176
2497
  msgid "Host Exclusions"
2498
  msgstr ""
2499
 
2500
- #: includes/settings/tabs/wps-exclusions.php:180
2501
  msgid "Excluded hosts list"
2502
  msgstr ""
2503
 
2504
- #: includes/settings/tabs/wps-exclusions.php:183
2505
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2506
  msgstr ""
2507
 
2508
- #: includes/settings/tabs/wps-exclusions.php:185
2509
  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."
2510
  msgstr ""
2511
 
2512
- #: includes/settings/tabs/wps-exclusions.php:190
2513
  msgid "Site URL Exclusions"
2514
  msgstr "Сайт URL изключения"
2515
 
2516
- #: includes/settings/tabs/wps-exclusions.php:194
2517
  msgid "Excluded login page"
2518
  msgstr "Изключените вход страница"
2519
 
2520
- #: includes/settings/tabs/wps-exclusions.php:197
2521
  msgid "Exclude the login page for registering as a hit."
2522
  msgstr "Изключване на страницата за вход за регистриране като хит."
2523
 
2524
- #: includes/settings/tabs/wps-exclusions.php:201
2525
  msgid "Excluded admin pages"
2526
  msgstr "Изключените администратор страници"
2527
 
2528
- #: includes/settings/tabs/wps-exclusions.php:204
2529
  msgid "Exclude the admin pages for registering as a hit."
2530
  msgstr "Изключи администратор страници за регистриране като хит."
2531
 
2532
- #: includes/settings/tabs/wps-exclusions.php:208
2533
  msgid "Excluded RSS feeds"
2534
  msgstr ""
2535
 
2536
- #: includes/settings/tabs/wps-exclusions.php:211
2537
  msgid "Exclude the RSS feeds for registering as a hit."
2538
  msgstr ""
2539
 
2540
- #: includes/settings/tabs/wps-externals.php:162
2541
  msgid "browscap settings"
2542
  msgstr "browscap настройки"
2543
 
2544
- #: includes/settings/tabs/wps-externals.php:167
2545
  msgid "browscap usage"
2546
  msgstr "използване на browscap"
2547
 
2548
- #: includes/settings/tabs/wps-externals.php:52
2549
- #: includes/settings/tabs/wps-externals.php:76
2550
- #: includes/settings/tabs/wps-externals.php:109
2551
- #: includes/settings/tabs/wps-externals.php:172
2552
- #: includes/settings/tabs/wps-externals.php:196
2553
- #: includes/settings/tabs/wps-externals.php:236
2554
- #: includes/settings/tabs/wps-externals.php:260
2555
- #: includes/settings/tabs/wps-general.php:76
2556
- #: includes/settings/tabs/wps-general.php:92
2557
- #: includes/settings/tabs/wps-general.php:116
2558
- #: includes/settings/tabs/wps-general.php:132
2559
- #: includes/settings/tabs/wps-general.php:148
2560
- #: includes/settings/tabs/wps-general.php:160
2561
- #: includes/settings/tabs/wps-general.php:187
2562
- #: includes/settings/tabs/wps-general.php:199
2563
- #: includes/settings/tabs/wps-general.php:214
2564
- #: includes/settings/tabs/wps-general.php:228
2565
- #: includes/settings/tabs/wps-general.php:258
2566
- #: includes/settings/tabs/wps-general.php:270
2567
- #: includes/settings/tabs/wps-general.php:286
2568
- #: includes/settings/tabs/wps-general.php:325
2569
- #: includes/settings/tabs/wps-general.php:341
2570
- #: includes/settings/tabs/wps-maintenance.php:40
2571
- #: includes/settings/tabs/wps-maintenance.php:68
2572
- #: includes/settings/tabs/wps-notifications.php:69
2573
- #: includes/settings/tabs/wps-notifications.php:81
2574
- #: includes/settings/tabs/wps-notifications.php:93
2575
- #: includes/settings/tabs/wps-notifications.php:105
2576
- #: includes/settings/tabs/wps-notifications.php:121
2577
- #: includes/settings/tabs/wps-overview-display.php:34
2578
- #: includes/settings/tabs/wps-overview-display.php:54
2579
- #: includes/settings/tabs/wps-overview-display.php:94
2580
- #: includes/settings/tabs/wps-overview-display.php:106
2581
  msgid "Active"
2582
  msgstr "Активен"
2583
 
2584
- #: includes/settings/tabs/wps-externals.php:173
2585
  msgid "The browscap database will be downloaded and used to detect robots."
2586
  msgstr "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на роботи."
2587
 
2588
- #: includes/settings/tabs/wps-externals.php:179
2589
  msgid "Update browscap Info"
2590
  msgstr "Актуализиране на browscap информация"
2591
 
2592
- #: includes/settings/tabs/wps-externals.php:184
2593
  msgid "Download browscap Database"
2594
  msgstr "Изтегли browscap база данни"
2595
 
2596
- #: includes/settings/tabs/wps-externals.php:65
2597
- #: includes/settings/tabs/wps-externals.php:185
2598
- #: includes/settings/tabs/wps-externals.php:249
2599
  msgid "Save changes on this page to download the update."
2600
  msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
2601
 
2602
- #: includes/settings/tabs/wps-externals.php:191
2603
  msgid "Schedule weekly update of browscap DB"
2604
  msgstr "Планиране на седмична актуализация на browscap DB"
2605
 
2606
- #: includes/settings/tabs/wps-externals.php:79
2607
- #: includes/settings/tabs/wps-externals.php:199
2608
- #: includes/settings/tabs/wps-externals.php:263
2609
  msgid "Next update will be"
2610
  msgstr "Следващата актуализация ще бъде"
2611
 
2612
- #: includes/settings/tabs/wps-externals.php:215
2613
  msgid "Download of the browscap database will be scheduled for once a week."
2614
  msgstr "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
2615
 
2616
- #: includes/settings/tabs/wps-general.php:50
2617
  msgid "This will delete the manual when you save the settings, are you sure?"
2618
  msgstr "Това ще изтрие ръчно, когато запишете настройките, сигурен ли сте?"
2619
 
2620
- #: includes/settings/tabs/wps-general.php:77
2621
  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."
2622
  msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
2623
 
2624
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
 
2625
  msgid "Users Online"
2626
  msgstr "Потребители онлайн"
2627
 
2628
- #: includes/settings/tabs/wps-general.php:87
2629
  msgid "User online"
2630
  msgstr "Потребител онлайн"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0.2\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: wp-statistics/ajax.php:220
14
+ msgid "No matching widget found!"
15
+ msgstr ""
16
+
17
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
18
+ msgid "Zlib gzopen()"
19
+ msgstr ""
20
+
21
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
22
+ msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
23
+ msgstr ""
24
+
25
+ #: wp-statistics/wps-updates.php:16
26
+ msgid "Error the download_url() or gzopen() functions do not exist!"
27
+ msgstr ""
28
+
29
+ #: wp-statistics/wps-updates.php:45
30
+ msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
31
+ msgstr ""
32
+
33
+ #: wp-statistics/wp-statistics.php:95
34
  msgid "&#151; You are running an unsupported version of PHP."
35
  msgstr ""
36
 
37
+ #: wp-statistics/wp-statistics.php:95
38
  msgid "WP Statistics Disabled"
39
  msgstr ""
40
 
41
+ #: wp-statistics/wp-statistics.php:99
42
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
43
  msgstr ""
44
 
45
+ #: wp-statistics/wp-statistics.php:101
46
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
47
  msgstr ""
48
 
49
+ #: wp-statistics/ajax.php:299
50
  msgid "ERROR: Widget not found!"
51
  msgstr ""
52
 
53
+ #: wp-statistics/dashboard.php:111 wp-statistics/editor.php:66
54
+ #: wp-statistics/includes/log/log.php:20
55
  msgid "Loading..."
56
  msgstr ""
57
 
58
+ #: wp-statistics/dashboard.php:129 wp-statistics/editor.php:84
59
+ #: wp-statistics/includes/log/log.php:2
60
  msgid "Reloading..."
61
  msgstr ""
62
 
63
+ #: wp-statistics/includes/log/top-visitors.php:41
64
+ #: wp-statistics/wp-statistics.php:447
65
  msgid "Top Visitors"
66
  msgstr ""
67
 
68
+ #: wp-statistics/wp-statistics.php:206
69
  msgid "optimization page"
70
  msgstr ""
71
 
72
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
73
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
74
  msgid "Enabled"
75
  msgstr ""
76
 
77
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
78
  msgid "Purge Old Data Daily"
79
  msgstr ""
80
 
81
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
82
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
83
  msgstr ""
84
 
85
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
86
  msgid "Purge data older than"
87
  msgstr ""
88
 
89
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
90
  msgid "Purge High Hit Count Visitors Daily"
91
  msgstr ""
92
 
93
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
94
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
95
  msgstr ""
96
 
97
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
98
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
99
  msgstr ""
100
 
101
+ #: wp-statistics/shortcode.php:184
102
  msgid "The post/page id to get page statistics on."
103
  msgstr ""
104
 
105
+ #: wp-statistics/shortcode.php:181
106
  msgid "Post/Page ID"
107
  msgstr ""
108
 
109
+ #: wp-statistics/includes/functions/functions.php:435
110
  msgid "Ask.com"
111
  msgstr ""
112
 
113
+ #: wp-statistics/shortcode.php:158
114
  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."
115
  msgstr ""
116
 
117
+ #: wp-statistics/wp-statistics.php:180
118
  msgid "visitor tracking"
119
  msgstr ""
120
 
121
+ #: wp-statistics/wp-statistics.php:181
122
  msgid "geoip collection"
123
  msgstr ""
124
 
125
+ #: wp-statistics/wp-statistics.php:197
126
  msgid "visit database index"
127
  msgstr ""
128
 
129
+ #: wp-statistics/wp-statistics.php:206
130
  msgid "Database updates are required, please go to %s and update the following: %s"
131
  msgstr ""
132
 
133
+ #: wp-statistics/wp-statistics.php:197
134
  msgid "countries database index"
135
  msgstr ""
136
 
137
+ #: wp-statistics/wp-statistics.php:190
138
  msgid "search table"
139
  msgstr ""
140
 
141
+ #: wp-statistics/wp-statistics.php:184
142
  msgid "settings page"
143
  msgstr ""
144
 
145
+ #: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
146
  msgid ","
147
  msgstr ""
148
 
149
+ #: wp-statistics/wp-statistics.php:184
150
  msgid "The following features are disabled, please go to %s and enable them: %s"
151
  msgstr ""
152
 
153
+ #: wp-statistics/wp-statistics.php:179
154
  msgid "hit tracking"
155
  msgstr ""
156
 
157
+ #: wp-statistics/wp-statistics.php:178
158
  msgid "online user tracking"
159
  msgstr ""
160
 
161
+ #: wp-statistics/wp-statistics.php:775
162
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
163
  msgstr ""
164
 
165
+ #: wp-statistics/includes/optimization/wps-optimization.php:196
166
  msgid "Search table conversion complete, %d rows added."
167
  msgstr ""
168
 
169
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
170
  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."
171
  msgstr ""
172
 
173
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
174
  msgid "Search Table"
175
  msgstr ""
176
 
177
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
178
  msgid "Convert"
179
  msgstr ""
180
 
181
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
182
  msgid "Convert Now!"
183
  msgstr ""
184
 
185
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
186
  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."
187
  msgstr ""
188
 
189
+ #: wp-statistics/includes/log/exclusions.php:24
190
  msgid "Referrer Spam"
191
  msgstr ""
192
 
193
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:279
194
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
195
  msgstr ""
196
 
197
+ #: wp-statistics/includes/settings/wps-settings.php:105
198
  msgid "Externals"
199
  msgstr ""
200
 
201
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:220
202
  msgid "Piwik Referrer Spam Blacklist settings"
203
  msgstr ""
204
 
205
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:255
206
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
207
  msgstr ""
208
 
209
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:248
210
  msgid "Download Piwik Referrer Spam Blacklist Database"
211
  msgstr ""
212
 
213
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:243
214
  msgid "Update Piwik Referrer Spam Blacklist Info"
215
  msgstr ""
216
 
217
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:237
218
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
219
  msgstr ""
220
 
221
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:225
222
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
223
  msgstr ""
224
 
225
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:231
226
  msgid "Piwik Referrer Spam Blacklist usage"
227
  msgstr ""
228
 
229
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
230
  msgid "Treat corrupt browser info as a bot"
231
  msgstr ""
232
 
233
+ #: wp-statistics/includes/log/exclusions.php:24
234
  msgid "404 Pages"
235
  msgstr ""
236
 
237
+ #: wp-statistics/includes/log/top-visitors.php:26
238
  msgid "Date"
239
  msgstr ""
240
 
241
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
242
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
243
  msgstr ""
244
 
245
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
246
  msgid "Excluded 404 pages"
247
  msgstr ""
248
 
249
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
250
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
251
  msgstr ""
252
 
253
+ #: wp-statistics/wps-updates.php:37
254
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
255
  msgstr ""
256
 
257
+ #: wp-statistics/includes/settings/tabs/wps-general.php:281
258
  msgid "Add page title to empty search words"
259
  msgstr ""
260
 
261
+ #: wp-statistics/includes/settings/tabs/wps-general.php:287
262
  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."
263
  msgstr ""
264
 
265
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
266
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
267
  msgid "Purge visitors with more than"
268
  msgstr ""
269
 
270
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
271
  msgid "hits"
272
  msgstr ""
273
 
274
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
275
  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."
276
  msgstr ""
277
 
278
+ #: wp-statistics/includes/functions/purge-hits.php:28
279
  msgid "No visitors found to purge."
280
  msgstr ""
281
 
282
+ #: wp-statistics/includes/functions/purge-hits.php:25
283
  msgid "%s records purged successfully."
284
  msgstr ""
285
 
286
+ #: wp-statistics/ajax.php:178
287
+ #: wp-statistics/includes/functions/purge-hits.php:32
288
  msgid "Number of hits must be greater than or equal to 10!"
289
  msgstr ""
290
 
291
+ #: wp-statistics/shortcode.php:141
292
  msgid "Page Visits"
293
  msgstr ""
294
 
295
+ #: wp-statistics/shortcode.php:144
296
  msgid "Page Count"
297
  msgstr ""
298
 
299
+ #: wp-statistics/shortcode.php:145
300
  msgid "Comment Count"
301
  msgstr ""
302
 
303
+ #: wp-statistics/shortcode.php:146
304
  msgid "Spam Count"
305
  msgstr ""
306
 
307
+ #: wp-statistics/shortcode.php:147
308
  msgid "User Count"
309
  msgstr ""
310
 
311
+ #: wp-statistics/shortcode.php:148
312
  msgid "Post Average"
313
  msgstr ""
314
 
315
+ #: wp-statistics/shortcode.php:149
316
  msgid "Comment Average"
317
  msgstr ""
318
 
319
+ #: wp-statistics/shortcode.php:150
320
  msgid "User Average"
321
  msgstr ""
322
 
323
+ #: wp-statistics/shortcode.php:162
324
  msgid "Search Provider"
325
  msgstr ""
326
 
327
+ #: wp-statistics/shortcode.php:165
328
  msgid "The search provider to get statistics on."
329
  msgstr ""
330
 
331
+ #: wp-statistics/shortcode.php:169
332
  msgid "Number Format"
333
  msgstr ""
334
 
335
+ #: wp-statistics/shortcode.php:172
336
  msgid "The format to display numbers in: i18n, english, none."
337
  msgstr ""
338
 
339
+ #: wp-statistics/shortcode.php:176
340
  msgid "English"
341
  msgstr ""
342
 
343
+ #: wp-statistics/shortcode.php:177
344
  msgid "International"
345
  msgstr ""
346
 
347
+ #: wp-statistics/includes/log/exclusions.php:191
348
+ #: wp-statistics/includes/log/hit-statistics.php:164
349
  msgid "Hits Statistics Summary"
350
  msgstr ""
351
 
352
+ #: wp-statistics/includes/log/exclusions.php:201
353
+ #: wp-statistics/includes/log/hit-statistics.php:175
354
  msgid "Chart Total"
355
  msgstr ""
356
 
357
+ #: wp-statistics/includes/log/exclusions.php:206
358
+ #: wp-statistics/includes/log/hit-statistics.php:181
359
  msgid "All Time Total"
360
  msgstr ""
361
 
362
+ #: wp-statistics/includes/log/log.php:6
363
  msgid "Have you thought about donating to WP Statistics?"
364
  msgstr ""
365
 
366
+ #: wp-statistics/includes/settings/tabs/wps-about.php:20
367
+ #: wp-statistics/wp-statistics.php:429
368
  msgid "Donate"
369
  msgstr ""
370
 
371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
372
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
373
  msgstr ""
374
 
375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
376
  msgid "donation"
377
  msgstr ""
378
 
379
+ #: wp-statistics/includes/log/log.php:6
380
  msgid "Donate Now!"
381
  msgstr ""
382
 
383
+ #: wp-statistics/includes/log/log.php:6
384
  msgid "Close"
385
  msgstr ""
386
 
387
+ #: wp-statistics/shortcode.php:135
388
  msgid "Select the statistic you wish to display."
389
  msgstr ""
390
 
391
+ #: wp-statistics/shortcode.php:132
392
  msgid "Statistic"
393
  msgstr ""
394
 
395
+ #: wp-statistics/shortcode.php:143
396
  msgid "Post Count"
397
  msgstr ""
398
 
399
+ #: wp-statistics/shortcode.php:155
400
  msgid "Time Frame"
401
  msgstr ""
402
 
403
+ #: wp-statistics/includes/functions/functions.php:1032
404
  msgid "to"
405
  msgstr ""
406
 
407
+ #: wp-statistics/includes/functions/functions.php:1032
408
+ #: wp-statistics/includes/log/top-visitors.php:29
409
  msgid "Go"
410
  msgstr ""
411
 
412
+ #: wp-statistics/includes/log/top-pages.php:102
413
  msgid "Rank #5"
414
  msgstr ""
415
 
416
+ #: wp-statistics/includes/log/top-pages.php:102
417
  msgid "Rank #4"
418
  msgstr ""
419
 
420
+ #: wp-statistics/includes/log/top-pages.php:102
421
  msgid "Rank #3"
422
  msgstr ""
423
 
424
+ #: wp-statistics/includes/log/top-pages.php:102
425
  msgid "Rank #1"
426
  msgstr ""
427
 
428
+ #: wp-statistics/includes/log/top-pages.php:102
429
  msgid "Rank #2"
430
  msgstr ""
431
 
432
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
433
  msgid "Visits Table"
434
  msgstr ""
435
 
436
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
437
  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."
438
  msgstr ""
439
 
440
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
441
  msgid "This operation could take a long time on installs with many rows in the visits table."
442
  msgstr ""
443
 
444
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
445
  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."
446
  msgstr ""
447
 
448
+ #: wp-statistics/includes/log/last-visitor.php:68
449
  msgid "Filtered by"
450
  msgstr ""
451
 
452
+ #: wp-statistics/includes/functions/functions.php:1026
453
+ #: wp-statistics/includes/functions/functions.php:1029
454
  msgid "Range"
455
  msgstr ""
456
 
457
+ #: wp-statistics/includes/functions/functions.php:1032
458
+ #: wp-statistics/includes/log/top-visitors.php:29
459
  msgid "MM/DD/YYYY"
460
  msgstr "MM/DD/YYYY"
461
 
462
+ #: wp-statistics/includes/settings/tabs/wps-general.php:342
463
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
464
  msgstr ""
465
 
466
+ #: wp-statistics/includes/settings/tabs/wps-general.php:336
467
  msgid "Force English"
468
  msgstr ""
469
 
470
+ #: wp-statistics/includes/settings/tabs/wps-general.php:331
471
  msgid "Languages"
472
  msgstr ""
473
 
474
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
475
  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."
476
  msgstr ""
477
 
478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
479
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
480
  msgstr ""
481
 
482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
483
  msgid "Excluded URLs list"
484
  msgstr ""
485
 
486
+ #: wp-statistics/includes/log/exclusions.php:24
487
  msgid "Excluded URL"
488
  msgstr ""
489
 
490
+ #: wp-statistics/includes/log/widgets/quickstats.php:52
491
+ #: wp-statistics/includes/log/widgets/summary.php:52
492
  msgid "Last 365 Days (Year)"
493
  msgstr ""
494
 
495
+ #: wp-statistics/includes/log/widgets/quickstats.php:46
496
+ #: wp-statistics/includes/log/widgets/summary.php:46
497
  msgid "Last 30 Days (Month)"
498
  msgstr ""
499
 
500
+ #: wp-statistics/includes/log/widgets/quickstats.php:40
501
+ #: wp-statistics/includes/log/widgets/summary.php:40
502
  msgid "Last 7 Days (Week)"
503
  msgstr ""
504
 
505
+ #: wp-statistics/includes/functions/functions.php:441
506
  msgid "Yahoo!"
507
  msgstr ""
508
 
509
+ #: wp-statistics/includes/functions/functions.php:442
510
  msgid "Yandex"
511
  msgstr ""
512
 
513
+ #: wp-statistics/includes/functions/functions.php:438
514
  msgid "clearch.org"
515
  msgstr ""
516
 
517
+ #: wp-statistics/includes/functions/functions.php:439
518
  msgid "DuckDuckGo"
519
  msgstr ""
520
 
521
+ #: wp-statistics/includes/functions/functions.php:437
522
  msgid "Bing"
523
  msgstr ""
524
 
525
+ #: wp-statistics/includes/functions/functions.php:436
526
  msgid "Baidu"
527
  msgstr ""
528
 
529
+ #: wp-statistics/includes/log/exclusions.php:24
 
 
 
 
530
  msgid "Feeds"
531
  msgstr ""
532
 
533
+ #: wp-statistics/includes/log/exclusions.php:24
534
  msgid "User Role"
535
  msgstr ""
536
 
537
+ #: wp-statistics/includes/log/exclusions.php:24
538
  msgid "Login Page"
539
  msgstr ""
540
 
541
+ #: wp-statistics/includes/log/exclusions.php:24
542
  msgid "Admin Page"
543
  msgstr ""
544
 
545
+ #: wp-statistics/includes/log/exclusions.php:24
546
  msgid "Self Referral"
547
  msgstr ""
548
 
549
+ #: wp-statistics/includes/log/exclusions.php:24
550
  msgid "IP Match"
551
  msgstr ""
552
 
553
+ #: wp-statistics/includes/log/exclusions.php:24
554
  msgid "Robot"
555
  msgstr ""
556
 
557
+ #: wp-statistics/includes/log/online.php:100
558
  msgid "Currently there are no users online in the site."
559
  msgstr ""
560
 
561
+ #: wp-statistics/includes/log/exclusions.php:24
562
  msgid "Robot Threshold"
563
  msgstr ""
564
 
565
+ #: wp-statistics/includes/log/exclusions.php:24
566
  msgid "Honey Pot"
567
  msgstr ""
568
 
569
+ #: wp-statistics/includes/log/widgets/page.php:8
570
  msgid "Page Trending Stats"
571
  msgstr ""
572
 
573
+ #: wp-statistics/includes/log/exclusions.php:24
574
  msgid "Hostname"
575
  msgstr ""
576
 
577
+ #: wp-statistics/includes/settings/tabs/wps-general.php:93
578
+ #: wp-statistics/includes/settings/tabs/wps-general.php:133
579
+ #: wp-statistics/includes/settings/tabs/wps-general.php:149
580
+ #: wp-statistics/includes/settings/tabs/wps-general.php:188
581
+ #: wp-statistics/includes/settings/tabs/wps-general.php:200
582
+ #: wp-statistics/includes/settings/tabs/wps-general.php:229
583
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:122
584
  msgid "Enable or disable this feature"
585
  msgstr "Разрешаване или забраняване на тази функция"
586
 
587
+ #: wp-statistics/includes/settings/tabs/wps-general.php:99
588
  msgid "Check for online users every"
589
  msgstr "Проверявай за онлайн потребители на всеки"
590
 
591
+ #: wp-statistics/includes/settings/tabs/wps-general.php:104
592
  msgid "Second"
593
  msgstr "Секунда"
594
 
595
+ #: wp-statistics/includes/settings/tabs/wps-general.php:105
596
  msgid "Time for the check accurate online user in the site. Now: %s Second"
597
  msgstr "Времето за точна проверка онлайн потребителя в сайта. Сега: %s втори"
598
 
599
+ #: wp-statistics/includes/settings/tabs/wps-general.php:111
600
  msgid "Record all user"
601
  msgstr ""
602
 
603
+ #: wp-statistics/includes/settings/tabs/wps-general.php:117
604
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
605
  msgstr ""
606
 
607
+ #: wp-statistics/includes/settings/tabs/wps-general.php:155
608
  msgid "Store entire user agent string"
609
  msgstr "Съхранява цялата потребител фактор канап"
610
 
611
+ #: wp-statistics/includes/settings/tabs/wps-general.php:161
612
  msgid "Only enabled for debugging"
613
  msgstr "Разрешена за отстраняване на грешки"
614
 
615
+ #: wp-statistics/includes/settings/tabs/wps-general.php:167
616
  msgid "Coefficient per visitor"
617
  msgstr "Коефициент за потребител"
618
 
619
+ #: wp-statistics/includes/settings/tabs/wps-general.php:172
620
  msgid "For each visit to account for several hits. Currently %s."
621
  msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
622
 
623
+ #: wp-statistics/includes/settings/tabs/wps-general.php:177
624
+ #: wp-statistics/includes/settings/tabs/wps-general.php:182
625
+ #: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:516
626
  msgid "Pages"
627
  msgstr "Страници"
628
 
629
+ #: wp-statistics/includes/settings/tabs/wps-general.php:194
630
  msgid "Track all pages"
631
  msgstr "Проследяване на всички страници"
632
 
633
+ #: wp-statistics/includes/settings/tabs/wps-general.php:209
634
  msgid "Strip parameters from URI"
635
  msgstr ""
636
 
637
+ #: wp-statistics/includes/settings/tabs/wps-general.php:215
638
  msgid "This will remove anything after the ? in a URL."
639
  msgstr ""
640
 
641
+ #: wp-statistics/includes/settings/tabs/wps-general.php:223
642
  msgid "Disable hits column in post/pages list"
643
  msgstr "Забрани хитове колона пост/страници списък"
644
 
645
+ #: wp-statistics/includes/settings/tabs/wps-general.php:234
646
  msgid "Miscellaneous"
647
  msgstr "Разни"
648
 
649
+ #: wp-statistics/includes/settings/tabs/wps-general.php:239
650
  msgid "Show stats in menu bar"
651
  msgstr "Покажи статистиките в менюто"
652
 
653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:244
654
  msgid "No"
655
  msgstr "Не"
656
 
657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:245
658
  msgid "Yes"
659
  msgstr "Да"
660
 
661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:247
662
  msgid "Show stats in admin menu bar"
663
  msgstr "Покажи статистиките в админ менюто"
664
 
665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:253
666
  msgid "Hide admin notices about non active features"
667
  msgstr "Скрий администратор обявления за не са активни функции"
668
 
669
+ #: wp-statistics/includes/settings/tabs/wps-general.php:259
670
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
671
  msgstr "По подразбиране WP Statistics показва предупреждение, ако някой от основните функции са забранени на всяка страница, Админ, тази опция ще забраните тези съобщения."
672
 
673
+ #: wp-statistics/includes/settings/tabs/wps-general.php:265
674
  msgid "Delete the manual"
675
  msgstr "Изтриване на наръчника"
676
 
677
+ #: wp-statistics/includes/settings/tabs/wps-general.php:271
678
  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."
679
  msgstr "По подразбиране WP Statistics съхранява администратор ръководство в плъгин директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и по време на ъпгрейд в бъдеще."
680
 
681
+ #: wp-statistics/includes/settings/tabs/wps-general.php:276
682
  msgid "Search Engines"
683
  msgstr ""
684
 
685
+ #: wp-statistics/includes/settings/tabs/wps-general.php:293
686
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
687
  msgstr "Деактивирането на всички търсещи машини не е позволено, това ще доведе до всички търсещи машини са активни."
688
 
689
+ #: wp-statistics/includes/settings/tabs/wps-general.php:308
690
  msgid "disable"
691
  msgstr "забрани"
692
 
693
+ #: wp-statistics/includes/settings/tabs/wps-general.php:309
694
  msgid "Disable %s from data collection and reporting."
695
  msgstr "Изключете %s от събирането на данни и докладване."
696
 
697
+ #: wp-statistics/includes/settings/tabs/wps-general.php:315
698
  msgid "Charts"
699
  msgstr "Диаграми"
700
 
701
+ #: wp-statistics/includes/settings/tabs/wps-general.php:320
702
  msgid "Include totals"
703
  msgstr "Включва общи суми"
704
 
705
+ #: wp-statistics/includes/settings/tabs/wps-general.php:326
706
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
707
  msgstr "Добавяне на обща линия за диаграми с множество стойности, като търсене двигател референции"
708
 
709
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:32
710
  msgid "GeoIP settings"
711
  msgstr "GeoIP настройки"
712
 
713
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:37
714
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
715
  msgstr "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от MaxMind, достъпни от %s."
716
 
717
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:47
718
  msgid "GeoIP collection"
719
  msgstr "GeoIP колекция"
720
 
721
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:53
722
  msgid "For get more information and location (country) from visitor, enable this feature."
723
  msgstr "За да получите повече информация и местоположението (страната) от посетител, активирате тази функция."
724
 
725
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:59
726
  msgid "Update GeoIP Info"
727
  msgstr "GeoIP информация актуализация"
728
 
729
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:64
730
  msgid "Download GeoIP Database"
731
  msgstr "Изтегли GeoIP база данни"
732
 
733
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:71
734
  msgid "Schedule monthly update of GeoIP DB"
735
  msgstr "Месечна актуализация график на GeoIP DB"
736
 
737
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:97
738
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
739
  msgstr "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия вторник на месеца."
740
 
741
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:98
742
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
743
  msgstr "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, (което обикновено означава пън, която идва с приставката е все още на място)."
744
 
745
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:104
746
  msgid "Populate missing GeoIP after update of GeoIP DB"
747
  msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
748
 
749
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:110
750
  msgid "Update any missing GeoIP data after downloading a new database."
751
  msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
752
 
753
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:116
754
  msgid "Country code for private IP addresses"
755
  msgstr ""
756
 
757
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:121
758
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
759
  msgstr ""
760
 
761
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:132
762
  msgid "GeoIP collection is disabled due to the following reasons:"
763
  msgstr "GeoIP колекция е забранена поради следните причини:"
764
 
765
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:135
766
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
767
  msgstr "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради инсталирани PHP версия са "
768
 
769
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:140
770
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
771
  msgstr "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата версия на PHP!"
772
 
773
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:146
774
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
775
  msgstr "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена на вашата версия на PHP!"
776
 
777
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:152
778
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
779
  msgstr "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен режим!"
780
 
781
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
782
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
783
  msgstr "Това ще изтрие данни от базата данни всеки ден, наистина ли искате да разрешите тази опция?"
784
 
785
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
786
  msgid "Days"
787
  msgstr "Дни"
788
 
789
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
790
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
791
  msgstr "Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. Невалидни стойности ще забрани ежедневна поддръжка."
792
 
793
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:44
794
  msgid "Common Report Options"
795
  msgstr ""
796
 
797
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:49
798
  msgid "E-mail addresses"
799
  msgstr "Имейл адреси"
800
 
801
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:54
802
  msgid "A comma separated list of e-mail addresses to send reports to."
803
  msgstr ""
804
 
805
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:59
806
  msgid "Update Reports"
807
  msgstr ""
808
 
809
+ #: wp-statistics/includes/log/exclusions.php:24
810
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:64
811
  msgid "Browscap"
812
  msgstr ""
813
 
814
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:70
815
  msgid "Send a report whenever the browscap.ini is updated."
816
  msgstr ""
817
 
818
+ #: wp-statistics/includes/log/exclusions.php:24
819
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:76
820
  msgid "GeoIP"
821
  msgstr "GeoIP"
822
 
823
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:82
824
  msgid "Send a report whenever the GeoIP database is updated."
825
  msgstr ""
826
 
827
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:88
828
  msgid "Pruning"
829
  msgstr ""
830
 
831
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:94
832
  msgid "Send a report whenever the pruning of database is run."
833
  msgstr ""
834
 
835
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:100
836
  msgid "Upgrade"
837
  msgstr ""
838
 
839
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:106
840
  msgid "Send a report whenever the plugin is upgraded."
841
  msgstr ""
842
 
843
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:111
844
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:116
845
+ #: wp-statistics/schedule.php:221
846
  msgid "Statistical reporting"
847
  msgstr "Статистическата отчетност"
848
 
849
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:129
850
  msgid "Schedule"
851
  msgstr "График"
852
 
853
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:153
854
  msgid "Select how often to receive statistical report."
855
  msgstr ""
856
 
857
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:159
858
  msgid "Send reports via"
859
  msgstr "Изпрати отчетите чрез"
860
 
861
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:165
862
  msgid "Email"
863
  msgstr "Имейл"
864
 
865
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:167
866
  msgid "SMS"
867
  msgstr "SMS"
868
 
869
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:170
870
  msgid "Select delivery method for statistical report."
871
  msgstr ""
872
 
873
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
874
  msgid "Note: To send SMS text messages please install the %s plugin."
875
  msgstr "Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s плъгин."
876
 
877
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
878
  msgid "WordPress SMS"
879
  msgstr "WordPress SMS"
880
 
881
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:180
882
  msgid "Report body"
883
  msgstr "Тялото на доклада"
884
 
885
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:185
886
  msgid "Enter the contents of the report."
887
  msgstr ""
888
 
889
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:187
890
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
891
  msgstr ""
892
 
893
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:188
894
+ #: wp-statistics/widget.php:38 wp-statistics/widget.php:247
895
+ #: wp-statistics/wp-statistics.php:621
896
  msgid "User Online"
897
  msgstr "Онлайн потребители"
898
 
899
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:189
900
+ #: wp-statistics/widget.php:52 wp-statistics/widget.php:253
901
  msgid "Today Visitor"
902
  msgstr "Днес посетителите"
903
 
904
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:190
905
+ #: wp-statistics/widget.php:45 wp-statistics/widget.php:250
906
  msgid "Today Visit"
907
  msgstr "Посещения от днес"
908
 
909
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:191
910
+ #: wp-statistics/widget.php:66 wp-statistics/widget.php:259
911
  msgid "Yesterday Visitor"
912
  msgstr "Вчера посетител"
913
 
914
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:192
915
+ #: wp-statistics/widget.php:59
916
  msgid "Yesterday Visit"
917
  msgstr "Вчерашни посещения"
918
 
919
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:193
920
+ #: wp-statistics/widget.php:101 wp-statistics/widget.php:274
921
  msgid "Total Visitor"
922
  msgstr "Общо посетител"
923
 
924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:194
925
+ #: wp-statistics/widget.php:94 wp-statistics/widget.php:271
926
  msgid "Total Visit"
927
  msgstr "Общо посещения"
928
 
929
+ #: wp-statistics/shortcode.php:175
930
  msgid "None"
931
  msgstr "Няма"
932
 
933
+ #: wp-statistics/includes/settings/wps-settings.php:108
934
  msgid "About"
935
  msgstr "За"
936
 
937
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
938
  msgid "Dashboard"
939
  msgstr ""
940
 
941
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
942
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
943
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
944
  msgid "The following items are global to all users."
945
  msgstr ""
946
 
947
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
948
  msgid "Disable dashboard widgets"
949
  msgstr ""
950
 
951
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
952
  msgid "Disable the dashboard widgets."
953
  msgstr ""
954
 
955
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
956
  msgid "Page/Post Editor"
957
  msgstr ""
958
 
959
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
960
  msgid "Disable post/page editor widget"
961
  msgstr ""
962
 
963
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
964
  msgid "Disable the page/post editor widget."
965
  msgstr ""
966
 
967
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
968
  msgid "Map type"
969
  msgstr "Тип карта"
970
 
971
+ #: wp-statistics/includes/functions/functions.php:440
972
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
973
  msgid "Google"
974
  msgstr "Google"
975
 
976
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
977
  msgid "JQVMap"
978
  msgstr "JQVMap"
979
 
980
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
981
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
982
  msgstr "\"Google\" опция ще използва на Google картографска услуга да начертаете последните посетители (изисква достъп до Google)."
983
 
984
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
985
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
986
  msgstr "\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да начертаете последните посетители (изисква extenral услуги)."
987
 
988
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
989
  msgid "Disable map"
990
  msgstr "Забраняване на картата"
991
 
992
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:95
993
  msgid "Disable the map display"
994
  msgstr "Забраняване на показването на картите"
995
 
996
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:101
997
  msgid "Get country location from Google"
998
  msgstr "Се страна местоположение от Google"
999
 
1000
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:107
1001
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
1002
  msgstr "Тази функция може да доведе до намаляване на производителността, когато разглеждате статистиката и е валидно, ако типът на картата е настроено на \"Google само\"."
1003
 
1004
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:15
1005
  msgid "WP Statisitcs Removal"
1006
  msgstr ""
1007
 
1008
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:20
1009
  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."
1010
  msgstr ""
1011
 
1012
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:23
1013
  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."
1014
  msgstr ""
1015
 
1016
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:29
1017
  msgid "Remove data and settings"
1018
  msgstr ""
1019
 
1020
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:34
1021
  msgid "Remove"
1022
  msgstr ""
1023
 
1024
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:35
1025
  msgid "Remove data and settings, this action cannot be undone."
1026
  msgstr ""
1027
 
1028
+ #: wp-statistics/includes/settings/wps-settings.php:100
1029
  msgid "General"
1030
  msgstr "Общи"
1031
 
1032
+ #: wp-statistics/includes/settings/wps-settings.php:101
1033
  msgid "Notifications"
1034
  msgstr ""
1035
 
1036
+ #: wp-statistics/includes/settings/wps-settings.php:102
1037
  msgid "Dashboard/Overview"
1038
  msgstr ""
1039
 
1040
+ #: wp-statistics/includes/settings/wps-settings.php:106
1041
  msgid "Maintenance"
1042
  msgstr "Поддръжка"
1043
 
1044
+ #: wp-statistics/includes/settings/wps-settings.php:107
1045
  msgid "Removal"
1046
  msgstr ""
1047
 
1048
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:85
1049
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
1050
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:286
1051
+ #: wp-statistics/includes/settings/tabs/wps-general.php:349
1052
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
1053
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:201
1054
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:116
1055
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:42
1056
  msgid "Update"
1057
  msgstr "Актуализация"
1058
 
1059
+ #: wp-statistics/schedule.php:10
1060
  msgid "Once Weekly"
1061
  msgstr "Веднъж седмично"
1062
 
1063
+ #: wp-statistics/schedule.php:17
1064
  msgid "Once Every 2 Weeks"
1065
  msgstr "Веднъж на всеки 2 седмици"
1066
 
1067
+ #: wp-statistics/schedule.php:24
1068
  msgid "Once Every 4 Weeks"
1069
  msgstr "Веднъж на всеки 4 седмици"
1070
 
1071
+ #: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
1072
+ #: wp-statistics/wp-statistics.php:469
1073
  msgid "Statistics"
1074
  msgstr "Статистики"
1075
 
1076
+ #: wp-statistics/widget.php:15
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Показване на статистика на сайт в страничната лента."
1079
 
1080
+ #: wp-statistics/widget.php:73 wp-statistics/widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Седмични посещения"
1083
 
1084
+ #: wp-statistics/widget.php:80 wp-statistics/widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Месечни посещения"
1087
 
1088
+ #: wp-statistics/widget.php:87 wp-statistics/widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Годишни посещения"
1091
 
1092
+ #: wp-statistics/widget.php:108 wp-statistics/widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Общо изгледи на страница"
1095
 
1096
+ #: wp-statistics/widget.php:116
1097
  msgid "Search Engine referred"
1098
  msgstr "Търсачката по"
1099
 
1100
+ #: wp-statistics/widget.php:123 wp-statistics/widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Общо публикации"
1103
 
1104
+ #: wp-statistics/widget.php:130 wp-statistics/widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Общо страници"
1107
 
1108
+ #: wp-statistics/widget.php:137 wp-statistics/widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Общо коментари"
1111
 
1112
+ #: wp-statistics/widget.php:144 wp-statistics/widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Общо спам"
1115
 
1116
+ #: wp-statistics/widget.php:151 wp-statistics/widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Общо потребители"
1119
 
1120
+ #: wp-statistics/widget.php:158 wp-statistics/widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Средно публикации"
1123
 
1124
+ #: wp-statistics/widget.php:165 wp-statistics/widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Средно коментари"
1127
 
1128
+ #: wp-statistics/widget.php:172 wp-statistics/widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Средно потребители"
1131
 
1132
+ #: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
1133
+ #: wp-statistics/widget.php:324
1134
  msgid "Last Post Date"
1135
  msgstr "Последно добавена публикация"
1136
 
1137
+ #: wp-statistics/widget.php:240
1138
  msgid "Name"
1139
  msgstr "Име"
1140
 
1141
+ #: wp-statistics/widget.php:244
1142
  msgid "Items"
1143
  msgstr "Броя"
1144
 
1145
+ #: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:646
1146
  msgid "Yesterday visit"
1147
  msgstr "Вчерашни посещения"
1148
 
1149
+ #: wp-statistics/widget.php:280
1150
  msgid "Search Engine Referred"
1151
  msgstr "Търсачката по"
1152
 
1153
+ #: wp-statistics/widget.php:283
1154
  msgid "Select type of search engine"
1155
  msgstr "Изберете тип търсачка"
1156
 
1157
+ #: wp-statistics/wp-statistics.php:122
1158
  msgid "WP Statistics has been removed, please disable and delete it."
1159
  msgstr ""
1160
 
1161
+ #: wp-statistics/wp-statistics.php:54
 
1162
  msgid "WP Statistics"
1163
  msgstr "WP Statistics"
1164
 
1165
+ #: wp-statistics/wp-statistics.php:55
 
1166
  msgid "Complete statistics for your WordPress site."
1167
  msgstr "Пълна статистика за вашия сайт WordPress."
1168
 
1169
+ #: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
1170
+ #: wp-statistics/wp-statistics.php:523
1171
  msgid "Settings"
1172
  msgstr "Настройки"
1173
 
1174
+ #: wp-statistics/wp-statistics.php:325
1175
  msgid "Click here to visit the plugin on WordPress.org"
1176
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
1177
 
1178
+ #: wp-statistics/wp-statistics.php:325
1179
  msgid "Visit WordPress.org page"
1180
  msgstr "Посетете страницата на WordPress.org"
1181
 
1182
+ #: wp-statistics/wp-statistics.php:328
1183
  msgid "Click here to rate and review this plugin on WordPress.org"
1184
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
1185
 
1186
+ #: wp-statistics/wp-statistics.php:328
1187
  msgid "Rate this plugin"
1188
  msgstr "Оцени този плъгин"
1189
 
1190
+ #: wp-statistics/wp-statistics.php:372
1191
  msgid "WP Statistics - Hits"
1192
  msgstr "WP-статистика - хитове"
1193
 
1194
+ #: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:472
1195
+ #: wp-statistics/wp-statistics.php:510
1196
  msgid "Overview"
1197
  msgstr "Общ преглед"
1198
 
1199
+ #: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:515
1200
  msgid "Online"
1201
  msgstr ""
1202
 
1203
+ #: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:517
1204
  msgid "Referrers"
1205
  msgstr ""
1206
 
1207
+ #: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
1208
+ #: wp-statistics/wp-statistics.php:518
1209
  msgid "Searches"
1210
  msgstr "Търсения"
1211
 
1212
+ #: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:519
1213
  msgid "Search Words"
1214
  msgstr "Думи за търсене"
1215
 
1216
+ #: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:520
1217
  msgid "Top Visitors Today"
1218
  msgstr ""
1219
 
1220
+ #: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:522
1221
  msgid "Optimization"
1222
  msgstr "Оптимизация"
1223
 
1224
+ #: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:486
1225
  msgid "Manual"
1226
  msgstr "Ръководство"
1227
 
1228
+ #: wp-statistics/wp-statistics.php:501
1229
  msgid "Site"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics/wp-statistics.php:502
1233
  msgid "Options"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics/wp-statistics.php:628
1237
  msgid "Today visitor"
1238
  msgstr "Днес посетителите"
1239
 
1240
+ #: wp-statistics/wp-statistics.php:634
1241
  msgid "Today visit"
1242
  msgstr "Днес, посетете"
1243
 
1244
+ #: wp-statistics/wp-statistics.php:640
1245
  msgid "Yesterday visitor"
1246
  msgstr "Вчера посетител"
1247
 
1248
+ #: wp-statistics/wp-statistics.php:652
1249
  msgid "View Stats"
1250
  msgstr "Преглед на статистиките"
1251
 
1252
+ #: wp-statistics/wp-statistics.php:676
1253
  msgid "Download ODF file"
1254
  msgstr "Изтегляне на ODF файл"
1255
 
1256
+ #: wp-statistics/wp-statistics.php:677
1257
  msgid "Download HTML file"
1258
  msgstr "Изтегли HTML файл"
1259
 
1260
+ #: wp-statistics/wp-statistics.php:681
1261
  msgid "Manual file not found."
1262
  msgstr "Ръчно файлът не е намерен."
1263
 
1264
+ #: wp-statistics/wp-statistics.php:748 wp-statistics/wp-statistics.php:880
1265
+ #: wp-statistics/wp-statistics.php:915
1266
  msgid "You do not have sufficient permissions to access this page."
1267
  msgstr "Нямате права за тази страница"
1268
 
1269
+ #: wp-statistics/wp-statistics.php:301
1270
  msgid "WP Statistics %s installed on"
1271
  msgstr ""
1272
 
1273
+ #: wp-statistics/wps-updates.php:54
1274
  msgid "Error downloading GeoIP database from: %s - %s"
1275
  msgstr "Грешка при изтегляне на базата от данни от GeoIP: %s - %s"
1276
 
1277
+ #: wp-statistics/wps-updates.php:65
1278
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1279
  msgstr "Грешка не може да отвори изтегления GeoIP база данни за четене: %s"
1280
 
1281
+ #: wp-statistics/wps-updates.php:72
1282
  msgid "Error could not open destination GeoIP database for writing %s"
1283
  msgstr "Грешка не може да отвори GeoIP база данни местоназначение за писане на %s"
1284
 
1285
+ #: wp-statistics/wps-updates.php:88
1286
  msgid "GeoIP Database updated successfully!"
1287
  msgstr "GeoIP базата данни се актуализира успешно!"
1288
 
1289
+ #: wp-statistics/wps-updates.php:113
1290
  msgid "GeoIP update on"
1291
  msgstr ""
1292
 
1293
+ #: wp-statistics/wps-updates.php:180
1294
  msgid "Error downloading browscap database from: %s - %s"
1295
  msgstr "Грешка при изтегляне на browscap база данни от: %s - %s"
1296
 
1297
+ #: wp-statistics/wps-updates.php:289
1298
  msgid "browscap database updated successfully!"
1299
  msgstr "browscap база данни, актуализирани успешно!"
1300
 
1301
+ #: wp-statistics/wps-updates.php:299
1302
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1303
  msgstr ""
1304
 
1305
+ #: wp-statistics/wps-updates.php:307
1306
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1307
  msgstr ""
1308
 
1309
+ #: wp-statistics/wps-updates.php:329
1310
  msgid "browscap already at current version!"
1311
  msgstr "browscap вече в текущата версия!"
1312
 
1313
+ #: wp-statistics/wps-updates.php:342
1314
  msgid "Browscap.ini update on"
1315
  msgstr ""
1316
 
1317
+ #: wp-statistics/dashboard.php:56
 
 
 
 
 
 
 
 
 
1318
  msgid "Quick Stats"
1319
  msgstr ""
1320
 
1321
+ #: wp-statistics/dashboard.php:57
1322
+ #: wp-statistics/includes/log/widgets/browsers.php:41
1323
  msgid "Top 10 Browsers"
1324
  msgstr "Топ 10 браузъри"
1325
 
1326
+ #: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:457
1327
  msgid "Top 10 Countries"
1328
  msgstr "Топ 10 страни"
1329
 
1330
+ #: wp-statistics/dashboard.php:59
1331
  msgid "Today's Visitor Map"
1332
  msgstr ""
1333
 
1334
+ #: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
1335
+ #: wp-statistics/includes/log/hit-statistics.php:8
1336
+ #: wp-statistics/wp-statistics.php:446
1337
  msgid "Hit Statistics"
1338
  msgstr "Удари статистика"
1339
 
1340
+ #: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:450
1341
  msgid "Top 10 Pages"
1342
  msgstr "Топ 10 страници"
1343
 
1344
+ #: wp-statistics/dashboard.php:62
1345
+ #: wp-statistics/includes/log/last-visitor.php:36
1346
+ #: wp-statistics/wp-statistics.php:451
1347
  msgid "Recent Visitors"
1348
  msgstr "Последните посетители"
1349
 
1350
+ #: wp-statistics/dashboard.php:63
1351
+ #: wp-statistics/includes/log/top-referring.php:59
1352
+ #: wp-statistics/includes/log/top-referring.php:81
1353
+ #: wp-statistics/wp-statistics.php:456
1354
  msgid "Top Referring Sites"
1355
  msgstr "Топ Препращащи сайтове"
1356
 
1357
+ #: wp-statistics/dashboard.php:64
1358
+ #: wp-statistics/includes/log/widgets/quickstats.php:75
1359
+ #: wp-statistics/includes/log/widgets/summary.php:75
1360
+ #: wp-statistics/wp-statistics.php:448
1361
  msgid "Search Engine Referrals"
1362
  msgstr "Търсене двигател референции"
1363
 
1364
+ #: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:454
1365
  msgid "Summary"
1366
  msgstr "Резюме"
1367
 
1368
+ #: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
1369
+ #: wp-statistics/wp-statistics.php:449
1370
  msgid "Latest Search Words"
1371
  msgstr "Последни думи за търсене"
1372
 
1373
+ #: wp-statistics/dashboard.php:67
1374
  msgid "Top 10 Visitors Today"
1375
  msgstr ""
1376
 
1377
+ #: wp-statistics/editor.php:58
1378
  msgid "This post is not yet published."
1379
  msgstr ""
1380
 
1381
+ #: wp-statistics/includes/functions/geoip-populate.php:24
1382
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1383
  msgstr "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в страницата Настройки."
1384
 
1385
+ #: wp-statistics/includes/functions/geoip-populate.php:48
1386
  msgid "Updated %s GeoIP records in the visitors database."
1387
  msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
1388
 
1389
+ #: wp-statistics/includes/functions/purge.php:21
1390
+ #: wp-statistics/includes/functions/purge.php:39
1391
+ #: wp-statistics/includes/functions/purge.php:50
1392
+ #: wp-statistics/includes/functions/purge.php:61
1393
+ #: wp-statistics/includes/functions/purge.php:94
1394
  msgid "%s data older than %s days purged successfully."
1395
  msgstr "%s данни по-стари от %s дни, прочистват успешно."
1396
 
1397
+ #: wp-statistics/includes/functions/purge.php:23
1398
+ #: wp-statistics/includes/functions/purge.php:41
1399
+ #: wp-statistics/includes/functions/purge.php:52
1400
+ #: wp-statistics/includes/functions/purge.php:63
1401
+ #: wp-statistics/includes/functions/purge.php:96
1402
  msgid "No records found to purge from %s!"
1403
  msgstr "Няма намерени за продухване от %s записи!"
1404
 
1405
+ #: wp-statistics/includes/functions/purge-hits.php:45
1406
+ #: wp-statistics/includes/functions/purge.php:109
1407
  msgid "Database pruned on"
1408
  msgstr ""
1409
 
1410
+ #: wp-statistics/includes/functions/purge.php:114
1411
  msgid "Please select a value over 30 days."
1412
  msgstr "Моля изберете стойност над 30 дни."
1413
 
1414
+ #: wp-statistics/includes/log/all-browsers.php:21
1415
  msgid "Browser Statistics"
1416
  msgstr "Браузър статистика"
1417
 
1418
+ #: wp-statistics/includes/log/all-browsers.php:29
1419
+ #: wp-statistics/includes/log/all-browsers.php:113
1420
+ #: wp-statistics/includes/log/all-browsers.php:248
1421
+ #: wp-statistics/includes/log/exclusions.php:72
1422
+ #: wp-statistics/includes/log/exclusions.php:190
1423
+ #: wp-statistics/includes/log/hit-statistics.php:26
1424
+ #: wp-statistics/includes/log/hit-statistics.php:163
1425
+ #: wp-statistics/includes/log/last-search.php:64
1426
+ #: wp-statistics/includes/log/last-visitor.php:67
1427
+ #: wp-statistics/includes/log/online.php:17
1428
+ #: wp-statistics/includes/log/page-statistics.php:34
1429
+ #: wp-statistics/includes/log/search-statistics.php:27
1430
+ #: wp-statistics/includes/log/top-countries.php:26
1431
+ #: wp-statistics/includes/log/top-pages.php:29
1432
+ #: wp-statistics/includes/log/top-pages.php:155
1433
+ #: wp-statistics/includes/log/top-referring.php:77
1434
+ #: wp-statistics/includes/log/top-visitors.php:40
1435
  msgid "Click to toggle"
1436
  msgstr "Щракнете за превключване"
1437
 
1438
+ #: wp-statistics/includes/log/all-browsers.php:30
1439
+ #: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:455
1440
+ #: wp-statistics/wp-statistics.php:511
1441
  msgid "Browsers"
1442
  msgstr "Браузъри"
1443
 
1444
+ #: wp-statistics/includes/log/all-browsers.php:57
1445
  msgid "Browsers by type"
1446
  msgstr "Браузъри по вид"
1447
 
1448
+ #: wp-statistics/includes/log/all-browsers.php:114
1449
+ #: wp-statistics/includes/log/widgets/top.visitors.php:18
1450
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1451
  msgid "Platform"
1452
  msgstr "Платформа"
1453
 
1454
+ #: wp-statistics/includes/log/all-browsers.php:141
1455
  msgid "Browsers by platform"
1456
  msgstr "Браузъри по платформа"
1457
 
1458
+ #: wp-statistics/includes/log/all-browsers.php:249
1459
  msgid "%s Version"
1460
  msgstr "версия на %s"
1461
 
1462
+ #: wp-statistics/includes/log/exclusions.php:8
1463
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1464
  msgstr "Внимание: Изключване не са в момента зададени да се отчита, по-долу резултатите може да не отразява текущата статистика!"
1465
 
1466
+ #: wp-statistics/includes/log/exclusions.php:64
1467
  msgid "Exclusions Statistics"
1468
  msgstr "Изключения статистика"
1469
 
1470
+ #: wp-statistics/includes/functions/functions.php:970
1471
  msgid "10 Days"
1472
  msgstr "10 дни"
1473
 
1474
+ #: wp-statistics/includes/functions/functions.php:970
1475
  msgid "20 Days"
1476
  msgstr "20 дни"
1477
 
1478
+ #: wp-statistics/includes/functions/functions.php:970
1479
  msgid "30 Days"
1480
  msgstr "30 дни"
1481
 
1482
+ #: wp-statistics/includes/functions/functions.php:970
1483
  msgid "2 Months"
1484
  msgstr "2 месеца"
1485
 
1486
+ #: wp-statistics/includes/functions/functions.php:970
1487
  msgid "3 Months"
1488
  msgstr "3 месеца"
1489
 
1490
+ #: wp-statistics/includes/functions/functions.php:970
1491
  msgid "6 Months"
1492
  msgstr "6 месеца"
1493
 
1494
+ #: wp-statistics/includes/functions/functions.php:970
1495
  msgid "9 Months"
1496
  msgstr "9 месеца"
1497
 
1498
+ #: wp-statistics/includes/functions/functions.php:970
1499
  msgid "1 Year"
1500
  msgstr "1 година"
1501
 
1502
+ #: wp-statistics/includes/log/exclusions.php:73
1503
  msgid "Exclusions Statistical Chart"
1504
  msgstr "Изключения статистически диаграма"
1505
 
1506
+ #: wp-statistics/includes/log/exclusions.php:95
1507
  msgid "Excluded hits in the last"
1508
  msgstr "Изключени хитове през последните"
1509
 
1510
+ #: wp-statistics/includes/log/exclusions.php:95
1511
+ #: wp-statistics/includes/log/hit-statistics.php:66
1512
+ #: wp-statistics/includes/log/search-statistics.php:69
1513
+ #: wp-statistics/includes/log/widgets/hits.php:42
1514
+ #: wp-statistics/includes/log/widgets/search.php:42
1515
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
1516
  msgid "days"
1517
  msgstr "дни"
1518
 
1519
+ #: wp-statistics/includes/log/exclusions.php:116
1520
  msgid "Number of excluded hits"
1521
  msgstr "Броя на изключените хитове"
1522
 
1523
+ #: wp-statistics/includes/log/hit-statistics.php:27
1524
  msgid "Hits Statistics Chart"
1525
  msgstr "Хитове статистика диаграма"
1526
 
1527
+ #: wp-statistics/includes/log/hit-statistics.php:66
1528
+ #: wp-statistics/includes/log/widgets/hits.php:42
1529
  msgid "Hits in the last"
1530
  msgstr "Хитове през последните"
1531
 
1532
+ #: wp-statistics/includes/log/hit-statistics.php:87
1533
+ #: wp-statistics/includes/log/widgets/hits.php:63
1534
  msgid "Number of visits and visitors"
1535
  msgstr "Броят на посещенията и посетителите"
1536
 
1537
+ #: wp-statistics/includes/log/hit-statistics.php:101
1538
+ #: wp-statistics/includes/log/hit-statistics.php:170
1539
+ #: wp-statistics/includes/log/widgets/hits.php:77
1540
+ #: wp-statistics/includes/log/widgets/quickstats.php:24
1541
+ #: wp-statistics/includes/log/widgets/summary.php:24
1542
  msgid "Visit"
1543
  msgstr "Посетете"
1544
 
1545
+ #: wp-statistics/includes/log/hit-statistics.php:101
1546
+ #: wp-statistics/includes/log/hit-statistics.php:171
1547
+ #: wp-statistics/includes/log/widgets/hits.php:77
1548
+ #: wp-statistics/includes/log/widgets/quickstats.php:23
1549
+ #: wp-statistics/includes/log/widgets/summary.php:23
1550
  msgid "Visitor"
1551
  msgstr "Посетител"
1552
 
1553
+ #: wp-statistics/includes/log/last-search.php:65
1554
  msgid "Latest Search Word Statistics"
1555
  msgstr "Последни Търсене дума статистика"
1556
 
1557
+ #: wp-statistics/includes/log/last-search.php:110
1558
+ #: wp-statistics/includes/log/last-visitor.php:101
1559
+ #: wp-statistics/includes/log/online.php:50
1560
+ #: wp-statistics/includes/log/widgets/google.map.php:60
1561
+ #: wp-statistics/includes/log/widgets/jqv.map.php:55
1562
+ #: wp-statistics/includes/log/widgets/recent.php:14
1563
+ #: wp-statistics/includes/log/widgets/words.php:27
1564
  msgid "#hash#"
1565
  msgstr "#hash #"
1566
 
1567
+ #: wp-statistics/includes/log/last-search.php:115
1568
+ #: wp-statistics/includes/log/last-visitor.php:106
1569
+ #: wp-statistics/includes/log/online.php:55
1570
+ #: wp-statistics/includes/log/top-referring.php:112
1571
+ #: wp-statistics/includes/log/widgets/recent.php:19
1572
+ #: wp-statistics/includes/log/widgets/words.php:42
1573
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
1574
  msgid "Map"
1575
  msgstr "Карта"
1576
 
1577
+ #: wp-statistics/includes/log/last-search.php:159
1578
+ #: wp-statistics/includes/log/last-visitor.php:139
1579
+ #: wp-statistics/includes/log/online.php:109
1580
+ #: wp-statistics/includes/log/top-pages.php:205
1581
+ #: wp-statistics/includes/log/top-referring.php:153
1582
  msgid "Page"
1583
  msgstr "Страница"
1584
 
1585
+ #: wp-statistics/includes/log/last-search.php:159
1586
+ #: wp-statistics/includes/log/last-visitor.php:139
1587
+ #: wp-statistics/includes/log/online.php:109
1588
+ #: wp-statistics/includes/log/top-pages.php:205
1589
+ #: wp-statistics/includes/log/top-referring.php:153
1590
  msgid "From"
1591
  msgstr "От"
1592
 
1593
+ #: wp-statistics/includes/log/last-search.php:47
1594
+ #: wp-statistics/includes/log/last-visitor.php:38
1595
+ #: wp-statistics/includes/log/top-referring.php:67
1596
+ #: wp-statistics/includes/log/top-referring.php:70
1597
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
1598
+ #: wp-statistics/widget.php:296
1599
  msgid "All"
1600
  msgstr "Всички"
1601
 
1602
+ #: wp-statistics/includes/log/last-visitor.php:68
1603
  msgid "Recent Visitor Statistics"
1604
  msgstr "Последните посетител статистика"
1605
 
1606
+ #: wp-statistics/includes/log/online.php:11
1607
+ #: wp-statistics/includes/log/online.php:18
1608
  msgid "Online Users"
1609
  msgstr ""
1610
 
1611
+ #: wp-statistics/includes/log/online.php:75
1612
  msgid "Online for "
1613
  msgstr ""
1614
 
1615
+ #: wp-statistics/includes/log/page-statistics.php:26
1616
  msgid "Page Trend for Post ID"
1617
  msgstr "Страница тенденция за пост номер"
1618
 
1619
+ #: wp-statistics/includes/log/page-statistics.php:35
1620
  msgid "Page Trend"
1621
  msgstr "Страница тенденция"
1622
 
1623
+ #: wp-statistics/includes/log/search-statistics.php:19
1624
+ #: wp-statistics/includes/log/search-statistics.php:28
1625
  msgid "Search Engine Referral Statistics"
1626
  msgstr "Търсене двигател сезиране статистика"
1627
 
1628
+ #: wp-statistics/includes/log/search-statistics.php:69
1629
+ #: wp-statistics/includes/log/widgets/search.php:42
1630
  msgid "Search engine referrals in the last"
1631
  msgstr "Търсене двигател референции в последните"
1632
 
1633
+ #: wp-statistics/includes/log/search-statistics.php:90
1634
+ #: wp-statistics/includes/log/widgets/search.php:63
1635
  msgid "Number of referrals"
1636
  msgstr "Брой препращания"
1637
 
1638
+ #: wp-statistics/includes/log/exclusions.php:24
1639
+ #: wp-statistics/includes/log/search-statistics.php:104
1640
+ #: wp-statistics/includes/log/widgets/quickstats.php:58
1641
+ #: wp-statistics/includes/log/widgets/quickstats.php:105
1642
+ #: wp-statistics/includes/log/widgets/search.php:77
1643
+ #: wp-statistics/includes/log/widgets/summary.php:58
1644
+ #: wp-statistics/includes/log/widgets/summary.php:105
1645
  msgid "Total"
1646
  msgstr "Общо"
1647
 
1648
+ #: wp-statistics/includes/log/top-countries.php:18
1649
+ #: wp-statistics/includes/log/top-countries.php:27
1650
  msgid "Top Countries"
1651
  msgstr "Топ страни"
1652
 
1653
+ #: wp-statistics/includes/log/top-countries.php:31
1654
+ #: wp-statistics/includes/log/widgets/countries.php:9
1655
+ #: wp-statistics/includes/log/widgets/top.visitors.php:11
1656
  msgid "Rank"
1657
  msgstr "Ранг"
1658
 
1659
+ #: wp-statistics/includes/log/top-countries.php:32
1660
+ #: wp-statistics/includes/log/widgets/countries.php:10
1661
+ #: wp-statistics/includes/log/widgets/top.visitors.php:13
1662
  msgid "Flag"
1663
  msgstr "Флаг"
1664
 
1665
+ #: wp-statistics/includes/log/top-countries.php:33
1666
+ #: wp-statistics/includes/log/widgets/countries.php:11
1667
+ #: wp-statistics/includes/log/widgets/top.visitors.php:14
1668
  msgid "Country"
1669
  msgstr "Страна"
1670
 
1671
+ #: wp-statistics/includes/log/top-countries.php:34
1672
+ #: wp-statistics/includes/log/widgets/countries.php:12
1673
  msgid "Visitor Count"
1674
  msgstr "Посетител брой"
1675
 
1676
+ #: wp-statistics/includes/log/top-pages.php:20
1677
+ #: wp-statistics/includes/log/top-pages.php:156
1678
  msgid "Top Pages"
1679
  msgstr "Топ страници"
1680
 
1681
+ #: wp-statistics/includes/log/top-pages.php:30
1682
  msgid "Top 5 Pages Trends"
1683
  msgstr "Топ 5 страници тенденции"
1684
 
1685
+ #: wp-statistics/includes/log/top-pages.php:67
1686
  msgid "Top 5 Page Trending Stats"
1687
  msgstr "Топ 5 страница тенденция статистика"
1688
 
1689
+ #: wp-statistics/includes/log/top-pages.php:88
1690
+ #: wp-statistics/includes/log/widgets/page.php:63
1691
  msgid "Number of Hits"
1692
  msgstr "Брой посещения"
1693
 
1694
+ #: wp-statistics/includes/log/top-pages.php:184
1695
+ #: wp-statistics/includes/log/widgets/pages.php:13
1696
  msgid "No page title found"
1697
  msgstr "Няма намерени заглавието на страницата"
1698
 
1699
+ #: wp-statistics/includes/log/top-pages.php:187
1700
+ #: wp-statistics/includes/log/widgets/pages.php:16
1701
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
1702
+ #: wp-statistics/includes/settings/tabs/wps-general.php:122
1703
+ #: wp-statistics/includes/settings/tabs/wps-general.php:127
1704
+ #: wp-statistics/shortcode.php:139
1705
  msgid "Visits"
1706
  msgstr "Посещения"
1707
 
1708
+ #: wp-statistics/includes/log/top-referring.php:4
1709
  msgid "To be added soon"
1710
  msgstr "Да бъде добавена скоро"
1711
 
1712
+ #: wp-statistics/includes/log/top-referring.php:79
1713
  msgid "Referring sites from"
1714
  msgstr "Препращащи сайтове от"
1715
 
1716
+ #: wp-statistics/includes/log/top-referring.php:137
1717
+ #: wp-statistics/includes/log/widgets/referring.php:35
1718
  msgid "References"
1719
  msgstr "Препратки"
1720
 
1721
+ #: wp-statistics/includes/log/top-visitors.php:12
1722
  msgid "Top 100 Visitors Today"
1723
  msgstr ""
1724
 
1725
+ #: wp-statistics/includes/log/log.php:17
1726
  msgid "About WP Statistics Version %s"
1727
  msgstr "За WP Statistics версия %s"
1728
 
1729
+ #: wp-statistics/includes/log/widgets/about.php:11
1730
  msgid "Website"
1731
  msgstr "Уебсайт"
1732
 
1733
+ #: wp-statistics/includes/log/widgets/about.php:12
1734
  msgid "Rate and Review"
1735
  msgstr "И преглед"
1736
 
1737
+ #: wp-statistics/includes/log/widgets/about.php:16
1738
  msgid "More Information"
1739
  msgstr "Повече информация"
1740
 
1741
+ #: wp-statistics/includes/log/widgets/about.php:25
1742
+ #: wp-statistics/includes/settings/tabs/wps-about.php:12
1743
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1744
  msgstr "Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
1745
 
1746
+ #: wp-statistics/includes/log/widgets/browsers.php:34
1747
  msgid "Other"
1748
  msgstr "Други"
1749
 
1750
+ #: wp-statistics/wp-statistics.php:445
1751
  msgid "Today Visitors Map"
1752
  msgstr "Днес посетителите карта"
1753
 
1754
+ #: wp-statistics/includes/log/widgets/referring.php:36
1755
  msgid "Address"
1756
  msgstr "Адрес"
1757
 
1758
+ #: wp-statistics/includes/log/widgets/quickstats.php:12
1759
+ #: wp-statistics/includes/log/widgets/summary.php:12
1760
  msgid "User(s) Online"
1761
  msgstr "Потребител(и) онлайн"
1762
 
1763
+ #: wp-statistics/includes/log/widgets/quickstats.php:28
1764
+ #: wp-statistics/includes/log/widgets/quickstats.php:80
1765
+ #: wp-statistics/includes/log/widgets/summary.php:28
1766
+ #: wp-statistics/includes/log/widgets/summary.php:80
1767
  msgid "Today"
1768
  msgstr "Днес"
1769
 
1770
+ #: wp-statistics/includes/log/widgets/quickstats.php:34
1771
+ #: wp-statistics/includes/log/widgets/quickstats.php:81
1772
+ #: wp-statistics/includes/log/widgets/summary.php:34
1773
+ #: wp-statistics/includes/log/widgets/summary.php:81
1774
  msgid "Yesterday"
1775
  msgstr "Вчера"
1776
 
1777
+ #: wp-statistics/includes/log/widgets/quickstats.php:99
1778
+ #: wp-statistics/includes/log/widgets/summary.php:99
1779
  msgid "Daily Total"
1780
  msgstr "Ежедневно общо"
1781
 
1782
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1783
+ #: wp-statistics/includes/log/widgets/summary.php:118
1784
  msgid "Current Time and Date"
1785
  msgstr "Текущия час и дата"
1786
 
1787
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1788
+ #: wp-statistics/includes/log/widgets/summary.php:118
1789
  msgid "(Adjustment)"
1790
  msgstr "(Корекция)"
1791
 
1792
+ #: wp-statistics/includes/log/widgets/quickstats.php:122
1793
+ #: wp-statistics/includes/log/widgets/summary.php:122
1794
  msgid "Date: %s"
1795
  msgstr "Дата: %s"
1796
 
1797
+ #: wp-statistics/includes/log/widgets/quickstats.php:126
1798
+ #: wp-statistics/includes/log/widgets/summary.php:126
1799
  msgid "Time: %s"
1800
  msgstr "Време: %s"
1801
 
1802
+ #: wp-statistics/includes/log/widgets/top.visitors.php:12
1803
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
1804
+ #: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
1805
+ #: wp-statistics/wp-statistics.php:514
1806
  msgid "Hits"
1807
  msgstr "Посещения"
1808
 
1809
+ #: wp-statistics/includes/log/widgets/top.visitors.php:15
1810
  msgid "IP"
1811
  msgstr ""
1812
 
1813
+ #: wp-statistics/includes/log/widgets/top.visitors.php:17
1814
  msgid "Agent"
1815
  msgstr ""
1816
 
1817
+ #: wp-statistics/includes/log/widgets/top.visitors.php:19
1818
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1819
  msgid "Version"
1820
  msgstr ""
1821
 
1822
+ #: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
1823
+ #: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
1824
+ #: wp-statistics/ajax.php:184 wp-statistics/ajax.php:302
1825
+ #: wp-statistics/includes/optimization/wps-optimization.php:6
1826
  msgid "Access denied!"
1827
  msgstr "Отказан достъп!"
1828
 
1829
+ #: wp-statistics/ajax.php:31
1830
  msgid "%s agent data deleted successfully."
1831
  msgstr "%s агент данни изтрито успешно."
1832
 
1833
+ #: wp-statistics/ajax.php:34
1834
  msgid "No agent data found to remove!"
1835
  msgstr ""
1836
 
1837
+ #: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
1838
+ #: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
1839
  msgid "Please select the desired items."
1840
  msgstr "Моля изберете желаните елементи."
1841
 
1842
+ #: wp-statistics/ajax.php:62
1843
  msgid "%s platform data deleted successfully."
1844
  msgstr "%s платформа данни изтрито успешно."
1845
 
1846
+ #: wp-statistics/ajax.php:65
1847
  msgid "No platform data found to remove!"
1848
  msgstr ""
1849
 
1850
+ #: wp-statistics/includes/functions/functions.php:1074
1851
  msgid "%s table data deleted successfully."
1852
  msgstr "%s таблични данни изтрито успешно."
1853
 
1854
+ #: wp-statistics/includes/functions/functions.php:1078
1855
  msgid "Error, %s not emptied!"
1856
  msgstr "Грешка, %s не се изпразва!"
1857
 
1858
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1859
  msgid "Database Setup"
1860
  msgstr "Настройка на база данни"
1861
 
1862
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1863
  msgid "Re-run Install"
1864
  msgstr "Изпълнете отново инсталиране"
1865
 
1866
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1867
  msgid "Install Now!"
1868
  msgstr "Инсталирай сега!"
1869
 
1870
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1871
  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."
1872
  msgstr "Ако по някаква причина вашата инсталация на WP Statistics липсва таблиците в базата данни или други основни елементи, това отново ще изпълни процеса на инсталиране."
1873
 
1874
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1875
  msgid "Database Index"
1876
  msgstr "Индекс на база данни"
1877
 
1878
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1879
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1880
+ #: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:512
1881
  msgid "Countries"
1882
  msgstr "Страни"
1883
 
1884
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
1885
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
1886
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1887
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1888
  msgid "Update Now!"
1889
  msgstr "Актуализирай сега!"
1890
 
1891
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
1892
  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."
1893
  msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата. За да създадете индекса на на по-старите инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху \"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се записи и да добавите към индекса."
1894
 
1895
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
1896
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
1897
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1898
  msgstr "Тази операция може да отнеме много време на настанявам с много редове в таблицата на посетителите."
1899
 
1900
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
1901
  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."
1902
  msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата."
1903
 
1904
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
1905
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
1906
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
1907
  msgid "Congratulations, your installation is already up to date, nothing to do."
1908
  msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
1909
 
1910
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
1911
+ #: wp-statistics/includes/optimization/wps-optimization.php:235
1912
  msgid "Export"
1913
  msgstr "Износ"
1914
 
1915
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
1916
  msgid "Export from"
1917
  msgstr "Износ от"
1918
 
1919
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
1920
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
1921
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
1922
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
1923
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
1924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:134
1925
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:164
1926
  msgid "Please select"
1927
  msgstr "Моля изберете"
1928
 
1929
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
1930
  msgid "Select the table for the output file."
1931
  msgstr "Изберете таблицата за изходния файл."
1932
 
1933
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
1934
  msgid "Export To"
1935
  msgstr "Експортиране в"
1936
 
1937
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
1938
  msgid "Select the output file type."
1939
  msgstr "Изберете типа на изходния файл."
1940
 
1941
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
1942
  msgid "Include Header Row"
1943
  msgstr "Включва заглавен ред"
1944
 
1945
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1946
  msgid "Include a header row as the first line of the exported file."
1947
  msgstr "Включва заглавен ред на първия ред от експортирания файл."
1948
 
1949
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
1950
  msgid "Start Now!"
1951
  msgstr "Започнете сега!"
1952
 
1953
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1954
  msgid "Historical Values"
1955
  msgstr ""
1956
 
1957
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1958
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1959
  msgstr ""
1960
 
1961
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1962
+ #: wp-statistics/includes/settings/tabs/wps-general.php:138
1963
+ #: wp-statistics/includes/settings/tabs/wps-general.php:143
1964
+ #: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
1965
+ #: wp-statistics/wp-statistics.php:521
1966
  msgid "Visitors"
1967
  msgstr "Посетители"
1968
 
1969
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1970
  msgid "Number of historical number of visitors to the site (current value is %s)."
1971
  msgstr ""
1972
 
1973
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1974
  msgid "Number of historical number of visits to the site (current value is %s)."
1975
  msgstr ""
1976
 
1977
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1978
  msgid "Update now!"
1979
  msgstr ""
1980
 
1981
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1982
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
1983
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
1984
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
1985
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
1986
  msgid "Are you sure?"
1987
  msgstr "Сигурни ли сте?"
1988
 
1989
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
1990
  msgid "Data"
1991
  msgstr "Данни"
1992
 
1993
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1994
  msgid "Empty Table"
1995
  msgstr "Празна таблица"
1996
 
1997
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
1998
  msgid "All data table will be lost."
1999
  msgstr "Таблица с всички данни ще бъдат загубени."
2000
 
2001
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
2002
  msgid "Clear now!"
2003
  msgstr "Изчистване сега!"
2004
 
2005
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
2006
  msgid "Purge records older than"
2007
  msgstr "Изтриване на записи по-стари от"
2008
 
2009
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
2010
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
2011
  msgstr "Изтрит потребител статистика данни по-стари от определен брой дни. Минималната стойност е 30 дни."
2012
 
2013
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
2014
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
2015
  msgid "Purge now!"
2016
  msgstr "Чистка сега!"
2017
 
2018
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
2019
  msgid "Delete User Agent Types"
2020
  msgstr "Изтриване на потребителски агент типове"
2021
 
2022
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
2023
  msgid "Delete Agents"
2024
  msgstr "Изтриване на агенти"
2025
 
2026
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
2027
  msgid "All visitor data will be lost for this agent type."
2028
  msgstr "Всички посетител данни ще бъдат загубени за този агент тип."
2029
 
2030
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
2031
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
2032
  msgid "Delete now!"
2033
  msgstr "Изтриване сега!"
2034
 
2035
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
2036
  msgid "Delete Platforms"
2037
  msgstr "Изтриване на платформи"
2038
 
2039
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
2040
  msgid "All visitor data will be lost for this platform type."
2041
  msgstr "Всички посетител данни ще бъдат загубени за тази платформа тип."
2042
 
2043
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
2044
  msgid "Resources"
2045
  msgstr "Ресурси"
2046
 
2047
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
2048
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
2049
  msgid "Memory usage in PHP"
2050
  msgstr "Памет отнасяне в PHP"
2051
 
2052
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
2053
  msgid "Byte"
2054
  msgstr "Байт"
2055
 
2056
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
2057
  msgid "PHP Memory Limit"
2058
  msgstr "PHP памет граница"
2059
 
2060
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
2061
  msgid "The memory limit a script is allowed to consume, set in php.ini."
2062
  msgstr "Памет граница скрипт е разрешено да се консумират, определени в php.ini."
2063
 
2064
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
2065
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
2066
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
2067
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
2068
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
2069
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
2070
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
2071
  msgid "Number of rows in the %s table"
2072
  msgstr "Брой редове в таблицата на %s"
2073
 
2074
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
2075
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
2076
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
2077
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
2078
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
2079
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
2080
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
2081
  msgid "Row"
2082
  msgstr "Ред"
2083
 
2084
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
2085
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
2086
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
2087
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
2088
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
2089
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
2090
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
2091
  msgid "Number of rows"
2092
  msgstr "Брой редове"
2093
 
2094
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
2095
  msgid "Version Info"
2096
  msgstr "Информация за версията"
2097
 
2098
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
2099
  msgid "WP Statistics Version"
2100
  msgstr "Статистика на WP версия"
2101
 
2102
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
2103
  msgid "The WP Statistics version you are running."
2104
  msgstr "Версията на WP Statistics, която изпълнявате."
2105
 
2106
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
2107
  msgid "PHP Version"
2108
  msgstr "PHP версия"
2109
 
2110
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
2111
  msgid "The PHP version you are running."
2112
  msgstr "Версията на PHP, която изпълнявате."
2113
 
2114
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
2115
  msgid "PHP Safe Mode"
2116
  msgstr "PHP безопасен режим"
2117
 
2118
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
2119
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2120
  msgstr "Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
2121
 
2122
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
2123
  msgid "jQuery Version"
2124
  msgstr "jQuery версия"
2125
 
2126
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
2127
  msgid "The jQuery version you are running."
2128
  msgstr "JQuery версия, която изпълнявате."
2129
 
2130
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
2131
  msgid "cURL Version"
2132
  msgstr "Навийте версия"
2133
 
2134
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
2135
  msgid "cURL not installed"
2136
  msgstr "Навийте не е инсталиран"
2137
 
2138
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
2139
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2140
  msgstr "PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
2141
 
2142
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
 
 
 
 
2143
  msgid "Installed"
2144
  msgstr "Инсталирани"
2145
 
2146
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2147
  msgid "Not installed"
2148
  msgstr "Не е инсталиран"
2149
 
2150
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
 
 
 
 
2151
  msgid "File Info"
2152
  msgstr "Инфо за файла"
2153
 
2154
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
2155
  msgid "GeoIP Database"
2156
  msgstr "GeoIP база данни"
2157
 
2158
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
2159
  msgid "Database file does not exist."
2160
  msgstr "Файл от база данни не съществува."
2161
 
2162
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
2163
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
2164
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
2165
  msgid ", created on "
2166
  msgstr ", създаден на "
2167
 
2168
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
2169
  msgid "The file size and date of the GeoIP database."
2170
  msgstr "Размера на файла и датата на GeoIP базата данни."
2171
 
2172
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
2173
  msgid "browscap.ini File"
2174
  msgstr "browscap.ini файл"
2175
 
2176
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
2177
  msgid "browscap.ini file does not exist."
2178
  msgstr "browscap.ini файл не съществува."
2179
 
2180
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
2181
  msgid "The file size and date of the browscap.ini file."
2182
  msgstr "Размера на файла и датата на файла browscap.ini."
2183
 
2184
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
2185
  msgid "browscap Cache File"
2186
  msgstr "browscap кеш файл"
2187
 
2188
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
2189
  msgid "browscap cache file does not exist."
2190
  msgstr "browscap кеш файл не съществува."
2191
 
2192
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
2193
  msgid "The file size and date of the browscap cache file."
2194
  msgstr "Размера на файла и датата на кеш файла на browscap."
2195
 
2196
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
2197
  msgid "Client Info"
2198
  msgstr "Информация за клиента"
2199
 
2200
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
2201
  msgid "Client IP"
2202
  msgstr "Клиент IP"
2203
 
2204
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
2205
  msgid "The client IP address."
2206
  msgstr "IP адреса на клиента."
2207
 
2208
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
2209
  msgid "User Agent"
2210
  msgstr "Потребителски агент"
2211
 
2212
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2213
  msgid "The client user agent string."
2214
  msgstr "Клиент потребител фактор канап."
2215
 
2216
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2217
  msgid "Browser"
2218
  msgstr ""
2219
 
2220
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2221
  msgid "The detected client browser."
2222
  msgstr ""
2223
 
2224
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2225
  msgid "The detected client browser version."
2226
  msgstr ""
2227
 
2228
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2229
  msgid "The detected client platform."
2230
  msgstr ""
2231
 
2232
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2233
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2234
  msgstr "Това ще замести всички IP адреси в базата данни с хашиш стойности и не може да се отмени, сигурен ли сте?"
2235
 
2236
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2237
  msgid "GeoIP Options"
2238
  msgstr "GeoIP опции"
2239
 
2240
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2241
  msgid "Updates any unknown location data in the database, this may take a while"
2242
  msgstr "Актуализира неизвестно местоположение данни в базата данни, това може да отнеме известно време"
2243
 
2244
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2245
+ #: wp-statistics/includes/settings/tabs/wps-general.php:66
2246
  msgid "IP Addresses"
2247
  msgstr "IP адреси"
2248
 
2249
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2250
+ #: wp-statistics/includes/settings/tabs/wps-general.php:71
2251
  msgid "Hash IP Addresses"
2252
  msgstr "Хеш IP адреси"
2253
 
2254
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2255
  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"
2256
  msgstr "Замени IP адреси в базата данни с хашиш стойности, вие няма да можете да възстановите IP адресите в бъдеще да попълните местоположението информация след това и това може да отнеме известно време"
2257
 
2258
+ #: wp-statistics/includes/optimization/wps-optimization.php:43
2259
  msgid "IP Addresses replaced with hash values."
2260
  msgstr "IP адреси се заменят с хеш стойности."
2261
 
2262
+ #: wp-statistics/includes/optimization/wps-optimization.php:51
2263
  msgid "Install routine complete."
2264
  msgstr "Инсталиране на ежедневието пълна."
2265
 
2266
+ #: wp-statistics/includes/optimization/wps-optimization.php:234
2267
  msgid "Resources/Information"
2268
  msgstr "Ресурси/информация"
2269
 
2270
+ #: wp-statistics/includes/optimization/wps-optimization.php:236
2271
  msgid "Purging"
2272
  msgstr "Прочистване"
2273
 
2274
+ #: wp-statistics/includes/optimization/wps-optimization.php:237
2275
  msgid "Database"
2276
  msgstr "База данни"
2277
 
2278
+ #: wp-statistics/includes/optimization/wps-optimization.php:238
2279
  msgid "Updates"
2280
  msgstr "Актуализации"
2281
 
2282
+ #: wp-statistics/includes/optimization/wps-optimization.php:239
2283
  msgid "Historical"
2284
  msgstr ""
2285
 
2286
+ #: wp-statistics/includes/settings/tabs/wps-about.php:8
2287
  msgid "WP Statistics V%s"
2288
  msgstr "WP Statistics V %s"
2289
 
2290
+ #: wp-statistics/includes/settings/tabs/wps-about.php:28
2291
  msgid "Visit Us Online"
2292
  msgstr "Посетете ни онлайн"
2293
 
2294
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2295
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2296
  msgstr "Елате ни голям нов %s и поддържа актуална с последните новини за WP Statistics."
2297
 
2298
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2299
  msgid "website"
2300
  msgstr "уебсайт"
2301
 
2302
+ #: wp-statistics/includes/settings/tabs/wps-about.php:36
2303
  msgid "Rate and Review at WordPress.org"
2304
  msgstr "И преглед в WordPress.org"
2305
 
2306
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2307
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2308
  msgstr "Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
2309
 
2310
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2311
  msgid "rating and review"
2312
  msgstr "Оценка и преглед"
2313
 
2314
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2315
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2316
  msgstr "над в WordPress.org. Вашето мнение е много оценявам!"
2317
 
2318
+ #: wp-statistics/includes/settings/tabs/wps-about.php:44
2319
  msgid "Translations"
2320
  msgstr "Преводи"
2321
 
2322
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2323
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2324
  msgstr "WP Statistics подкрепя интернационализацията и ние насърчаваме потребителите да представят преводи, моля посетете нашия %s да видите текущото състояние и %s, ако искате да помогне."
2325
 
2326
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2327
  msgid "translation collaboration site"
2328
  msgstr "сайт за съвместна работа на превод"
2329
 
2330
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2331
  msgid "drop us a line"
2332
  msgstr "пишете ни линия"
2333
 
2334
+ #: wp-statistics/includes/settings/tabs/wps-about.php:52
2335
  msgid "Support"
2336
  msgstr "Поддръжка"
2337
 
2338
+ #: wp-statistics/includes/settings/tabs/wps-about.php:57
2339
  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:"
2340
  msgstr "Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
2341
 
2342
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2343
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2344
  msgid "Have you read the %s?"
2345
  msgstr "Чели ли сте на %s?"
2346
 
2347
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2348
  msgid "FAQs"
2349
  msgstr "Често задавани въпроси"
2350
 
2351
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2352
  msgid "manual"
2353
  msgstr "ръководство"
2354
 
2355
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2356
  msgid "Have you search the %s for a similar issue?"
2357
  msgstr "Имате ли търси %s за подобен проблем?"
2358
 
2359
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2360
  msgid "support forum"
2361
  msgstr "подкрепа форум"
2362
 
2363
+ #: wp-statistics/includes/settings/tabs/wps-about.php:63
2364
  msgid "Have you search the Internet for any error messages you are receiving?"
2365
  msgstr "Има ли търсене в интернет за всички съобщения за грешка, получавате?"
2366
 
2367
+ #: wp-statistics/includes/settings/tabs/wps-about.php:64
2368
  msgid "Make sure you have access to your PHP error logs."
2369
  msgstr ""
2370
 
2371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:67
2372
  msgid "And a few things to double-check:"
2373
  msgstr "И няколко неща, за да проверете отново:"
2374
 
2375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:70
2376
  msgid "How's your memory_limit in php.ini?"
2377
  msgstr "Как е вашата memory_limit в php.ini?"
2378
 
2379
+ #: wp-statistics/includes/settings/tabs/wps-about.php:71
2380
  msgid "Have you tried disabling any other plugins you may have installed?"
2381
  msgstr "Били ли сте опитвали Деактивирането на всички други плъгини, които сте инсталирали?"
2382
 
2383
+ #: wp-statistics/includes/settings/tabs/wps-about.php:72
2384
  msgid "Have you tried using the default WordPress theme?"
2385
  msgstr "Били ли сте опитвали използване на подразбиране WordPress тема?"
2386
 
2387
+ #: wp-statistics/includes/settings/tabs/wps-about.php:73
2388
  msgid "Have you double checked the plugin settings?"
2389
  msgstr "Имате ли двойно проверени настройките на плъгин?"
2390
 
2391
+ #: wp-statistics/includes/settings/tabs/wps-about.php:74
2392
  msgid "Do you have all the required PHP extensions installed?"
2393
  msgstr "Имате ли всички необходими PHP разширения инсталирани?"
2394
 
2395
+ #: wp-statistics/includes/settings/tabs/wps-about.php:75
2396
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2397
  msgstr "Получавате ли празни или непълни страница показва в браузъра си? Видя ли преглед на източника на страницата и проверете за фатални грешки?"
2398
 
2399
+ #: wp-statistics/includes/settings/tabs/wps-about.php:76
2400
  msgid "Have you checked your PHP and web server error logs?"
2401
  msgstr "Проверихте ли вашия PHP и уеб сървър грешка логове?"
2402
 
2403
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2404
  msgid "Still not having any luck?"
2405
  msgstr "Все още не е късм?"
2406
 
2407
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2408
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2409
  msgstr "След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
2410
 
2411
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2412
  msgid "WordPress.org support forum"
2413
  msgstr "WordPress.org подкрепа форум"
2414
 
2415
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2416
  msgid "Alternatively %s support is available as well."
2417
  msgstr "Алтернативно %s поддръжка е наличен."
2418
 
2419
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2420
  msgid "Farsi"
2421
  msgstr "Фарси"
2422
 
2423
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
2424
  msgid "WP Statistics Honey Pot Page"
2425
  msgstr ""
2426
 
2427
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
2428
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2429
  msgstr ""
2430
 
2431
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:23
2432
+ #: wp-statistics/includes/settings/wps-settings.php:103
2433
  msgid "Access Levels"
2434
  msgstr "Нива на достъп"
2435
 
2436
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:52
2437
  msgid "Required user level to view WP Statistics"
2438
  msgstr "Изисква ниво на потребител за да видите статистика за WP"
2439
 
2440
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:67
2441
  msgid "Required user level to manage WP Statistics"
2442
  msgstr "Изисква потребителско ниво, за да управлявате WP Statistics"
2443
 
2444
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2445
  msgid "See the %s for details on capability levels."
2446
  msgstr "Вижте %s за повече информация на способности."
2447
 
2448
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2449
  msgid "WordPress Roles and Capabilities page"
2450
  msgstr "Страница WordPress роли и възможности"
2451
 
2452
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:76
2453
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2454
  msgstr "Съвет: manage_network = супер администратор мрежа, manage_options = администратор, edit_others_posts = редактор, publish_posts = автор, edit_posts = сътрудник, прочетете = всеки."
2455
 
2456
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:77
2457
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2458
  msgstr "Всяка една от горните casscades правата нагоре в конфигурацията по подразбиране на WordPress. Така например избора на publish_posts предоставя правото на автори, редактори, администратори и супер администратори."
2459
 
2460
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:78
2461
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2462
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2463
 
2464
+ #: wp-statistics/includes/log/exclusions.php:197
2465
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
2466
+ #: wp-statistics/includes/settings/wps-settings.php:104
2467
+ #: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:513
2468
  msgid "Exclusions"
2469
  msgstr "Изключения"
2470
 
2471
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
2472
  msgid "Record exclusions"
2473
  msgstr "Запис изключения"
2474
 
2475
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
2476
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
2477
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
2478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
2479
  msgid "Enable"
2480
  msgstr "Разреши"
2481
 
2482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
2483
  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."
2484
  msgstr "Това ще запише всички изключени хитове в отделна таблица с причините, защо е изключен, но никаква друга информация. Това ще генерира много данни, но е полезно, ако искате да видите общия брой на посещения вашия сайт получава, не само действителен потребител посещения."
2485
 
2486
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
2487
  msgid "Exclude User Roles"
2488
  msgstr "Изключване на потребителски роли"
2489
 
2490
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
2491
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
2492
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
2493
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
2494
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
2495
  msgid "Exclude"
2496
  msgstr "Изключи"
2497
 
2498
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
2499
  msgid "Exclude %s role from data collection."
2500
  msgstr "%S роля да изключат от събирането на данни."
2501
 
2502
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
2503
  msgid "IP/Robot Exclusions"
2504
  msgstr "IP/робот изключвания"
2505
 
2506
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
2507
  msgid "Robot list"
2508
  msgstr "Робот списък"
2509
 
2510
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
2511
  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."
2512
  msgstr "Списък на думи, (по един на ред) за мач срещу за откриване на роботи. Записите трябва да бъдат най-малко 4 символа или те ще бъдат игнорирани."
2513
 
2514
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
2515
  msgid "Reset to Default"
2516
  msgstr "Възстанови по подразбиране"
2517
 
2518
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
2519
  msgid "Force robot list update after upgrades"
2520
  msgstr "Сила робот списък актуализация след ъпгрейд"
2521
 
2522
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
2523
  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."
2524
  msgstr "Сила списъка на робот, за да се възстанови по подразбиране след актуализация на WP Statistics се провежда. Забележка Ако тази опция е разрешена по потребителски роботи, вие сте добавили към списъка ще бъдат загубени."
2525
 
2526
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
2527
  msgid "Robot visit threshold"
2528
  msgstr ""
2529
 
2530
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
2531
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2532
  msgstr ""
2533
 
2534
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
2535
  msgid "Excluded IP address list"
2536
  msgstr "Изключените IP адресен списък"
2537
 
2538
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
2539
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2540
  msgstr "Списък на IP адреси и подмрежа маски (по един на ред) да се изключат от статистиката колекция (192.168.0.0/24 и 192.168.0.0/255.255.255.0 формати се приемат). За да зададете IP адрес само, използвайте подмрежа стойност на 32 или 255.255.255.255."
2541
 
2542
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
2543
  msgid "Add 10.0.0.0"
2544
  msgstr "Добави 10.0.0.0"
2545
 
2546
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
2547
  msgid "Add 172.16.0.0"
2548
  msgstr "Добави 172.16.0.0"
2549
 
2550
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
2551
  msgid "Add 192.168.0.0"
2552
  msgstr "Добави 192.168.0.0"
2553
 
2554
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
2555
  msgid "Use honey pot"
2556
  msgstr ""
2557
 
2558
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
2559
  msgid "Use a honey pot page to identify robots."
2560
  msgstr ""
2561
 
2562
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
2563
  msgid "Honey pot post id"
2564
  msgstr ""
2565
 
2566
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
2567
  msgid "The post id to use for the honeypot page."
2568
  msgstr ""
2569
 
2570
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
2571
  msgid "Create a new honey pot page"
2572
  msgstr ""
2573
 
2574
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
2575
  msgid "GeoIP Exclusions"
2576
  msgstr ""
2577
 
2578
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
2579
  msgid "Excluded countries list"
2580
  msgstr ""
2581
 
2582
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
2583
  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."
2584
  msgstr ""
2585
 
2586
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
2587
  msgid "Included countries list"
2588
  msgstr ""
2589
 
2590
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
2591
  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."
2592
  msgstr ""
2593
 
2594
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
2595
  msgid "Host Exclusions"
2596
  msgstr ""
2597
 
2598
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
2599
  msgid "Excluded hosts list"
2600
  msgstr ""
2601
 
2602
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
2603
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2604
  msgstr ""
2605
 
2606
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
2607
  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."
2608
  msgstr ""
2609
 
2610
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
2611
  msgid "Site URL Exclusions"
2612
  msgstr "Сайт URL изключения"
2613
 
2614
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
2615
  msgid "Excluded login page"
2616
  msgstr "Изключените вход страница"
2617
 
2618
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
2619
  msgid "Exclude the login page for registering as a hit."
2620
  msgstr "Изключване на страницата за вход за регистриране като хит."
2621
 
2622
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
2623
  msgid "Excluded admin pages"
2624
  msgstr "Изключените администратор страници"
2625
 
2626
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
2627
  msgid "Exclude the admin pages for registering as a hit."
2628
  msgstr "Изключи администратор страници за регистриране като хит."
2629
 
2630
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
2631
  msgid "Excluded RSS feeds"
2632
  msgstr ""
2633
 
2634
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
2635
  msgid "Exclude the RSS feeds for registering as a hit."
2636
  msgstr ""
2637
 
2638
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:162
2639
  msgid "browscap settings"
2640
  msgstr "browscap настройки"
2641
 
2642
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:167
2643
  msgid "browscap usage"
2644
  msgstr "използване на browscap"
2645
 
2646
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:52
2647
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:76
2648
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:109
2649
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:172
2650
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:196
2651
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:236
2652
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:260
2653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:76
2654
+ #: wp-statistics/includes/settings/tabs/wps-general.php:92
2655
+ #: wp-statistics/includes/settings/tabs/wps-general.php:116
2656
+ #: wp-statistics/includes/settings/tabs/wps-general.php:132
2657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:148
2658
+ #: wp-statistics/includes/settings/tabs/wps-general.php:160
2659
+ #: wp-statistics/includes/settings/tabs/wps-general.php:187
2660
+ #: wp-statistics/includes/settings/tabs/wps-general.php:199
2661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:214
2662
+ #: wp-statistics/includes/settings/tabs/wps-general.php:228
2663
+ #: wp-statistics/includes/settings/tabs/wps-general.php:258
2664
+ #: wp-statistics/includes/settings/tabs/wps-general.php:270
2665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:286
2666
+ #: wp-statistics/includes/settings/tabs/wps-general.php:325
2667
+ #: wp-statistics/includes/settings/tabs/wps-general.php:341
2668
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
2669
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
2670
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:69
2671
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:81
2672
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:93
2673
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:105
2674
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:121
2675
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
2676
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
2677
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:94
2678
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:106
2679
  msgid "Active"
2680
  msgstr "Активен"
2681
 
2682
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:173
2683
  msgid "The browscap database will be downloaded and used to detect robots."
2684
  msgstr "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на роботи."
2685
 
2686
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:179
2687
  msgid "Update browscap Info"
2688
  msgstr "Актуализиране на browscap информация"
2689
 
2690
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:184
2691
  msgid "Download browscap Database"
2692
  msgstr "Изтегли browscap база данни"
2693
 
2694
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:65
2695
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:185
2696
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:249
2697
  msgid "Save changes on this page to download the update."
2698
  msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
2699
 
2700
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:191
2701
  msgid "Schedule weekly update of browscap DB"
2702
  msgstr "Планиране на седмична актуализация на browscap DB"
2703
 
2704
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:79
2705
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:199
2706
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:263
2707
  msgid "Next update will be"
2708
  msgstr "Следващата актуализация ще бъде"
2709
 
2710
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:215
2711
  msgid "Download of the browscap database will be scheduled for once a week."
2712
  msgstr "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
2713
 
2714
+ #: wp-statistics/includes/settings/tabs/wps-general.php:50
2715
  msgid "This will delete the manual when you save the settings, are you sure?"
2716
  msgstr "Това ще изтрие ръчно, когато запишете настройките, сигурен ли сте?"
2717
 
2718
+ #: wp-statistics/includes/settings/tabs/wps-general.php:77
2719
  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."
2720
  msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
2721
 
2722
+ #: wp-statistics/includes/settings/tabs/wps-general.php:82
2723
+ #: wp-statistics/shortcode.php:138
2724
  msgid "Users Online"
2725
  msgstr "Потребители онлайн"
2726
 
2727
+ #: wp-statistics/includes/settings/tabs/wps-general.php:87
2728
  msgid "User online"
2729
  msgstr "Потребител онлайн"
languages/wp_statistics-bn_BD.mo CHANGED
Binary file
languages/wp_statistics-bn_BD.po CHANGED
@@ -7,2624 +7,2723 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-beta\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "&#151; You are running an unsupported version of PHP."
15
  msgstr ""
16
 
17
- #: wp-statistics.php:95
18
  msgid "WP Statistics Disabled"
19
  msgstr ""
20
 
21
- #: wp-statistics.php:99
22
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
23
  msgstr ""
24
 
25
- #: wp-statistics.php:101
26
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
27
  msgstr ""
28
 
29
- #: ajax.php:281
30
  msgid "ERROR: Widget not found!"
31
  msgstr ""
32
 
33
- #: dashboard.php:103 includes/log/log.php:13
 
34
  msgid "Loading..."
35
  msgstr ""
36
 
37
- #: dashboard.php:121 includes/log/log.php:2
 
38
  msgid "Reloading..."
39
  msgstr ""
40
 
41
- #: includes/log/top-visitors.php:41 wp-statistics.php:447
 
42
  msgid "Top Visitors"
43
  msgstr ""
44
 
45
- #: wp-statistics.php:206
46
  msgid "optimization page"
47
  msgstr ""
48
 
49
- #: includes/settings/tabs/wps-maintenance.php:35
50
- #: includes/settings/tabs/wps-maintenance.php:63
51
  msgid "Enabled"
52
  msgstr ""
53
 
54
- #: includes/settings/tabs/wps-maintenance.php:30
55
  msgid "Purge Old Data Daily"
56
  msgstr ""
57
 
58
- #: includes/settings/tabs/wps-maintenance.php:41
59
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
60
  msgstr ""
61
 
62
- #: includes/settings/tabs/wps-maintenance.php:47
63
  msgid "Purge data older than"
64
  msgstr ""
65
 
66
- #: includes/settings/tabs/wps-maintenance.php:58
67
  msgid "Purge High Hit Count Visitors Daily"
68
  msgstr ""
69
 
70
- #: includes/settings/tabs/wps-maintenance.php:69
71
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
72
  msgstr ""
73
 
74
- #: includes/settings/tabs/wps-maintenance.php:81
75
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
76
  msgstr ""
77
 
78
- #: shortcode.php:184
79
  msgid "The post/page id to get page statistics on."
80
  msgstr ""
81
 
82
- #: shortcode.php:181
83
  msgid "Post/Page ID"
84
  msgstr ""
85
 
86
- #: includes/functions/functions.php:424
87
  msgid "Ask.com"
88
  msgstr ""
89
 
90
- #: shortcode.php:158
91
  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."
92
  msgstr ""
93
 
94
- #: wp-statistics.php:180
95
  msgid "visitor tracking"
96
  msgstr ""
97
 
98
- #: wp-statistics.php:181
99
  msgid "geoip collection"
100
  msgstr ""
101
 
102
- #: wp-statistics.php:197
103
  msgid "visit database index"
104
  msgstr ""
105
 
106
- #: wp-statistics.php:206
107
  msgid "Database updates are required, please go to %s and update the following: %s"
108
  msgstr ""
109
 
110
- #: wp-statistics.php:197
111
  msgid "countries database index"
112
  msgstr ""
113
 
114
- #: wp-statistics.php:190
115
  msgid "search table"
116
  msgstr ""
117
 
118
- #: wp-statistics.php:184
119
  msgid "settings page"
120
  msgstr ""
121
 
122
- #: wp-statistics.php:184 wp-statistics.php:206
123
  msgid ","
124
  msgstr ""
125
 
126
- #: wp-statistics.php:184
127
  msgid "The following features are disabled, please go to %s and enable them: %s"
128
  msgstr ""
129
 
130
- #: wp-statistics.php:179
131
  msgid "hit tracking"
132
  msgstr ""
133
 
134
- #: wp-statistics.php:178
135
  msgid "online user tracking"
136
  msgstr ""
137
 
138
- #: wp-statistics.php:775
139
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
140
  msgstr ""
141
 
142
- #: includes/optimization/wps-optimization.php:196
143
  msgid "Search table conversion complete, %d rows added."
144
  msgstr ""
145
 
146
- #: includes/optimization/tabs/wps-optimization-database.php:113
147
  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."
148
  msgstr ""
149
 
150
- #: includes/optimization/tabs/wps-optimization-database.php:94
151
  msgid "Search Table"
152
  msgstr ""
153
 
154
- #: includes/optimization/tabs/wps-optimization-database.php:99
155
  msgid "Convert"
156
  msgstr ""
157
 
158
- #: includes/optimization/tabs/wps-optimization-database.php:106
159
  msgid "Convert Now!"
160
  msgstr ""
161
 
162
- #: includes/optimization/tabs/wps-optimization-database.php:107
163
  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."
164
  msgstr ""
165
 
166
- #: includes/log/exclusions.php:24
167
  msgid "Referrer Spam"
168
  msgstr ""
169
 
170
- #: includes/settings/tabs/wps-externals.php:279
171
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
172
  msgstr ""
173
 
174
- #: includes/settings/wps-settings.php:105
175
  msgid "Externals"
176
  msgstr ""
177
 
178
- #: includes/settings/tabs/wps-externals.php:220
179
  msgid "Piwik Referrer Spam Blacklist settings"
180
  msgstr ""
181
 
182
- #: includes/settings/tabs/wps-externals.php:255
183
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
184
  msgstr ""
185
 
186
- #: includes/settings/tabs/wps-externals.php:248
187
  msgid "Download Piwik Referrer Spam Blacklist Database"
188
  msgstr ""
189
 
190
- #: includes/settings/tabs/wps-externals.php:243
191
  msgid "Update Piwik Referrer Spam Blacklist Info"
192
  msgstr ""
193
 
194
- #: includes/settings/tabs/wps-externals.php:237
195
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
196
  msgstr ""
197
 
198
- #: includes/settings/tabs/wps-externals.php:225
199
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
200
  msgstr ""
201
 
202
- #: includes/settings/tabs/wps-externals.php:231
203
  msgid "Piwik Referrer Spam Blacklist usage"
204
  msgstr ""
205
 
206
- #: includes/settings/tabs/wps-exclusions.php:148
207
  msgid "Treat corrupt browser info as a bot"
208
  msgstr ""
209
 
210
- #: includes/log/exclusions.php:24
211
  msgid "404 Pages"
212
  msgstr ""
213
 
214
- #: includes/log/top-visitors.php:26
215
  msgid "Date"
216
  msgstr ""
217
 
218
- #: includes/settings/tabs/wps-exclusions.php:151
219
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
220
  msgstr ""
221
 
222
- #: includes/settings/tabs/wps-exclusions.php:215
223
  msgid "Excluded 404 pages"
224
  msgstr ""
225
 
226
- #: includes/settings/tabs/wps-exclusions.php:218
227
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
228
  msgstr ""
229
 
230
- #: wps-updates.php:29
231
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
232
  msgstr ""
233
 
234
- #: includes/settings/tabs/wps-general.php:281
235
  msgid "Add page title to empty search words"
236
  msgstr ""
237
 
238
- #: includes/settings/tabs/wps-general.php:287
239
  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."
240
  msgstr ""
241
 
242
- #: includes/optimization/tabs/wps-optimization-purging.php:218
243
- #: includes/settings/tabs/wps-maintenance.php:75
244
  msgid "Purge visitors with more than"
245
  msgstr ""
246
 
247
- #: includes/optimization/tabs/wps-optimization-purging.php:223
248
  msgid "hits"
249
  msgstr ""
250
 
251
- #: includes/optimization/tabs/wps-optimization-purging.php:224
252
  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."
253
  msgstr ""
254
 
255
- #: includes/functions/purge-hits.php:28
256
  msgid "No visitors found to purge."
257
  msgstr ""
258
 
259
- #: includes/functions/purge-hits.php:25
260
  msgid "%s records purged successfully."
261
  msgstr ""
262
 
263
- #: ajax.php:178 includes/functions/purge-hits.php:32
 
264
  msgid "Number of hits must be greater than or equal to 10!"
265
  msgstr ""
266
 
267
- #: shortcode.php:141
268
  msgid "Page Visits"
269
  msgstr ""
270
 
271
- #: shortcode.php:144
272
  msgid "Page Count"
273
  msgstr ""
274
 
275
- #: shortcode.php:145
276
  msgid "Comment Count"
277
  msgstr ""
278
 
279
- #: shortcode.php:146
280
  msgid "Spam Count"
281
  msgstr ""
282
 
283
- #: shortcode.php:147
284
  msgid "User Count"
285
  msgstr ""
286
 
287
- #: shortcode.php:148
288
  msgid "Post Average"
289
  msgstr ""
290
 
291
- #: shortcode.php:149
292
  msgid "Comment Average"
293
  msgstr ""
294
 
295
- #: shortcode.php:150
296
  msgid "User Average"
297
  msgstr ""
298
 
299
- #: shortcode.php:162
300
  msgid "Search Provider"
301
  msgstr ""
302
 
303
- #: shortcode.php:165
304
  msgid "The search provider to get statistics on."
305
  msgstr ""
306
 
307
- #: shortcode.php:169
308
  msgid "Number Format"
309
  msgstr ""
310
 
311
- #: shortcode.php:172
312
  msgid "The format to display numbers in: i18n, english, none."
313
  msgstr ""
314
 
315
- #: shortcode.php:176
316
  msgid "English"
317
  msgstr ""
318
 
319
- #: shortcode.php:177
320
  msgid "International"
321
  msgstr ""
322
 
323
- #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
 
324
  msgid "Hits Statistics Summary"
325
  msgstr ""
326
 
327
- #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
 
328
  msgid "Chart Total"
329
  msgstr ""
330
 
331
- #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
 
332
  msgid "All Time Total"
333
  msgstr ""
334
 
335
- #: includes/log/log.php:6
336
  msgid "Have you thought about donating to WP Statistics?"
337
  msgstr ""
338
 
339
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:429
 
340
  msgid "Donate"
341
  msgstr ""
342
 
343
- #: includes/settings/tabs/wps-about.php:24
344
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
345
  msgstr ""
346
 
347
- #: includes/settings/tabs/wps-about.php:24
348
  msgid "donation"
349
  msgstr ""
350
 
351
- #: includes/log/log.php:6
352
  msgid "Donate Now!"
353
  msgstr ""
354
 
355
- #: includes/log/log.php:6
356
  msgid "Close"
357
  msgstr ""
358
 
359
- #: shortcode.php:135
360
  msgid "Select the statistic you wish to display."
361
  msgstr ""
362
 
363
- #: shortcode.php:132
364
  msgid "Statistic"
365
  msgstr ""
366
 
367
- #: shortcode.php:143
368
  msgid "Post Count"
369
  msgstr ""
370
 
371
- #: shortcode.php:155
372
  msgid "Time Frame"
373
  msgstr ""
374
 
375
- #: includes/functions/functions.php:1009
376
  msgid "to"
377
  msgstr ""
378
 
379
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
380
  msgid "Go"
381
  msgstr ""
382
 
383
- #: includes/log/top-pages.php:95
384
  msgid "Rank #5"
385
  msgstr ""
386
 
387
- #: includes/log/top-pages.php:95
388
  msgid "Rank #4"
389
  msgstr ""
390
 
391
- #: includes/log/top-pages.php:95
392
  msgid "Rank #3"
393
  msgstr ""
394
 
395
- #: includes/log/top-pages.php:95
396
  msgid "Rank #1"
397
  msgstr ""
398
 
399
- #: includes/log/top-pages.php:95
400
  msgid "Rank #2"
401
  msgstr ""
402
 
403
- #: includes/optimization/tabs/wps-optimization-database.php:60
404
  msgid "Visits Table"
405
  msgstr ""
406
 
407
- #: includes/optimization/tabs/wps-optimization-database.php:75
408
  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."
409
  msgstr ""
410
 
411
- #: includes/optimization/tabs/wps-optimization-database.php:76
412
  msgid "This operation could take a long time on installs with many rows in the visits table."
413
  msgstr ""
414
 
415
- #: includes/optimization/tabs/wps-optimization-database.php:82
416
  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."
417
  msgstr ""
418
 
419
- #: includes/log/last-visitor.php:68
420
  msgid "Filtered by"
421
  msgstr ""
422
 
423
- #: includes/functions/functions.php:1002 includes/functions/functions.php:1005
 
424
  msgid "Range"
425
  msgstr ""
426
 
427
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
428
  msgid "MM/DD/YYYY"
429
  msgstr "MM/DD/YYYY"
430
 
431
- #: includes/settings/tabs/wps-general.php:342
432
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
433
  msgstr ""
434
 
435
- #: includes/settings/tabs/wps-general.php:336
436
  msgid "Force English"
437
  msgstr ""
438
 
439
- #: includes/settings/tabs/wps-general.php:331
440
  msgid "Languages"
441
  msgstr ""
442
 
443
- #: includes/settings/tabs/wps-exclusions.php:227
444
  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."
445
  msgstr ""
446
 
447
- #: includes/settings/tabs/wps-exclusions.php:225
448
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
449
  msgstr ""
450
 
451
- #: includes/settings/tabs/wps-exclusions.php:222
452
  msgid "Excluded URLs list"
453
  msgstr ""
454
 
455
- #: includes/log/exclusions.php:24
456
  msgid "Excluded URL"
457
  msgstr ""
458
 
459
- #: includes/log/widgets/quickstats.php:52 includes/log/widgets/summary.php:52
 
460
  msgid "Last 365 Days (Year)"
461
  msgstr ""
462
 
463
- #: includes/log/widgets/quickstats.php:46 includes/log/widgets/summary.php:46
 
464
  msgid "Last 30 Days (Month)"
465
  msgstr ""
466
 
467
- #: includes/log/widgets/quickstats.php:40 includes/log/widgets/summary.php:40
 
468
  msgid "Last 7 Days (Week)"
469
  msgstr ""
470
 
471
- #: includes/functions/functions.php:430
472
  msgid "Yahoo!"
473
  msgstr ""
474
 
475
- #: includes/functions/functions.php:431
476
  msgid "Yandex"
477
  msgstr ""
478
 
479
- #: includes/functions/functions.php:427
480
  msgid "clearch.org"
481
  msgstr ""
482
 
483
- #: includes/functions/functions.php:428
484
  msgid "DuckDuckGo"
485
  msgstr ""
486
 
487
- #: includes/functions/functions.php:426
488
  msgid "Bing"
489
  msgstr ""
490
 
491
- #: includes/functions/functions.php:425
492
  msgid "Baidu"
493
  msgstr ""
494
 
495
- #: editor.php:69
496
- msgid "Hits in the last 20 days"
497
- msgstr ""
498
-
499
- #: includes/log/exclusions.php:24
500
  msgid "Feeds"
501
  msgstr ""
502
 
503
- #: includes/log/exclusions.php:24
504
  msgid "User Role"
505
  msgstr ""
506
 
507
- #: includes/log/exclusions.php:24
508
  msgid "Login Page"
509
  msgstr ""
510
 
511
- #: includes/log/exclusions.php:24
512
  msgid "Admin Page"
513
  msgstr ""
514
 
515
- #: includes/log/exclusions.php:24
516
  msgid "Self Referral"
517
  msgstr ""
518
 
519
- #: includes/log/exclusions.php:24
520
  msgid "IP Match"
521
  msgstr ""
522
 
523
- #: includes/log/exclusions.php:24
524
  msgid "Robot"
525
  msgstr ""
526
 
527
- #: includes/log/online.php:100
528
  msgid "Currently there are no users online in the site."
529
  msgstr ""
530
 
531
- #: includes/log/exclusions.php:24
532
  msgid "Robot Threshold"
533
  msgstr ""
534
 
535
- #: includes/log/exclusions.php:24
536
  msgid "Honey Pot"
537
  msgstr ""
538
 
539
- #: includes/log/widgets/page.php:8
540
  msgid "Page Trending Stats"
541
  msgstr ""
542
 
543
- #: includes/log/exclusions.php:24
544
  msgid "Hostname"
545
  msgstr ""
546
 
547
- #: includes/settings/tabs/wps-general.php:93
548
- #: includes/settings/tabs/wps-general.php:133
549
- #: includes/settings/tabs/wps-general.php:149
550
- #: includes/settings/tabs/wps-general.php:188
551
- #: includes/settings/tabs/wps-general.php:200
552
- #: includes/settings/tabs/wps-general.php:229
553
- #: includes/settings/tabs/wps-notifications.php:122
554
  msgid "Enable or disable this feature"
555
  msgstr ""
556
 
557
- #: includes/settings/tabs/wps-general.php:99
558
  msgid "Check for online users every"
559
  msgstr "অনলাইনের ব্যবহারকারী চেক করবে"
560
 
561
- #: includes/settings/tabs/wps-general.php:104
562
  msgid "Second"
563
  msgstr ""
564
 
565
- #: includes/settings/tabs/wps-general.php:105
566
  msgid "Time for the check accurate online user in the site. Now: %s Second"
567
  msgstr ""
568
 
569
- #: includes/settings/tabs/wps-general.php:111
570
  msgid "Record all user"
571
  msgstr ""
572
 
573
- #: includes/settings/tabs/wps-general.php:117
574
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
575
  msgstr ""
576
 
577
- #: includes/settings/tabs/wps-general.php:155
578
  msgid "Store entire user agent string"
579
  msgstr ""
580
 
581
- #: includes/settings/tabs/wps-general.php:161
582
  msgid "Only enabled for debugging"
583
  msgstr ""
584
 
585
- #: includes/settings/tabs/wps-general.php:167
586
  msgid "Coefficient per visitor"
587
  msgstr "দর্শকের সুদক্ষতা"
588
 
589
- #: includes/settings/tabs/wps-general.php:172
590
  msgid "For each visit to account for several hits. Currently %s."
591
  msgstr ""
592
 
593
- #: includes/settings/tabs/wps-general.php:177
594
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:418
595
- #: wp-statistics.php:516
596
  msgid "Pages"
597
  msgstr ""
598
 
599
- #: includes/settings/tabs/wps-general.php:194
600
  msgid "Track all pages"
601
  msgstr ""
602
 
603
- #: includes/settings/tabs/wps-general.php:209
604
  msgid "Strip parameters from URI"
605
  msgstr ""
606
 
607
- #: includes/settings/tabs/wps-general.php:215
608
  msgid "This will remove anything after the ? in a URL."
609
  msgstr ""
610
 
611
- #: includes/settings/tabs/wps-general.php:223
612
  msgid "Disable hits column in post/pages list"
613
  msgstr ""
614
 
615
- #: includes/settings/tabs/wps-general.php:234
616
  msgid "Miscellaneous"
617
  msgstr ""
618
 
619
- #: includes/settings/tabs/wps-general.php:239
620
  msgid "Show stats in menu bar"
621
  msgstr "স্টাটস মেনুবারে দেখাও"
622
 
623
- #: includes/settings/tabs/wps-general.php:244
624
  msgid "No"
625
  msgstr "না"
626
 
627
- #: includes/settings/tabs/wps-general.php:245
628
  msgid "Yes"
629
  msgstr "হ্যা"
630
 
631
- #: includes/settings/tabs/wps-general.php:247
632
  msgid "Show stats in admin menu bar"
633
  msgstr "স্টাটস অ্যাডমিনের মেনুবারে দেখাও"
634
 
635
- #: includes/settings/tabs/wps-general.php:253
636
  msgid "Hide admin notices about non active features"
637
  msgstr ""
638
 
639
- #: includes/settings/tabs/wps-general.php:259
640
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
641
  msgstr ""
642
 
643
- #: includes/settings/tabs/wps-general.php:265
644
  msgid "Delete the manual"
645
  msgstr ""
646
 
647
- #: includes/settings/tabs/wps-general.php:271
648
  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."
649
  msgstr ""
650
 
651
- #: includes/settings/tabs/wps-general.php:276
652
  msgid "Search Engines"
653
  msgstr ""
654
 
655
- #: includes/settings/tabs/wps-general.php:293
656
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
657
  msgstr ""
658
 
659
- #: includes/settings/tabs/wps-general.php:308
660
  msgid "disable"
661
  msgstr ""
662
 
663
- #: includes/settings/tabs/wps-general.php:309
664
  msgid "Disable %s from data collection and reporting."
665
  msgstr ""
666
 
667
- #: includes/settings/tabs/wps-general.php:315
668
  msgid "Charts"
669
  msgstr ""
670
 
671
- #: includes/settings/tabs/wps-general.php:320
672
  msgid "Include totals"
673
  msgstr ""
674
 
675
- #: includes/settings/tabs/wps-general.php:326
676
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
677
  msgstr ""
678
 
679
- #: includes/settings/tabs/wps-externals.php:32
680
  msgid "GeoIP settings"
681
  msgstr ""
682
 
683
- #: includes/settings/tabs/wps-externals.php:37
684
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
685
  msgstr ""
686
 
687
- #: includes/settings/tabs/wps-externals.php:47
688
  msgid "GeoIP collection"
689
  msgstr ""
690
 
691
- #: includes/settings/tabs/wps-externals.php:53
692
  msgid "For get more information and location (country) from visitor, enable this feature."
693
  msgstr ""
694
 
695
- #: includes/settings/tabs/wps-externals.php:59
696
  msgid "Update GeoIP Info"
697
  msgstr ""
698
 
699
- #: includes/settings/tabs/wps-externals.php:64
700
  msgid "Download GeoIP Database"
701
  msgstr ""
702
 
703
- #: includes/settings/tabs/wps-externals.php:71
704
  msgid "Schedule monthly update of GeoIP DB"
705
  msgstr ""
706
 
707
- #: includes/settings/tabs/wps-externals.php:97
708
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
709
  msgstr ""
710
 
711
- #: includes/settings/tabs/wps-externals.php:98
712
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
713
  msgstr ""
714
 
715
- #: includes/settings/tabs/wps-externals.php:104
716
  msgid "Populate missing GeoIP after update of GeoIP DB"
717
  msgstr ""
718
 
719
- #: includes/settings/tabs/wps-externals.php:110
720
  msgid "Update any missing GeoIP data after downloading a new database."
721
  msgstr ""
722
 
723
- #: includes/settings/tabs/wps-externals.php:116
724
  msgid "Country code for private IP addresses"
725
  msgstr ""
726
 
727
- #: includes/settings/tabs/wps-externals.php:121
728
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
729
  msgstr ""
730
 
731
- #: includes/settings/tabs/wps-externals.php:132
732
  msgid "GeoIP collection is disabled due to the following reasons:"
733
  msgstr ""
734
 
735
- #: includes/settings/tabs/wps-externals.php:135
736
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
737
  msgstr ""
738
 
739
- #: includes/settings/tabs/wps-externals.php:140
740
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
741
  msgstr ""
742
 
743
- #: includes/settings/tabs/wps-externals.php:146
744
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
745
  msgstr ""
746
 
747
- #: includes/settings/tabs/wps-externals.php:152
748
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
749
  msgstr ""
750
 
751
- #: includes/settings/tabs/wps-maintenance.php:20
752
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
753
  msgstr ""
754
 
755
- #: includes/settings/tabs/wps-maintenance.php:52
756
  msgid "Days"
757
  msgstr ""
758
 
759
- #: includes/settings/tabs/wps-maintenance.php:53
760
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
761
  msgstr ""
762
 
763
- #: includes/settings/tabs/wps-notifications.php:44
764
  msgid "Common Report Options"
765
  msgstr ""
766
 
767
- #: includes/settings/tabs/wps-notifications.php:49
768
  msgid "E-mail addresses"
769
  msgstr ""
770
 
771
- #: includes/settings/tabs/wps-notifications.php:54
772
  msgid "A comma separated list of e-mail addresses to send reports to."
773
  msgstr ""
774
 
775
- #: includes/settings/tabs/wps-notifications.php:59
776
  msgid "Update Reports"
777
  msgstr ""
778
 
779
- #: includes/log/exclusions.php:24
780
- #: includes/settings/tabs/wps-notifications.php:64
781
  msgid "Browscap"
782
  msgstr ""
783
 
784
- #: includes/settings/tabs/wps-notifications.php:70
785
  msgid "Send a report whenever the browscap.ini is updated."
786
  msgstr ""
787
 
788
- #: includes/log/exclusions.php:24
789
- #: includes/settings/tabs/wps-notifications.php:76
790
  msgid "GeoIP"
791
  msgstr ""
792
 
793
- #: includes/settings/tabs/wps-notifications.php:82
794
  msgid "Send a report whenever the GeoIP database is updated."
795
  msgstr ""
796
 
797
- #: includes/settings/tabs/wps-notifications.php:88
798
  msgid "Pruning"
799
  msgstr ""
800
 
801
- #: includes/settings/tabs/wps-notifications.php:94
802
  msgid "Send a report whenever the pruning of database is run."
803
  msgstr ""
804
 
805
- #: includes/settings/tabs/wps-notifications.php:100
806
  msgid "Upgrade"
807
  msgstr ""
808
 
809
- #: includes/settings/tabs/wps-notifications.php:106
810
  msgid "Send a report whenever the plugin is upgraded."
811
  msgstr ""
812
 
813
- #: includes/settings/tabs/wps-notifications.php:111
814
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
 
815
  msgid "Statistical reporting"
816
  msgstr ""
817
 
818
- #: includes/settings/tabs/wps-notifications.php:129
819
  msgid "Schedule"
820
  msgstr ""
821
 
822
- #: includes/settings/tabs/wps-notifications.php:153
823
  msgid "Select how often to receive statistical report."
824
  msgstr ""
825
 
826
- #: includes/settings/tabs/wps-notifications.php:159
827
  msgid "Send reports via"
828
  msgstr ""
829
 
830
- #: includes/settings/tabs/wps-notifications.php:165
831
  msgid "Email"
832
  msgstr ""
833
 
834
- #: includes/settings/tabs/wps-notifications.php:167
835
  msgid "SMS"
836
  msgstr ""
837
 
838
- #: includes/settings/tabs/wps-notifications.php:170
839
  msgid "Select delivery method for statistical report."
840
  msgstr ""
841
 
842
- #: includes/settings/tabs/wps-notifications.php:173
843
  msgid "Note: To send SMS text messages please install the %s plugin."
844
  msgstr ""
845
 
846
- #: includes/settings/tabs/wps-notifications.php:173
847
  msgid "WordPress SMS"
848
  msgstr ""
849
 
850
- #: includes/settings/tabs/wps-notifications.php:180
851
  msgid "Report body"
852
  msgstr ""
853
 
854
- #: includes/settings/tabs/wps-notifications.php:185
855
  msgid "Enter the contents of the report."
856
  msgstr ""
857
 
858
- #: includes/settings/tabs/wps-notifications.php:187
859
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
860
  msgstr ""
861
 
862
- #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
863
- #: widget.php:247 wp-statistics.php:621
 
864
  msgid "User Online"
865
  msgstr "এখন দেখছে"
866
 
867
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
868
- #: widget.php:253
869
  msgid "Today Visitor"
870
  msgstr ""
871
 
872
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
873
- #: widget.php:250
874
  msgid "Today Visit"
875
  msgstr "আজ দেখেছে"
876
 
877
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
878
- #: widget.php:259
879
  msgid "Yesterday Visitor"
880
  msgstr ""
881
 
882
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
 
883
  msgid "Yesterday Visit"
884
  msgstr "গতকাল দেখেছে"
885
 
886
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
887
- #: widget.php:274
888
  msgid "Total Visitor"
889
  msgstr ""
890
 
891
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
892
- #: widget.php:271
893
  msgid "Total Visit"
894
  msgstr "মোট দেখা হয়েছে"
895
 
896
- #: shortcode.php:175
897
  msgid "None"
898
  msgstr ""
899
 
900
- #: includes/settings/wps-settings.php:108
901
  msgid "About"
902
  msgstr ""
903
 
904
- #: includes/settings/tabs/wps-overview-display.php:20
905
  msgid "Dashboard"
906
  msgstr ""
907
 
908
- #: includes/settings/tabs/wps-overview-display.php:24
909
- #: includes/settings/tabs/wps-overview-display.php:44
910
- #: includes/settings/tabs/wps-overview-display.php:64
911
  msgid "The following items are global to all users."
912
  msgstr ""
913
 
914
- #: includes/settings/tabs/wps-overview-display.php:29
915
  msgid "Disable dashboard widgets"
916
  msgstr ""
917
 
918
- #: includes/settings/tabs/wps-overview-display.php:35
919
  msgid "Disable the dashboard widgets."
920
  msgstr ""
921
 
922
- #: includes/settings/tabs/wps-overview-display.php:40
923
  msgid "Page/Post Editor"
924
  msgstr ""
925
 
926
- #: includes/settings/tabs/wps-overview-display.php:49
927
  msgid "Disable post/page editor widget"
928
  msgstr ""
929
 
930
- #: includes/settings/tabs/wps-overview-display.php:55
931
  msgid "Disable the page/post editor widget."
932
  msgstr ""
933
 
934
- #: includes/settings/tabs/wps-overview-display.php:69
935
  msgid "Map type"
936
  msgstr ""
937
 
938
- #: includes/functions/functions.php:429
939
- #: includes/settings/tabs/wps-overview-display.php:75
940
  msgid "Google"
941
  msgstr "গুগল"
942
 
943
- #: includes/settings/tabs/wps-overview-display.php:75
944
  msgid "JQVMap"
945
  msgstr ""
946
 
947
- #: includes/settings/tabs/wps-overview-display.php:82
948
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
949
  msgstr ""
950
 
951
- #: includes/settings/tabs/wps-overview-display.php:83
952
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
953
  msgstr ""
954
 
955
- #: includes/settings/tabs/wps-overview-display.php:89
956
  msgid "Disable map"
957
  msgstr ""
958
 
959
- #: includes/settings/tabs/wps-overview-display.php:95
960
  msgid "Disable the map display"
961
  msgstr ""
962
 
963
- #: includes/settings/tabs/wps-overview-display.php:101
964
  msgid "Get country location from Google"
965
  msgstr ""
966
 
967
- #: includes/settings/tabs/wps-overview-display.php:107
968
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
969
  msgstr ""
970
 
971
- #: includes/settings/tabs/wps-removal.php:15
972
  msgid "WP Statisitcs Removal"
973
  msgstr ""
974
 
975
- #: includes/settings/tabs/wps-removal.php:20
976
  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."
977
  msgstr ""
978
 
979
- #: includes/settings/tabs/wps-removal.php:23
980
  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."
981
  msgstr ""
982
 
983
- #: includes/settings/tabs/wps-removal.php:29
984
  msgid "Remove data and settings"
985
  msgstr ""
986
 
987
- #: includes/settings/tabs/wps-removal.php:34
988
  msgid "Remove"
989
  msgstr ""
990
 
991
- #: includes/settings/tabs/wps-removal.php:35
992
  msgid "Remove data and settings, this action cannot be undone."
993
  msgstr ""
994
 
995
- #: includes/settings/wps-settings.php:100
996
  msgid "General"
997
  msgstr ""
998
 
999
- #: includes/settings/wps-settings.php:101
1000
  msgid "Notifications"
1001
  msgstr ""
1002
 
1003
- #: includes/settings/wps-settings.php:102
1004
  msgid "Dashboard/Overview"
1005
  msgstr ""
1006
 
1007
- #: includes/settings/wps-settings.php:106
1008
  msgid "Maintenance"
1009
  msgstr ""
1010
 
1011
- #: includes/settings/wps-settings.php:107
1012
  msgid "Removal"
1013
  msgstr ""
1014
 
1015
- #: includes/settings/tabs/wps-access-level.php:85
1016
- #: includes/settings/tabs/wps-exclusions.php:234
1017
- #: includes/settings/tabs/wps-externals.php:286
1018
- #: includes/settings/tabs/wps-general.php:349
1019
- #: includes/settings/tabs/wps-maintenance.php:88
1020
- #: includes/settings/tabs/wps-notifications.php:201
1021
- #: includes/settings/tabs/wps-overview-display.php:116
1022
- #: includes/settings/tabs/wps-removal.php:42
1023
  msgid "Update"
1024
  msgstr ""
1025
 
1026
- #: schedule.php:10
1027
  msgid "Once Weekly"
1028
  msgstr ""
1029
 
1030
- #: schedule.php:17
1031
  msgid "Once Every 2 Weeks"
1032
  msgstr ""
1033
 
1034
- #: schedule.php:24
1035
  msgid "Once Every 4 Weeks"
1036
  msgstr ""
1037
 
1038
- #: widget.php:14 wp-statistics.php:408 wp-statistics.php:469
 
1039
  msgid "Statistics"
1040
  msgstr "পরিসংখ্যান"
1041
 
1042
- #: widget.php:15
1043
  msgid "Show site stats in sidebar."
1044
  msgstr ""
1045
 
1046
- #: widget.php:73 widget.php:262
1047
  msgid "Week Visit"
1048
  msgstr "এ সপ্তাহে দেখেছে"
1049
 
1050
- #: widget.php:80 widget.php:265
1051
  msgid "Month Visit"
1052
  msgstr "এ মাসে দেখেছে"
1053
 
1054
- #: widget.php:87 widget.php:268
1055
  msgid "Years Visit"
1056
  msgstr "এ বছরে দেখেছে"
1057
 
1058
- #: widget.php:108 widget.php:277
1059
  msgid "Total Page Views"
1060
  msgstr ""
1061
 
1062
- #: widget.php:116
1063
  msgid "Search Engine referred"
1064
  msgstr ""
1065
 
1066
- #: widget.php:123 widget.php:300
1067
  msgid "Total Posts"
1068
  msgstr "মোট পোষ্ট"
1069
 
1070
- #: widget.php:130 widget.php:303
1071
  msgid "Total Pages"
1072
  msgstr "মোট পাতা"
1073
 
1074
- #: widget.php:137 widget.php:306
1075
  msgid "Total Comments"
1076
  msgstr "মোট মন্তব্য"
1077
 
1078
- #: widget.php:144 widget.php:309
1079
  msgid "Total Spams"
1080
  msgstr "মোট স্প্যাম"
1081
 
1082
- #: widget.php:151 widget.php:312
1083
  msgid "Total Users"
1084
  msgstr "মোট ব্যবহারকারী"
1085
 
1086
- #: widget.php:158 widget.php:315
1087
  msgid "Average Posts"
1088
  msgstr "গড় পোষ্ট"
1089
 
1090
- #: widget.php:165 widget.php:318
1091
  msgid "Average Comments"
1092
  msgstr "গড় মন্তব্য"
1093
 
1094
- #: widget.php:172 widget.php:321
1095
  msgid "Average Users"
1096
  msgstr "গড় ব্যবহারকারী"
1097
 
1098
- #: shortcode.php:151 widget.php:179 widget.php:324
 
1099
  msgid "Last Post Date"
1100
  msgstr "শেষ পোষ্টের তারিখ"
1101
 
1102
- #: widget.php:240
1103
  msgid "Name"
1104
  msgstr "নাম"
1105
 
1106
- #: widget.php:244
1107
  msgid "Items"
1108
  msgstr "আইটেম"
1109
 
1110
- #: widget.php:256 wp-statistics.php:646
1111
  msgid "Yesterday visit"
1112
  msgstr "গতকাল দেখেছে"
1113
 
1114
- #: widget.php:280
1115
  msgid "Search Engine Referred"
1116
  msgstr ""
1117
 
1118
- #: widget.php:283
1119
  msgid "Select type of search engine"
1120
  msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
1121
 
1122
- #: wp-statistics.php:122
1123
  msgid "WP Statistics has been removed, please disable and delete it."
1124
  msgstr ""
1125
 
1126
- #. Plugin Name of the plugin/theme
1127
- #: wp-statistics.php:54
1128
  msgid "WP Statistics"
1129
  msgstr ""
1130
 
1131
- #. Description of the plugin/theme
1132
- #: wp-statistics.php:55
1133
  msgid "Complete statistics for your WordPress site."
1134
  msgstr ""
1135
 
1136
- #: wp-statistics.php:313 wp-statistics.php:428 wp-statistics.php:523
 
1137
  msgid "Settings"
1138
  msgstr "সেটিসং"
1139
 
1140
- #: wp-statistics.php:325
1141
  msgid "Click here to visit the plugin on WordPress.org"
1142
  msgstr ""
1143
 
1144
- #: wp-statistics.php:325
1145
  msgid "Visit WordPress.org page"
1146
  msgstr ""
1147
 
1148
- #: wp-statistics.php:328
1149
  msgid "Click here to rate and review this plugin on WordPress.org"
1150
  msgstr ""
1151
 
1152
- #: wp-statistics.php:328
1153
  msgid "Rate this plugin"
1154
  msgstr ""
1155
 
1156
- #: wp-statistics.php:372
1157
  msgid "WP Statistics - Hits"
1158
  msgstr ""
1159
 
1160
- #: wp-statistics.php:411 wp-statistics.php:472 wp-statistics.php:510
 
1161
  msgid "Overview"
1162
  msgstr ""
1163
 
1164
- #: wp-statistics.php:417 wp-statistics.php:515
1165
  msgid "Online"
1166
  msgstr ""
1167
 
1168
- #: wp-statistics.php:419 wp-statistics.php:517
1169
  msgid "Referrers"
1170
  msgstr ""
1171
 
1172
- #: shortcode.php:142 wp-statistics.php:420 wp-statistics.php:518
 
1173
  msgid "Searches"
1174
  msgstr ""
1175
 
1176
- #: wp-statistics.php:421 wp-statistics.php:519
1177
  msgid "Search Words"
1178
  msgstr ""
1179
 
1180
- #: wp-statistics.php:422 wp-statistics.php:520
1181
  msgid "Top Visitors Today"
1182
  msgstr ""
1183
 
1184
- #: wp-statistics.php:427 wp-statistics.php:522
1185
  msgid "Optimization"
1186
  msgstr ""
1187
 
1188
- #: wp-statistics.php:433 wp-statistics.php:486
1189
  msgid "Manual"
1190
  msgstr ""
1191
 
1192
- #: wp-statistics.php:501
1193
  msgid "Site"
1194
  msgstr ""
1195
 
1196
- #: wp-statistics.php:502
1197
  msgid "Options"
1198
  msgstr ""
1199
 
1200
- #: wp-statistics.php:628
1201
  msgid "Today visitor"
1202
  msgstr ""
1203
 
1204
- #: wp-statistics.php:634
1205
  msgid "Today visit"
1206
  msgstr ""
1207
 
1208
- #: wp-statistics.php:640
1209
  msgid "Yesterday visitor"
1210
  msgstr ""
1211
 
1212
- #: wp-statistics.php:652
1213
  msgid "View Stats"
1214
  msgstr ""
1215
 
1216
- #: wp-statistics.php:676
1217
  msgid "Download ODF file"
1218
  msgstr ""
1219
 
1220
- #: wp-statistics.php:677
1221
  msgid "Download HTML file"
1222
  msgstr ""
1223
 
1224
- #: wp-statistics.php:681
1225
  msgid "Manual file not found."
1226
  msgstr ""
1227
 
1228
- #: wp-statistics.php:748 wp-statistics.php:878 wp-statistics.php:913
 
1229
  msgid "You do not have sufficient permissions to access this page."
1230
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
1231
 
1232
- #: wp-statistics.php:301
1233
  msgid "WP Statistics %s installed on"
1234
  msgstr ""
1235
 
1236
- #: wps-updates.php:39
1237
  msgid "Error downloading GeoIP database from: %s - %s"
1238
  msgstr ""
1239
 
1240
- #: wps-updates.php:50
1241
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1242
  msgstr ""
1243
 
1244
- #: wps-updates.php:57
1245
  msgid "Error could not open destination GeoIP database for writing %s"
1246
  msgstr ""
1247
 
1248
- #: wps-updates.php:73
1249
  msgid "GeoIP Database updated successfully!"
1250
  msgstr ""
1251
 
1252
- #: wps-updates.php:98
1253
  msgid "GeoIP update on"
1254
  msgstr ""
1255
 
1256
- #: wps-updates.php:165
1257
  msgid "Error downloading browscap database from: %s - %s"
1258
  msgstr ""
1259
 
1260
- #: wps-updates.php:274
1261
  msgid "browscap database updated successfully!"
1262
  msgstr ""
1263
 
1264
- #: wps-updates.php:284
1265
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1266
  msgstr ""
1267
 
1268
- #: wps-updates.php:292
1269
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1270
  msgstr ""
1271
 
1272
- #: wps-updates.php:314
1273
  msgid "browscap already at current version!"
1274
  msgstr ""
1275
 
1276
- #: wps-updates.php:327
1277
  msgid "Browscap.ini update on"
1278
  msgstr ""
1279
 
1280
- #. Plugin URI of the plugin/theme
1281
- #. Author URI of the plugin/theme
1282
- msgid "http://wp-statistics.com/"
1283
- msgstr ""
1284
-
1285
- #. Author of the plugin/theme
1286
- msgid "Mostafa Soufi & Greg Ross"
1287
- msgstr ""
1288
-
1289
- #: dashboard.php:56
1290
  msgid "Quick Stats"
1291
  msgstr ""
1292
 
1293
- #: dashboard.php:57 includes/log/widgets/browsers.php:41
 
1294
  msgid "Top 10 Browsers"
1295
  msgstr ""
1296
 
1297
- #: dashboard.php:58 wp-statistics.php:457
1298
  msgid "Top 10 Countries"
1299
  msgstr ""
1300
 
1301
- #: dashboard.php:59
1302
  msgid "Today's Visitor Map"
1303
  msgstr ""
1304
 
1305
- #: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
1306
- #: wp-statistics.php:446
 
1307
  msgid "Hit Statistics"
1308
  msgstr ""
1309
 
1310
- #: dashboard.php:61 wp-statistics.php:450
1311
  msgid "Top 10 Pages"
1312
  msgstr ""
1313
 
1314
- #: dashboard.php:62 includes/log/last-visitor.php:36 wp-statistics.php:451
 
 
1315
  msgid "Recent Visitors"
1316
  msgstr ""
1317
 
1318
- #: dashboard.php:63 includes/log/top-referring.php:59
1319
- #: includes/log/top-referring.php:81 wp-statistics.php:456
 
 
1320
  msgid "Top Referring Sites"
1321
  msgstr ""
1322
 
1323
- #: dashboard.php:64 includes/log/widgets/quickstats.php:75
1324
- #: includes/log/widgets/summary.php:75 wp-statistics.php:448
 
 
1325
  msgid "Search Engine Referrals"
1326
  msgstr ""
1327
 
1328
- #: dashboard.php:65 wp-statistics.php:454
1329
  msgid "Summary"
1330
  msgstr ""
1331
 
1332
- #: dashboard.php:66 includes/log/last-search.php:31 wp-statistics.php:449
 
1333
  msgid "Latest Search Words"
1334
  msgstr ""
1335
 
1336
- #: dashboard.php:67
1337
  msgid "Top 10 Visitors Today"
1338
  msgstr ""
1339
 
1340
- #: editor.php:63
1341
  msgid "This post is not yet published."
1342
  msgstr ""
1343
 
1344
- #: includes/functions/geoip-populate.php:24
1345
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1346
  msgstr ""
1347
 
1348
- #: includes/functions/geoip-populate.php:48
1349
  msgid "Updated %s GeoIP records in the visitors database."
1350
  msgstr ""
1351
 
1352
- #: includes/functions/purge.php:21 includes/functions/purge.php:39
1353
- #: includes/functions/purge.php:50 includes/functions/purge.php:61
1354
- #: includes/functions/purge.php:94
 
 
1355
  msgid "%s data older than %s days purged successfully."
1356
  msgstr ""
1357
 
1358
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
1359
- #: includes/functions/purge.php:52 includes/functions/purge.php:63
1360
- #: includes/functions/purge.php:96
 
 
1361
  msgid "No records found to purge from %s!"
1362
  msgstr ""
1363
 
1364
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
 
1365
  msgid "Database pruned on"
1366
  msgstr ""
1367
 
1368
- #: includes/functions/purge.php:114
1369
  msgid "Please select a value over 30 days."
1370
  msgstr ""
1371
 
1372
- #: includes/log/all-browsers.php:21
1373
  msgid "Browser Statistics"
1374
  msgstr ""
1375
 
1376
- #: includes/log/all-browsers.php:29 includes/log/all-browsers.php:113
1377
- #: includes/log/all-browsers.php:248 includes/log/exclusions.php:72
1378
- #: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
1379
- #: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
1380
- #: includes/log/last-visitor.php:67 includes/log/online.php:17
1381
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
1382
- #: includes/log/top-countries.php:26 includes/log/top-pages.php:28
1383
- #: includes/log/top-pages.php:148 includes/log/top-referring.php:77
1384
- #: includes/log/top-visitors.php:40
 
 
 
 
 
 
 
 
1385
  msgid "Click to toggle"
1386
  msgstr ""
1387
 
1388
- #: includes/log/all-browsers.php:30 wp-statistics.php:413 wp-statistics.php:455
1389
- #: wp-statistics.php:511
 
1390
  msgid "Browsers"
1391
  msgstr ""
1392
 
1393
- #: includes/log/all-browsers.php:57
1394
  msgid "Browsers by type"
1395
  msgstr ""
1396
 
1397
- #: includes/log/all-browsers.php:114 includes/log/widgets/top.visitors.php:18
1398
- #: includes/optimization/tabs/wps-optimization-resources.php:302
 
1399
  msgid "Platform"
1400
  msgstr ""
1401
 
1402
- #: includes/log/all-browsers.php:141
1403
  msgid "Browsers by platform"
1404
  msgstr ""
1405
 
1406
- #: includes/log/all-browsers.php:249
1407
  msgid "%s Version"
1408
  msgstr ""
1409
 
1410
- #: includes/log/exclusions.php:8
1411
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1412
  msgstr ""
1413
 
1414
- #: includes/log/exclusions.php:64
1415
  msgid "Exclusions Statistics"
1416
  msgstr ""
1417
 
1418
- #: includes/functions/functions.php:959
1419
  msgid "10 Days"
1420
  msgstr ""
1421
 
1422
- #: includes/functions/functions.php:959
1423
  msgid "20 Days"
1424
  msgstr ""
1425
 
1426
- #: includes/functions/functions.php:959
1427
  msgid "30 Days"
1428
  msgstr ""
1429
 
1430
- #: includes/functions/functions.php:959
1431
  msgid "2 Months"
1432
  msgstr ""
1433
 
1434
- #: includes/functions/functions.php:959
1435
  msgid "3 Months"
1436
  msgstr ""
1437
 
1438
- #: includes/functions/functions.php:959
1439
  msgid "6 Months"
1440
  msgstr ""
1441
 
1442
- #: includes/functions/functions.php:959
1443
  msgid "9 Months"
1444
  msgstr ""
1445
 
1446
- #: includes/functions/functions.php:959
1447
  msgid "1 Year"
1448
  msgstr ""
1449
 
1450
- #: includes/log/exclusions.php:73
1451
  msgid "Exclusions Statistical Chart"
1452
  msgstr ""
1453
 
1454
- #: includes/log/exclusions.php:95
1455
  msgid "Excluded hits in the last"
1456
  msgstr ""
1457
 
1458
- #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1459
- #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:42
1460
- #: includes/log/widgets/search.php:42
1461
- #: includes/optimization/tabs/wps-optimization-purging.php:208
 
 
1462
  msgid "days"
1463
  msgstr ""
1464
 
1465
- #: includes/log/exclusions.php:116
1466
  msgid "Number of excluded hits"
1467
  msgstr ""
1468
 
1469
- #: includes/log/hit-statistics.php:27
1470
  msgid "Hits Statistics Chart"
1471
  msgstr ""
1472
 
1473
- #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:42
 
1474
  msgid "Hits in the last"
1475
  msgstr ""
1476
 
1477
- #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:63
 
1478
  msgid "Number of visits and visitors"
1479
  msgstr ""
1480
 
1481
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1482
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:24
1483
- #: includes/log/widgets/summary.php:24
 
 
1484
  msgid "Visit"
1485
  msgstr ""
1486
 
1487
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1488
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:23
1489
- #: includes/log/widgets/summary.php:23
 
 
1490
  msgid "Visitor"
1491
  msgstr ""
1492
 
1493
- #: includes/log/last-search.php:65
1494
  msgid "Latest Search Word Statistics"
1495
  msgstr ""
1496
 
1497
- #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1498
- #: includes/log/online.php:50 includes/log/widgets/google.map.php:68
1499
- #: includes/log/widgets/jqv.map.php:55 includes/log/widgets/recent.php:14
1500
- #: includes/log/widgets/words.php:27
 
 
 
1501
  msgid "#hash#"
1502
  msgstr ""
1503
 
1504
- #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1505
- #: includes/log/online.php:55 includes/log/top-referring.php:112
1506
- #: includes/log/widgets/recent.php:19 includes/log/widgets/words.php:42
1507
- #: includes/settings/tabs/wps-overview-display.php:60
 
 
 
1508
  msgid "Map"
1509
  msgstr ""
1510
 
1511
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1512
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1513
- #: includes/log/top-referring.php:153
 
 
1514
  msgid "Page"
1515
  msgstr ""
1516
 
1517
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1518
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1519
- #: includes/log/top-referring.php:153
 
 
1520
  msgid "From"
1521
  msgstr ""
1522
 
1523
- #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1524
- #: includes/log/top-referring.php:67 includes/log/top-referring.php:70
1525
- #: includes/optimization/tabs/wps-optimization-purging.php:192 widget.php:296
 
 
 
1526
  msgid "All"
1527
  msgstr "সকল"
1528
 
1529
- #: includes/log/last-visitor.php:68
1530
  msgid "Recent Visitor Statistics"
1531
  msgstr ""
1532
 
1533
- #: includes/log/online.php:11 includes/log/online.php:18
 
1534
  msgid "Online Users"
1535
  msgstr ""
1536
 
1537
- #: includes/log/online.php:75
1538
  msgid "Online for "
1539
  msgstr ""
1540
 
1541
- #: includes/log/page-statistics.php:26
1542
  msgid "Page Trend for Post ID"
1543
  msgstr ""
1544
 
1545
- #: includes/log/page-statistics.php:35
1546
  msgid "Page Trend"
1547
  msgstr ""
1548
 
1549
- #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
 
1550
  msgid "Search Engine Referral Statistics"
1551
  msgstr ""
1552
 
1553
- #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:42
 
1554
  msgid "Search engine referrals in the last"
1555
  msgstr ""
1556
 
1557
- #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:63
 
1558
  msgid "Number of referrals"
1559
  msgstr ""
1560
 
1561
- #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1562
- #: includes/log/widgets/quickstats.php:58
1563
- #: includes/log/widgets/quickstats.php:105 includes/log/widgets/search.php:77
1564
- #: includes/log/widgets/summary.php:58 includes/log/widgets/summary.php:105
 
 
 
1565
  msgid "Total"
1566
  msgstr ""
1567
 
1568
- #: includes/log/top-countries.php:18 includes/log/top-countries.php:27
 
1569
  msgid "Top Countries"
1570
  msgstr ""
1571
 
1572
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:9
1573
- #: includes/log/widgets/top.visitors.php:11
 
1574
  msgid "Rank"
1575
  msgstr ""
1576
 
1577
- #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:10
1578
- #: includes/log/widgets/top.visitors.php:13
 
1579
  msgid "Flag"
1580
  msgstr ""
1581
 
1582
- #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:11
1583
- #: includes/log/widgets/top.visitors.php:14
 
1584
  msgid "Country"
1585
  msgstr ""
1586
 
1587
- #: includes/log/top-countries.php:34 includes/log/widgets/countries.php:12
 
1588
  msgid "Visitor Count"
1589
  msgstr ""
1590
 
1591
- #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
 
1592
  msgid "Top Pages"
1593
  msgstr ""
1594
 
1595
- #: includes/log/top-pages.php:29
1596
  msgid "Top 5 Pages Trends"
1597
  msgstr ""
1598
 
1599
- #: includes/log/top-pages.php:60
1600
  msgid "Top 5 Page Trending Stats"
1601
  msgstr ""
1602
 
1603
- #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
 
1604
  msgid "Number of Hits"
1605
  msgstr ""
1606
 
1607
- #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:13
 
1608
  msgid "No page title found"
1609
  msgstr ""
1610
 
1611
- #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:16
1612
- #: includes/optimization/tabs/wps-optimization-historical.php:37
1613
- #: includes/settings/tabs/wps-general.php:122
1614
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
 
 
1615
  msgid "Visits"
1616
  msgstr ""
1617
 
1618
- #: includes/log/top-referring.php:4
1619
  msgid "To be added soon"
1620
  msgstr ""
1621
 
1622
- #: includes/log/top-referring.php:79
1623
  msgid "Referring sites from"
1624
  msgstr ""
1625
 
1626
- #: includes/log/top-referring.php:137 includes/log/widgets/referring.php:29
 
1627
  msgid "References"
1628
  msgstr ""
1629
 
1630
- #: includes/log/top-visitors.php:12
1631
  msgid "Top 100 Visitors Today"
1632
  msgstr ""
1633
 
1634
- #: includes/log/log.php:10
1635
  msgid "About WP Statistics Version %s"
1636
  msgstr ""
1637
 
1638
- #: includes/log/widgets/about.php:11
1639
  msgid "Website"
1640
  msgstr ""
1641
 
1642
- #: includes/log/widgets/about.php:12
1643
  msgid "Rate and Review"
1644
  msgstr ""
1645
 
1646
- #: includes/log/widgets/about.php:16
1647
  msgid "More Information"
1648
  msgstr ""
1649
 
1650
- #: includes/log/widgets/about.php:25 includes/settings/tabs/wps-about.php:12
 
1651
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1652
  msgstr ""
1653
 
1654
- #: includes/log/widgets/browsers.php:34
1655
  msgid "Other"
1656
  msgstr ""
1657
 
1658
- #: wp-statistics.php:445
1659
  msgid "Today Visitors Map"
1660
  msgstr ""
1661
 
1662
- #: includes/log/widgets/referring.php:30
1663
  msgid "Address"
1664
  msgstr ""
1665
 
1666
- #: includes/log/widgets/quickstats.php:12 includes/log/widgets/summary.php:12
 
1667
  msgid "User(s) Online"
1668
  msgstr ""
1669
 
1670
- #: includes/log/widgets/quickstats.php:28
1671
- #: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
1672
- #: includes/log/widgets/summary.php:80
 
1673
  msgid "Today"
1674
  msgstr ""
1675
 
1676
- #: includes/log/widgets/quickstats.php:34
1677
- #: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
1678
- #: includes/log/widgets/summary.php:81
 
1679
  msgid "Yesterday"
1680
  msgstr ""
1681
 
1682
- #: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
 
1683
  msgid "Daily Total"
1684
  msgstr ""
1685
 
1686
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1687
  msgid "Current Time and Date"
1688
  msgstr ""
1689
 
1690
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1691
  msgid "(Adjustment)"
1692
  msgstr ""
1693
 
1694
- #: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
 
1695
  msgid "Date: %s"
1696
  msgstr ""
1697
 
1698
- #: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
 
1699
  msgid "Time: %s"
1700
  msgstr ""
1701
 
1702
- #: includes/log/widgets/top.visitors.php:12
1703
- #: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:337
1704
- #: wp-statistics.php:416 wp-statistics.php:514
 
1705
  msgid "Hits"
1706
  msgstr ""
1707
 
1708
- #: includes/log/widgets/top.visitors.php:15
1709
  msgid "IP"
1710
  msgstr "আইপি"
1711
 
1712
- #: includes/log/widgets/top.visitors.php:17
1713
  msgid "Agent"
1714
  msgstr ""
1715
 
1716
- #: includes/log/widgets/top.visitors.php:19
1717
- #: includes/optimization/tabs/wps-optimization-resources.php:291
1718
  msgid "Version"
1719
  msgstr ""
1720
 
1721
- #: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:284
1722
- #: includes/optimization/wps-optimization.php:6
 
 
1723
  msgid "Access denied!"
1724
  msgstr ""
1725
 
1726
- #: ajax.php:31
1727
  msgid "%s agent data deleted successfully."
1728
  msgstr ""
1729
 
1730
- #: ajax.php:34
1731
  msgid "No agent data found to remove!"
1732
  msgstr ""
1733
 
1734
- #: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
 
1735
  msgid "Please select the desired items."
1736
  msgstr ""
1737
 
1738
- #: ajax.php:62
1739
  msgid "%s platform data deleted successfully."
1740
  msgstr ""
1741
 
1742
- #: ajax.php:65
1743
  msgid "No platform data found to remove!"
1744
  msgstr ""
1745
 
1746
- #: includes/functions/functions.php:1051
1747
  msgid "%s table data deleted successfully."
1748
  msgstr ""
1749
 
1750
- #: includes/functions/functions.php:1055
1751
  msgid "Error, %s not emptied!"
1752
  msgstr ""
1753
 
1754
- #: includes/optimization/tabs/wps-optimization-database.php:5
1755
  msgid "Database Setup"
1756
  msgstr ""
1757
 
1758
- #: includes/optimization/tabs/wps-optimization-database.php:10
1759
  msgid "Re-run Install"
1760
  msgstr ""
1761
 
1762
- #: includes/optimization/tabs/wps-optimization-database.php:14
1763
  msgid "Install Now!"
1764
  msgstr ""
1765
 
1766
- #: includes/optimization/tabs/wps-optimization-database.php:15
1767
  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."
1768
  msgstr ""
1769
 
1770
- #: includes/optimization/tabs/wps-optimization-database.php:20
1771
  msgid "Database Index"
1772
  msgstr ""
1773
 
1774
- #: includes/optimization/tabs/wps-optimization-database.php:25
1775
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1776
- #: wp-statistics.php:414 wp-statistics.php:512
1777
  msgid "Countries"
1778
  msgstr ""
1779
 
1780
- #: includes/optimization/tabs/wps-optimization-database.php:42
1781
- #: includes/optimization/tabs/wps-optimization-database.php:74
1782
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1783
- #: includes/optimization/tabs/wps-optimization-updates.php:40
1784
  msgid "Update Now!"
1785
  msgstr ""
1786
 
1787
- #: includes/optimization/tabs/wps-optimization-database.php:43
1788
  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."
1789
  msgstr ""
1790
 
1791
- #: includes/optimization/tabs/wps-optimization-database.php:44
1792
- #: includes/optimization/tabs/wps-optimization-database.php:108
1793
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1794
  msgstr ""
1795
 
1796
- #: includes/optimization/tabs/wps-optimization-database.php:50
1797
  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."
1798
  msgstr ""
1799
 
1800
- #: includes/optimization/tabs/wps-optimization-database.php:51
1801
- #: includes/optimization/tabs/wps-optimization-database.php:83
1802
- #: includes/optimization/tabs/wps-optimization-database.php:114
1803
  msgid "Congratulations, your installation is already up to date, nothing to do."
1804
  msgstr ""
1805
 
1806
- #: includes/optimization/tabs/wps-optimization-export.php:8
1807
- #: includes/optimization/wps-optimization.php:235
1808
  msgid "Export"
1809
  msgstr ""
1810
 
1811
- #: includes/optimization/tabs/wps-optimization-export.php:13
1812
  msgid "Export from"
1813
  msgstr ""
1814
 
1815
- #: includes/optimization/tabs/wps-optimization-export.php:18
1816
- #: includes/optimization/tabs/wps-optimization-export.php:37
1817
- #: includes/optimization/tabs/wps-optimization-purging.php:185
1818
- #: includes/optimization/tabs/wps-optimization-purging.php:242
1819
- #: includes/optimization/tabs/wps-optimization-purging.php:266
1820
- #: includes/settings/tabs/wps-notifications.php:134
1821
- #: includes/settings/tabs/wps-notifications.php:164
1822
  msgid "Please select"
1823
  msgstr ""
1824
 
1825
- #: includes/optimization/tabs/wps-optimization-export.php:26
1826
  msgid "Select the table for the output file."
1827
  msgstr ""
1828
 
1829
- #: includes/optimization/tabs/wps-optimization-export.php:32
1830
  msgid "Export To"
1831
  msgstr ""
1832
 
1833
- #: includes/optimization/tabs/wps-optimization-export.php:42
1834
  msgid "Select the output file type."
1835
  msgstr ""
1836
 
1837
- #: includes/optimization/tabs/wps-optimization-export.php:48
1838
  msgid "Include Header Row"
1839
  msgstr ""
1840
 
1841
- #: includes/optimization/tabs/wps-optimization-export.php:53
1842
  msgid "Include a header row as the first line of the exported file."
1843
  msgstr ""
1844
 
1845
- #: includes/optimization/tabs/wps-optimization-export.php:54
1846
  msgid "Start Now!"
1847
  msgstr ""
1848
 
1849
- #: includes/optimization/tabs/wps-optimization-historical.php:15
1850
  msgid "Historical Values"
1851
  msgstr ""
1852
 
1853
- #: includes/optimization/tabs/wps-optimization-historical.php:20
1854
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1855
  msgstr ""
1856
 
1857
- #: includes/optimization/tabs/wps-optimization-historical.php:26
1858
- #: includes/settings/tabs/wps-general.php:138
1859
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1860
- #: wp-statistics.php:423 wp-statistics.php:521
 
1861
  msgid "Visitors"
1862
  msgstr ""
1863
 
1864
- #: includes/optimization/tabs/wps-optimization-historical.php:31
1865
  msgid "Number of historical number of visitors to the site (current value is %s)."
1866
  msgstr ""
1867
 
1868
- #: includes/optimization/tabs/wps-optimization-historical.php:42
1869
  msgid "Number of historical number of visits to the site (current value is %s)."
1870
  msgstr ""
1871
 
1872
- #: includes/optimization/tabs/wps-optimization-historical.php:48
1873
  msgid "Update now!"
1874
  msgstr ""
1875
 
1876
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1877
- #: includes/optimization/tabs/wps-optimization-purging.php:43
1878
- #: includes/optimization/tabs/wps-optimization-purging.php:75
1879
- #: includes/optimization/tabs/wps-optimization-purging.php:107
1880
- #: includes/optimization/tabs/wps-optimization-purging.php:141
1881
  msgid "Are you sure?"
1882
  msgstr ""
1883
 
1884
- #: includes/optimization/tabs/wps-optimization-purging.php:175
1885
  msgid "Data"
1886
  msgstr ""
1887
 
1888
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1889
  msgid "Empty Table"
1890
  msgstr ""
1891
 
1892
- #: includes/optimization/tabs/wps-optimization-purging.php:194
1893
  msgid "All data table will be lost."
1894
  msgstr ""
1895
 
1896
- #: includes/optimization/tabs/wps-optimization-purging.php:195
1897
  msgid "Clear now!"
1898
  msgstr ""
1899
 
1900
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1901
  msgid "Purge records older than"
1902
  msgstr ""
1903
 
1904
- #: includes/optimization/tabs/wps-optimization-purging.php:209
1905
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1906
  msgstr ""
1907
 
1908
- #: includes/optimization/tabs/wps-optimization-purging.php:210
1909
- #: includes/optimization/tabs/wps-optimization-purging.php:225
1910
  msgid "Purge now!"
1911
  msgstr ""
1912
 
1913
- #: includes/optimization/tabs/wps-optimization-purging.php:232
1914
  msgid "Delete User Agent Types"
1915
  msgstr ""
1916
 
1917
- #: includes/optimization/tabs/wps-optimization-purging.php:237
1918
  msgid "Delete Agents"
1919
  msgstr ""
1920
 
1921
- #: includes/optimization/tabs/wps-optimization-purging.php:252
1922
  msgid "All visitor data will be lost for this agent type."
1923
  msgstr ""
1924
 
1925
- #: includes/optimization/tabs/wps-optimization-purging.php:253
1926
- #: includes/optimization/tabs/wps-optimization-purging.php:277
1927
  msgid "Delete now!"
1928
  msgstr ""
1929
 
1930
- #: includes/optimization/tabs/wps-optimization-purging.php:261
1931
  msgid "Delete Platforms"
1932
  msgstr ""
1933
 
1934
- #: includes/optimization/tabs/wps-optimization-purging.php:276
1935
  msgid "All visitor data will be lost for this platform type."
1936
  msgstr ""
1937
 
1938
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1939
  msgid "Resources"
1940
  msgstr ""
1941
 
1942
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1943
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1944
  msgid "Memory usage in PHP"
1945
  msgstr ""
1946
 
1947
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1948
  msgid "Byte"
1949
  msgstr ""
1950
 
1951
- #: includes/optimization/tabs/wps-optimization-resources.php:33
1952
  msgid "PHP Memory Limit"
1953
  msgstr ""
1954
 
1955
- #: includes/optimization/tabs/wps-optimization-resources.php:38
1956
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1957
  msgstr ""
1958
 
1959
- #: includes/optimization/tabs/wps-optimization-resources.php:44
1960
- #: includes/optimization/tabs/wps-optimization-resources.php:55
1961
- #: includes/optimization/tabs/wps-optimization-resources.php:66
1962
- #: includes/optimization/tabs/wps-optimization-resources.php:77
1963
- #: includes/optimization/tabs/wps-optimization-resources.php:88
1964
- #: includes/optimization/tabs/wps-optimization-resources.php:99
1965
- #: includes/optimization/tabs/wps-optimization-resources.php:110
1966
  msgid "Number of rows in the %s table"
1967
  msgstr ""
1968
 
1969
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1970
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1971
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1972
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1973
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1974
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1975
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1976
  msgid "Row"
1977
  msgstr ""
1978
 
1979
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1980
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1981
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1982
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1983
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1984
- #: includes/optimization/tabs/wps-optimization-resources.php:104
1985
- #: includes/optimization/tabs/wps-optimization-resources.php:115
1986
  msgid "Number of rows"
1987
  msgstr ""
1988
 
1989
- #: includes/optimization/tabs/wps-optimization-resources.php:120
1990
  msgid "Version Info"
1991
  msgstr ""
1992
 
1993
- #: includes/optimization/tabs/wps-optimization-resources.php:125
1994
  msgid "WP Statistics Version"
1995
  msgstr ""
1996
 
1997
- #: includes/optimization/tabs/wps-optimization-resources.php:130
1998
  msgid "The WP Statistics version you are running."
1999
  msgstr ""
2000
 
2001
- #: includes/optimization/tabs/wps-optimization-resources.php:136
2002
  msgid "PHP Version"
2003
  msgstr ""
2004
 
2005
- #: includes/optimization/tabs/wps-optimization-resources.php:141
2006
  msgid "The PHP version you are running."
2007
  msgstr ""
2008
 
2009
- #: includes/optimization/tabs/wps-optimization-resources.php:147
2010
  msgid "PHP Safe Mode"
2011
  msgstr ""
2012
 
2013
- #: includes/optimization/tabs/wps-optimization-resources.php:152
2014
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2015
  msgstr ""
2016
 
2017
- #: includes/optimization/tabs/wps-optimization-resources.php:158
2018
  msgid "jQuery Version"
2019
  msgstr ""
2020
 
2021
- #: includes/optimization/tabs/wps-optimization-resources.php:163
2022
  msgid "The jQuery version you are running."
2023
  msgstr ""
2024
 
2025
- #: includes/optimization/tabs/wps-optimization-resources.php:169
2026
  msgid "cURL Version"
2027
  msgstr ""
2028
 
2029
- #: includes/optimization/tabs/wps-optimization-resources.php:173
2030
  msgid "cURL not installed"
2031
  msgstr ""
2032
 
2033
- #: includes/optimization/tabs/wps-optimization-resources.php:174
2034
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2035
  msgstr ""
2036
 
2037
- #: includes/optimization/tabs/wps-optimization-resources.php:180
2038
- msgid "BC Math"
2039
- msgstr ""
2040
-
2041
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2042
  msgid "Installed"
2043
  msgstr ""
2044
 
2045
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2046
  msgid "Not installed"
2047
  msgstr ""
2048
 
2049
- #: includes/optimization/tabs/wps-optimization-resources.php:185
2050
- 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."
2051
- msgstr ""
2052
-
2053
- #: includes/optimization/tabs/wps-optimization-resources.php:190
2054
  msgid "File Info"
2055
  msgstr ""
2056
 
2057
- #: includes/optimization/tabs/wps-optimization-resources.php:195
2058
  msgid "GeoIP Database"
2059
  msgstr ""
2060
 
2061
- #: includes/optimization/tabs/wps-optimization-resources.php:204
2062
  msgid "Database file does not exist."
2063
  msgstr ""
2064
 
2065
- #: includes/optimization/tabs/wps-optimization-resources.php:206
2066
- #: includes/optimization/tabs/wps-optimization-resources.php:225
2067
- #: includes/optimization/tabs/wps-optimization-resources.php:244
2068
  msgid ", created on "
2069
  msgstr ""
2070
 
2071
- #: includes/optimization/tabs/wps-optimization-resources.php:208
2072
  msgid "The file size and date of the GeoIP database."
2073
  msgstr ""
2074
 
2075
- #: includes/optimization/tabs/wps-optimization-resources.php:214
2076
  msgid "browscap.ini File"
2077
  msgstr ""
2078
 
2079
- #: includes/optimization/tabs/wps-optimization-resources.php:223
2080
  msgid "browscap.ini file does not exist."
2081
  msgstr ""
2082
 
2083
- #: includes/optimization/tabs/wps-optimization-resources.php:227
2084
  msgid "The file size and date of the browscap.ini file."
2085
  msgstr ""
2086
 
2087
- #: includes/optimization/tabs/wps-optimization-resources.php:233
2088
  msgid "browscap Cache File"
2089
  msgstr ""
2090
 
2091
- #: includes/optimization/tabs/wps-optimization-resources.php:242
2092
  msgid "browscap cache file does not exist."
2093
  msgstr ""
2094
 
2095
- #: includes/optimization/tabs/wps-optimization-resources.php:246
2096
  msgid "The file size and date of the browscap cache file."
2097
  msgstr ""
2098
 
2099
- #: includes/optimization/tabs/wps-optimization-resources.php:251
2100
  msgid "Client Info"
2101
  msgstr ""
2102
 
2103
- #: includes/optimization/tabs/wps-optimization-resources.php:256
2104
  msgid "Client IP"
2105
  msgstr ""
2106
 
2107
- #: includes/optimization/tabs/wps-optimization-resources.php:261
2108
  msgid "The client IP address."
2109
  msgstr ""
2110
 
2111
- #: includes/optimization/tabs/wps-optimization-resources.php:267
2112
  msgid "User Agent"
2113
  msgstr ""
2114
 
2115
- #: includes/optimization/tabs/wps-optimization-resources.php:272
2116
  msgid "The client user agent string."
2117
  msgstr ""
2118
 
2119
- #: includes/optimization/tabs/wps-optimization-resources.php:278
2120
  msgid "Browser"
2121
  msgstr ""
2122
 
2123
- #: includes/optimization/tabs/wps-optimization-resources.php:285
2124
  msgid "The detected client browser."
2125
  msgstr ""
2126
 
2127
- #: includes/optimization/tabs/wps-optimization-resources.php:296
2128
  msgid "The detected client browser version."
2129
  msgstr ""
2130
 
2131
- #: includes/optimization/tabs/wps-optimization-resources.php:307
2132
  msgid "The detected client platform."
2133
  msgstr ""
2134
 
2135
- #: includes/optimization/tabs/wps-optimization-updates.php:4
2136
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2137
  msgstr ""
2138
 
2139
- #: includes/optimization/tabs/wps-optimization-updates.php:16
2140
  msgid "GeoIP Options"
2141
  msgstr ""
2142
 
2143
- #: includes/optimization/tabs/wps-optimization-updates.php:26
2144
  msgid "Updates any unknown location data in the database, this may take a while"
2145
  msgstr ""
2146
 
2147
- #: includes/optimization/tabs/wps-optimization-updates.php:31
2148
- #: includes/settings/tabs/wps-general.php:66
2149
  msgid "IP Addresses"
2150
  msgstr ""
2151
 
2152
- #: includes/optimization/tabs/wps-optimization-updates.php:36
2153
- #: includes/settings/tabs/wps-general.php:71
2154
  msgid "Hash IP Addresses"
2155
  msgstr ""
2156
 
2157
- #: includes/optimization/tabs/wps-optimization-updates.php:41
2158
  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"
2159
  msgstr ""
2160
 
2161
- #: includes/optimization/wps-optimization.php:43
2162
  msgid "IP Addresses replaced with hash values."
2163
  msgstr ""
2164
 
2165
- #: includes/optimization/wps-optimization.php:51
2166
  msgid "Install routine complete."
2167
  msgstr ""
2168
 
2169
- #: includes/optimization/wps-optimization.php:234
2170
  msgid "Resources/Information"
2171
  msgstr ""
2172
 
2173
- #: includes/optimization/wps-optimization.php:236
2174
  msgid "Purging"
2175
  msgstr ""
2176
 
2177
- #: includes/optimization/wps-optimization.php:237
2178
  msgid "Database"
2179
  msgstr ""
2180
 
2181
- #: includes/optimization/wps-optimization.php:238
2182
  msgid "Updates"
2183
  msgstr ""
2184
 
2185
- #: includes/optimization/wps-optimization.php:239
2186
  msgid "Historical"
2187
  msgstr ""
2188
 
2189
- #: includes/settings/tabs/wps-about.php:8
2190
  msgid "WP Statistics V%s"
2191
  msgstr ""
2192
 
2193
- #: includes/settings/tabs/wps-about.php:28
2194
  msgid "Visit Us Online"
2195
  msgstr ""
2196
 
2197
- #: includes/settings/tabs/wps-about.php:32
2198
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2199
  msgstr ""
2200
 
2201
- #: includes/settings/tabs/wps-about.php:32
2202
  msgid "website"
2203
  msgstr ""
2204
 
2205
- #: includes/settings/tabs/wps-about.php:36
2206
  msgid "Rate and Review at WordPress.org"
2207
  msgstr ""
2208
 
2209
- #: includes/settings/tabs/wps-about.php:40
2210
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2211
  msgstr ""
2212
 
2213
- #: includes/settings/tabs/wps-about.php:40
2214
  msgid "rating and review"
2215
  msgstr ""
2216
 
2217
- #: includes/settings/tabs/wps-about.php:40
2218
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2219
  msgstr ""
2220
 
2221
- #: includes/settings/tabs/wps-about.php:44
2222
  msgid "Translations"
2223
  msgstr ""
2224
 
2225
- #: includes/settings/tabs/wps-about.php:48
2226
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2227
  msgstr ""
2228
 
2229
- #: includes/settings/tabs/wps-about.php:48
2230
  msgid "translation collaboration site"
2231
  msgstr ""
2232
 
2233
- #: includes/settings/tabs/wps-about.php:48
2234
  msgid "drop us a line"
2235
  msgstr ""
2236
 
2237
- #: includes/settings/tabs/wps-about.php:52
2238
  msgid "Support"
2239
  msgstr ""
2240
 
2241
- #: includes/settings/tabs/wps-about.php:57
2242
  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:"
2243
  msgstr ""
2244
 
2245
- #: includes/settings/tabs/wps-about.php:60
2246
- #: includes/settings/tabs/wps-about.php:61
2247
  msgid "Have you read the %s?"
2248
  msgstr ""
2249
 
2250
- #: includes/settings/tabs/wps-about.php:60
2251
  msgid "FAQs"
2252
  msgstr ""
2253
 
2254
- #: includes/settings/tabs/wps-about.php:61
2255
  msgid "manual"
2256
  msgstr ""
2257
 
2258
- #: includes/settings/tabs/wps-about.php:62
2259
  msgid "Have you search the %s for a similar issue?"
2260
  msgstr ""
2261
 
2262
- #: includes/settings/tabs/wps-about.php:62
2263
  msgid "support forum"
2264
  msgstr ""
2265
 
2266
- #: includes/settings/tabs/wps-about.php:63
2267
  msgid "Have you search the Internet for any error messages you are receiving?"
2268
  msgstr ""
2269
 
2270
- #: includes/settings/tabs/wps-about.php:64
2271
  msgid "Make sure you have access to your PHP error logs."
2272
  msgstr ""
2273
 
2274
- #: includes/settings/tabs/wps-about.php:67
2275
  msgid "And a few things to double-check:"
2276
  msgstr ""
2277
 
2278
- #: includes/settings/tabs/wps-about.php:70
2279
  msgid "How's your memory_limit in php.ini?"
2280
  msgstr ""
2281
 
2282
- #: includes/settings/tabs/wps-about.php:71
2283
  msgid "Have you tried disabling any other plugins you may have installed?"
2284
  msgstr ""
2285
 
2286
- #: includes/settings/tabs/wps-about.php:72
2287
  msgid "Have you tried using the default WordPress theme?"
2288
  msgstr ""
2289
 
2290
- #: includes/settings/tabs/wps-about.php:73
2291
  msgid "Have you double checked the plugin settings?"
2292
  msgstr ""
2293
 
2294
- #: includes/settings/tabs/wps-about.php:74
2295
  msgid "Do you have all the required PHP extensions installed?"
2296
  msgstr ""
2297
 
2298
- #: includes/settings/tabs/wps-about.php:75
2299
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2300
  msgstr ""
2301
 
2302
- #: includes/settings/tabs/wps-about.php:76
2303
  msgid "Have you checked your PHP and web server error logs?"
2304
  msgstr ""
2305
 
2306
- #: includes/settings/tabs/wps-about.php:79
2307
  msgid "Still not having any luck?"
2308
  msgstr ""
2309
 
2310
- #: includes/settings/tabs/wps-about.php:79
2311
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2312
  msgstr ""
2313
 
2314
- #: includes/settings/tabs/wps-about.php:79
2315
  msgid "WordPress.org support forum"
2316
  msgstr ""
2317
 
2318
- #: includes/settings/tabs/wps-about.php:83
2319
  msgid "Alternatively %s support is available as well."
2320
  msgstr ""
2321
 
2322
- #: includes/settings/tabs/wps-about.php:83
2323
  msgid "Farsi"
2324
  msgstr ""
2325
 
2326
- #: includes/settings/tabs/wps-exclusions.php:21
2327
  msgid "WP Statistics Honey Pot Page"
2328
  msgstr ""
2329
 
2330
- #: includes/settings/tabs/wps-exclusions.php:22
2331
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2332
  msgstr ""
2333
 
2334
- #: includes/settings/tabs/wps-access-level.php:23
2335
- #: includes/settings/wps-settings.php:103
2336
  msgid "Access Levels"
2337
  msgstr ""
2338
 
2339
- #: includes/settings/tabs/wps-access-level.php:52
2340
  msgid "Required user level to view WP Statistics"
2341
  msgstr ""
2342
 
2343
- #: includes/settings/tabs/wps-access-level.php:67
2344
  msgid "Required user level to manage WP Statistics"
2345
  msgstr ""
2346
 
2347
- #: includes/settings/tabs/wps-access-level.php:75
2348
  msgid "See the %s for details on capability levels."
2349
  msgstr ""
2350
 
2351
- #: includes/settings/tabs/wps-access-level.php:75
2352
  msgid "WordPress Roles and Capabilities page"
2353
  msgstr ""
2354
 
2355
- #: includes/settings/tabs/wps-access-level.php:76
2356
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2357
  msgstr ""
2358
 
2359
- #: includes/settings/tabs/wps-access-level.php:77
2360
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2361
  msgstr ""
2362
 
2363
- #: includes/settings/tabs/wps-access-level.php:78
2364
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2365
  msgstr ""
2366
 
2367
- #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2368
- #: includes/settings/wps-settings.php:104 wp-statistics.php:415
2369
- #: wp-statistics.php:513
 
2370
  msgid "Exclusions"
2371
  msgstr ""
2372
 
2373
- #: includes/settings/tabs/wps-exclusions.php:50
2374
  msgid "Record exclusions"
2375
  msgstr ""
2376
 
2377
- #: includes/settings/tabs/wps-exclusions.php:52
2378
- #: includes/settings/tabs/wps-exclusions.php:106
2379
- #: includes/settings/tabs/wps-exclusions.php:133
2380
- #: includes/settings/tabs/wps-exclusions.php:150
2381
  msgid "Enable"
2382
  msgstr ""
2383
 
2384
- #: includes/settings/tabs/wps-exclusions.php:53
2385
  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."
2386
  msgstr ""
2387
 
2388
- #: includes/settings/tabs/wps-exclusions.php:58
2389
  msgid "Exclude User Roles"
2390
  msgstr ""
2391
 
2392
- #: includes/settings/tabs/wps-exclusions.php:74
2393
- #: includes/settings/tabs/wps-exclusions.php:196
2394
- #: includes/settings/tabs/wps-exclusions.php:203
2395
- #: includes/settings/tabs/wps-exclusions.php:210
2396
- #: includes/settings/tabs/wps-exclusions.php:217
2397
  msgid "Exclude"
2398
  msgstr ""
2399
 
2400
- #: includes/settings/tabs/wps-exclusions.php:75
2401
  msgid "Exclude %s role from data collection."
2402
  msgstr ""
2403
 
2404
- #: includes/settings/tabs/wps-exclusions.php:81
2405
  msgid "IP/Robot Exclusions"
2406
  msgstr ""
2407
 
2408
- #: includes/settings/tabs/wps-exclusions.php:85
2409
  msgid "Robot list"
2410
  msgstr ""
2411
 
2412
- #: includes/settings/tabs/wps-exclusions.php:98
2413
  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."
2414
  msgstr ""
2415
 
2416
- #: includes/settings/tabs/wps-exclusions.php:99
2417
  msgid "Reset to Default"
2418
  msgstr ""
2419
 
2420
- #: includes/settings/tabs/wps-exclusions.php:104
2421
  msgid "Force robot list update after upgrades"
2422
  msgstr ""
2423
 
2424
- #: includes/settings/tabs/wps-exclusions.php:107
2425
  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."
2426
  msgstr ""
2427
 
2428
- #: includes/settings/tabs/wps-exclusions.php:112
2429
  msgid "Robot visit threshold"
2430
  msgstr ""
2431
 
2432
- #: includes/settings/tabs/wps-exclusions.php:115
2433
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2434
  msgstr ""
2435
 
2436
- #: includes/settings/tabs/wps-exclusions.php:120
2437
  msgid "Excluded IP address list"
2438
  msgstr ""
2439
 
2440
- #: includes/settings/tabs/wps-exclusions.php:123
2441
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2442
  msgstr ""
2443
 
2444
- #: includes/settings/tabs/wps-exclusions.php:124
2445
  msgid "Add 10.0.0.0"
2446
  msgstr ""
2447
 
2448
- #: includes/settings/tabs/wps-exclusions.php:125
2449
  msgid "Add 172.16.0.0"
2450
  msgstr ""
2451
 
2452
- #: includes/settings/tabs/wps-exclusions.php:126
2453
  msgid "Add 192.168.0.0"
2454
  msgstr ""
2455
 
2456
- #: includes/settings/tabs/wps-exclusions.php:131
2457
  msgid "Use honey pot"
2458
  msgstr ""
2459
 
2460
- #: includes/settings/tabs/wps-exclusions.php:134
2461
  msgid "Use a honey pot page to identify robots."
2462
  msgstr ""
2463
 
2464
- #: includes/settings/tabs/wps-exclusions.php:139
2465
  msgid "Honey pot post id"
2466
  msgstr ""
2467
 
2468
- #: includes/settings/tabs/wps-exclusions.php:142
2469
  msgid "The post id to use for the honeypot page."
2470
  msgstr ""
2471
 
2472
- #: includes/settings/tabs/wps-exclusions.php:143
2473
  msgid "Create a new honey pot page"
2474
  msgstr ""
2475
 
2476
- #: includes/settings/tabs/wps-exclusions.php:156
2477
  msgid "GeoIP Exclusions"
2478
  msgstr ""
2479
 
2480
- #: includes/settings/tabs/wps-exclusions.php:160
2481
  msgid "Excluded countries list"
2482
  msgstr ""
2483
 
2484
- #: includes/settings/tabs/wps-exclusions.php:163
2485
  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."
2486
  msgstr ""
2487
 
2488
- #: includes/settings/tabs/wps-exclusions.php:168
2489
  msgid "Included countries list"
2490
  msgstr ""
2491
 
2492
- #: includes/settings/tabs/wps-exclusions.php:171
2493
  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."
2494
  msgstr ""
2495
 
2496
- #: includes/settings/tabs/wps-exclusions.php:176
2497
  msgid "Host Exclusions"
2498
  msgstr ""
2499
 
2500
- #: includes/settings/tabs/wps-exclusions.php:180
2501
  msgid "Excluded hosts list"
2502
  msgstr ""
2503
 
2504
- #: includes/settings/tabs/wps-exclusions.php:183
2505
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2506
  msgstr ""
2507
 
2508
- #: includes/settings/tabs/wps-exclusions.php:185
2509
  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."
2510
  msgstr ""
2511
 
2512
- #: includes/settings/tabs/wps-exclusions.php:190
2513
  msgid "Site URL Exclusions"
2514
  msgstr ""
2515
 
2516
- #: includes/settings/tabs/wps-exclusions.php:194
2517
  msgid "Excluded login page"
2518
  msgstr ""
2519
 
2520
- #: includes/settings/tabs/wps-exclusions.php:197
2521
  msgid "Exclude the login page for registering as a hit."
2522
  msgstr ""
2523
 
2524
- #: includes/settings/tabs/wps-exclusions.php:201
2525
  msgid "Excluded admin pages"
2526
  msgstr ""
2527
 
2528
- #: includes/settings/tabs/wps-exclusions.php:204
2529
  msgid "Exclude the admin pages for registering as a hit."
2530
  msgstr ""
2531
 
2532
- #: includes/settings/tabs/wps-exclusions.php:208
2533
  msgid "Excluded RSS feeds"
2534
  msgstr ""
2535
 
2536
- #: includes/settings/tabs/wps-exclusions.php:211
2537
  msgid "Exclude the RSS feeds for registering as a hit."
2538
  msgstr ""
2539
 
2540
- #: includes/settings/tabs/wps-externals.php:162
2541
  msgid "browscap settings"
2542
  msgstr ""
2543
 
2544
- #: includes/settings/tabs/wps-externals.php:167
2545
  msgid "browscap usage"
2546
  msgstr ""
2547
 
2548
- #: includes/settings/tabs/wps-externals.php:52
2549
- #: includes/settings/tabs/wps-externals.php:76
2550
- #: includes/settings/tabs/wps-externals.php:109
2551
- #: includes/settings/tabs/wps-externals.php:172
2552
- #: includes/settings/tabs/wps-externals.php:196
2553
- #: includes/settings/tabs/wps-externals.php:236
2554
- #: includes/settings/tabs/wps-externals.php:260
2555
- #: includes/settings/tabs/wps-general.php:76
2556
- #: includes/settings/tabs/wps-general.php:92
2557
- #: includes/settings/tabs/wps-general.php:116
2558
- #: includes/settings/tabs/wps-general.php:132
2559
- #: includes/settings/tabs/wps-general.php:148
2560
- #: includes/settings/tabs/wps-general.php:160
2561
- #: includes/settings/tabs/wps-general.php:187
2562
- #: includes/settings/tabs/wps-general.php:199
2563
- #: includes/settings/tabs/wps-general.php:214
2564
- #: includes/settings/tabs/wps-general.php:228
2565
- #: includes/settings/tabs/wps-general.php:258
2566
- #: includes/settings/tabs/wps-general.php:270
2567
- #: includes/settings/tabs/wps-general.php:286
2568
- #: includes/settings/tabs/wps-general.php:325
2569
- #: includes/settings/tabs/wps-general.php:341
2570
- #: includes/settings/tabs/wps-maintenance.php:40
2571
- #: includes/settings/tabs/wps-maintenance.php:68
2572
- #: includes/settings/tabs/wps-notifications.php:69
2573
- #: includes/settings/tabs/wps-notifications.php:81
2574
- #: includes/settings/tabs/wps-notifications.php:93
2575
- #: includes/settings/tabs/wps-notifications.php:105
2576
- #: includes/settings/tabs/wps-notifications.php:121
2577
- #: includes/settings/tabs/wps-overview-display.php:34
2578
- #: includes/settings/tabs/wps-overview-display.php:54
2579
- #: includes/settings/tabs/wps-overview-display.php:94
2580
- #: includes/settings/tabs/wps-overview-display.php:106
2581
  msgid "Active"
2582
  msgstr ""
2583
 
2584
- #: includes/settings/tabs/wps-externals.php:173
2585
  msgid "The browscap database will be downloaded and used to detect robots."
2586
  msgstr ""
2587
 
2588
- #: includes/settings/tabs/wps-externals.php:179
2589
  msgid "Update browscap Info"
2590
  msgstr ""
2591
 
2592
- #: includes/settings/tabs/wps-externals.php:184
2593
  msgid "Download browscap Database"
2594
  msgstr ""
2595
 
2596
- #: includes/settings/tabs/wps-externals.php:65
2597
- #: includes/settings/tabs/wps-externals.php:185
2598
- #: includes/settings/tabs/wps-externals.php:249
2599
  msgid "Save changes on this page to download the update."
2600
  msgstr ""
2601
 
2602
- #: includes/settings/tabs/wps-externals.php:191
2603
  msgid "Schedule weekly update of browscap DB"
2604
  msgstr ""
2605
 
2606
- #: includes/settings/tabs/wps-externals.php:79
2607
- #: includes/settings/tabs/wps-externals.php:199
2608
- #: includes/settings/tabs/wps-externals.php:263
2609
  msgid "Next update will be"
2610
  msgstr ""
2611
 
2612
- #: includes/settings/tabs/wps-externals.php:215
2613
  msgid "Download of the browscap database will be scheduled for once a week."
2614
  msgstr ""
2615
 
2616
- #: includes/settings/tabs/wps-general.php:50
2617
  msgid "This will delete the manual when you save the settings, are you sure?"
2618
  msgstr ""
2619
 
2620
- #: includes/settings/tabs/wps-general.php:77
2621
  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."
2622
  msgstr ""
2623
 
2624
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
 
2625
  msgid "Users Online"
2626
  msgstr ""
2627
 
2628
- #: includes/settings/tabs/wps-general.php:87
2629
  msgid "User online"
2630
  msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0.2\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: wp-statistics/ajax.php:220
14
+ msgid "No matching widget found!"
15
+ msgstr ""
16
+
17
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
18
+ msgid "Zlib gzopen()"
19
+ msgstr ""
20
+
21
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
22
+ msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
23
+ msgstr ""
24
+
25
+ #: wp-statistics/wps-updates.php:16
26
+ msgid "Error the download_url() or gzopen() functions do not exist!"
27
+ msgstr ""
28
+
29
+ #: wp-statistics/wps-updates.php:45
30
+ msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
31
+ msgstr ""
32
+
33
+ #: wp-statistics/wp-statistics.php:95
34
  msgid "&#151; You are running an unsupported version of PHP."
35
  msgstr ""
36
 
37
+ #: wp-statistics/wp-statistics.php:95
38
  msgid "WP Statistics Disabled"
39
  msgstr ""
40
 
41
+ #: wp-statistics/wp-statistics.php:99
42
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
43
  msgstr ""
44
 
45
+ #: wp-statistics/wp-statistics.php:101
46
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
47
  msgstr ""
48
 
49
+ #: wp-statistics/ajax.php:299
50
  msgid "ERROR: Widget not found!"
51
  msgstr ""
52
 
53
+ #: wp-statistics/dashboard.php:111 wp-statistics/editor.php:66
54
+ #: wp-statistics/includes/log/log.php:20
55
  msgid "Loading..."
56
  msgstr ""
57
 
58
+ #: wp-statistics/dashboard.php:129 wp-statistics/editor.php:84
59
+ #: wp-statistics/includes/log/log.php:2
60
  msgid "Reloading..."
61
  msgstr ""
62
 
63
+ #: wp-statistics/includes/log/top-visitors.php:41
64
+ #: wp-statistics/wp-statistics.php:447
65
  msgid "Top Visitors"
66
  msgstr ""
67
 
68
+ #: wp-statistics/wp-statistics.php:206
69
  msgid "optimization page"
70
  msgstr ""
71
 
72
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
73
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
74
  msgid "Enabled"
75
  msgstr ""
76
 
77
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
78
  msgid "Purge Old Data Daily"
79
  msgstr ""
80
 
81
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
82
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
83
  msgstr ""
84
 
85
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
86
  msgid "Purge data older than"
87
  msgstr ""
88
 
89
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
90
  msgid "Purge High Hit Count Visitors Daily"
91
  msgstr ""
92
 
93
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
94
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
95
  msgstr ""
96
 
97
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
98
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
99
  msgstr ""
100
 
101
+ #: wp-statistics/shortcode.php:184
102
  msgid "The post/page id to get page statistics on."
103
  msgstr ""
104
 
105
+ #: wp-statistics/shortcode.php:181
106
  msgid "Post/Page ID"
107
  msgstr ""
108
 
109
+ #: wp-statistics/includes/functions/functions.php:435
110
  msgid "Ask.com"
111
  msgstr ""
112
 
113
+ #: wp-statistics/shortcode.php:158
114
  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."
115
  msgstr ""
116
 
117
+ #: wp-statistics/wp-statistics.php:180
118
  msgid "visitor tracking"
119
  msgstr ""
120
 
121
+ #: wp-statistics/wp-statistics.php:181
122
  msgid "geoip collection"
123
  msgstr ""
124
 
125
+ #: wp-statistics/wp-statistics.php:197
126
  msgid "visit database index"
127
  msgstr ""
128
 
129
+ #: wp-statistics/wp-statistics.php:206
130
  msgid "Database updates are required, please go to %s and update the following: %s"
131
  msgstr ""
132
 
133
+ #: wp-statistics/wp-statistics.php:197
134
  msgid "countries database index"
135
  msgstr ""
136
 
137
+ #: wp-statistics/wp-statistics.php:190
138
  msgid "search table"
139
  msgstr ""
140
 
141
+ #: wp-statistics/wp-statistics.php:184
142
  msgid "settings page"
143
  msgstr ""
144
 
145
+ #: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
146
  msgid ","
147
  msgstr ""
148
 
149
+ #: wp-statistics/wp-statistics.php:184
150
  msgid "The following features are disabled, please go to %s and enable them: %s"
151
  msgstr ""
152
 
153
+ #: wp-statistics/wp-statistics.php:179
154
  msgid "hit tracking"
155
  msgstr ""
156
 
157
+ #: wp-statistics/wp-statistics.php:178
158
  msgid "online user tracking"
159
  msgstr ""
160
 
161
+ #: wp-statistics/wp-statistics.php:775
162
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
163
  msgstr ""
164
 
165
+ #: wp-statistics/includes/optimization/wps-optimization.php:196
166
  msgid "Search table conversion complete, %d rows added."
167
  msgstr ""
168
 
169
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
170
  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."
171
  msgstr ""
172
 
173
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
174
  msgid "Search Table"
175
  msgstr ""
176
 
177
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
178
  msgid "Convert"
179
  msgstr ""
180
 
181
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
182
  msgid "Convert Now!"
183
  msgstr ""
184
 
185
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
186
  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."
187
  msgstr ""
188
 
189
+ #: wp-statistics/includes/log/exclusions.php:24
190
  msgid "Referrer Spam"
191
  msgstr ""
192
 
193
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:279
194
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
195
  msgstr ""
196
 
197
+ #: wp-statistics/includes/settings/wps-settings.php:105
198
  msgid "Externals"
199
  msgstr ""
200
 
201
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:220
202
  msgid "Piwik Referrer Spam Blacklist settings"
203
  msgstr ""
204
 
205
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:255
206
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
207
  msgstr ""
208
 
209
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:248
210
  msgid "Download Piwik Referrer Spam Blacklist Database"
211
  msgstr ""
212
 
213
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:243
214
  msgid "Update Piwik Referrer Spam Blacklist Info"
215
  msgstr ""
216
 
217
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:237
218
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
219
  msgstr ""
220
 
221
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:225
222
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
223
  msgstr ""
224
 
225
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:231
226
  msgid "Piwik Referrer Spam Blacklist usage"
227
  msgstr ""
228
 
229
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
230
  msgid "Treat corrupt browser info as a bot"
231
  msgstr ""
232
 
233
+ #: wp-statistics/includes/log/exclusions.php:24
234
  msgid "404 Pages"
235
  msgstr ""
236
 
237
+ #: wp-statistics/includes/log/top-visitors.php:26
238
  msgid "Date"
239
  msgstr ""
240
 
241
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
242
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
243
  msgstr ""
244
 
245
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
246
  msgid "Excluded 404 pages"
247
  msgstr ""
248
 
249
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
250
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
251
  msgstr ""
252
 
253
+ #: wp-statistics/wps-updates.php:37
254
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
255
  msgstr ""
256
 
257
+ #: wp-statistics/includes/settings/tabs/wps-general.php:281
258
  msgid "Add page title to empty search words"
259
  msgstr ""
260
 
261
+ #: wp-statistics/includes/settings/tabs/wps-general.php:287
262
  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."
263
  msgstr ""
264
 
265
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
266
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
267
  msgid "Purge visitors with more than"
268
  msgstr ""
269
 
270
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
271
  msgid "hits"
272
  msgstr ""
273
 
274
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
275
  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."
276
  msgstr ""
277
 
278
+ #: wp-statistics/includes/functions/purge-hits.php:28
279
  msgid "No visitors found to purge."
280
  msgstr ""
281
 
282
+ #: wp-statistics/includes/functions/purge-hits.php:25
283
  msgid "%s records purged successfully."
284
  msgstr ""
285
 
286
+ #: wp-statistics/ajax.php:178
287
+ #: wp-statistics/includes/functions/purge-hits.php:32
288
  msgid "Number of hits must be greater than or equal to 10!"
289
  msgstr ""
290
 
291
+ #: wp-statistics/shortcode.php:141
292
  msgid "Page Visits"
293
  msgstr ""
294
 
295
+ #: wp-statistics/shortcode.php:144
296
  msgid "Page Count"
297
  msgstr ""
298
 
299
+ #: wp-statistics/shortcode.php:145
300
  msgid "Comment Count"
301
  msgstr ""
302
 
303
+ #: wp-statistics/shortcode.php:146
304
  msgid "Spam Count"
305
  msgstr ""
306
 
307
+ #: wp-statistics/shortcode.php:147
308
  msgid "User Count"
309
  msgstr ""
310
 
311
+ #: wp-statistics/shortcode.php:148
312
  msgid "Post Average"
313
  msgstr ""
314
 
315
+ #: wp-statistics/shortcode.php:149
316
  msgid "Comment Average"
317
  msgstr ""
318
 
319
+ #: wp-statistics/shortcode.php:150
320
  msgid "User Average"
321
  msgstr ""
322
 
323
+ #: wp-statistics/shortcode.php:162
324
  msgid "Search Provider"
325
  msgstr ""
326
 
327
+ #: wp-statistics/shortcode.php:165
328
  msgid "The search provider to get statistics on."
329
  msgstr ""
330
 
331
+ #: wp-statistics/shortcode.php:169
332
  msgid "Number Format"
333
  msgstr ""
334
 
335
+ #: wp-statistics/shortcode.php:172
336
  msgid "The format to display numbers in: i18n, english, none."
337
  msgstr ""
338
 
339
+ #: wp-statistics/shortcode.php:176
340
  msgid "English"
341
  msgstr ""
342
 
343
+ #: wp-statistics/shortcode.php:177
344
  msgid "International"
345
  msgstr ""
346
 
347
+ #: wp-statistics/includes/log/exclusions.php:191
348
+ #: wp-statistics/includes/log/hit-statistics.php:164
349
  msgid "Hits Statistics Summary"
350
  msgstr ""
351
 
352
+ #: wp-statistics/includes/log/exclusions.php:201
353
+ #: wp-statistics/includes/log/hit-statistics.php:175
354
  msgid "Chart Total"
355
  msgstr ""
356
 
357
+ #: wp-statistics/includes/log/exclusions.php:206
358
+ #: wp-statistics/includes/log/hit-statistics.php:181
359
  msgid "All Time Total"
360
  msgstr ""
361
 
362
+ #: wp-statistics/includes/log/log.php:6
363
  msgid "Have you thought about donating to WP Statistics?"
364
  msgstr ""
365
 
366
+ #: wp-statistics/includes/settings/tabs/wps-about.php:20
367
+ #: wp-statistics/wp-statistics.php:429
368
  msgid "Donate"
369
  msgstr ""
370
 
371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
372
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
373
  msgstr ""
374
 
375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
376
  msgid "donation"
377
  msgstr ""
378
 
379
+ #: wp-statistics/includes/log/log.php:6
380
  msgid "Donate Now!"
381
  msgstr ""
382
 
383
+ #: wp-statistics/includes/log/log.php:6
384
  msgid "Close"
385
  msgstr ""
386
 
387
+ #: wp-statistics/shortcode.php:135
388
  msgid "Select the statistic you wish to display."
389
  msgstr ""
390
 
391
+ #: wp-statistics/shortcode.php:132
392
  msgid "Statistic"
393
  msgstr ""
394
 
395
+ #: wp-statistics/shortcode.php:143
396
  msgid "Post Count"
397
  msgstr ""
398
 
399
+ #: wp-statistics/shortcode.php:155
400
  msgid "Time Frame"
401
  msgstr ""
402
 
403
+ #: wp-statistics/includes/functions/functions.php:1032
404
  msgid "to"
405
  msgstr ""
406
 
407
+ #: wp-statistics/includes/functions/functions.php:1032
408
+ #: wp-statistics/includes/log/top-visitors.php:29
409
  msgid "Go"
410
  msgstr ""
411
 
412
+ #: wp-statistics/includes/log/top-pages.php:102
413
  msgid "Rank #5"
414
  msgstr ""
415
 
416
+ #: wp-statistics/includes/log/top-pages.php:102
417
  msgid "Rank #4"
418
  msgstr ""
419
 
420
+ #: wp-statistics/includes/log/top-pages.php:102
421
  msgid "Rank #3"
422
  msgstr ""
423
 
424
+ #: wp-statistics/includes/log/top-pages.php:102
425
  msgid "Rank #1"
426
  msgstr ""
427
 
428
+ #: wp-statistics/includes/log/top-pages.php:102
429
  msgid "Rank #2"
430
  msgstr ""
431
 
432
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
433
  msgid "Visits Table"
434
  msgstr ""
435
 
436
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
437
  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."
438
  msgstr ""
439
 
440
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
441
  msgid "This operation could take a long time on installs with many rows in the visits table."
442
  msgstr ""
443
 
444
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
445
  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."
446
  msgstr ""
447
 
448
+ #: wp-statistics/includes/log/last-visitor.php:68
449
  msgid "Filtered by"
450
  msgstr ""
451
 
452
+ #: wp-statistics/includes/functions/functions.php:1026
453
+ #: wp-statistics/includes/functions/functions.php:1029
454
  msgid "Range"
455
  msgstr ""
456
 
457
+ #: wp-statistics/includes/functions/functions.php:1032
458
+ #: wp-statistics/includes/log/top-visitors.php:29
459
  msgid "MM/DD/YYYY"
460
  msgstr "MM/DD/YYYY"
461
 
462
+ #: wp-statistics/includes/settings/tabs/wps-general.php:342
463
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
464
  msgstr ""
465
 
466
+ #: wp-statistics/includes/settings/tabs/wps-general.php:336
467
  msgid "Force English"
468
  msgstr ""
469
 
470
+ #: wp-statistics/includes/settings/tabs/wps-general.php:331
471
  msgid "Languages"
472
  msgstr ""
473
 
474
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
475
  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."
476
  msgstr ""
477
 
478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
479
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
480
  msgstr ""
481
 
482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
483
  msgid "Excluded URLs list"
484
  msgstr ""
485
 
486
+ #: wp-statistics/includes/log/exclusions.php:24
487
  msgid "Excluded URL"
488
  msgstr ""
489
 
490
+ #: wp-statistics/includes/log/widgets/quickstats.php:52
491
+ #: wp-statistics/includes/log/widgets/summary.php:52
492
  msgid "Last 365 Days (Year)"
493
  msgstr ""
494
 
495
+ #: wp-statistics/includes/log/widgets/quickstats.php:46
496
+ #: wp-statistics/includes/log/widgets/summary.php:46
497
  msgid "Last 30 Days (Month)"
498
  msgstr ""
499
 
500
+ #: wp-statistics/includes/log/widgets/quickstats.php:40
501
+ #: wp-statistics/includes/log/widgets/summary.php:40
502
  msgid "Last 7 Days (Week)"
503
  msgstr ""
504
 
505
+ #: wp-statistics/includes/functions/functions.php:441
506
  msgid "Yahoo!"
507
  msgstr ""
508
 
509
+ #: wp-statistics/includes/functions/functions.php:442
510
  msgid "Yandex"
511
  msgstr ""
512
 
513
+ #: wp-statistics/includes/functions/functions.php:438
514
  msgid "clearch.org"
515
  msgstr ""
516
 
517
+ #: wp-statistics/includes/functions/functions.php:439
518
  msgid "DuckDuckGo"
519
  msgstr ""
520
 
521
+ #: wp-statistics/includes/functions/functions.php:437
522
  msgid "Bing"
523
  msgstr ""
524
 
525
+ #: wp-statistics/includes/functions/functions.php:436
526
  msgid "Baidu"
527
  msgstr ""
528
 
529
+ #: wp-statistics/includes/log/exclusions.php:24
 
 
 
 
530
  msgid "Feeds"
531
  msgstr ""
532
 
533
+ #: wp-statistics/includes/log/exclusions.php:24
534
  msgid "User Role"
535
  msgstr ""
536
 
537
+ #: wp-statistics/includes/log/exclusions.php:24
538
  msgid "Login Page"
539
  msgstr ""
540
 
541
+ #: wp-statistics/includes/log/exclusions.php:24
542
  msgid "Admin Page"
543
  msgstr ""
544
 
545
+ #: wp-statistics/includes/log/exclusions.php:24
546
  msgid "Self Referral"
547
  msgstr ""
548
 
549
+ #: wp-statistics/includes/log/exclusions.php:24
550
  msgid "IP Match"
551
  msgstr ""
552
 
553
+ #: wp-statistics/includes/log/exclusions.php:24
554
  msgid "Robot"
555
  msgstr ""
556
 
557
+ #: wp-statistics/includes/log/online.php:100
558
  msgid "Currently there are no users online in the site."
559
  msgstr ""
560
 
561
+ #: wp-statistics/includes/log/exclusions.php:24
562
  msgid "Robot Threshold"
563
  msgstr ""
564
 
565
+ #: wp-statistics/includes/log/exclusions.php:24
566
  msgid "Honey Pot"
567
  msgstr ""
568
 
569
+ #: wp-statistics/includes/log/widgets/page.php:8
570
  msgid "Page Trending Stats"
571
  msgstr ""
572
 
573
+ #: wp-statistics/includes/log/exclusions.php:24
574
  msgid "Hostname"
575
  msgstr ""
576
 
577
+ #: wp-statistics/includes/settings/tabs/wps-general.php:93
578
+ #: wp-statistics/includes/settings/tabs/wps-general.php:133
579
+ #: wp-statistics/includes/settings/tabs/wps-general.php:149
580
+ #: wp-statistics/includes/settings/tabs/wps-general.php:188
581
+ #: wp-statistics/includes/settings/tabs/wps-general.php:200
582
+ #: wp-statistics/includes/settings/tabs/wps-general.php:229
583
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:122
584
  msgid "Enable or disable this feature"
585
  msgstr ""
586
 
587
+ #: wp-statistics/includes/settings/tabs/wps-general.php:99
588
  msgid "Check for online users every"
589
  msgstr "অনলাইনের ব্যবহারকারী চেক করবে"
590
 
591
+ #: wp-statistics/includes/settings/tabs/wps-general.php:104
592
  msgid "Second"
593
  msgstr ""
594
 
595
+ #: wp-statistics/includes/settings/tabs/wps-general.php:105
596
  msgid "Time for the check accurate online user in the site. Now: %s Second"
597
  msgstr ""
598
 
599
+ #: wp-statistics/includes/settings/tabs/wps-general.php:111
600
  msgid "Record all user"
601
  msgstr ""
602
 
603
+ #: wp-statistics/includes/settings/tabs/wps-general.php:117
604
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
605
  msgstr ""
606
 
607
+ #: wp-statistics/includes/settings/tabs/wps-general.php:155
608
  msgid "Store entire user agent string"
609
  msgstr ""
610
 
611
+ #: wp-statistics/includes/settings/tabs/wps-general.php:161
612
  msgid "Only enabled for debugging"
613
  msgstr ""
614
 
615
+ #: wp-statistics/includes/settings/tabs/wps-general.php:167
616
  msgid "Coefficient per visitor"
617
  msgstr "দর্শকের সুদক্ষতা"
618
 
619
+ #: wp-statistics/includes/settings/tabs/wps-general.php:172
620
  msgid "For each visit to account for several hits. Currently %s."
621
  msgstr ""
622
 
623
+ #: wp-statistics/includes/settings/tabs/wps-general.php:177
624
+ #: wp-statistics/includes/settings/tabs/wps-general.php:182
625
+ #: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:516
626
  msgid "Pages"
627
  msgstr ""
628
 
629
+ #: wp-statistics/includes/settings/tabs/wps-general.php:194
630
  msgid "Track all pages"
631
  msgstr ""
632
 
633
+ #: wp-statistics/includes/settings/tabs/wps-general.php:209
634
  msgid "Strip parameters from URI"
635
  msgstr ""
636
 
637
+ #: wp-statistics/includes/settings/tabs/wps-general.php:215
638
  msgid "This will remove anything after the ? in a URL."
639
  msgstr ""
640
 
641
+ #: wp-statistics/includes/settings/tabs/wps-general.php:223
642
  msgid "Disable hits column in post/pages list"
643
  msgstr ""
644
 
645
+ #: wp-statistics/includes/settings/tabs/wps-general.php:234
646
  msgid "Miscellaneous"
647
  msgstr ""
648
 
649
+ #: wp-statistics/includes/settings/tabs/wps-general.php:239
650
  msgid "Show stats in menu bar"
651
  msgstr "স্টাটস মেনুবারে দেখাও"
652
 
653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:244
654
  msgid "No"
655
  msgstr "না"
656
 
657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:245
658
  msgid "Yes"
659
  msgstr "হ্যা"
660
 
661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:247
662
  msgid "Show stats in admin menu bar"
663
  msgstr "স্টাটস অ্যাডমিনের মেনুবারে দেখাও"
664
 
665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:253
666
  msgid "Hide admin notices about non active features"
667
  msgstr ""
668
 
669
+ #: wp-statistics/includes/settings/tabs/wps-general.php:259
670
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
671
  msgstr ""
672
 
673
+ #: wp-statistics/includes/settings/tabs/wps-general.php:265
674
  msgid "Delete the manual"
675
  msgstr ""
676
 
677
+ #: wp-statistics/includes/settings/tabs/wps-general.php:271
678
  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."
679
  msgstr ""
680
 
681
+ #: wp-statistics/includes/settings/tabs/wps-general.php:276
682
  msgid "Search Engines"
683
  msgstr ""
684
 
685
+ #: wp-statistics/includes/settings/tabs/wps-general.php:293
686
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
687
  msgstr ""
688
 
689
+ #: wp-statistics/includes/settings/tabs/wps-general.php:308
690
  msgid "disable"
691
  msgstr ""
692
 
693
+ #: wp-statistics/includes/settings/tabs/wps-general.php:309
694
  msgid "Disable %s from data collection and reporting."
695
  msgstr ""
696
 
697
+ #: wp-statistics/includes/settings/tabs/wps-general.php:315
698
  msgid "Charts"
699
  msgstr ""
700
 
701
+ #: wp-statistics/includes/settings/tabs/wps-general.php:320
702
  msgid "Include totals"
703
  msgstr ""
704
 
705
+ #: wp-statistics/includes/settings/tabs/wps-general.php:326
706
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
707
  msgstr ""
708
 
709
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:32
710
  msgid "GeoIP settings"
711
  msgstr ""
712
 
713
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:37
714
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
715
  msgstr ""
716
 
717
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:47
718
  msgid "GeoIP collection"
719
  msgstr ""
720
 
721
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:53
722
  msgid "For get more information and location (country) from visitor, enable this feature."
723
  msgstr ""
724
 
725
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:59
726
  msgid "Update GeoIP Info"
727
  msgstr ""
728
 
729
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:64
730
  msgid "Download GeoIP Database"
731
  msgstr ""
732
 
733
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:71
734
  msgid "Schedule monthly update of GeoIP DB"
735
  msgstr ""
736
 
737
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:97
738
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
739
  msgstr ""
740
 
741
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:98
742
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
743
  msgstr ""
744
 
745
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:104
746
  msgid "Populate missing GeoIP after update of GeoIP DB"
747
  msgstr ""
748
 
749
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:110
750
  msgid "Update any missing GeoIP data after downloading a new database."
751
  msgstr ""
752
 
753
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:116
754
  msgid "Country code for private IP addresses"
755
  msgstr ""
756
 
757
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:121
758
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
759
  msgstr ""
760
 
761
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:132
762
  msgid "GeoIP collection is disabled due to the following reasons:"
763
  msgstr ""
764
 
765
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:135
766
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
767
  msgstr ""
768
 
769
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:140
770
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
771
  msgstr ""
772
 
773
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:146
774
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
775
  msgstr ""
776
 
777
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:152
778
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
779
  msgstr ""
780
 
781
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
782
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
783
  msgstr ""
784
 
785
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
786
  msgid "Days"
787
  msgstr ""
788
 
789
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
790
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
791
  msgstr ""
792
 
793
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:44
794
  msgid "Common Report Options"
795
  msgstr ""
796
 
797
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:49
798
  msgid "E-mail addresses"
799
  msgstr ""
800
 
801
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:54
802
  msgid "A comma separated list of e-mail addresses to send reports to."
803
  msgstr ""
804
 
805
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:59
806
  msgid "Update Reports"
807
  msgstr ""
808
 
809
+ #: wp-statistics/includes/log/exclusions.php:24
810
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:64
811
  msgid "Browscap"
812
  msgstr ""
813
 
814
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:70
815
  msgid "Send a report whenever the browscap.ini is updated."
816
  msgstr ""
817
 
818
+ #: wp-statistics/includes/log/exclusions.php:24
819
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:76
820
  msgid "GeoIP"
821
  msgstr ""
822
 
823
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:82
824
  msgid "Send a report whenever the GeoIP database is updated."
825
  msgstr ""
826
 
827
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:88
828
  msgid "Pruning"
829
  msgstr ""
830
 
831
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:94
832
  msgid "Send a report whenever the pruning of database is run."
833
  msgstr ""
834
 
835
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:100
836
  msgid "Upgrade"
837
  msgstr ""
838
 
839
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:106
840
  msgid "Send a report whenever the plugin is upgraded."
841
  msgstr ""
842
 
843
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:111
844
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:116
845
+ #: wp-statistics/schedule.php:221
846
  msgid "Statistical reporting"
847
  msgstr ""
848
 
849
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:129
850
  msgid "Schedule"
851
  msgstr ""
852
 
853
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:153
854
  msgid "Select how often to receive statistical report."
855
  msgstr ""
856
 
857
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:159
858
  msgid "Send reports via"
859
  msgstr ""
860
 
861
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:165
862
  msgid "Email"
863
  msgstr ""
864
 
865
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:167
866
  msgid "SMS"
867
  msgstr ""
868
 
869
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:170
870
  msgid "Select delivery method for statistical report."
871
  msgstr ""
872
 
873
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
874
  msgid "Note: To send SMS text messages please install the %s plugin."
875
  msgstr ""
876
 
877
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
878
  msgid "WordPress SMS"
879
  msgstr ""
880
 
881
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:180
882
  msgid "Report body"
883
  msgstr ""
884
 
885
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:185
886
  msgid "Enter the contents of the report."
887
  msgstr ""
888
 
889
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:187
890
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
891
  msgstr ""
892
 
893
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:188
894
+ #: wp-statistics/widget.php:38 wp-statistics/widget.php:247
895
+ #: wp-statistics/wp-statistics.php:621
896
  msgid "User Online"
897
  msgstr "এখন দেখছে"
898
 
899
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:189
900
+ #: wp-statistics/widget.php:52 wp-statistics/widget.php:253
901
  msgid "Today Visitor"
902
  msgstr ""
903
 
904
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:190
905
+ #: wp-statistics/widget.php:45 wp-statistics/widget.php:250
906
  msgid "Today Visit"
907
  msgstr "আজ দেখেছে"
908
 
909
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:191
910
+ #: wp-statistics/widget.php:66 wp-statistics/widget.php:259
911
  msgid "Yesterday Visitor"
912
  msgstr ""
913
 
914
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:192
915
+ #: wp-statistics/widget.php:59
916
  msgid "Yesterday Visit"
917
  msgstr "গতকাল দেখেছে"
918
 
919
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:193
920
+ #: wp-statistics/widget.php:101 wp-statistics/widget.php:274
921
  msgid "Total Visitor"
922
  msgstr ""
923
 
924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:194
925
+ #: wp-statistics/widget.php:94 wp-statistics/widget.php:271
926
  msgid "Total Visit"
927
  msgstr "মোট দেখা হয়েছে"
928
 
929
+ #: wp-statistics/shortcode.php:175
930
  msgid "None"
931
  msgstr ""
932
 
933
+ #: wp-statistics/includes/settings/wps-settings.php:108
934
  msgid "About"
935
  msgstr ""
936
 
937
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
938
  msgid "Dashboard"
939
  msgstr ""
940
 
941
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
942
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
943
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
944
  msgid "The following items are global to all users."
945
  msgstr ""
946
 
947
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
948
  msgid "Disable dashboard widgets"
949
  msgstr ""
950
 
951
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
952
  msgid "Disable the dashboard widgets."
953
  msgstr ""
954
 
955
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
956
  msgid "Page/Post Editor"
957
  msgstr ""
958
 
959
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
960
  msgid "Disable post/page editor widget"
961
  msgstr ""
962
 
963
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
964
  msgid "Disable the page/post editor widget."
965
  msgstr ""
966
 
967
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
968
  msgid "Map type"
969
  msgstr ""
970
 
971
+ #: wp-statistics/includes/functions/functions.php:440
972
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
973
  msgid "Google"
974
  msgstr "গুগল"
975
 
976
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
977
  msgid "JQVMap"
978
  msgstr ""
979
 
980
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
981
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
982
  msgstr ""
983
 
984
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
985
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
986
  msgstr ""
987
 
988
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
989
  msgid "Disable map"
990
  msgstr ""
991
 
992
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:95
993
  msgid "Disable the map display"
994
  msgstr ""
995
 
996
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:101
997
  msgid "Get country location from Google"
998
  msgstr ""
999
 
1000
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:107
1001
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
1002
  msgstr ""
1003
 
1004
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:15
1005
  msgid "WP Statisitcs Removal"
1006
  msgstr ""
1007
 
1008
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:20
1009
  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."
1010
  msgstr ""
1011
 
1012
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:23
1013
  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."
1014
  msgstr ""
1015
 
1016
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:29
1017
  msgid "Remove data and settings"
1018
  msgstr ""
1019
 
1020
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:34
1021
  msgid "Remove"
1022
  msgstr ""
1023
 
1024
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:35
1025
  msgid "Remove data and settings, this action cannot be undone."
1026
  msgstr ""
1027
 
1028
+ #: wp-statistics/includes/settings/wps-settings.php:100
1029
  msgid "General"
1030
  msgstr ""
1031
 
1032
+ #: wp-statistics/includes/settings/wps-settings.php:101
1033
  msgid "Notifications"
1034
  msgstr ""
1035
 
1036
+ #: wp-statistics/includes/settings/wps-settings.php:102
1037
  msgid "Dashboard/Overview"
1038
  msgstr ""
1039
 
1040
+ #: wp-statistics/includes/settings/wps-settings.php:106
1041
  msgid "Maintenance"
1042
  msgstr ""
1043
 
1044
+ #: wp-statistics/includes/settings/wps-settings.php:107
1045
  msgid "Removal"
1046
  msgstr ""
1047
 
1048
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:85
1049
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
1050
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:286
1051
+ #: wp-statistics/includes/settings/tabs/wps-general.php:349
1052
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
1053
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:201
1054
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:116
1055
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:42
1056
  msgid "Update"
1057
  msgstr ""
1058
 
1059
+ #: wp-statistics/schedule.php:10
1060
  msgid "Once Weekly"
1061
  msgstr ""
1062
 
1063
+ #: wp-statistics/schedule.php:17
1064
  msgid "Once Every 2 Weeks"
1065
  msgstr ""
1066
 
1067
+ #: wp-statistics/schedule.php:24
1068
  msgid "Once Every 4 Weeks"
1069
  msgstr ""
1070
 
1071
+ #: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
1072
+ #: wp-statistics/wp-statistics.php:469
1073
  msgid "Statistics"
1074
  msgstr "পরিসংখ্যান"
1075
 
1076
+ #: wp-statistics/widget.php:15
1077
  msgid "Show site stats in sidebar."
1078
  msgstr ""
1079
 
1080
+ #: wp-statistics/widget.php:73 wp-statistics/widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "এ সপ্তাহে দেখেছে"
1083
 
1084
+ #: wp-statistics/widget.php:80 wp-statistics/widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "এ মাসে দেখেছে"
1087
 
1088
+ #: wp-statistics/widget.php:87 wp-statistics/widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "এ বছরে দেখেছে"
1091
 
1092
+ #: wp-statistics/widget.php:108 wp-statistics/widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr ""
1095
 
1096
+ #: wp-statistics/widget.php:116
1097
  msgid "Search Engine referred"
1098
  msgstr ""
1099
 
1100
+ #: wp-statistics/widget.php:123 wp-statistics/widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "মোট পোষ্ট"
1103
 
1104
+ #: wp-statistics/widget.php:130 wp-statistics/widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "মোট পাতা"
1107
 
1108
+ #: wp-statistics/widget.php:137 wp-statistics/widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "মোট মন্তব্য"
1111
 
1112
+ #: wp-statistics/widget.php:144 wp-statistics/widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "মোট স্প্যাম"
1115
 
1116
+ #: wp-statistics/widget.php:151 wp-statistics/widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "মোট ব্যবহারকারী"
1119
 
1120
+ #: wp-statistics/widget.php:158 wp-statistics/widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "গড় পোষ্ট"
1123
 
1124
+ #: wp-statistics/widget.php:165 wp-statistics/widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "গড় মন্তব্য"
1127
 
1128
+ #: wp-statistics/widget.php:172 wp-statistics/widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "গড় ব্যবহারকারী"
1131
 
1132
+ #: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
1133
+ #: wp-statistics/widget.php:324
1134
  msgid "Last Post Date"
1135
  msgstr "শেষ পোষ্টের তারিখ"
1136
 
1137
+ #: wp-statistics/widget.php:240
1138
  msgid "Name"
1139
  msgstr "নাম"
1140
 
1141
+ #: wp-statistics/widget.php:244
1142
  msgid "Items"
1143
  msgstr "আইটেম"
1144
 
1145
+ #: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:646
1146
  msgid "Yesterday visit"
1147
  msgstr "গতকাল দেখেছে"
1148
 
1149
+ #: wp-statistics/widget.php:280
1150
  msgid "Search Engine Referred"
1151
  msgstr ""
1152
 
1153
+ #: wp-statistics/widget.php:283
1154
  msgid "Select type of search engine"
1155
  msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
1156
 
1157
+ #: wp-statistics/wp-statistics.php:122
1158
  msgid "WP Statistics has been removed, please disable and delete it."
1159
  msgstr ""
1160
 
1161
+ #: wp-statistics/wp-statistics.php:54
 
1162
  msgid "WP Statistics"
1163
  msgstr ""
1164
 
1165
+ #: wp-statistics/wp-statistics.php:55
 
1166
  msgid "Complete statistics for your WordPress site."
1167
  msgstr ""
1168
 
1169
+ #: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
1170
+ #: wp-statistics/wp-statistics.php:523
1171
  msgid "Settings"
1172
  msgstr "সেটিসং"
1173
 
1174
+ #: wp-statistics/wp-statistics.php:325
1175
  msgid "Click here to visit the plugin on WordPress.org"
1176
  msgstr ""
1177
 
1178
+ #: wp-statistics/wp-statistics.php:325
1179
  msgid "Visit WordPress.org page"
1180
  msgstr ""
1181
 
1182
+ #: wp-statistics/wp-statistics.php:328
1183
  msgid "Click here to rate and review this plugin on WordPress.org"
1184
  msgstr ""
1185
 
1186
+ #: wp-statistics/wp-statistics.php:328
1187
  msgid "Rate this plugin"
1188
  msgstr ""
1189
 
1190
+ #: wp-statistics/wp-statistics.php:372
1191
  msgid "WP Statistics - Hits"
1192
  msgstr ""
1193
 
1194
+ #: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:472
1195
+ #: wp-statistics/wp-statistics.php:510
1196
  msgid "Overview"
1197
  msgstr ""
1198
 
1199
+ #: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:515
1200
  msgid "Online"
1201
  msgstr ""
1202
 
1203
+ #: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:517
1204
  msgid "Referrers"
1205
  msgstr ""
1206
 
1207
+ #: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
1208
+ #: wp-statistics/wp-statistics.php:518
1209
  msgid "Searches"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:519
1213
  msgid "Search Words"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:520
1217
  msgid "Top Visitors Today"
1218
  msgstr ""
1219
 
1220
+ #: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:522
1221
  msgid "Optimization"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:486
1225
  msgid "Manual"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics/wp-statistics.php:501
1229
  msgid "Site"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics/wp-statistics.php:502
1233
  msgid "Options"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics/wp-statistics.php:628
1237
  msgid "Today visitor"
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics/wp-statistics.php:634
1241
  msgid "Today visit"
1242
  msgstr ""
1243
 
1244
+ #: wp-statistics/wp-statistics.php:640
1245
  msgid "Yesterday visitor"
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics/wp-statistics.php:652
1249
  msgid "View Stats"
1250
  msgstr ""
1251
 
1252
+ #: wp-statistics/wp-statistics.php:676
1253
  msgid "Download ODF file"
1254
  msgstr ""
1255
 
1256
+ #: wp-statistics/wp-statistics.php:677
1257
  msgid "Download HTML file"
1258
  msgstr ""
1259
 
1260
+ #: wp-statistics/wp-statistics.php:681
1261
  msgid "Manual file not found."
1262
  msgstr ""
1263
 
1264
+ #: wp-statistics/wp-statistics.php:748 wp-statistics/wp-statistics.php:880
1265
+ #: wp-statistics/wp-statistics.php:915
1266
  msgid "You do not have sufficient permissions to access this page."
1267
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
1268
 
1269
+ #: wp-statistics/wp-statistics.php:301
1270
  msgid "WP Statistics %s installed on"
1271
  msgstr ""
1272
 
1273
+ #: wp-statistics/wps-updates.php:54
1274
  msgid "Error downloading GeoIP database from: %s - %s"
1275
  msgstr ""
1276
 
1277
+ #: wp-statistics/wps-updates.php:65
1278
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1279
  msgstr ""
1280
 
1281
+ #: wp-statistics/wps-updates.php:72
1282
  msgid "Error could not open destination GeoIP database for writing %s"
1283
  msgstr ""
1284
 
1285
+ #: wp-statistics/wps-updates.php:88
1286
  msgid "GeoIP Database updated successfully!"
1287
  msgstr ""
1288
 
1289
+ #: wp-statistics/wps-updates.php:113
1290
  msgid "GeoIP update on"
1291
  msgstr ""
1292
 
1293
+ #: wp-statistics/wps-updates.php:180
1294
  msgid "Error downloading browscap database from: %s - %s"
1295
  msgstr ""
1296
 
1297
+ #: wp-statistics/wps-updates.php:289
1298
  msgid "browscap database updated successfully!"
1299
  msgstr ""
1300
 
1301
+ #: wp-statistics/wps-updates.php:299
1302
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1303
  msgstr ""
1304
 
1305
+ #: wp-statistics/wps-updates.php:307
1306
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1307
  msgstr ""
1308
 
1309
+ #: wp-statistics/wps-updates.php:329
1310
  msgid "browscap already at current version!"
1311
  msgstr ""
1312
 
1313
+ #: wp-statistics/wps-updates.php:342
1314
  msgid "Browscap.ini update on"
1315
  msgstr ""
1316
 
1317
+ #: wp-statistics/dashboard.php:56
 
 
 
 
 
 
 
 
 
1318
  msgid "Quick Stats"
1319
  msgstr ""
1320
 
1321
+ #: wp-statistics/dashboard.php:57
1322
+ #: wp-statistics/includes/log/widgets/browsers.php:41
1323
  msgid "Top 10 Browsers"
1324
  msgstr ""
1325
 
1326
+ #: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:457
1327
  msgid "Top 10 Countries"
1328
  msgstr ""
1329
 
1330
+ #: wp-statistics/dashboard.php:59
1331
  msgid "Today's Visitor Map"
1332
  msgstr ""
1333
 
1334
+ #: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
1335
+ #: wp-statistics/includes/log/hit-statistics.php:8
1336
+ #: wp-statistics/wp-statistics.php:446
1337
  msgid "Hit Statistics"
1338
  msgstr ""
1339
 
1340
+ #: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:450
1341
  msgid "Top 10 Pages"
1342
  msgstr ""
1343
 
1344
+ #: wp-statistics/dashboard.php:62
1345
+ #: wp-statistics/includes/log/last-visitor.php:36
1346
+ #: wp-statistics/wp-statistics.php:451
1347
  msgid "Recent Visitors"
1348
  msgstr ""
1349
 
1350
+ #: wp-statistics/dashboard.php:63
1351
+ #: wp-statistics/includes/log/top-referring.php:59
1352
+ #: wp-statistics/includes/log/top-referring.php:81
1353
+ #: wp-statistics/wp-statistics.php:456
1354
  msgid "Top Referring Sites"
1355
  msgstr ""
1356
 
1357
+ #: wp-statistics/dashboard.php:64
1358
+ #: wp-statistics/includes/log/widgets/quickstats.php:75
1359
+ #: wp-statistics/includes/log/widgets/summary.php:75
1360
+ #: wp-statistics/wp-statistics.php:448
1361
  msgid "Search Engine Referrals"
1362
  msgstr ""
1363
 
1364
+ #: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:454
1365
  msgid "Summary"
1366
  msgstr ""
1367
 
1368
+ #: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
1369
+ #: wp-statistics/wp-statistics.php:449
1370
  msgid "Latest Search Words"
1371
  msgstr ""
1372
 
1373
+ #: wp-statistics/dashboard.php:67
1374
  msgid "Top 10 Visitors Today"
1375
  msgstr ""
1376
 
1377
+ #: wp-statistics/editor.php:58
1378
  msgid "This post is not yet published."
1379
  msgstr ""
1380
 
1381
+ #: wp-statistics/includes/functions/geoip-populate.php:24
1382
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1383
  msgstr ""
1384
 
1385
+ #: wp-statistics/includes/functions/geoip-populate.php:48
1386
  msgid "Updated %s GeoIP records in the visitors database."
1387
  msgstr ""
1388
 
1389
+ #: wp-statistics/includes/functions/purge.php:21
1390
+ #: wp-statistics/includes/functions/purge.php:39
1391
+ #: wp-statistics/includes/functions/purge.php:50
1392
+ #: wp-statistics/includes/functions/purge.php:61
1393
+ #: wp-statistics/includes/functions/purge.php:94
1394
  msgid "%s data older than %s days purged successfully."
1395
  msgstr ""
1396
 
1397
+ #: wp-statistics/includes/functions/purge.php:23
1398
+ #: wp-statistics/includes/functions/purge.php:41
1399
+ #: wp-statistics/includes/functions/purge.php:52
1400
+ #: wp-statistics/includes/functions/purge.php:63
1401
+ #: wp-statistics/includes/functions/purge.php:96
1402
  msgid "No records found to purge from %s!"
1403
  msgstr ""
1404
 
1405
+ #: wp-statistics/includes/functions/purge-hits.php:45
1406
+ #: wp-statistics/includes/functions/purge.php:109
1407
  msgid "Database pruned on"
1408
  msgstr ""
1409
 
1410
+ #: wp-statistics/includes/functions/purge.php:114
1411
  msgid "Please select a value over 30 days."
1412
  msgstr ""
1413
 
1414
+ #: wp-statistics/includes/log/all-browsers.php:21
1415
  msgid "Browser Statistics"
1416
  msgstr ""
1417
 
1418
+ #: wp-statistics/includes/log/all-browsers.php:29
1419
+ #: wp-statistics/includes/log/all-browsers.php:113
1420
+ #: wp-statistics/includes/log/all-browsers.php:248
1421
+ #: wp-statistics/includes/log/exclusions.php:72
1422
+ #: wp-statistics/includes/log/exclusions.php:190
1423
+ #: wp-statistics/includes/log/hit-statistics.php:26
1424
+ #: wp-statistics/includes/log/hit-statistics.php:163
1425
+ #: wp-statistics/includes/log/last-search.php:64
1426
+ #: wp-statistics/includes/log/last-visitor.php:67
1427
+ #: wp-statistics/includes/log/online.php:17
1428
+ #: wp-statistics/includes/log/page-statistics.php:34
1429
+ #: wp-statistics/includes/log/search-statistics.php:27
1430
+ #: wp-statistics/includes/log/top-countries.php:26
1431
+ #: wp-statistics/includes/log/top-pages.php:29
1432
+ #: wp-statistics/includes/log/top-pages.php:155
1433
+ #: wp-statistics/includes/log/top-referring.php:77
1434
+ #: wp-statistics/includes/log/top-visitors.php:40
1435
  msgid "Click to toggle"
1436
  msgstr ""
1437
 
1438
+ #: wp-statistics/includes/log/all-browsers.php:30
1439
+ #: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:455
1440
+ #: wp-statistics/wp-statistics.php:511
1441
  msgid "Browsers"
1442
  msgstr ""
1443
 
1444
+ #: wp-statistics/includes/log/all-browsers.php:57
1445
  msgid "Browsers by type"
1446
  msgstr ""
1447
 
1448
+ #: wp-statistics/includes/log/all-browsers.php:114
1449
+ #: wp-statistics/includes/log/widgets/top.visitors.php:18
1450
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1451
  msgid "Platform"
1452
  msgstr ""
1453
 
1454
+ #: wp-statistics/includes/log/all-browsers.php:141
1455
  msgid "Browsers by platform"
1456
  msgstr ""
1457
 
1458
+ #: wp-statistics/includes/log/all-browsers.php:249
1459
  msgid "%s Version"
1460
  msgstr ""
1461
 
1462
+ #: wp-statistics/includes/log/exclusions.php:8
1463
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1464
  msgstr ""
1465
 
1466
+ #: wp-statistics/includes/log/exclusions.php:64
1467
  msgid "Exclusions Statistics"
1468
  msgstr ""
1469
 
1470
+ #: wp-statistics/includes/functions/functions.php:970
1471
  msgid "10 Days"
1472
  msgstr ""
1473
 
1474
+ #: wp-statistics/includes/functions/functions.php:970
1475
  msgid "20 Days"
1476
  msgstr ""
1477
 
1478
+ #: wp-statistics/includes/functions/functions.php:970
1479
  msgid "30 Days"
1480
  msgstr ""
1481
 
1482
+ #: wp-statistics/includes/functions/functions.php:970
1483
  msgid "2 Months"
1484
  msgstr ""
1485
 
1486
+ #: wp-statistics/includes/functions/functions.php:970
1487
  msgid "3 Months"
1488
  msgstr ""
1489
 
1490
+ #: wp-statistics/includes/functions/functions.php:970
1491
  msgid "6 Months"
1492
  msgstr ""
1493
 
1494
+ #: wp-statistics/includes/functions/functions.php:970
1495
  msgid "9 Months"
1496
  msgstr ""
1497
 
1498
+ #: wp-statistics/includes/functions/functions.php:970
1499
  msgid "1 Year"
1500
  msgstr ""
1501
 
1502
+ #: wp-statistics/includes/log/exclusions.php:73
1503
  msgid "Exclusions Statistical Chart"
1504
  msgstr ""
1505
 
1506
+ #: wp-statistics/includes/log/exclusions.php:95
1507
  msgid "Excluded hits in the last"
1508
  msgstr ""
1509
 
1510
+ #: wp-statistics/includes/log/exclusions.php:95
1511
+ #: wp-statistics/includes/log/hit-statistics.php:66
1512
+ #: wp-statistics/includes/log/search-statistics.php:69
1513
+ #: wp-statistics/includes/log/widgets/hits.php:42
1514
+ #: wp-statistics/includes/log/widgets/search.php:42
1515
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
1516
  msgid "days"
1517
  msgstr ""
1518
 
1519
+ #: wp-statistics/includes/log/exclusions.php:116
1520
  msgid "Number of excluded hits"
1521
  msgstr ""
1522
 
1523
+ #: wp-statistics/includes/log/hit-statistics.php:27
1524
  msgid "Hits Statistics Chart"
1525
  msgstr ""
1526
 
1527
+ #: wp-statistics/includes/log/hit-statistics.php:66
1528
+ #: wp-statistics/includes/log/widgets/hits.php:42
1529
  msgid "Hits in the last"
1530
  msgstr ""
1531
 
1532
+ #: wp-statistics/includes/log/hit-statistics.php:87
1533
+ #: wp-statistics/includes/log/widgets/hits.php:63
1534
  msgid "Number of visits and visitors"
1535
  msgstr ""
1536
 
1537
+ #: wp-statistics/includes/log/hit-statistics.php:101
1538
+ #: wp-statistics/includes/log/hit-statistics.php:170
1539
+ #: wp-statistics/includes/log/widgets/hits.php:77
1540
+ #: wp-statistics/includes/log/widgets/quickstats.php:24
1541
+ #: wp-statistics/includes/log/widgets/summary.php:24
1542
  msgid "Visit"
1543
  msgstr ""
1544
 
1545
+ #: wp-statistics/includes/log/hit-statistics.php:101
1546
+ #: wp-statistics/includes/log/hit-statistics.php:171
1547
+ #: wp-statistics/includes/log/widgets/hits.php:77
1548
+ #: wp-statistics/includes/log/widgets/quickstats.php:23
1549
+ #: wp-statistics/includes/log/widgets/summary.php:23
1550
  msgid "Visitor"
1551
  msgstr ""
1552
 
1553
+ #: wp-statistics/includes/log/last-search.php:65
1554
  msgid "Latest Search Word Statistics"
1555
  msgstr ""
1556
 
1557
+ #: wp-statistics/includes/log/last-search.php:110
1558
+ #: wp-statistics/includes/log/last-visitor.php:101
1559
+ #: wp-statistics/includes/log/online.php:50
1560
+ #: wp-statistics/includes/log/widgets/google.map.php:60
1561
+ #: wp-statistics/includes/log/widgets/jqv.map.php:55
1562
+ #: wp-statistics/includes/log/widgets/recent.php:14
1563
+ #: wp-statistics/includes/log/widgets/words.php:27
1564
  msgid "#hash#"
1565
  msgstr ""
1566
 
1567
+ #: wp-statistics/includes/log/last-search.php:115
1568
+ #: wp-statistics/includes/log/last-visitor.php:106
1569
+ #: wp-statistics/includes/log/online.php:55
1570
+ #: wp-statistics/includes/log/top-referring.php:112
1571
+ #: wp-statistics/includes/log/widgets/recent.php:19
1572
+ #: wp-statistics/includes/log/widgets/words.php:42
1573
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
1574
  msgid "Map"
1575
  msgstr ""
1576
 
1577
+ #: wp-statistics/includes/log/last-search.php:159
1578
+ #: wp-statistics/includes/log/last-visitor.php:139
1579
+ #: wp-statistics/includes/log/online.php:109
1580
+ #: wp-statistics/includes/log/top-pages.php:205
1581
+ #: wp-statistics/includes/log/top-referring.php:153
1582
  msgid "Page"
1583
  msgstr ""
1584
 
1585
+ #: wp-statistics/includes/log/last-search.php:159
1586
+ #: wp-statistics/includes/log/last-visitor.php:139
1587
+ #: wp-statistics/includes/log/online.php:109
1588
+ #: wp-statistics/includes/log/top-pages.php:205
1589
+ #: wp-statistics/includes/log/top-referring.php:153
1590
  msgid "From"
1591
  msgstr ""
1592
 
1593
+ #: wp-statistics/includes/log/last-search.php:47
1594
+ #: wp-statistics/includes/log/last-visitor.php:38
1595
+ #: wp-statistics/includes/log/top-referring.php:67
1596
+ #: wp-statistics/includes/log/top-referring.php:70
1597
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
1598
+ #: wp-statistics/widget.php:296
1599
  msgid "All"
1600
  msgstr "সকল"
1601
 
1602
+ #: wp-statistics/includes/log/last-visitor.php:68
1603
  msgid "Recent Visitor Statistics"
1604
  msgstr ""
1605
 
1606
+ #: wp-statistics/includes/log/online.php:11
1607
+ #: wp-statistics/includes/log/online.php:18
1608
  msgid "Online Users"
1609
  msgstr ""
1610
 
1611
+ #: wp-statistics/includes/log/online.php:75
1612
  msgid "Online for "
1613
  msgstr ""
1614
 
1615
+ #: wp-statistics/includes/log/page-statistics.php:26
1616
  msgid "Page Trend for Post ID"
1617
  msgstr ""
1618
 
1619
+ #: wp-statistics/includes/log/page-statistics.php:35
1620
  msgid "Page Trend"
1621
  msgstr ""
1622
 
1623
+ #: wp-statistics/includes/log/search-statistics.php:19
1624
+ #: wp-statistics/includes/log/search-statistics.php:28
1625
  msgid "Search Engine Referral Statistics"
1626
  msgstr ""
1627
 
1628
+ #: wp-statistics/includes/log/search-statistics.php:69
1629
+ #: wp-statistics/includes/log/widgets/search.php:42
1630
  msgid "Search engine referrals in the last"
1631
  msgstr ""
1632
 
1633
+ #: wp-statistics/includes/log/search-statistics.php:90
1634
+ #: wp-statistics/includes/log/widgets/search.php:63
1635
  msgid "Number of referrals"
1636
  msgstr ""
1637
 
1638
+ #: wp-statistics/includes/log/exclusions.php:24
1639
+ #: wp-statistics/includes/log/search-statistics.php:104
1640
+ #: wp-statistics/includes/log/widgets/quickstats.php:58
1641
+ #: wp-statistics/includes/log/widgets/quickstats.php:105
1642
+ #: wp-statistics/includes/log/widgets/search.php:77
1643
+ #: wp-statistics/includes/log/widgets/summary.php:58
1644
+ #: wp-statistics/includes/log/widgets/summary.php:105
1645
  msgid "Total"
1646
  msgstr ""
1647
 
1648
+ #: wp-statistics/includes/log/top-countries.php:18
1649
+ #: wp-statistics/includes/log/top-countries.php:27
1650
  msgid "Top Countries"
1651
  msgstr ""
1652
 
1653
+ #: wp-statistics/includes/log/top-countries.php:31
1654
+ #: wp-statistics/includes/log/widgets/countries.php:9
1655
+ #: wp-statistics/includes/log/widgets/top.visitors.php:11
1656
  msgid "Rank"
1657
  msgstr ""
1658
 
1659
+ #: wp-statistics/includes/log/top-countries.php:32
1660
+ #: wp-statistics/includes/log/widgets/countries.php:10
1661
+ #: wp-statistics/includes/log/widgets/top.visitors.php:13
1662
  msgid "Flag"
1663
  msgstr ""
1664
 
1665
+ #: wp-statistics/includes/log/top-countries.php:33
1666
+ #: wp-statistics/includes/log/widgets/countries.php:11
1667
+ #: wp-statistics/includes/log/widgets/top.visitors.php:14
1668
  msgid "Country"
1669
  msgstr ""
1670
 
1671
+ #: wp-statistics/includes/log/top-countries.php:34
1672
+ #: wp-statistics/includes/log/widgets/countries.php:12
1673
  msgid "Visitor Count"
1674
  msgstr ""
1675
 
1676
+ #: wp-statistics/includes/log/top-pages.php:20
1677
+ #: wp-statistics/includes/log/top-pages.php:156
1678
  msgid "Top Pages"
1679
  msgstr ""
1680
 
1681
+ #: wp-statistics/includes/log/top-pages.php:30
1682
  msgid "Top 5 Pages Trends"
1683
  msgstr ""
1684
 
1685
+ #: wp-statistics/includes/log/top-pages.php:67
1686
  msgid "Top 5 Page Trending Stats"
1687
  msgstr ""
1688
 
1689
+ #: wp-statistics/includes/log/top-pages.php:88
1690
+ #: wp-statistics/includes/log/widgets/page.php:63
1691
  msgid "Number of Hits"
1692
  msgstr ""
1693
 
1694
+ #: wp-statistics/includes/log/top-pages.php:184
1695
+ #: wp-statistics/includes/log/widgets/pages.php:13
1696
  msgid "No page title found"
1697
  msgstr ""
1698
 
1699
+ #: wp-statistics/includes/log/top-pages.php:187
1700
+ #: wp-statistics/includes/log/widgets/pages.php:16
1701
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
1702
+ #: wp-statistics/includes/settings/tabs/wps-general.php:122
1703
+ #: wp-statistics/includes/settings/tabs/wps-general.php:127
1704
+ #: wp-statistics/shortcode.php:139
1705
  msgid "Visits"
1706
  msgstr ""
1707
 
1708
+ #: wp-statistics/includes/log/top-referring.php:4
1709
  msgid "To be added soon"
1710
  msgstr ""
1711
 
1712
+ #: wp-statistics/includes/log/top-referring.php:79
1713
  msgid "Referring sites from"
1714
  msgstr ""
1715
 
1716
+ #: wp-statistics/includes/log/top-referring.php:137
1717
+ #: wp-statistics/includes/log/widgets/referring.php:35
1718
  msgid "References"
1719
  msgstr ""
1720
 
1721
+ #: wp-statistics/includes/log/top-visitors.php:12
1722
  msgid "Top 100 Visitors Today"
1723
  msgstr ""
1724
 
1725
+ #: wp-statistics/includes/log/log.php:17
1726
  msgid "About WP Statistics Version %s"
1727
  msgstr ""
1728
 
1729
+ #: wp-statistics/includes/log/widgets/about.php:11
1730
  msgid "Website"
1731
  msgstr ""
1732
 
1733
+ #: wp-statistics/includes/log/widgets/about.php:12
1734
  msgid "Rate and Review"
1735
  msgstr ""
1736
 
1737
+ #: wp-statistics/includes/log/widgets/about.php:16
1738
  msgid "More Information"
1739
  msgstr ""
1740
 
1741
+ #: wp-statistics/includes/log/widgets/about.php:25
1742
+ #: wp-statistics/includes/settings/tabs/wps-about.php:12
1743
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1744
  msgstr ""
1745
 
1746
+ #: wp-statistics/includes/log/widgets/browsers.php:34
1747
  msgid "Other"
1748
  msgstr ""
1749
 
1750
+ #: wp-statistics/wp-statistics.php:445
1751
  msgid "Today Visitors Map"
1752
  msgstr ""
1753
 
1754
+ #: wp-statistics/includes/log/widgets/referring.php:36
1755
  msgid "Address"
1756
  msgstr ""
1757
 
1758
+ #: wp-statistics/includes/log/widgets/quickstats.php:12
1759
+ #: wp-statistics/includes/log/widgets/summary.php:12
1760
  msgid "User(s) Online"
1761
  msgstr ""
1762
 
1763
+ #: wp-statistics/includes/log/widgets/quickstats.php:28
1764
+ #: wp-statistics/includes/log/widgets/quickstats.php:80
1765
+ #: wp-statistics/includes/log/widgets/summary.php:28
1766
+ #: wp-statistics/includes/log/widgets/summary.php:80
1767
  msgid "Today"
1768
  msgstr ""
1769
 
1770
+ #: wp-statistics/includes/log/widgets/quickstats.php:34
1771
+ #: wp-statistics/includes/log/widgets/quickstats.php:81
1772
+ #: wp-statistics/includes/log/widgets/summary.php:34
1773
+ #: wp-statistics/includes/log/widgets/summary.php:81
1774
  msgid "Yesterday"
1775
  msgstr ""
1776
 
1777
+ #: wp-statistics/includes/log/widgets/quickstats.php:99
1778
+ #: wp-statistics/includes/log/widgets/summary.php:99
1779
  msgid "Daily Total"
1780
  msgstr ""
1781
 
1782
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1783
+ #: wp-statistics/includes/log/widgets/summary.php:118
1784
  msgid "Current Time and Date"
1785
  msgstr ""
1786
 
1787
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1788
+ #: wp-statistics/includes/log/widgets/summary.php:118
1789
  msgid "(Adjustment)"
1790
  msgstr ""
1791
 
1792
+ #: wp-statistics/includes/log/widgets/quickstats.php:122
1793
+ #: wp-statistics/includes/log/widgets/summary.php:122
1794
  msgid "Date: %s"
1795
  msgstr ""
1796
 
1797
+ #: wp-statistics/includes/log/widgets/quickstats.php:126
1798
+ #: wp-statistics/includes/log/widgets/summary.php:126
1799
  msgid "Time: %s"
1800
  msgstr ""
1801
 
1802
+ #: wp-statistics/includes/log/widgets/top.visitors.php:12
1803
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
1804
+ #: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
1805
+ #: wp-statistics/wp-statistics.php:514
1806
  msgid "Hits"
1807
  msgstr ""
1808
 
1809
+ #: wp-statistics/includes/log/widgets/top.visitors.php:15
1810
  msgid "IP"
1811
  msgstr "আইপি"
1812
 
1813
+ #: wp-statistics/includes/log/widgets/top.visitors.php:17
1814
  msgid "Agent"
1815
  msgstr ""
1816
 
1817
+ #: wp-statistics/includes/log/widgets/top.visitors.php:19
1818
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1819
  msgid "Version"
1820
  msgstr ""
1821
 
1822
+ #: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
1823
+ #: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
1824
+ #: wp-statistics/ajax.php:184 wp-statistics/ajax.php:302
1825
+ #: wp-statistics/includes/optimization/wps-optimization.php:6
1826
  msgid "Access denied!"
1827
  msgstr ""
1828
 
1829
+ #: wp-statistics/ajax.php:31
1830
  msgid "%s agent data deleted successfully."
1831
  msgstr ""
1832
 
1833
+ #: wp-statistics/ajax.php:34
1834
  msgid "No agent data found to remove!"
1835
  msgstr ""
1836
 
1837
+ #: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
1838
+ #: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
1839
  msgid "Please select the desired items."
1840
  msgstr ""
1841
 
1842
+ #: wp-statistics/ajax.php:62
1843
  msgid "%s platform data deleted successfully."
1844
  msgstr ""
1845
 
1846
+ #: wp-statistics/ajax.php:65
1847
  msgid "No platform data found to remove!"
1848
  msgstr ""
1849
 
1850
+ #: wp-statistics/includes/functions/functions.php:1074
1851
  msgid "%s table data deleted successfully."
1852
  msgstr ""
1853
 
1854
+ #: wp-statistics/includes/functions/functions.php:1078
1855
  msgid "Error, %s not emptied!"
1856
  msgstr ""
1857
 
1858
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1859
  msgid "Database Setup"
1860
  msgstr ""
1861
 
1862
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1863
  msgid "Re-run Install"
1864
  msgstr ""
1865
 
1866
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1867
  msgid "Install Now!"
1868
  msgstr ""
1869
 
1870
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1871
  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."
1872
  msgstr ""
1873
 
1874
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1875
  msgid "Database Index"
1876
  msgstr ""
1877
 
1878
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1879
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1880
+ #: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:512
1881
  msgid "Countries"
1882
  msgstr ""
1883
 
1884
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
1885
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
1886
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1887
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1888
  msgid "Update Now!"
1889
  msgstr ""
1890
 
1891
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
1892
  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."
1893
  msgstr ""
1894
 
1895
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
1896
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
1897
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1898
  msgstr ""
1899
 
1900
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
1901
  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."
1902
  msgstr ""
1903
 
1904
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
1905
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
1906
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
1907
  msgid "Congratulations, your installation is already up to date, nothing to do."
1908
  msgstr ""
1909
 
1910
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
1911
+ #: wp-statistics/includes/optimization/wps-optimization.php:235
1912
  msgid "Export"
1913
  msgstr ""
1914
 
1915
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
1916
  msgid "Export from"
1917
  msgstr ""
1918
 
1919
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
1920
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
1921
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
1922
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
1923
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
1924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:134
1925
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:164
1926
  msgid "Please select"
1927
  msgstr ""
1928
 
1929
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
1930
  msgid "Select the table for the output file."
1931
  msgstr ""
1932
 
1933
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
1934
  msgid "Export To"
1935
  msgstr ""
1936
 
1937
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
1938
  msgid "Select the output file type."
1939
  msgstr ""
1940
 
1941
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
1942
  msgid "Include Header Row"
1943
  msgstr ""
1944
 
1945
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1946
  msgid "Include a header row as the first line of the exported file."
1947
  msgstr ""
1948
 
1949
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
1950
  msgid "Start Now!"
1951
  msgstr ""
1952
 
1953
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1954
  msgid "Historical Values"
1955
  msgstr ""
1956
 
1957
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1958
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1959
  msgstr ""
1960
 
1961
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1962
+ #: wp-statistics/includes/settings/tabs/wps-general.php:138
1963
+ #: wp-statistics/includes/settings/tabs/wps-general.php:143
1964
+ #: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
1965
+ #: wp-statistics/wp-statistics.php:521
1966
  msgid "Visitors"
1967
  msgstr ""
1968
 
1969
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1970
  msgid "Number of historical number of visitors to the site (current value is %s)."
1971
  msgstr ""
1972
 
1973
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1974
  msgid "Number of historical number of visits to the site (current value is %s)."
1975
  msgstr ""
1976
 
1977
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1978
  msgid "Update now!"
1979
  msgstr ""
1980
 
1981
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1982
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
1983
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
1984
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
1985
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
1986
  msgid "Are you sure?"
1987
  msgstr ""
1988
 
1989
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
1990
  msgid "Data"
1991
  msgstr ""
1992
 
1993
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1994
  msgid "Empty Table"
1995
  msgstr ""
1996
 
1997
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
1998
  msgid "All data table will be lost."
1999
  msgstr ""
2000
 
2001
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
2002
  msgid "Clear now!"
2003
  msgstr ""
2004
 
2005
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
2006
  msgid "Purge records older than"
2007
  msgstr ""
2008
 
2009
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
2010
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
2011
  msgstr ""
2012
 
2013
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
2014
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
2015
  msgid "Purge now!"
2016
  msgstr ""
2017
 
2018
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
2019
  msgid "Delete User Agent Types"
2020
  msgstr ""
2021
 
2022
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
2023
  msgid "Delete Agents"
2024
  msgstr ""
2025
 
2026
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
2027
  msgid "All visitor data will be lost for this agent type."
2028
  msgstr ""
2029
 
2030
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
2031
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
2032
  msgid "Delete now!"
2033
  msgstr ""
2034
 
2035
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
2036
  msgid "Delete Platforms"
2037
  msgstr ""
2038
 
2039
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
2040
  msgid "All visitor data will be lost for this platform type."
2041
  msgstr ""
2042
 
2043
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
2044
  msgid "Resources"
2045
  msgstr ""
2046
 
2047
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
2048
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
2049
  msgid "Memory usage in PHP"
2050
  msgstr ""
2051
 
2052
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
2053
  msgid "Byte"
2054
  msgstr ""
2055
 
2056
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
2057
  msgid "PHP Memory Limit"
2058
  msgstr ""
2059
 
2060
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
2061
  msgid "The memory limit a script is allowed to consume, set in php.ini."
2062
  msgstr ""
2063
 
2064
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
2065
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
2066
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
2067
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
2068
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
2069
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
2070
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
2071
  msgid "Number of rows in the %s table"
2072
  msgstr ""
2073
 
2074
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
2075
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
2076
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
2077
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
2078
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
2079
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
2080
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
2081
  msgid "Row"
2082
  msgstr ""
2083
 
2084
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
2085
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
2086
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
2087
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
2088
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
2089
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
2090
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
2091
  msgid "Number of rows"
2092
  msgstr ""
2093
 
2094
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
2095
  msgid "Version Info"
2096
  msgstr ""
2097
 
2098
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
2099
  msgid "WP Statistics Version"
2100
  msgstr ""
2101
 
2102
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
2103
  msgid "The WP Statistics version you are running."
2104
  msgstr ""
2105
 
2106
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
2107
  msgid "PHP Version"
2108
  msgstr ""
2109
 
2110
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
2111
  msgid "The PHP version you are running."
2112
  msgstr ""
2113
 
2114
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
2115
  msgid "PHP Safe Mode"
2116
  msgstr ""
2117
 
2118
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
2119
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2120
  msgstr ""
2121
 
2122
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
2123
  msgid "jQuery Version"
2124
  msgstr ""
2125
 
2126
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
2127
  msgid "The jQuery version you are running."
2128
  msgstr ""
2129
 
2130
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
2131
  msgid "cURL Version"
2132
  msgstr ""
2133
 
2134
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
2135
  msgid "cURL not installed"
2136
  msgstr ""
2137
 
2138
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
2139
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2140
  msgstr ""
2141
 
2142
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
 
 
 
 
2143
  msgid "Installed"
2144
  msgstr ""
2145
 
2146
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2147
  msgid "Not installed"
2148
  msgstr ""
2149
 
2150
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
 
 
 
 
2151
  msgid "File Info"
2152
  msgstr ""
2153
 
2154
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
2155
  msgid "GeoIP Database"
2156
  msgstr ""
2157
 
2158
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
2159
  msgid "Database file does not exist."
2160
  msgstr ""
2161
 
2162
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
2163
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
2164
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
2165
  msgid ", created on "
2166
  msgstr ""
2167
 
2168
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
2169
  msgid "The file size and date of the GeoIP database."
2170
  msgstr ""
2171
 
2172
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
2173
  msgid "browscap.ini File"
2174
  msgstr ""
2175
 
2176
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
2177
  msgid "browscap.ini file does not exist."
2178
  msgstr ""
2179
 
2180
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
2181
  msgid "The file size and date of the browscap.ini file."
2182
  msgstr ""
2183
 
2184
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
2185
  msgid "browscap Cache File"
2186
  msgstr ""
2187
 
2188
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
2189
  msgid "browscap cache file does not exist."
2190
  msgstr ""
2191
 
2192
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
2193
  msgid "The file size and date of the browscap cache file."
2194
  msgstr ""
2195
 
2196
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
2197
  msgid "Client Info"
2198
  msgstr ""
2199
 
2200
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
2201
  msgid "Client IP"
2202
  msgstr ""
2203
 
2204
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
2205
  msgid "The client IP address."
2206
  msgstr ""
2207
 
2208
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
2209
  msgid "User Agent"
2210
  msgstr ""
2211
 
2212
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2213
  msgid "The client user agent string."
2214
  msgstr ""
2215
 
2216
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2217
  msgid "Browser"
2218
  msgstr ""
2219
 
2220
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2221
  msgid "The detected client browser."
2222
  msgstr ""
2223
 
2224
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2225
  msgid "The detected client browser version."
2226
  msgstr ""
2227
 
2228
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2229
  msgid "The detected client platform."
2230
  msgstr ""
2231
 
2232
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2233
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2234
  msgstr ""
2235
 
2236
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2237
  msgid "GeoIP Options"
2238
  msgstr ""
2239
 
2240
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2241
  msgid "Updates any unknown location data in the database, this may take a while"
2242
  msgstr ""
2243
 
2244
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2245
+ #: wp-statistics/includes/settings/tabs/wps-general.php:66
2246
  msgid "IP Addresses"
2247
  msgstr ""
2248
 
2249
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2250
+ #: wp-statistics/includes/settings/tabs/wps-general.php:71
2251
  msgid "Hash IP Addresses"
2252
  msgstr ""
2253
 
2254
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2255
  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"
2256
  msgstr ""
2257
 
2258
+ #: wp-statistics/includes/optimization/wps-optimization.php:43
2259
  msgid "IP Addresses replaced with hash values."
2260
  msgstr ""
2261
 
2262
+ #: wp-statistics/includes/optimization/wps-optimization.php:51
2263
  msgid "Install routine complete."
2264
  msgstr ""
2265
 
2266
+ #: wp-statistics/includes/optimization/wps-optimization.php:234
2267
  msgid "Resources/Information"
2268
  msgstr ""
2269
 
2270
+ #: wp-statistics/includes/optimization/wps-optimization.php:236
2271
  msgid "Purging"
2272
  msgstr ""
2273
 
2274
+ #: wp-statistics/includes/optimization/wps-optimization.php:237
2275
  msgid "Database"
2276
  msgstr ""
2277
 
2278
+ #: wp-statistics/includes/optimization/wps-optimization.php:238
2279
  msgid "Updates"
2280
  msgstr ""
2281
 
2282
+ #: wp-statistics/includes/optimization/wps-optimization.php:239
2283
  msgid "Historical"
2284
  msgstr ""
2285
 
2286
+ #: wp-statistics/includes/settings/tabs/wps-about.php:8
2287
  msgid "WP Statistics V%s"
2288
  msgstr ""
2289
 
2290
+ #: wp-statistics/includes/settings/tabs/wps-about.php:28
2291
  msgid "Visit Us Online"
2292
  msgstr ""
2293
 
2294
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2295
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2296
  msgstr ""
2297
 
2298
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2299
  msgid "website"
2300
  msgstr ""
2301
 
2302
+ #: wp-statistics/includes/settings/tabs/wps-about.php:36
2303
  msgid "Rate and Review at WordPress.org"
2304
  msgstr ""
2305
 
2306
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2307
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2308
  msgstr ""
2309
 
2310
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2311
  msgid "rating and review"
2312
  msgstr ""
2313
 
2314
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2315
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2316
  msgstr ""
2317
 
2318
+ #: wp-statistics/includes/settings/tabs/wps-about.php:44
2319
  msgid "Translations"
2320
  msgstr ""
2321
 
2322
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2323
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2324
  msgstr ""
2325
 
2326
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2327
  msgid "translation collaboration site"
2328
  msgstr ""
2329
 
2330
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2331
  msgid "drop us a line"
2332
  msgstr ""
2333
 
2334
+ #: wp-statistics/includes/settings/tabs/wps-about.php:52
2335
  msgid "Support"
2336
  msgstr ""
2337
 
2338
+ #: wp-statistics/includes/settings/tabs/wps-about.php:57
2339
  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:"
2340
  msgstr ""
2341
 
2342
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2343
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2344
  msgid "Have you read the %s?"
2345
  msgstr ""
2346
 
2347
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2348
  msgid "FAQs"
2349
  msgstr ""
2350
 
2351
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2352
  msgid "manual"
2353
  msgstr ""
2354
 
2355
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2356
  msgid "Have you search the %s for a similar issue?"
2357
  msgstr ""
2358
 
2359
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2360
  msgid "support forum"
2361
  msgstr ""
2362
 
2363
+ #: wp-statistics/includes/settings/tabs/wps-about.php:63
2364
  msgid "Have you search the Internet for any error messages you are receiving?"
2365
  msgstr ""
2366
 
2367
+ #: wp-statistics/includes/settings/tabs/wps-about.php:64
2368
  msgid "Make sure you have access to your PHP error logs."
2369
  msgstr ""
2370
 
2371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:67
2372
  msgid "And a few things to double-check:"
2373
  msgstr ""
2374
 
2375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:70
2376
  msgid "How's your memory_limit in php.ini?"
2377
  msgstr ""
2378
 
2379
+ #: wp-statistics/includes/settings/tabs/wps-about.php:71
2380
  msgid "Have you tried disabling any other plugins you may have installed?"
2381
  msgstr ""
2382
 
2383
+ #: wp-statistics/includes/settings/tabs/wps-about.php:72
2384
  msgid "Have you tried using the default WordPress theme?"
2385
  msgstr ""
2386
 
2387
+ #: wp-statistics/includes/settings/tabs/wps-about.php:73
2388
  msgid "Have you double checked the plugin settings?"
2389
  msgstr ""
2390
 
2391
+ #: wp-statistics/includes/settings/tabs/wps-about.php:74
2392
  msgid "Do you have all the required PHP extensions installed?"
2393
  msgstr ""
2394
 
2395
+ #: wp-statistics/includes/settings/tabs/wps-about.php:75
2396
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2397
  msgstr ""
2398
 
2399
+ #: wp-statistics/includes/settings/tabs/wps-about.php:76
2400
  msgid "Have you checked your PHP and web server error logs?"
2401
  msgstr ""
2402
 
2403
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2404
  msgid "Still not having any luck?"
2405
  msgstr ""
2406
 
2407
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2408
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2409
  msgstr ""
2410
 
2411
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2412
  msgid "WordPress.org support forum"
2413
  msgstr ""
2414
 
2415
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2416
  msgid "Alternatively %s support is available as well."
2417
  msgstr ""
2418
 
2419
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2420
  msgid "Farsi"
2421
  msgstr ""
2422
 
2423
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
2424
  msgid "WP Statistics Honey Pot Page"
2425
  msgstr ""
2426
 
2427
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
2428
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2429
  msgstr ""
2430
 
2431
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:23
2432
+ #: wp-statistics/includes/settings/wps-settings.php:103
2433
  msgid "Access Levels"
2434
  msgstr ""
2435
 
2436
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:52
2437
  msgid "Required user level to view WP Statistics"
2438
  msgstr ""
2439
 
2440
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:67
2441
  msgid "Required user level to manage WP Statistics"
2442
  msgstr ""
2443
 
2444
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2445
  msgid "See the %s for details on capability levels."
2446
  msgstr ""
2447
 
2448
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2449
  msgid "WordPress Roles and Capabilities page"
2450
  msgstr ""
2451
 
2452
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:76
2453
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2454
  msgstr ""
2455
 
2456
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:77
2457
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2458
  msgstr ""
2459
 
2460
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:78
2461
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2462
  msgstr ""
2463
 
2464
+ #: wp-statistics/includes/log/exclusions.php:197
2465
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
2466
+ #: wp-statistics/includes/settings/wps-settings.php:104
2467
+ #: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:513
2468
  msgid "Exclusions"
2469
  msgstr ""
2470
 
2471
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
2472
  msgid "Record exclusions"
2473
  msgstr ""
2474
 
2475
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
2476
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
2477
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
2478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
2479
  msgid "Enable"
2480
  msgstr ""
2481
 
2482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
2483
  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."
2484
  msgstr ""
2485
 
2486
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
2487
  msgid "Exclude User Roles"
2488
  msgstr ""
2489
 
2490
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
2491
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
2492
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
2493
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
2494
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
2495
  msgid "Exclude"
2496
  msgstr ""
2497
 
2498
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
2499
  msgid "Exclude %s role from data collection."
2500
  msgstr ""
2501
 
2502
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
2503
  msgid "IP/Robot Exclusions"
2504
  msgstr ""
2505
 
2506
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
2507
  msgid "Robot list"
2508
  msgstr ""
2509
 
2510
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
2511
  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."
2512
  msgstr ""
2513
 
2514
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
2515
  msgid "Reset to Default"
2516
  msgstr ""
2517
 
2518
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
2519
  msgid "Force robot list update after upgrades"
2520
  msgstr ""
2521
 
2522
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
2523
  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."
2524
  msgstr ""
2525
 
2526
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
2527
  msgid "Robot visit threshold"
2528
  msgstr ""
2529
 
2530
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
2531
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2532
  msgstr ""
2533
 
2534
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
2535
  msgid "Excluded IP address list"
2536
  msgstr ""
2537
 
2538
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
2539
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2540
  msgstr ""
2541
 
2542
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
2543
  msgid "Add 10.0.0.0"
2544
  msgstr ""
2545
 
2546
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
2547
  msgid "Add 172.16.0.0"
2548
  msgstr ""
2549
 
2550
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
2551
  msgid "Add 192.168.0.0"
2552
  msgstr ""
2553
 
2554
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
2555
  msgid "Use honey pot"
2556
  msgstr ""
2557
 
2558
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
2559
  msgid "Use a honey pot page to identify robots."
2560
  msgstr ""
2561
 
2562
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
2563
  msgid "Honey pot post id"
2564
  msgstr ""
2565
 
2566
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
2567
  msgid "The post id to use for the honeypot page."
2568
  msgstr ""
2569
 
2570
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
2571
  msgid "Create a new honey pot page"
2572
  msgstr ""
2573
 
2574
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
2575
  msgid "GeoIP Exclusions"
2576
  msgstr ""
2577
 
2578
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
2579
  msgid "Excluded countries list"
2580
  msgstr ""
2581
 
2582
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
2583
  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."
2584
  msgstr ""
2585
 
2586
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
2587
  msgid "Included countries list"
2588
  msgstr ""
2589
 
2590
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
2591
  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."
2592
  msgstr ""
2593
 
2594
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
2595
  msgid "Host Exclusions"
2596
  msgstr ""
2597
 
2598
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
2599
  msgid "Excluded hosts list"
2600
  msgstr ""
2601
 
2602
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
2603
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2604
  msgstr ""
2605
 
2606
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
2607
  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."
2608
  msgstr ""
2609
 
2610
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
2611
  msgid "Site URL Exclusions"
2612
  msgstr ""
2613
 
2614
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
2615
  msgid "Excluded login page"
2616
  msgstr ""
2617
 
2618
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
2619
  msgid "Exclude the login page for registering as a hit."
2620
  msgstr ""
2621
 
2622
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
2623
  msgid "Excluded admin pages"
2624
  msgstr ""
2625
 
2626
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
2627
  msgid "Exclude the admin pages for registering as a hit."
2628
  msgstr ""
2629
 
2630
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
2631
  msgid "Excluded RSS feeds"
2632
  msgstr ""
2633
 
2634
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
2635
  msgid "Exclude the RSS feeds for registering as a hit."
2636
  msgstr ""
2637
 
2638
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:162
2639
  msgid "browscap settings"
2640
  msgstr ""
2641
 
2642
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:167
2643
  msgid "browscap usage"
2644
  msgstr ""
2645
 
2646
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:52
2647
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:76
2648
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:109
2649
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:172
2650
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:196
2651
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:236
2652
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:260
2653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:76
2654
+ #: wp-statistics/includes/settings/tabs/wps-general.php:92
2655
+ #: wp-statistics/includes/settings/tabs/wps-general.php:116
2656
+ #: wp-statistics/includes/settings/tabs/wps-general.php:132
2657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:148
2658
+ #: wp-statistics/includes/settings/tabs/wps-general.php:160
2659
+ #: wp-statistics/includes/settings/tabs/wps-general.php:187
2660
+ #: wp-statistics/includes/settings/tabs/wps-general.php:199
2661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:214
2662
+ #: wp-statistics/includes/settings/tabs/wps-general.php:228
2663
+ #: wp-statistics/includes/settings/tabs/wps-general.php:258
2664
+ #: wp-statistics/includes/settings/tabs/wps-general.php:270
2665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:286
2666
+ #: wp-statistics/includes/settings/tabs/wps-general.php:325
2667
+ #: wp-statistics/includes/settings/tabs/wps-general.php:341
2668
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
2669
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
2670
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:69
2671
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:81
2672
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:93
2673
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:105
2674
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:121
2675
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
2676
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
2677
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:94
2678
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:106
2679
  msgid "Active"
2680
  msgstr ""
2681
 
2682
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:173
2683
  msgid "The browscap database will be downloaded and used to detect robots."
2684
  msgstr ""
2685
 
2686
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:179
2687
  msgid "Update browscap Info"
2688
  msgstr ""
2689
 
2690
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:184
2691
  msgid "Download browscap Database"
2692
  msgstr ""
2693
 
2694
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:65
2695
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:185
2696
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:249
2697
  msgid "Save changes on this page to download the update."
2698
  msgstr ""
2699
 
2700
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:191
2701
  msgid "Schedule weekly update of browscap DB"
2702
  msgstr ""
2703
 
2704
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:79
2705
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:199
2706
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:263
2707
  msgid "Next update will be"
2708
  msgstr ""
2709
 
2710
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:215
2711
  msgid "Download of the browscap database will be scheduled for once a week."
2712
  msgstr ""
2713
 
2714
+ #: wp-statistics/includes/settings/tabs/wps-general.php:50
2715
  msgid "This will delete the manual when you save the settings, are you sure?"
2716
  msgstr ""
2717
 
2718
+ #: wp-statistics/includes/settings/tabs/wps-general.php:77
2719
  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."
2720
  msgstr ""
2721
 
2722
+ #: wp-statistics/includes/settings/tabs/wps-general.php:82
2723
+ #: wp-statistics/shortcode.php:138
2724
  msgid "Users Online"
2725
  msgstr ""
2726
 
2727
+ #: wp-statistics/includes/settings/tabs/wps-general.php:87
2728
  msgid "User online"
2729
  msgstr ""
languages/wp_statistics-ckb.mo CHANGED
Binary file
languages/wp_statistics-ckb.po CHANGED
@@ -7,2624 +7,2723 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-beta\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "&#151; You are running an unsupported version of PHP."
15
  msgstr "ئێوە خەریکی کارکردن بە وشانی پاڵپشتی نەکراویphpین"
16
 
17
- #: wp-statistics.php:95
18
  msgid "WP Statistics Disabled"
19
  msgstr "ئامار ناچالاک بووە"
20
 
21
- #: wp-statistics.php:99
22
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
23
  msgstr ""
24
 
25
- #: wp-statistics.php:101
26
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
27
  msgstr "WP ئاماری PHP وشانی٪ s ناسراوە کە پاڵپشتی ناکرێت WP پێویستی PHP وشانی ٪ s و سەرتر هەیە!"
28
 
29
- #: ajax.php:281
30
  msgid "ERROR: Widget not found!"
31
  msgstr "هەڵە : ویجیت پەیدا نەبوو"
32
 
33
- #: dashboard.php:103 includes/log/log.php:13
 
34
  msgid "Loading..."
35
  msgstr "خرمەخرم......"
36
 
37
- #: dashboard.php:121 includes/log/log.php:2
 
38
  msgid "Reloading..."
39
  msgstr "لە کاتی هەڵگرساندەوە...."
40
 
41
- #: includes/log/top-visitors.php:41 wp-statistics.php:447
 
42
  msgid "Top Visitors"
43
  msgstr "دوایین سەردانەکان"
44
 
45
- #: wp-statistics.php:206
46
  msgid "optimization page"
47
  msgstr "پەڕەی چاکسازی"
48
 
49
- #: includes/settings/tabs/wps-maintenance.php:35
50
- #: includes/settings/tabs/wps-maintenance.php:63
51
  msgid "Enabled"
52
  msgstr "چالاک کرا"
53
 
54
- #: includes/settings/tabs/wps-maintenance.php:30
55
  msgid "Purge Old Data Daily"
56
  msgstr "سڕینەوەی زانیاری ڕۆژانە"
57
 
58
- #: includes/settings/tabs/wps-maintenance.php:41
59
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
60
  msgstr ""
61
 
62
- #: includes/settings/tabs/wps-maintenance.php:47
63
  msgid "Purge data older than"
64
  msgstr "سڕینەوەی زانیاری کۆنەتتر"
65
 
66
- #: includes/settings/tabs/wps-maintenance.php:58
67
  msgid "Purge High Hit Count Visitors Daily"
68
  msgstr ""
69
 
70
- #: includes/settings/tabs/wps-maintenance.php:69
71
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
72
  msgstr ""
73
 
74
- #: includes/settings/tabs/wps-maintenance.php:81
75
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
76
  msgstr ""
77
 
78
- #: shortcode.php:184
79
  msgid "The post/page id to get page statistics on."
80
  msgstr ""
81
 
82
- #: shortcode.php:181
83
  msgid "Post/Page ID"
84
  msgstr ""
85
 
86
- #: includes/functions/functions.php:424
87
  msgid "Ask.com"
88
  msgstr ""
89
 
90
- #: shortcode.php:158
91
  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."
92
  msgstr ""
93
 
94
- #: wp-statistics.php:180
95
  msgid "visitor tracking"
96
  msgstr ""
97
 
98
- #: wp-statistics.php:181
99
  msgid "geoip collection"
100
  msgstr ""
101
 
102
- #: wp-statistics.php:197
103
  msgid "visit database index"
104
  msgstr ""
105
 
106
- #: wp-statistics.php:206
107
  msgid "Database updates are required, please go to %s and update the following: %s"
108
  msgstr ""
109
 
110
- #: wp-statistics.php:197
111
  msgid "countries database index"
112
  msgstr ""
113
 
114
- #: wp-statistics.php:190
115
  msgid "search table"
116
  msgstr ""
117
 
118
- #: wp-statistics.php:184
119
  msgid "settings page"
120
  msgstr ""
121
 
122
- #: wp-statistics.php:184 wp-statistics.php:206
123
  msgid ","
124
  msgstr ""
125
 
126
- #: wp-statistics.php:184
127
  msgid "The following features are disabled, please go to %s and enable them: %s"
128
  msgstr ""
129
 
130
- #: wp-statistics.php:179
131
  msgid "hit tracking"
132
  msgstr ""
133
 
134
- #: wp-statistics.php:178
135
  msgid "online user tracking"
136
  msgstr ""
137
 
138
- #: wp-statistics.php:775
139
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
140
  msgstr ""
141
 
142
- #: includes/optimization/wps-optimization.php:196
143
  msgid "Search table conversion complete, %d rows added."
144
  msgstr ""
145
 
146
- #: includes/optimization/tabs/wps-optimization-database.php:113
147
  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."
148
  msgstr ""
149
 
150
- #: includes/optimization/tabs/wps-optimization-database.php:94
151
  msgid "Search Table"
152
  msgstr ""
153
 
154
- #: includes/optimization/tabs/wps-optimization-database.php:99
155
  msgid "Convert"
156
  msgstr ""
157
 
158
- #: includes/optimization/tabs/wps-optimization-database.php:106
159
  msgid "Convert Now!"
160
  msgstr ""
161
 
162
- #: includes/optimization/tabs/wps-optimization-database.php:107
163
  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."
164
  msgstr ""
165
 
166
- #: includes/log/exclusions.php:24
167
  msgid "Referrer Spam"
168
  msgstr ""
169
 
170
- #: includes/settings/tabs/wps-externals.php:279
171
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
172
  msgstr ""
173
 
174
- #: includes/settings/wps-settings.php:105
175
  msgid "Externals"
176
  msgstr ""
177
 
178
- #: includes/settings/tabs/wps-externals.php:220
179
  msgid "Piwik Referrer Spam Blacklist settings"
180
  msgstr ""
181
 
182
- #: includes/settings/tabs/wps-externals.php:255
183
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
184
  msgstr ""
185
 
186
- #: includes/settings/tabs/wps-externals.php:248
187
  msgid "Download Piwik Referrer Spam Blacklist Database"
188
  msgstr ""
189
 
190
- #: includes/settings/tabs/wps-externals.php:243
191
  msgid "Update Piwik Referrer Spam Blacklist Info"
192
  msgstr ""
193
 
194
- #: includes/settings/tabs/wps-externals.php:237
195
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
196
  msgstr ""
197
 
198
- #: includes/settings/tabs/wps-externals.php:225
199
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
200
  msgstr ""
201
 
202
- #: includes/settings/tabs/wps-externals.php:231
203
  msgid "Piwik Referrer Spam Blacklist usage"
204
  msgstr ""
205
 
206
- #: includes/settings/tabs/wps-exclusions.php:148
207
  msgid "Treat corrupt browser info as a bot"
208
  msgstr ""
209
 
210
- #: includes/log/exclusions.php:24
211
  msgid "404 Pages"
212
  msgstr ""
213
 
214
- #: includes/log/top-visitors.php:26
215
  msgid "Date"
216
  msgstr ""
217
 
218
- #: includes/settings/tabs/wps-exclusions.php:151
219
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
220
  msgstr ""
221
 
222
- #: includes/settings/tabs/wps-exclusions.php:215
223
  msgid "Excluded 404 pages"
224
  msgstr ""
225
 
226
- #: includes/settings/tabs/wps-exclusions.php:218
227
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
228
  msgstr ""
229
 
230
- #: wps-updates.php:29
231
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
232
  msgstr ""
233
 
234
- #: includes/settings/tabs/wps-general.php:281
235
  msgid "Add page title to empty search words"
236
  msgstr ""
237
 
238
- #: includes/settings/tabs/wps-general.php:287
239
  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."
240
  msgstr ""
241
 
242
- #: includes/optimization/tabs/wps-optimization-purging.php:218
243
- #: includes/settings/tabs/wps-maintenance.php:75
244
  msgid "Purge visitors with more than"
245
  msgstr ""
246
 
247
- #: includes/optimization/tabs/wps-optimization-purging.php:223
248
  msgid "hits"
249
  msgstr ""
250
 
251
- #: includes/optimization/tabs/wps-optimization-purging.php:224
252
  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."
253
  msgstr ""
254
 
255
- #: includes/functions/purge-hits.php:28
256
  msgid "No visitors found to purge."
257
  msgstr "هیچ سەردانێک پەیدا نەبو"
258
 
259
- #: includes/functions/purge-hits.php:25
260
  msgid "%s records purged successfully."
261
  msgstr "%s گوزارش بە سەرکەوتوویی پاککران."
262
 
263
- #: ajax.php:178 includes/functions/purge-hits.php:32
 
264
  msgid "Number of hits must be greater than or equal to 10!"
265
  msgstr "ژمارەی گوزارشەکانی سەرەوە ١٠ یان سەرت لەو بن."
266
 
267
- #: shortcode.php:141
268
  msgid "Page Visits"
269
  msgstr "سەردانی پەڕە"
270
 
271
- #: shortcode.php:144
272
  msgid "Page Count"
273
  msgstr "ژمارەی بەرگە"
274
 
275
- #: shortcode.php:145
276
  msgid "Comment Count"
277
  msgstr "ژمارەی بۆچوون"
278
 
279
- #: shortcode.php:146
280
  msgid "Spam Count"
281
  msgstr "ژمارەی سپام"
282
 
283
- #: shortcode.php:147
284
  msgid "User Count"
285
  msgstr "ژمارەی بەکارهێنەر"
286
 
287
- #: shortcode.php:148
288
  msgid "Post Average"
289
  msgstr "مامناوەندی نووسراوە"
290
 
291
- #: shortcode.php:149
292
  msgid "Comment Average"
293
  msgstr "مامناوەندی لێدوان"
294
 
295
- #: shortcode.php:150
296
  msgid "User Average"
297
  msgstr "مامناوەندی بەکارهێنەر"
298
 
299
- #: shortcode.php:162
300
  msgid "Search Provider"
301
  msgstr "سرویسی گەڕان"
302
 
303
- #: shortcode.php:165
304
  msgid "The search provider to get statistics on."
305
  msgstr "خزمەتگوزاری گەڕان بۆ ئامارەکان"
306
 
307
- #: shortcode.php:169
308
  msgid "Number Format"
309
  msgstr "فۆرماتی ژمارە"
310
 
311
- #: shortcode.php:172
312
  msgid "The format to display numbers in: i18n, english, none."
313
  msgstr "فۆرماتی ژمارەکان بۆ نیشاندانی : i18n, ئینگلیزی یان هیچ."
314
 
315
- #: shortcode.php:176
316
  msgid "English"
317
  msgstr "ئینگلیزی"
318
 
319
- #: shortcode.php:177
320
  msgid "International"
321
  msgstr "نێودەوڵەتی"
322
 
323
- #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
 
324
  msgid "Hits Statistics Summary"
325
  msgstr "کورتەی ئامار"
326
 
327
- #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
 
328
  msgid "Chart Total"
329
  msgstr "تەواو هێڵیکاریەکان"
330
 
331
- #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
 
332
  msgid "All Time Total"
333
  msgstr "گشتی کاتەکان"
334
 
335
- #: includes/log/log.php:6
336
  msgid "Have you thought about donating to WP Statistics?"
337
  msgstr "ئایا لە بارەی پاڵپستی لە زیادکراوەی ئاماری وۆردپرێس تێفکراوی"
338
 
339
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:429
 
340
  msgid "Donate"
341
  msgstr "یارمەتی"
342
 
343
- #: includes/settings/tabs/wps-about.php:24
344
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
345
  msgstr "ئایا لە زیادکراوەی ئاماری وۆردپرێس سودت وەرگرتووە دەتوانیت لە پەڕەی %s خوازی خۆتمان پێ نیشان بدەی"
346
 
347
- #: includes/settings/tabs/wps-about.php:24
348
  msgid "donation"
349
  msgstr "یارمەتی"
350
 
351
- #: includes/log/log.php:6
352
  msgid "Donate Now!"
353
  msgstr "ئێستا پاڵپستی بکەن"
354
 
355
- #: includes/log/log.php:6
356
  msgid "Close"
357
  msgstr "داخستن"
358
 
359
- #: shortcode.php:135
360
  msgid "Select the statistic you wish to display."
361
  msgstr "هەڵبژاردنی ئامارێک کە پێت خۆشە نیشانبدرێت"
362
 
363
- #: shortcode.php:132
364
  msgid "Statistic"
365
  msgstr "ئامار"
366
 
367
- #: shortcode.php:143
368
  msgid "Post Count"
369
  msgstr "ژمارەی ناردراوە"
370
 
371
- #: shortcode.php:155
372
  msgid "Time Frame"
373
  msgstr "ڕوخساری کات"
374
 
375
- #: includes/functions/functions.php:1009
376
  msgid "to"
377
  msgstr "تا"
378
 
379
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
380
  msgid "Go"
381
  msgstr "بڕۆ"
382
 
383
- #: includes/log/top-pages.php:95
384
  msgid "Rank #5"
385
  msgstr "پلە#5"
386
 
387
- #: includes/log/top-pages.php:95
388
  msgid "Rank #4"
389
  msgstr "پلەی #٤"
390
 
391
- #: includes/log/top-pages.php:95
392
  msgid "Rank #3"
393
  msgstr "پلەی #3"
394
 
395
- #: includes/log/top-pages.php:95
396
  msgid "Rank #1"
397
  msgstr "پلای #١"
398
 
399
- #: includes/log/top-pages.php:95
400
  msgid "Rank #2"
401
  msgstr "پلای #٢"
402
 
403
- #: includes/optimization/tabs/wps-optimization-database.php:60
404
  msgid "Visits Table"
405
  msgstr "خشتی سەردان"
406
 
407
- #: includes/optimization/tabs/wps-optimization-database.php:75
408
  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."
409
  msgstr ""
410
 
411
- #: includes/optimization/tabs/wps-optimization-database.php:76
412
  msgid "This operation could take a long time on installs with many rows in the visits table."
413
  msgstr ""
414
 
415
- #: includes/optimization/tabs/wps-optimization-database.php:82
416
  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."
417
  msgstr ""
418
 
419
- #: includes/log/last-visitor.php:68
420
  msgid "Filtered by"
421
  msgstr "پێڵاوە بە"
422
 
423
- #: includes/functions/functions.php:1002 includes/functions/functions.php:1005
 
424
  msgid "Range"
425
  msgstr "پلە"
426
 
427
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
428
  msgid "MM/DD/YYYY"
429
  msgstr "MM/DD/YYYY"
430
 
431
- #: includes/settings/tabs/wps-general.php:342
432
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
433
  msgstr "وەرگێرانەکان بەکارمەهێنە و لە جیاتی ئەوە ئینگلیزی وەکو زمانی بنچینەیی بۆ WP Statistics بەکاربهێنە (پێویستی بە بارکردنی دوو پەڕ هەیە)"
434
 
435
- #: includes/settings/tabs/wps-general.php:336
436
  msgid "Force English"
437
  msgstr "ئئنگلیزی بەزۆر"
438
 
439
- #: includes/settings/tabs/wps-general.php:331
440
  msgid "Languages"
441
  msgstr "زمانەکان"
442
 
443
- #: includes/settings/tabs/wps-exclusions.php:227
444
  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."
445
  msgstr "تێبینی: ئەم هەڵبژاردنە هیچ پارامێتەری بەستەرێک لە ئەستۆناگرێت ( هەر شتێک لەدوای ؟)، تەنها بۆ ناوی سکریپتەکە. هەر تێنوسراوێک کەمتر لە دوو پیت پشتگوێ دەخرێت."
446
 
447
- #: includes/settings/tabs/wps-exclusions.php:225
448
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
449
  msgstr "لیستێک لە بەستەرە ناوخۆییەکان (نمونە /wordpress/about بۆ هەر دێڕێک یەک) بۆ دەرکردنی لە کۆکراوەی ئامارەکان."
450
 
451
- #: includes/settings/tabs/wps-exclusions.php:222
452
  msgid "Excluded URLs list"
453
  msgstr "لیستی بەستەرە دەرکراوەکان"
454
 
455
- #: includes/log/exclusions.php:24
456
  msgid "Excluded URL"
457
  msgstr "بەستەری دەرکراو"
458
 
459
- #: includes/log/widgets/quickstats.php:52 includes/log/widgets/summary.php:52
 
460
  msgid "Last 365 Days (Year)"
461
  msgstr "٣٦٥ ڕۆژ ڕابردوو(ساڵ)"
462
 
463
- #: includes/log/widgets/quickstats.php:46 includes/log/widgets/summary.php:46
 
464
  msgid "Last 30 Days (Month)"
465
  msgstr "٣٠ ڕۆژ ڕابردوو (مانگ)"
466
 
467
- #: includes/log/widgets/quickstats.php:40 includes/log/widgets/summary.php:40
 
468
  msgid "Last 7 Days (Week)"
469
  msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
470
 
471
- #: includes/functions/functions.php:430
472
  msgid "Yahoo!"
473
  msgstr "یاهو"
474
 
475
- #: includes/functions/functions.php:431
476
  msgid "Yandex"
477
  msgstr "یاندیکس"
478
 
479
- #: includes/functions/functions.php:427
480
  msgid "clearch.org"
481
  msgstr "clearch.org"
482
 
483
- #: includes/functions/functions.php:428
484
  msgid "DuckDuckGo"
485
  msgstr "دەک دەک گۆو"
486
 
487
- #: includes/functions/functions.php:426
488
  msgid "Bing"
489
  msgstr "بینگ"
490
 
491
- #: includes/functions/functions.php:425
492
  msgid "Baidu"
493
  msgstr "بەیدوو"
494
 
495
- #: editor.php:69
496
- msgid "Hits in the last 20 days"
497
- msgstr "ئامار لە دوایین ٢٠ ڕۆژدا"
498
-
499
- #: includes/log/exclusions.php:24
500
  msgid "Feeds"
501
  msgstr "پێشبردنەکان"
502
 
503
- #: includes/log/exclusions.php:24
504
  msgid "User Role"
505
  msgstr "ڕۆڵی بەرکارهێنەر"
506
 
507
- #: includes/log/exclusions.php:24
508
  msgid "Login Page"
509
  msgstr "پەڕی چوونەژوورەوە"
510
 
511
- #: includes/log/exclusions.php:24
512
  msgid "Admin Page"
513
  msgstr "پەڕی بەڕێوەبەر"
514
 
515
- #: includes/log/exclusions.php:24
516
  msgid "Self Referral"
517
  msgstr "ئاراستەکردنی خۆیی"
518
 
519
- #: includes/log/exclusions.php:24
520
  msgid "IP Match"
521
  msgstr "یەکگرتنەوەی ئایپی"
522
 
523
- #: includes/log/exclusions.php:24
524
  msgid "Robot"
525
  msgstr "ڕۆبۆت"
526
 
527
- #: includes/log/online.php:100
528
  msgid "Currently there are no users online in the site."
529
  msgstr ".لە ئێستادا هیچ بەکارهێنەرێک بۆ ئەم ماڵپەڕ لەسەرهێڵ نییە"
530
 
531
- #: includes/log/exclusions.php:24
532
  msgid "Robot Threshold"
533
  msgstr "لێواری ڕۆبۆت"
534
 
535
- #: includes/log/exclusions.php:24
536
  msgid "Honey Pot"
537
  msgstr "مەنجەڵی هەنگوین"
538
 
539
- #: includes/log/widgets/page.php:8
540
  msgid "Page Trending Stats"
541
  msgstr "ئامارەکانی پەڕی زۆر خوازراو"
542
 
543
- #: includes/log/exclusions.php:24
544
  msgid "Hostname"
545
  msgstr "ناوی خانەخوێ"
546
 
547
- #: includes/settings/tabs/wps-general.php:93
548
- #: includes/settings/tabs/wps-general.php:133
549
- #: includes/settings/tabs/wps-general.php:149
550
- #: includes/settings/tabs/wps-general.php:188
551
- #: includes/settings/tabs/wps-general.php:200
552
- #: includes/settings/tabs/wps-general.php:229
553
- #: includes/settings/tabs/wps-notifications.php:122
554
  msgid "Enable or disable this feature"
555
  msgstr "ئەم تایبەتمەندیە چالاک یان ناچالاک بکە"
556
 
557
- #: includes/settings/tabs/wps-general.php:99
558
  msgid "Check for online users every"
559
  msgstr "پشکنین بۆ بەکارهێنەرانی سەرهێڵ بکە هەموو"
560
 
561
- #: includes/settings/tabs/wps-general.php:104
562
  msgid "Second"
563
  msgstr "چرکەیەک"
564
 
565
- #: includes/settings/tabs/wps-general.php:105
566
  msgid "Time for the check accurate online user in the site. Now: %s Second"
567
  msgstr "کات بۆ پشکنینی دروستی بەکارهێنەری سەرهیڵ لەم ماڵپەڕە. ئێستا %s چرکەیە"
568
 
569
- #: includes/settings/tabs/wps-general.php:111
570
  msgid "Record all user"
571
  msgstr "تۆمارکردنی گشت بەکارهێنەر"
572
 
573
- #: includes/settings/tabs/wps-general.php:117
574
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
575
  msgstr "ڕێکخستنی دەرکردەکان و تۆمارەکانی هەموو بەکارهێنەرانی سەرهێڵ پشتگوێ بخە ( بەلەخۆگرتنی ئاراستەکردنی خۆیی و ڕۆبۆتەکان). پێویستە تەنها بۆ دیاریکردنی کێشە بەکاربهێندرێت."
576
 
577
- #: includes/settings/tabs/wps-general.php:155
578
  msgid "Store entire user agent string"
579
  msgstr "تەواوی زنجیرەی بەکارهێنەری بریکار پاشەکەوت بکە"
580
 
581
- #: includes/settings/tabs/wps-general.php:161
582
  msgid "Only enabled for debugging"
583
  msgstr "تەنها چالاک بکرێت بۆ هەڵەدۆزین"
584
 
585
- #: includes/settings/tabs/wps-general.php:167
586
  msgid "Coefficient per visitor"
587
  msgstr "هاوچوستی بۆ هەر سەردانکارێک"
588
 
589
- #: includes/settings/tabs/wps-general.php:172
590
  msgid "For each visit to account for several hits. Currently %s."
591
  msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
592
 
593
- #: includes/settings/tabs/wps-general.php:177
594
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:418
595
- #: wp-statistics.php:516
596
  msgid "Pages"
597
  msgstr "پەڕەكان"
598
 
599
- #: includes/settings/tabs/wps-general.php:194
600
  msgid "Track all pages"
601
  msgstr "شوێن پێی هەموو پەڕەکان بکە"
602
 
603
- #: includes/settings/tabs/wps-general.php:209
604
  msgid "Strip parameters from URI"
605
  msgstr "لابردنی پارامێتەرەکان لە بەستەرەکە"
606
 
607
- #: includes/settings/tabs/wps-general.php:215
608
  msgid "This will remove anything after the ? in a URL."
609
  msgstr "ئەمە هەموو شتێک دەسڕێتەوە لە دوای ؟ لە بەستەرێکدا"
610
 
611
- #: includes/settings/tabs/wps-general.php:223
612
  msgid "Disable hits column in post/pages list"
613
  msgstr "ستونی هەڵدانەوەکان لە لیستی بابەت\\پەڕەکان ناچالاک بکە"
614
 
615
- #: includes/settings/tabs/wps-general.php:234
616
  msgid "Miscellaneous"
617
  msgstr "هەمەجۆر"
618
 
619
- #: includes/settings/tabs/wps-general.php:239
620
  msgid "Show stats in menu bar"
621
  msgstr "ئامارەكان لە لیست ئامراز پێشان بدە"
622
 
623
- #: includes/settings/tabs/wps-general.php:244
624
  msgid "No"
625
  msgstr "نەخێر"
626
 
627
- #: includes/settings/tabs/wps-general.php:245
628
  msgid "Yes"
629
  msgstr "بەڵێ"
630
 
631
- #: includes/settings/tabs/wps-general.php:247
632
  msgid "Show stats in admin menu bar"
633
  msgstr "ئامارەكان لە لیست ئامرازی بەڕێوەبەر پێشان بدە"
634
 
635
- #: includes/settings/tabs/wps-general.php:253
636
  msgid "Hide admin notices about non active features"
637
  msgstr "ئاگاداركردنەوەكانی بەڕێوەبەر بشارەوە سەبارەت بە تایبەتمەندییە ناچالاكەكان"
638
 
639
- #: includes/settings/tabs/wps-general.php:259
640
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
641
  msgstr "لە بنەرەت زیادکراوەی ئاماری وۆردپرێس تواناییەکانی ناچالاکی زیاد کراوە بە شێوەی هەڵە لە پەڕەی بەڕێوەبەر نیشان ئەدات.ئەم هەڵبژاردە ئەم تایبەتمەندییە ناچالاک دەکات"
642
 
643
- #: includes/settings/tabs/wps-general.php:265
644
  msgid "Delete the manual"
645
  msgstr "سڕینەوەی پەڕگەی ڕینمایی"
646
 
647
- #: includes/settings/tabs/wps-general.php:271
648
  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."
649
  msgstr "لە بنەرەت پەرگەی ڕینمایی بەکارهێنەرزیادکراوەی ئامار لە بوخچەی زیادکراوەی ئامار بە قەبارەی(٥مێگابایت) دانراوە.گەر ئەم هەڵبژاردە چالاک بێت هەر ئێستا سڕایەوە و لەکاتی بەڕۆژ بوونەوەس نامێنێت."
650
 
651
- #: includes/settings/tabs/wps-general.php:276
652
  msgid "Search Engines"
653
  msgstr "مەکینەکانی گەڕان"
654
 
655
- #: includes/settings/tabs/wps-general.php:293
656
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
657
  msgstr "ناچاڵاککردنی مەکینەکانی گەڕان کە پێویستت پێیان نییە..ئەم کارە لە ئاکامی گشتی مەکینەکان کارگێڕی هەیە."
658
 
659
- #: includes/settings/tabs/wps-general.php:308
660
  msgid "disable"
661
  msgstr "ناچالاک"
662
 
663
- #: includes/settings/tabs/wps-general.php:309
664
  msgid "Disable %s from data collection and reporting."
665
  msgstr "ناچالاککردنی %s کۆکردنەوەی داتا و گوزارشەکان."
666
 
667
- #: includes/settings/tabs/wps-general.php:315
668
  msgid "Charts"
669
  msgstr "هێڵکاریەکان"
670
 
671
- #: includes/settings/tabs/wps-general.php:320
672
  msgid "Include totals"
673
  msgstr "کۆی گشتی"
674
 
675
- #: includes/settings/tabs/wps-general.php:326
676
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
677
  msgstr "زیادکردنی کۆی گشتی بە هێڵکاری ئاماری تێپەڕبوونلە مەکینەکانی گەڕان"
678
 
679
- #: includes/settings/tabs/wps-externals.php:32
680
  msgid "GeoIP settings"
681
  msgstr "ڕێکخستنه‌کانیGeoIP"
682
 
683
- #: includes/settings/tabs/wps-externals.php:37
684
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
685
  msgstr "خزمەتگوزاری نیشاندانی شوێن IPلەگەڵ GeoLite2 دابینکراوە و لەلایانMaxMind درووستکراوە و لە %s توانایی دەستپێگەیشتنی بۆ هەیە."
686
 
687
- #: includes/settings/tabs/wps-externals.php:47
688
  msgid "GeoIP collection"
689
  msgstr "کۆی GeoIP"
690
 
691
- #: includes/settings/tabs/wps-externals.php:53
692
  msgid "For get more information and location (country) from visitor, enable this feature."
693
  msgstr "بۆ وەرگرتنی زانیاری زۆرتر و شوێنی(وەڵاتی) میوان.ئەم جێگا چالاک بکە."
694
 
695
- #: includes/settings/tabs/wps-externals.php:59
696
  msgid "Update GeoIP Info"
697
  msgstr "بەڕۆژ بونی زانیاریەکان GeoIP"
698
 
699
- #: includes/settings/tabs/wps-externals.php:64
700
  msgid "Download GeoIP Database"
701
  msgstr "داگرتنی بنکەداراوەی GeoIP"
702
 
703
- #: includes/settings/tabs/wps-externals.php:71
704
  msgid "Schedule monthly update of GeoIP DB"
705
  msgstr "برنامە دانان بۆ بەڕۆژ کردنی مانگانەی بنکەدراوەی GeoIP"
706
 
707
- #: includes/settings/tabs/wps-externals.php:97
708
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
709
  msgstr "وەرگرتنی بنکەدراوەی GeoIP لە دوو ڕۆژ پاش یەکەمین سێ شەممەی هەر مانگ."
710
 
711
- #: includes/settings/tabs/wps-externals.php:98
712
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
713
  msgstr "ئەم هەڵبژاردە تەنانەت زانیاریەکانی کەمتر لە ١ کیلۆبایتیش دادگرێت(کە بەمانای زانیارییەکانی هاورێی زیادکراوەیە)."
714
 
715
- #: includes/settings/tabs/wps-externals.php:104
716
  msgid "Populate missing GeoIP after update of GeoIP DB"
717
  msgstr "خەڵکی لەدەست چوو GeoIP پاش لە بەڕۆژ کردنی بنکەی دراوە GeoIP"
718
 
719
- #: includes/settings/tabs/wps-externals.php:110
720
  msgid "Update any missing GeoIP data after downloading a new database."
721
  msgstr "بەڕۆژ کردنی هەر داتاییک لەدەست چوو GeoIP پاش لە داگرتنی بنکە دراوەی نوێ"
722
 
723
- #: includes/settings/tabs/wps-externals.php:116
724
  msgid "Country code for private IP addresses"
725
  msgstr "کۆدی وەڵآت بۆ نیشانەکانی IP تایبەت"
726
 
727
- #: includes/settings/tabs/wps-externals.php:121
728
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
729
  msgstr "ستانداردی دوو کۆدی نێودەوڵەتی نامە (بۆ وێنە. ئەمریکا= وەڵآتی ئەمریکا، CA = کەنەدا، و هتد) بۆ تایبەت (یوانایی دەتپێگەیشتنی نییە) ناونیشانیIP (بۆ وێنە. 10.0.0.1، 192.158.1.1، 127.0.0.1،و هتد). بەکارهێنان لە &quot;000&quot; (سێ سفر) به استفاده از &quot;نەناسراو&quot; بە عینوانی کۆدی وەڵات."
730
 
731
- #: includes/settings/tabs/wps-externals.php:132
732
  msgid "GeoIP collection is disabled due to the following reasons:"
733
  msgstr "کۆی GeoIP بەهۆکاری خوارەوە ناچالاک بووە"
734
 
735
- #: includes/settings/tabs/wps-externals.php:135
736
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
737
  msgstr "کۆی GeoIP به PHP وەشانی%s یان سەرترەوە پێویستی هەیە، لە ئێستا بە هۆی کەم بوونی وەشانی PHPئێوە ناچالاکە."
738
 
739
- #: includes/settings/tabs/wps-externals.php:140
740
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
741
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
742
 
743
- #: includes/settings/tabs/wps-externals.php:146
744
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
745
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
746
 
747
- #: includes/settings/tabs/wps-externals.php:152
748
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
749
  msgstr "شێوازی پاراستنی PHP نەدۆزراوە! کۆیGeoIP لەلایەن شیوازی پاراستنی PHP پاڵپشتی نابێت!"
750
 
751
- #: includes/settings/tabs/wps-maintenance.php:20
752
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
753
  msgstr "ئەم کردارە داتا کۆنەکان بۆ هەمیشە دەسڕێتەوە. بۆ چالاککردنی دەڵنیای؟"
754
 
755
- #: includes/settings/tabs/wps-maintenance.php:52
756
  msgid "Days"
757
  msgstr "ڕۆژ"
758
 
759
- #: includes/settings/tabs/wps-maintenance.php:53
760
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
761
  msgstr "ژمارەی ڕۆژەکان بۆ هێشتنەوەی ئامار. کەمترین ژمارە ٣٠ ڕۆژە.ڕۆژانە ژمارەی نادرووست ناچالاک دکرێتەوە."
762
 
763
- #: includes/settings/tabs/wps-notifications.php:44
764
  msgid "Common Report Options"
765
  msgstr "ڕێکخستنی گوزارشی گشتی"
766
 
767
- #: includes/settings/tabs/wps-notifications.php:49
768
  msgid "E-mail addresses"
769
  msgstr "ناونیشانەکانی ئیمەیل"
770
 
771
- #: includes/settings/tabs/wps-notifications.php:54
772
  msgid "A comma separated list of e-mail addresses to send reports to."
773
  msgstr "بۆ وەرگرتنی ئیمەیلی گوزارش،ناونیشانی ئیمەیلەکان بە کۆما جودابکەنەوە."
774
 
775
- #: includes/settings/tabs/wps-notifications.php:59
776
  msgid "Update Reports"
777
  msgstr "بەڕۆژکردنی گوزارشەکان"
778
 
779
- #: includes/log/exclusions.php:24
780
- #: includes/settings/tabs/wps-notifications.php:64
781
  msgid "Browscap"
782
  msgstr "Browscap"
783
 
784
- #: includes/settings/tabs/wps-notifications.php:70
785
  msgid "Send a report whenever the browscap.ini is updated."
786
  msgstr "ناردنی گوزارش کاتێک browscap.ini بەڕۆژ دەبێت"
787
 
788
- #: includes/log/exclusions.php:24
789
- #: includes/settings/tabs/wps-notifications.php:76
790
  msgid "GeoIP"
791
  msgstr "GeoIP"
792
 
793
- #: includes/settings/tabs/wps-notifications.php:82
794
  msgid "Send a report whenever the GeoIP database is updated."
795
  msgstr "ناردنی گوزارش کاتێک GeoIP بەڕۆژ دەبێت"
796
 
797
- #: includes/settings/tabs/wps-notifications.php:88
798
  msgid "Pruning"
799
  msgstr "سڕینەوە"
800
 
801
- #: includes/settings/tabs/wps-notifications.php:94
802
  msgid "Send a report whenever the pruning of database is run."
803
  msgstr "ناردنی گوزارش کاتێک بنکەی دراوە بەڕۆژ دەبێت"
804
 
805
- #: includes/settings/tabs/wps-notifications.php:100
806
  msgid "Upgrade"
807
  msgstr "بەڕۆژبوون"
808
 
809
- #: includes/settings/tabs/wps-notifications.php:106
810
  msgid "Send a report whenever the plugin is upgraded."
811
  msgstr "سڕینەوە"
812
 
813
- #: includes/settings/tabs/wps-notifications.php:111
814
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
 
815
  msgid "Statistical reporting"
816
  msgstr "گوزارشی ئاماری"
817
 
818
- #: includes/settings/tabs/wps-notifications.php:129
819
  msgid "Schedule"
820
  msgstr "کات دیاریکردن"
821
 
822
- #: includes/settings/tabs/wps-notifications.php:153
823
  msgid "Select how often to receive statistical report."
824
  msgstr "چۆنیەتی وەرگرتنی گوزارشی ئامار هەلبژێرە"
825
 
826
- #: includes/settings/tabs/wps-notifications.php:159
827
  msgid "Send reports via"
828
  msgstr "ناردنی گوزارش لە رێگای"
829
 
830
- #: includes/settings/tabs/wps-notifications.php:165
831
  msgid "Email"
832
  msgstr "ئیمەیل"
833
 
834
- #: includes/settings/tabs/wps-notifications.php:167
835
  msgid "SMS"
836
  msgstr "کۆرتە پەیام"
837
 
838
- #: includes/settings/tabs/wps-notifications.php:170
839
  msgid "Select delivery method for statistical report."
840
  msgstr "شێوازی وەرگرتنی گوزارشی ئاماری هەڵبژێرە"
841
 
842
- #: includes/settings/tabs/wps-notifications.php:173
843
  msgid "Note: To send SMS text messages please install the %s plugin."
844
  msgstr "خاڵ: بۆناردنی کورتە پەیام تکایە زیادکراوەی %s دامەرزێنە."
845
 
846
- #: includes/settings/tabs/wps-notifications.php:173
847
  msgid "WordPress SMS"
848
  msgstr "کورتەپەیامی وۆردپرێس"
849
 
850
- #: includes/settings/tabs/wps-notifications.php:180
851
  msgid "Report body"
852
  msgstr "ناوەرۆکی دەقی گوزارش"
853
 
854
- #: includes/settings/tabs/wps-notifications.php:185
855
  msgid "Enter the contents of the report."
856
  msgstr "ناوەرۆکی گوزارش بنووسە"
857
 
858
- #: includes/settings/tabs/wps-notifications.php:187
859
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
860
  msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
861
 
862
- #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
863
- #: widget.php:247 wp-statistics.php:621
 
864
  msgid "User Online"
865
  msgstr "بەکارهینەری سەرهێڵ"
866
 
867
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
868
- #: widget.php:253
869
  msgid "Today Visitor"
870
  msgstr "میوانی ئەمڕۆ"
871
 
872
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
873
- #: widget.php:250
874
  msgid "Today Visit"
875
  msgstr "سەردانی ئەمڕۆ"
876
 
877
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
878
- #: widget.php:259
879
  msgid "Yesterday Visitor"
880
  msgstr "میوانی دوێنێ"
881
 
882
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
 
883
  msgid "Yesterday Visit"
884
  msgstr "سەردانی دوێنێ"
885
 
886
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
887
- #: widget.php:274
888
  msgid "Total Visitor"
889
  msgstr "کۆی میوانەکان"
890
 
891
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
892
- #: widget.php:271
893
  msgid "Total Visit"
894
  msgstr "کۆی سەردانەکان"
895
 
896
- #: shortcode.php:175
897
  msgid "None"
898
  msgstr "هیچ"
899
 
900
- #: includes/settings/wps-settings.php:108
901
  msgid "About"
902
  msgstr "دەربارە"
903
 
904
- #: includes/settings/tabs/wps-overview-display.php:20
905
  msgid "Dashboard"
906
  msgstr "داشبۆرد"
907
 
908
- #: includes/settings/tabs/wps-overview-display.php:24
909
- #: includes/settings/tabs/wps-overview-display.php:44
910
- #: includes/settings/tabs/wps-overview-display.php:64
911
  msgid "The following items are global to all users."
912
  msgstr "بەڕگەکانی خوارەوە جیهانین بۆ تەواو بەکارهینەران"
913
 
914
- #: includes/settings/tabs/wps-overview-display.php:29
915
  msgid "Disable dashboard widgets"
916
  msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
917
 
918
- #: includes/settings/tabs/wps-overview-display.php:35
919
  msgid "Disable the dashboard widgets."
920
  msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
921
 
922
- #: includes/settings/tabs/wps-overview-display.php:40
923
  msgid "Page/Post Editor"
924
  msgstr "دەستکاری پەڕەو/نوسراوە"
925
 
926
- #: includes/settings/tabs/wps-overview-display.php:49
927
  msgid "Disable post/page editor widget"
928
  msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
929
 
930
- #: includes/settings/tabs/wps-overview-display.php:55
931
  msgid "Disable the page/post editor widget."
932
  msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
933
 
934
- #: includes/settings/tabs/wps-overview-display.php:69
935
  msgid "Map type"
936
  msgstr "جۆری نەخشە"
937
 
938
- #: includes/functions/functions.php:429
939
- #: includes/settings/tabs/wps-overview-display.php:75
940
  msgid "Google"
941
  msgstr "گووگڵ"
942
 
943
- #: includes/settings/tabs/wps-overview-display.php:75
944
  msgid "JQVMap"
945
  msgstr "نەخشەیJQV"
946
 
947
- #: includes/settings/tabs/wps-overview-display.php:82
948
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
949
  msgstr "هەلبژاردەی \"گوگڵ\" بۆخزمەتگوزاری نەخشەی گوگڵ بۆ دوایین سەردانەکان بەهرە وەردەگرێت. (پێویستی بە دەستپێگەیشتنی گووگڵە)."
950
 
951
- #: includes/settings/tabs/wps-overview-display.php:83
952
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
953
  msgstr "هەڵبژاردەی \"JQVMap\" لە کتێبخانەی جاڤاسکریپت JQVMap بۆ دوایین سەردانەەکان کەڵک وەردەگرێت. (پێویستی بە خزمەتگوزاری دەرەوەی نابێت )."
954
 
955
- #: includes/settings/tabs/wps-overview-display.php:89
956
  msgid "Disable map"
957
  msgstr "ناچالاککردنی نخشە"
958
 
959
- #: includes/settings/tabs/wps-overview-display.php:95
960
  msgid "Disable the map display"
961
  msgstr "ناچالاککردنی نیشاندانی نەخشە"
962
 
963
- #: includes/settings/tabs/wps-overview-display.php:101
964
  msgid "Get country location from Google"
965
  msgstr "وەرگرتنی شوێنی وەڵات لە گووگڵ"
966
 
967
- #: includes/settings/tabs/wps-overview-display.php:107
968
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
969
  msgstr "ئەم تایبەتمەندیە لەوانەیە نیشاندانی ئاماری بە هێواشی ئەنجام بدات .تەنها بۆ جۆری نەخشەی گووگڵ ڕێکخراوە."
970
 
971
- #: includes/settings/tabs/wps-removal.php:15
972
  msgid "WP Statisitcs Removal"
973
  msgstr "سڕینەوەی زیادکراوەی ئامار"
974
 
975
- #: includes/settings/tabs/wps-removal.php:20
976
  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."
977
  msgstr "سڕینەوەی زیادکراوەی ئاماری وۆردپرێس،سڕینەوەی ڕیکخستنەکانی زیادکراوەی نییە.ئەم هەڵبژاردە دەتوانن تەواوی زانیاری(خشت و داتا)ی زیادکراوە بسڕنەوە."
978
 
979
- #: includes/settings/tabs/wps-removal.php:23
980
  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."
981
  msgstr "پاکسازی لە کاتی بارکردنی پەڕە پاس بارێک لە تۆمارکردنی ڕێکخستنەکان ئەنجام دەبێت.بەڵام زیادکراوەی ئاماری وۆردپرێس لە پێرستی بەڕێوەبەر تاکاتێک بەشەکانی دیکەی پەڕە هەڵگرسابێت نیشان دەدرێت."
982
 
983
- #: includes/settings/tabs/wps-removal.php:29
984
  msgid "Remove data and settings"
985
  msgstr "سڕینەوە داتاو ڕێکخستنەکان"
986
 
987
- #: includes/settings/tabs/wps-removal.php:34
988
  msgid "Remove"
989
  msgstr "سڕینەوە"
990
 
991
- #: includes/settings/tabs/wps-removal.php:35
992
  msgid "Remove data and settings, this action cannot be undone."
993
  msgstr "سڕینەوە داتاو ڕێکخستنەکان .ئەم کردارە ناگەرێتەوە."
994
 
995
- #: includes/settings/wps-settings.php:100
996
  msgid "General"
997
  msgstr "گشتی"
998
 
999
- #: includes/settings/wps-settings.php:101
1000
  msgid "Notifications"
1001
  msgstr "ئاگادارییەکان"
1002
 
1003
- #: includes/settings/wps-settings.php:102
1004
  msgid "Dashboard/Overview"
1005
  msgstr "داشبۆرد/لەچاوپێکەوتنێک"
1006
 
1007
- #: includes/settings/wps-settings.php:106
1008
  msgid "Maintenance"
1009
  msgstr "پاراستن/چاککردن"
1010
 
1011
- #: includes/settings/wps-settings.php:107
1012
  msgid "Removal"
1013
  msgstr "سڕینەوە"
1014
 
1015
- #: includes/settings/tabs/wps-access-level.php:85
1016
- #: includes/settings/tabs/wps-exclusions.php:234
1017
- #: includes/settings/tabs/wps-externals.php:286
1018
- #: includes/settings/tabs/wps-general.php:349
1019
- #: includes/settings/tabs/wps-maintenance.php:88
1020
- #: includes/settings/tabs/wps-notifications.php:201
1021
- #: includes/settings/tabs/wps-overview-display.php:116
1022
- #: includes/settings/tabs/wps-removal.php:42
1023
  msgid "Update"
1024
  msgstr "بەڕۆژکردن"
1025
 
1026
- #: schedule.php:10
1027
  msgid "Once Weekly"
1028
  msgstr "جارێک لە هەفتە"
1029
 
1030
- #: schedule.php:17
1031
  msgid "Once Every 2 Weeks"
1032
  msgstr "هەر ٢ هەفتە"
1033
 
1034
- #: schedule.php:24
1035
  msgid "Once Every 4 Weeks"
1036
  msgstr "هەر ٤ هەفتە"
1037
 
1038
- #: widget.php:14 wp-statistics.php:408 wp-statistics.php:469
 
1039
  msgid "Statistics"
1040
  msgstr "ئامار"
1041
 
1042
- #: widget.php:15
1043
  msgid "Show site stats in sidebar."
1044
  msgstr "نیشاندانی ئاماری ماڵپەر لە (ئامرازی) لاتەنیشت"
1045
 
1046
- #: widget.php:73 widget.php:262
1047
  msgid "Week Visit"
1048
  msgstr "سەردانی هەفتە"
1049
 
1050
- #: widget.php:80 widget.php:265
1051
  msgid "Month Visit"
1052
  msgstr "سەردانی مانگ"
1053
 
1054
- #: widget.php:87 widget.php:268
1055
  msgid "Years Visit"
1056
  msgstr "سەردانی ساڵ"
1057
 
1058
- #: widget.php:108 widget.php:277
1059
  msgid "Total Page Views"
1060
  msgstr "کۆی گشتی سەردانی پەڕگە"
1061
 
1062
- #: widget.php:116
1063
  msgid "Search Engine referred"
1064
  msgstr "هاتن لە مەکینەی گەڕان"
1065
 
1066
- #: widget.php:123 widget.php:300
1067
  msgid "Total Posts"
1068
  msgstr "کۆی نووسراوەکان"
1069
 
1070
- #: widget.php:130 widget.php:303
1071
  msgid "Total Pages"
1072
  msgstr "کۆی پەڕەکان"
1073
 
1074
- #: widget.php:137 widget.php:306
1075
  msgid "Total Comments"
1076
  msgstr "کۆی بۆچونەکان(لێدوانەکان)"
1077
 
1078
- #: widget.php:144 widget.php:309
1079
  msgid "Total Spams"
1080
  msgstr "کۆی بێزارکەرەکان"
1081
 
1082
- #: widget.php:151 widget.php:312
1083
  msgid "Total Users"
1084
  msgstr "کۆی بەکارهێنەران"
1085
 
1086
- #: widget.php:158 widget.php:315
1087
  msgid "Average Posts"
1088
  msgstr "مامناوەندی نووسراوەکان"
1089
 
1090
- #: widget.php:165 widget.php:318
1091
  msgid "Average Comments"
1092
  msgstr "مامناوەندی بۆچوونەکان"
1093
 
1094
- #: widget.php:172 widget.php:321
1095
  msgid "Average Users"
1096
  msgstr "مامناوەندی بەکارهێنەران"
1097
 
1098
- #: shortcode.php:151 widget.php:179 widget.php:324
 
1099
  msgid "Last Post Date"
1100
  msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
1101
 
1102
- #: widget.php:240
1103
  msgid "Name"
1104
  msgstr "ناو"
1105
 
1106
- #: widget.php:244
1107
  msgid "Items"
1108
  msgstr "بڕگە"
1109
 
1110
- #: widget.php:256 wp-statistics.php:646
1111
  msgid "Yesterday visit"
1112
  msgstr "سەردانی دوێنێ"
1113
 
1114
- #: widget.php:280
1115
  msgid "Search Engine Referred"
1116
  msgstr "هاتن لە مەکینەی گەڕان"
1117
 
1118
- #: widget.php:283
1119
  msgid "Select type of search engine"
1120
  msgstr "هەڵبژاردنی جۆری مەکینەی گەڕان"
1121
 
1122
- #: wp-statistics.php:122
1123
  msgid "WP Statistics has been removed, please disable and delete it."
1124
  msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
1125
 
1126
- #. Plugin Name of the plugin/theme
1127
- #: wp-statistics.php:54
1128
  msgid "WP Statistics"
1129
  msgstr "ئاماری وۆردپرێس"
1130
 
1131
- #. Description of the plugin/theme
1132
- #: wp-statistics.php:55
1133
  msgid "Complete statistics for your WordPress site."
1134
  msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
1135
 
1136
- #: wp-statistics.php:313 wp-statistics.php:428 wp-statistics.php:523
 
1137
  msgid "Settings"
1138
  msgstr "ڕیکخستن"
1139
 
1140
- #: wp-statistics.php:325
1141
  msgid "Click here to visit the plugin on WordPress.org"
1142
  msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
1143
 
1144
- #: wp-statistics.php:325
1145
  msgid "Visit WordPress.org page"
1146
  msgstr "دیتنی پەرەی WordPress.org"
1147
 
1148
- #: wp-statistics.php:328
1149
  msgid "Click here to rate and review this plugin on WordPress.org"
1150
  msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
1151
 
1152
- #: wp-statistics.php:328
1153
  msgid "Rate this plugin"
1154
  msgstr "پلەدانان بۆ ئەم زیادکراوە"
1155
 
1156
- #: wp-statistics.php:372
1157
  msgid "WP Statistics - Hits"
1158
  msgstr "ئاماری وۆردپرێس-سەردان"
1159
 
1160
- #: wp-statistics.php:411 wp-statistics.php:472 wp-statistics.php:510
 
1161
  msgid "Overview"
1162
  msgstr "پیشاندانی گشتی"
1163
 
1164
- #: wp-statistics.php:417 wp-statistics.php:515
1165
  msgid "Online"
1166
  msgstr "سەرهێڵ"
1167
 
1168
- #: wp-statistics.php:419 wp-statistics.php:517
1169
  msgid "Referrers"
1170
  msgstr "هاتنەژوورەوەکان"
1171
 
1172
- #: shortcode.php:142 wp-statistics.php:420 wp-statistics.php:518
 
1173
  msgid "Searches"
1174
  msgstr "گەرانەکان"
1175
 
1176
- #: wp-statistics.php:421 wp-statistics.php:519
1177
  msgid "Search Words"
1178
  msgstr "گەرانی وەشەکان"
1179
 
1180
- #: wp-statistics.php:422 wp-statistics.php:520
1181
  msgid "Top Visitors Today"
1182
  msgstr "بەرزترین میوانەکانی ئەمڕۆ"
1183
 
1184
- #: wp-statistics.php:427 wp-statistics.php:522
1185
  msgid "Optimization"
1186
  msgstr "باشینەسازی)هەژیکردن)"
1187
 
1188
- #: wp-statistics.php:433 wp-statistics.php:486
1189
  msgid "Manual"
1190
  msgstr "ڕێنمایی"
1191
 
1192
- #: wp-statistics.php:501
1193
  msgid "Site"
1194
  msgstr "مالپەڕ"
1195
 
1196
- #: wp-statistics.php:502
1197
  msgid "Options"
1198
  msgstr "ڕێکخستنه‌کان "
1199
 
1200
- #: wp-statistics.php:628
1201
  msgid "Today visitor"
1202
  msgstr "کۆی میوان"
1203
 
1204
- #: wp-statistics.php:634
1205
  msgid "Today visit"
1206
  msgstr "میوانی ئەمڕؤ"
1207
 
1208
- #: wp-statistics.php:640
1209
  msgid "Yesterday visitor"
1210
  msgstr "میوانی دوێنێ"
1211
 
1212
- #: wp-statistics.php:652
1213
  msgid "View Stats"
1214
  msgstr "نیشاندانی ئامار"
1215
 
1216
- #: wp-statistics.php:676
1217
  msgid "Download ODF file"
1218
  msgstr "داگرتنی پەڕگەی ODF"
1219
 
1220
- #: wp-statistics.php:677
1221
  msgid "Download HTML file"
1222
  msgstr "داگرتنی پەڕگەی HTML"
1223
 
1224
- #: wp-statistics.php:681
1225
  msgid "Manual file not found."
1226
  msgstr "ڕێنمایی پەیدا نەبوو"
1227
 
1228
- #: wp-statistics.php:748 wp-statistics.php:878 wp-statistics.php:913
 
1229
  msgid "You do not have sufficient permissions to access this page."
1230
  msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
1231
 
1232
- #: wp-statistics.php:301
1233
  msgid "WP Statistics %s installed on"
1234
  msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
1235
 
1236
- #: wps-updates.php:39
1237
  msgid "Error downloading GeoIP database from: %s - %s"
1238
  msgstr "هەڵەی داگرتنی بنکەدراوەی GeoIP لە %s: - %s"
1239
 
1240
- #: wps-updates.php:50
1241
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1242
  msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIPبۆ خوێندن %s"
1243
 
1244
- #: wps-updates.php:57
1245
  msgid "Error could not open destination GeoIP database for writing %s"
1246
  msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIP بۆ نووسینی: %s"
1247
 
1248
- #: wps-updates.php:73
1249
  msgid "GeoIP Database updated successfully!"
1250
  msgstr "بنکەیدراوەی GeoIP بە سەرکەوتوویی بە ڕۆژ بوو"
1251
 
1252
- #: wps-updates.php:98
1253
  msgid "GeoIP update on"
1254
  msgstr "GeoIP بەڕۆژ بوو لە"
1255
 
1256
- #: wps-updates.php:165
1257
  msgid "Error downloading browscap database from: %s - %s"
1258
  msgstr "داگرتنی بنکەی دراوە لە browscapهەڵە لە: %s - %s"
1259
 
1260
- #: wps-updates.php:274
1261
  msgid "browscap database updated successfully!"
1262
  msgstr "browscap بنکەی بە سەرکەوتوویی بەڕۆژ بوو."
1263
 
1264
- #: wps-updates.php:284
1265
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1266
  msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! پەڕگەی باشکەوتکردن قەبارەی گەورەیە! بڕۆ بۆ browscap.ini پێشتر."
1267
 
1268
- #: wps-updates.php:292
1269
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1270
  msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! browscap.iniنوێ هەڵەیە identifing بریکاری بەکارهێنەر بەمانای وێبخشۆک بڕۆ بۆ browscap.ini پێشتر."
1271
 
1272
- #: wps-updates.php:314
1273
  msgid "browscap already at current version!"
1274
  msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
1275
 
1276
- #: wps-updates.php:327
1277
  msgid "Browscap.ini update on"
1278
  msgstr "Browscap.ini بەڕۆژکرا"
1279
 
1280
- #. Plugin URI of the plugin/theme
1281
- #. Author URI of the plugin/theme
1282
- msgid "http://wp-statistics.com/"
1283
- msgstr "http://wp-statistics.com/"
1284
-
1285
- #. Author of the plugin/theme
1286
- msgid "Mostafa Soufi & Greg Ross"
1287
- msgstr "Mostafa Soufi & Greg Ross"
1288
-
1289
- #: dashboard.php:56
1290
  msgid "Quick Stats"
1291
  msgstr "ئاماری خێرا"
1292
 
1293
- #: dashboard.php:57 includes/log/widgets/browsers.php:41
 
1294
  msgid "Top 10 Browsers"
1295
  msgstr "١٠ وێبگەڕی لووتکە"
1296
 
1297
- #: dashboard.php:58 wp-statistics.php:457
1298
  msgid "Top 10 Countries"
1299
  msgstr "١٠ وەڵاتی لووتکە"
1300
 
1301
- #: dashboard.php:59
1302
  msgid "Today's Visitor Map"
1303
  msgstr "میوانەکانی ئەمڕۆ"
1304
 
1305
- #: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
1306
- #: wp-statistics.php:446
 
1307
  msgid "Hit Statistics"
1308
  msgstr "ئامری سەردان"
1309
 
1310
- #: dashboard.php:61 wp-statistics.php:450
1311
  msgid "Top 10 Pages"
1312
  msgstr "بەرزترین ١٠ پەرە"
1313
 
1314
- #: dashboard.php:62 includes/log/last-visitor.php:36 wp-statistics.php:451
 
 
1315
  msgid "Recent Visitors"
1316
  msgstr "دوایین میوانەکان"
1317
 
1318
- #: dashboard.php:63 includes/log/top-referring.php:59
1319
- #: includes/log/top-referring.php:81 wp-statistics.php:456
 
 
1320
  msgid "Top Referring Sites"
1321
  msgstr "زۆرترین ماڵپەڕی هاتن"
1322
 
1323
- #: dashboard.php:64 includes/log/widgets/quickstats.php:75
1324
- #: includes/log/widgets/summary.php:75 wp-statistics.php:448
 
 
1325
  msgid "Search Engine Referrals"
1326
  msgstr "مەکینەی گەڕان هاتنەژوور"
1327
 
1328
- #: dashboard.php:65 wp-statistics.php:454
1329
  msgid "Summary"
1330
  msgstr "کورتە"
1331
 
1332
- #: dashboard.php:66 includes/log/last-search.php:31 wp-statistics.php:449
 
1333
  msgid "Latest Search Words"
1334
  msgstr "دوایین وەشەی گەڕان"
1335
 
1336
- #: dashboard.php:67
1337
  msgid "Top 10 Visitors Today"
1338
  msgstr "١٠ میوانی لوتکەی ئەمڕۆ"
1339
 
1340
- #: editor.php:63
1341
  msgid "This post is not yet published."
1342
  msgstr "ئەم نووسراوە هێشتا بڵاو نەکراوەتەوە"
1343
 
1344
- #: includes/functions/geoip-populate.php:24
1345
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1346
  msgstr "توانایی گەڕانەوەی بنکەدراوەی GeoIP نییە، دەڵنیا بە لە پەرگەی ڕێکخستنەکان وەردەگیرێت."
1347
 
1348
- #: includes/functions/geoip-populate.php:48
1349
  msgid "Updated %s GeoIP records in the visitors database."
1350
  msgstr "%s ڕیکۆردی GeoIP لە بنکەی دراوە بەڕۆژ بوو."
1351
 
1352
- #: includes/functions/purge.php:21 includes/functions/purge.php:39
1353
- #: includes/functions/purge.php:50 includes/functions/purge.php:61
1354
- #: includes/functions/purge.php:94
 
 
1355
  msgid "%s data older than %s days purged successfully."
1356
  msgstr "%s داتای کۆنەتر لە ڕۆژی %s بە سەرکەوتوویی پاکسازی بوو."
1357
 
1358
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
1359
- #: includes/functions/purge.php:52 includes/functions/purge.php:63
1360
- #: includes/functions/purge.php:96
 
 
1361
  msgid "No records found to purge from %s!"
1362
  msgstr " هیچ ریکۆردێک پەیدانەبوو بۆ %s! پاکسازی"
1363
 
1364
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
 
1365
  msgid "Database pruned on"
1366
  msgstr "بنکەی دراوە پاکسازی لە"
1367
 
1368
- #: includes/functions/purge.php:114
1369
  msgid "Please select a value over 30 days."
1370
  msgstr "تکایە زۆرتر لە ٣٠ ڕۆژ هەڵبژێرن"
1371
 
1372
- #: includes/log/all-browsers.php:21
1373
  msgid "Browser Statistics"
1374
  msgstr "ئاماری وێبگەرەکان"
1375
 
1376
- #: includes/log/all-browsers.php:29 includes/log/all-browsers.php:113
1377
- #: includes/log/all-browsers.php:248 includes/log/exclusions.php:72
1378
- #: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
1379
- #: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
1380
- #: includes/log/last-visitor.php:67 includes/log/online.php:17
1381
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
1382
- #: includes/log/top-countries.php:26 includes/log/top-pages.php:28
1383
- #: includes/log/top-pages.php:148 includes/log/top-referring.php:77
1384
- #: includes/log/top-visitors.php:40
 
 
 
 
 
 
 
 
1385
  msgid "Click to toggle"
1386
  msgstr "بۆ بەستن و داخستن کرتە بکە"
1387
 
1388
- #: includes/log/all-browsers.php:30 wp-statistics.php:413 wp-statistics.php:455
1389
- #: wp-statistics.php:511
 
1390
  msgid "Browsers"
1391
  msgstr "وێبگەڕەکان"
1392
 
1393
- #: includes/log/all-browsers.php:57
1394
  msgid "Browsers by type"
1395
  msgstr "وێبگڕەکان لە سەر بنەمای جۆری"
1396
 
1397
- #: includes/log/all-browsers.php:114 includes/log/widgets/top.visitors.php:18
1398
- #: includes/optimization/tabs/wps-optimization-resources.php:302
 
1399
  msgid "Platform"
1400
  msgstr "سەکۆ"
1401
 
1402
- #: includes/log/all-browsers.php:141
1403
  msgid "Browsers by platform"
1404
  msgstr "وێبگەڕەکان لە سەر بنەمای سەکۆ"
1405
 
1406
- #: includes/log/all-browsers.php:249
1407
  msgid "%s Version"
1408
  msgstr "%s وەشان"
1409
 
1410
- #: includes/log/exclusions.php:8
1411
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1412
  msgstr "خاڵ: تائێستا جیاکاری بۆ ریکۆردەکان جیاکاری نەکراوە. ئاکامەکانی خوارەوە لەوانەیە ئاماری کۆتایی ڕەنگدانەوەی نەکات."
1413
 
1414
- #: includes/log/exclusions.php:64
1415
  msgid "Exclusions Statistics"
1416
  msgstr "ئاماری جیاکاریەکان"
1417
 
1418
- #: includes/functions/functions.php:959
1419
  msgid "10 Days"
1420
  msgstr "١٠ ڕۆژی ڕابردوو"
1421
 
1422
- #: includes/functions/functions.php:959
1423
  msgid "20 Days"
1424
  msgstr "٢٠ ڕۆژی ڕابردوو"
1425
 
1426
- #: includes/functions/functions.php:959
1427
  msgid "30 Days"
1428
  msgstr "٣٠ ڕۆژی ڕابردوو"
1429
 
1430
- #: includes/functions/functions.php:959
1431
  msgid "2 Months"
1432
  msgstr "٢ مانگی ڕابردوو"
1433
 
1434
- #: includes/functions/functions.php:959
1435
  msgid "3 Months"
1436
  msgstr "٣ مانگی ڕابردوو"
1437
 
1438
- #: includes/functions/functions.php:959
1439
  msgid "6 Months"
1440
  msgstr "٦مانگی ڕابردوو"
1441
 
1442
- #: includes/functions/functions.php:959
1443
  msgid "9 Months"
1444
  msgstr "٩ مانگی ڕابردوو"
1445
 
1446
- #: includes/functions/functions.php:959
1447
  msgid "1 Year"
1448
  msgstr "١ ساڵی ڕابردوو"
1449
 
1450
- #: includes/log/exclusions.php:73
1451
  msgid "Exclusions Statistical Chart"
1452
  msgstr "هێڵکاری ئاماری جیاکراوەکان"
1453
 
1454
- #: includes/log/exclusions.php:95
1455
  msgid "Excluded hits in the last"
1456
  msgstr "سەردانی دوایین جیاکردنەوە"
1457
 
1458
- #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1459
- #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:42
1460
- #: includes/log/widgets/search.php:42
1461
- #: includes/optimization/tabs/wps-optimization-purging.php:208
 
 
1462
  msgid "days"
1463
  msgstr "ڕۆژی ڕابردوو"
1464
 
1465
- #: includes/log/exclusions.php:116
1466
  msgid "Number of excluded hits"
1467
  msgstr "ژمارەی سەردانی جیاکاری"
1468
 
1469
- #: includes/log/hit-statistics.php:27
1470
  msgid "Hits Statistics Chart"
1471
  msgstr "هێڵکاری ئاماری سەردانەکان"
1472
 
1473
- #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:42
 
1474
  msgid "Hits in the last"
1475
  msgstr "دوایین سەردانەکان لە"
1476
 
1477
- #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:63
 
1478
  msgid "Number of visits and visitors"
1479
  msgstr "ژمارەی سەردان و میوانەکان"
1480
 
1481
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1482
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:24
1483
- #: includes/log/widgets/summary.php:24
 
 
1484
  msgid "Visit"
1485
  msgstr "سەردان"
1486
 
1487
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1488
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:23
1489
- #: includes/log/widgets/summary.php:23
 
 
1490
  msgid "Visitor"
1491
  msgstr "میوان"
1492
 
1493
- #: includes/log/last-search.php:65
1494
  msgid "Latest Search Word Statistics"
1495
  msgstr "دوایین ئاماری گەڕانی وشە"
1496
 
1497
- #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1498
- #: includes/log/online.php:50 includes/log/widgets/google.map.php:68
1499
- #: includes/log/widgets/jqv.map.php:55 includes/log/widgets/recent.php:14
1500
- #: includes/log/widgets/words.php:27
 
 
 
1501
  msgid "#hash#"
1502
  msgstr "#hash#"
1503
 
1504
- #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1505
- #: includes/log/online.php:55 includes/log/top-referring.php:112
1506
- #: includes/log/widgets/recent.php:19 includes/log/widgets/words.php:42
1507
- #: includes/settings/tabs/wps-overview-display.php:60
 
 
 
1508
  msgid "Map"
1509
  msgstr "نەخشە"
1510
 
1511
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1512
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1513
- #: includes/log/top-referring.php:153
 
 
1514
  msgid "Page"
1515
  msgstr "پەڕە"
1516
 
1517
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1518
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1519
- #: includes/log/top-referring.php:153
 
 
1520
  msgid "From"
1521
  msgstr "لە"
1522
 
1523
- #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1524
- #: includes/log/top-referring.php:67 includes/log/top-referring.php:70
1525
- #: includes/optimization/tabs/wps-optimization-purging.php:192 widget.php:296
 
 
 
1526
  msgid "All"
1527
  msgstr "گشتی"
1528
 
1529
- #: includes/log/last-visitor.php:68
1530
  msgid "Recent Visitor Statistics"
1531
  msgstr "دوایین ئاماری میوان"
1532
 
1533
- #: includes/log/online.php:11 includes/log/online.php:18
 
1534
  msgid "Online Users"
1535
  msgstr "بەکار‌هێنەرانی سەرهێڵ"
1536
 
1537
- #: includes/log/online.php:75
1538
  msgid "Online for "
1539
  msgstr "سەرهێڵ بۆ"
1540
 
1541
- #: includes/log/page-statistics.php:26
1542
  msgid "Page Trend for Post ID"
1543
  msgstr "پەرە بۆ جووڵانەوە شناسنامەی نووسراوە"
1544
 
1545
- #: includes/log/page-statistics.php:35
1546
  msgid "Page Trend"
1547
  msgstr "جووڵانەوە پەرە"
1548
 
1549
- #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
 
1550
  msgid "Search Engine Referral Statistics"
1551
  msgstr "ئاماری هاتنەوە لە مەکەینەی گەڕان"
1552
 
1553
- #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:42
 
1554
  msgid "Search engine referrals in the last"
1555
  msgstr "دوایین هاتنەکان لە مەکەینەی گەڕان"
1556
 
1557
- #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:63
 
1558
  msgid "Number of referrals"
1559
  msgstr "ژمارەی هاتنەکان"
1560
 
1561
- #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1562
- #: includes/log/widgets/quickstats.php:58
1563
- #: includes/log/widgets/quickstats.php:105 includes/log/widgets/search.php:77
1564
- #: includes/log/widgets/summary.php:58 includes/log/widgets/summary.php:105
 
 
 
1565
  msgid "Total"
1566
  msgstr "کۆ"
1567
 
1568
- #: includes/log/top-countries.php:18 includes/log/top-countries.php:27
 
1569
  msgid "Top Countries"
1570
  msgstr "لوتکەی وەڵاتەکان"
1571
 
1572
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:9
1573
- #: includes/log/widgets/top.visitors.php:11
 
1574
  msgid "Rank"
1575
  msgstr "پلە"
1576
 
1577
- #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:10
1578
- #: includes/log/widgets/top.visitors.php:13
 
1579
  msgid "Flag"
1580
  msgstr "ئاڵا"
1581
 
1582
- #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:11
1583
- #: includes/log/widgets/top.visitors.php:14
 
1584
  msgid "Country"
1585
  msgstr "وەڵات"
1586
 
1587
- #: includes/log/top-countries.php:34 includes/log/widgets/countries.php:12
 
1588
  msgid "Visitor Count"
1589
  msgstr "ژمارەی میوان"
1590
 
1591
- #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
 
1592
  msgid "Top Pages"
1593
  msgstr "پەڕەکانی لووتکە"
1594
 
1595
- #: includes/log/top-pages.php:29
1596
  msgid "Top 5 Pages Trends"
1597
  msgstr "لوتکەی ٥ پەرە"
1598
 
1599
- #: includes/log/top-pages.php:60
1600
  msgid "Top 5 Page Trending Stats"
1601
  msgstr "لوتکەی باشترینی ٥ پەڕە"
1602
 
1603
- #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
 
1604
  msgid "Number of Hits"
1605
  msgstr "ژمارەی سەردان"
1606
 
1607
- #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:13
 
1608
  msgid "No page title found"
1609
  msgstr "سەردێڕی پەرە پەیدا نەبوو"
1610
 
1611
- #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:16
1612
- #: includes/optimization/tabs/wps-optimization-historical.php:37
1613
- #: includes/settings/tabs/wps-general.php:122
1614
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
 
 
1615
  msgid "Visits"
1616
  msgstr "سەردانەکان"
1617
 
1618
- #: includes/log/top-referring.php:4
1619
  msgid "To be added soon"
1620
  msgstr "بە خێرایی زیاد دەبێت"
1621
 
1622
- #: includes/log/top-referring.php:79
1623
  msgid "Referring sites from"
1624
  msgstr "ماڵپەرەکانی هاتن لە"
1625
 
1626
- #: includes/log/top-referring.php:137 includes/log/widgets/referring.php:29
 
1627
  msgid "References"
1628
  msgstr "سەرچاوە"
1629
 
1630
- #: includes/log/top-visitors.php:12
1631
  msgid "Top 100 Visitors Today"
1632
  msgstr "لوتکەی ١٠٠ میوانی ئەمڕۆ"
1633
 
1634
- #: includes/log/log.php:10
1635
  msgid "About WP Statistics Version %s"
1636
  msgstr "دەربارەی زیاد کراوەی ئاماری وۆردپرێس،وەشانی %s"
1637
 
1638
- #: includes/log/widgets/about.php:11
1639
  msgid "Website"
1640
  msgstr "ماڵپەڕەکان"
1641
 
1642
- #: includes/log/widgets/about.php:12
1643
  msgid "Rate and Review"
1644
  msgstr "پلەدانان و پێداچوونەوە"
1645
 
1646
- #: includes/log/widgets/about.php:16
1647
  msgid "More Information"
1648
  msgstr "زانیاری زۆرتر"
1649
 
1650
- #: includes/log/widgets/about.php:25 includes/settings/tabs/wps-about.php:12
 
1651
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1652
  msgstr "ائەم بەرهەمە بریتیە لە داتا GeoLite2 ە کە لەلایەن MaxMind،درووستبووە وە لە %s توانایی دەستپێگەیشتنت هەیە."
1653
 
1654
- #: includes/log/widgets/browsers.php:34
1655
  msgid "Other"
1656
  msgstr "ئەوی "
1657
 
1658
- #: wp-statistics.php:445
1659
  msgid "Today Visitors Map"
1660
  msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
1661
 
1662
- #: includes/log/widgets/referring.php:30
1663
  msgid "Address"
1664
  msgstr "ناونیشان"
1665
 
1666
- #: includes/log/widgets/quickstats.php:12 includes/log/widgets/summary.php:12
 
1667
  msgid "User(s) Online"
1668
  msgstr "بەکارهێنەر(ەکان) سەرهێڵ"
1669
 
1670
- #: includes/log/widgets/quickstats.php:28
1671
- #: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
1672
- #: includes/log/widgets/summary.php:80
 
1673
  msgid "Today"
1674
  msgstr "ئەمڕۆ"
1675
 
1676
- #: includes/log/widgets/quickstats.php:34
1677
- #: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
1678
- #: includes/log/widgets/summary.php:81
 
1679
  msgid "Yesterday"
1680
  msgstr "دوێنێ"
1681
 
1682
- #: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
 
1683
  msgid "Daily Total"
1684
  msgstr "کۆی ئەمڕۆ"
1685
 
1686
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1687
  msgid "Current Time and Date"
1688
  msgstr "کات و رێکەوتی ئەمڕۆ"
1689
 
1690
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
 
1691
  msgid "(Adjustment)"
1692
  msgstr "(ڕێکخستن)"
1693
 
1694
- #: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
 
1695
  msgid "Date: %s"
1696
  msgstr "رێکەوت: %s"
1697
 
1698
- #: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
 
1699
  msgid "Time: %s"
1700
  msgstr "کات: %s"
1701
 
1702
- #: includes/log/widgets/top.visitors.php:12
1703
- #: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:337
1704
- #: wp-statistics.php:416 wp-statistics.php:514
 
1705
  msgid "Hits"
1706
  msgstr "سەردانەکان"
1707
 
1708
- #: includes/log/widgets/top.visitors.php:15
1709
  msgid "IP"
1710
  msgstr "IP"
1711
 
1712
- #: includes/log/widgets/top.visitors.php:17
1713
  msgid "Agent"
1714
  msgstr "بریکار"
1715
 
1716
- #: includes/log/widgets/top.visitors.php:19
1717
- #: includes/optimization/tabs/wps-optimization-resources.php:291
1718
  msgid "Version"
1719
  msgstr "وەشان"
1720
 
1721
- #: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:284
1722
- #: includes/optimization/wps-optimization.php:6
 
 
1723
  msgid "Access denied!"
1724
  msgstr "دەستپێگەیشتنی بێمۆڵەت"
1725
 
1726
- #: ajax.php:31
1727
  msgid "%s agent data deleted successfully."
1728
  msgstr "%s بریکاری داتا بە سەرکەوتوویی سڕایەوە."
1729
 
1730
- #: ajax.php:34
1731
  msgid "No agent data found to remove!"
1732
  msgstr "داتای وێبگەڕەکە بۆ سڕینەوە پەیدا نەبوو"
1733
 
1734
- #: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
 
1735
  msgid "Please select the desired items."
1736
  msgstr "تکایە بڕگەی داخوازی خوارەوە هەڵبژێرە."
1737
 
1738
- #: ajax.php:62
1739
  msgid "%s platform data deleted successfully."
1740
  msgstr "ازانیارەکانی سەکۆ %s بە سەرکەوتوویی سڕایەوە.."
1741
 
1742
- #: ajax.php:65
1743
  msgid "No platform data found to remove!"
1744
  msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
1745
 
1746
- #: includes/functions/functions.php:1051
1747
  msgid "%s table data deleted successfully."
1748
  msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
1749
 
1750
- #: includes/functions/functions.php:1055
1751
  msgid "Error, %s not emptied!"
1752
  msgstr "هەڵە! %s بەتاڵ نییە!"
1753
 
1754
- #: includes/optimization/tabs/wps-optimization-database.php:5
1755
  msgid "Database Setup"
1756
  msgstr "دامەزراندنی بنکە دراوە"
1757
 
1758
- #: includes/optimization/tabs/wps-optimization-database.php:10
1759
  msgid "Re-run Install"
1760
  msgstr "دامەزراندنی دوبار"
1761
 
1762
- #: includes/optimization/tabs/wps-optimization-database.php:14
1763
  msgid "Install Now!"
1764
  msgstr "دامەزراندن ئێستا"
1765
 
1766
- #: includes/optimization/tabs/wps-optimization-database.php:15
1767
  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."
1768
  msgstr "گەر بە هەر هۆکارێک دامەزراندنی زیادکراوەی ئاماری وۆردپرێس یان خشتەکان بنکە دراوە یان بڕگەکانی دیکەی ناوەڕۆک لەدەست چووە ئەم پرۆسە دامەزراندن دووپات دەکات"
1769
 
1770
- #: includes/optimization/tabs/wps-optimization-database.php:20
1771
  msgid "Database Index"
1772
  msgstr "پێنوێنی بنکەدراوە"
1773
 
1774
- #: includes/optimization/tabs/wps-optimization-database.php:25
1775
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1776
- #: wp-statistics.php:414 wp-statistics.php:512
1777
  msgid "Countries"
1778
  msgstr "وەڵآتەکان"
1779
 
1780
- #: includes/optimization/tabs/wps-optimization-database.php:42
1781
- #: includes/optimization/tabs/wps-optimization-database.php:74
1782
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1783
- #: includes/optimization/tabs/wps-optimization-updates.php:40
1784
  msgid "Update Now!"
1785
  msgstr "بەڕۆژکردن ئێستا"
1786
 
1787
- #: includes/optimization/tabs/wps-optimization-database.php:43
1788
  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."
1789
  msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە.بۆ درووستکردنی پێرست لە وەشانی کۆنە سەرەتا دەبێت دتاکنا بسڕنەوە.بە کرتە لەسەر بەڕۆژ بوون سەرەتا خشتی میوانان چاودێری ئینجا داتای دووبارودووپات دەسڕنەوەو پێرست زیاد دەکەن."
1790
 
1791
- #: includes/optimization/tabs/wps-optimization-database.php:44
1792
- #: includes/optimization/tabs/wps-optimization-database.php:108
1793
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1794
  msgstr "ئەم هەڵبژاردە کاتیکی زۆر بۆ بۆ دامەزراندنی ژمارەی رێزەکان لەخشتی میوانەکان بەخۆیەوە ترخان دەکات."
1795
 
1796
- #: includes/optimization/tabs/wps-optimization-database.php:50
1797
  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."
1798
  msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە."
1799
 
1800
- #: includes/optimization/tabs/wps-optimization-database.php:51
1801
- #: includes/optimization/tabs/wps-optimization-database.php:83
1802
- #: includes/optimization/tabs/wps-optimization-database.php:114
1803
  msgid "Congratulations, your installation is already up to date, nothing to do."
1804
  msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
1805
 
1806
- #: includes/optimization/tabs/wps-optimization-export.php:8
1807
- #: includes/optimization/wps-optimization.php:235
1808
  msgid "Export"
1809
  msgstr "هەناردەکردن"
1810
 
1811
- #: includes/optimization/tabs/wps-optimization-export.php:13
1812
  msgid "Export from"
1813
  msgstr "هەناردن لە"
1814
 
1815
- #: includes/optimization/tabs/wps-optimization-export.php:18
1816
- #: includes/optimization/tabs/wps-optimization-export.php:37
1817
- #: includes/optimization/tabs/wps-optimization-purging.php:185
1818
- #: includes/optimization/tabs/wps-optimization-purging.php:242
1819
- #: includes/optimization/tabs/wps-optimization-purging.php:266
1820
- #: includes/settings/tabs/wps-notifications.php:134
1821
- #: includes/settings/tabs/wps-notifications.php:164
1822
  msgid "Please select"
1823
  msgstr "تکایە هەڵبژێرە"
1824
 
1825
- #: includes/optimization/tabs/wps-optimization-export.php:26
1826
  msgid "Select the table for the output file."
1827
  msgstr "خشتی داخواز بۆ چونەدەرەڤەی پەڕگە هەڵبژێرە"
1828
 
1829
- #: includes/optimization/tabs/wps-optimization-export.php:32
1830
  msgid "Export To"
1831
  msgstr "ناردنەدەرەوە بۆ"
1832
 
1833
- #: includes/optimization/tabs/wps-optimization-export.php:42
1834
  msgid "Select the output file type."
1835
  msgstr "جۆری چونەدەرەڤەی پەڕگە هەڵبژێرە"
1836
 
1837
- #: includes/optimization/tabs/wps-optimization-export.php:48
1838
  msgid "Include Header Row"
1839
  msgstr "تایبەتبوونی سەردێری رێز"
1840
 
1841
- #: includes/optimization/tabs/wps-optimization-export.php:53
1842
  msgid "Include a header row as the first line of the exported file."
1843
  msgstr "بریتیە لە سەردێڕی رێز لە هێڵی یەکەمی پەڕگەی هەنارەکراوە."
1844
 
1845
- #: includes/optimization/tabs/wps-optimization-export.php:54
1846
  msgid "Start Now!"
1847
  msgstr "دەستپێکە"
1848
 
1849
- #: includes/optimization/tabs/wps-optimization-historical.php:15
1850
  msgid "Historical Values"
1851
  msgstr "ژمارەی مێژوویی"
1852
 
1853
- #: includes/optimization/tabs/wps-optimization-historical.php:20
1854
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1855
  msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کرد بۆ نیشاندانی ژمارە بە تەنیایی دەبیت پەڕە نوێ بکەنەوە."
1856
 
1857
- #: includes/optimization/tabs/wps-optimization-historical.php:26
1858
- #: includes/settings/tabs/wps-general.php:138
1859
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1860
- #: wp-statistics.php:423 wp-statistics.php:521
 
1861
  msgid "Visitors"
1862
  msgstr "میوانەکان"
1863
 
1864
- #: includes/optimization/tabs/wps-optimization-historical.php:31
1865
  msgid "Number of historical number of visitors to the site (current value is %s)."
1866
  msgstr "ژمارەی مێژووی میوانەکان (ژمارەی ئێستا %s یە)."
1867
 
1868
- #: includes/optimization/tabs/wps-optimization-historical.php:42
1869
  msgid "Number of historical number of visits to the site (current value is %s)."
1870
  msgstr "ژمارەی مێژووی سەردانەکان (ژمارەی ئێستا %s یە)."
1871
 
1872
- #: includes/optimization/tabs/wps-optimization-historical.php:48
1873
  msgid "Update now!"
1874
  msgstr "بەڕۆژکردن"
1875
 
1876
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1877
- #: includes/optimization/tabs/wps-optimization-purging.php:43
1878
- #: includes/optimization/tabs/wps-optimization-purging.php:75
1879
- #: includes/optimization/tabs/wps-optimization-purging.php:107
1880
- #: includes/optimization/tabs/wps-optimization-purging.php:141
1881
  msgid "Are you sure?"
1882
  msgstr "دەڵنیای ؟"
1883
 
1884
- #: includes/optimization/tabs/wps-optimization-purging.php:175
1885
  msgid "Data"
1886
  msgstr "رێکەوت"
1887
 
1888
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1889
  msgid "Empty Table"
1890
  msgstr "بەتاڵ بوونی خشت"
1891
 
1892
- #: includes/optimization/tabs/wps-optimization-purging.php:194
1893
  msgid "All data table will be lost."
1894
  msgstr "گشتی زانیاریەکانی خشت لەدەست دەچێت"
1895
 
1896
- #: includes/optimization/tabs/wps-optimization-purging.php:195
1897
  msgid "Clear now!"
1898
  msgstr "پاککردنەە"
1899
 
1900
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1901
  msgid "Purge records older than"
1902
  msgstr "پاکسازی ریکۆردی کۆنەتر لە"
1903
 
1904
- #: includes/optimization/tabs/wps-optimization-purging.php:209
1905
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1906
  msgstr "هەڵبژاردنی ڕۆژەکانی پێشتر بۆ سڕینەوەی داتاکانی بەکارهێنەر. کەمترین ژمارە ٣٠ رۆژ.."
1907
 
1908
- #: includes/optimization/tabs/wps-optimization-purging.php:210
1909
- #: includes/optimization/tabs/wps-optimization-purging.php:225
1910
  msgid "Purge now!"
1911
  msgstr "ئێستا پاکسازیبکە"
1912
 
1913
- #: includes/optimization/tabs/wps-optimization-purging.php:232
1914
  msgid "Delete User Agent Types"
1915
  msgstr "سڕینەوەی جۆری سیستەمی کارپێکردنی بەکارهینەر"
1916
 
1917
- #: includes/optimization/tabs/wps-optimization-purging.php:237
1918
  msgid "Delete Agents"
1919
  msgstr "سڕینەوەی سیستەمی کارپێکردنەکان"
1920
 
1921
- #: includes/optimization/tabs/wps-optimization-purging.php:252
1922
  msgid "All visitor data will be lost for this agent type."
1923
  msgstr "گشتی داتای میوان لەجۆری بریکار لەدەستدەچن"
1924
 
1925
- #: includes/optimization/tabs/wps-optimization-purging.php:253
1926
- #: includes/optimization/tabs/wps-optimization-purging.php:277
1927
  msgid "Delete now!"
1928
  msgstr "ئێستا بیسڕەوە"
1929
 
1930
- #: includes/optimization/tabs/wps-optimization-purging.php:261
1931
  msgid "Delete Platforms"
1932
  msgstr "سڕینەوەی سەکۆ"
1933
 
1934
- #: includes/optimization/tabs/wps-optimization-purging.php:276
1935
  msgid "All visitor data will be lost for this platform type."
1936
  msgstr "تەواوی داتاکانی سەکۆی سەردان لەدەست دەچن."
1937
 
1938
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1939
  msgid "Resources"
1940
  msgstr "سەرچاوەکان"
1941
 
1942
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1943
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1944
  msgid "Memory usage in PHP"
1945
  msgstr "بیرگەی بەکارهینان لە PHP"
1946
 
1947
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1948
  msgid "Byte"
1949
  msgstr "بایت"
1950
 
1951
- #: includes/optimization/tabs/wps-optimization-resources.php:33
1952
  msgid "PHP Memory Limit"
1953
  msgstr "سنووری بیرگەی PHP "
1954
 
1955
- #: includes/optimization/tabs/wps-optimization-resources.php:38
1956
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1957
  msgstr "ڕێکخستنی سنووری بیرگە بۆ سکریپتی php.iniلە دابینکراوە."
1958
 
1959
- #: includes/optimization/tabs/wps-optimization-resources.php:44
1960
- #: includes/optimization/tabs/wps-optimization-resources.php:55
1961
- #: includes/optimization/tabs/wps-optimization-resources.php:66
1962
- #: includes/optimization/tabs/wps-optimization-resources.php:77
1963
- #: includes/optimization/tabs/wps-optimization-resources.php:88
1964
- #: includes/optimization/tabs/wps-optimization-resources.php:99
1965
- #: includes/optimization/tabs/wps-optimization-resources.php:110
1966
  msgid "Number of rows in the %s table"
1967
  msgstr "ژمارەی رێز لە خشت %s"
1968
 
1969
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1970
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1971
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1972
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1973
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1974
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1975
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1976
  msgid "Row"
1977
  msgstr "رێز"
1978
 
1979
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1980
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1981
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1982
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1983
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1984
- #: includes/optimization/tabs/wps-optimization-resources.php:104
1985
- #: includes/optimization/tabs/wps-optimization-resources.php:115
1986
  msgid "Number of rows"
1987
  msgstr "ژمارەی رێزەکان"
1988
 
1989
- #: includes/optimization/tabs/wps-optimization-resources.php:120
1990
  msgid "Version Info"
1991
  msgstr "زانیاری وەشان"
1992
 
1993
- #: includes/optimization/tabs/wps-optimization-resources.php:125
1994
  msgid "WP Statistics Version"
1995
  msgstr "وەشانی زیادکراوەی ئامار"
1996
 
1997
- #: includes/optimization/tabs/wps-optimization-resources.php:130
1998
  msgid "The WP Statistics version you are running."
1999
  msgstr "وەشانی زیادکراوەی ئاماری ئێستای ئێوە"
2000
 
2001
- #: includes/optimization/tabs/wps-optimization-resources.php:136
2002
  msgid "PHP Version"
2003
  msgstr "وەشانیPHP "
2004
 
2005
- #: includes/optimization/tabs/wps-optimization-resources.php:141
2006
  msgid "The PHP version you are running."
2007
  msgstr "وەشانی PHPی ئێوە لە کاتی ئیشکردن"
2008
 
2009
- #: includes/optimization/tabs/wps-optimization-resources.php:147
2010
  msgid "PHP Safe Mode"
2011
  msgstr "شیوازی پاراستنیPHP "
2012
 
2013
- #: includes/optimization/tabs/wps-optimization-resources.php:152
2014
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2015
  msgstr "پاراسنی دۆخی PHP چالاکە.کۆدەکانی GeoIP لەدۆخی ئسایش پشتیوانی نابن"
2016
 
2017
- #: includes/optimization/tabs/wps-optimization-resources.php:158
2018
  msgid "jQuery Version"
2019
  msgstr "وەشانی jQuery "
2020
 
2021
- #: includes/optimization/tabs/wps-optimization-resources.php:163
2022
  msgid "The jQuery version you are running."
2023
  msgstr "وەشانی jQuery ئێوە کە لە ئێستا بەکارتهێناوە"
2024
 
2025
- #: includes/optimization/tabs/wps-optimization-resources.php:169
2026
  msgid "cURL Version"
2027
  msgstr "وەشانیcURL"
2028
 
2029
- #: includes/optimization/tabs/wps-optimization-resources.php:173
2030
  msgid "cURL not installed"
2031
  msgstr "cURL دانەمزراوە"
2032
 
2033
- #: includes/optimization/tabs/wps-optimization-resources.php:174
2034
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2035
  msgstr "پێوەکراوەی cURL لە PHP ئێوە لەکاتی ڕاکردنە. گەر دانەمەزراوە GeoIP ناچالاک دەبێت"
2036
 
2037
- #: includes/optimization/tabs/wps-optimization-resources.php:180
2038
- msgid "BC Math"
2039
- msgstr "بیرکاری BC "
2040
-
2041
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2042
  msgid "Installed"
2043
  msgstr "دامەزرا"
2044
 
2045
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2046
  msgid "Not installed"
2047
  msgstr "دانەمەزرا"
2048
 
2049
- #: includes/optimization/tabs/wps-optimization-resources.php:185
2050
- 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."
2051
- msgstr "گر بیریاری پێ زایین PHPجیاکاری لۆ دامەزراندن بووە.بیرکاری پێش زیینی تر بۆ دامەزراندن پێویستە بۆ کۆدی GeoIP تەنیا بە هۆکاری مێژوویی باس کراوە"
2052
-
2053
- #: includes/optimization/tabs/wps-optimization-resources.php:190
2054
  msgid "File Info"
2055
  msgstr "زانیاری پەڕگە"
2056
 
2057
- #: includes/optimization/tabs/wps-optimization-resources.php:195
2058
  msgid "GeoIP Database"
2059
  msgstr "بنکەدراوەی GeoIP"
2060
 
2061
- #: includes/optimization/tabs/wps-optimization-resources.php:204
2062
  msgid "Database file does not exist."
2063
  msgstr "پەڕگەی بنکەدراوە بوونی نییە"
2064
 
2065
- #: includes/optimization/tabs/wps-optimization-resources.php:206
2066
- #: includes/optimization/tabs/wps-optimization-resources.php:225
2067
- #: includes/optimization/tabs/wps-optimization-resources.php:244
2068
  msgid ", created on "
2069
  msgstr "درووستکراوە لە"
2070
 
2071
- #: includes/optimization/tabs/wps-optimization-resources.php:208
2072
  msgid "The file size and date of the GeoIP database."
2073
  msgstr "قەبارە پەڕگە ورێکەوتی بنکەیدراوەی GeoIP"
2074
 
2075
- #: includes/optimization/tabs/wps-optimization-resources.php:214
2076
  msgid "browscap.ini File"
2077
  msgstr "پەرگەی browscap.ini"
2078
 
2079
- #: includes/optimization/tabs/wps-optimization-resources.php:223
2080
  msgid "browscap.ini file does not exist."
2081
  msgstr "پەڕگەی browscap.ini بوونی نییە"
2082
 
2083
- #: includes/optimization/tabs/wps-optimization-resources.php:227
2084
  msgid "The file size and date of the browscap.ini file."
2085
  msgstr "قەباری و رێکەوتی پەڕگەی browscap.ini"
2086
 
2087
- #: includes/optimization/tabs/wps-optimization-resources.php:233
2088
  msgid "browscap Cache File"
2089
  msgstr "بیرگەی نهێنی browscap "
2090
 
2091
- #: includes/optimization/tabs/wps-optimization-resources.php:242
2092
  msgid "browscap cache file does not exist."
2093
  msgstr "بیرگەی نهێنی browscap بوونی نییە"
2094
 
2095
- #: includes/optimization/tabs/wps-optimization-resources.php:246
2096
  msgid "The file size and date of the browscap cache file."
2097
  msgstr "قەبارە پەڕگە ورێکەوتی بیرگەی نژێنی browscap ."
2098
 
2099
- #: includes/optimization/tabs/wps-optimization-resources.php:251
2100
  msgid "Client Info"
2101
  msgstr "زانیاری بەکارهینەر"
2102
 
2103
- #: includes/optimization/tabs/wps-optimization-resources.php:256
2104
  msgid "Client IP"
2105
  msgstr "IP بەکارهێنەر"
2106
 
2107
- #: includes/optimization/tabs/wps-optimization-resources.php:261
2108
  msgid "The client IP address."
2109
  msgstr "ناونیشانی IP بەکارهینەر"
2110
 
2111
- #: includes/optimization/tabs/wps-optimization-resources.php:267
2112
  msgid "User Agent"
2113
  msgstr "بریکاری بەکارهێنەر"
2114
 
2115
- #: includes/optimization/tabs/wps-optimization-resources.php:272
2116
  msgid "The client user agent string."
2117
  msgstr "رێزبەندی بریکاری بەکارهینەر"
2118
 
2119
- #: includes/optimization/tabs/wps-optimization-resources.php:278
2120
  msgid "Browser"
2121
  msgstr "وەبگەڕ"
2122
 
2123
- #: includes/optimization/tabs/wps-optimization-resources.php:285
2124
  msgid "The detected client browser."
2125
  msgstr "وەبگەڕی ناسراوەی بەکارهینەر"
2126
 
2127
- #: includes/optimization/tabs/wps-optimization-resources.php:296
2128
  msgid "The detected client browser version."
2129
  msgstr "وەشانی ناسراوەی وێبگەڕی بەکارهینەر"
2130
 
2131
- #: includes/optimization/tabs/wps-optimization-resources.php:307
2132
  msgid "The detected client platform."
2133
  msgstr "سەکۆی ناسراوەی بەکارهینەر"
2134
 
2135
- #: includes/optimization/tabs/wps-optimization-updates.php:4
2136
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2137
  msgstr "تەواوی ناونیشانەکانی لە بنکەدراوە دەگؤڕدڕێنە سەر هەش وە ناگەڕێنەوە ،دەڵنیای ؟"
2138
 
2139
- #: includes/optimization/tabs/wps-optimization-updates.php:16
2140
  msgid "GeoIP Options"
2141
  msgstr "رێکخستنی GeoIP"
2142
 
2143
- #: includes/optimization/tabs/wps-optimization-updates.php:26
2144
  msgid "Updates any unknown location data in the database, this may take a while"
2145
  msgstr "وەرگرتنی بەرۆژکردنی شوێنی وەڵآتەکان لە بنکەی درواە.لەوانەیە ئەم کردارە کەمێ کات بەخۆیەوە ترخان بکات"
2146
 
2147
- #: includes/optimization/tabs/wps-optimization-updates.php:31
2148
- #: includes/settings/tabs/wps-general.php:66
2149
  msgid "IP Addresses"
2150
  msgstr "ناونیشانەکانی IP "
2151
 
2152
- #: includes/optimization/tabs/wps-optimization-updates.php:36
2153
- #: includes/settings/tabs/wps-general.php:71
2154
  msgid "Hash IP Addresses"
2155
  msgstr "هەشکردنی ناونیشانی IP "
2156
 
2157
- #: includes/optimization/tabs/wps-optimization-updates.php:41
2158
  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"
2159
  msgstr "تەواوی ناونیشانەکانی IP لە بنکەی دراوە بە هەش دەگۆردرێن و توانایی گەڕانەوەیان نییە.بۆ ئەم کردارە دەڵنیای ؟"
2160
 
2161
- #: includes/optimization/wps-optimization.php:43
2162
  msgid "IP Addresses replaced with hash values."
2163
  msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕدرێت"
2164
 
2165
- #: includes/optimization/wps-optimization.php:51
2166
  msgid "Install routine complete."
2167
  msgstr "دامەزراندن تەواوبوو"
2168
 
2169
- #: includes/optimization/wps-optimization.php:234
2170
  msgid "Resources/Information"
2171
  msgstr "سەرچاوەکان/زانیاری"
2172
 
2173
- #: includes/optimization/wps-optimization.php:236
2174
  msgid "Purging"
2175
  msgstr "پاکسازی"
2176
 
2177
- #: includes/optimization/wps-optimization.php:237
2178
  msgid "Database"
2179
  msgstr "بنکەدراوە"
2180
 
2181
- #: includes/optimization/wps-optimization.php:238
2182
  msgid "Updates"
2183
  msgstr "بەڕۆژبونەکان"
2184
 
2185
- #: includes/optimization/wps-optimization.php:239
2186
  msgid "Historical"
2187
  msgstr "مێژوویی"
2188
 
2189
- #: includes/settings/tabs/wps-about.php:8
2190
  msgid "WP Statistics V%s"
2191
  msgstr "ئاماری وۆردپرێس وشانی %s"
2192
 
2193
- #: includes/settings/tabs/wps-about.php:28
2194
  msgid "Visit Us Online"
2195
  msgstr "دیتنی ئێمە"
2196
 
2197
- #: includes/settings/tabs/wps-about.php:32
2198
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2199
  msgstr "بۆ %s نوێی ئێمە بڕۆن تا لە زانیاریەکان و هەواڵەکانی زیادکراوەی ئاماری وۆردپرێس ئاگادار بن."
2200
 
2201
- #: includes/settings/tabs/wps-about.php:32
2202
  msgid "website"
2203
  msgstr "ماڵپەڕ"
2204
 
2205
- #: includes/settings/tabs/wps-about.php:36
2206
  msgid "Rate and Review at WordPress.org"
2207
  msgstr "پلەدانان و پێداچوونەوە لە WordPress.org"
2208
 
2209
- #: includes/settings/tabs/wps-about.php:40
2210
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2211
  msgstr "سپاس و پێزانین بۆ دامەزراندنی زیادکراوەی ئاماری وۆردپرێس.ئێوە ئێوە هاندەدەین بۆ ناردنی "
2212
 
2213
- #: includes/settings/tabs/wps-about.php:40
2214
  msgid "rating and review"
2215
  msgstr "پلەدانان و پێداچوونەوە"
2216
 
2217
- #: includes/settings/tabs/wps-about.php:40
2218
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2219
  msgstr "سەردانی ماڵپەڕی وۆردپرێش بکەن .بۆچوونەکانتان جێگای پێزانینە."
2220
 
2221
- #: includes/settings/tabs/wps-about.php:44
2222
  msgid "Translations"
2223
  msgstr "وەرگێڕانەکان"
2224
 
2225
- #: includes/settings/tabs/wps-about.php:48
2226
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2227
  msgstr "زیادکراوەی ئاماری وۆردپرێش بۆ بوون بە نێودەوڵەتی هانتان ئەدات تاکوو وەرگێڕانی لە سەر بکەن., بۆ دیتنی دۆخی وەرگێڕاوەکان %s سەردانی بکەن و گەر پێت خۆشە یارمەتیمان بدەی %s سەردانی بکە."
2228
 
2229
- #: includes/settings/tabs/wps-about.php:48
2230
  msgid "translation collaboration site"
2231
  msgstr "مالپەڕی هاوکار لە وەرگێڕان"
2232
 
2233
- #: includes/settings/tabs/wps-about.php:48
2234
  msgid "drop us a line"
2235
  msgstr "پەیوەندی لەگەڵ ئێمە"
2236
 
2237
- #: includes/settings/tabs/wps-about.php:52
2238
  msgid "Support"
2239
  msgstr "پشتیوانی"
2240
 
2241
- #: includes/settings/tabs/wps-about.php:57
2242
  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:"
2243
  msgstr "گەر لە گەڵ زیادکراوەی ئاماری وۆردپرێس کێشەت هەیە !پێمان خۆشە یارمەتیت بدەین.لە خوارەوە دەتوانیت لە تاقمەکانی سوود وەربگریت و پەیوەندیمان پی بکەی : "
2244
 
2245
- #: includes/settings/tabs/wps-about.php:60
2246
- #: includes/settings/tabs/wps-about.php:61
2247
  msgid "Have you read the %s?"
2248
  msgstr "ئێوە %s ت خوێندوەتەوە ؟"
2249
 
2250
- #: includes/settings/tabs/wps-about.php:60
2251
  msgid "FAQs"
2252
  msgstr "پرسیارەکان"
2253
 
2254
- #: includes/settings/tabs/wps-about.php:61
2255
  msgid "manual"
2256
  msgstr "ڕێنمایی"
2257
 
2258
- #: includes/settings/tabs/wps-about.php:62
2259
  msgid "Have you search the %s for a similar issue?"
2260
  msgstr "لە %s بۆ بابەتەکانی هاوتا گڕانتان کردووە ؟"
2261
 
2262
- #: includes/settings/tabs/wps-about.php:62
2263
  msgid "support forum"
2264
  msgstr "سەکۆی پشتیوانی"
2265
 
2266
- #: includes/settings/tabs/wps-about.php:63
2267
  msgid "Have you search the Internet for any error messages you are receiving?"
2268
  msgstr "ئایا بۆ هەر هەڵە لە ئینتەرنێت گەڕاوی ؟"
2269
 
2270
- #: includes/settings/tabs/wps-about.php:64
2271
  msgid "Make sure you have access to your PHP error logs."
2272
  msgstr "دەڵنیای PHP بە هەڵەکانی دەستپێگەیشتنت هەیە؟"
2273
 
2274
- #: includes/settings/tabs/wps-about.php:67
2275
  msgid "And a few things to double-check:"
2276
  msgstr "سەرنج بەم چەند خاڵە بدەن :"
2277
 
2278
- #: includes/settings/tabs/wps-about.php:70
2279
  msgid "How's your memory_limit in php.ini?"
2280
  msgstr "ژمارەی memory_limit لەphp.ini چاو پێکەوتووە ؟"
2281
 
2282
- #: includes/settings/tabs/wps-about.php:71
2283
  msgid "Have you tried disabling any other plugins you may have installed?"
2284
  msgstr "هەوڵت داوە زیادکراوەکانی دیکە ناچالللاک بکەی ؟"
2285
 
2286
- #: includes/settings/tabs/wps-about.php:72
2287
  msgid "Have you tried using the default WordPress theme?"
2288
  msgstr "هەوڵت داوا ڕکاری بنەڕەتی وۆردپرێس بکاربێنیت ؟"
2289
 
2290
- #: includes/settings/tabs/wps-about.php:73
2291
  msgid "Have you double checked the plugin settings?"
2292
  msgstr "ئایا ڕێکخستنەکانی زیادکراوەت چاودێری کردووە ؟"
2293
 
2294
- #: includes/settings/tabs/wps-about.php:74
2295
  msgid "Do you have all the required PHP extensions installed?"
2296
  msgstr "ئایا پێویستیەکانی دەستپیگەیشتنی PHP دامەزراندووە؟"
2297
 
2298
- #: includes/settings/tabs/wps-about.php:75
2299
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2300
  msgstr "ئایا پەرەییکی بەتاڵ لە وێبگەڕەکەت بینڕاوە ؟ئایا هەڵەکانت لە کۆدەکان بینیوە ئان پشکنینت بۆ کردووە /"
2301
 
2302
- #: includes/settings/tabs/wps-about.php:76
2303
  msgid "Have you checked your PHP and web server error logs?"
2304
  msgstr "ئایا PHP گوزارشی هەڵەکانی سێرڤێری وێبەکەت پشکنین کردووە ؟"
2305
 
2306
- #: includes/settings/tabs/wps-about.php:79
2307
  msgid "Still not having any luck?"
2308
  msgstr "هێشتا شآنسو بەختێکت بۆ نییە ؟"
2309
 
2310
- #: includes/settings/tabs/wps-about.php:79
2311
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2312
  msgstr "تکایە تیکێتێکی نوێ لە %s بنووسن تا لە کەمترین کات وەڵامەت بدەینەوە ."
2313
 
2314
- #: includes/settings/tabs/wps-about.php:79
2315
  msgid "WordPress.org support forum"
2316
  msgstr "سەکۆی پشتیوانی WordPress.org"
2317
 
2318
- #: includes/settings/tabs/wps-about.php:83
2319
  msgid "Alternatively %s support is available as well."
2320
  msgstr "مەکۆی پشتیوانی %s ئێمە ،ڕێگایێکی ترە بۆ دەستپێگەیشتن بە ئێمە"
2321
 
2322
- #: includes/settings/tabs/wps-about.php:83
2323
  msgid "Farsi"
2324
  msgstr "فارسی"
2325
 
2326
- #: includes/settings/tabs/wps-exclusions.php:21
2327
  msgid "WP Statistics Honey Pot Page"
2328
  msgstr "پەڕەی ئاماری وۆردپرێسی مەنجەڵە هەنگوین"
2329
 
2330
- #: includes/settings/tabs/wps-exclusions.php:22
2331
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2332
  msgstr "ئەم مەنجەڵە هەنگوێنە بۆ بەکارهێنانی ئاماری WPیە،نەبۆ سڕینەوە"
2333
 
2334
- #: includes/settings/tabs/wps-access-level.php:23
2335
- #: includes/settings/wps-settings.php:103
2336
  msgid "Access Levels"
2337
  msgstr "ئاستی دەستپێگەیشتن"
2338
 
2339
- #: includes/settings/tabs/wps-access-level.php:52
2340
  msgid "Required user level to view WP Statistics"
2341
  msgstr "ئاستی بەکارهێنەری پێویست بۆ دیتنی ئاماری وۆردپرێس"
2342
 
2343
- #: includes/settings/tabs/wps-access-level.php:67
2344
  msgid "Required user level to manage WP Statistics"
2345
  msgstr "ئاستی بەکارهێنەری پێویست بۆ بەڕێوەبردنی ئاماری وۆردپرێس"
2346
 
2347
- #: includes/settings/tabs/wps-access-level.php:75
2348
  msgid "See the %s for details on capability levels."
2349
  msgstr "دیتنی وردەکاری %s لە سەر ئاستی تواناییەکان."
2350
 
2351
- #: includes/settings/tabs/wps-access-level.php:75
2352
  msgid "WordPress Roles and Capabilities page"
2353
  msgstr "پەڕەی ڕۆڵەکان و تواناییەکانی وۆردپرێس"
2354
 
2355
- #: includes/settings/tabs/wps-access-level.php:76
2356
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2357
  msgstr "خاڵ: manage_network =بەڕێوەبەری تۆڕ، manage_options = بەڕیوەبەر، edit_others_posts = سەرنووسەر، publish_posts = نووسەر، edit_posts = هاوبەش، read = گشتی."
2358
 
2359
- #: includes/settings/tabs/wps-access-level.php:77
2360
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2361
  msgstr "هەر ئەکێک لە بڕگەکان بە شێوازی بنەڕەتی لە وۆردپرێس دابین کراوە. بۆ وێنە بە هەڵبژاردنی publish_posts به نویسنده‌گاه، سەرنووسەرەکان، بەڕێوەبەرو بەرێوەبەری گشتی دەستپێگەیشتن دەدەیت."
2362
 
2363
- #: includes/settings/tabs/wps-access-level.php:78
2364
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2365
  msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
2366
 
2367
- #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2368
- #: includes/settings/wps-settings.php:104 wp-statistics.php:415
2369
- #: wp-statistics.php:513
 
2370
  msgid "Exclusions"
2371
  msgstr "جیاکاریەکان"
2372
 
2373
- #: includes/settings/tabs/wps-exclusions.php:50
2374
  msgid "Record exclusions"
2375
  msgstr "تۆمارکردنی جیاکاریەکان"
2376
 
2377
- #: includes/settings/tabs/wps-exclusions.php:52
2378
- #: includes/settings/tabs/wps-exclusions.php:106
2379
- #: includes/settings/tabs/wps-exclusions.php:133
2380
- #: includes/settings/tabs/wps-exclusions.php:150
2381
  msgid "Enable"
2382
  msgstr "چالاک"
2383
 
2384
- #: includes/settings/tabs/wps-exclusions.php:53
2385
  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."
2386
  msgstr "جیاکردنی چینیک لە سەردانی ئامارەکە و هەڵگرتنی ئەان بە نووسینی هۆکارەکەیان لە خشتێکی تر.دەتوانێت ژمارەیێکی زۆر داتا درووستکرێت.بەسوودە دەتوانن ئامارێکی پتوتر لە سەردانەکان بەدەت بێنن."
2387
 
2388
- #: includes/settings/tabs/wps-exclusions.php:58
2389
  msgid "Exclude User Roles"
2390
  msgstr "دوورخستنەوەی ڕۆڵی بەکارهێنەر"
2391
 
2392
- #: includes/settings/tabs/wps-exclusions.php:74
2393
- #: includes/settings/tabs/wps-exclusions.php:196
2394
- #: includes/settings/tabs/wps-exclusions.php:203
2395
- #: includes/settings/tabs/wps-exclusions.php:210
2396
- #: includes/settings/tabs/wps-exclusions.php:217
2397
  msgid "Exclude"
2398
  msgstr "دوورخستنەوەکان"
2399
 
2400
- #: includes/settings/tabs/wps-exclusions.php:75
2401
  msgid "Exclude %s role from data collection."
2402
  msgstr "دوورخستنی ڕۆڵی بەکارهێنەر %s لە ژمارەی ئامار"
2403
 
2404
- #: includes/settings/tabs/wps-exclusions.php:81
2405
  msgid "IP/Robot Exclusions"
2406
  msgstr "جیاکردنی ڕۆبۆت/ئای پی"
2407
 
2408
- #: includes/settings/tabs/wps-exclusions.php:85
2409
  msgid "Robot list"
2410
  msgstr "لیستی ڕۆبۆتەکان"
2411
 
2412
- #: includes/settings/tabs/wps-exclusions.php:98
2413
  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."
2414
  msgstr "پیرستێک لە وەشەکان بۆ هەڵسەنگاندن و ناسینی ڕۆبۆتەکان (لە هەر هێڵ وەشەیێک بنووسن). چوونەژوورەوەکان دەبێت ٤ پیت بن."
2415
 
2416
- #: includes/settings/tabs/wps-exclusions.php:99
2417
  msgid "Reset to Default"
2418
  msgstr "ڕێکخستنەوه بۆ شێوازی بنەڕەتی"
2419
 
2420
- #: includes/settings/tabs/wps-exclusions.php:104
2421
  msgid "Force robot list update after upgrades"
2422
  msgstr "بەڕۆژکردنی لیستی ڕۆبۆتەکان پێش بەرزکردنەوە"
2423
 
2424
- #: includes/settings/tabs/wps-exclusions.php:107
2425
  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."
2426
  msgstr "پێرستی ڕۆبۆتەکان پاش بەڕۆژ بوونەوە ڕێکدەخرینەە.گەر ئەم برگە هەڵبژیرن پێرست لەدەست دەچێت"
2427
 
2428
- #: includes/settings/tabs/wps-exclusions.php:112
2429
  msgid "Robot visit threshold"
2430
  msgstr "لێواری سەفەری ڕۆبۆت"
2431
 
2432
- #: includes/settings/tabs/wps-exclusions.php:115
2433
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2434
  msgstr "هەڵسوکەوتکردنی میوانان زۆرتر لەم ژمارە سەردانە لەهەر ڕۆژ بە عینوانی ڕۆبۆت 0 = ناچالاکە."
2435
 
2436
- #: includes/settings/tabs/wps-exclusions.php:120
2437
  msgid "Excluded IP address list"
2438
  msgstr "جیاکردنی پێرستی ناونیشانیIP"
2439
 
2440
- #: includes/settings/tabs/wps-exclusions.php:123
2441
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2442
  msgstr "لیستێک لە ناونیشانی IPو Subnet Maskهای (لە هەر هیڵ یەک دانی) بۆ بەرگیری لە ژمێڕیاری ئامار (هەر دوو شێوازی 192.168.0.0/24 و 192.168.0.0/255.255.255.0 توانیی قبووڵ). بۆ دابین کردن تەنها ئادرەسێک لەIP پێویست نییەSubnet Maskزیادی کەن "
2443
 
2444
- #: includes/settings/tabs/wps-exclusions.php:124
2445
  msgid "Add 10.0.0.0"
2446
  msgstr "زیادکردنی10.0.0.0"
2447
 
2448
- #: includes/settings/tabs/wps-exclusions.php:125
2449
  msgid "Add 172.16.0.0"
2450
  msgstr "زۆرکردنی172.16.0.0"
2451
 
2452
- #: includes/settings/tabs/wps-exclusions.php:126
2453
  msgid "Add 192.168.0.0"
2454
  msgstr "زیادکردنی192.168.0.0"
2455
 
2456
- #: includes/settings/tabs/wps-exclusions.php:131
2457
  msgid "Use honey pot"
2458
  msgstr "بەکارهینانی مەنجەڵە هەنگوین"
2459
 
2460
- #: includes/settings/tabs/wps-exclusions.php:134
2461
  msgid "Use a honey pot page to identify robots."
2462
  msgstr "بەکارهینانی پەڕەیێک لە مەنجەڵە هەنگوین بۆ ناساندنی ڕۆبۆتەکان"
2463
 
2464
- #: includes/settings/tabs/wps-exclusions.php:139
2465
  msgid "Honey pot post id"
2466
  msgstr "مەنجەڵە هەنگوین ناردنی ناسنامە"
2467
 
2468
- #: includes/settings/tabs/wps-exclusions.php:142
2469
  msgid "The post id to use for the honeypot page."
2470
  msgstr "ناردنی ناسنامە بۆ بەکارهێنانی پەڕەی مەنجەڵە هەنگوین"
2471
 
2472
- #: includes/settings/tabs/wps-exclusions.php:143
2473
  msgid "Create a new honey pot page"
2474
  msgstr "درووستکردنی پەڕەی نوێی مەنجەڵە هەنگوین"
2475
 
2476
- #: includes/settings/tabs/wps-exclusions.php:156
2477
  msgid "GeoIP Exclusions"
2478
  msgstr "جیاکراوەکانی GeoIP"
2479
 
2480
- #: includes/settings/tabs/wps-exclusions.php:160
2481
  msgid "Excluded countries list"
2482
  msgstr "لیستی وەڵاتە جیاکراوەکان"
2483
 
2484
- #: includes/settings/tabs/wps-exclusions.php:163
2485
  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."
2486
  msgstr "لیستێک لە کۆدی وەڵاتەکان (ئەکدانە لە هەر هێڵ، هەر دوو نامە) لە کۆی ئامار بریتیە بەکارهێنان لە &quot;000&quot; (سێ سفر) رد بۆ وەڵاتە نەناسراوەکانە."
2487
 
2488
- #: includes/settings/tabs/wps-exclusions.php:168
2489
  msgid "Included countries list"
2490
  msgstr "لیستی وەڵاتەکان بریتین لە"
2491
 
2492
- #: includes/settings/tabs/wps-exclusions.php:171
2493
  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."
2494
  msgstr "لیستێک لە کۆدی وەڵاتەکان (لەهەر هێڵ یەکێک، هەر دوو نامە)لە کۆ ئامار بریتییە، گەر ئەم لیستە بەتاڵ نییە، تەنیا میوانەکان لە وەڵاتەکان تۆمار دەبن. بەکارهێنان لە &quot;000&quot; (سێ سفر) بۆ قەبووڵ نەکردنی وەڵاتە نەناسراوەکانە."
2495
 
2496
- #: includes/settings/tabs/wps-exclusions.php:176
2497
  msgid "Host Exclusions"
2498
  msgstr "جیاکاری هۆست"
2499
 
2500
- #: includes/settings/tabs/wps-exclusions.php:180
2501
  msgid "Excluded hosts list"
2502
  msgstr "جیاکاری لیستی هۆستەکان"
2503
 
2504
- #: includes/settings/tabs/wps-exclusions.php:183
2505
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2506
  msgstr "لیستێک لە ناونیشانەکانی خۆماڵی (بۆ وێنە: /wordpress/about، هەر هێڵ) لە کۆی ئامار دووردەخرێت."
2507
 
2508
- #: includes/settings/tabs/wps-exclusions.php:185
2509
  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."
2510
  msgstr "ئاگاداربە:ئەم بڕگە dns پێچەوانە لە هەر نوێکردنی پەڕە بۆ هەر ipێک کە لە سەر شەکرەی هەر سێرڤێرێک لە کاتژمێر بەکاردێت . گەر ئێوە بەرگیری بکەن لە هەر هۆستێکی تایبەتلەوانەیە کە ءیوە پەیدا بکەن پلەی هاوئاهەنگی لە نێوانگۆڕانی هۆست کە بە ناونیشانی ئایپی و بەڕۆژ بوونی ئاکامی سەردانەکان لە بوونی شەکرە لە وێبگەر."
2511
 
2512
- #: includes/settings/tabs/wps-exclusions.php:190
2513
  msgid "Site URL Exclusions"
2514
  msgstr "جیاکاری ئادرەسی ماڵپەڕ"
2515
 
2516
- #: includes/settings/tabs/wps-exclusions.php:194
2517
  msgid "Excluded login page"
2518
  msgstr "جیاکاری پەڕگەی هاتنە ژوور"
2519
 
2520
- #: includes/settings/tabs/wps-exclusions.php:197
2521
  msgid "Exclude the login page for registering as a hit."
2522
  msgstr "جیاکاری پەڕەی چوونەژوورەوە بۆ ناونووسی لە ژماردنی ئامار"
2523
 
2524
- #: includes/settings/tabs/wps-exclusions.php:201
2525
  msgid "Excluded admin pages"
2526
  msgstr "جیاکاری پەڕەی بەڕێوەبەر"
2527
 
2528
- #: includes/settings/tabs/wps-exclusions.php:204
2529
  msgid "Exclude the admin pages for registering as a hit."
2530
  msgstr "جیاکاری پەڕەی بەڕێوەبەر بۆ ناونووسی لە ژماردنی ئامار"
2531
 
2532
- #: includes/settings/tabs/wps-exclusions.php:208
2533
  msgid "Excluded RSS feeds"
2534
  msgstr "جیاکاری فیدی RSS "
2535
 
2536
- #: includes/settings/tabs/wps-exclusions.php:211
2537
  msgid "Exclude the RSS feeds for registering as a hit."
2538
  msgstr "جیاکاری پەڕەی فیدیRSS بۆ ناونووسی لە ژماردنی ئامار"
2539
 
2540
- #: includes/settings/tabs/wps-externals.php:162
2541
  msgid "browscap settings"
2542
  msgstr "ڕێکخستنەکانی browscap "
2543
 
2544
- #: includes/settings/tabs/wps-externals.php:167
2545
  msgid "browscap usage"
2546
  msgstr "سودوەرگرتن لە browscap"
2547
 
2548
- #: includes/settings/tabs/wps-externals.php:52
2549
- #: includes/settings/tabs/wps-externals.php:76
2550
- #: includes/settings/tabs/wps-externals.php:109
2551
- #: includes/settings/tabs/wps-externals.php:172
2552
- #: includes/settings/tabs/wps-externals.php:196
2553
- #: includes/settings/tabs/wps-externals.php:236
2554
- #: includes/settings/tabs/wps-externals.php:260
2555
- #: includes/settings/tabs/wps-general.php:76
2556
- #: includes/settings/tabs/wps-general.php:92
2557
- #: includes/settings/tabs/wps-general.php:116
2558
- #: includes/settings/tabs/wps-general.php:132
2559
- #: includes/settings/tabs/wps-general.php:148
2560
- #: includes/settings/tabs/wps-general.php:160
2561
- #: includes/settings/tabs/wps-general.php:187
2562
- #: includes/settings/tabs/wps-general.php:199
2563
- #: includes/settings/tabs/wps-general.php:214
2564
- #: includes/settings/tabs/wps-general.php:228
2565
- #: includes/settings/tabs/wps-general.php:258
2566
- #: includes/settings/tabs/wps-general.php:270
2567
- #: includes/settings/tabs/wps-general.php:286
2568
- #: includes/settings/tabs/wps-general.php:325
2569
- #: includes/settings/tabs/wps-general.php:341
2570
- #: includes/settings/tabs/wps-maintenance.php:40
2571
- #: includes/settings/tabs/wps-maintenance.php:68
2572
- #: includes/settings/tabs/wps-notifications.php:69
2573
- #: includes/settings/tabs/wps-notifications.php:81
2574
- #: includes/settings/tabs/wps-notifications.php:93
2575
- #: includes/settings/tabs/wps-notifications.php:105
2576
- #: includes/settings/tabs/wps-notifications.php:121
2577
- #: includes/settings/tabs/wps-overview-display.php:34
2578
- #: includes/settings/tabs/wps-overview-display.php:54
2579
- #: includes/settings/tabs/wps-overview-display.php:94
2580
- #: includes/settings/tabs/wps-overview-display.php:106
2581
  msgid "Active"
2582
  msgstr "چالاک"
2583
 
2584
- #: includes/settings/tabs/wps-externals.php:173
2585
  msgid "The browscap database will be downloaded and used to detect robots."
2586
  msgstr "بنکەی دراوە browscap داگرە بۆ بهەرە وەرگرتن لە رۆبۆت."
2587
 
2588
- #: includes/settings/tabs/wps-externals.php:179
2589
  msgid "Update browscap Info"
2590
  msgstr "Browscap بەڕۆژکردنی زانیاریەکانی"
2591
 
2592
- #: includes/settings/tabs/wps-externals.php:184
2593
  msgid "Download browscap Database"
2594
  msgstr "داگرتنی browscapبنکەدراوە"
2595
 
2596
- #: includes/settings/tabs/wps-externals.php:65
2597
- #: includes/settings/tabs/wps-externals.php:185
2598
- #: includes/settings/tabs/wps-externals.php:249
2599
  msgid "Save changes on this page to download the update."
2600
  msgstr "پاشکەوتی گۆڕانکاری لەم پەرگە و داگرتنی بەڕۆژکراوەکان"
2601
 
2602
- #: includes/settings/tabs/wps-externals.php:191
2603
  msgid "Schedule weekly update of browscap DB"
2604
  msgstr "ببەرنامەی بەڕۆژ کردنی هەفتانە browscap دسی بی"
2605
 
2606
- #: includes/settings/tabs/wps-externals.php:79
2607
- #: includes/settings/tabs/wps-externals.php:199
2608
- #: includes/settings/tabs/wps-externals.php:263
2609
  msgid "Next update will be"
2610
  msgstr "بەڕۆژ بوونی داهاتوو هەیە."
2611
 
2612
- #: includes/settings/tabs/wps-externals.php:215
2613
  msgid "Download of the browscap database will be scheduled for once a week."
2614
  msgstr "داگرتنی بنکەدراوەی browscap بۆبارێک لە حەفتە"
2615
 
2616
- #: includes/settings/tabs/wps-general.php:50
2617
  msgid "This will delete the manual when you save the settings, are you sure?"
2618
  msgstr "پاش پاشکەتکردنی ڕێکخستنەکان پەڕگەی ڕینمایی دەسڕێتەوە ،دەڵنیای ؟"
2619
 
2620
- #: includes/settings/tabs/wps-general.php:77
2621
  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."
2622
  msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
2623
 
2624
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
 
2625
  msgid "Users Online"
2626
  msgstr "بەکارهێنەری سەرهێڵ"
2627
 
2628
- #: includes/settings/tabs/wps-general.php:87
2629
  msgid "User online"
2630
  msgstr "بەکارهێنەری سەرهێڵ"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0.2\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: wp-statistics/ajax.php:220
14
+ msgid "No matching widget found!"
15
+ msgstr ""
16
+
17
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
18
+ msgid "Zlib gzopen()"
19
+ msgstr ""
20
+
21
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
22
+ msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
23
+ msgstr ""
24
+
25
+ #: wp-statistics/wps-updates.php:16
26
+ msgid "Error the download_url() or gzopen() functions do not exist!"
27
+ msgstr ""
28
+
29
+ #: wp-statistics/wps-updates.php:45
30
+ msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
31
+ msgstr ""
32
+
33
+ #: wp-statistics/wp-statistics.php:95
34
  msgid "&#151; You are running an unsupported version of PHP."
35
  msgstr "ئێوە خەریکی کارکردن بە وشانی پاڵپشتی نەکراویphpین"
36
 
37
+ #: wp-statistics/wp-statistics.php:95
38
  msgid "WP Statistics Disabled"
39
  msgstr "ئامار ناچالاک بووە"
40
 
41
+ #: wp-statistics/wp-statistics.php:99
42
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
43
  msgstr ""
44
 
45
+ #: wp-statistics/wp-statistics.php:101
46
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
47
  msgstr "WP ئاماری PHP وشانی٪ s ناسراوە کە پاڵپشتی ناکرێت WP پێویستی PHP وشانی ٪ s و سەرتر هەیە!"
48
 
49
+ #: wp-statistics/ajax.php:299
50
  msgid "ERROR: Widget not found!"
51
  msgstr "هەڵە : ویجیت پەیدا نەبوو"
52
 
53
+ #: wp-statistics/dashboard.php:111 wp-statistics/editor.php:66
54
+ #: wp-statistics/includes/log/log.php:20
55
  msgid "Loading..."
56
  msgstr "خرمەخرم......"
57
 
58
+ #: wp-statistics/dashboard.php:129 wp-statistics/editor.php:84
59
+ #: wp-statistics/includes/log/log.php:2
60
  msgid "Reloading..."
61
  msgstr "لە کاتی هەڵگرساندەوە...."
62
 
63
+ #: wp-statistics/includes/log/top-visitors.php:41
64
+ #: wp-statistics/wp-statistics.php:447
65
  msgid "Top Visitors"
66
  msgstr "دوایین سەردانەکان"
67
 
68
+ #: wp-statistics/wp-statistics.php:206
69
  msgid "optimization page"
70
  msgstr "پەڕەی چاکسازی"
71
 
72
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
73
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
74
  msgid "Enabled"
75
  msgstr "چالاک کرا"
76
 
77
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
78
  msgid "Purge Old Data Daily"
79
  msgstr "سڕینەوەی زانیاری ڕۆژانە"
80
 
81
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
82
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
83
  msgstr ""
84
 
85
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
86
  msgid "Purge data older than"
87
  msgstr "سڕینەوەی زانیاری کۆنەتتر"
88
 
89
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
90
  msgid "Purge High Hit Count Visitors Daily"
91
  msgstr ""
92
 
93
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
94
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
95
  msgstr ""
96
 
97
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
98
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
99
  msgstr ""
100
 
101
+ #: wp-statistics/shortcode.php:184
102
  msgid "The post/page id to get page statistics on."
103
  msgstr ""
104
 
105
+ #: wp-statistics/shortcode.php:181
106
  msgid "Post/Page ID"
107
  msgstr ""
108
 
109
+ #: wp-statistics/includes/functions/functions.php:435
110
  msgid "Ask.com"
111
  msgstr ""
112
 
113
+ #: wp-statistics/shortcode.php:158
114
  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."
115
  msgstr ""
116
 
117
+ #: wp-statistics/wp-statistics.php:180
118
  msgid "visitor tracking"
119
  msgstr ""
120
 
121
+ #: wp-statistics/wp-statistics.php:181
122
  msgid "geoip collection"
123
  msgstr ""
124
 
125
+ #: wp-statistics/wp-statistics.php:197
126
  msgid "visit database index"
127
  msgstr ""
128
 
129
+ #: wp-statistics/wp-statistics.php:206
130
  msgid "Database updates are required, please go to %s and update the following: %s"
131
  msgstr ""
132
 
133
+ #: wp-statistics/wp-statistics.php:197
134
  msgid "countries database index"
135
  msgstr ""
136
 
137
+ #: wp-statistics/wp-statistics.php:190
138
  msgid "search table"
139
  msgstr ""
140
 
141
+ #: wp-statistics/wp-statistics.php:184
142
  msgid "settings page"
143
  msgstr ""
144
 
145
+ #: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
146
  msgid ","
147
  msgstr ""
148
 
149
+ #: wp-statistics/wp-statistics.php:184
150
  msgid "The following features are disabled, please go to %s and enable them: %s"
151
  msgstr ""
152
 
153
+ #: wp-statistics/wp-statistics.php:179
154
  msgid "hit tracking"
155
  msgstr ""
156
 
157
+ #: wp-statistics/wp-statistics.php:178
158
  msgid "online user tracking"
159
  msgstr ""
160
 
161
+ #: wp-statistics/wp-statistics.php:775
162
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
163
  msgstr ""
164
 
165
+ #: wp-statistics/includes/optimization/wps-optimization.php:196
166
  msgid "Search table conversion complete, %d rows added."
167
  msgstr ""
168
 
169
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
170
  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."
171
  msgstr ""
172
 
173
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
174
  msgid "Search Table"
175
  msgstr ""
176
 
177
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
178
  msgid "Convert"
179
  msgstr ""
180
 
181
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
182
  msgid "Convert Now!"
183
  msgstr ""
184
 
185
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
186
  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."
187
  msgstr ""
188
 
189
+ #: wp-statistics/includes/log/exclusions.php:24
190
  msgid "Referrer Spam"
191
  msgstr ""
192
 
193
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:279
194
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
195
  msgstr ""
196
 
197
+ #: wp-statistics/includes/settings/wps-settings.php:105
198
  msgid "Externals"
199
  msgstr ""
200
 
201
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:220
202
  msgid "Piwik Referrer Spam Blacklist settings"
203
  msgstr ""
204
 
205
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:255
206
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
207
  msgstr ""
208
 
209
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:248
210
  msgid "Download Piwik Referrer Spam Blacklist Database"
211
  msgstr ""
212
 
213
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:243
214
  msgid "Update Piwik Referrer Spam Blacklist Info"
215
  msgstr ""
216
 
217
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:237
218
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
219
  msgstr ""
220
 
221
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:225
222
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
223
  msgstr ""
224
 
225
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:231
226
  msgid "Piwik Referrer Spam Blacklist usage"
227
  msgstr ""
228
 
229
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
230
  msgid "Treat corrupt browser info as a bot"
231
  msgstr ""
232
 
233
+ #: wp-statistics/includes/log/exclusions.php:24
234
  msgid "404 Pages"
235
  msgstr ""
236
 
237
+ #: wp-statistics/includes/log/top-visitors.php:26
238
  msgid "Date"
239
  msgstr ""
240
 
241
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
242
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
243
  msgstr ""
244
 
245
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
246
  msgid "Excluded 404 pages"
247
  msgstr ""
248
 
249
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
250
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
251
  msgstr ""
252
 
253
+ #: wp-statistics/wps-updates.php:37
254
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
255
  msgstr ""
256
 
257
+ #: wp-statistics/includes/settings/tabs/wps-general.php:281
258
  msgid "Add page title to empty search words"
259
  msgstr ""
260
 
261
+ #: wp-statistics/includes/settings/tabs/wps-general.php:287
262
  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."
263
  msgstr ""
264
 
265
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
266
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
267
  msgid "Purge visitors with more than"
268
  msgstr ""
269
 
270
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
271
  msgid "hits"
272
  msgstr ""
273
 
274
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
275
  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."
276
  msgstr ""
277
 
278
+ #: wp-statistics/includes/functions/purge-hits.php:28
279
  msgid "No visitors found to purge."
280
  msgstr "هیچ سەردانێک پەیدا نەبو"
281
 
282
+ #: wp-statistics/includes/functions/purge-hits.php:25
283
  msgid "%s records purged successfully."
284
  msgstr "%s گوزارش بە سەرکەوتوویی پاککران."
285
 
286
+ #: wp-statistics/ajax.php:178
287
+ #: wp-statistics/includes/functions/purge-hits.php:32
288
  msgid "Number of hits must be greater than or equal to 10!"
289
  msgstr "ژمارەی گوزارشەکانی سەرەوە ١٠ یان سەرت لەو بن."
290
 
291
+ #: wp-statistics/shortcode.php:141
292
  msgid "Page Visits"
293
  msgstr "سەردانی پەڕە"
294
 
295
+ #: wp-statistics/shortcode.php:144
296
  msgid "Page Count"
297
  msgstr "ژمارەی بەرگە"
298
 
299
+ #: wp-statistics/shortcode.php:145
300
  msgid "Comment Count"
301
  msgstr "ژمارەی بۆچوون"
302
 
303
+ #: wp-statistics/shortcode.php:146
304
  msgid "Spam Count"
305
  msgstr "ژمارەی سپام"
306
 
307
+ #: wp-statistics/shortcode.php:147
308
  msgid "User Count"
309
  msgstr "ژمارەی بەکارهێنەر"
310
 
311
+ #: wp-statistics/shortcode.php:148
312
  msgid "Post Average"
313
  msgstr "مامناوەندی نووسراوە"
314
 
315
+ #: wp-statistics/shortcode.php:149
316
  msgid "Comment Average"
317
  msgstr "مامناوەندی لێدوان"
318
 
319
+ #: wp-statistics/shortcode.php:150
320
  msgid "User Average"
321
  msgstr "مامناوەندی بەکارهێنەر"
322
 
323
+ #: wp-statistics/shortcode.php:162
324
  msgid "Search Provider"
325
  msgstr "سرویسی گەڕان"
326
 
327
+ #: wp-statistics/shortcode.php:165
328
  msgid "The search provider to get statistics on."
329
  msgstr "خزمەتگوزاری گەڕان بۆ ئامارەکان"
330
 
331
+ #: wp-statistics/shortcode.php:169
332
  msgid "Number Format"
333
  msgstr "فۆرماتی ژمارە"
334
 
335
+ #: wp-statistics/shortcode.php:172
336
  msgid "The format to display numbers in: i18n, english, none."
337
  msgstr "فۆرماتی ژمارەکان بۆ نیشاندانی : i18n, ئینگلیزی یان هیچ."
338
 
339
+ #: wp-statistics/shortcode.php:176
340
  msgid "English"
341
  msgstr "ئینگلیزی"
342
 
343
+ #: wp-statistics/shortcode.php:177
344
  msgid "International"
345
  msgstr "نێودەوڵەتی"
346
 
347
+ #: wp-statistics/includes/log/exclusions.php:191
348
+ #: wp-statistics/includes/log/hit-statistics.php:164
349
  msgid "Hits Statistics Summary"
350
  msgstr "کورتەی ئامار"
351
 
352
+ #: wp-statistics/includes/log/exclusions.php:201
353
+ #: wp-statistics/includes/log/hit-statistics.php:175
354
  msgid "Chart Total"
355
  msgstr "تەواو هێڵیکاریەکان"
356
 
357
+ #: wp-statistics/includes/log/exclusions.php:206
358
+ #: wp-statistics/includes/log/hit-statistics.php:181
359
  msgid "All Time Total"
360
  msgstr "گشتی کاتەکان"
361
 
362
+ #: wp-statistics/includes/log/log.php:6
363
  msgid "Have you thought about donating to WP Statistics?"
364
  msgstr "ئایا لە بارەی پاڵپستی لە زیادکراوەی ئاماری وۆردپرێس تێفکراوی"
365
 
366
+ #: wp-statistics/includes/settings/tabs/wps-about.php:20
367
+ #: wp-statistics/wp-statistics.php:429
368
  msgid "Donate"
369
  msgstr "یارمەتی"
370
 
371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
372
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
373
  msgstr "ئایا لە زیادکراوەی ئاماری وۆردپرێس سودت وەرگرتووە دەتوانیت لە پەڕەی %s خوازی خۆتمان پێ نیشان بدەی"
374
 
375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
376
  msgid "donation"
377
  msgstr "یارمەتی"
378
 
379
+ #: wp-statistics/includes/log/log.php:6
380
  msgid "Donate Now!"
381
  msgstr "ئێستا پاڵپستی بکەن"
382
 
383
+ #: wp-statistics/includes/log/log.php:6
384
  msgid "Close"
385
  msgstr "داخستن"
386
 
387
+ #: wp-statistics/shortcode.php:135
388
  msgid "Select the statistic you wish to display."
389
  msgstr "هەڵبژاردنی ئامارێک کە پێت خۆشە نیشانبدرێت"
390
 
391
+ #: wp-statistics/shortcode.php:132
392
  msgid "Statistic"
393
  msgstr "ئامار"
394
 
395
+ #: wp-statistics/shortcode.php:143
396
  msgid "Post Count"
397
  msgstr "ژمارەی ناردراوە"
398
 
399
+ #: wp-statistics/shortcode.php:155
400
  msgid "Time Frame"
401
  msgstr "ڕوخساری کات"
402
 
403
+ #: wp-statistics/includes/functions/functions.php:1032
404
  msgid "to"
405
  msgstr "تا"
406
 
407
+ #: wp-statistics/includes/functions/functions.php:1032
408
+ #: wp-statistics/includes/log/top-visitors.php:29
409
  msgid "Go"
410
  msgstr "بڕۆ"
411
 
412
+ #: wp-statistics/includes/log/top-pages.php:102
413
  msgid "Rank #5"
414
  msgstr "پلە#5"
415
 
416
+ #: wp-statistics/includes/log/top-pages.php:102
417
  msgid "Rank #4"
418
  msgstr "پلەی #٤"
419
 
420
+ #: wp-statistics/includes/log/top-pages.php:102
421
  msgid "Rank #3"
422
  msgstr "پلەی #3"
423
 
424
+ #: wp-statistics/includes/log/top-pages.php:102
425
  msgid "Rank #1"
426
  msgstr "پلای #١"
427
 
428
+ #: wp-statistics/includes/log/top-pages.php:102
429
  msgid "Rank #2"
430
  msgstr "پلای #٢"
431
 
432
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
433
  msgid "Visits Table"
434
  msgstr "خشتی سەردان"
435
 
436
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
437
  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."
438
  msgstr ""
439
 
440
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
441
  msgid "This operation could take a long time on installs with many rows in the visits table."
442
  msgstr ""
443
 
444
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
445
  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."
446
  msgstr ""
447
 
448
+ #: wp-statistics/includes/log/last-visitor.php:68
449
  msgid "Filtered by"
450
  msgstr "پێڵاوە بە"
451
 
452
+ #: wp-statistics/includes/functions/functions.php:1026
453
+ #: wp-statistics/includes/functions/functions.php:1029
454
  msgid "Range"
455
  msgstr "پلە"
456
 
457
+ #: wp-statistics/includes/functions/functions.php:1032
458
+ #: wp-statistics/includes/log/top-visitors.php:29
459
  msgid "MM/DD/YYYY"
460
  msgstr "MM/DD/YYYY"
461
 
462
+ #: wp-statistics/includes/settings/tabs/wps-general.php:342
463
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
464
  msgstr "وەرگێرانەکان بەکارمەهێنە و لە جیاتی ئەوە ئینگلیزی وەکو زمانی بنچینەیی بۆ WP Statistics بەکاربهێنە (پێویستی بە بارکردنی دوو پەڕ هەیە)"
465
 
466
+ #: wp-statistics/includes/settings/tabs/wps-general.php:336
467
  msgid "Force English"
468
  msgstr "ئئنگلیزی بەزۆر"
469
 
470
+ #: wp-statistics/includes/settings/tabs/wps-general.php:331
471
  msgid "Languages"
472
  msgstr "زمانەکان"
473
 
474
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
475
  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."
476
  msgstr "تێبینی: ئەم هەڵبژاردنە هیچ پارامێتەری بەستەرێک لە ئەستۆناگرێت ( هەر شتێک لەدوای ؟)، تەنها بۆ ناوی سکریپتەکە. هەر تێنوسراوێک کەمتر لە دوو پیت پشتگوێ دەخرێت."
477
 
478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
479
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
480
  msgstr "لیستێک لە بەستەرە ناوخۆییەکان (نمونە /wordpress/about بۆ هەر دێڕێک یەک) بۆ دەرکردنی لە کۆکراوەی ئامارەکان."
481
 
482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
483
  msgid "Excluded URLs list"
484
  msgstr "لیستی بەستەرە دەرکراوەکان"
485
 
486
+ #: wp-statistics/includes/log/exclusions.php:24
487
  msgid "Excluded URL"
488
  msgstr "بەستەری دەرکراو"
489
 
490
+ #: wp-statistics/includes/log/widgets/quickstats.php:52
491
+ #: wp-statistics/includes/log/widgets/summary.php:52
492
  msgid "Last 365 Days (Year)"
493
  msgstr "٣٦٥ ڕۆژ ڕابردوو(ساڵ)"
494
 
495
+ #: wp-statistics/includes/log/widgets/quickstats.php:46
496
+ #: wp-statistics/includes/log/widgets/summary.php:46
497
  msgid "Last 30 Days (Month)"
498
  msgstr "٣٠ ڕۆژ ڕابردوو (مانگ)"
499
 
500
+ #: wp-statistics/includes/log/widgets/quickstats.php:40
501
+ #: wp-statistics/includes/log/widgets/summary.php:40
502
  msgid "Last 7 Days (Week)"
503
  msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
504
 
505
+ #: wp-statistics/includes/functions/functions.php:441
506
  msgid "Yahoo!"
507
  msgstr "یاهو"
508
 
509
+ #: wp-statistics/includes/functions/functions.php:442
510
  msgid "Yandex"
511
  msgstr "یاندیکس"
512
 
513
+ #: wp-statistics/includes/functions/functions.php:438
514
  msgid "clearch.org"
515
  msgstr "clearch.org"
516
 
517
+ #: wp-statistics/includes/functions/functions.php:439
518
  msgid "DuckDuckGo"
519
  msgstr "دەک دەک گۆو"
520
 
521
+ #: wp-statistics/includes/functions/functions.php:437
522
  msgid "Bing"
523
  msgstr "بینگ"
524
 
525
+ #: wp-statistics/includes/functions/functions.php:436
526
  msgid "Baidu"
527
  msgstr "بەیدوو"
528
 
529
+ #: wp-statistics/includes/log/exclusions.php:24
 
 
 
 
530
  msgid "Feeds"
531
  msgstr "پێشبردنەکان"
532
 
533
+ #: wp-statistics/includes/log/exclusions.php:24
534
  msgid "User Role"
535
  msgstr "ڕۆڵی بەرکارهێنەر"
536
 
537
+ #: wp-statistics/includes/log/exclusions.php:24
538
  msgid "Login Page"
539
  msgstr "پەڕی چوونەژوورەوە"
540
 
541
+ #: wp-statistics/includes/log/exclusions.php:24
542
  msgid "Admin Page"
543
  msgstr "پەڕی بەڕێوەبەر"
544
 
545
+ #: wp-statistics/includes/log/exclusions.php:24
546
  msgid "Self Referral"
547
  msgstr "ئاراستەکردنی خۆیی"
548
 
549
+ #: wp-statistics/includes/log/exclusions.php:24
550
  msgid "IP Match"
551
  msgstr "یەکگرتنەوەی ئایپی"
552
 
553
+ #: wp-statistics/includes/log/exclusions.php:24
554
  msgid "Robot"
555
  msgstr "ڕۆبۆت"
556
 
557
+ #: wp-statistics/includes/log/online.php:100
558
  msgid "Currently there are no users online in the site."
559
  msgstr ".لە ئێستادا هیچ بەکارهێنەرێک بۆ ئەم ماڵپەڕ لەسەرهێڵ نییە"
560
 
561
+ #: wp-statistics/includes/log/exclusions.php:24
562
  msgid "Robot Threshold"
563
  msgstr "لێواری ڕۆبۆت"
564
 
565
+ #: wp-statistics/includes/log/exclusions.php:24
566
  msgid "Honey Pot"
567
  msgstr "مەنجەڵی هەنگوین"
568
 
569
+ #: wp-statistics/includes/log/widgets/page.php:8
570
  msgid "Page Trending Stats"
571
  msgstr "ئامارەکانی پەڕی زۆر خوازراو"
572
 
573
+ #: wp-statistics/includes/log/exclusions.php:24
574
  msgid "Hostname"
575
  msgstr "ناوی خانەخوێ"
576
 
577
+ #: wp-statistics/includes/settings/tabs/wps-general.php:93
578
+ #: wp-statistics/includes/settings/tabs/wps-general.php:133
579
+ #: wp-statistics/includes/settings/tabs/wps-general.php:149
580
+ #: wp-statistics/includes/settings/tabs/wps-general.php:188
581
+ #: wp-statistics/includes/settings/tabs/wps-general.php:200
582
+ #: wp-statistics/includes/settings/tabs/wps-general.php:229
583
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:122
584
  msgid "Enable or disable this feature"
585
  msgstr "ئەم تایبەتمەندیە چالاک یان ناچالاک بکە"
586
 
587
+ #: wp-statistics/includes/settings/tabs/wps-general.php:99
588
  msgid "Check for online users every"
589
  msgstr "پشکنین بۆ بەکارهێنەرانی سەرهێڵ بکە هەموو"
590
 
591
+ #: wp-statistics/includes/settings/tabs/wps-general.php:104
592
  msgid "Second"
593
  msgstr "چرکەیەک"
594
 
595
+ #: wp-statistics/includes/settings/tabs/wps-general.php:105
596
  msgid "Time for the check accurate online user in the site. Now: %s Second"
597
  msgstr "کات بۆ پشکنینی دروستی بەکارهێنەری سەرهیڵ لەم ماڵپەڕە. ئێستا %s چرکەیە"
598
 
599
+ #: wp-statistics/includes/settings/tabs/wps-general.php:111
600
  msgid "Record all user"
601
  msgstr "تۆمارکردنی گشت بەکارهێنەر"
602
 
603
+ #: wp-statistics/includes/settings/tabs/wps-general.php:117
604
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
605
  msgstr "ڕێکخستنی دەرکردەکان و تۆمارەکانی هەموو بەکارهێنەرانی سەرهێڵ پشتگوێ بخە ( بەلەخۆگرتنی ئاراستەکردنی خۆیی و ڕۆبۆتەکان). پێویستە تەنها بۆ دیاریکردنی کێشە بەکاربهێندرێت."
606
 
607
+ #: wp-statistics/includes/settings/tabs/wps-general.php:155
608
  msgid "Store entire user agent string"
609
  msgstr "تەواوی زنجیرەی بەکارهێنەری بریکار پاشەکەوت بکە"
610
 
611
+ #: wp-statistics/includes/settings/tabs/wps-general.php:161
612
  msgid "Only enabled for debugging"
613
  msgstr "تەنها چالاک بکرێت بۆ هەڵەدۆزین"
614
 
615
+ #: wp-statistics/includes/settings/tabs/wps-general.php:167
616
  msgid "Coefficient per visitor"
617
  msgstr "هاوچوستی بۆ هەر سەردانکارێک"
618
 
619
+ #: wp-statistics/includes/settings/tabs/wps-general.php:172
620
  msgid "For each visit to account for several hits. Currently %s."
621
  msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
622
 
623
+ #: wp-statistics/includes/settings/tabs/wps-general.php:177
624
+ #: wp-statistics/includes/settings/tabs/wps-general.php:182
625
+ #: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:516
626
  msgid "Pages"
627
  msgstr "پەڕەكان"
628
 
629
+ #: wp-statistics/includes/settings/tabs/wps-general.php:194
630
  msgid "Track all pages"
631
  msgstr "شوێن پێی هەموو پەڕەکان بکە"
632
 
633
+ #: wp-statistics/includes/settings/tabs/wps-general.php:209
634
  msgid "Strip parameters from URI"
635
  msgstr "لابردنی پارامێتەرەکان لە بەستەرەکە"
636
 
637
+ #: wp-statistics/includes/settings/tabs/wps-general.php:215
638
  msgid "This will remove anything after the ? in a URL."
639
  msgstr "ئەمە هەموو شتێک دەسڕێتەوە لە دوای ؟ لە بەستەرێکدا"
640
 
641
+ #: wp-statistics/includes/settings/tabs/wps-general.php:223
642
  msgid "Disable hits column in post/pages list"
643
  msgstr "ستونی هەڵدانەوەکان لە لیستی بابەت\\پەڕەکان ناچالاک بکە"
644
 
645
+ #: wp-statistics/includes/settings/tabs/wps-general.php:234
646
  msgid "Miscellaneous"
647
  msgstr "هەمەجۆر"
648
 
649
+ #: wp-statistics/includes/settings/tabs/wps-general.php:239
650
  msgid "Show stats in menu bar"
651
  msgstr "ئامارەكان لە لیست ئامراز پێشان بدە"
652
 
653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:244
654
  msgid "No"
655
  msgstr "نەخێر"
656
 
657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:245
658
  msgid "Yes"
659
  msgstr "بەڵێ"
660
 
661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:247
662
  msgid "Show stats in admin menu bar"
663
  msgstr "ئامارەكان لە لیست ئامرازی بەڕێوەبەر پێشان بدە"
664
 
665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:253
666
  msgid "Hide admin notices about non active features"
667
  msgstr "ئاگاداركردنەوەكانی بەڕێوەبەر بشارەوە سەبارەت بە تایبەتمەندییە ناچالاكەكان"
668
 
669
+ #: wp-statistics/includes/settings/tabs/wps-general.php:259
670
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
671
  msgstr "لە بنەرەت زیادکراوەی ئاماری وۆردپرێس تواناییەکانی ناچالاکی زیاد کراوە بە شێوەی هەڵە لە پەڕەی بەڕێوەبەر نیشان ئەدات.ئەم هەڵبژاردە ئەم تایبەتمەندییە ناچالاک دەکات"
672
 
673
+ #: wp-statistics/includes/settings/tabs/wps-general.php:265
674
  msgid "Delete the manual"
675
  msgstr "سڕینەوەی پەڕگەی ڕینمایی"
676
 
677
+ #: wp-statistics/includes/settings/tabs/wps-general.php:271
678
  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."
679
  msgstr "لە بنەرەت پەرگەی ڕینمایی بەکارهێنەرزیادکراوەی ئامار لە بوخچەی زیادکراوەی ئامار بە قەبارەی(٥مێگابایت) دانراوە.گەر ئەم هەڵبژاردە چالاک بێت هەر ئێستا سڕایەوە و لەکاتی بەڕۆژ بوونەوەس نامێنێت."
680
 
681
+ #: wp-statistics/includes/settings/tabs/wps-general.php:276
682
  msgid "Search Engines"
683
  msgstr "مەکینەکانی گەڕان"
684
 
685
+ #: wp-statistics/includes/settings/tabs/wps-general.php:293
686
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
687
  msgstr "ناچاڵاککردنی مەکینەکانی گەڕان کە پێویستت پێیان نییە..ئەم کارە لە ئاکامی گشتی مەکینەکان کارگێڕی هەیە."
688
 
689
+ #: wp-statistics/includes/settings/tabs/wps-general.php:308
690
  msgid "disable"
691
  msgstr "ناچالاک"
692
 
693
+ #: wp-statistics/includes/settings/tabs/wps-general.php:309
694
  msgid "Disable %s from data collection and reporting."
695
  msgstr "ناچالاککردنی %s کۆکردنەوەی داتا و گوزارشەکان."
696
 
697
+ #: wp-statistics/includes/settings/tabs/wps-general.php:315
698
  msgid "Charts"
699
  msgstr "هێڵکاریەکان"
700
 
701
+ #: wp-statistics/includes/settings/tabs/wps-general.php:320
702
  msgid "Include totals"
703
  msgstr "کۆی گشتی"
704
 
705
+ #: wp-statistics/includes/settings/tabs/wps-general.php:326
706
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
707
  msgstr "زیادکردنی کۆی گشتی بە هێڵکاری ئاماری تێپەڕبوونلە مەکینەکانی گەڕان"
708
 
709
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:32
710
  msgid "GeoIP settings"
711
  msgstr "ڕێکخستنه‌کانیGeoIP"
712
 
713
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:37
714
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
715
  msgstr "خزمەتگوزاری نیشاندانی شوێن IPلەگەڵ GeoLite2 دابینکراوە و لەلایانMaxMind درووستکراوە و لە %s توانایی دەستپێگەیشتنی بۆ هەیە."
716
 
717
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:47
718
  msgid "GeoIP collection"
719
  msgstr "کۆی GeoIP"
720
 
721
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:53
722
  msgid "For get more information and location (country) from visitor, enable this feature."
723
  msgstr "بۆ وەرگرتنی زانیاری زۆرتر و شوێنی(وەڵاتی) میوان.ئەم جێگا چالاک بکە."
724
 
725
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:59
726
  msgid "Update GeoIP Info"
727
  msgstr "بەڕۆژ بونی زانیاریەکان GeoIP"
728
 
729
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:64
730
  msgid "Download GeoIP Database"
731
  msgstr "داگرتنی بنکەداراوەی GeoIP"
732
 
733
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:71
734
  msgid "Schedule monthly update of GeoIP DB"
735
  msgstr "برنامە دانان بۆ بەڕۆژ کردنی مانگانەی بنکەدراوەی GeoIP"
736
 
737
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:97
738
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
739
  msgstr "وەرگرتنی بنکەدراوەی GeoIP لە دوو ڕۆژ پاش یەکەمین سێ شەممەی هەر مانگ."
740
 
741
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:98
742
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
743
  msgstr "ئەم هەڵبژاردە تەنانەت زانیاریەکانی کەمتر لە ١ کیلۆبایتیش دادگرێت(کە بەمانای زانیارییەکانی هاورێی زیادکراوەیە)."
744
 
745
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:104
746
  msgid "Populate missing GeoIP after update of GeoIP DB"
747
  msgstr "خەڵکی لەدەست چوو GeoIP پاش لە بەڕۆژ کردنی بنکەی دراوە GeoIP"
748
 
749
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:110
750
  msgid "Update any missing GeoIP data after downloading a new database."
751
  msgstr "بەڕۆژ کردنی هەر داتاییک لەدەست چوو GeoIP پاش لە داگرتنی بنکە دراوەی نوێ"
752
 
753
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:116
754
  msgid "Country code for private IP addresses"
755
  msgstr "کۆدی وەڵآت بۆ نیشانەکانی IP تایبەت"
756
 
757
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:121
758
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
759
  msgstr "ستانداردی دوو کۆدی نێودەوڵەتی نامە (بۆ وێنە. ئەمریکا= وەڵآتی ئەمریکا، CA = کەنەدا، و هتد) بۆ تایبەت (یوانایی دەتپێگەیشتنی نییە) ناونیشانیIP (بۆ وێنە. 10.0.0.1، 192.158.1.1، 127.0.0.1،و هتد). بەکارهێنان لە &quot;000&quot; (سێ سفر) به استفاده از &quot;نەناسراو&quot; بە عینوانی کۆدی وەڵات."
760
 
761
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:132
762
  msgid "GeoIP collection is disabled due to the following reasons:"
763
  msgstr "کۆی GeoIP بەهۆکاری خوارەوە ناچالاک بووە"
764
 
765
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:135
766
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
767
  msgstr "کۆی GeoIP به PHP وەشانی%s یان سەرترەوە پێویستی هەیە، لە ئێستا بە هۆی کەم بوونی وەشانی PHPئێوە ناچالاکە."
768
 
769
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:140
770
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
771
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
772
 
773
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:146
774
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
775
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
776
 
777
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:152
778
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
779
  msgstr "شێوازی پاراستنی PHP نەدۆزراوە! کۆیGeoIP لەلایەن شیوازی پاراستنی PHP پاڵپشتی نابێت!"
780
 
781
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
782
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
783
  msgstr "ئەم کردارە داتا کۆنەکان بۆ هەمیشە دەسڕێتەوە. بۆ چالاککردنی دەڵنیای؟"
784
 
785
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
786
  msgid "Days"
787
  msgstr "ڕۆژ"
788
 
789
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
790
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
791
  msgstr "ژمارەی ڕۆژەکان بۆ هێشتنەوەی ئامار. کەمترین ژمارە ٣٠ ڕۆژە.ڕۆژانە ژمارەی نادرووست ناچالاک دکرێتەوە."
792
 
793
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:44
794
  msgid "Common Report Options"
795
  msgstr "ڕێکخستنی گوزارشی گشتی"
796
 
797
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:49
798
  msgid "E-mail addresses"
799
  msgstr "ناونیشانەکانی ئیمەیل"
800
 
801
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:54
802
  msgid "A comma separated list of e-mail addresses to send reports to."
803
  msgstr "بۆ وەرگرتنی ئیمەیلی گوزارش،ناونیشانی ئیمەیلەکان بە کۆما جودابکەنەوە."
804
 
805
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:59
806
  msgid "Update Reports"
807
  msgstr "بەڕۆژکردنی گوزارشەکان"
808
 
809
+ #: wp-statistics/includes/log/exclusions.php:24
810
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:64
811
  msgid "Browscap"
812
  msgstr "Browscap"
813
 
814
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:70
815
  msgid "Send a report whenever the browscap.ini is updated."
816
  msgstr "ناردنی گوزارش کاتێک browscap.ini بەڕۆژ دەبێت"
817
 
818
+ #: wp-statistics/includes/log/exclusions.php:24
819
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:76
820
  msgid "GeoIP"
821
  msgstr "GeoIP"
822
 
823
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:82
824
  msgid "Send a report whenever the GeoIP database is updated."
825
  msgstr "ناردنی گوزارش کاتێک GeoIP بەڕۆژ دەبێت"
826
 
827
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:88
828
  msgid "Pruning"
829
  msgstr "سڕینەوە"
830
 
831
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:94
832
  msgid "Send a report whenever the pruning of database is run."
833
  msgstr "ناردنی گوزارش کاتێک بنکەی دراوە بەڕۆژ دەبێت"
834
 
835
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:100
836
  msgid "Upgrade"
837
  msgstr "بەڕۆژبوون"
838
 
839
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:106
840
  msgid "Send a report whenever the plugin is upgraded."
841
  msgstr "سڕینەوە"
842
 
843
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:111
844
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:116
845
+ #: wp-statistics/schedule.php:221
846
  msgid "Statistical reporting"
847
  msgstr "گوزارشی ئاماری"
848
 
849
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:129
850
  msgid "Schedule"
851
  msgstr "کات دیاریکردن"
852
 
853
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:153
854
  msgid "Select how often to receive statistical report."
855
  msgstr "چۆنیەتی وەرگرتنی گوزارشی ئامار هەلبژێرە"
856
 
857
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:159
858
  msgid "Send reports via"
859
  msgstr "ناردنی گوزارش لە رێگای"
860
 
861
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:165
862
  msgid "Email"
863
  msgstr "ئیمەیل"
864
 
865
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:167
866
  msgid "SMS"
867
  msgstr "کۆرتە پەیام"
868
 
869
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:170
870
  msgid "Select delivery method for statistical report."
871
  msgstr "شێوازی وەرگرتنی گوزارشی ئاماری هەڵبژێرە"
872
 
873
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
874
  msgid "Note: To send SMS text messages please install the %s plugin."
875
  msgstr "خاڵ: بۆناردنی کورتە پەیام تکایە زیادکراوەی %s دامەرزێنە."
876
 
877
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
878
  msgid "WordPress SMS"
879
  msgstr "کورتەپەیامی وۆردپرێس"
880
 
881
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:180
882
  msgid "Report body"
883
  msgstr "ناوەرۆکی دەقی گوزارش"
884
 
885
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:185
886
  msgid "Enter the contents of the report."
887
  msgstr "ناوەرۆکی گوزارش بنووسە"
888
 
889
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:187
890
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
891
  msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
892
 
893
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:188
894
+ #: wp-statistics/widget.php:38 wp-statistics/widget.php:247
895
+ #: wp-statistics/wp-statistics.php:621
896
  msgid "User Online"
897
  msgstr "بەکارهینەری سەرهێڵ"
898
 
899
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:189
900
+ #: wp-statistics/widget.php:52 wp-statistics/widget.php:253
901
  msgid "Today Visitor"
902
  msgstr "میوانی ئەمڕۆ"
903
 
904
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:190
905
+ #: wp-statistics/widget.php:45 wp-statistics/widget.php:250
906
  msgid "Today Visit"
907
  msgstr "سەردانی ئەمڕۆ"
908
 
909
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:191
910
+ #: wp-statistics/widget.php:66 wp-statistics/widget.php:259
911
  msgid "Yesterday Visitor"
912
  msgstr "میوانی دوێنێ"
913
 
914
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:192
915
+ #: wp-statistics/widget.php:59
916
  msgid "Yesterday Visit"
917
  msgstr "سەردانی دوێنێ"
918
 
919
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:193
920
+ #: wp-statistics/widget.php:101 wp-statistics/widget.php:274
921
  msgid "Total Visitor"
922
  msgstr "کۆی میوانەکان"
923
 
924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:194
925
+ #: wp-statistics/widget.php:94 wp-statistics/widget.php:271
926
  msgid "Total Visit"
927
  msgstr "کۆی سەردانەکان"
928
 
929
+ #: wp-statistics/shortcode.php:175
930
  msgid "None"
931
  msgstr "هیچ"
932
 
933
+ #: wp-statistics/includes/settings/wps-settings.php:108
934
  msgid "About"
935
  msgstr "دەربارە"
936
 
937
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
938
  msgid "Dashboard"
939
  msgstr "داشبۆرد"
940
 
941
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
942
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
943
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
944
  msgid "The following items are global to all users."
945
  msgstr "بەڕگەکانی خوارەوە جیهانین بۆ تەواو بەکارهینەران"
946
 
947
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
948
  msgid "Disable dashboard widgets"
949
  msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
950
 
951
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
952
  msgid "Disable the dashboard widgets."
953
  msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
954
 
955
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
956
  msgid "Page/Post Editor"
957
  msgstr "دەستکاری پەڕەو/نوسراوە"
958
 
959
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
960
  msgid "Disable post/page editor widget"
961
  msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
962
 
963
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
964
  msgid "Disable the page/post editor widget."
965
  msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
966
 
967
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
968
  msgid "Map type"
969
  msgstr "جۆری نەخشە"
970
 
971
+ #: wp-statistics/includes/functions/functions.php:440
972
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
973
  msgid "Google"
974
  msgstr "گووگڵ"
975
 
976
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
977
  msgid "JQVMap"
978
  msgstr "نەخشەیJQV"
979
 
980
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
981
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
982
  msgstr "هەلبژاردەی \"گوگڵ\" بۆخزمەتگوزاری نەخشەی گوگڵ بۆ دوایین سەردانەکان بەهرە وەردەگرێت. (پێویستی بە دەستپێگەیشتنی گووگڵە)."
983
 
984
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
985
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
986
  msgstr "هەڵبژاردەی \"JQVMap\" لە کتێبخانەی جاڤاسکریپت JQVMap بۆ دوایین سەردانەەکان کەڵک وەردەگرێت. (پێویستی بە خزمەتگوزاری دەرەوەی نابێت )."
987
 
988
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
989
  msgid "Disable map"
990
  msgstr "ناچالاککردنی نخشە"
991
 
992
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:95
993
  msgid "Disable the map display"
994
  msgstr "ناچالاککردنی نیشاندانی نەخشە"
995
 
996
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:101
997
  msgid "Get country location from Google"
998
  msgstr "وەرگرتنی شوێنی وەڵات لە گووگڵ"
999
 
1000
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:107
1001
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
1002
  msgstr "ئەم تایبەتمەندیە لەوانەیە نیشاندانی ئاماری بە هێواشی ئەنجام بدات .تەنها بۆ جۆری نەخشەی گووگڵ ڕێکخراوە."
1003
 
1004
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:15
1005
  msgid "WP Statisitcs Removal"
1006
  msgstr "سڕینەوەی زیادکراوەی ئامار"
1007
 
1008
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:20
1009
  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."
1010
  msgstr "سڕینەوەی زیادکراوەی ئاماری وۆردپرێس،سڕینەوەی ڕیکخستنەکانی زیادکراوەی نییە.ئەم هەڵبژاردە دەتوانن تەواوی زانیاری(خشت و داتا)ی زیادکراوە بسڕنەوە."
1011
 
1012
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:23
1013
  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."
1014
  msgstr "پاکسازی لە کاتی بارکردنی پەڕە پاس بارێک لە تۆمارکردنی ڕێکخستنەکان ئەنجام دەبێت.بەڵام زیادکراوەی ئاماری وۆردپرێس لە پێرستی بەڕێوەبەر تاکاتێک بەشەکانی دیکەی پەڕە هەڵگرسابێت نیشان دەدرێت."
1015
 
1016
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:29
1017
  msgid "Remove data and settings"
1018
  msgstr "سڕینەوە داتاو ڕێکخستنەکان"
1019
 
1020
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:34
1021
  msgid "Remove"
1022
  msgstr "سڕینەوە"
1023
 
1024
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:35
1025
  msgid "Remove data and settings, this action cannot be undone."
1026
  msgstr "سڕینەوە داتاو ڕێکخستنەکان .ئەم کردارە ناگەرێتەوە."
1027
 
1028
+ #: wp-statistics/includes/settings/wps-settings.php:100
1029
  msgid "General"
1030
  msgstr "گشتی"
1031
 
1032
+ #: wp-statistics/includes/settings/wps-settings.php:101
1033
  msgid "Notifications"
1034
  msgstr "ئاگادارییەکان"
1035
 
1036
+ #: wp-statistics/includes/settings/wps-settings.php:102
1037
  msgid "Dashboard/Overview"
1038
  msgstr "داشبۆرد/لەچاوپێکەوتنێک"
1039
 
1040
+ #: wp-statistics/includes/settings/wps-settings.php:106
1041
  msgid "Maintenance"
1042
  msgstr "پاراستن/چاککردن"
1043
 
1044
+ #: wp-statistics/includes/settings/wps-settings.php:107
1045
  msgid "Removal"
1046
  msgstr "سڕینەوە"
1047
 
1048
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:85
1049
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
1050
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:286
1051
+ #: wp-statistics/includes/settings/tabs/wps-general.php:349
1052
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
1053
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:201
1054
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:116
1055
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:42
1056
  msgid "Update"
1057
  msgstr "بەڕۆژکردن"
1058
 
1059
+ #: wp-statistics/schedule.php:10
1060
  msgid "Once Weekly"
1061
  msgstr "جارێک لە هەفتە"
1062
 
1063
+ #: wp-statistics/schedule.php:17
1064
  msgid "Once Every 2 Weeks"
1065
  msgstr "هەر ٢ هەفتە"
1066
 
1067
+ #: wp-statistics/schedule.php:24
1068
  msgid "Once Every 4 Weeks"
1069
  msgstr "هەر ٤ هەفتە"
1070
 
1071
+ #: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
1072
+ #: wp-statistics/wp-statistics.php:469
1073
  msgid "Statistics"
1074
  msgstr "ئامار"
1075
 
1076
+ #: wp-statistics/widget.php:15
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "نیشاندانی ئاماری ماڵپەر لە (ئامرازی) لاتەنیشت"
1079
 
1080
+ #: wp-statistics/widget.php:73 wp-statistics/widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "سەردانی هەفتە"
1083
 
1084
+ #: wp-statistics/widget.php:80 wp-statistics/widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "سەردانی مانگ"
1087
 
1088
+ #: wp-statistics/widget.php:87 wp-statistics/widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "سەردانی ساڵ"
1091
 
1092
+ #: wp-statistics/widget.php:108 wp-statistics/widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "کۆی گشتی سەردانی پەڕگە"
1095
 
1096
+ #: wp-statistics/widget.php:116
1097
  msgid "Search Engine referred"
1098
  msgstr "هاتن لە مەکینەی گەڕان"
1099
 
1100
+ #: wp-statistics/widget.php:123 wp-statistics/widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "کۆی نووسراوەکان"
1103
 
1104
+ #: wp-statistics/widget.php:130 wp-statistics/widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "کۆی پەڕەکان"
1107
 
1108
+ #: wp-statistics/widget.php:137 wp-statistics/widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "کۆی بۆچونەکان(لێدوانەکان)"
1111
 
1112
+ #: wp-statistics/widget.php:144 wp-statistics/widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "کۆی بێزارکەرەکان"
1115
 
1116
+ #: wp-statistics/widget.php:151 wp-statistics/widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "کۆی بەکارهێنەران"
1119
 
1120
+ #: wp-statistics/widget.php:158 wp-statistics/widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "مامناوەندی نووسراوەکان"
1123
 
1124
+ #: wp-statistics/widget.php:165 wp-statistics/widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "مامناوەندی بۆچوونەکان"
1127
 
1128
+ #: wp-statistics/widget.php:172 wp-statistics/widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "مامناوەندی بەکارهێنەران"
1131
 
1132
+ #: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
1133
+ #: wp-statistics/widget.php:324
1134
  msgid "Last Post Date"
1135
  msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
1136
 
1137
+ #: wp-statistics/widget.php:240
1138
  msgid "Name"
1139
  msgstr "ناو"
1140
 
1141
+ #: wp-statistics/widget.php:244
1142
  msgid "Items"
1143
  msgstr "بڕگە"
1144
 
1145
+ #: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:646
1146
  msgid "Yesterday visit"
1147
  msgstr "سەردانی دوێنێ"
1148
 
1149
+ #: wp-statistics/widget.php:280
1150
  msgid "Search Engine Referred"
1151
  msgstr "هاتن لە مەکینەی گەڕان"
1152
 
1153
+ #: wp-statistics/widget.php:283
1154
  msgid "Select type of search engine"
1155
  msgstr "هەڵبژاردنی جۆری مەکینەی گەڕان"
1156
 
1157
+ #: wp-statistics/wp-statistics.php:122
1158
  msgid "WP Statistics has been removed, please disable and delete it."
1159
  msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
1160
 
1161
+ #: wp-statistics/wp-statistics.php:54
 
1162
  msgid "WP Statistics"
1163
  msgstr "ئاماری وۆردپرێس"
1164
 
1165
+ #: wp-statistics/wp-statistics.php:55
 
1166
  msgid "Complete statistics for your WordPress site."
1167
  msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
1168
 
1169
+ #: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
1170
+ #: wp-statistics/wp-statistics.php:523
1171
  msgid "Settings"
1172
  msgstr "ڕیکخستن"
1173
 
1174
+ #: wp-statistics/wp-statistics.php:325
1175
  msgid "Click here to visit the plugin on WordPress.org"
1176
  msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
1177
 
1178
+ #: wp-statistics/wp-statistics.php:325
1179
  msgid "Visit WordPress.org page"
1180
  msgstr "دیتنی پەرەی WordPress.org"
1181
 
1182
+ #: wp-statistics/wp-statistics.php:328
1183
  msgid "Click here to rate and review this plugin on WordPress.org"
1184
  msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
1185
 
1186
+ #: wp-statistics/wp-statistics.php:328
1187
  msgid "Rate this plugin"
1188
  msgstr "پلەدانان بۆ ئەم زیادکراوە"
1189
 
1190
+ #: wp-statistics/wp-statistics.php:372
1191
  msgid "WP Statistics - Hits"
1192
  msgstr "ئاماری وۆردپرێس-سەردان"
1193
 
1194
+ #: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:472
1195
+ #: wp-statistics/wp-statistics.php:510
1196
  msgid "Overview"
1197
  msgstr "پیشاندانی گشتی"
1198
 
1199
+ #: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:515
1200
  msgid "Online"
1201
  msgstr "سەرهێڵ"
1202
 
1203
+ #: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:517
1204
  msgid "Referrers"
1205
  msgstr "هاتنەژوورەوەکان"
1206
 
1207
+ #: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
1208
+ #: wp-statistics/wp-statistics.php:518
1209
  msgid "Searches"
1210
  msgstr "گەرانەکان"
1211
 
1212
+ #: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:519
1213
  msgid "Search Words"
1214
  msgstr "گەرانی وەشەکان"
1215
 
1216
+ #: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:520
1217
  msgid "Top Visitors Today"
1218
  msgstr "بەرزترین میوانەکانی ئەمڕۆ"
1219
 
1220
+ #: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:522
1221
  msgid "Optimization"
1222
  msgstr "باشینەسازی)هەژیکردن)"
1223
 
1224
+ #: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:486
1225
  msgid "Manual"
1226
  msgstr "ڕێنمایی"
1227
 
1228
+ #: wp-statistics/wp-statistics.php:501
1229
  msgid "Site"
1230
  msgstr "مالپەڕ"
1231
 
1232
+ #: wp-statistics/wp-statistics.php:502
1233
  msgid "Options"
1234
  msgstr "ڕێکخستنه‌کان "
1235
 
1236
+ #: wp-statistics/wp-statistics.php:628
1237
  msgid "Today visitor"
1238
  msgstr "کۆی میوان"
1239
 
1240
+ #: wp-statistics/wp-statistics.php:634
1241
  msgid "Today visit"
1242
  msgstr "میوانی ئەمڕؤ"
1243
 
1244
+ #: wp-statistics/wp-statistics.php:640
1245
  msgid "Yesterday visitor"
1246
  msgstr "میوانی دوێنێ"
1247
 
1248
+ #: wp-statistics/wp-statistics.php:652
1249
  msgid "View Stats"
1250
  msgstr "نیشاندانی ئامار"
1251
 
1252
+ #: wp-statistics/wp-statistics.php:676
1253
  msgid "Download ODF file"
1254
  msgstr "داگرتنی پەڕگەی ODF"
1255
 
1256
+ #: wp-statistics/wp-statistics.php:677
1257
  msgid "Download HTML file"
1258
  msgstr "داگرتنی پەڕگەی HTML"
1259
 
1260
+ #: wp-statistics/wp-statistics.php:681
1261
  msgid "Manual file not found."
1262
  msgstr "ڕێنمایی پەیدا نەبوو"
1263
 
1264
+ #: wp-statistics/wp-statistics.php:748 wp-statistics/wp-statistics.php:880
1265
+ #: wp-statistics/wp-statistics.php:915
1266
  msgid "You do not have sufficient permissions to access this page."
1267
  msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
1268
 
1269
+ #: wp-statistics/wp-statistics.php:301
1270
  msgid "WP Statistics %s installed on"
1271
  msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
1272
 
1273
+ #: wp-statistics/wps-updates.php:54
1274
  msgid "Error downloading GeoIP database from: %s - %s"
1275
  msgstr "هەڵەی داگرتنی بنکەدراوەی GeoIP لە %s: - %s"
1276
 
1277
+ #: wp-statistics/wps-updates.php:65
1278
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1279
  msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIPبۆ خوێندن %s"
1280
 
1281
+ #: wp-statistics/wps-updates.php:72
1282
  msgid "Error could not open destination GeoIP database for writing %s"
1283
  msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIP بۆ نووسینی: %s"
1284
 
1285
+ #: wp-statistics/wps-updates.php:88
1286
  msgid "GeoIP Database updated successfully!"
1287
  msgstr "بنکەیدراوەی GeoIP بە سەرکەوتوویی بە ڕۆژ بوو"
1288
 
1289
+ #: wp-statistics/wps-updates.php:113
1290
  msgid "GeoIP update on"
1291
  msgstr "GeoIP بەڕۆژ بوو لە"
1292
 
1293
+ #: wp-statistics/wps-updates.php:180
1294
  msgid "Error downloading browscap database from: %s - %s"
1295
  msgstr "داگرتنی بنکەی دراوە لە browscapهەڵە لە: %s - %s"
1296
 
1297
+ #: wp-statistics/wps-updates.php:289
1298
  msgid "browscap database updated successfully!"
1299
  msgstr "browscap بنکەی بە سەرکەوتوویی بەڕۆژ بوو."
1300
 
1301
+ #: wp-statistics/wps-updates.php:299
1302
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1303
  msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! پەڕگەی باشکەوتکردن قەبارەی گەورەیە! بڕۆ بۆ browscap.ini پێشتر."
1304
 
1305
+ #: wp-statistics/wps-updates.php:307
1306
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1307
  msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! browscap.iniنوێ هەڵەیە identifing بریکاری بەکارهێنەر بەمانای وێبخشۆک بڕۆ بۆ browscap.ini پێشتر."
1308
 
1309
+ #: wp-statistics/wps-updates.php:329
1310
  msgid "browscap already at current version!"
1311
  msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
1312
 
1313
+ #: wp-statistics/wps-updates.php:342
1314
  msgid "Browscap.ini update on"
1315
  msgstr "Browscap.ini بەڕۆژکرا"
1316
 
1317
+ #: wp-statistics/dashboard.php:56
 
 
 
 
 
 
 
 
 
1318
  msgid "Quick Stats"
1319
  msgstr "ئاماری خێرا"
1320
 
1321
+ #: wp-statistics/dashboard.php:57
1322
+ #: wp-statistics/includes/log/widgets/browsers.php:41
1323
  msgid "Top 10 Browsers"
1324
  msgstr "١٠ وێبگەڕی لووتکە"
1325
 
1326
+ #: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:457
1327
  msgid "Top 10 Countries"
1328
  msgstr "١٠ وەڵاتی لووتکە"
1329
 
1330
+ #: wp-statistics/dashboard.php:59
1331
  msgid "Today's Visitor Map"
1332
  msgstr "میوانەکانی ئەمڕۆ"
1333
 
1334
+ #: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
1335
+ #: wp-statistics/includes/log/hit-statistics.php:8
1336
+ #: wp-statistics/wp-statistics.php:446
1337
  msgid "Hit Statistics"
1338
  msgstr "ئامری سەردان"
1339
 
1340
+ #: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:450
1341
  msgid "Top 10 Pages"
1342
  msgstr "بەرزترین ١٠ پەرە"
1343
 
1344
+ #: wp-statistics/dashboard.php:62
1345
+ #: wp-statistics/includes/log/last-visitor.php:36
1346
+ #: wp-statistics/wp-statistics.php:451
1347
  msgid "Recent Visitors"
1348
  msgstr "دوایین میوانەکان"
1349
 
1350
+ #: wp-statistics/dashboard.php:63
1351
+ #: wp-statistics/includes/log/top-referring.php:59
1352
+ #: wp-statistics/includes/log/top-referring.php:81
1353
+ #: wp-statistics/wp-statistics.php:456
1354
  msgid "Top Referring Sites"
1355
  msgstr "زۆرترین ماڵپەڕی هاتن"
1356
 
1357
+ #: wp-statistics/dashboard.php:64
1358
+ #: wp-statistics/includes/log/widgets/quickstats.php:75
1359
+ #: wp-statistics/includes/log/widgets/summary.php:75
1360
+ #: wp-statistics/wp-statistics.php:448
1361
  msgid "Search Engine Referrals"
1362
  msgstr "مەکینەی گەڕان هاتنەژوور"
1363
 
1364
+ #: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:454
1365
  msgid "Summary"
1366
  msgstr "کورتە"
1367
 
1368
+ #: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
1369
+ #: wp-statistics/wp-statistics.php:449
1370
  msgid "Latest Search Words"
1371
  msgstr "دوایین وەشەی گەڕان"
1372
 
1373
+ #: wp-statistics/dashboard.php:67
1374
  msgid "Top 10 Visitors Today"
1375
  msgstr "١٠ میوانی لوتکەی ئەمڕۆ"
1376
 
1377
+ #: wp-statistics/editor.php:58
1378
  msgid "This post is not yet published."
1379
  msgstr "ئەم نووسراوە هێشتا بڵاو نەکراوەتەوە"
1380
 
1381
+ #: wp-statistics/includes/functions/geoip-populate.php:24
1382
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1383
  msgstr "توانایی گەڕانەوەی بنکەدراوەی GeoIP نییە، دەڵنیا بە لە پەرگەی ڕێکخستنەکان وەردەگیرێت."
1384
 
1385
+ #: wp-statistics/includes/functions/geoip-populate.php:48
1386
  msgid "Updated %s GeoIP records in the visitors database."
1387
  msgstr "%s ڕیکۆردی GeoIP لە بنکەی دراوە بەڕۆژ بوو."
1388
 
1389
+ #: wp-statistics/includes/functions/purge.php:21
1390
+ #: wp-statistics/includes/functions/purge.php:39
1391
+ #: wp-statistics/includes/functions/purge.php:50
1392
+ #: wp-statistics/includes/functions/purge.php:61
1393
+ #: wp-statistics/includes/functions/purge.php:94
1394
  msgid "%s data older than %s days purged successfully."
1395
  msgstr "%s داتای کۆنەتر لە ڕۆژی %s بە سەرکەوتوویی پاکسازی بوو."
1396
 
1397
+ #: wp-statistics/includes/functions/purge.php:23
1398
+ #: wp-statistics/includes/functions/purge.php:41
1399
+ #: wp-statistics/includes/functions/purge.php:52
1400
+ #: wp-statistics/includes/functions/purge.php:63
1401
+ #: wp-statistics/includes/functions/purge.php:96
1402
  msgid "No records found to purge from %s!"
1403
  msgstr " هیچ ریکۆردێک پەیدانەبوو بۆ %s! پاکسازی"
1404
 
1405
+ #: wp-statistics/includes/functions/purge-hits.php:45
1406
+ #: wp-statistics/includes/functions/purge.php:109
1407
  msgid "Database pruned on"
1408
  msgstr "بنکەی دراوە پاکسازی لە"
1409
 
1410
+ #: wp-statistics/includes/functions/purge.php:114
1411
  msgid "Please select a value over 30 days."
1412
  msgstr "تکایە زۆرتر لە ٣٠ ڕۆژ هەڵبژێرن"
1413
 
1414
+ #: wp-statistics/includes/log/all-browsers.php:21
1415
  msgid "Browser Statistics"
1416
  msgstr "ئاماری وێبگەرەکان"
1417
 
1418
+ #: wp-statistics/includes/log/all-browsers.php:29
1419
+ #: wp-statistics/includes/log/all-browsers.php:113
1420
+ #: wp-statistics/includes/log/all-browsers.php:248
1421
+ #: wp-statistics/includes/log/exclusions.php:72
1422
+ #: wp-statistics/includes/log/exclusions.php:190
1423
+ #: wp-statistics/includes/log/hit-statistics.php:26
1424
+ #: wp-statistics/includes/log/hit-statistics.php:163
1425
+ #: wp-statistics/includes/log/last-search.php:64
1426
+ #: wp-statistics/includes/log/last-visitor.php:67
1427
+ #: wp-statistics/includes/log/online.php:17
1428
+ #: wp-statistics/includes/log/page-statistics.php:34
1429
+ #: wp-statistics/includes/log/search-statistics.php:27
1430
+ #: wp-statistics/includes/log/top-countries.php:26
1431
+ #: wp-statistics/includes/log/top-pages.php:29
1432
+ #: wp-statistics/includes/log/top-pages.php:155
1433
+ #: wp-statistics/includes/log/top-referring.php:77
1434
+ #: wp-statistics/includes/log/top-visitors.php:40
1435
  msgid "Click to toggle"
1436
  msgstr "بۆ بەستن و داخستن کرتە بکە"
1437
 
1438
+ #: wp-statistics/includes/log/all-browsers.php:30
1439
+ #: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:455
1440
+ #: wp-statistics/wp-statistics.php:511
1441
  msgid "Browsers"
1442
  msgstr "وێبگەڕەکان"
1443
 
1444
+ #: wp-statistics/includes/log/all-browsers.php:57
1445
  msgid "Browsers by type"
1446
  msgstr "وێبگڕەکان لە سەر بنەمای جۆری"
1447
 
1448
+ #: wp-statistics/includes/log/all-browsers.php:114
1449
+ #: wp-statistics/includes/log/widgets/top.visitors.php:18
1450
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1451
  msgid "Platform"
1452
  msgstr "سەکۆ"
1453
 
1454
+ #: wp-statistics/includes/log/all-browsers.php:141
1455
  msgid "Browsers by platform"
1456
  msgstr "وێبگەڕەکان لە سەر بنەمای سەکۆ"
1457
 
1458
+ #: wp-statistics/includes/log/all-browsers.php:249
1459
  msgid "%s Version"
1460
  msgstr "%s وەشان"
1461
 
1462
+ #: wp-statistics/includes/log/exclusions.php:8
1463
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1464
  msgstr "خاڵ: تائێستا جیاکاری بۆ ریکۆردەکان جیاکاری نەکراوە. ئاکامەکانی خوارەوە لەوانەیە ئاماری کۆتایی ڕەنگدانەوەی نەکات."
1465
 
1466
+ #: wp-statistics/includes/log/exclusions.php:64
1467
  msgid "Exclusions Statistics"
1468
  msgstr "ئاماری جیاکاریەکان"
1469
 
1470
+ #: wp-statistics/includes/functions/functions.php:970
1471
  msgid "10 Days"
1472
  msgstr "١٠ ڕۆژی ڕابردوو"
1473
 
1474
+ #: wp-statistics/includes/functions/functions.php:970
1475
  msgid "20 Days"
1476
  msgstr "٢٠ ڕۆژی ڕابردوو"
1477
 
1478
+ #: wp-statistics/includes/functions/functions.php:970
1479
  msgid "30 Days"
1480
  msgstr "٣٠ ڕۆژی ڕابردوو"
1481
 
1482
+ #: wp-statistics/includes/functions/functions.php:970
1483
  msgid "2 Months"
1484
  msgstr "٢ مانگی ڕابردوو"
1485
 
1486
+ #: wp-statistics/includes/functions/functions.php:970
1487
  msgid "3 Months"
1488
  msgstr "٣ مانگی ڕابردوو"
1489
 
1490
+ #: wp-statistics/includes/functions/functions.php:970
1491
  msgid "6 Months"
1492
  msgstr "٦مانگی ڕابردوو"
1493
 
1494
+ #: wp-statistics/includes/functions/functions.php:970
1495
  msgid "9 Months"
1496
  msgstr "٩ مانگی ڕابردوو"
1497
 
1498
+ #: wp-statistics/includes/functions/functions.php:970
1499
  msgid "1 Year"
1500
  msgstr "١ ساڵی ڕابردوو"
1501
 
1502
+ #: wp-statistics/includes/log/exclusions.php:73
1503
  msgid "Exclusions Statistical Chart"
1504
  msgstr "هێڵکاری ئاماری جیاکراوەکان"
1505
 
1506
+ #: wp-statistics/includes/log/exclusions.php:95
1507
  msgid "Excluded hits in the last"
1508
  msgstr "سەردانی دوایین جیاکردنەوە"
1509
 
1510
+ #: wp-statistics/includes/log/exclusions.php:95
1511
+ #: wp-statistics/includes/log/hit-statistics.php:66
1512
+ #: wp-statistics/includes/log/search-statistics.php:69
1513
+ #: wp-statistics/includes/log/widgets/hits.php:42
1514
+ #: wp-statistics/includes/log/widgets/search.php:42
1515
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
1516
  msgid "days"
1517
  msgstr "ڕۆژی ڕابردوو"
1518
 
1519
+ #: wp-statistics/includes/log/exclusions.php:116
1520
  msgid "Number of excluded hits"
1521
  msgstr "ژمارەی سەردانی جیاکاری"
1522
 
1523
+ #: wp-statistics/includes/log/hit-statistics.php:27
1524
  msgid "Hits Statistics Chart"
1525
  msgstr "هێڵکاری ئاماری سەردانەکان"
1526
 
1527
+ #: wp-statistics/includes/log/hit-statistics.php:66
1528
+ #: wp-statistics/includes/log/widgets/hits.php:42
1529
  msgid "Hits in the last"
1530
  msgstr "دوایین سەردانەکان لە"
1531
 
1532
+ #: wp-statistics/includes/log/hit-statistics.php:87
1533
+ #: wp-statistics/includes/log/widgets/hits.php:63
1534
  msgid "Number of visits and visitors"
1535
  msgstr "ژمارەی سەردان و میوانەکان"
1536
 
1537
+ #: wp-statistics/includes/log/hit-statistics.php:101
1538
+ #: wp-statistics/includes/log/hit-statistics.php:170
1539
+ #: wp-statistics/includes/log/widgets/hits.php:77
1540
+ #: wp-statistics/includes/log/widgets/quickstats.php:24
1541
+ #: wp-statistics/includes/log/widgets/summary.php:24
1542
  msgid "Visit"
1543
  msgstr "سەردان"
1544
 
1545
+ #: wp-statistics/includes/log/hit-statistics.php:101
1546
+ #: wp-statistics/includes/log/hit-statistics.php:171
1547
+ #: wp-statistics/includes/log/widgets/hits.php:77
1548
+ #: wp-statistics/includes/log/widgets/quickstats.php:23
1549
+ #: wp-statistics/includes/log/widgets/summary.php:23
1550
  msgid "Visitor"
1551
  msgstr "میوان"
1552
 
1553
+ #: wp-statistics/includes/log/last-search.php:65
1554
  msgid "Latest Search Word Statistics"
1555
  msgstr "دوایین ئاماری گەڕانی وشە"
1556
 
1557
+ #: wp-statistics/includes/log/last-search.php:110
1558
+ #: wp-statistics/includes/log/last-visitor.php:101
1559
+ #: wp-statistics/includes/log/online.php:50
1560
+ #: wp-statistics/includes/log/widgets/google.map.php:60
1561
+ #: wp-statistics/includes/log/widgets/jqv.map.php:55
1562
+ #: wp-statistics/includes/log/widgets/recent.php:14
1563
+ #: wp-statistics/includes/log/widgets/words.php:27
1564
  msgid "#hash#"
1565
  msgstr "#hash#"
1566
 
1567
+ #: wp-statistics/includes/log/last-search.php:115
1568
+ #: wp-statistics/includes/log/last-visitor.php:106
1569
+ #: wp-statistics/includes/log/online.php:55
1570
+ #: wp-statistics/includes/log/top-referring.php:112
1571
+ #: wp-statistics/includes/log/widgets/recent.php:19
1572
+ #: wp-statistics/includes/log/widgets/words.php:42
1573
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
1574
  msgid "Map"
1575
  msgstr "نەخشە"
1576
 
1577
+ #: wp-statistics/includes/log/last-search.php:159
1578
+ #: wp-statistics/includes/log/last-visitor.php:139
1579
+ #: wp-statistics/includes/log/online.php:109
1580
+ #: wp-statistics/includes/log/top-pages.php:205
1581
+ #: wp-statistics/includes/log/top-referring.php:153
1582
  msgid "Page"
1583
  msgstr "پەڕە"
1584
 
1585
+ #: wp-statistics/includes/log/last-search.php:159
1586
+ #: wp-statistics/includes/log/last-visitor.php:139
1587
+ #: wp-statistics/includes/log/online.php:109
1588
+ #: wp-statistics/includes/log/top-pages.php:205
1589
+ #: wp-statistics/includes/log/top-referring.php:153
1590
  msgid "From"
1591
  msgstr "لە"
1592
 
1593
+ #: wp-statistics/includes/log/last-search.php:47
1594
+ #: wp-statistics/includes/log/last-visitor.php:38
1595
+ #: wp-statistics/includes/log/top-referring.php:67
1596
+ #: wp-statistics/includes/log/top-referring.php:70
1597
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
1598
+ #: wp-statistics/widget.php:296
1599
  msgid "All"
1600
  msgstr "گشتی"
1601
 
1602
+ #: wp-statistics/includes/log/last-visitor.php:68
1603
  msgid "Recent Visitor Statistics"
1604
  msgstr "دوایین ئاماری میوان"
1605
 
1606
+ #: wp-statistics/includes/log/online.php:11
1607
+ #: wp-statistics/includes/log/online.php:18
1608
  msgid "Online Users"
1609
  msgstr "بەکار‌هێنەرانی سەرهێڵ"
1610
 
1611
+ #: wp-statistics/includes/log/online.php:75
1612
  msgid "Online for "
1613
  msgstr "سەرهێڵ بۆ"
1614
 
1615
+ #: wp-statistics/includes/log/page-statistics.php:26
1616
  msgid "Page Trend for Post ID"
1617
  msgstr "پەرە بۆ جووڵانەوە شناسنامەی نووسراوە"
1618
 
1619
+ #: wp-statistics/includes/log/page-statistics.php:35
1620
  msgid "Page Trend"
1621
  msgstr "جووڵانەوە پەرە"
1622
 
1623
+ #: wp-statistics/includes/log/search-statistics.php:19
1624
+ #: wp-statistics/includes/log/search-statistics.php:28
1625
  msgid "Search Engine Referral Statistics"
1626
  msgstr "ئاماری هاتنەوە لە مەکەینەی گەڕان"
1627
 
1628
+ #: wp-statistics/includes/log/search-statistics.php:69
1629
+ #: wp-statistics/includes/log/widgets/search.php:42
1630
  msgid "Search engine referrals in the last"
1631
  msgstr "دوایین هاتنەکان لە مەکەینەی گەڕان"
1632
 
1633
+ #: wp-statistics/includes/log/search-statistics.php:90
1634
+ #: wp-statistics/includes/log/widgets/search.php:63
1635
  msgid "Number of referrals"
1636
  msgstr "ژمارەی هاتنەکان"
1637
 
1638
+ #: wp-statistics/includes/log/exclusions.php:24
1639
+ #: wp-statistics/includes/log/search-statistics.php:104
1640
+ #: wp-statistics/includes/log/widgets/quickstats.php:58
1641
+ #: wp-statistics/includes/log/widgets/quickstats.php:105
1642
+ #: wp-statistics/includes/log/widgets/search.php:77
1643
+ #: wp-statistics/includes/log/widgets/summary.php:58
1644
+ #: wp-statistics/includes/log/widgets/summary.php:105
1645
  msgid "Total"
1646
  msgstr "کۆ"
1647
 
1648
+ #: wp-statistics/includes/log/top-countries.php:18
1649
+ #: wp-statistics/includes/log/top-countries.php:27
1650
  msgid "Top Countries"
1651
  msgstr "لوتکەی وەڵاتەکان"
1652
 
1653
+ #: wp-statistics/includes/log/top-countries.php:31
1654
+ #: wp-statistics/includes/log/widgets/countries.php:9
1655
+ #: wp-statistics/includes/log/widgets/top.visitors.php:11
1656
  msgid "Rank"
1657
  msgstr "پلە"
1658
 
1659
+ #: wp-statistics/includes/log/top-countries.php:32
1660
+ #: wp-statistics/includes/log/widgets/countries.php:10
1661
+ #: wp-statistics/includes/log/widgets/top.visitors.php:13
1662
  msgid "Flag"
1663
  msgstr "ئاڵا"
1664
 
1665
+ #: wp-statistics/includes/log/top-countries.php:33
1666
+ #: wp-statistics/includes/log/widgets/countries.php:11
1667
+ #: wp-statistics/includes/log/widgets/top.visitors.php:14
1668
  msgid "Country"
1669
  msgstr "وەڵات"
1670
 
1671
+ #: wp-statistics/includes/log/top-countries.php:34
1672
+ #: wp-statistics/includes/log/widgets/countries.php:12
1673
  msgid "Visitor Count"
1674
  msgstr "ژمارەی میوان"
1675
 
1676
+ #: wp-statistics/includes/log/top-pages.php:20
1677
+ #: wp-statistics/includes/log/top-pages.php:156
1678
  msgid "Top Pages"
1679
  msgstr "پەڕەکانی لووتکە"
1680
 
1681
+ #: wp-statistics/includes/log/top-pages.php:30
1682
  msgid "Top 5 Pages Trends"
1683
  msgstr "لوتکەی ٥ پەرە"
1684
 
1685
+ #: wp-statistics/includes/log/top-pages.php:67
1686
  msgid "Top 5 Page Trending Stats"
1687
  msgstr "لوتکەی باشترینی ٥ پەڕە"
1688
 
1689
+ #: wp-statistics/includes/log/top-pages.php:88
1690
+ #: wp-statistics/includes/log/widgets/page.php:63
1691
  msgid "Number of Hits"
1692
  msgstr "ژمارەی سەردان"
1693
 
1694
+ #: wp-statistics/includes/log/top-pages.php:184
1695
+ #: wp-statistics/includes/log/widgets/pages.php:13
1696
  msgid "No page title found"
1697
  msgstr "سەردێڕی پەرە پەیدا نەبوو"
1698
 
1699
+ #: wp-statistics/includes/log/top-pages.php:187
1700
+ #: wp-statistics/includes/log/widgets/pages.php:16
1701
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
1702
+ #: wp-statistics/includes/settings/tabs/wps-general.php:122
1703
+ #: wp-statistics/includes/settings/tabs/wps-general.php:127
1704
+ #: wp-statistics/shortcode.php:139
1705
  msgid "Visits"
1706
  msgstr "سەردانەکان"
1707
 
1708
+ #: wp-statistics/includes/log/top-referring.php:4
1709
  msgid "To be added soon"
1710
  msgstr "بە خێرایی زیاد دەبێت"
1711
 
1712
+ #: wp-statistics/includes/log/top-referring.php:79
1713
  msgid "Referring sites from"
1714
  msgstr "ماڵپەرەکانی هاتن لە"
1715
 
1716
+ #: wp-statistics/includes/log/top-referring.php:137
1717
+ #: wp-statistics/includes/log/widgets/referring.php:35
1718
  msgid "References"
1719
  msgstr "سەرچاوە"
1720
 
1721
+ #: wp-statistics/includes/log/top-visitors.php:12
1722
  msgid "Top 100 Visitors Today"
1723
  msgstr "لوتکەی ١٠٠ میوانی ئەمڕۆ"
1724
 
1725
+ #: wp-statistics/includes/log/log.php:17
1726
  msgid "About WP Statistics Version %s"
1727
  msgstr "دەربارەی زیاد کراوەی ئاماری وۆردپرێس،وەشانی %s"
1728
 
1729
+ #: wp-statistics/includes/log/widgets/about.php:11
1730
  msgid "Website"
1731
  msgstr "ماڵپەڕەکان"
1732
 
1733
+ #: wp-statistics/includes/log/widgets/about.php:12
1734
  msgid "Rate and Review"
1735
  msgstr "پلەدانان و پێداچوونەوە"
1736
 
1737
+ #: wp-statistics/includes/log/widgets/about.php:16
1738
  msgid "More Information"
1739
  msgstr "زانیاری زۆرتر"
1740
 
1741
+ #: wp-statistics/includes/log/widgets/about.php:25
1742
+ #: wp-statistics/includes/settings/tabs/wps-about.php:12
1743
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1744
  msgstr "ائەم بەرهەمە بریتیە لە داتا GeoLite2 ە کە لەلایەن MaxMind،درووستبووە وە لە %s توانایی دەستپێگەیشتنت هەیە."
1745
 
1746
+ #: wp-statistics/includes/log/widgets/browsers.php:34
1747
  msgid "Other"
1748
  msgstr "ئەوی "
1749
 
1750
+ #: wp-statistics/wp-statistics.php:445
1751
  msgid "Today Visitors Map"
1752
  msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
1753
 
1754
+ #: wp-statistics/includes/log/widgets/referring.php:36
1755
  msgid "Address"
1756
  msgstr "ناونیشان"
1757
 
1758
+ #: wp-statistics/includes/log/widgets/quickstats.php:12
1759
+ #: wp-statistics/includes/log/widgets/summary.php:12
1760
  msgid "User(s) Online"
1761
  msgstr "بەکارهێنەر(ەکان) سەرهێڵ"
1762
 
1763
+ #: wp-statistics/includes/log/widgets/quickstats.php:28
1764
+ #: wp-statistics/includes/log/widgets/quickstats.php:80
1765
+ #: wp-statistics/includes/log/widgets/summary.php:28
1766
+ #: wp-statistics/includes/log/widgets/summary.php:80
1767
  msgid "Today"
1768
  msgstr "ئەمڕۆ"
1769
 
1770
+ #: wp-statistics/includes/log/widgets/quickstats.php:34
1771
+ #: wp-statistics/includes/log/widgets/quickstats.php:81
1772
+ #: wp-statistics/includes/log/widgets/summary.php:34
1773
+ #: wp-statistics/includes/log/widgets/summary.php:81
1774
  msgid "Yesterday"
1775
  msgstr "دوێنێ"
1776
 
1777
+ #: wp-statistics/includes/log/widgets/quickstats.php:99
1778
+ #: wp-statistics/includes/log/widgets/summary.php:99
1779
  msgid "Daily Total"
1780
  msgstr "کۆی ئەمڕۆ"
1781
 
1782
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1783
+ #: wp-statistics/includes/log/widgets/summary.php:118
1784
  msgid "Current Time and Date"
1785
  msgstr "کات و رێکەوتی ئەمڕۆ"
1786
 
1787
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1788
+ #: wp-statistics/includes/log/widgets/summary.php:118
1789
  msgid "(Adjustment)"
1790
  msgstr "(ڕێکخستن)"
1791
 
1792
+ #: wp-statistics/includes/log/widgets/quickstats.php:122
1793
+ #: wp-statistics/includes/log/widgets/summary.php:122
1794
  msgid "Date: %s"
1795
  msgstr "رێکەوت: %s"
1796
 
1797
+ #: wp-statistics/includes/log/widgets/quickstats.php:126
1798
+ #: wp-statistics/includes/log/widgets/summary.php:126
1799
  msgid "Time: %s"
1800
  msgstr "کات: %s"
1801
 
1802
+ #: wp-statistics/includes/log/widgets/top.visitors.php:12
1803
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
1804
+ #: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
1805
+ #: wp-statistics/wp-statistics.php:514
1806
  msgid "Hits"
1807
  msgstr "سەردانەکان"
1808
 
1809
+ #: wp-statistics/includes/log/widgets/top.visitors.php:15
1810
  msgid "IP"
1811
  msgstr "IP"
1812
 
1813
+ #: wp-statistics/includes/log/widgets/top.visitors.php:17
1814
  msgid "Agent"
1815
  msgstr "بریکار"
1816
 
1817
+ #: wp-statistics/includes/log/widgets/top.visitors.php:19
1818
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1819
  msgid "Version"
1820
  msgstr "وەشان"
1821
 
1822
+ #: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
1823
+ #: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
1824
+ #: wp-statistics/ajax.php:184 wp-statistics/ajax.php:302
1825
+ #: wp-statistics/includes/optimization/wps-optimization.php:6
1826
  msgid "Access denied!"
1827
  msgstr "دەستپێگەیشتنی بێمۆڵەت"
1828
 
1829
+ #: wp-statistics/ajax.php:31
1830
  msgid "%s agent data deleted successfully."
1831
  msgstr "%s بریکاری داتا بە سەرکەوتوویی سڕایەوە."
1832
 
1833
+ #: wp-statistics/ajax.php:34
1834
  msgid "No agent data found to remove!"
1835
  msgstr "داتای وێبگەڕەکە بۆ سڕینەوە پەیدا نەبوو"
1836
 
1837
+ #: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
1838
+ #: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
1839
  msgid "Please select the desired items."
1840
  msgstr "تکایە بڕگەی داخوازی خوارەوە هەڵبژێرە."
1841
 
1842
+ #: wp-statistics/ajax.php:62
1843
  msgid "%s platform data deleted successfully."
1844
  msgstr "ازانیارەکانی سەکۆ %s بە سەرکەوتوویی سڕایەوە.."
1845
 
1846
+ #: wp-statistics/ajax.php:65
1847
  msgid "No platform data found to remove!"
1848
  msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
1849
 
1850
+ #: wp-statistics/includes/functions/functions.php:1074
1851
  msgid "%s table data deleted successfully."
1852
  msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
1853
 
1854
+ #: wp-statistics/includes/functions/functions.php:1078
1855
  msgid "Error, %s not emptied!"
1856
  msgstr "هەڵە! %s بەتاڵ نییە!"
1857
 
1858
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1859
  msgid "Database Setup"
1860
  msgstr "دامەزراندنی بنکە دراوە"
1861
 
1862
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1863
  msgid "Re-run Install"
1864
  msgstr "دامەزراندنی دوبار"
1865
 
1866
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1867
  msgid "Install Now!"
1868
  msgstr "دامەزراندن ئێستا"
1869
 
1870
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1871
  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."
1872
  msgstr "گەر بە هەر هۆکارێک دامەزراندنی زیادکراوەی ئاماری وۆردپرێس یان خشتەکان بنکە دراوە یان بڕگەکانی دیکەی ناوەڕۆک لەدەست چووە ئەم پرۆسە دامەزراندن دووپات دەکات"
1873
 
1874
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1875
  msgid "Database Index"
1876
  msgstr "پێنوێنی بنکەدراوە"
1877
 
1878
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1879
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1880
+ #: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:512
1881
  msgid "Countries"
1882
  msgstr "وەڵآتەکان"
1883
 
1884
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
1885
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
1886
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1887
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1888
  msgid "Update Now!"
1889
  msgstr "بەڕۆژکردن ئێستا"
1890
 
1891
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
1892
  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."
1893
  msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە.بۆ درووستکردنی پێرست لە وەشانی کۆنە سەرەتا دەبێت دتاکنا بسڕنەوە.بە کرتە لەسەر بەڕۆژ بوون سەرەتا خشتی میوانان چاودێری ئینجا داتای دووبارودووپات دەسڕنەوەو پێرست زیاد دەکەن."
1894
 
1895
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
1896
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
1897
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1898
  msgstr "ئەم هەڵبژاردە کاتیکی زۆر بۆ بۆ دامەزراندنی ژمارەی رێزەکان لەخشتی میوانەکان بەخۆیەوە ترخان دەکات."
1899
 
1900
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
1901
  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."
1902
  msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە."
1903
 
1904
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
1905
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
1906
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
1907
  msgid "Congratulations, your installation is already up to date, nothing to do."
1908
  msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
1909
 
1910
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
1911
+ #: wp-statistics/includes/optimization/wps-optimization.php:235
1912
  msgid "Export"
1913
  msgstr "هەناردەکردن"
1914
 
1915
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
1916
  msgid "Export from"
1917
  msgstr "هەناردن لە"
1918
 
1919
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
1920
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
1921
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
1922
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
1923
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
1924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:134
1925
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:164
1926
  msgid "Please select"
1927
  msgstr "تکایە هەڵبژێرە"
1928
 
1929
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
1930
  msgid "Select the table for the output file."
1931
  msgstr "خشتی داخواز بۆ چونەدەرەڤەی پەڕگە هەڵبژێرە"
1932
 
1933
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
1934
  msgid "Export To"
1935
  msgstr "ناردنەدەرەوە بۆ"
1936
 
1937
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
1938
  msgid "Select the output file type."
1939
  msgstr "جۆری چونەدەرەڤەی پەڕگە هەڵبژێرە"
1940
 
1941
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
1942
  msgid "Include Header Row"
1943
  msgstr "تایبەتبوونی سەردێری رێز"
1944
 
1945
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1946
  msgid "Include a header row as the first line of the exported file."
1947
  msgstr "بریتیە لە سەردێڕی رێز لە هێڵی یەکەمی پەڕگەی هەنارەکراوە."
1948
 
1949
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
1950
  msgid "Start Now!"
1951
  msgstr "دەستپێکە"
1952
 
1953
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1954
  msgid "Historical Values"
1955
  msgstr "ژمارەی مێژوویی"
1956
 
1957
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1958
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1959
  msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کرد بۆ نیشاندانی ژمارە بە تەنیایی دەبیت پەڕە نوێ بکەنەوە."
1960
 
1961
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1962
+ #: wp-statistics/includes/settings/tabs/wps-general.php:138
1963
+ #: wp-statistics/includes/settings/tabs/wps-general.php:143
1964
+ #: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
1965
+ #: wp-statistics/wp-statistics.php:521
1966
  msgid "Visitors"
1967
  msgstr "میوانەکان"
1968
 
1969
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1970
  msgid "Number of historical number of visitors to the site (current value is %s)."
1971
  msgstr "ژمارەی مێژووی میوانەکان (ژمارەی ئێستا %s یە)."
1972
 
1973
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1974
  msgid "Number of historical number of visits to the site (current value is %s)."
1975
  msgstr "ژمارەی مێژووی سەردانەکان (ژمارەی ئێستا %s یە)."
1976
 
1977
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1978
  msgid "Update now!"
1979
  msgstr "بەڕۆژکردن"
1980
 
1981
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1982
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
1983
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
1984
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
1985
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
1986
  msgid "Are you sure?"
1987
  msgstr "دەڵنیای ؟"
1988
 
1989
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
1990
  msgid "Data"
1991
  msgstr "رێکەوت"
1992
 
1993
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1994
  msgid "Empty Table"
1995
  msgstr "بەتاڵ بوونی خشت"
1996
 
1997
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
1998
  msgid "All data table will be lost."
1999
  msgstr "گشتی زانیاریەکانی خشت لەدەست دەچێت"
2000
 
2001
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
2002
  msgid "Clear now!"
2003
  msgstr "پاککردنەە"
2004
 
2005
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
2006
  msgid "Purge records older than"
2007
  msgstr "پاکسازی ریکۆردی کۆنەتر لە"
2008
 
2009
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
2010
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
2011
  msgstr "هەڵبژاردنی ڕۆژەکانی پێشتر بۆ سڕینەوەی داتاکانی بەکارهێنەر. کەمترین ژمارە ٣٠ رۆژ.."
2012
 
2013
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
2014
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
2015
  msgid "Purge now!"
2016
  msgstr "ئێستا پاکسازیبکە"
2017
 
2018
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
2019
  msgid "Delete User Agent Types"
2020
  msgstr "سڕینەوەی جۆری سیستەمی کارپێکردنی بەکارهینەر"
2021
 
2022
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
2023
  msgid "Delete Agents"
2024
  msgstr "سڕینەوەی سیستەمی کارپێکردنەکان"
2025
 
2026
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
2027
  msgid "All visitor data will be lost for this agent type."
2028
  msgstr "گشتی داتای میوان لەجۆری بریکار لەدەستدەچن"
2029
 
2030
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
2031
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
2032
  msgid "Delete now!"
2033
  msgstr "ئێستا بیسڕەوە"
2034
 
2035
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
2036
  msgid "Delete Platforms"
2037
  msgstr "سڕینەوەی سەکۆ"
2038
 
2039
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
2040
  msgid "All visitor data will be lost for this platform type."
2041
  msgstr "تەواوی داتاکانی سەکۆی سەردان لەدەست دەچن."
2042
 
2043
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
2044
  msgid "Resources"
2045
  msgstr "سەرچاوەکان"
2046
 
2047
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
2048
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
2049
  msgid "Memory usage in PHP"
2050
  msgstr "بیرگەی بەکارهینان لە PHP"
2051
 
2052
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
2053
  msgid "Byte"
2054
  msgstr "بایت"
2055
 
2056
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
2057
  msgid "PHP Memory Limit"
2058
  msgstr "سنووری بیرگەی PHP "
2059
 
2060
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
2061
  msgid "The memory limit a script is allowed to consume, set in php.ini."
2062
  msgstr "ڕێکخستنی سنووری بیرگە بۆ سکریپتی php.iniلە دابینکراوە."
2063
 
2064
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
2065
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
2066
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
2067
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
2068
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
2069
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
2070
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
2071
  msgid "Number of rows in the %s table"
2072
  msgstr "ژمارەی رێز لە خشت %s"
2073
 
2074
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
2075
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
2076
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
2077
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
2078
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
2079
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
2080
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
2081
  msgid "Row"
2082
  msgstr "رێز"
2083
 
2084
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
2085
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
2086
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
2087
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
2088
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
2089
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
2090
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
2091
  msgid "Number of rows"
2092
  msgstr "ژمارەی رێزەکان"
2093
 
2094
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
2095
  msgid "Version Info"
2096
  msgstr "زانیاری وەشان"
2097
 
2098
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
2099
  msgid "WP Statistics Version"
2100
  msgstr "وەشانی زیادکراوەی ئامار"
2101
 
2102
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
2103
  msgid "The WP Statistics version you are running."
2104
  msgstr "وەشانی زیادکراوەی ئاماری ئێستای ئێوە"
2105
 
2106
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
2107
  msgid "PHP Version"
2108
  msgstr "وەشانیPHP "
2109
 
2110
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
2111
  msgid "The PHP version you are running."
2112
  msgstr "وەشانی PHPی ئێوە لە کاتی ئیشکردن"
2113
 
2114
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
2115
  msgid "PHP Safe Mode"
2116
  msgstr "شیوازی پاراستنیPHP "
2117
 
2118
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
2119
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2120
  msgstr "پاراسنی دۆخی PHP چالاکە.کۆدەکانی GeoIP لەدۆخی ئسایش پشتیوانی نابن"
2121
 
2122
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
2123
  msgid "jQuery Version"
2124
  msgstr "وەشانی jQuery "
2125
 
2126
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
2127
  msgid "The jQuery version you are running."
2128
  msgstr "وەشانی jQuery ئێوە کە لە ئێستا بەکارتهێناوە"
2129
 
2130
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
2131
  msgid "cURL Version"
2132
  msgstr "وەشانیcURL"
2133
 
2134
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
2135
  msgid "cURL not installed"
2136
  msgstr "cURL دانەمزراوە"
2137
 
2138
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
2139
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2140
  msgstr "پێوەکراوەی cURL لە PHP ئێوە لەکاتی ڕاکردنە. گەر دانەمەزراوە GeoIP ناچالاک دەبێت"
2141
 
2142
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
 
 
 
 
2143
  msgid "Installed"
2144
  msgstr "دامەزرا"
2145
 
2146
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2147
  msgid "Not installed"
2148
  msgstr "دانەمەزرا"
2149
 
2150
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
 
 
 
 
2151
  msgid "File Info"
2152
  msgstr "زانیاری پەڕگە"
2153
 
2154
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
2155
  msgid "GeoIP Database"
2156
  msgstr "بنکەدراوەی GeoIP"
2157
 
2158
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
2159
  msgid "Database file does not exist."
2160
  msgstr "پەڕگەی بنکەدراوە بوونی نییە"
2161
 
2162
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
2163
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
2164
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
2165
  msgid ", created on "
2166
  msgstr "درووستکراوە لە"
2167
 
2168
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
2169
  msgid "The file size and date of the GeoIP database."
2170
  msgstr "قەبارە پەڕگە ورێکەوتی بنکەیدراوەی GeoIP"
2171
 
2172
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
2173
  msgid "browscap.ini File"
2174
  msgstr "پەرگەی browscap.ini"
2175
 
2176
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
2177
  msgid "browscap.ini file does not exist."
2178
  msgstr "پەڕگەی browscap.ini بوونی نییە"
2179
 
2180
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
2181
  msgid "The file size and date of the browscap.ini file."
2182
  msgstr "قەباری و رێکەوتی پەڕگەی browscap.ini"
2183
 
2184
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
2185
  msgid "browscap Cache File"
2186
  msgstr "بیرگەی نهێنی browscap "
2187
 
2188
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
2189
  msgid "browscap cache file does not exist."
2190
  msgstr "بیرگەی نهێنی browscap بوونی نییە"
2191
 
2192
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
2193
  msgid "The file size and date of the browscap cache file."
2194
  msgstr "قەبارە پەڕگە ورێکەوتی بیرگەی نژێنی browscap ."
2195
 
2196
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
2197
  msgid "Client Info"
2198
  msgstr "زانیاری بەکارهینەر"
2199
 
2200
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
2201
  msgid "Client IP"
2202
  msgstr "IP بەکارهێنەر"
2203
 
2204
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
2205
  msgid "The client IP address."
2206
  msgstr "ناونیشانی IP بەکارهینەر"
2207
 
2208
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
2209
  msgid "User Agent"
2210
  msgstr "بریکاری بەکارهێنەر"
2211
 
2212
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2213
  msgid "The client user agent string."
2214
  msgstr "رێزبەندی بریکاری بەکارهینەر"
2215
 
2216
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2217
  msgid "Browser"
2218
  msgstr "وەبگەڕ"
2219
 
2220
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2221
  msgid "The detected client browser."
2222
  msgstr "وەبگەڕی ناسراوەی بەکارهینەر"
2223
 
2224
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2225
  msgid "The detected client browser version."
2226
  msgstr "وەشانی ناسراوەی وێبگەڕی بەکارهینەر"
2227
 
2228
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2229
  msgid "The detected client platform."
2230
  msgstr "سەکۆی ناسراوەی بەکارهینەر"
2231
 
2232
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2233
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2234
  msgstr "تەواوی ناونیشانەکانی لە بنکەدراوە دەگؤڕدڕێنە سەر هەش وە ناگەڕێنەوە ،دەڵنیای ؟"
2235
 
2236
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2237
  msgid "GeoIP Options"
2238
  msgstr "رێکخستنی GeoIP"
2239
 
2240
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2241
  msgid "Updates any unknown location data in the database, this may take a while"
2242
  msgstr "وەرگرتنی بەرۆژکردنی شوێنی وەڵآتەکان لە بنکەی درواە.لەوانەیە ئەم کردارە کەمێ کات بەخۆیەوە ترخان بکات"
2243
 
2244
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2245
+ #: wp-statistics/includes/settings/tabs/wps-general.php:66
2246
  msgid "IP Addresses"
2247
  msgstr "ناونیشانەکانی IP "
2248
 
2249
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2250
+ #: wp-statistics/includes/settings/tabs/wps-general.php:71
2251
  msgid "Hash IP Addresses"
2252
  msgstr "هەشکردنی ناونیشانی IP "
2253
 
2254
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2255
  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"
2256
  msgstr "تەواوی ناونیشانەکانی IP لە بنکەی دراوە بە هەش دەگۆردرێن و توانایی گەڕانەوەیان نییە.بۆ ئەم کردارە دەڵنیای ؟"
2257
 
2258
+ #: wp-statistics/includes/optimization/wps-optimization.php:43
2259
  msgid "IP Addresses replaced with hash values."
2260
  msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕدرێت"
2261
 
2262
+ #: wp-statistics/includes/optimization/wps-optimization.php:51
2263
  msgid "Install routine complete."
2264
  msgstr "دامەزراندن تەواوبوو"
2265
 
2266
+ #: wp-statistics/includes/optimization/wps-optimization.php:234
2267
  msgid "Resources/Information"
2268
  msgstr "سەرچاوەکان/زانیاری"
2269
 
2270
+ #: wp-statistics/includes/optimization/wps-optimization.php:236
2271
  msgid "Purging"
2272
  msgstr "پاکسازی"
2273
 
2274
+ #: wp-statistics/includes/optimization/wps-optimization.php:237
2275
  msgid "Database"
2276
  msgstr "بنکەدراوە"
2277
 
2278
+ #: wp-statistics/includes/optimization/wps-optimization.php:238
2279
  msgid "Updates"
2280
  msgstr "بەڕۆژبونەکان"
2281
 
2282
+ #: wp-statistics/includes/optimization/wps-optimization.php:239
2283
  msgid "Historical"
2284
  msgstr "مێژوویی"
2285
 
2286
+ #: wp-statistics/includes/settings/tabs/wps-about.php:8
2287
  msgid "WP Statistics V%s"
2288
  msgstr "ئاماری وۆردپرێس وشانی %s"
2289
 
2290
+ #: wp-statistics/includes/settings/tabs/wps-about.php:28
2291
  msgid "Visit Us Online"
2292
  msgstr "دیتنی ئێمە"
2293
 
2294
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2295
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2296
  msgstr "بۆ %s نوێی ئێمە بڕۆن تا لە زانیاریەکان و هەواڵەکانی زیادکراوەی ئاماری وۆردپرێس ئاگادار بن."
2297
 
2298
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2299
  msgid "website"
2300
  msgstr "ماڵپەڕ"
2301
 
2302
+ #: wp-statistics/includes/settings/tabs/wps-about.php:36
2303
  msgid "Rate and Review at WordPress.org"
2304
  msgstr "پلەدانان و پێداچوونەوە لە WordPress.org"
2305
 
2306
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2307
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2308
  msgstr "سپاس و پێزانین بۆ دامەزراندنی زیادکراوەی ئاماری وۆردپرێس.ئێوە ئێوە هاندەدەین بۆ ناردنی "
2309
 
2310
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2311
  msgid "rating and review"
2312
  msgstr "پلەدانان و پێداچوونەوە"
2313
 
2314
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2315
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2316
  msgstr "سەردانی ماڵپەڕی وۆردپرێش بکەن .بۆچوونەکانتان جێگای پێزانینە."
2317
 
2318
+ #: wp-statistics/includes/settings/tabs/wps-about.php:44
2319
  msgid "Translations"
2320
  msgstr "وەرگێڕانەکان"
2321
 
2322
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2323
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2324
  msgstr "زیادکراوەی ئاماری وۆردپرێش بۆ بوون بە نێودەوڵەتی هانتان ئەدات تاکوو وەرگێڕانی لە سەر بکەن., بۆ دیتنی دۆخی وەرگێڕاوەکان %s سەردانی بکەن و گەر پێت خۆشە یارمەتیمان بدەی %s سەردانی بکە."
2325
 
2326
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2327
  msgid "translation collaboration site"
2328
  msgstr "مالپەڕی هاوکار لە وەرگێڕان"
2329
 
2330
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2331
  msgid "drop us a line"
2332
  msgstr "پەیوەندی لەگەڵ ئێمە"
2333
 
2334
+ #: wp-statistics/includes/settings/tabs/wps-about.php:52
2335
  msgid "Support"
2336
  msgstr "پشتیوانی"
2337
 
2338
+ #: wp-statistics/includes/settings/tabs/wps-about.php:57
2339
  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:"
2340
  msgstr "گەر لە گەڵ زیادکراوەی ئاماری وۆردپرێس کێشەت هەیە !پێمان خۆشە یارمەتیت بدەین.لە خوارەوە دەتوانیت لە تاقمەکانی سوود وەربگریت و پەیوەندیمان پی بکەی : "
2341
 
2342
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2343
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2344
  msgid "Have you read the %s?"
2345
  msgstr "ئێوە %s ت خوێندوەتەوە ؟"
2346
 
2347
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2348
  msgid "FAQs"
2349
  msgstr "پرسیارەکان"
2350
 
2351
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2352
  msgid "manual"
2353
  msgstr "ڕێنمایی"
2354
 
2355
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2356
  msgid "Have you search the %s for a similar issue?"
2357
  msgstr "لە %s بۆ بابەتەکانی هاوتا گڕانتان کردووە ؟"
2358
 
2359
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2360
  msgid "support forum"
2361
  msgstr "سەکۆی پشتیوانی"
2362
 
2363
+ #: wp-statistics/includes/settings/tabs/wps-about.php:63
2364
  msgid "Have you search the Internet for any error messages you are receiving?"
2365
  msgstr "ئایا بۆ هەر هەڵە لە ئینتەرنێت گەڕاوی ؟"
2366
 
2367
+ #: wp-statistics/includes/settings/tabs/wps-about.php:64
2368
  msgid "Make sure you have access to your PHP error logs."
2369
  msgstr "دەڵنیای PHP بە هەڵەکانی دەستپێگەیشتنت هەیە؟"
2370
 
2371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:67
2372
  msgid "And a few things to double-check:"
2373
  msgstr "سەرنج بەم چەند خاڵە بدەن :"
2374
 
2375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:70
2376
  msgid "How's your memory_limit in php.ini?"
2377
  msgstr "ژمارەی memory_limit لەphp.ini چاو پێکەوتووە ؟"
2378
 
2379
+ #: wp-statistics/includes/settings/tabs/wps-about.php:71
2380
  msgid "Have you tried disabling any other plugins you may have installed?"
2381
  msgstr "هەوڵت داوە زیادکراوەکانی دیکە ناچالللاک بکەی ؟"
2382
 
2383
+ #: wp-statistics/includes/settings/tabs/wps-about.php:72
2384
  msgid "Have you tried using the default WordPress theme?"
2385
  msgstr "هەوڵت داوا ڕکاری بنەڕەتی وۆردپرێس بکاربێنیت ؟"
2386
 
2387
+ #: wp-statistics/includes/settings/tabs/wps-about.php:73
2388
  msgid "Have you double checked the plugin settings?"
2389
  msgstr "ئایا ڕێکخستنەکانی زیادکراوەت چاودێری کردووە ؟"
2390
 
2391
+ #: wp-statistics/includes/settings/tabs/wps-about.php:74
2392
  msgid "Do you have all the required PHP extensions installed?"
2393
  msgstr "ئایا پێویستیەکانی دەستپیگەیشتنی PHP دامەزراندووە؟"
2394
 
2395
+ #: wp-statistics/includes/settings/tabs/wps-about.php:75
2396
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2397
  msgstr "ئایا پەرەییکی بەتاڵ لە وێبگەڕەکەت بینڕاوە ؟ئایا هەڵەکانت لە کۆدەکان بینیوە ئان پشکنینت بۆ کردووە /"
2398
 
2399
+ #: wp-statistics/includes/settings/tabs/wps-about.php:76
2400
  msgid "Have you checked your PHP and web server error logs?"
2401
  msgstr "ئایا PHP گوزارشی هەڵەکانی سێرڤێری وێبەکەت پشکنین کردووە ؟"
2402
 
2403
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2404
  msgid "Still not having any luck?"
2405
  msgstr "هێشتا شآنسو بەختێکت بۆ نییە ؟"
2406
 
2407
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2408
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2409
  msgstr "تکایە تیکێتێکی نوێ لە %s بنووسن تا لە کەمترین کات وەڵامەت بدەینەوە ."
2410
 
2411
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2412
  msgid "WordPress.org support forum"
2413
  msgstr "سەکۆی پشتیوانی WordPress.org"
2414
 
2415
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2416
  msgid "Alternatively %s support is available as well."
2417
  msgstr "مەکۆی پشتیوانی %s ئێمە ،ڕێگایێکی ترە بۆ دەستپێگەیشتن بە ئێمە"
2418
 
2419
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2420
  msgid "Farsi"
2421
  msgstr "فارسی"
2422
 
2423
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
2424
  msgid "WP Statistics Honey Pot Page"
2425
  msgstr "پەڕەی ئاماری وۆردپرێسی مەنجەڵە هەنگوین"
2426
 
2427
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
2428
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2429
  msgstr "ئەم مەنجەڵە هەنگوێنە بۆ بەکارهێنانی ئاماری WPیە،نەبۆ سڕینەوە"
2430
 
2431
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:23
2432
+ #: wp-statistics/includes/settings/wps-settings.php:103
2433
  msgid "Access Levels"
2434
  msgstr "ئاستی دەستپێگەیشتن"
2435
 
2436
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:52
2437
  msgid "Required user level to view WP Statistics"
2438
  msgstr "ئاستی بەکارهێنەری پێویست بۆ دیتنی ئاماری وۆردپرێس"
2439
 
2440
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:67
2441
  msgid "Required user level to manage WP Statistics"
2442
  msgstr "ئاستی بەکارهێنەری پێویست بۆ بەڕێوەبردنی ئاماری وۆردپرێس"
2443
 
2444
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2445
  msgid "See the %s for details on capability levels."
2446
  msgstr "دیتنی وردەکاری %s لە سەر ئاستی تواناییەکان."
2447
 
2448
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2449
  msgid "WordPress Roles and Capabilities page"
2450
  msgstr "پەڕەی ڕۆڵەکان و تواناییەکانی وۆردپرێس"
2451
 
2452
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:76
2453
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2454
  msgstr "خاڵ: manage_network =بەڕێوەبەری تۆڕ، manage_options = بەڕیوەبەر، edit_others_posts = سەرنووسەر، publish_posts = نووسەر، edit_posts = هاوبەش، read = گشتی."
2455
 
2456
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:77
2457
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2458
  msgstr "هەر ئەکێک لە بڕگەکان بە شێوازی بنەڕەتی لە وۆردپرێس دابین کراوە. بۆ وێنە بە هەڵبژاردنی publish_posts به نویسنده‌گاه، سەرنووسەرەکان، بەڕێوەبەرو بەرێوەبەری گشتی دەستپێگەیشتن دەدەیت."
2459
 
2460
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:78
2461
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2462
  msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
2463
 
2464
+ #: wp-statistics/includes/log/exclusions.php:197
2465
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
2466
+ #: wp-statistics/includes/settings/wps-settings.php:104
2467
+ #: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:513
2468
  msgid "Exclusions"
2469
  msgstr "جیاکاریەکان"
2470
 
2471
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
2472
  msgid "Record exclusions"
2473
  msgstr "تۆمارکردنی جیاکاریەکان"
2474
 
2475
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
2476
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
2477
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
2478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
2479
  msgid "Enable"
2480
  msgstr "چالاک"
2481
 
2482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
2483
  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."
2484
  msgstr "جیاکردنی چینیک لە سەردانی ئامارەکە و هەڵگرتنی ئەان بە نووسینی هۆکارەکەیان لە خشتێکی تر.دەتوانێت ژمارەیێکی زۆر داتا درووستکرێت.بەسوودە دەتوانن ئامارێکی پتوتر لە سەردانەکان بەدەت بێنن."
2485
 
2486
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
2487
  msgid "Exclude User Roles"
2488
  msgstr "دوورخستنەوەی ڕۆڵی بەکارهێنەر"
2489
 
2490
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
2491
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
2492
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
2493
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
2494
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
2495
  msgid "Exclude"
2496
  msgstr "دوورخستنەوەکان"
2497
 
2498
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
2499
  msgid "Exclude %s role from data collection."
2500
  msgstr "دوورخستنی ڕۆڵی بەکارهێنەر %s لە ژمارەی ئامار"
2501
 
2502
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
2503
  msgid "IP/Robot Exclusions"
2504
  msgstr "جیاکردنی ڕۆبۆت/ئای پی"
2505
 
2506
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
2507
  msgid "Robot list"
2508
  msgstr "لیستی ڕۆبۆتەکان"
2509
 
2510
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
2511
  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."
2512
  msgstr "پیرستێک لە وەشەکان بۆ هەڵسەنگاندن و ناسینی ڕۆبۆتەکان (لە هەر هێڵ وەشەیێک بنووسن). چوونەژوورەوەکان دەبێت ٤ پیت بن."
2513
 
2514
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
2515
  msgid "Reset to Default"
2516
  msgstr "ڕێکخستنەوه بۆ شێوازی بنەڕەتی"
2517
 
2518
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
2519
  msgid "Force robot list update after upgrades"
2520
  msgstr "بەڕۆژکردنی لیستی ڕۆبۆتەکان پێش بەرزکردنەوە"
2521
 
2522
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
2523
  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."
2524
  msgstr "پێرستی ڕۆبۆتەکان پاش بەڕۆژ بوونەوە ڕێکدەخرینەە.گەر ئەم برگە هەڵبژیرن پێرست لەدەست دەچێت"
2525
 
2526
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
2527
  msgid "Robot visit threshold"
2528
  msgstr "لێواری سەفەری ڕۆبۆت"
2529
 
2530
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
2531
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2532
  msgstr "هەڵسوکەوتکردنی میوانان زۆرتر لەم ژمارە سەردانە لەهەر ڕۆژ بە عینوانی ڕۆبۆت 0 = ناچالاکە."
2533
 
2534
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
2535
  msgid "Excluded IP address list"
2536
  msgstr "جیاکردنی پێرستی ناونیشانیIP"
2537
 
2538
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
2539
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2540
  msgstr "لیستێک لە ناونیشانی IPو Subnet Maskهای (لە هەر هیڵ یەک دانی) بۆ بەرگیری لە ژمێڕیاری ئامار (هەر دوو شێوازی 192.168.0.0/24 و 192.168.0.0/255.255.255.0 توانیی قبووڵ). بۆ دابین کردن تەنها ئادرەسێک لەIP پێویست نییەSubnet Maskزیادی کەن "
2541
 
2542
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
2543
  msgid "Add 10.0.0.0"
2544
  msgstr "زیادکردنی10.0.0.0"
2545
 
2546
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
2547
  msgid "Add 172.16.0.0"
2548
  msgstr "زۆرکردنی172.16.0.0"
2549
 
2550
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
2551
  msgid "Add 192.168.0.0"
2552
  msgstr "زیادکردنی192.168.0.0"
2553
 
2554
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
2555
  msgid "Use honey pot"
2556
  msgstr "بەکارهینانی مەنجەڵە هەنگوین"
2557
 
2558
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
2559
  msgid "Use a honey pot page to identify robots."
2560
  msgstr "بەکارهینانی پەڕەیێک لە مەنجەڵە هەنگوین بۆ ناساندنی ڕۆبۆتەکان"
2561
 
2562
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
2563
  msgid "Honey pot post id"
2564
  msgstr "مەنجەڵە هەنگوین ناردنی ناسنامە"
2565
 
2566
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
2567
  msgid "The post id to use for the honeypot page."
2568
  msgstr "ناردنی ناسنامە بۆ بەکارهێنانی پەڕەی مەنجەڵە هەنگوین"
2569
 
2570
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
2571
  msgid "Create a new honey pot page"
2572
  msgstr "درووستکردنی پەڕەی نوێی مەنجەڵە هەنگوین"
2573
 
2574
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
2575
  msgid "GeoIP Exclusions"
2576
  msgstr "جیاکراوەکانی GeoIP"
2577
 
2578
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
2579
  msgid "Excluded countries list"
2580
  msgstr "لیستی وەڵاتە جیاکراوەکان"
2581
 
2582
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
2583
  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."
2584
  msgstr "لیستێک لە کۆدی وەڵاتەکان (ئەکدانە لە هەر هێڵ، هەر دوو نامە) لە کۆی ئامار بریتیە بەکارهێنان لە &quot;000&quot; (سێ سفر) رد بۆ وەڵاتە نەناسراوەکانە."
2585
 
2586
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
2587
  msgid "Included countries list"
2588
  msgstr "لیستی وەڵاتەکان بریتین لە"
2589
 
2590
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
2591
  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."
2592
  msgstr "لیستێک لە کۆدی وەڵاتەکان (لەهەر هێڵ یەکێک، هەر دوو نامە)لە کۆ ئامار بریتییە، گەر ئەم لیستە بەتاڵ نییە، تەنیا میوانەکان لە وەڵاتەکان تۆمار دەبن. بەکارهێنان لە &quot;000&quot; (سێ سفر) بۆ قەبووڵ نەکردنی وەڵاتە نەناسراوەکانە."
2593
 
2594
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
2595
  msgid "Host Exclusions"
2596
  msgstr "جیاکاری هۆست"
2597
 
2598
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
2599
  msgid "Excluded hosts list"
2600
  msgstr "جیاکاری لیستی هۆستەکان"
2601
 
2602
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
2603
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2604
  msgstr "لیستێک لە ناونیشانەکانی خۆماڵی (بۆ وێنە: /wordpress/about، هەر هێڵ) لە کۆی ئامار دووردەخرێت."
2605
 
2606
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
2607
  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."
2608
  msgstr "ئاگاداربە:ئەم بڕگە dns پێچەوانە لە هەر نوێکردنی پەڕە بۆ هەر ipێک کە لە سەر شەکرەی هەر سێرڤێرێک لە کاتژمێر بەکاردێت . گەر ئێوە بەرگیری بکەن لە هەر هۆستێکی تایبەتلەوانەیە کە ءیوە پەیدا بکەن پلەی هاوئاهەنگی لە نێوانگۆڕانی هۆست کە بە ناونیشانی ئایپی و بەڕۆژ بوونی ئاکامی سەردانەکان لە بوونی شەکرە لە وێبگەر."
2609
 
2610
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
2611
  msgid "Site URL Exclusions"
2612
  msgstr "جیاکاری ئادرەسی ماڵپەڕ"
2613
 
2614
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
2615
  msgid "Excluded login page"
2616
  msgstr "جیاکاری پەڕگەی هاتنە ژوور"
2617
 
2618
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
2619
  msgid "Exclude the login page for registering as a hit."
2620
  msgstr "جیاکاری پەڕەی چوونەژوورەوە بۆ ناونووسی لە ژماردنی ئامار"
2621
 
2622
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
2623
  msgid "Excluded admin pages"
2624
  msgstr "جیاکاری پەڕەی بەڕێوەبەر"
2625
 
2626
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
2627
  msgid "Exclude the admin pages for registering as a hit."
2628
  msgstr "جیاکاری پەڕەی بەڕێوەبەر بۆ ناونووسی لە ژماردنی ئامار"
2629
 
2630
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
2631
  msgid "Excluded RSS feeds"
2632
  msgstr "جیاکاری فیدی RSS "
2633
 
2634
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
2635
  msgid "Exclude the RSS feeds for registering as a hit."
2636
  msgstr "جیاکاری پەڕەی فیدیRSS بۆ ناونووسی لە ژماردنی ئامار"
2637
 
2638
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:162
2639
  msgid "browscap settings"
2640
  msgstr "ڕێکخستنەکانی browscap "
2641
 
2642
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:167
2643
  msgid "browscap usage"
2644
  msgstr "سودوەرگرتن لە browscap"
2645
 
2646
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:52
2647
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:76
2648
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:109
2649
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:172
2650
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:196
2651
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:236
2652
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:260
2653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:76
2654
+ #: wp-statistics/includes/settings/tabs/wps-general.php:92
2655
+ #: wp-statistics/includes/settings/tabs/wps-general.php:116
2656
+ #: wp-statistics/includes/settings/tabs/wps-general.php:132
2657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:148
2658
+ #: wp-statistics/includes/settings/tabs/wps-general.php:160
2659
+ #: wp-statistics/includes/settings/tabs/wps-general.php:187
2660
+ #: wp-statistics/includes/settings/tabs/wps-general.php:199
2661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:214
2662
+ #: wp-statistics/includes/settings/tabs/wps-general.php:228
2663
+ #: wp-statistics/includes/settings/tabs/wps-general.php:258
2664
+ #: wp-statistics/includes/settings/tabs/wps-general.php:270
2665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:286
2666
+ #: wp-statistics/includes/settings/tabs/wps-general.php:325
2667
+ #: wp-statistics/includes/settings/tabs/wps-general.php:341
2668
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
2669
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
2670
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:69
2671
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:81
2672
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:93
2673
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:105
2674
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:121
2675
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
2676
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
2677
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:94
2678
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:106
2679
  msgid "Active"
2680
  msgstr "چالاک"
2681
 
2682
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:173
2683
  msgid "The browscap database will be downloaded and used to detect robots."
2684
  msgstr "بنکەی دراوە browscap داگرە بۆ بهەرە وەرگرتن لە رۆبۆت."
2685
 
2686
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:179
2687
  msgid "Update browscap Info"
2688
  msgstr "Browscap بەڕۆژکردنی زانیاریەکانی"
2689
 
2690
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:184
2691
  msgid "Download browscap Database"
2692
  msgstr "داگرتنی browscapبنکەدراوە"
2693
 
2694
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:65
2695
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:185
2696
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:249
2697
  msgid "Save changes on this page to download the update."
2698
  msgstr "پاشکەوتی گۆڕانکاری لەم پەرگە و داگرتنی بەڕۆژکراوەکان"
2699
 
2700
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:191
2701
  msgid "Schedule weekly update of browscap DB"
2702
  msgstr "ببەرنامەی بەڕۆژ کردنی هەفتانە browscap دسی بی"
2703
 
2704
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:79
2705
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:199
2706
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:263
2707
  msgid "Next update will be"
2708
  msgstr "بەڕۆژ بوونی داهاتوو هەیە."
2709
 
2710
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:215
2711
  msgid "Download of the browscap database will be scheduled for once a week."
2712
  msgstr "داگرتنی بنکەدراوەی browscap بۆبارێک لە حەفتە"
2713
 
2714
+ #: wp-statistics/includes/settings/tabs/wps-general.php:50
2715
  msgid "This will delete the manual when you save the settings, are you sure?"
2716
  msgstr "پاش پاشکەتکردنی ڕێکخستنەکان پەڕگەی ڕینمایی دەسڕێتەوە ،دەڵنیای ؟"
2717
 
2718
+ #: wp-statistics/includes/settings/tabs/wps-general.php:77
2719
  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."
2720
  msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
2721
 
2722
+ #: wp-statistics/includes/settings/tabs/wps-general.php:82
2723
+ #: wp-statistics/shortcode.php:138
2724
  msgid "Users Online"
2725
  msgstr "بەکارهێنەری سەرهێڵ"
2726
 
2727
+ #: wp-statistics/includes/settings/tabs/wps-general.php:87
2728
  msgid "User online"
2729
  msgstr "بەکارهێنەری سەرهێڵ"
languages/wp_statistics-cs.mo DELETED
Binary file
languages/wp_statistics-cs.po DELETED
@@ -1,2630 +0,0 @@
1
- # Translation of WP Statistics in Czech
2
- # This file is distributed under the same license as the WP Statistics package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2015-04-22 00:40:36+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: GlotPress/1.0-beta\n"
11
- "Project-Id-Version: WP Statistics\n"
12
-
13
- #: wp-statistics.php:95
14
- msgid "&#151; You are running an unsupported version of PHP."
15
- msgstr ""
16
-
17
- #: wp-statistics.php:95
18
- msgid "WP Statistics Disabled"
19
- msgstr ""
20
-
21
- #: wp-statistics.php:99
22
- msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
23
- msgstr ""
24
-
25
- #: wp-statistics.php:101
26
- msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
27
- msgstr ""
28
-
29
- #: ajax.php:281
30
- msgid "ERROR: Widget not found!"
31
- msgstr ""
32
-
33
- #: dashboard.php:103 includes/log/log.php:13
34
- msgid "Loading..."
35
- msgstr ""
36
-
37
- #: dashboard.php:121 includes/log/log.php:2
38
- msgid "Reloading..."
39
- msgstr ""
40
-
41
- #: includes/log/top-visitors.php:41 wp-statistics.php:447
42
- msgid "Top Visitors"
43
- msgstr ""
44
-
45
- #: wp-statistics.php:206
46
- msgid "optimization page"
47
- msgstr ""
48
-
49
- #: includes/settings/tabs/wps-maintenance.php:35
50
- #: includes/settings/tabs/wps-maintenance.php:63
51
- msgid "Enabled"
52
- msgstr ""
53
-
54
- #: includes/settings/tabs/wps-maintenance.php:30
55
- msgid "Purge Old Data Daily"
56
- msgstr ""
57
-
58
- #: includes/settings/tabs/wps-maintenance.php:41
59
- msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
60
- msgstr ""
61
-
62
- #: includes/settings/tabs/wps-maintenance.php:47
63
- msgid "Purge data older than"
64
- msgstr ""
65
-
66
- #: includes/settings/tabs/wps-maintenance.php:58
67
- msgid "Purge High Hit Count Visitors Daily"
68
- msgstr ""
69
-
70
- #: includes/settings/tabs/wps-maintenance.php:69
71
- msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
72
- msgstr ""
73
-
74
- #: includes/settings/tabs/wps-maintenance.php:81
75
- msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
76
- msgstr ""
77
-
78
- #: shortcode.php:184
79
- msgid "The post/page id to get page statistics on."
80
- msgstr ""
81
-
82
- #: shortcode.php:181
83
- msgid "Post/Page ID"
84
- msgstr ""
85
-
86
- #: includes/functions/functions.php:424
87
- msgid "Ask.com"
88
- msgstr ""
89
-
90
- #: shortcode.php:158
91
- 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."
92
- msgstr ""
93
-
94
- #: wp-statistics.php:180
95
- msgid "visitor tracking"
96
- msgstr ""
97
-
98
- #: wp-statistics.php:181
99
- msgid "geoip collection"
100
- msgstr ""
101
-
102
- #: wp-statistics.php:197
103
- msgid "visit database index"
104
- msgstr ""
105
-
106
- #: wp-statistics.php:206
107
- msgid "Database updates are required, please go to %s and update the following: %s"
108
- msgstr ""
109
-
110
- #: wp-statistics.php:197
111
- msgid "countries database index"
112
- msgstr ""
113
-
114
- #: wp-statistics.php:190
115
- msgid "search table"
116
- msgstr ""
117
-
118
- #: wp-statistics.php:184
119
- msgid "settings page"
120
- msgstr ""
121
-
122
- #: wp-statistics.php:184 wp-statistics.php:206
123
- msgid ","
124
- msgstr ""
125
-
126
- #: wp-statistics.php:184
127
- msgid "The following features are disabled, please go to %s and enable them: %s"
128
- msgstr ""
129
-
130
- #: wp-statistics.php:179
131
- msgid "hit tracking"
132
- msgstr ""
133
-
134
- #: wp-statistics.php:178
135
- msgid "online user tracking"
136
- msgstr ""
137
-
138
- #: wp-statistics.php:775
139
- msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
140
- msgstr ""
141
-
142
- #: includes/optimization/wps-optimization.php:196
143
- msgid "Search table conversion complete, %d rows added."
144
- msgstr ""
145
-
146
- #: includes/optimization/tabs/wps-optimization-database.php:113
147
- 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."
148
- msgstr ""
149
-
150
- #: includes/optimization/tabs/wps-optimization-database.php:94
151
- msgid "Search Table"
152
- msgstr ""
153
-
154
- #: includes/optimization/tabs/wps-optimization-database.php:99
155
- msgid "Convert"
156
- msgstr ""
157
-
158
- #: includes/optimization/tabs/wps-optimization-database.php:106
159
- msgid "Convert Now!"
160
- msgstr ""
161
-
162
- #: includes/optimization/tabs/wps-optimization-database.php:107
163
- 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."
164
- msgstr ""
165
-
166
- #: includes/log/exclusions.php:24
167
- msgid "Referrer Spam"
168
- msgstr ""
169
-
170
- #: includes/settings/tabs/wps-externals.php:279
171
- msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
172
- msgstr ""
173
-
174
- #: includes/settings/wps-settings.php:105
175
- msgid "Externals"
176
- msgstr ""
177
-
178
- #: includes/settings/tabs/wps-externals.php:220
179
- msgid "Piwik Referrer Spam Blacklist settings"
180
- msgstr ""
181
-
182
- #: includes/settings/tabs/wps-externals.php:255
183
- msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
184
- msgstr ""
185
-
186
- #: includes/settings/tabs/wps-externals.php:248
187
- msgid "Download Piwik Referrer Spam Blacklist Database"
188
- msgstr ""
189
-
190
- #: includes/settings/tabs/wps-externals.php:243
191
- msgid "Update Piwik Referrer Spam Blacklist Info"
192
- msgstr ""
193
-
194
- #: includes/settings/tabs/wps-externals.php:237
195
- msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
196
- msgstr ""
197
-
198
- #: includes/settings/tabs/wps-externals.php:225
199
- msgid "Referrer spam blacklist is provided by Piwik, available from %s."
200
- msgstr ""
201
-
202
- #: includes/settings/tabs/wps-externals.php:231
203
- msgid "Piwik Referrer Spam Blacklist usage"
204
- msgstr ""
205
-
206
- #: includes/settings/tabs/wps-exclusions.php:148
207
- msgid "Treat corrupt browser info as a bot"
208
- msgstr ""
209
-
210
- #: includes/log/exclusions.php:24
211
- msgid "404 Pages"
212
- msgstr ""
213
-
214
- #: includes/log/top-visitors.php:26
215
- msgid "Date"
216
- msgstr ""
217
-
218
- #: includes/settings/tabs/wps-exclusions.php:151
219
- msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
220
- msgstr ""
221
-
222
- #: includes/settings/tabs/wps-exclusions.php:215
223
- msgid "Excluded 404 pages"
224
- msgstr ""
225
-
226
- #: includes/settings/tabs/wps-exclusions.php:218
227
- msgid "Exclude any URL that returns a \"404 - Not Found\" message."
228
- msgstr ""
229
-
230
- #: wps-updates.php:29
231
- msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
232
- msgstr ""
233
-
234
- #: includes/settings/tabs/wps-general.php:281
235
- msgid "Add page title to empty search words"
236
- msgstr ""
237
-
238
- #: includes/settings/tabs/wps-general.php:287
239
- 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."
240
- msgstr ""
241
-
242
- #: includes/optimization/tabs/wps-optimization-purging.php:218
243
- #: includes/settings/tabs/wps-maintenance.php:75
244
- msgid "Purge visitors with more than"
245
- msgstr ""
246
-
247
- #: includes/optimization/tabs/wps-optimization-purging.php:223
248
- msgid "hits"
249
- msgstr ""
250
-
251
- #: includes/optimization/tabs/wps-optimization-purging.php:224
252
- 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."
253
- msgstr ""
254
-
255
- #: includes/functions/purge-hits.php:28
256
- msgid "No visitors found to purge."
257
- msgstr ""
258
-
259
- #: includes/functions/purge-hits.php:25
260
- msgid "%s records purged successfully."
261
- msgstr ""
262
-
263
- #: ajax.php:178 includes/functions/purge-hits.php:32
264
- msgid "Number of hits must be greater than or equal to 10!"
265
- msgstr ""
266
-
267
- #: shortcode.php:141
268
- msgid "Page Visits"
269
- msgstr ""
270
-
271
- #: shortcode.php:144
272
- msgid "Page Count"
273
- msgstr ""
274
-
275
- #: shortcode.php:145
276
- msgid "Comment Count"
277
- msgstr ""
278
-
279
- #: shortcode.php:146
280
- msgid "Spam Count"
281
- msgstr ""
282
-
283
- #: shortcode.php:147
284
- msgid "User Count"
285
- msgstr ""
286
-
287
- #: shortcode.php:148
288
- msgid "Post Average"
289
- msgstr ""
290
-
291
- #: shortcode.php:149
292
- msgid "Comment Average"
293
- msgstr ""
294
-
295
- #: shortcode.php:150
296
- msgid "User Average"
297
- msgstr ""
298
-
299
- #: shortcode.php:162
300
- msgid "Search Provider"
301
- msgstr ""
302
-
303
- #: shortcode.php:165
304
- msgid "The search provider to get statistics on."
305
- msgstr ""
306
-
307
- #: shortcode.php:169
308
- msgid "Number Format"
309
- msgstr ""
310
-
311
- #: shortcode.php:172
312
- msgid "The format to display numbers in: i18n, english, none."
313
- msgstr ""
314
-
315
- #: shortcode.php:176
316
- msgid "English"
317
- msgstr ""
318
-
319
- #: shortcode.php:177
320
- msgid "International"
321
- msgstr ""
322
-
323
- #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
324
- msgid "Hits Statistics Summary"
325
- msgstr ""
326
-
327
- #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
328
- msgid "Chart Total"
329
- msgstr ""
330
-
331
- #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
332
- msgid "All Time Total"
333
- msgstr ""
334
-
335
- #: includes/log/log.php:6
336
- msgid "Have you thought about donating to WP Statistics?"
337
- msgstr ""
338
-
339
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:429
340
- msgid "Donate"
341
- msgstr ""
342
-
343
- #: includes/settings/tabs/wps-about.php:24
344
- msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
345
- msgstr ""
346
-
347
- #: includes/settings/tabs/wps-about.php:24
348
- msgid "donation"
349
- msgstr ""
350
-
351
- #: includes/log/log.php:6
352
- msgid "Donate Now!"
353
- msgstr ""
354
-
355
- #: includes/log/log.php:6
356
- msgid "Close"
357
- msgstr ""
358
-
359
- #: shortcode.php:135
360
- msgid "Select the statistic you wish to display."
361
- msgstr ""
362
-
363
- #: shortcode.php:132
364
- msgid "Statistic"
365
- msgstr ""
366
-
367
- #: shortcode.php:143
368
- msgid "Post Count"
369
- msgstr ""
370
-
371
- #: shortcode.php:155
372
- msgid "Time Frame"
373
- msgstr ""
374
-
375
- #: includes/functions/functions.php:1009
376
- msgid "to"
377
- msgstr ""
378
-
379
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
380
- msgid "Go"
381
- msgstr ""
382
-
383
- #: includes/log/top-pages.php:95
384
- msgid "Rank #5"
385
- msgstr ""
386
-
387
- #: includes/log/top-pages.php:95
388
- msgid "Rank #4"
389
- msgstr ""
390
-
391
- #: includes/log/top-pages.php:95
392
- msgid "Rank #3"
393
- msgstr ""
394
-
395
- #: includes/log/top-pages.php:95
396
- msgid "Rank #1"
397
- msgstr ""
398
-
399
- #: includes/log/top-pages.php:95
400
- msgid "Rank #2"
401
- msgstr ""
402
-
403
- #: includes/optimization/tabs/wps-optimization-database.php:60
404
- msgid "Visits Table"
405
- msgstr ""
406
-
407
- #: includes/optimization/tabs/wps-optimization-database.php:75
408
- 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."
409
- msgstr ""
410
-
411
- #: includes/optimization/tabs/wps-optimization-database.php:76
412
- msgid "This operation could take a long time on installs with many rows in the visits table."
413
- msgstr ""
414
-
415
- #: includes/optimization/tabs/wps-optimization-database.php:82
416
- 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."
417
- msgstr ""
418
-
419
- #: includes/log/last-visitor.php:68
420
- msgid "Filtered by"
421
- msgstr ""
422
-
423
- #: includes/functions/functions.php:1002 includes/functions/functions.php:1005
424
- msgid "Range"
425
- msgstr ""
426
-
427
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
428
- msgid "MM/DD/YYYY"
429
- msgstr "MM/DD/YYYY"
430
-
431
- #: includes/settings/tabs/wps-general.php:342
432
- msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
433
- msgstr ""
434
-
435
- #: includes/settings/tabs/wps-general.php:336
436
- msgid "Force English"
437
- msgstr ""
438
-
439
- #: includes/settings/tabs/wps-general.php:331
440
- msgid "Languages"
441
- msgstr ""
442
-
443
- #: includes/settings/tabs/wps-exclusions.php:227
444
- 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."
445
- msgstr ""
446
-
447
- #: includes/settings/tabs/wps-exclusions.php:225
448
- msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
449
- msgstr ""
450
-
451
- #: includes/settings/tabs/wps-exclusions.php:222
452
- msgid "Excluded URLs list"
453
- msgstr ""
454
-
455
- #: includes/log/exclusions.php:24
456
- msgid "Excluded URL"
457
- msgstr ""
458
-
459
- #: includes/log/widgets/quickstats.php:52 includes/log/widgets/summary.php:52
460
- msgid "Last 365 Days (Year)"
461
- msgstr ""
462
-
463
- #: includes/log/widgets/quickstats.php:46 includes/log/widgets/summary.php:46
464
- msgid "Last 30 Days (Month)"
465
- msgstr ""
466
-
467
- #: includes/log/widgets/quickstats.php:40 includes/log/widgets/summary.php:40
468
- msgid "Last 7 Days (Week)"
469
- msgstr ""
470
-
471
- #: includes/functions/functions.php:430
472
- msgid "Yahoo!"
473
- msgstr ""
474
-
475
- #: includes/functions/functions.php:431
476
- msgid "Yandex"
477
- msgstr ""
478
-
479
- #: includes/functions/functions.php:427
480
- msgid "clearch.org"
481
- msgstr ""
482
-
483
- #: includes/functions/functions.php:428
484
- msgid "DuckDuckGo"
485
- msgstr ""
486
-
487
- #: includes/functions/functions.php:426
488
- msgid "Bing"
489
- msgstr ""
490
-
491
- #: includes/functions/functions.php:425
492
- msgid "Baidu"
493
- msgstr ""
494
-
495
- #: editor.php:69
496
- msgid "Hits in the last 20 days"
497
- msgstr ""
498
-
499
- #: includes/log/exclusions.php:24
500
- msgid "Feeds"
501
- msgstr ""
502
-
503
- #: includes/log/exclusions.php:24
504
- msgid "User Role"
505
- msgstr ""
506
-
507
- #: includes/log/exclusions.php:24
508
- msgid "Login Page"
509
- msgstr ""
510
-
511
- #: includes/log/exclusions.php:24
512
- msgid "Admin Page"
513
- msgstr ""
514
-
515
- #: includes/log/exclusions.php:24
516
- msgid "Self Referral"
517
- msgstr ""
518
-
519
- #: includes/log/exclusions.php:24
520
- msgid "IP Match"
521
- msgstr ""
522
-
523
- #: includes/log/exclusions.php:24
524
- msgid "Robot"
525
- msgstr ""
526
-
527
- #: includes/log/online.php:100
528
- msgid "Currently there are no users online in the site."
529
- msgstr ""
530
-
531
- #: includes/log/exclusions.php:24
532
- msgid "Robot Threshold"
533
- msgstr ""
534
-
535
- #: includes/log/exclusions.php:24
536
- msgid "Honey Pot"
537
- msgstr ""
538
-
539
- #: includes/log/widgets/page.php:8
540
- msgid "Page Trending Stats"
541
- msgstr ""
542
-
543
- #: includes/log/exclusions.php:24
544
- msgid "Hostname"
545
- msgstr ""
546
-
547
- #: includes/settings/tabs/wps-general.php:93
548
- #: includes/settings/tabs/wps-general.php:133
549
- #: includes/settings/tabs/wps-general.php:149
550
- #: includes/settings/tabs/wps-general.php:188
551
- #: includes/settings/tabs/wps-general.php:200
552
- #: includes/settings/tabs/wps-general.php:229
553
- #: includes/settings/tabs/wps-notifications.php:122
554
- msgid "Enable or disable this feature"
555
- msgstr "Zapnout nebo vypnout tuto vlastnost"
556
-
557
- #: includes/settings/tabs/wps-general.php:99
558
- msgid "Check for online users every"
559
- msgstr "Kontrola online uživatelů každých"
560
-
561
- #: includes/settings/tabs/wps-general.php:104
562
- msgid "Second"
563
- msgstr "Sekunda"
564
-
565
- #: includes/settings/tabs/wps-general.php:105
566
- msgid "Time for the check accurate online user in the site. Now: %s Second"
567
- msgstr "Čas pro kontrolu přesné online uživatele v síti. Nyní: %s druhé"
568
-
569
- #: includes/settings/tabs/wps-general.php:111
570
- msgid "Record all user"
571
- msgstr ""
572
-
573
- #: includes/settings/tabs/wps-general.php:117
574
- msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
575
- msgstr ""
576
-
577
- #: includes/settings/tabs/wps-general.php:155
578
- msgid "Store entire user agent string"
579
- msgstr "Uložení celé identifikační řetězec prohlížeče"
580
-
581
- #: includes/settings/tabs/wps-general.php:161
582
- msgid "Only enabled for debugging"
583
- msgstr "Jen zapnout pro debugging"
584
-
585
- #: includes/settings/tabs/wps-general.php:167
586
- msgid "Coefficient per visitor"
587
- msgstr "Koeficient na návštěvníka"
588
-
589
- #: includes/settings/tabs/wps-general.php:172
590
- msgid "For each visit to account for several hits. Currently %s."
591
- msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
592
-
593
- #: includes/settings/tabs/wps-general.php:177
594
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:418
595
- #: wp-statistics.php:516
596
- msgid "Pages"
597
- msgstr "Stránky"
598
-
599
- #: includes/settings/tabs/wps-general.php:194
600
- msgid "Track all pages"
601
- msgstr "Sledovat všechny stránky"
602
-
603
- #: includes/settings/tabs/wps-general.php:209
604
- msgid "Strip parameters from URI"
605
- msgstr ""
606
-
607
- #: includes/settings/tabs/wps-general.php:215
608
- msgid "This will remove anything after the ? in a URL."
609
- msgstr ""
610
-
611
- #: includes/settings/tabs/wps-general.php:223
612
- msgid "Disable hits column in post/pages list"
613
- msgstr "Zakázat hity sloupec v seznamu post/stránky"
614
-
615
- #: includes/settings/tabs/wps-general.php:234
616
- msgid "Miscellaneous"
617
- msgstr "Různé"
618
-
619
- #: includes/settings/tabs/wps-general.php:239
620
- msgid "Show stats in menu bar"
621
- msgstr "Zobrazit statistiky v menu baru"
622
-
623
- #: includes/settings/tabs/wps-general.php:244
624
- msgid "No"
625
- msgstr "Ne"
626
-
627
- #: includes/settings/tabs/wps-general.php:245
628
- msgid "Yes"
629
- msgstr "Ano"
630
-
631
- #: includes/settings/tabs/wps-general.php:247
632
- msgid "Show stats in admin menu bar"
633
- msgstr "Zobrazit statistiku v admin menu baru"
634
-
635
- #: includes/settings/tabs/wps-general.php:253
636
- msgid "Hide admin notices about non active features"
637
- msgstr "SKrýt admin oznámení o neaktivních vlastnostech"
638
-
639
- #: includes/settings/tabs/wps-general.php:259
640
- msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
641
- msgstr "Ve výchozím nastavení WP Statistics zobrazí výstrahu, pokud některý ze základních funkcí jsou zakázány na každé stránce správce, tato možnost zakáže tato oznámení."
642
-
643
- #: includes/settings/tabs/wps-general.php:265
644
- msgid "Delete the manual"
645
- msgstr "Odstranit manuál"
646
-
647
- #: includes/settings/tabs/wps-general.php:271
648
- 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."
649
- msgstr "Ve výchozím nastavení ukládá statistiky WP admin ruční v adresáři plugin (~ 5 meg), je-li tato možnost povolena, bude odstraněn dnes a během upgrade v budoucnu."
650
-
651
- #: includes/settings/tabs/wps-general.php:276
652
- msgid "Search Engines"
653
- msgstr ""
654
-
655
- #: includes/settings/tabs/wps-general.php:293
656
- msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
657
- msgstr "Zakázání všech vyhledávačů není dovoleno, to povede ve všech vyhledávačích je aktivní."
658
-
659
- #: includes/settings/tabs/wps-general.php:308
660
- msgid "disable"
661
- msgstr "vypnout"
662
-
663
- #: includes/settings/tabs/wps-general.php:309
664
- msgid "Disable %s from data collection and reporting."
665
- msgstr "Zakážete %s ze shromažďování údajů a výkaznictví."
666
-
667
- #: includes/settings/tabs/wps-general.php:315
668
- msgid "Charts"
669
- msgstr "Grafy"
670
-
671
- #: includes/settings/tabs/wps-general.php:320
672
- msgid "Include totals"
673
- msgstr "Zahrnout součty"
674
-
675
- #: includes/settings/tabs/wps-general.php:326
676
- msgid "Add a total line to charts with multiple values, like the search engine referrals"
677
- msgstr "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač doporučováním"
678
-
679
- #: includes/settings/tabs/wps-externals.php:32
680
- msgid "GeoIP settings"
681
- msgstr "GeoIP nastavení"
682
-
683
- #: includes/settings/tabs/wps-externals.php:37
684
- msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
685
- msgstr "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici od %s."
686
-
687
- #: includes/settings/tabs/wps-externals.php:47
688
- msgid "GeoIP collection"
689
- msgstr "GeoIP kolekce"
690
-
691
- #: includes/settings/tabs/wps-externals.php:53
692
- msgid "For get more information and location (country) from visitor, enable this feature."
693
- msgstr "Zapněte tuto vlastnost pro získání více informací a lokace (země) návštěvníka."
694
-
695
- #: includes/settings/tabs/wps-externals.php:59
696
- msgid "Update GeoIP Info"
697
- msgstr "Aktualizovat GeoIP Info"
698
-
699
- #: includes/settings/tabs/wps-externals.php:64
700
- msgid "Download GeoIP Database"
701
- msgstr "Stáhnout GeoIP Databázi"
702
-
703
- #: includes/settings/tabs/wps-externals.php:71
704
- msgid "Schedule monthly update of GeoIP DB"
705
- msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
706
-
707
- #: includes/settings/tabs/wps-externals.php:97
708
- msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
709
- msgstr "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
710
-
711
- #: includes/settings/tabs/wps-externals.php:98
712
- msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
713
- msgstr "Tato možnost bude také stáhnout databáze, je-li místní velikost souboru je menší než 1 KB (což obvykle znamená, že se zakázaným inzerováním, který je dodáván s plugin je stále na svém místě)."
714
-
715
- #: includes/settings/tabs/wps-externals.php:104
716
- msgid "Populate missing GeoIP after update of GeoIP DB"
717
- msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
718
-
719
- #: includes/settings/tabs/wps-externals.php:110
720
- msgid "Update any missing GeoIP data after downloading a new database."
721
- msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
722
-
723
- #: includes/settings/tabs/wps-externals.php:116
724
- msgid "Country code for private IP addresses"
725
- msgstr ""
726
-
727
- #: includes/settings/tabs/wps-externals.php:121
728
- msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
729
- msgstr ""
730
-
731
- #: includes/settings/tabs/wps-externals.php:132
732
- msgid "GeoIP collection is disabled due to the following reasons:"
733
- msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
734
-
735
- #: includes/settings/tabs/wps-externals.php:135
736
- msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
737
- msgstr "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je vlastnost vypnuta"
738
-
739
- #: includes/settings/tabs/wps-externals.php:140
740
- msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
741
- msgstr "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
742
-
743
- #: includes/settings/tabs/wps-externals.php:146
744
- msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
745
- msgstr "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
746
-
747
- #: includes/settings/tabs/wps-externals.php:152
748
- msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
749
- msgstr "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový režim povolen!"
750
-
751
- #: includes/settings/tabs/wps-maintenance.php:20
752
- msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
753
- msgstr "To bude trvale odstranit data z databáze každý den, jste si jisti, že chcete povolit tuto možnost?"
754
-
755
- #: includes/settings/tabs/wps-maintenance.php:52
756
- msgid "Days"
757
- msgstr "Dny"
758
-
759
- #: includes/settings/tabs/wps-maintenance.php:53
760
- msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
761
- msgstr "Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatné hodnoty zakáže každodenní údržbu."
762
-
763
- #: includes/settings/tabs/wps-notifications.php:44
764
- msgid "Common Report Options"
765
- msgstr ""
766
-
767
- #: includes/settings/tabs/wps-notifications.php:49
768
- msgid "E-mail addresses"
769
- msgstr "E-mail adresy"
770
-
771
- #: includes/settings/tabs/wps-notifications.php:54
772
- msgid "A comma separated list of e-mail addresses to send reports to."
773
- msgstr ""
774
-
775
- #: includes/settings/tabs/wps-notifications.php:59
776
- msgid "Update Reports"
777
- msgstr ""
778
-
779
- #: includes/log/exclusions.php:24
780
- #: includes/settings/tabs/wps-notifications.php:64
781
- msgid "Browscap"
782
- msgstr ""
783
-
784
- #: includes/settings/tabs/wps-notifications.php:70
785
- msgid "Send a report whenever the browscap.ini is updated."
786
- msgstr ""
787
-
788
- #: includes/log/exclusions.php:24
789
- #: includes/settings/tabs/wps-notifications.php:76
790
- msgid "GeoIP"
791
- msgstr "GeoIP"
792
-
793
- #: includes/settings/tabs/wps-notifications.php:82
794
- msgid "Send a report whenever the GeoIP database is updated."
795
- msgstr ""
796
-
797
- #: includes/settings/tabs/wps-notifications.php:88
798
- msgid "Pruning"
799
- msgstr ""
800
-
801
- #: includes/settings/tabs/wps-notifications.php:94
802
- msgid "Send a report whenever the pruning of database is run."
803
- msgstr ""
804
-
805
- #: includes/settings/tabs/wps-notifications.php:100
806
- msgid "Upgrade"
807
- msgstr ""
808
-
809
- #: includes/settings/tabs/wps-notifications.php:106
810
- msgid "Send a report whenever the plugin is upgraded."
811
- msgstr ""
812
-
813
- #: includes/settings/tabs/wps-notifications.php:111
814
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
815
- msgid "Statistical reporting"
816
- msgstr "Statistický reporting"
817
-
818
- #: includes/settings/tabs/wps-notifications.php:129
819
- msgid "Schedule"
820
- msgstr "Plán"
821
-
822
- #: includes/settings/tabs/wps-notifications.php:153
823
- msgid "Select how often to receive statistical report."
824
- msgstr ""
825
-
826
- #: includes/settings/tabs/wps-notifications.php:159
827
- msgid "Send reports via"
828
- msgstr "Zaslat reporty via"
829
-
830
- #: includes/settings/tabs/wps-notifications.php:165
831
- msgid "Email"
832
- msgstr "Email"
833
-
834
- #: includes/settings/tabs/wps-notifications.php:167
835
- msgid "SMS"
836
- msgstr "SMS"
837
-
838
- #: includes/settings/tabs/wps-notifications.php:170
839
- msgid "Select delivery method for statistical report."
840
- msgstr ""
841
-
842
- #: includes/settings/tabs/wps-notifications.php:173
843
- msgid "Note: To send SMS text messages please install the %s plugin."
844
- msgstr "Poznámka: Poslat SMS textové zprávy prosím nainstalovat zásuvný modul %s."
845
-
846
- #: includes/settings/tabs/wps-notifications.php:173
847
- msgid "WordPress SMS"
848
- msgstr "WordPress SMS"
849
-
850
- #: includes/settings/tabs/wps-notifications.php:180
851
- msgid "Report body"
852
- msgstr "Tělo reportu"
853
-
854
- #: includes/settings/tabs/wps-notifications.php:185
855
- msgid "Enter the contents of the report."
856
- msgstr ""
857
-
858
- #: includes/settings/tabs/wps-notifications.php:187
859
- msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
860
- msgstr ""
861
-
862
- #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
863
- #: widget.php:247 wp-statistics.php:621
864
- msgid "User Online"
865
- msgstr "Online uživatelé"
866
-
867
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
868
- #: widget.php:253
869
- msgid "Today Visitor"
870
- msgstr "Dnešní návštěvník"
871
-
872
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
873
- #: widget.php:250
874
- msgid "Today Visit"
875
- msgstr "Dnešní návštěva"
876
-
877
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
878
- #: widget.php:259
879
- msgid "Yesterday Visitor"
880
- msgstr "Včerejší návštěvník"
881
-
882
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
883
- msgid "Yesterday Visit"
884
- msgstr "Včerejší návštěva"
885
-
886
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
887
- #: widget.php:274
888
- msgid "Total Visitor"
889
- msgstr "Celkem návštěvníků"
890
-
891
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
892
- #: widget.php:271
893
- msgid "Total Visit"
894
- msgstr "Celkem návštěv"
895
-
896
- #: shortcode.php:175
897
- msgid "None"
898
- msgstr "Žádný"
899
-
900
- #: includes/settings/wps-settings.php:108
901
- msgid "About"
902
- msgstr "O"
903
-
904
- #: includes/settings/tabs/wps-overview-display.php:20
905
- msgid "Dashboard"
906
- msgstr ""
907
-
908
- #: includes/settings/tabs/wps-overview-display.php:24
909
- #: includes/settings/tabs/wps-overview-display.php:44
910
- #: includes/settings/tabs/wps-overview-display.php:64
911
- msgid "The following items are global to all users."
912
- msgstr ""
913
-
914
- #: includes/settings/tabs/wps-overview-display.php:29
915
- msgid "Disable dashboard widgets"
916
- msgstr ""
917
-
918
- #: includes/settings/tabs/wps-overview-display.php:35
919
- msgid "Disable the dashboard widgets."
920
- msgstr ""
921
-
922
- #: includes/settings/tabs/wps-overview-display.php:40
923
- msgid "Page/Post Editor"
924
- msgstr ""
925
-
926
- #: includes/settings/tabs/wps-overview-display.php:49
927
- msgid "Disable post/page editor widget"
928
- msgstr ""
929
-
930
- #: includes/settings/tabs/wps-overview-display.php:55
931
- msgid "Disable the page/post editor widget."
932
- msgstr ""
933
-
934
- #: includes/settings/tabs/wps-overview-display.php:69
935
- msgid "Map type"
936
- msgstr "Typ mapy"
937
-
938
- #: includes/functions/functions.php:429
939
- #: includes/settings/tabs/wps-overview-display.php:75
940
- msgid "Google"
941
- msgstr "Google"
942
-
943
- #: includes/settings/tabs/wps-overview-display.php:75
944
- msgid "JQVMap"
945
- msgstr "JQVMap"
946
-
947
- #: includes/settings/tabs/wps-overview-display.php:82
948
- msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
949
- msgstr "Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv (požaduje přístup na Google(. "
950
-
951
- #: includes/settings/tabs/wps-overview-display.php:83
952
- msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
953
- msgstr " \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení návštěv (vyžaduje externí služby)."
954
-
955
- #: includes/settings/tabs/wps-overview-display.php:89
956
- msgid "Disable map"
957
- msgstr "Vypnout mapu"
958
-
959
- #: includes/settings/tabs/wps-overview-display.php:95
960
- msgid "Disable the map display"
961
- msgstr "Vypnout zobrazení mapy"
962
-
963
- #: includes/settings/tabs/wps-overview-display.php:101
964
- msgid "Get country location from Google"
965
- msgstr "Získat polohu země z Google"
966
-
967
- #: includes/settings/tabs/wps-overview-display.php:107
968
- msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
969
- msgstr "Tato funkce může způsobit snížení výkonu při prohlížení statistiky a je platná pouze pokud typ mapy je nastavena na \"Google\"."
970
-
971
- #: includes/settings/tabs/wps-removal.php:15
972
- msgid "WP Statisitcs Removal"
973
- msgstr ""
974
-
975
- #: includes/settings/tabs/wps-removal.php:20
976
- 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."
977
- msgstr ""
978
-
979
- #: includes/settings/tabs/wps-removal.php:23
980
- 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."
981
- msgstr ""
982
-
983
- #: includes/settings/tabs/wps-removal.php:29
984
- msgid "Remove data and settings"
985
- msgstr ""
986
-
987
- #: includes/settings/tabs/wps-removal.php:34
988
- msgid "Remove"
989
- msgstr ""
990
-
991
- #: includes/settings/tabs/wps-removal.php:35
992
- msgid "Remove data and settings, this action cannot be undone."
993
- msgstr ""
994
-
995
- #: includes/settings/wps-settings.php:100
996
- msgid "General"
997
- msgstr "Obecné"
998
-
999
- #: includes/settings/wps-settings.php:101
1000
- msgid "Notifications"
1001
- msgstr ""
1002
-
1003
- #: includes/settings/wps-settings.php:102
1004
- msgid "Dashboard/Overview"
1005
- msgstr ""
1006
-
1007
- #: includes/settings/wps-settings.php:106
1008
- msgid "Maintenance"
1009
- msgstr "Údržba"
1010
-
1011
- #: includes/settings/wps-settings.php:107
1012
- msgid "Removal"
1013
- msgstr ""
1014
-
1015
- #: includes/settings/tabs/wps-access-level.php:85
1016
- #: includes/settings/tabs/wps-exclusions.php:234
1017
- #: includes/settings/tabs/wps-externals.php:286
1018
- #: includes/settings/tabs/wps-general.php:349
1019
- #: includes/settings/tabs/wps-maintenance.php:88
1020
- #: includes/settings/tabs/wps-notifications.php:201
1021
- #: includes/settings/tabs/wps-overview-display.php:116
1022
- #: includes/settings/tabs/wps-removal.php:42
1023
- msgid "Update"
1024
- msgstr "Aktualizovat"
1025
-
1026
- #: schedule.php:10
1027
- msgid "Once Weekly"
1028
- msgstr "Jednou týdně"
1029
-
1030
- #: schedule.php:17
1031
- msgid "Once Every 2 Weeks"
1032
- msgstr "Jednou za 2 týdny"
1033
-
1034
- #: schedule.php:24
1035
- msgid "Once Every 4 Weeks"
1036
- msgstr "Jednou za 4 týdny"
1037
-
1038
- #: widget.php:14 wp-statistics.php:408 wp-statistics.php:469
1039
- msgid "Statistics"
1040
- msgstr "Statistiky"
1041
-
1042
- #: widget.php:15
1043
- msgid "Show site stats in sidebar."
1044
- msgstr "Zobrazit statistiky stránek v postranním panelu."
1045
-
1046
- #: widget.php:73 widget.php:262
1047
- msgid "Week Visit"
1048
- msgstr "Týdenní návštěva"
1049
-
1050
- #: widget.php:80 widget.php:265
1051
- msgid "Month Visit"
1052
- msgstr "Měsíční návštěva"
1053
-
1054
- #: widget.php:87 widget.php:268
1055
- msgid "Years Visit"
1056
- msgstr "Roční návštěvnost"
1057
-
1058
- #: widget.php:108 widget.php:277
1059
- msgid "Total Page Views"
1060
- msgstr "Celkový počet zobrazení stránky"
1061
-
1062
- #: widget.php:116
1063
- msgid "Search Engine referred"
1064
- msgstr "Vyhledávač podle"
1065
-
1066
- #: widget.php:123 widget.php:300
1067
- msgid "Total Posts"
1068
- msgstr "Celkem příspěvků"
1069
-
1070
- #: widget.php:130 widget.php:303
1071
- msgid "Total Pages"
1072
- msgstr "Celkem stránek"
1073
-
1074
- #: widget.php:137 widget.php:306
1075
- msgid "Total Comments"
1076
- msgstr "Celkem komentářů"
1077
-
1078
- #: widget.php:144 widget.php:309
1079
- msgid "Total Spams"
1080
- msgstr "Celkem Spamů"
1081
-
1082
- #: widget.php:151 widget.php:312
1083
- msgid "Total Users"
1084
- msgstr "Celkem uživatelů"
1085
-
1086
- #: widget.php:158 widget.php:315
1087
- msgid "Average Posts"
1088
- msgstr "Průměr příspěvků"
1089
-
1090
- #: widget.php:165 widget.php:318
1091
- msgid "Average Comments"
1092
- msgstr "Průměr komentářů"
1093
-
1094
- #: widget.php:172 widget.php:321
1095
- msgid "Average Users"
1096
- msgstr "Průměr uživatelů"
1097
-
1098
- #: shortcode.php:151 widget.php:179 widget.php:324
1099
- msgid "Last Post Date"
1100
- msgstr "Datum posledního příspěvku"
1101
-
1102
- #: widget.php:240
1103
- msgid "Name"
1104
- msgstr "Jméno"
1105
-
1106
- #: widget.php:244
1107
- msgid "Items"
1108
- msgstr "Položky"
1109
-
1110
- #: widget.php:256 wp-statistics.php:646
1111
- msgid "Yesterday visit"
1112
- msgstr "Včera návštěv"
1113
-
1114
- #: widget.php:280
1115
- msgid "Search Engine Referred"
1116
- msgstr "Vyhledávač podle"
1117
-
1118
- #: widget.php:283
1119
- msgid "Select type of search engine"
1120
- msgstr "Vyberte typ vyhledávače"
1121
-
1122
- #: wp-statistics.php:122
1123
- msgid "WP Statistics has been removed, please disable and delete it."
1124
- msgstr ""
1125
-
1126
- #. Plugin Name of the plugin/theme
1127
- #: wp-statistics.php:54
1128
- msgid "WP Statistics"
1129
- msgstr "WP Statistiky"
1130
-
1131
- #. Description of the plugin/theme
1132
- #: wp-statistics.php:55
1133
- msgid "Complete statistics for your WordPress site."
1134
- msgstr "Kompletní statistiky pro váš web WordPress."
1135
-
1136
- #: wp-statistics.php:313 wp-statistics.php:428 wp-statistics.php:523
1137
- msgid "Settings"
1138
- msgstr "Nastavení"
1139
-
1140
- #: wp-statistics.php:325
1141
- msgid "Click here to visit the plugin on WordPress.org"
1142
- msgstr "Chcete-li navštívit plugin WordPress.org"
1143
-
1144
- #: wp-statistics.php:325
1145
- msgid "Visit WordPress.org page"
1146
- msgstr "Navštivte stránku WordPress.org"
1147
-
1148
- #: wp-statistics.php:328
1149
- msgid "Click here to rate and review this plugin on WordPress.org"
1150
- msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
1151
-
1152
- #: wp-statistics.php:328
1153
- msgid "Rate this plugin"
1154
- msgstr "Ohodnoť tento plugin"
1155
-
1156
- #: wp-statistics.php:372
1157
- msgid "WP Statistics - Hits"
1158
- msgstr "WP Statistics - Hits"
1159
-
1160
- #: wp-statistics.php:411 wp-statistics.php:472 wp-statistics.php:510
1161
- msgid "Overview"
1162
- msgstr "Přehled"
1163
-
1164
- #: wp-statistics.php:417 wp-statistics.php:515
1165
- msgid "Online"
1166
- msgstr ""
1167
-
1168
- #: wp-statistics.php:419 wp-statistics.php:517
1169
- msgid "Referrers"
1170
- msgstr ""
1171
-
1172
- #: shortcode.php:142 wp-statistics.php:420 wp-statistics.php:518
1173
- msgid "Searches"
1174
- msgstr "Vyhledávání"
1175
-
1176
- #: wp-statistics.php:421 wp-statistics.php:519
1177
- msgid "Search Words"
1178
- msgstr "Hledaná slova"
1179
-
1180
- #: wp-statistics.php:422 wp-statistics.php:520
1181
- msgid "Top Visitors Today"
1182
- msgstr ""
1183
-
1184
- #: wp-statistics.php:427 wp-statistics.php:522
1185
- msgid "Optimization"
1186
- msgstr "Optimalizace"
1187
-
1188
- #: wp-statistics.php:433 wp-statistics.php:486
1189
- msgid "Manual"
1190
- msgstr "Manuál"
1191
-
1192
- #: wp-statistics.php:501
1193
- msgid "Site"
1194
- msgstr ""
1195
-
1196
- #: wp-statistics.php:502
1197
- msgid "Options"
1198
- msgstr ""
1199
-
1200
- #: wp-statistics.php:628
1201
- msgid "Today visitor"
1202
- msgstr "Dnešní návštěvník"
1203
-
1204
- #: wp-statistics.php:634
1205
- msgid "Today visit"
1206
- msgstr "Dnešní návštěva"
1207
-
1208
- #: wp-statistics.php:640
1209
- msgid "Yesterday visitor"
1210
- msgstr "Včera návštěvníků"
1211
-
1212
- #: wp-statistics.php:652
1213
- msgid "View Stats"
1214
- msgstr "Zobrazit statistiky"
1215
-
1216
- #: wp-statistics.php:676
1217
- msgid "Download ODF file"
1218
- msgstr "Stáhnout soubor ODF"
1219
-
1220
- #: wp-statistics.php:677
1221
- msgid "Download HTML file"
1222
- msgstr "Stáhnout HTML soubor"
1223
-
1224
- #: wp-statistics.php:681
1225
- msgid "Manual file not found."
1226
- msgstr "Ruční soubor nebyl nalezen."
1227
-
1228
- #: wp-statistics.php:748 wp-statistics.php:878 wp-statistics.php:913
1229
- msgid "You do not have sufficient permissions to access this page."
1230
- msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
1231
-
1232
- #: wp-statistics.php:301
1233
- msgid "WP Statistics %s installed on"
1234
- msgstr ""
1235
-
1236
- #: wps-updates.php:39
1237
- msgid "Error downloading GeoIP database from: %s - %s"
1238
- msgstr "Chyba při stahování GeoIP databáze od: %s - %s"
1239
-
1240
- #: wps-updates.php:50
1241
- msgid "Error could not open downloaded GeoIP database for reading: %s"
1242
- msgstr "Chyba nelze otevřít stažené GeoIP databázi pro čtení: %s"
1243
-
1244
- #: wps-updates.php:57
1245
- msgid "Error could not open destination GeoIP database for writing %s"
1246
- msgstr "Chyba nelze otevřít cílovou databázi GeoIP pro psaní %s"
1247
-
1248
- #: wps-updates.php:73
1249
- msgid "GeoIP Database updated successfully!"
1250
- msgstr "GeoIP Databáze byla úspěšně aktualizována!"
1251
-
1252
- #: wps-updates.php:98
1253
- msgid "GeoIP update on"
1254
- msgstr ""
1255
-
1256
- #: wps-updates.php:165
1257
- msgid "Error downloading browscap database from: %s - %s"
1258
- msgstr "Chyba při stahování browscap databáze od: %s - %s"
1259
-
1260
- #: wps-updates.php:274
1261
- msgid "browscap database updated successfully!"
1262
- msgstr "Browscap databáze úspěšně aktualizován!"
1263
-
1264
- #: wps-updates.php:284
1265
- msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1266
- msgstr ""
1267
-
1268
- #: wps-updates.php:292
1269
- msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1270
- msgstr ""
1271
-
1272
- #: wps-updates.php:314
1273
- msgid "browscap already at current version!"
1274
- msgstr "Browscap již v aktuální verzi!"
1275
-
1276
- #: wps-updates.php:327
1277
- msgid "Browscap.ini update on"
1278
- msgstr ""
1279
-
1280
- #. Plugin URI of the plugin/theme
1281
- #. Author URI of the plugin/theme
1282
- msgid "http://wp-statistics.com/"
1283
- msgstr "http://WP-STATISTICS.com/"
1284
-
1285
- #. Author of the plugin/theme
1286
- msgid "Mostafa Soufi & Greg Ross"
1287
- msgstr "Mostafa Lucie & Greg Ross"
1288
-
1289
- #: dashboard.php:56
1290
- msgid "Quick Stats"
1291
- msgstr ""
1292
-
1293
- #: dashboard.php:57 includes/log/widgets/browsers.php:41
1294
- msgid "Top 10 Browsers"
1295
- msgstr "Top 10 Prohlížečů"
1296
-
1297
- #: dashboard.php:58 wp-statistics.php:457
1298
- msgid "Top 10 Countries"
1299
- msgstr "Pořadí"
1300
-
1301
- #: dashboard.php:59
1302
- msgid "Today's Visitor Map"
1303
- msgstr ""
1304
-
1305
- #: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
1306
- #: wp-statistics.php:446
1307
- msgid "Hit Statistics"
1308
- msgstr "Statistika hitů"
1309
-
1310
- #: dashboard.php:61 wp-statistics.php:450
1311
- msgid "Top 10 Pages"
1312
- msgstr "Top 10 stránek"
1313
-
1314
- #: dashboard.php:62 includes/log/last-visitor.php:36 wp-statistics.php:451
1315
- msgid "Recent Visitors"
1316
- msgstr "Aktuální návštěvníci"
1317
-
1318
- #: dashboard.php:63 includes/log/top-referring.php:59
1319
- #: includes/log/top-referring.php:81 wp-statistics.php:456
1320
- msgid "Top Referring Sites"
1321
- msgstr "Nejlepší odkazující stránky"
1322
-
1323
- #: dashboard.php:64 includes/log/widgets/quickstats.php:75
1324
- #: includes/log/widgets/summary.php:75 wp-statistics.php:448
1325
- msgid "Search Engine Referrals"
1326
- msgstr "Vyhledávací Engine odkazy"
1327
-
1328
- #: dashboard.php:65 wp-statistics.php:454
1329
- msgid "Summary"
1330
- msgstr "Souhrn"
1331
-
1332
- #: dashboard.php:66 includes/log/last-search.php:31 wp-statistics.php:449
1333
- msgid "Latest Search Words"
1334
- msgstr "Poslední vyhledávaný slova"
1335
-
1336
- #: dashboard.php:67
1337
- msgid "Top 10 Visitors Today"
1338
- msgstr ""
1339
-
1340
- #: editor.php:63
1341
- msgid "This post is not yet published."
1342
- msgstr ""
1343
-
1344
- #: includes/functions/geoip-populate.php:24
1345
- msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1346
- msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
1347
-
1348
- #: includes/functions/geoip-populate.php:48
1349
- msgid "Updated %s GeoIP records in the visitors database."
1350
- msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
1351
-
1352
- #: includes/functions/purge.php:21 includes/functions/purge.php:39
1353
- #: includes/functions/purge.php:50 includes/functions/purge.php:61
1354
- #: includes/functions/purge.php:94
1355
- msgid "%s data older than %s days purged successfully."
1356
- msgstr "%s data starší než %s dnφ úspěšně vyprázdněna."
1357
-
1358
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
1359
- #: includes/functions/purge.php:52 includes/functions/purge.php:63
1360
- #: includes/functions/purge.php:96
1361
- msgid "No records found to purge from %s!"
1362
- msgstr "Žádné záznamy nalezeny očistit od %s!"
1363
-
1364
- #: includes/functions/purge-hits.php:45 includes/functions/purge.php:109
1365
- msgid "Database pruned on"
1366
- msgstr ""
1367
-
1368
- #: includes/functions/purge.php:114
1369
- msgid "Please select a value over 30 days."
1370
- msgstr "Prosím vyber hodnotu nad 30 dní."
1371
-
1372
- #: includes/log/all-browsers.php:21
1373
- msgid "Browser Statistics"
1374
- msgstr "Statistiky prohlížečů"
1375
-
1376
- #: includes/log/all-browsers.php:29 includes/log/all-browsers.php:113
1377
- #: includes/log/all-browsers.php:248 includes/log/exclusions.php:72
1378
- #: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
1379
- #: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
1380
- #: includes/log/last-visitor.php:67 includes/log/online.php:17
1381
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
1382
- #: includes/log/top-countries.php:26 includes/log/top-pages.php:28
1383
- #: includes/log/top-pages.php:148 includes/log/top-referring.php:77
1384
- #: includes/log/top-visitors.php:40
1385
- msgid "Click to toggle"
1386
- msgstr "Klik na vypínač"
1387
-
1388
- #: includes/log/all-browsers.php:30 wp-statistics.php:413 wp-statistics.php:455
1389
- #: wp-statistics.php:511
1390
- msgid "Browsers"
1391
- msgstr "Prohlížeče"
1392
-
1393
- #: includes/log/all-browsers.php:57
1394
- msgid "Browsers by type"
1395
- msgstr "Prohlížeče podle typu"
1396
-
1397
- #: includes/log/all-browsers.php:114 includes/log/widgets/top.visitors.php:18
1398
- #: includes/optimization/tabs/wps-optimization-resources.php:302
1399
- msgid "Platform"
1400
- msgstr "Platforma"
1401
-
1402
- #: includes/log/all-browsers.php:141
1403
- msgid "Browsers by platform"
1404
- msgstr "Platforma prohlížečů"
1405
-
1406
- #: includes/log/all-browsers.php:249
1407
- msgid "%s Version"
1408
- msgstr "%s Verze"
1409
-
1410
- #: includes/log/exclusions.php:8
1411
- msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1412
- msgstr "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výsledky níže nemusí odrážet aktuální statistiky!"
1413
-
1414
- #: includes/log/exclusions.php:64
1415
- msgid "Exclusions Statistics"
1416
- msgstr "Vyloučení statistiky"
1417
-
1418
- #: includes/functions/functions.php:959
1419
- msgid "10 Days"
1420
- msgstr "10 Dnů"
1421
-
1422
- #: includes/functions/functions.php:959
1423
- msgid "20 Days"
1424
- msgstr "20 Dnů"
1425
-
1426
- #: includes/functions/functions.php:959
1427
- msgid "30 Days"
1428
- msgstr "30 Dnů"
1429
-
1430
- #: includes/functions/functions.php:959
1431
- msgid "2 Months"
1432
- msgstr "2 Měsíce"
1433
-
1434
- #: includes/functions/functions.php:959
1435
- msgid "3 Months"
1436
- msgstr "3 Měsíce"
1437
-
1438
- #: includes/functions/functions.php:959
1439
- msgid "6 Months"
1440
- msgstr "6 Měsíců"
1441
-
1442
- #: includes/functions/functions.php:959
1443
- msgid "9 Months"
1444
- msgstr "9 Měsíců"
1445
-
1446
- #: includes/functions/functions.php:959
1447
- msgid "1 Year"
1448
- msgstr "1 Rok"
1449
-
1450
- #: includes/log/exclusions.php:73
1451
- msgid "Exclusions Statistical Chart"
1452
- msgstr "Statistický graf vyjímek"
1453
-
1454
- #: includes/log/exclusions.php:95
1455
- msgid "Excluded hits in the last"
1456
- msgstr "Vyloučené hity v posledních"
1457
-
1458
- #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1459
- #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:42
1460
- #: includes/log/widgets/search.php:42
1461
- #: includes/optimization/tabs/wps-optimization-purging.php:208
1462
- msgid "days"
1463
- msgstr "dnů"
1464
-
1465
- #: includes/log/exclusions.php:116
1466
- msgid "Number of excluded hits"
1467
- msgstr "Počet vyjmutých hitů"
1468
-
1469
- #: includes/log/hit-statistics.php:27
1470
- msgid "Hits Statistics Chart"
1471
- msgstr "Graf statistiky přístupů"
1472
-
1473
- #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:42
1474
- msgid "Hits in the last"
1475
- msgstr "Hity v posledních"
1476
-
1477
- #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:63
1478
- msgid "Number of visits and visitors"
1479
- msgstr "Počet návštěv a návštěvníků"
1480
-
1481
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1482
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:24
1483
- #: includes/log/widgets/summary.php:24
1484
- msgid "Visit"
1485
- msgstr "Návštěva"
1486
-
1487
- #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1488
- #: includes/log/widgets/hits.php:77 includes/log/widgets/quickstats.php:23
1489
- #: includes/log/widgets/summary.php:23
1490
- msgid "Visitor"
1491
- msgstr "Návštěvník"
1492
-
1493
- #: includes/log/last-search.php:65
1494
- msgid "Latest Search Word Statistics"
1495
- msgstr "Stastiky posledně vyhledávaných slov"
1496
-
1497
- #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1498
- #: includes/log/online.php:50 includes/log/widgets/google.map.php:68
1499
- #: includes/log/widgets/jqv.map.php:55 includes/log/widgets/recent.php:14
1500
- #: includes/log/widgets/words.php:27
1501
- msgid "#hash#"
1502
- msgstr "#hash #"
1503
-
1504
- #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1505
- #: includes/log/online.php:55 includes/log/top-referring.php:112
1506
- #: includes/log/widgets/recent.php:19 includes/log/widgets/words.php:42
1507
- #: includes/settings/tabs/wps-overview-display.php:60
1508
- msgid "Map"
1509
- msgstr "Mapa"
1510
-
1511
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1512
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1513
- #: includes/log/top-referring.php:153
1514
- msgid "Page"
1515
- msgstr "Stránka"
1516
-
1517
- #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1518
- #: includes/log/online.php:109 includes/log/top-pages.php:198
1519
- #: includes/log/top-referring.php:153
1520
- msgid "From"
1521
- msgstr "Od"
1522
-
1523
- #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1524
- #: includes/log/top-referring.php:67 includes/log/top-referring.php:70
1525
- #: includes/optimization/tabs/wps-optimization-purging.php:192 widget.php:296
1526
- msgid "All"
1527
- msgstr "Všechno"
1528
-
1529
- #: includes/log/last-visitor.php:68
1530
- msgid "Recent Visitor Statistics"
1531
- msgstr "Nedávné statistiky návštěvnosti"
1532
-
1533
- #: includes/log/online.php:11 includes/log/online.php:18
1534
- msgid "Online Users"
1535
- msgstr ""
1536
-
1537
- #: includes/log/online.php:75
1538
- msgid "Online for "
1539
- msgstr ""
1540
-
1541
- #: includes/log/page-statistics.php:26
1542
- msgid "Page Trend for Post ID"
1543
- msgstr "Stránky Trend pro ID příspěvku"
1544
-
1545
- #: includes/log/page-statistics.php:35
1546
- msgid "Page Trend"
1547
- msgstr "Stránky Trend"
1548
-
1549
- #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1550
- msgid "Search Engine Referral Statistics"
1551
- msgstr "Vyhledávací Engine referenční Statistika"
1552
-
1553
- #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:42
1554
- msgid "Search engine referrals in the last"
1555
- msgstr "Vyhledávací stroj doporučení v posledních"
1556
-
1557
- #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:63
1558
- msgid "Number of referrals"
1559
- msgstr "Počet odkazů"
1560
-
1561
- #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1562
- #: includes/log/widgets/quickstats.php:58
1563
- #: includes/log/widgets/quickstats.php:105 includes/log/widgets/search.php:77
1564
- #: includes/log/widgets/summary.php:58 includes/log/widgets/summary.php:105
1565
- msgid "Total"
1566
- msgstr "Celkem"
1567
-
1568
- #: includes/log/top-countries.php:18 includes/log/top-countries.php:27
1569
- msgid "Top Countries"
1570
- msgstr "Top zemí"
1571
-
1572
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:9
1573
- #: includes/log/widgets/top.visitors.php:11
1574
- msgid "Rank"
1575
- msgstr "Vlajka"
1576
-
1577
- #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:10
1578
- #: includes/log/widgets/top.visitors.php:13
1579
- msgid "Flag"
1580
- msgstr "Počet návštěvníků"
1581
-
1582
- #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:11
1583
- #: includes/log/widgets/top.visitors.php:14
1584
- msgid "Country"
1585
- msgstr "Země"
1586
-
1587
- #: includes/log/top-countries.php:34 includes/log/widgets/countries.php:12
1588
- msgid "Visitor Count"
1589
- msgstr "Počet návštěvníků"
1590
-
1591
- #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
1592
- msgid "Top Pages"
1593
- msgstr "Nejlepší stránky"
1594
-
1595
- #: includes/log/top-pages.php:29
1596
- msgid "Top 5 Pages Trends"
1597
- msgstr "Top 5 stránek trendy"
1598
-
1599
- #: includes/log/top-pages.php:60
1600
- msgid "Top 5 Page Trending Stats"
1601
- msgstr "Top 5 stránek trendy statistiky"
1602
-
1603
- #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
1604
- msgid "Number of Hits"
1605
- msgstr "Počet přístupů"
1606
-
1607
- #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:13
1608
- msgid "No page title found"
1609
- msgstr "Žádný titulek stránky nalézt"
1610
-
1611
- #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:16
1612
- #: includes/optimization/tabs/wps-optimization-historical.php:37
1613
- #: includes/settings/tabs/wps-general.php:122
1614
- #: includes/settings/tabs/wps-general.php:127 shortcode.php:139
1615
- msgid "Visits"
1616
- msgstr "Návštěvy"
1617
-
1618
- #: includes/log/top-referring.php:4
1619
- msgid "To be added soon"
1620
- msgstr "Brzy bude přidáno"
1621
-
1622
- #: includes/log/top-referring.php:79
1623
- msgid "Referring sites from"
1624
- msgstr "Odkazující stránky od"
1625
-
1626
- #: includes/log/top-referring.php:137 includes/log/widgets/referring.php:29
1627
- msgid "References"
1628
- msgstr "Odkazy"
1629
-
1630
- #: includes/log/top-visitors.php:12
1631
- msgid "Top 100 Visitors Today"
1632
- msgstr ""
1633
-
1634
- #: includes/log/log.php:10
1635
- msgid "About WP Statistics Version %s"
1636
- msgstr "O WP Statistics Verze %s"
1637
-
1638
- #: includes/log/widgets/about.php:11
1639
- msgid "Website"
1640
- msgstr "Web stránky"
1641
-
1642
- #: includes/log/widgets/about.php:12
1643
- msgid "Rate and Review"
1644
- msgstr "Hodnotit a recenzovat"
1645
-
1646
- #: includes/log/widgets/about.php:16
1647
- msgid "More Information"
1648
- msgstr "Více informací"
1649
-
1650
- #: includes/log/widgets/about.php:25 includes/settings/tabs/wps-about.php:12
1651
- msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1652
- msgstr "Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od %s."
1653
-
1654
- #: includes/log/widgets/browsers.php:34
1655
- msgid "Other"
1656
- msgstr "Jiný"
1657
-
1658
- #: wp-statistics.php:445
1659
- msgid "Today Visitors Map"
1660
- msgstr "Dnešní mapa návštšvníků"
1661
-
1662
- #: includes/log/widgets/referring.php:30
1663
- msgid "Address"
1664
- msgstr "Adresa"
1665
-
1666
- #: includes/log/widgets/quickstats.php:12 includes/log/widgets/summary.php:12
1667
- msgid "User(s) Online"
1668
- msgstr "Online uživatelé"
1669
-
1670
- #: includes/log/widgets/quickstats.php:28
1671
- #: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
1672
- #: includes/log/widgets/summary.php:80
1673
- msgid "Today"
1674
- msgstr "Dnes"
1675
-
1676
- #: includes/log/widgets/quickstats.php:34
1677
- #: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
1678
- #: includes/log/widgets/summary.php:81
1679
- msgid "Yesterday"
1680
- msgstr "Včera"
1681
-
1682
- #: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
1683
- msgid "Daily Total"
1684
- msgstr "Denně celkem"
1685
-
1686
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
1687
- msgid "Current Time and Date"
1688
- msgstr "Aktuální čas a datum"
1689
-
1690
- #: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
1691
- msgid "(Adjustment)"
1692
- msgstr "(Nastavení)"
1693
-
1694
- #: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
1695
- msgid "Date: %s"
1696
- msgstr "Datum: %s"
1697
-
1698
- #: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
1699
- msgid "Time: %s"
1700
- msgstr "Čas: %s"
1701
-
1702
- #: includes/log/widgets/top.visitors.php:12
1703
- #: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:337
1704
- #: wp-statistics.php:416 wp-statistics.php:514
1705
- msgid "Hits"
1706
- msgstr "Hity"
1707
-
1708
- #: includes/log/widgets/top.visitors.php:15
1709
- msgid "IP"
1710
- msgstr ""
1711
-
1712
- #: includes/log/widgets/top.visitors.php:17
1713
- msgid "Agent"
1714
- msgstr ""
1715
-
1716
- #: includes/log/widgets/top.visitors.php:19
1717
- #: includes/optimization/tabs/wps-optimization-resources.php:291
1718
- msgid "Version"
1719
- msgstr ""
1720
-
1721
- #: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:284
1722
- #: includes/optimization/wps-optimization.php:6
1723
- msgid "Access denied!"
1724
- msgstr "Přístup zakázán!"
1725
-
1726
- #: ajax.php:31
1727
- msgid "%s agent data deleted successfully."
1728
- msgstr "%s agenta data úspěšně smazána."
1729
-
1730
- #: ajax.php:34
1731
- msgid "No agent data found to remove!"
1732
- msgstr ""
1733
-
1734
- #: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
1735
- msgid "Please select the desired items."
1736
- msgstr "Prosím vyber požadované položky."
1737
-
1738
- #: ajax.php:62
1739
- msgid "%s platform data deleted successfully."
1740
- msgstr "údaje platforma %s úspěšně smazána."
1741
-
1742
- #: ajax.php:65
1743
- msgid "No platform data found to remove!"
1744
- msgstr ""
1745
-
1746
- #: includes/functions/functions.php:1051
1747
- msgid "%s table data deleted successfully."
1748
- msgstr "data tabulky %s úspěšně smazána."
1749
-
1750
- #: includes/functions/functions.php:1055
1751
- msgid "Error, %s not emptied!"
1752
- msgstr "Chyba, %s není vyprázdněno!"
1753
-
1754
- #: includes/optimization/tabs/wps-optimization-database.php:5
1755
- msgid "Database Setup"
1756
- msgstr "Nastavení databáze"
1757
-
1758
- #: includes/optimization/tabs/wps-optimization-database.php:10
1759
- msgid "Re-run Install"
1760
- msgstr "Spusťte znovu instalaci"
1761
-
1762
- #: includes/optimization/tabs/wps-optimization-database.php:14
1763
- msgid "Install Now!"
1764
- msgstr "Nainstalujte nyní!"
1765
-
1766
- #: includes/optimization/tabs/wps-optimization-database.php:15
1767
- 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."
1768
- msgstr "Pokud z nějakého důvodu instalace WP Statistics chybí, databázové tabulky nebo jiné položky jádro, to bude znovu provést instalačního procesu."
1769
-
1770
- #: includes/optimization/tabs/wps-optimization-database.php:20
1771
- msgid "Database Index"
1772
- msgstr "Databáze Index"
1773
-
1774
- #: includes/optimization/tabs/wps-optimization-database.php:25
1775
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1776
- #: wp-statistics.php:414 wp-statistics.php:512
1777
- msgid "Countries"
1778
- msgstr "Země"
1779
-
1780
- #: includes/optimization/tabs/wps-optimization-database.php:42
1781
- #: includes/optimization/tabs/wps-optimization-database.php:74
1782
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1783
- #: includes/optimization/tabs/wps-optimization-updates.php:40
1784
- msgid "Update Now!"
1785
- msgstr "!Aktualizovat nyní"
1786
-
1787
- #: includes/optimization/tabs/wps-optimization-database.php:43
1788
- 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."
1789
- msgstr "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce návštěvníků v případě rohové. Novější instalace se proti tomu bránit s jedinečný index v tabulce. Chcete-li vytvořit index na starší instaluje duplicitní položky musí být odstraněny jako první. Klepnutím na \"Update Now\" prohledá tabulku vistitors, odstranit duplicitní položky a přidat indexu."
1790
-
1791
- #: includes/optimization/tabs/wps-optimization-database.php:44
1792
- #: includes/optimization/tabs/wps-optimization-database.php:108
1793
- msgid "This operation could take a long time on installs with many rows in the visitors table."
1794
- msgstr "Tato operace může trvat dlouhou dobu na nainstaluje s mnoha řádků v tabulce návštěvníků."
1795
-
1796
- #: includes/optimization/tabs/wps-optimization-database.php:50
1797
- 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."
1798
- msgstr "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce návštěvníků v případě rohové. Novější instalace se proti tomu bránit s jedinečný index v tabulce."
1799
-
1800
- #: includes/optimization/tabs/wps-optimization-database.php:51
1801
- #: includes/optimization/tabs/wps-optimization-database.php:83
1802
- #: includes/optimization/tabs/wps-optimization-database.php:114
1803
- msgid "Congratulations, your installation is already up to date, nothing to do."
1804
- msgstr "Gratulujeme vaše instalace je již datum, nic společného."
1805
-
1806
- #: includes/optimization/tabs/wps-optimization-export.php:8
1807
- #: includes/optimization/wps-optimization.php:235
1808
- msgid "Export"
1809
- msgstr "Export"
1810
-
1811
- #: includes/optimization/tabs/wps-optimization-export.php:13
1812
- msgid "Export from"
1813
- msgstr "Export od"
1814
-
1815
- #: includes/optimization/tabs/wps-optimization-export.php:18
1816
- #: includes/optimization/tabs/wps-optimization-export.php:37
1817
- #: includes/optimization/tabs/wps-optimization-purging.php:185
1818
- #: includes/optimization/tabs/wps-optimization-purging.php:242
1819
- #: includes/optimization/tabs/wps-optimization-purging.php:266
1820
- #: includes/settings/tabs/wps-notifications.php:134
1821
- #: includes/settings/tabs/wps-notifications.php:164
1822
- msgid "Please select"
1823
- msgstr "Prosím vyber"
1824
-
1825
- #: includes/optimization/tabs/wps-optimization-export.php:26
1826
- msgid "Select the table for the output file."
1827
- msgstr "Vyberte tabulku pro výstupní soubor."
1828
-
1829
- #: includes/optimization/tabs/wps-optimization-export.php:32
1830
- msgid "Export To"
1831
- msgstr "Exportovat do"
1832
-
1833
- #: includes/optimization/tabs/wps-optimization-export.php:42
1834
- msgid "Select the output file type."
1835
- msgstr "Vyber typ výstupní souboru."
1836
-
1837
- #: includes/optimization/tabs/wps-optimization-export.php:48
1838
- msgid "Include Header Row"
1839
- msgstr "Zahrnout řádek záhlaví"
1840
-
1841
- #: includes/optimization/tabs/wps-optimization-export.php:53
1842
- msgid "Include a header row as the first line of the exported file."
1843
- msgstr "Zahrnout řádek záhlaví jako první řádek v exportovaném souboru."
1844
-
1845
- #: includes/optimization/tabs/wps-optimization-export.php:54
1846
- msgid "Start Now!"
1847
- msgstr "Start Nyní!"
1848
-
1849
- #: includes/optimization/tabs/wps-optimization-historical.php:15
1850
- msgid "Historical Values"
1851
- msgstr ""
1852
-
1853
- #: includes/optimization/tabs/wps-optimization-historical.php:20
1854
- msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1855
- msgstr ""
1856
-
1857
- #: includes/optimization/tabs/wps-optimization-historical.php:26
1858
- #: includes/settings/tabs/wps-general.php:138
1859
- #: includes/settings/tabs/wps-general.php:143 shortcode.php:140
1860
- #: wp-statistics.php:423 wp-statistics.php:521
1861
- msgid "Visitors"
1862
- msgstr "Návštěvníci"
1863
-
1864
- #: includes/optimization/tabs/wps-optimization-historical.php:31
1865
- msgid "Number of historical number of visitors to the site (current value is %s)."
1866
- msgstr ""
1867
-
1868
- #: includes/optimization/tabs/wps-optimization-historical.php:42
1869
- msgid "Number of historical number of visits to the site (current value is %s)."
1870
- msgstr ""
1871
-
1872
- #: includes/optimization/tabs/wps-optimization-historical.php:48
1873
- msgid "Update now!"
1874
- msgstr ""
1875
-
1876
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1877
- #: includes/optimization/tabs/wps-optimization-purging.php:43
1878
- #: includes/optimization/tabs/wps-optimization-purging.php:75
1879
- #: includes/optimization/tabs/wps-optimization-purging.php:107
1880
- #: includes/optimization/tabs/wps-optimization-purging.php:141
1881
- msgid "Are you sure?"
1882
- msgstr "Jste si jistý?"
1883
-
1884
- #: includes/optimization/tabs/wps-optimization-purging.php:175
1885
- msgid "Data"
1886
- msgstr "Data"
1887
-
1888
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1889
- msgid "Empty Table"
1890
- msgstr "Prázdná tabulka"
1891
-
1892
- #: includes/optimization/tabs/wps-optimization-purging.php:194
1893
- msgid "All data table will be lost."
1894
- msgstr "Všechna data budou ztracena!"
1895
-
1896
- #: includes/optimization/tabs/wps-optimization-purging.php:195
1897
- msgid "Clear now!"
1898
- msgstr "Vyčistit nyní!"
1899
-
1900
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1901
- msgid "Purge records older than"
1902
- msgstr "Pročistit záznamy starší než"
1903
-
1904
- #: includes/optimization/tabs/wps-optimization-purging.php:209
1905
- msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1906
- msgstr "Odstraněný uživatel statistická data starší než zvolený počet dní. Minimální hodnota je 30 dní."
1907
-
1908
- #: includes/optimization/tabs/wps-optimization-purging.php:210
1909
- #: includes/optimization/tabs/wps-optimization-purging.php:225
1910
- msgid "Purge now!"
1911
- msgstr "Pročistit nyní!"
1912
-
1913
- #: includes/optimization/tabs/wps-optimization-purging.php:232
1914
- msgid "Delete User Agent Types"
1915
- msgstr "Odstranit typy uživatelských agentů"
1916
-
1917
- #: includes/optimization/tabs/wps-optimization-purging.php:237
1918
- msgid "Delete Agents"
1919
- msgstr "Smazat Agenty"
1920
-
1921
- #: includes/optimization/tabs/wps-optimization-purging.php:252
1922
- msgid "All visitor data will be lost for this agent type."
1923
- msgstr "Všechna data návštěvníků budou ztraceny pro tento typ agenta."
1924
-
1925
- #: includes/optimization/tabs/wps-optimization-purging.php:253
1926
- #: includes/optimization/tabs/wps-optimization-purging.php:277
1927
- msgid "Delete now!"
1928
- msgstr "Smazat nyní!"
1929
-
1930
- #: includes/optimization/tabs/wps-optimization-purging.php:261
1931
- msgid "Delete Platforms"
1932
- msgstr "Vymazat platformy"
1933
-
1934
- #: includes/optimization/tabs/wps-optimization-purging.php:276
1935
- msgid "All visitor data will be lost for this platform type."
1936
- msgstr "Všechna data návštěvníků budou ztraceny pro tento typ platformy."
1937
-
1938
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1939
- msgid "Resources"
1940
- msgstr "Zdroje"
1941
-
1942
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1943
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1944
- msgid "Memory usage in PHP"
1945
- msgstr "Využití paměti v PHP"
1946
-
1947
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1948
- msgid "Byte"
1949
- msgstr "Bytů"
1950
-
1951
- #: includes/optimization/tabs/wps-optimization-resources.php:33
1952
- msgid "PHP Memory Limit"
1953
- msgstr "PHP Paměť Limit"
1954
-
1955
- #: includes/optimization/tabs/wps-optimization-resources.php:38
1956
- msgid "The memory limit a script is allowed to consume, set in php.ini."
1957
- msgstr "Limit paměti skriptu je dovoleno konzumovat, v php.ini."
1958
-
1959
- #: includes/optimization/tabs/wps-optimization-resources.php:44
1960
- #: includes/optimization/tabs/wps-optimization-resources.php:55
1961
- #: includes/optimization/tabs/wps-optimization-resources.php:66
1962
- #: includes/optimization/tabs/wps-optimization-resources.php:77
1963
- #: includes/optimization/tabs/wps-optimization-resources.php:88
1964
- #: includes/optimization/tabs/wps-optimization-resources.php:99
1965
- #: includes/optimization/tabs/wps-optimization-resources.php:110
1966
- msgid "Number of rows in the %s table"
1967
- msgstr "Počet řádků v tabulce %s"
1968
-
1969
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1970
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1971
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1972
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1973
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1974
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1975
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1976
- msgid "Row"
1977
- msgstr "Řádek"
1978
-
1979
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1980
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1981
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1982
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1983
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1984
- #: includes/optimization/tabs/wps-optimization-resources.php:104
1985
- #: includes/optimization/tabs/wps-optimization-resources.php:115
1986
- msgid "Number of rows"
1987
- msgstr "Počet řádků"
1988
-
1989
- #: includes/optimization/tabs/wps-optimization-resources.php:120
1990
- msgid "Version Info"
1991
- msgstr "Verze info"
1992
-
1993
- #: includes/optimization/tabs/wps-optimization-resources.php:125
1994
- msgid "WP Statistics Version"
1995
- msgstr "WP Statistics Verze"
1996
-
1997
- #: includes/optimization/tabs/wps-optimization-resources.php:130
1998
- msgid "The WP Statistics version you are running."
1999
- msgstr "Používáte verzi WP Statistics."
2000
-
2001
- #: includes/optimization/tabs/wps-optimization-resources.php:136
2002
- msgid "PHP Version"
2003
- msgstr "PHP Verze"
2004
-
2005
- #: includes/optimization/tabs/wps-optimization-resources.php:141
2006
- msgid "The PHP version you are running."
2007
- msgstr "PHP verze kterou používáte."
2008
-
2009
- #: includes/optimization/tabs/wps-optimization-resources.php:147
2010
- msgid "PHP Safe Mode"
2011
- msgstr "PHP Bezpečný mód"
2012
-
2013
- #: includes/optimization/tabs/wps-optimization-resources.php:152
2014
- msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2015
- msgstr "Je PHP nouzovém režimu aktivní. GeoIP kód není podporován v nouzovém režimu."
2016
-
2017
- #: includes/optimization/tabs/wps-optimization-resources.php:158
2018
- msgid "jQuery Version"
2019
- msgstr "jQuery Verze"
2020
-
2021
- #: includes/optimization/tabs/wps-optimization-resources.php:163
2022
- msgid "The jQuery version you are running."
2023
- msgstr " Query verze kterou používáte."
2024
-
2025
- #: includes/optimization/tabs/wps-optimization-resources.php:169
2026
- msgid "cURL Version"
2027
- msgstr "cURL Verze"
2028
-
2029
- #: includes/optimization/tabs/wps-optimization-resources.php:173
2030
- msgid "cURL not installed"
2031
- msgstr "cURL není instalováno"
2032
-
2033
- #: includes/optimization/tabs/wps-optimization-resources.php:174
2034
- msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2035
- msgstr "PHP cURL Extension verze kterou používáte. cURL je požadováno pro GeoIP kód, jestliže neni instalování GeoIP bude vypnuté."
2036
-
2037
- #: includes/optimization/tabs/wps-optimization-resources.php:180
2038
- msgid "BC Math"
2039
- msgstr "BC Math"
2040
-
2041
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2042
- msgid "Installed"
2043
- msgstr "Instalováno"
2044
-
2045
- #: includes/optimization/tabs/wps-optimization-resources.php:184
2046
- msgid "Not installed"
2047
- msgstr "Neinstalováno"
2048
-
2049
- #: includes/optimization/tabs/wps-optimization-resources.php:185
2050
- 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."
2051
- msgstr "Pokud je nainstalováno rozšíření PHP BC Math. BCMath již není zapotřebí pro kód GeoIP a je zde uveden pouze z historických důvodů."
2052
-
2053
- #: includes/optimization/tabs/wps-optimization-resources.php:190
2054
- msgid "File Info"
2055
- msgstr "Informace o souboru"
2056
-
2057
- #: includes/optimization/tabs/wps-optimization-resources.php:195
2058
- msgid "GeoIP Database"
2059
- msgstr "GeoIP databáze"
2060
-
2061
- #: includes/optimization/tabs/wps-optimization-resources.php:204
2062
- msgid "Database file does not exist."
2063
- msgstr "Databáze neexistuje"
2064
-
2065
- #: includes/optimization/tabs/wps-optimization-resources.php:206
2066
- #: includes/optimization/tabs/wps-optimization-resources.php:225
2067
- #: includes/optimization/tabs/wps-optimization-resources.php:244
2068
- msgid ", created on "
2069
- msgstr ", na "
2070
-
2071
- #: includes/optimization/tabs/wps-optimization-resources.php:208
2072
- msgid "The file size and date of the GeoIP database."
2073
- msgstr "Velikost souboru a datum GeoIP databáze."
2074
-
2075
- #: includes/optimization/tabs/wps-optimization-resources.php:214
2076
- msgid "browscap.ini File"
2077
- msgstr "Soubor Browscap.ini"
2078
-
2079
- #: includes/optimization/tabs/wps-optimization-resources.php:223
2080
- msgid "browscap.ini file does not exist."
2081
- msgstr "Soubor Browscap.ini neexistuje."
2082
-
2083
- #: includes/optimization/tabs/wps-optimization-resources.php:227
2084
- msgid "The file size and date of the browscap.ini file."
2085
- msgstr "Velikost souboru a datum souboru browscap.ini."
2086
-
2087
- #: includes/optimization/tabs/wps-optimization-resources.php:233
2088
- msgid "browscap Cache File"
2089
- msgstr "Browscap soubor mezipaměti"
2090
-
2091
- #: includes/optimization/tabs/wps-optimization-resources.php:242
2092
- msgid "browscap cache file does not exist."
2093
- msgstr "Browscap cache soubor neexistuje."
2094
-
2095
- #: includes/optimization/tabs/wps-optimization-resources.php:246
2096
- msgid "The file size and date of the browscap cache file."
2097
- msgstr "Velikost souboru a datum tohoto souboru browscap."
2098
-
2099
- #: includes/optimization/tabs/wps-optimization-resources.php:251
2100
- msgid "Client Info"
2101
- msgstr "Klient Info"
2102
-
2103
- #: includes/optimization/tabs/wps-optimization-resources.php:256
2104
- msgid "Client IP"
2105
- msgstr "Klient IP"
2106
-
2107
- #: includes/optimization/tabs/wps-optimization-resources.php:261
2108
- msgid "The client IP address."
2109
- msgstr "Klientovo IP adresa"
2110
-
2111
- #: includes/optimization/tabs/wps-optimization-resources.php:267
2112
- msgid "User Agent"
2113
- msgstr "Uživatelský agent"
2114
-
2115
- #: includes/optimization/tabs/wps-optimization-resources.php:272
2116
- msgid "The client user agent string."
2117
- msgstr "Řetězec agenta uživatele klienta."
2118
-
2119
- #: includes/optimization/tabs/wps-optimization-resources.php:278
2120
- msgid "Browser"
2121
- msgstr ""
2122
-
2123
- #: includes/optimization/tabs/wps-optimization-resources.php:285
2124
- msgid "The detected client browser."
2125
- msgstr ""
2126
-
2127
- #: includes/optimization/tabs/wps-optimization-resources.php:296
2128
- msgid "The detected client browser version."
2129
- msgstr ""
2130
-
2131
- #: includes/optimization/tabs/wps-optimization-resources.php:307
2132
- msgid "The detected client platform."
2133
- msgstr ""
2134
-
2135
- #: includes/optimization/tabs/wps-optimization-updates.php:4
2136
- msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2137
- msgstr "To nahradí všechny IP adresy v databázi hodnoty hash a nemůže být zpět, jste si jisti?"
2138
-
2139
- #: includes/optimization/tabs/wps-optimization-updates.php:16
2140
- msgid "GeoIP Options"
2141
- msgstr "GeoIP Vlastnosti"
2142
-
2143
- #: includes/optimization/tabs/wps-optimization-updates.php:26
2144
- msgid "Updates any unknown location data in the database, this may take a while"
2145
- msgstr "Aktualizuje všechny neznámé lokalizační údaje v databázi, to může chvíli trvat"
2146
-
2147
- #: includes/optimization/tabs/wps-optimization-updates.php:31
2148
- #: includes/settings/tabs/wps-general.php:66
2149
- msgid "IP Addresses"
2150
- msgstr "Adresy IP"
2151
-
2152
- #: includes/optimization/tabs/wps-optimization-updates.php:36
2153
- #: includes/settings/tabs/wps-general.php:71
2154
- msgid "Hash IP Addresses"
2155
- msgstr "Algoritmus hash IP adresy"
2156
-
2157
- #: includes/optimization/tabs/wps-optimization-updates.php:41
2158
- 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"
2159
- msgstr "Nahradit hodnoty hash, adresy IP v databázi nebude možné obnovit adresy IP v budoucnu k vyplnění informací o umístění později a to může chvíli trvat"
2160
-
2161
- #: includes/optimization/wps-optimization.php:43
2162
- msgid "IP Addresses replaced with hash values."
2163
- msgstr "IP adresy nahrazeny hodnoty hash."
2164
-
2165
- #: includes/optimization/wps-optimization.php:51
2166
- msgid "Install routine complete."
2167
- msgstr "Instalujte kompletní rutina."
2168
-
2169
- #: includes/optimization/wps-optimization.php:234
2170
- msgid "Resources/Information"
2171
- msgstr "Zdroje/Informace"
2172
-
2173
- #: includes/optimization/wps-optimization.php:236
2174
- msgid "Purging"
2175
- msgstr "Pročištění"
2176
-
2177
- #: includes/optimization/wps-optimization.php:237
2178
- msgid "Database"
2179
- msgstr "Databáze"
2180
-
2181
- #: includes/optimization/wps-optimization.php:238
2182
- msgid "Updates"
2183
- msgstr "Aktualizace"
2184
-
2185
- #: includes/optimization/wps-optimization.php:239
2186
- msgid "Historical"
2187
- msgstr ""
2188
-
2189
- #: includes/settings/tabs/wps-about.php:8
2190
- msgid "WP Statistics V%s"
2191
- msgstr "WP Statistiky V%s"
2192
-
2193
- #: includes/settings/tabs/wps-about.php:28
2194
- msgid "Visit Us Online"
2195
- msgstr "Navštivte nás Online"
2196
-
2197
- #: includes/settings/tabs/wps-about.php:32
2198
- msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2199
- msgstr "Přijďte navštívit naše skvělé nové %s a aktualizuje na nejnovější zprávy o WP Statistics."
2200
-
2201
- #: includes/settings/tabs/wps-about.php:32
2202
- msgid "website"
2203
- msgstr "webové stránky"
2204
-
2205
- #: includes/settings/tabs/wps-about.php:36
2206
- msgid "Rate and Review at WordPress.org"
2207
- msgstr "Ohodnoť a prohlédni WordPress.org"
2208
-
2209
- #: includes/settings/tabs/wps-about.php:40
2210
- msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2211
- msgstr "Děkujeme za instalaci WP Stastiky, doporučujeme ti zaslat"
2212
-
2213
- #: includes/settings/tabs/wps-about.php:40
2214
- msgid "rating and review"
2215
- msgstr "Hodnocení a recenze"
2216
-
2217
- #: includes/settings/tabs/wps-about.php:40
2218
- msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2219
- msgstr "více než na WordPress.org. Vaše zpětná vazba je velmi ceněn!"
2220
-
2221
- #: includes/settings/tabs/wps-about.php:44
2222
- msgid "Translations"
2223
- msgstr "Překlady"
2224
-
2225
- #: includes/settings/tabs/wps-about.php:48
2226
- msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2227
- msgstr "WP Statistics podporuje internacionalizaci a doporučujeme našim uživatelům odeslat překlady, navštivte prosím naši %s Chcete-li zobrazit aktuální stav a %s, pokud byste chtěli pomoci."
2228
-
2229
- #: includes/settings/tabs/wps-about.php:48
2230
- msgid "translation collaboration site"
2231
- msgstr "Web pro spolupráci Překlad"
2232
-
2233
- #: includes/settings/tabs/wps-about.php:48
2234
- msgid "drop us a line"
2235
- msgstr "Podejte nám zprávu"
2236
-
2237
- #: includes/settings/tabs/wps-about.php:52
2238
- msgid "Support"
2239
- msgstr "Podpora"
2240
-
2241
- #: includes/settings/tabs/wps-about.php:57
2242
- 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:"
2243
- msgstr "Omlouváme se, máte problémy s WP Statistics a my jsme rádi pomohli. Zde je pár věci na práci než se obrátíte na nás:"
2244
-
2245
- #: includes/settings/tabs/wps-about.php:60
2246
- #: includes/settings/tabs/wps-about.php:61
2247
- msgid "Have you read the %s?"
2248
- msgstr "Četli jste %s?"
2249
-
2250
- #: includes/settings/tabs/wps-about.php:60
2251
- msgid "FAQs"
2252
- msgstr "Nejčastější dotazy"
2253
-
2254
- #: includes/settings/tabs/wps-about.php:61
2255
- msgid "manual"
2256
- msgstr "manuál"
2257
-
2258
- #: includes/settings/tabs/wps-about.php:62
2259
- msgid "Have you search the %s for a similar issue?"
2260
- msgstr "Už jste Hledat %s pro podobný problém?"
2261
-
2262
- #: includes/settings/tabs/wps-about.php:62
2263
- msgid "support forum"
2264
- msgstr "fórum podpory"
2265
-
2266
- #: includes/settings/tabs/wps-about.php:63
2267
- msgid "Have you search the Internet for any error messages you are receiving?"
2268
- msgstr "Už jste Hledat na internetu pro všechny chybové zprávy, které obdržíte?"
2269
-
2270
- #: includes/settings/tabs/wps-about.php:64
2271
- msgid "Make sure you have access to your PHP error logs."
2272
- msgstr ""
2273
-
2274
- #: includes/settings/tabs/wps-about.php:67
2275
- msgid "And a few things to double-check:"
2276
- msgstr "A pár věcí na dvakrát:"
2277
-
2278
- #: includes/settings/tabs/wps-about.php:70
2279
- msgid "How's your memory_limit in php.ini?"
2280
- msgstr "Jak máš nastaven memory_limit v php.ini?"
2281
-
2282
- #: includes/settings/tabs/wps-about.php:71
2283
- msgid "Have you tried disabling any other plugins you may have installed?"
2284
- msgstr "Už jste vyzkoušeli, zakázání jiné pluginy, které jste nainstalovali?"
2285
-
2286
- #: includes/settings/tabs/wps-about.php:72
2287
- msgid "Have you tried using the default WordPress theme?"
2288
- msgstr "Už jste vyzkoušeli pomocí výchozí WordPress téma?"
2289
-
2290
- #: includes/settings/tabs/wps-about.php:73
2291
- msgid "Have you double checked the plugin settings?"
2292
- msgstr "Zkontrolovali jste dvojí nastavení pluginu?"
2293
-
2294
- #: includes/settings/tabs/wps-about.php:74
2295
- msgid "Do you have all the required PHP extensions installed?"
2296
- msgstr "Máte instalované všechny vyžadované PHP rozšíření?"
2297
-
2298
- #: includes/settings/tabs/wps-about.php:75
2299
- msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2300
- msgstr "Dostáváš prázdné nebo neúplné stránky zobrazené v prohlížeči? Jste zobrazit zdroj jazyk pro stránku a zkontrolujte případné závažné chyby?"
2301
-
2302
- #: includes/settings/tabs/wps-about.php:76
2303
- msgid "Have you checked your PHP and web server error logs?"
2304
- msgstr "Zkontrolovali jste protokolů chyb serveru PHP a web?"
2305
-
2306
- #: includes/settings/tabs/wps-about.php:79
2307
- msgid "Still not having any luck?"
2308
- msgstr "Ještě nemají žádné štěstí?"
2309
-
2310
- #: includes/settings/tabs/wps-about.php:79
2311
- msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2312
- msgstr "Pak prosím otevřít nové vlákno na %s a odpovíme co nejdříve."
2313
-
2314
- #: includes/settings/tabs/wps-about.php:79
2315
- msgid "WordPress.org support forum"
2316
- msgstr "Fórum podpory WordPress.org"
2317
-
2318
- #: includes/settings/tabs/wps-about.php:83
2319
- msgid "Alternatively %s support is available as well."
2320
- msgstr "Další možností %s podpora je k dispozici také."
2321
-
2322
- #: includes/settings/tabs/wps-about.php:83
2323
- msgid "Farsi"
2324
- msgstr "Farsi"
2325
-
2326
- #: includes/settings/tabs/wps-exclusions.php:21
2327
- msgid "WP Statistics Honey Pot Page"
2328
- msgstr ""
2329
-
2330
- #: includes/settings/tabs/wps-exclusions.php:22
2331
- msgid "This is the honey pot for WP Statistics to use, do not delete."
2332
- msgstr ""
2333
-
2334
- #: includes/settings/tabs/wps-access-level.php:23
2335
- #: includes/settings/wps-settings.php:103
2336
- msgid "Access Levels"
2337
- msgstr "Úrovně přístupů"
2338
-
2339
- #: includes/settings/tabs/wps-access-level.php:52
2340
- msgid "Required user level to view WP Statistics"
2341
- msgstr "Požadována uživatelská úrověn k prohlížení WP Statistik"
2342
-
2343
- #: includes/settings/tabs/wps-access-level.php:67
2344
- msgid "Required user level to manage WP Statistics"
2345
- msgstr "Uživatelská úroveň pro správu statistiky WP"
2346
-
2347
- #: includes/settings/tabs/wps-access-level.php:75
2348
- msgid "See the %s for details on capability levels."
2349
- msgstr "Viz %s další informace o úrovních schopností."
2350
-
2351
- #: includes/settings/tabs/wps-access-level.php:75
2352
- msgid "WordPress Roles and Capabilities page"
2353
- msgstr "Stránky WordPress rolí a funkcí"
2354
-
2355
- #: includes/settings/tabs/wps-access-level.php:76
2356
- msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2357
- msgstr "Tip: manage_network = Super Admin síť, manage_options = správce, edit_others_posts = Editor, publish_posts = autor, edit_posts = přispěvatel, číst = všichni."
2358
-
2359
- #: includes/settings/tabs/wps-access-level.php:77
2360
- msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2361
- msgstr "Každý z výše uvedených casscades práva směrem nahoru v WordPress výchozí konfiguraci. Tak například výběrem publish_posts uděluje právo autorů, redaktoři, administrátoři a Super Admins."
2362
-
2363
- #: includes/settings/tabs/wps-access-level.php:78
2364
- msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2365
- 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."
2366
-
2367
- #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2368
- #: includes/settings/wps-settings.php:104 wp-statistics.php:415
2369
- #: wp-statistics.php:513
2370
- msgid "Exclusions"
2371
- msgstr "Vyjímky"
2372
-
2373
- #: includes/settings/tabs/wps-exclusions.php:50
2374
- msgid "Record exclusions"
2375
- msgstr "Vyloučení záznamů"
2376
-
2377
- #: includes/settings/tabs/wps-exclusions.php:52
2378
- #: includes/settings/tabs/wps-exclusions.php:106
2379
- #: includes/settings/tabs/wps-exclusions.php:133
2380
- #: includes/settings/tabs/wps-exclusions.php:150
2381
- msgid "Enable"
2382
- msgstr "Zapnout"
2383
-
2384
- #: includes/settings/tabs/wps-exclusions.php:53
2385
- 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."
2386
- msgstr "To bude zaznamenávat všechny vyloučené hity v samostatné tabulce s důvody, proč byla vyloučena, ale žádné další informace. To bude generovat velké množství dat, ale je užitečné, pokud chcete zobrazit celkový počet přístupů vašich stránek dostane, ne jen skutečné uživatele návštěvy."
2387
-
2388
- #: includes/settings/tabs/wps-exclusions.php:58
2389
- msgid "Exclude User Roles"
2390
- msgstr "Vyloučení rolí uživatelů"
2391
-
2392
- #: includes/settings/tabs/wps-exclusions.php:74
2393
- #: includes/settings/tabs/wps-exclusions.php:196
2394
- #: includes/settings/tabs/wps-exclusions.php:203
2395
- #: includes/settings/tabs/wps-exclusions.php:210
2396
- #: includes/settings/tabs/wps-exclusions.php:217
2397
- msgid "Exclude"
2398
- msgstr "Vyjímka"
2399
-
2400
- #: includes/settings/tabs/wps-exclusions.php:75
2401
- msgid "Exclude %s role from data collection."
2402
- msgstr "Vylučte úlohu %s ze sběru údajů."
2403
-
2404
- #: includes/settings/tabs/wps-exclusions.php:81
2405
- msgid "IP/Robot Exclusions"
2406
- msgstr "IP/Robot vyjímky"
2407
-
2408
- #: includes/settings/tabs/wps-exclusions.php:85
2409
- msgid "Robot list"
2410
- msgstr "Seznam robotů"
2411
-
2412
- #: includes/settings/tabs/wps-exclusions.php:98
2413
- 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."
2414
- msgstr "Seznam slov, (jeden na řádek) porovnávat odhalit roboty. Položky musí být dlouhé nejméně 4 znaky, nebo budou ignorovány."
2415
-
2416
- #: includes/settings/tabs/wps-exclusions.php:99
2417
- msgid "Reset to Default"
2418
- msgstr "Reset do Defaultního nastavení"
2419
-
2420
- #: includes/settings/tabs/wps-exclusions.php:104
2421
- msgid "Force robot list update after upgrades"
2422
- msgstr "Vynutit robota seznamu aktualizaci po inovaci"
2423
-
2424
- #: includes/settings/tabs/wps-exclusions.php:107
2425
- 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."
2426
- msgstr "Platnost seznamu robota tak, aby obnovit na výchozí po aktualizaci statistiky WP se koná. Poznámka: je-li tato možnost povolena, žádné vlastní roboty, které jste přidali do seznamu budou ztraceny."
2427
-
2428
- #: includes/settings/tabs/wps-exclusions.php:112
2429
- msgid "Robot visit threshold"
2430
- msgstr ""
2431
-
2432
- #: includes/settings/tabs/wps-exclusions.php:115
2433
- msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2434
- msgstr ""
2435
-
2436
- #: includes/settings/tabs/wps-exclusions.php:120
2437
- msgid "Excluded IP address list"
2438
- msgstr "Vyloučené seznam adres IP"
2439
-
2440
- #: includes/settings/tabs/wps-exclusions.php:123
2441
- msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2442
- msgstr "Seznam adres IP a podsítě masky (jeden na řádek) vyloučit ze sběru statistických údajů (192.168.0.0/24 a 192.168.0.0/255.255.255.0 formáty jsou přijímány). Chcete-li určit adresu IP, použijte podsítě hodnotu 32 nebo 255.255.255.255."
2443
-
2444
- #: includes/settings/tabs/wps-exclusions.php:124
2445
- msgid "Add 10.0.0.0"
2446
- msgstr "Přidat 10.0.0.0"
2447
-
2448
- #: includes/settings/tabs/wps-exclusions.php:125
2449
- msgid "Add 172.16.0.0"
2450
- msgstr "Přidat 172.16.0.0"
2451
-
2452
- #: includes/settings/tabs/wps-exclusions.php:126
2453
- msgid "Add 192.168.0.0"
2454
- msgstr "Přidat 192.168.0.0"
2455
-
2456
- #: includes/settings/tabs/wps-exclusions.php:131
2457
- msgid "Use honey pot"
2458
- msgstr ""
2459
-
2460
- #: includes/settings/tabs/wps-exclusions.php:134
2461
- msgid "Use a honey pot page to identify robots."
2462
- msgstr ""
2463
-
2464
- #: includes/settings/tabs/wps-exclusions.php:139
2465
- msgid "Honey pot post id"
2466
- msgstr ""
2467
-
2468
- #: includes/settings/tabs/wps-exclusions.php:142
2469
- msgid "The post id to use for the honeypot page."
2470
- msgstr ""
2471
-
2472
- #: includes/settings/tabs/wps-exclusions.php:143
2473
- msgid "Create a new honey pot page"
2474
- msgstr ""
2475
-
2476
- #: includes/settings/tabs/wps-exclusions.php:156
2477
- msgid "GeoIP Exclusions"
2478
- msgstr ""
2479
-
2480
- #: includes/settings/tabs/wps-exclusions.php:160
2481
- msgid "Excluded countries list"
2482
- msgstr ""
2483
-
2484
- #: includes/settings/tabs/wps-exclusions.php:163
2485
- 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."
2486
- msgstr ""
2487
-
2488
- #: includes/settings/tabs/wps-exclusions.php:168
2489
- msgid "Included countries list"
2490
- msgstr ""
2491
-
2492
- #: includes/settings/tabs/wps-exclusions.php:171
2493
- 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."
2494
- msgstr ""
2495
-
2496
- #: includes/settings/tabs/wps-exclusions.php:176
2497
- msgid "Host Exclusions"
2498
- msgstr ""
2499
-
2500
- #: includes/settings/tabs/wps-exclusions.php:180
2501
- msgid "Excluded hosts list"
2502
- msgstr ""
2503
-
2504
- #: includes/settings/tabs/wps-exclusions.php:183
2505
- msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2506
- msgstr ""
2507
-
2508
- #: includes/settings/tabs/wps-exclusions.php:185
2509
- 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."
2510
- msgstr ""
2511
-
2512
- #: includes/settings/tabs/wps-exclusions.php:190
2513
- msgid "Site URL Exclusions"
2514
- msgstr "URL vyjímky"
2515
-
2516
- #: includes/settings/tabs/wps-exclusions.php:194
2517
- msgid "Excluded login page"
2518
- msgstr "Vyloučené přihlašovací stránka"
2519
-
2520
- #: includes/settings/tabs/wps-exclusions.php:197
2521
- msgid "Exclude the login page for registering as a hit."
2522
- msgstr "Vylučte přihlašovací stránku pro registraci jako hit."
2523
-
2524
- #: includes/settings/tabs/wps-exclusions.php:201
2525
- msgid "Excluded admin pages"
2526
- msgstr "Vyloučené admin stránky"
2527
-
2528
- #: includes/settings/tabs/wps-exclusions.php:204
2529
- msgid "Exclude the admin pages for registering as a hit."
2530
- msgstr "Vylučte admin stránky pro registraci jako hit."
2531
-
2532
- #: includes/settings/tabs/wps-exclusions.php:208
2533
- msgid "Excluded RSS feeds"
2534
- msgstr ""
2535
-
2536
- #: includes/settings/tabs/wps-exclusions.php:211
2537
- msgid "Exclude the RSS feeds for registering as a hit."
2538
- msgstr ""
2539
-
2540
- #: includes/settings/tabs/wps-externals.php:162
2541
- msgid "browscap settings"
2542
- msgstr "Browscap nastavení"
2543
-
2544
- #: includes/settings/tabs/wps-externals.php:167
2545
- msgid "browscap usage"
2546
- msgstr "Browscap využití"
2547
-
2548
- #: includes/settings/tabs/wps-externals.php:52
2549
- #: includes/settings/tabs/wps-externals.php:76
2550
- #: includes/settings/tabs/wps-externals.php:109
2551
- #: includes/settings/tabs/wps-externals.php:172
2552
- #: includes/settings/tabs/wps-externals.php:196
2553
- #: includes/settings/tabs/wps-externals.php:236
2554
- #: includes/settings/tabs/wps-externals.php:260
2555
- #: includes/settings/tabs/wps-general.php:76
2556
- #: includes/settings/tabs/wps-general.php:92
2557
- #: includes/settings/tabs/wps-general.php:116
2558
- #: includes/settings/tabs/wps-general.php:132
2559
- #: includes/settings/tabs/wps-general.php:148
2560
- #: includes/settings/tabs/wps-general.php:160
2561
- #: includes/settings/tabs/wps-general.php:187
2562
- #: includes/settings/tabs/wps-general.php:199
2563
- #: includes/settings/tabs/wps-general.php:214
2564
- #: includes/settings/tabs/wps-general.php:228
2565
- #: includes/settings/tabs/wps-general.php:258
2566
- #: includes/settings/tabs/wps-general.php:270
2567
- #: includes/settings/tabs/wps-general.php:286
2568
- #: includes/settings/tabs/wps-general.php:325
2569
- #: includes/settings/tabs/wps-general.php:341
2570
- #: includes/settings/tabs/wps-maintenance.php:40
2571
- #: includes/settings/tabs/wps-maintenance.php:68
2572
- #: includes/settings/tabs/wps-notifications.php:69
2573
- #: includes/settings/tabs/wps-notifications.php:81
2574
- #: includes/settings/tabs/wps-notifications.php:93
2575
- #: includes/settings/tabs/wps-notifications.php:105
2576
- #: includes/settings/tabs/wps-notifications.php:121
2577
- #: includes/settings/tabs/wps-overview-display.php:34
2578
- #: includes/settings/tabs/wps-overview-display.php:54
2579
- #: includes/settings/tabs/wps-overview-display.php:94
2580
- #: includes/settings/tabs/wps-overview-display.php:106
2581
- msgid "Active"
2582
- msgstr "Aktivní"
2583
-
2584
- #: includes/settings/tabs/wps-externals.php:173
2585
- msgid "The browscap database will be downloaded and used to detect robots."
2586
- msgstr "Browscap databáze bude stáhnout a slouží k detekci roboty."
2587
-
2588
- #: includes/settings/tabs/wps-externals.php:179
2589
- msgid "Update browscap Info"
2590
- msgstr "Aktualizovat browscap Info"
2591
-
2592
- #: includes/settings/tabs/wps-externals.php:184
2593
- msgid "Download browscap Database"
2594
- msgstr "Stáhnout browscap databáze"
2595
-
2596
- #: includes/settings/tabs/wps-externals.php:65
2597
- #: includes/settings/tabs/wps-externals.php:185
2598
- #: includes/settings/tabs/wps-externals.php:249
2599
- msgid "Save changes on this page to download the update."
2600
- msgstr "Uložte změny na této stránce můžete stáhnout aktualizaci."
2601
-
2602
- #: includes/settings/tabs/wps-externals.php:191
2603
- msgid "Schedule weekly update of browscap DB"
2604
- msgstr "Rozvrh týdenní aktualizace browscap DB"
2605
-
2606
- #: includes/settings/tabs/wps-externals.php:79
2607
- #: includes/settings/tabs/wps-externals.php:199
2608
- #: includes/settings/tabs/wps-externals.php:263
2609
- msgid "Next update will be"
2610
- msgstr "Další update bude"
2611
-
2612
- #: includes/settings/tabs/wps-externals.php:215
2613
- msgid "Download of the browscap database will be scheduled for once a week."
2614
- msgstr "Ke stažení browscap databáze bude naplánován pro jednou za týden."
2615
-
2616
- #: includes/settings/tabs/wps-general.php:50
2617
- msgid "This will delete the manual when you save the settings, are you sure?"
2618
- msgstr "To odstraní ruční, když uložíte nastavení, jste si jisti?"
2619
-
2620
- #: includes/settings/tabs/wps-general.php:77
2621
- 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."
2622
- 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."
2623
-
2624
- #: includes/settings/tabs/wps-general.php:82 shortcode.php:138
2625
- msgid "Users Online"
2626
- msgstr "Uživatelé online"
2627
-
2628
- #: includes/settings/tabs/wps-general.php:87
2629
- msgid "User online"
2630
- msgstr "Uživatel online"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp_statistics-cs_CZ.mo ADDED
Binary file
languages/wp_statistics-cs_CZ.po ADDED
@@ -0,0 +1,2729 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of WP Statistics in Czech
2
+ # This file is distributed under the same license as the WP Statistics package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2015-04-22 00:40:36+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/1.0.2\n"
11
+ "Project-Id-Version: WP Statistics\n"
12
+
13
+ #: wp-statistics/ajax.php:220
14
+ msgid "No matching widget found!"
15
+ msgstr ""
16
+
17
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
18
+ msgid "Zlib gzopen()"
19
+ msgstr ""
20
+
21
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
22
+ msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
23
+ msgstr ""
24
+
25
+ #: wp-statistics/wps-updates.php:16
26
+ msgid "Error the download_url() or gzopen() functions do not exist!"
27
+ msgstr ""
28
+
29
+ #: wp-statistics/wps-updates.php:45
30
+ msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
31
+ msgstr ""
32
+
33
+ #: wp-statistics/wp-statistics.php:95
34
+ msgid "&#151; You are running an unsupported version of PHP."
35
+ msgstr ""
36
+
37
+ #: wp-statistics/wp-statistics.php:95
38
+ msgid "WP Statistics Disabled"
39
+ msgstr ""
40
+
41
+ #: wp-statistics/wp-statistics.php:99
42
+ msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
43
+ msgstr ""
44
+
45
+ #: wp-statistics/wp-statistics.php:101
46
+ msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
47
+ msgstr ""
48
+
49
+ #: wp-statistics/ajax.php:299
50
+ msgid "ERROR: Widget not found!"
51
+ msgstr ""
52
+
53
+ #: wp-statistics/dashboard.php:111 wp-statistics/editor.php:66
54
+ #: wp-statistics/includes/log/log.php:20
55
+ msgid "Loading..."
56
+ msgstr ""
57
+
58
+ #: wp-statistics/dashboard.php:129 wp-statistics/editor.php:84
59
+ #: wp-statistics/includes/log/log.php:2
60
+ msgid "Reloading..."
61
+ msgstr ""
62
+
63
+ #: wp-statistics/includes/log/top-visitors.php:41
64
+ #: wp-statistics/wp-statistics.php:447
65
+ msgid "Top Visitors"
66
+ msgstr ""
67
+
68
+ #: wp-statistics/wp-statistics.php:206
69
+ msgid "optimization page"
70
+ msgstr ""
71
+
72
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
73
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
74
+ msgid "Enabled"
75
+ msgstr ""
76
+
77
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
78
+ msgid "Purge Old Data Daily"
79
+ msgstr ""
80
+
81
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
82
+ msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
83
+ msgstr ""
84
+
85
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
86
+ msgid "Purge data older than"
87
+ msgstr ""
88
+
89
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
90
+ msgid "Purge High Hit Count Visitors Daily"
91
+ msgstr ""
92
+
93
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
94
+ msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
95
+ msgstr ""
96
+
97
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
98
+ msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
99
+ msgstr ""
100
+
101
+ #: wp-statistics/shortcode.php:184
102
+ msgid "The post/page id to get page statistics on."
103
+ msgstr ""
104
+
105
+ #: wp-statistics/shortcode.php:181
106
+ msgid "Post/Page ID"
107
+ msgstr ""
108
+
109
+ #: wp-statistics/includes/functions/functions.php:435
110
+ msgid "Ask.com"
111
+ msgstr ""
112
+
113
+ #: wp-statistics/shortcode.php:158
114
+ 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."
115
+ msgstr ""
116
+
117
+ #: wp-statistics/wp-statistics.php:180
118
+ msgid "visitor tracking"
119
+ msgstr ""
120
+
121
+ #: wp-statistics/wp-statistics.php:181
122
+ msgid "geoip collection"
123
+ msgstr ""
124
+
125
+ #: wp-statistics/wp-statistics.php:197
126
+ msgid "visit database index"
127
+ msgstr ""
128
+
129
+ #: wp-statistics/wp-statistics.php:206
130
+ msgid "Database updates are required, please go to %s and update the following: %s"
131
+ msgstr ""
132
+
133
+ #: wp-statistics/wp-statistics.php:197
134
+ msgid "countries database index"
135
+ msgstr ""
136
+
137
+ #: wp-statistics/wp-statistics.php:190
138
+ msgid "search table"
139
+ msgstr ""
140
+
141
+ #: wp-statistics/wp-statistics.php:184
142
+ msgid "settings page"
143
+ msgstr ""
144
+
145
+ #: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
146
+ msgid ","
147
+ msgstr ""
148
+
149
+ #: wp-statistics/wp-statistics.php:184
150
+ msgid "The following features are disabled, please go to %s and enable them: %s"
151
+ msgstr ""
152
+
153
+ #: wp-statistics/wp-statistics.php:179
154
+ msgid "hit tracking"
155
+ msgstr ""
156
+
157
+ #: wp-statistics/wp-statistics.php:178
158
+ msgid "online user tracking"
159
+ msgstr ""
160
+
161
+ #: wp-statistics/wp-statistics.php:775
162
+ msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
163
+ msgstr ""
164
+
165
+ #: wp-statistics/includes/optimization/wps-optimization.php:196
166
+ msgid "Search table conversion complete, %d rows added."
167
+ msgstr ""
168
+
169
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
170
+ 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."
171
+ msgstr ""
172
+
173
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
174
+ msgid "Search Table"
175
+ msgstr ""
176
+
177
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
178
+ msgid "Convert"
179
+ msgstr ""
180
+
181
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
182
+ msgid "Convert Now!"
183
+ msgstr ""
184
+
185
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
186
+ 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."
187
+ msgstr ""
188
+
189
+ #: wp-statistics/includes/log/exclusions.php:24
190
+ msgid "Referrer Spam"
191
+ msgstr ""
192
+
193
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:279
194
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
195
+ msgstr ""
196
+
197
+ #: wp-statistics/includes/settings/wps-settings.php:105
198
+ msgid "Externals"
199
+ msgstr ""
200
+
201
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:220
202
+ msgid "Piwik Referrer Spam Blacklist settings"
203
+ msgstr ""
204
+
205
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:255
206
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
207
+ msgstr ""
208
+
209
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:248
210
+ msgid "Download Piwik Referrer Spam Blacklist Database"
211
+ msgstr ""
212
+
213
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:243
214
+ msgid "Update Piwik Referrer Spam Blacklist Info"
215
+ msgstr ""
216
+
217
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:237
218
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
219
+ msgstr ""
220
+
221
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:225
222
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
223
+ msgstr ""
224
+
225
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:231
226
+ msgid "Piwik Referrer Spam Blacklist usage"
227
+ msgstr ""
228
+
229
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
230
+ msgid "Treat corrupt browser info as a bot"
231
+ msgstr ""
232
+
233
+ #: wp-statistics/includes/log/exclusions.php:24
234
+ msgid "404 Pages"
235
+ msgstr ""
236
+
237
+ #: wp-statistics/includes/log/top-visitors.php:26
238
+ msgid "Date"
239
+ msgstr ""
240
+
241
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
242
+ msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
243
+ msgstr ""
244
+
245
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
246
+ msgid "Excluded 404 pages"
247
+ msgstr ""
248
+
249
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
250
+ msgid "Exclude any URL that returns a \"404 - Not Found\" message."
251
+ msgstr ""
252
+
253
+ #: wp-statistics/wps-updates.php:37
254
+ msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
255
+ msgstr ""
256
+
257
+ #: wp-statistics/includes/settings/tabs/wps-general.php:281
258
+ msgid "Add page title to empty search words"
259
+ msgstr ""
260
+
261
+ #: wp-statistics/includes/settings/tabs/wps-general.php:287
262
+ 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."
263
+ msgstr ""
264
+
265
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
266
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
267
+ msgid "Purge visitors with more than"
268
+ msgstr ""
269
+
270
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
271
+ msgid "hits"
272
+ msgstr ""
273
+
274
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
275
+ 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."
276
+ msgstr ""
277
+
278
+ #: wp-statistics/includes/functions/purge-hits.php:28
279
+ msgid "No visitors found to purge."
280
+ msgstr ""
281
+
282
+ #: wp-statistics/includes/functions/purge-hits.php:25
283
+ msgid "%s records purged successfully."
284
+ msgstr ""
285
+
286
+ #: wp-statistics/ajax.php:178
287
+ #: wp-statistics/includes/functions/purge-hits.php:32
288
+ msgid "Number of hits must be greater than or equal to 10!"
289
+ msgstr ""
290
+
291
+ #: wp-statistics/shortcode.php:141
292
+ msgid "Page Visits"
293
+ msgstr ""
294
+
295
+ #: wp-statistics/shortcode.php:144
296
+ msgid "Page Count"
297
+ msgstr ""
298
+
299
+ #: wp-statistics/shortcode.php:145
300
+ msgid "Comment Count"
301
+ msgstr ""
302
+
303
+ #: wp-statistics/shortcode.php:146
304
+ msgid "Spam Count"
305
+ msgstr ""
306
+
307
+ #: wp-statistics/shortcode.php:147
308
+ msgid "User Count"
309
+ msgstr ""
310
+
311
+ #: wp-statistics/shortcode.php:148
312
+ msgid "Post Average"
313
+ msgstr ""
314
+
315
+ #: wp-statistics/shortcode.php:149
316
+ msgid "Comment Average"
317
+ msgstr ""
318
+
319
+ #: wp-statistics/shortcode.php:150
320
+ msgid "User Average"
321
+ msgstr ""
322
+
323
+ #: wp-statistics/shortcode.php:162
324
+ msgid "Search Provider"
325
+ msgstr ""
326
+
327
+ #: wp-statistics/shortcode.php:165
328
+ msgid "The search provider to get statistics on."
329
+ msgstr ""
330
+
331
+ #: wp-statistics/shortcode.php:169
332
+ msgid "Number Format"
333
+ msgstr ""
334
+
335
+ #: wp-statistics/shortcode.php:172
336
+ msgid "The format to display numbers in: i18n, english, none."
337
+ msgstr ""
338
+
339
+ #: wp-statistics/shortcode.php:176
340
+ msgid "English"
341
+ msgstr ""
342
+
343
+ #: wp-statistics/shortcode.php:177
344
+ msgid "International"
345
+ msgstr ""
346
+
347
+ #: wp-statistics/includes/log/exclusions.php:191
348
+ #: wp-statistics/includes/log/hit-statistics.php:164
349
+ msgid "Hits Statistics Summary"
350
+ msgstr ""
351
+
352
+ #: wp-statistics/includes/log/exclusions.php:201
353
+ #: wp-statistics/includes/log/hit-statistics.php:175
354
+ msgid "Chart Total"
355
+ msgstr ""
356
+
357
+ #: wp-statistics/includes/log/exclusions.php:206
358
+ #: wp-statistics/includes/log/hit-statistics.php:181
359
+ msgid "All Time Total"
360
+ msgstr ""
361
+
362
+ #: wp-statistics/includes/log/log.php:6
363
+ msgid "Have you thought about donating to WP Statistics?"
364
+ msgstr ""
365
+
366
+ #: wp-statistics/includes/settings/tabs/wps-about.php:20
367
+ #: wp-statistics/wp-statistics.php:429
368
+ msgid "Donate"
369
+ msgstr ""
370
+
371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
372
+ msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
373
+ msgstr ""
374
+
375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
376
+ msgid "donation"
377
+ msgstr ""
378
+
379
+ #: wp-statistics/includes/log/log.php:6
380
+ msgid "Donate Now!"
381
+ msgstr ""
382
+
383
+ #: wp-statistics/includes/log/log.php:6
384
+ msgid "Close"
385
+ msgstr ""
386
+
387
+ #: wp-statistics/shortcode.php:135
388
+ msgid "Select the statistic you wish to display."
389
+ msgstr ""
390
+
391
+ #: wp-statistics/shortcode.php:132
392
+ msgid "Statistic"
393
+ msgstr ""
394
+
395
+ #: wp-statistics/shortcode.php:143
396
+ msgid "Post Count"
397
+ msgstr ""
398
+
399
+ #: wp-statistics/shortcode.php:155
400
+ msgid "Time Frame"
401
+ msgstr ""
402
+
403
+ #: wp-statistics/includes/functions/functions.php:1032
404
+ msgid "to"
405
+ msgstr ""
406
+
407
+ #: wp-statistics/includes/functions/functions.php:1032
408
+ #: wp-statistics/includes/log/top-visitors.php:29
409
+ msgid "Go"
410
+ msgstr ""
411
+
412
+ #: wp-statistics/includes/log/top-pages.php:102
413
+ msgid "Rank #5"
414
+ msgstr ""
415
+
416
+ #: wp-statistics/includes/log/top-pages.php:102
417
+ msgid "Rank #4"
418
+ msgstr ""
419
+
420
+ #: wp-statistics/includes/log/top-pages.php:102
421
+ msgid "Rank #3"
422
+ msgstr ""
423
+
424
+ #: wp-statistics/includes/log/top-pages.php:102
425
+ msgid "Rank #1"
426
+ msgstr ""
427
+
428
+ #: wp-statistics/includes/log/top-pages.php:102
429
+ msgid "Rank #2"
430
+ msgstr ""
431
+
432
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
433
+ msgid "Visits Table"
434
+ msgstr ""
435
+
436
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
437
+ 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."
438
+ msgstr ""
439
+
440
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
441
+ msgid "This operation could take a long time on installs with many rows in the visits table."
442
+ msgstr ""
443
+
444
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
445
+ 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."
446
+ msgstr ""
447
+
448
+ #: wp-statistics/includes/log/last-visitor.php:68
449
+ msgid "Filtered by"
450
+ msgstr ""
451
+
452
+ #: wp-statistics/includes/functions/functions.php:1026
453
+ #: wp-statistics/includes/functions/functions.php:1029
454
+ msgid "Range"
455
+ msgstr ""
456
+
457
+ #: wp-statistics/includes/functions/functions.php:1032
458
+ #: wp-statistics/includes/log/top-visitors.php:29
459
+ msgid "MM/DD/YYYY"
460
+ msgstr "MM/DD/YYYY"
461
+
462
+ #: wp-statistics/includes/settings/tabs/wps-general.php:342
463
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
464
+ msgstr ""
465
+
466
+ #: wp-statistics/includes/settings/tabs/wps-general.php:336
467
+ msgid "Force English"
468
+ msgstr ""
469
+
470
+ #: wp-statistics/includes/settings/tabs/wps-general.php:331
471
+ msgid "Languages"
472
+ msgstr ""
473
+
474
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
475
+ 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."
476
+ msgstr ""
477
+
478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
479
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
480
+ msgstr ""
481
+
482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
483
+ msgid "Excluded URLs list"
484
+ msgstr ""
485
+
486
+ #: wp-statistics/includes/log/exclusions.php:24
487
+ msgid "Excluded URL"
488
+ msgstr ""
489
+
490
+ #: wp-statistics/includes/log/widgets/quickstats.php:52
491
+ #: wp-statistics/includes/log/widgets/summary.php:52
492
+ msgid "Last 365 Days (Year)"
493
+ msgstr ""
494
+
495
+ #: wp-statistics/includes/log/widgets/quickstats.php:46
496
+ #: wp-statistics/includes/log/widgets/summary.php:46
497
+ msgid "Last 30 Days (Month)"
498
+ msgstr ""
499
+
500
+ #: wp-statistics/includes/log/widgets/quickstats.php:40
501
+ #: wp-statistics/includes/log/widgets/summary.php:40
502
+ msgid "Last 7 Days (Week)"
503
+ msgstr ""
504
+
505
+ #: wp-statistics/includes/functions/functions.php:441
506
+ msgid "Yahoo!"
507
+ msgstr ""
508
+
509
+ #: wp-statistics/includes/functions/functions.php:442
510
+ msgid "Yandex"
511
+ msgstr ""
512
+
513
+ #: wp-statistics/includes/functions/functions.php:438
514
+ msgid "clearch.org"
515
+ msgstr ""
516
+
517
+ #: wp-statistics/includes/functions/functions.php:439
518
+ msgid "DuckDuckGo"
519
+ msgstr ""
520
+
521
+ #: wp-statistics/includes/functions/functions.php:437
522
+ msgid "Bing"
523
+ msgstr ""
524
+
525
+ #: wp-statistics/includes/functions/functions.php:436
526
+ msgid "Baidu"
527
+ msgstr ""
528
+
529
+ #: wp-statistics/includes/log/exclusions.php:24
530
+ msgid "Feeds"
531
+ msgstr ""
532
+
533
+ #: wp-statistics/includes/log/exclusions.php:24
534
+ msgid "User Role"
535
+ msgstr ""
536
+
537
+ #: wp-statistics/includes/log/exclusions.php:24
538
+ msgid "Login Page"
539
+ msgstr ""
540
+
541
+ #: wp-statistics/includes/log/exclusions.php:24
542
+ msgid "Admin Page"
543
+ msgstr ""
544
+
545
+ #: wp-statistics/includes/log/exclusions.php:24
546
+ msgid "Self Referral"
547
+ msgstr ""
548
+
549
+ #: wp-statistics/includes/log/exclusions.php:24
550
+ msgid "IP Match"
551
+ msgstr ""
552
+
553
+ #: wp-statistics/includes/log/exclusions.php:24
554
+ msgid "Robot"
555
+ msgstr ""
556
+
557
+ #: wp-statistics/includes/log/online.php:100
558
+ msgid "Currently there are no users online in the site."
559
+ msgstr ""
560
+
561
+ #: wp-statistics/includes/log/exclusions.php:24
562
+ msgid "Robot Threshold"
563
+ msgstr ""
564
+
565
+ #: wp-statistics/includes/log/exclusions.php:24
566
+ msgid "Honey Pot"
567
+ msgstr ""
568
+
569
+ #: wp-statistics/includes/log/widgets/page.php:8
570
+ msgid "Page Trending Stats"
571
+ msgstr ""
572
+
573
+ #: wp-statistics/includes/log/exclusions.php:24
574
+ msgid "Hostname"
575
+ msgstr ""
576
+
577
+ #: wp-statistics/includes/settings/tabs/wps-general.php:93
578
+ #: wp-statistics/includes/settings/tabs/wps-general.php:133
579
+ #: wp-statistics/includes/settings/tabs/wps-general.php:149
580
+ #: wp-statistics/includes/settings/tabs/wps-general.php:188
581
+ #: wp-statistics/includes/settings/tabs/wps-general.php:200
582
+ #: wp-statistics/includes/settings/tabs/wps-general.php:229
583
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:122
584
+ msgid "Enable or disable this feature"
585
+ msgstr "Zapnout nebo vypnout tuto vlastnost"
586
+
587
+ #: wp-statistics/includes/settings/tabs/wps-general.php:99
588
+ msgid "Check for online users every"
589
+ msgstr "Kontrola online uživatelů každých"
590
+
591
+ #: wp-statistics/includes/settings/tabs/wps-general.php:104
592
+ msgid "Second"
593
+ msgstr "Sekunda"
594
+
595
+ #: wp-statistics/includes/settings/tabs/wps-general.php:105
596
+ msgid "Time for the check accurate online user in the site. Now: %s Second"
597
+ msgstr "Čas pro kontrolu přesné online uživatele v síti. Nyní: %s druhé"
598
+
599
+ #: wp-statistics/includes/settings/tabs/wps-general.php:111
600
+ msgid "Record all user"
601
+ msgstr ""
602
+
603
+ #: wp-statistics/includes/settings/tabs/wps-general.php:117
604
+ msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
605
+ msgstr ""
606
+
607
+ #: wp-statistics/includes/settings/tabs/wps-general.php:155
608
+ msgid "Store entire user agent string"
609
+ msgstr "Uložení celé identifikační řetězec prohlížeče"
610
+
611
+ #: wp-statistics/includes/settings/tabs/wps-general.php:161
612
+ msgid "Only enabled for debugging"
613
+ msgstr "Jen zapnout pro debugging"
614
+
615
+ #: wp-statistics/includes/settings/tabs/wps-general.php:167
616
+ msgid "Coefficient per visitor"
617
+ msgstr "Koeficient na návštěvníka"
618
+
619
+ #: wp-statistics/includes/settings/tabs/wps-general.php:172
620
+ msgid "For each visit to account for several hits. Currently %s."
621
+ msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
622
+
623
+ #: wp-statistics/includes/settings/tabs/wps-general.php:177
624
+ #: wp-statistics/includes/settings/tabs/wps-general.php:182
625
+ #: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:516
626
+ msgid "Pages"
627
+ msgstr "Stránky"
628
+
629
+ #: wp-statistics/includes/settings/tabs/wps-general.php:194
630
+ msgid "Track all pages"
631
+ msgstr "Sledovat všechny stránky"
632
+
633
+ #: wp-statistics/includes/settings/tabs/wps-general.php:209
634
+ msgid "Strip parameters from URI"
635
+ msgstr ""
636
+
637
+ #: wp-statistics/includes/settings/tabs/wps-general.php:215
638
+ msgid "This will remove anything after the ? in a URL."
639
+ msgstr ""
640
+
641
+ #: wp-statistics/includes/settings/tabs/wps-general.php:223
642
+ msgid "Disable hits column in post/pages list"
643
+ msgstr "Zakázat hity sloupec v seznamu post/stránky"
644
+
645
+ #: wp-statistics/includes/settings/tabs/wps-general.php:234
646
+ msgid "Miscellaneous"
647
+ msgstr "Různé"
648
+
649
+ #: wp-statistics/includes/settings/tabs/wps-general.php:239
650
+ msgid "Show stats in menu bar"
651
+ msgstr "Zobrazit statistiky v menu baru"
652
+
653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:244
654
+ msgid "No"
655
+ msgstr "Ne"
656
+
657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:245
658
+ msgid "Yes"
659
+ msgstr "Ano"
660
+
661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:247
662
+ msgid "Show stats in admin menu bar"
663
+ msgstr "Zobrazit statistiku v admin menu baru"
664
+
665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:253
666
+ msgid "Hide admin notices about non active features"
667
+ msgstr "SKrýt admin oznámení o neaktivních vlastnostech"
668
+
669
+ #: wp-statistics/includes/settings/tabs/wps-general.php:259
670
+ msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
671
+ msgstr "Ve výchozím nastavení WP Statistics zobrazí výstrahu, pokud některý ze základních funkcí jsou zakázány na každé stránce správce, tato možnost zakáže tato oznámení."
672
+
673
+ #: wp-statistics/includes/settings/tabs/wps-general.php:265
674
+ msgid "Delete the manual"
675
+ msgstr "Odstranit manuál"
676
+
677
+ #: wp-statistics/includes/settings/tabs/wps-general.php:271
678
+ 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."
679
+ msgstr "Ve výchozím nastavení ukládá statistiky WP admin ruční v adresáři plugin (~ 5 meg), je-li tato možnost povolena, bude odstraněn dnes a během upgrade v budoucnu."
680
+
681
+ #: wp-statistics/includes/settings/tabs/wps-general.php:276
682
+ msgid "Search Engines"
683
+ msgstr ""
684
+
685
+ #: wp-statistics/includes/settings/tabs/wps-general.php:293
686
+ msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
687
+ msgstr "Zakázání všech vyhledávačů není dovoleno, to povede ve všech vyhledávačích je aktivní."
688
+
689
+ #: wp-statistics/includes/settings/tabs/wps-general.php:308
690
+ msgid "disable"
691
+ msgstr "vypnout"
692
+
693
+ #: wp-statistics/includes/settings/tabs/wps-general.php:309
694
+ msgid "Disable %s from data collection and reporting."
695
+ msgstr "Zakážete %s ze shromažďování údajů a výkaznictví."
696
+
697
+ #: wp-statistics/includes/settings/tabs/wps-general.php:315
698
+ msgid "Charts"
699
+ msgstr "Grafy"
700
+
701
+ #: wp-statistics/includes/settings/tabs/wps-general.php:320
702
+ msgid "Include totals"
703
+ msgstr "Zahrnout součty"
704
+
705
+ #: wp-statistics/includes/settings/tabs/wps-general.php:326
706
+ msgid "Add a total line to charts with multiple values, like the search engine referrals"
707
+ msgstr "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač doporučováním"
708
+
709
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:32
710
+ msgid "GeoIP settings"
711
+ msgstr "GeoIP nastavení"
712
+
713
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:37
714
+ msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
715
+ msgstr "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici od %s."
716
+
717
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:47
718
+ msgid "GeoIP collection"
719
+ msgstr "GeoIP kolekce"
720
+
721
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:53
722
+ msgid "For get more information and location (country) from visitor, enable this feature."
723
+ msgstr "Zapněte tuto vlastnost pro získání více informací a lokace (země) návštěvníka."
724
+
725
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:59
726
+ msgid "Update GeoIP Info"
727
+ msgstr "Aktualizovat GeoIP Info"
728
+
729
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:64
730
+ msgid "Download GeoIP Database"
731
+ msgstr "Stáhnout GeoIP Databázi"
732
+
733
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:71
734
+ msgid "Schedule monthly update of GeoIP DB"
735
+ msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
736
+
737
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:97
738
+ msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
739
+ msgstr "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
740
+
741
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:98
742
+ msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
743
+ msgstr "Tato možnost bude také stáhnout databáze, je-li místní velikost souboru je menší než 1 KB (což obvykle znamená, že se zakázaným inzerováním, který je dodáván s plugin je stále na svém místě)."
744
+
745
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:104
746
+ msgid "Populate missing GeoIP after update of GeoIP DB"
747
+ msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
748
+
749
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:110
750
+ msgid "Update any missing GeoIP data after downloading a new database."
751
+ msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
752
+
753
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:116
754
+ msgid "Country code for private IP addresses"
755
+ msgstr ""
756
+
757
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:121
758
+ msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
759
+ msgstr ""
760
+
761
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:132
762
+ msgid "GeoIP collection is disabled due to the following reasons:"
763
+ msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
764
+
765
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:135
766
+ msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
767
+ msgstr "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je vlastnost vypnuta"
768
+
769
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:140
770
+ msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
771
+ msgstr "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
772
+
773
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:146
774
+ msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
775
+ msgstr "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
776
+
777
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:152
778
+ msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
779
+ msgstr "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový režim povolen!"
780
+
781
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
782
+ msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
783
+ msgstr "To bude trvale odstranit data z databáze každý den, jste si jisti, že chcete povolit tuto možnost?"
784
+
785
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
786
+ msgid "Days"
787
+ msgstr "Dny"
788
+
789
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
790
+ msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
791
+ msgstr "Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatné hodnoty zakáže každodenní údržbu."
792
+
793
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:44
794
+ msgid "Common Report Options"
795
+ msgstr ""
796
+
797
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:49
798
+ msgid "E-mail addresses"
799
+ msgstr "E-mail adresy"
800
+
801
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:54
802
+ msgid "A comma separated list of e-mail addresses to send reports to."
803
+ msgstr ""
804
+
805
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:59
806
+ msgid "Update Reports"
807
+ msgstr ""
808
+
809
+ #: wp-statistics/includes/log/exclusions.php:24
810
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:64
811
+ msgid "Browscap"
812
+ msgstr ""
813
+
814
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:70
815
+ msgid "Send a report whenever the browscap.ini is updated."
816
+ msgstr ""
817
+
818
+ #: wp-statistics/includes/log/exclusions.php:24
819
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:76
820
+ msgid "GeoIP"
821
+ msgstr "GeoIP"
822
+
823
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:82
824
+ msgid "Send a report whenever the GeoIP database is updated."
825
+ msgstr ""
826
+
827
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:88
828
+ msgid "Pruning"
829
+ msgstr ""
830
+
831
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:94
832
+ msgid "Send a report whenever the pruning of database is run."
833
+ msgstr ""
834
+
835
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:100
836
+ msgid "Upgrade"
837
+ msgstr ""
838
+
839
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:106
840
+ msgid "Send a report whenever the plugin is upgraded."
841
+ msgstr ""
842
+
843
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:111
844
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:116
845
+ #: wp-statistics/schedule.php:221
846
+ msgid "Statistical reporting"
847
+ msgstr "Statistický reporting"
848
+
849
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:129
850
+ msgid "Schedule"
851
+ msgstr "Plán"
852
+
853
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:153
854
+ msgid "Select how often to receive statistical report."
855
+ msgstr ""
856
+
857
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:159
858
+ msgid "Send reports via"
859
+ msgstr "Zaslat reporty via"
860
+
861
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:165
862
+ msgid "Email"
863
+ msgstr "Email"
864
+
865
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:167
866
+ msgid "SMS"
867
+ msgstr "SMS"
868
+
869
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:170
870
+ msgid "Select delivery method for statistical report."
871
+ msgstr ""
872
+
873
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
874
+ msgid "Note: To send SMS text messages please install the %s plugin."
875
+ msgstr "Poznámka: Poslat SMS textové zprávy prosím nainstalovat zásuvný modul %s."
876
+
877
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
878
+ msgid "WordPress SMS"
879
+ msgstr "WordPress SMS"
880
+
881
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:180
882
+ msgid "Report body"
883
+ msgstr "Tělo reportu"
884
+
885
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:185
886
+ msgid "Enter the contents of the report."
887
+ msgstr ""
888
+
889
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:187
890
+ msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
891
+ msgstr ""
892
+
893
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:188
894
+ #: wp-statistics/widget.php:38 wp-statistics/widget.php:247
895
+ #: wp-statistics/wp-statistics.php:621
896
+ msgid "User Online"
897
+ msgstr "Online uživatelé"
898
+
899
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:189
900
+ #: wp-statistics/widget.php:52 wp-statistics/widget.php:253
901
+ msgid "Today Visitor"
902
+ msgstr "Dnešní návštěvník"
903
+
904
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:190
905
+ #: wp-statistics/widget.php:45 wp-statistics/widget.php:250
906
+ msgid "Today Visit"
907
+ msgstr "Dnešní návštěva"
908
+
909
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:191
910
+ #: wp-statistics/widget.php:66 wp-statistics/widget.php:259
911
+ msgid "Yesterday Visitor"
912
+ msgstr "Včerejší návštěvník"
913
+
914
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:192
915
+ #: wp-statistics/widget.php:59
916
+ msgid "Yesterday Visit"
917
+ msgstr "Včerejší návštěva"
918
+
919
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:193
920
+ #: wp-statistics/widget.php:101 wp-statistics/widget.php:274
921
+ msgid "Total Visitor"
922
+ msgstr "Celkem návštěvníků"
923
+
924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:194
925
+ #: wp-statistics/widget.php:94 wp-statistics/widget.php:271
926
+ msgid "Total Visit"
927
+ msgstr "Celkem návštěv"
928
+
929
+ #: wp-statistics/shortcode.php:175
930
+ msgid "None"
931
+ msgstr "Žádný"
932
+
933
+ #: wp-statistics/includes/settings/wps-settings.php:108
934
+ msgid "About"
935
+ msgstr "O"
936
+
937
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
938
+ msgid "Dashboard"
939
+ msgstr ""
940
+
941
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
942
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
943
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
944
+ msgid "The following items are global to all users."
945
+ msgstr ""
946
+
947
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
948
+ msgid "Disable dashboard widgets"
949
+ msgstr ""
950
+
951
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
952
+ msgid "Disable the dashboard widgets."
953
+ msgstr ""
954
+
955
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
956
+ msgid "Page/Post Editor"
957
+ msgstr ""
958
+
959
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
960
+ msgid "Disable post/page editor widget"
961
+ msgstr ""
962
+
963
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
964
+ msgid "Disable the page/post editor widget."
965
+ msgstr ""
966
+
967
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
968
+ msgid "Map type"
969
+ msgstr "Typ mapy"
970
+
971
+ #: wp-statistics/includes/functions/functions.php:440
972
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
973
+ msgid "Google"
974
+ msgstr "Google"
975
+
976
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
977
+ msgid "JQVMap"
978
+ msgstr "JQVMap"
979
+
980
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
981
+ msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
982
+ msgstr "Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv (požaduje přístup na Google(. "
983
+
984
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
985
+ msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
986
+ msgstr " \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení návštěv (vyžaduje externí služby)."
987
+
988
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
989
+ msgid "Disable map"
990
+ msgstr "Vypnout mapu"
991
+
992
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:95
993
+ msgid "Disable the map display"
994
+ msgstr "Vypnout zobrazení mapy"
995
+
996
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:101
997
+ msgid "Get country location from Google"
998
+ msgstr "Získat polohu země z Google"
999
+
1000
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:107
1001
+ msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
1002
+ msgstr "Tato funkce může způsobit snížení výkonu při prohlížení statistiky a je platná pouze pokud typ mapy je nastavena na \"Google\"."
1003
+
1004
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:15
1005
+ msgid "WP Statisitcs Removal"
1006
+ msgstr ""
1007
+
1008
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:20
1009
+ 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."
1010
+ msgstr ""
1011
+
1012
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:23
1013
+ 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."
1014
+ msgstr ""
1015
+
1016
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:29
1017
+ msgid "Remove data and settings"
1018
+ msgstr ""
1019
+
1020
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:34
1021
+ msgid "Remove"
1022
+ msgstr ""
1023
+
1024
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:35
1025
+ msgid "Remove data and settings, this action cannot be undone."
1026
+ msgstr ""
1027
+
1028
+ #: wp-statistics/includes/settings/wps-settings.php:100
1029
+ msgid "General"
1030
+ msgstr "Obecné"
1031
+
1032
+ #: wp-statistics/includes/settings/wps-settings.php:101
1033
+ msgid "Notifications"
1034
+ msgstr ""
1035
+
1036
+ #: wp-statistics/includes/settings/wps-settings.php:102
1037
+ msgid "Dashboard/Overview"
1038
+ msgstr ""
1039
+
1040
+ #: wp-statistics/includes/settings/wps-settings.php:106
1041
+ msgid "Maintenance"
1042
+ msgstr "Údržba"
1043
+
1044
+ #: wp-statistics/includes/settings/wps-settings.php:107
1045
+ msgid "Removal"
1046
+ msgstr ""
1047
+
1048
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:85
1049
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
1050
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:286
1051
+ #: wp-statistics/includes/settings/tabs/wps-general.php:349
1052
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
1053
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:201
1054
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:116
1055
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:42
1056
+ msgid "Update"
1057
+ msgstr "Aktualizovat"
1058
+
1059
+ #: wp-statistics/schedule.php:10
1060
+ msgid "Once Weekly"
1061
+ msgstr "Jednou týdně"
1062
+
1063
+ #: wp-statistics/schedule.php:17
1064
+ msgid "Once Every 2 Weeks"
1065
+ msgstr "Jednou za 2 týdny"
1066
+
1067
+ #: wp-statistics/schedule.php:24
1068
+ msgid "Once Every 4 Weeks"
1069
+ msgstr "Jednou za 4 týdny"
1070
+
1071
+ #: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
1072
+ #: wp-statistics/wp-statistics.php:469
1073
+ msgid "Statistics"
1074
+ msgstr "Statistiky"
1075
+
1076
+ #: wp-statistics/widget.php:15
1077
+ msgid "Show site stats in sidebar."
1078
+ msgstr "Zobrazit statistiky stránek v postranním panelu."
1079
+
1080
+ #: wp-statistics/widget.php:73 wp-statistics/widget.php:262
1081
+ msgid "Week Visit"
1082
+ msgstr "Týdenní návštěva"
1083
+
1084
+ #: wp-statistics/widget.php:80 wp-statistics/widget.php:265
1085
+ msgid "Month Visit"
1086
+ msgstr "Měsíční návštěva"
1087
+
1088
+ #: wp-statistics/widget.php:87 wp-statistics/widget.php:268
1089
+ msgid "Years Visit"
1090
+ msgstr "Roční návštěvnost"
1091
+
1092
+ #: wp-statistics/widget.php:108 wp-statistics/widget.php:277
1093
+ msgid "Total Page Views"
1094
+ msgstr "Celkový počet zobrazení stránky"
1095
+
1096
+ #: wp-statistics/widget.php:116
1097
+ msgid "Search Engine referred"
1098
+ msgstr "Vyhledávač podle"
1099
+
1100
+ #: wp-statistics/widget.php:123 wp-statistics/widget.php:300
1101
+ msgid "Total Posts"
1102
+ msgstr "Celkem příspěvků"
1103
+
1104
+ #: wp-statistics/widget.php:130 wp-statistics/widget.php:303
1105
+ msgid "Total Pages"
1106
+ msgstr "Celkem stránek"
1107
+
1108
+ #: wp-statistics/widget.php:137 wp-statistics/widget.php:306
1109
+ msgid "Total Comments"
1110
+ msgstr "Celkem komentářů"
1111
+
1112
+ #: wp-statistics/widget.php:144 wp-statistics/widget.php:309
1113
+ msgid "Total Spams"
1114
+ msgstr "Celkem Spamů"
1115
+
1116
+ #: wp-statistics/widget.php:151 wp-statistics/widget.php:312
1117
+ msgid "Total Users"
1118
+ msgstr "Celkem uživatelů"
1119
+
1120
+ #: wp-statistics/widget.php:158 wp-statistics/widget.php:315
1121
+ msgid "Average Posts"
1122
+ msgstr "Průměr příspěvků"
1123
+
1124
+ #: wp-statistics/widget.php:165 wp-statistics/widget.php:318
1125
+ msgid "Average Comments"
1126
+ msgstr "Průměr komentářů"
1127
+
1128
+ #: wp-statistics/widget.php:172 wp-statistics/widget.php:321
1129
+ msgid "Average Users"
1130
+ msgstr "Průměr uživatelů"
1131
+
1132
+ #: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
1133
+ #: wp-statistics/widget.php:324
1134
+ msgid "Last Post Date"
1135
+ msgstr "Datum posledního příspěvku"
1136
+
1137
+ #: wp-statistics/widget.php:240
1138
+ msgid "Name"
1139
+ msgstr "Jméno"
1140
+
1141
+ #: wp-statistics/widget.php:244
1142
+ msgid "Items"
1143
+ msgstr "Položky"
1144
+
1145
+ #: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:646
1146
+ msgid "Yesterday visit"
1147
+ msgstr "Včera návštěv"
1148
+
1149
+ #: wp-statistics/widget.php:280
1150
+ msgid "Search Engine Referred"
1151
+ msgstr "Vyhledávač podle"
1152
+
1153
+ #: wp-statistics/widget.php:283
1154
+ msgid "Select type of search engine"
1155
+ msgstr "Vyberte typ vyhledávače"
1156
+
1157
+ #: wp-statistics/wp-statistics.php:122
1158
+ msgid "WP Statistics has been removed, please disable and delete it."
1159
+ msgstr ""
1160
+
1161
+ #: wp-statistics/wp-statistics.php:54
1162
+ msgid "WP Statistics"
1163
+ msgstr "WP Statistiky"
1164
+
1165
+ #: wp-statistics/wp-statistics.php:55
1166
+ msgid "Complete statistics for your WordPress site."
1167
+ msgstr "Kompletní statistiky pro váš web WordPress."
1168
+
1169
+ #: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
1170
+ #: wp-statistics/wp-statistics.php:523
1171
+ msgid "Settings"
1172
+ msgstr "Nastavení"
1173
+
1174
+ #: wp-statistics/wp-statistics.php:325
1175
+ msgid "Click here to visit the plugin on WordPress.org"
1176
+ msgstr "Chcete-li navštívit plugin WordPress.org"
1177
+
1178
+ #: wp-statistics/wp-statistics.php:325
1179
+ msgid "Visit WordPress.org page"
1180
+ msgstr "Navštivte stránku WordPress.org"
1181
+
1182
+ #: wp-statistics/wp-statistics.php:328
1183
+ msgid "Click here to rate and review this plugin on WordPress.org"
1184
+ msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
1185
+
1186
+ #: wp-statistics/wp-statistics.php:328
1187
+ msgid "Rate this plugin"
1188
+ msgstr "Ohodnoť tento plugin"
1189
+
1190
+ #: wp-statistics/wp-statistics.php:372
1191
+ msgid "WP Statistics - Hits"
1192
+ msgstr "WP Statistics - Hits"
1193
+
1194
+ #: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:472
1195
+ #: wp-statistics/wp-statistics.php:510
1196
+ msgid "Overview"
1197
+ msgstr "Přehled"
1198
+
1199
+ #: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:515
1200
+ msgid "Online"
1201
+ msgstr ""
1202
+
1203
+ #: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:517
1204
+ msgid "Referrers"
1205
+ msgstr ""
1206
+
1207
+ #: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
1208
+ #: wp-statistics/wp-statistics.php:518
1209
+ msgid "Searches"
1210
+ msgstr "Vyhledávání"
1211
+
1212
+ #: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:519
1213
+ msgid "Search Words"
1214
+ msgstr "Hledaná slova"
1215
+
1216
+ #: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:520
1217
+ msgid "Top Visitors Today"
1218
+ msgstr ""
1219
+
1220
+ #: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:522
1221
+ msgid "Optimization"
1222
+ msgstr "Optimalizace"
1223
+
1224
+ #: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:486
1225
+ msgid "Manual"
1226
+ msgstr "Manuál"
1227
+
1228
+ #: wp-statistics/wp-statistics.php:501
1229
+ msgid "Site"
1230
+ msgstr ""
1231
+
1232
+ #: wp-statistics/wp-statistics.php:502
1233
+ msgid "Options"
1234
+ msgstr ""
1235
+
1236
+ #: wp-statistics/wp-statistics.php:628
1237
+ msgid "Today visitor"
1238
+ msgstr "Dnešní návštěvník"
1239
+
1240
+ #: wp-statistics/wp-statistics.php:634
1241
+ msgid "Today visit"
1242
+ msgstr "Dnešní návštěva"
1243
+
1244
+ #: wp-statistics/wp-statistics.php:640
1245
+ msgid "Yesterday visitor"
1246
+ msgstr "Včera návštěvníků"
1247
+
1248
+ #: wp-statistics/wp-statistics.php:652
1249
+ msgid "View Stats"
1250
+ msgstr "Zobrazit statistiky"
1251
+
1252
+ #: wp-statistics/wp-statistics.php:676
1253
+ msgid "Download ODF file"
1254
+ msgstr "Stáhnout soubor ODF"
1255
+
1256
+ #: wp-statistics/wp-statistics.php:677
1257
+ msgid "Download HTML file"
1258
+ msgstr "Stáhnout HTML soubor"
1259
+
1260
+ #: wp-statistics/wp-statistics.php:681
1261
+ msgid "Manual file not found."
1262
+ msgstr "Ruční soubor nebyl nalezen."
1263
+
1264
+ #: wp-statistics/wp-statistics.php:748 wp-statistics/wp-statistics.php:880
1265
+ #: wp-statistics/wp-statistics.php:915
1266
+ msgid "You do not have sufficient permissions to access this page."
1267
+ msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
1268
+
1269
+ #: wp-statistics/wp-statistics.php:301
1270
+ msgid "WP Statistics %s installed on"
1271
+ msgstr ""
1272
+
1273
+ #: wp-statistics/wps-updates.php:54
1274
+ msgid "Error downloading GeoIP database from: %s - %s"
1275
+ msgstr "Chyba při stahování GeoIP databáze od: %s - %s"
1276
+
1277
+ #: wp-statistics/wps-updates.php:65
1278
+ msgid "Error could not open downloaded GeoIP database for reading: %s"
1279
+ msgstr "Chyba nelze otevřít stažené GeoIP databázi pro čtení: %s"
1280
+
1281
+ #: wp-statistics/wps-updates.php:72
1282
+ msgid "Error could not open destination GeoIP database for writing %s"
1283
+ msgstr "Chyba nelze otevřít cílovou databázi GeoIP pro psaní %s"
1284
+
1285
+ #: wp-statistics/wps-updates.php:88
1286
+ msgid "GeoIP Database updated successfully!"
1287
+ msgstr "GeoIP Databáze byla úspěšně aktualizována!"
1288
+
1289
+ #: wp-statistics/wps-updates.php:113
1290
+ msgid "GeoIP update on"
1291
+ msgstr ""
1292
+
1293
+ #: wp-statistics/wps-updates.php:180
1294
+ msgid "Error downloading browscap database from: %s - %s"
1295
+ msgstr "Chyba při stahování browscap databáze od: %s - %s"
1296
+
1297
+ #: wp-statistics/wps-updates.php:289
1298
+ msgid "browscap database updated successfully!"
1299
+ msgstr "Browscap databáze úspěšně aktualizován!"
1300
+
1301
+ #: wp-statistics/wps-updates.php:299
1302
+ msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1303
+ msgstr ""
1304
+
1305
+ #: wp-statistics/wps-updates.php:307
1306
+ msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1307
+ msgstr ""
1308
+
1309
+ #: wp-statistics/wps-updates.php:329
1310
+ msgid "browscap already at current version!"
1311
+ msgstr "Browscap již v aktuální verzi!"
1312
+
1313
+ #: wp-statistics/wps-updates.php:342
1314
+ msgid "Browscap.ini update on"
1315
+ msgstr ""
1316
+
1317
+ #: wp-statistics/dashboard.php:56
1318
+ msgid "Quick Stats"
1319
+ msgstr ""
1320
+
1321
+ #: wp-statistics/dashboard.php:57
1322
+ #: wp-statistics/includes/log/widgets/browsers.php:41
1323
+ msgid "Top 10 Browsers"
1324
+ msgstr "Top 10 Prohlížečů"
1325
+
1326
+ #: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:457
1327
+ msgid "Top 10 Countries"
1328
+ msgstr "Pořadí"
1329
+
1330
+ #: wp-statistics/dashboard.php:59
1331
+ msgid "Today's Visitor Map"
1332
+ msgstr ""
1333
+
1334
+ #: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
1335
+ #: wp-statistics/includes/log/hit-statistics.php:8
1336
+ #: wp-statistics/wp-statistics.php:446
1337
+ msgid "Hit Statistics"
1338
+ msgstr "Statistika hitů"
1339
+
1340
+ #: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:450
1341
+ msgid "Top 10 Pages"
1342
+ msgstr "Top 10 stránek"
1343
+
1344
+ #: wp-statistics/dashboard.php:62
1345
+ #: wp-statistics/includes/log/last-visitor.php:36
1346
+ #: wp-statistics/wp-statistics.php:451
1347
+ msgid "Recent Visitors"
1348
+ msgstr "Aktuální návštěvníci"
1349
+
1350
+ #: wp-statistics/dashboard.php:63
1351
+ #: wp-statistics/includes/log/top-referring.php:59
1352
+ #: wp-statistics/includes/log/top-referring.php:81
1353
+ #: wp-statistics/wp-statistics.php:456
1354
+ msgid "Top Referring Sites"
1355
+ msgstr "Nejlepší odkazující stránky"
1356
+
1357
+ #: wp-statistics/dashboard.php:64
1358
+ #: wp-statistics/includes/log/widgets/quickstats.php:75
1359
+ #: wp-statistics/includes/log/widgets/summary.php:75
1360
+ #: wp-statistics/wp-statistics.php:448
1361
+ msgid "Search Engine Referrals"
1362
+ msgstr "Vyhledávací Engine odkazy"
1363
+
1364
+ #: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:454
1365
+ msgid "Summary"
1366
+ msgstr "Souhrn"
1367
+
1368
+ #: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
1369
+ #: wp-statistics/wp-statistics.php:449
1370
+ msgid "Latest Search Words"
1371
+ msgstr "Poslední vyhledávaný slova"
1372
+
1373
+ #: wp-statistics/dashboard.php:67
1374
+ msgid "Top 10 Visitors Today"
1375
+ msgstr ""
1376
+
1377
+ #: wp-statistics/editor.php:58
1378
+ msgid "This post is not yet published."
1379
+ msgstr ""
1380
+
1381
+ #: wp-statistics/includes/functions/geoip-populate.php:24
1382
+ msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1383
+ msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
1384
+
1385
+ #: wp-statistics/includes/functions/geoip-populate.php:48
1386
+ msgid "Updated %s GeoIP records in the visitors database."
1387
+ msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
1388
+
1389
+ #: wp-statistics/includes/functions/purge.php:21
1390
+ #: wp-statistics/includes/functions/purge.php:39
1391
+ #: wp-statistics/includes/functions/purge.php:50
1392
+ #: wp-statistics/includes/functions/purge.php:61
1393
+ #: wp-statistics/includes/functions/purge.php:94
1394
+ msgid "%s data older than %s days purged successfully."
1395
+ msgstr "%s data starší než %s dnφ úspěšně vyprázdněna."
1396
+
1397
+ #: wp-statistics/includes/functions/purge.php:23
1398
+ #: wp-statistics/includes/functions/purge.php:41
1399
+ #: wp-statistics/includes/functions/purge.php:52
1400
+ #: wp-statistics/includes/functions/purge.php:63
1401
+ #: wp-statistics/includes/functions/purge.php:96
1402
+ msgid "No records found to purge from %s!"
1403
+ msgstr "Žádné záznamy nalezeny očistit od %s!"
1404
+
1405
+ #: wp-statistics/includes/functions/purge-hits.php:45
1406
+ #: wp-statistics/includes/functions/purge.php:109
1407
+ msgid "Database pruned on"
1408
+ msgstr ""
1409
+
1410
+ #: wp-statistics/includes/functions/purge.php:114
1411
+ msgid "Please select a value over 30 days."
1412
+ msgstr "Prosím vyber hodnotu nad 30 dní."
1413
+
1414
+ #: wp-statistics/includes/log/all-browsers.php:21
1415
+ msgid "Browser Statistics"
1416
+ msgstr "Statistiky prohlížečů"
1417
+
1418
+ #: wp-statistics/includes/log/all-browsers.php:29
1419
+ #: wp-statistics/includes/log/all-browsers.php:113
1420
+ #: wp-statistics/includes/log/all-browsers.php:248
1421
+ #: wp-statistics/includes/log/exclusions.php:72
1422
+ #: wp-statistics/includes/log/exclusions.php:190
1423
+ #: wp-statistics/includes/log/hit-statistics.php:26
1424
+ #: wp-statistics/includes/log/hit-statistics.php:163
1425
+ #: wp-statistics/includes/log/last-search.php:64
1426
+ #: wp-statistics/includes/log/last-visitor.php:67
1427
+ #: wp-statistics/includes/log/online.php:17
1428
+ #: wp-statistics/includes/log/page-statistics.php:34
1429
+ #: wp-statistics/includes/log/search-statistics.php:27
1430
+ #: wp-statistics/includes/log/top-countries.php:26
1431
+ #: wp-statistics/includes/log/top-pages.php:29
1432
+ #: wp-statistics/includes/log/top-pages.php:155
1433
+ #: wp-statistics/includes/log/top-referring.php:77
1434
+ #: wp-statistics/includes/log/top-visitors.php:40
1435
+ msgid "Click to toggle"
1436
+ msgstr "Klik na vypínač"
1437
+
1438
+ #: wp-statistics/includes/log/all-browsers.php:30
1439
+ #: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:455
1440
+ #: wp-statistics/wp-statistics.php:511
1441
+ msgid "Browsers"
1442
+ msgstr "Prohlížeče"
1443
+
1444
+ #: wp-statistics/includes/log/all-browsers.php:57
1445
+ msgid "Browsers by type"
1446
+ msgstr "Prohlížeče podle typu"
1447
+
1448
+ #: wp-statistics/includes/log/all-browsers.php:114
1449
+ #: wp-statistics/includes/log/widgets/top.visitors.php:18
1450
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1451
+ msgid "Platform"
1452
+ msgstr "Platforma"
1453
+
1454
+ #: wp-statistics/includes/log/all-browsers.php:141
1455
+ msgid "Browsers by platform"
1456
+ msgstr "Platforma prohlížečů"
1457
+
1458
+ #: wp-statistics/includes/log/all-browsers.php:249
1459
+ msgid "%s Version"
1460
+ msgstr "%s Verze"
1461
+
1462
+ #: wp-statistics/includes/log/exclusions.php:8
1463
+ msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1464
+ msgstr "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výsledky níže nemusí odrážet aktuální statistiky!"
1465
+
1466
+ #: wp-statistics/includes/log/exclusions.php:64
1467
+ msgid "Exclusions Statistics"
1468
+ msgstr "Vyloučení statistiky"
1469
+
1470
+ #: wp-statistics/includes/functions/functions.php:970
1471
+ msgid "10 Days"
1472
+ msgstr "10 Dnů"
1473
+
1474
+ #: wp-statistics/includes/functions/functions.php:970
1475
+ msgid "20 Days"
1476
+ msgstr "20 Dnů"
1477
+
1478
+ #: wp-statistics/includes/functions/functions.php:970
1479
+ msgid "30 Days"
1480
+ msgstr "30 Dnů"
1481
+
1482
+ #: wp-statistics/includes/functions/functions.php:970
1483
+ msgid "2 Months"
1484
+ msgstr "2 Měsíce"
1485
+
1486
+ #: wp-statistics/includes/functions/functions.php:970
1487
+ msgid "3 Months"
1488
+ msgstr "3 Měsíce"
1489
+
1490
+ #: wp-statistics/includes/functions/functions.php:970
1491
+ msgid "6 Months"
1492
+ msgstr "6 Měsíců"
1493
+
1494
+ #: wp-statistics/includes/functions/functions.php:970
1495
+ msgid "9 Months"
1496
+ msgstr "9 Měsíců"
1497
+
1498
+ #: wp-statistics/includes/functions/functions.php:970
1499
+ msgid "1 Year"
1500
+ msgstr "1 Rok"
1501
+
1502
+ #: wp-statistics/includes/log/exclusions.php:73
1503
+ msgid "Exclusions Statistical Chart"
1504
+ msgstr "Statistický graf vyjímek"
1505
+
1506
+ #: wp-statistics/includes/log/exclusions.php:95
1507
+ msgid "Excluded hits in the last"
1508
+ msgstr "Vyloučené hity v posledních"
1509
+
1510
+ #: wp-statistics/includes/log/exclusions.php:95
1511
+ #: wp-statistics/includes/log/hit-statistics.php:66
1512
+ #: wp-statistics/includes/log/search-statistics.php:69
1513
+ #: wp-statistics/includes/log/widgets/hits.php:42
1514
+ #: wp-statistics/includes/log/widgets/search.php:42
1515
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
1516
+ msgid "days"
1517
+ msgstr "dnů"
1518
+
1519
+ #: wp-statistics/includes/log/exclusions.php:116
1520
+ msgid "Number of excluded hits"
1521
+ msgstr "Počet vyjmutých hitů"
1522
+
1523
+ #: wp-statistics/includes/log/hit-statistics.php:27
1524
+ msgid "Hits Statistics Chart"
1525
+ msgstr "Graf statistiky přístupů"
1526
+
1527
+ #: wp-statistics/includes/log/hit-statistics.php:66
1528
+ #: wp-statistics/includes/log/widgets/hits.php:42
1529
+ msgid "Hits in the last"
1530
+ msgstr "Hity v posledních"
1531
+
1532
+ #: wp-statistics/includes/log/hit-statistics.php:87
1533
+ #: wp-statistics/includes/log/widgets/hits.php:63
1534
+ msgid "Number of visits and visitors"
1535
+ msgstr "Počet návštěv a návštěvníků"
1536
+
1537
+ #: wp-statistics/includes/log/hit-statistics.php:101
1538
+ #: wp-statistics/includes/log/hit-statistics.php:170
1539
+ #: wp-statistics/includes/log/widgets/hits.php:77
1540
+ #: wp-statistics/includes/log/widgets/quickstats.php:24
1541
+ #: wp-statistics/includes/log/widgets/summary.php:24
1542
+ msgid "Visit"
1543
+ msgstr "Návštěva"
1544
+
1545
+ #: wp-statistics/includes/log/hit-statistics.php:101
1546
+ #: wp-statistics/includes/log/hit-statistics.php:171
1547
+ #: wp-statistics/includes/log/widgets/hits.php:77
1548
+ #: wp-statistics/includes/log/widgets/quickstats.php:23
1549
+ #: wp-statistics/includes/log/widgets/summary.php:23
1550
+ msgid "Visitor"
1551
+ msgstr "Návštěvník"
1552
+
1553
+ #: wp-statistics/includes/log/last-search.php:65
1554
+ msgid "Latest Search Word Statistics"
1555
+ msgstr "Stastiky posledně vyhledávaných slov"
1556
+
1557
+ #: wp-statistics/includes/log/last-search.php:110
1558
+ #: wp-statistics/includes/log/last-visitor.php:101
1559
+ #: wp-statistics/includes/log/online.php:50
1560
+ #: wp-statistics/includes/log/widgets/google.map.php:60
1561
+ #: wp-statistics/includes/log/widgets/jqv.map.php:55
1562
+ #: wp-statistics/includes/log/widgets/recent.php:14
1563
+ #: wp-statistics/includes/log/widgets/words.php:27
1564
+ msgid "#hash#"
1565
+ msgstr "#hash #"
1566
+
1567
+ #: wp-statistics/includes/log/last-search.php:115
1568
+ #: wp-statistics/includes/log/last-visitor.php:106
1569
+ #: wp-statistics/includes/log/online.php:55
1570
+ #: wp-statistics/includes/log/top-referring.php:112
1571
+ #: wp-statistics/includes/log/widgets/recent.php:19
1572
+ #: wp-statistics/includes/log/widgets/words.php:42
1573
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
1574
+ msgid "Map"
1575
+ msgstr "Mapa"
1576
+
1577
+ #: wp-statistics/includes/log/last-search.php:159
1578
+ #: wp-statistics/includes/log/last-visitor.php:139
1579
+ #: wp-statistics/includes/log/online.php:109
1580
+ #: wp-statistics/includes/log/top-pages.php:205
1581
+ #: wp-statistics/includes/log/top-referring.php:153
1582
+ msgid "Page"
1583
+ msgstr "Stránka"
1584
+
1585
+ #: wp-statistics/includes/log/last-search.php:159
1586
+ #: wp-statistics/includes/log/last-visitor.php:139
1587
+ #: wp-statistics/includes/log/online.php:109
1588
+ #: wp-statistics/includes/log/top-pages.php:205
1589
+ #: wp-statistics/includes/log/top-referring.php:153
1590
+ msgid "From"
1591
+ msgstr "Od"
1592
+
1593
+ #: wp-statistics/includes/log/last-search.php:47
1594
+ #: wp-statistics/includes/log/last-visitor.php:38
1595
+ #: wp-statistics/includes/log/top-referring.php:67
1596
+ #: wp-statistics/includes/log/top-referring.php:70
1597
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
1598
+ #: wp-statistics/widget.php:296
1599
+ msgid "All"
1600
+ msgstr "Všechno"
1601
+
1602
+ #: wp-statistics/includes/log/last-visitor.php:68
1603
+ msgid "Recent Visitor Statistics"
1604
+ msgstr "Nedávné statistiky návštěvnosti"
1605
+
1606
+ #: wp-statistics/includes/log/online.php:11
1607
+ #: wp-statistics/includes/log/online.php:18
1608
+ msgid "Online Users"
1609
+ msgstr ""
1610
+
1611
+ #: wp-statistics/includes/log/online.php:75
1612
+ msgid "Online for "
1613
+ msgstr ""
1614
+
1615
+ #: wp-statistics/includes/log/page-statistics.php:26
1616
+ msgid "Page Trend for Post ID"
1617
+ msgstr "Stránky Trend pro ID příspěvku"
1618
+
1619
+ #: wp-statistics/includes/log/page-statistics.php:35
1620
+ msgid "Page Trend"
1621
+ msgstr "Stránky Trend"
1622
+
1623
+ #: wp-statistics/includes/log/search-statistics.php:19
1624
+ #: wp-statistics/includes/log/search-statistics.php:28
1625
+ msgid "Search Engine Referral Statistics"
1626
+ msgstr "Vyhledávací Engine referenční Statistika"
1627
+
1628
+ #: wp-statistics/includes/log/search-statistics.php:69
1629
+ #: wp-statistics/includes/log/widgets/search.php:42
1630
+ msgid "Search engine referrals in the last"
1631
+ msgstr "Vyhledávací stroj doporučení v posledních"
1632
+
1633
+ #: wp-statistics/includes/log/search-statistics.php:90
1634
+ #: wp-statistics/includes/log/widgets/search.php:63
1635
+ msgid "Number of referrals"
1636
+ msgstr "Počet odkazů"
1637
+
1638
+ #: wp-statistics/includes/log/exclusions.php:24
1639
+ #: wp-statistics/includes/log/search-statistics.php:104
1640
+ #: wp-statistics/includes/log/widgets/quickstats.php:58
1641
+ #: wp-statistics/includes/log/widgets/quickstats.php:105
1642
+ #: wp-statistics/includes/log/widgets/search.php:77
1643
+ #: wp-statistics/includes/log/widgets/summary.php:58
1644
+ #: wp-statistics/includes/log/widgets/summary.php:105
1645
+ msgid "Total"
1646
+ msgstr "Celkem"
1647
+
1648
+ #: wp-statistics/includes/log/top-countries.php:18
1649
+ #: wp-statistics/includes/log/top-countries.php:27
1650
+ msgid "Top Countries"
1651
+ msgstr "Top zemí"
1652
+
1653
+ #: wp-statistics/includes/log/top-countries.php:31
1654
+ #: wp-statistics/includes/log/widgets/countries.php:9
1655
+ #: wp-statistics/includes/log/widgets/top.visitors.php:11
1656
+ msgid "Rank"
1657
+ msgstr "Vlajka"
1658
+
1659
+ #: wp-statistics/includes/log/top-countries.php:32
1660
+ #: wp-statistics/includes/log/widgets/countries.php:10
1661
+ #: wp-statistics/includes/log/widgets/top.visitors.php:13
1662
+ msgid "Flag"
1663
+ msgstr "Počet návštěvníků"
1664
+
1665
+ #: wp-statistics/includes/log/top-countries.php:33
1666
+ #: wp-statistics/includes/log/widgets/countries.php:11
1667
+ #: wp-statistics/includes/log/widgets/top.visitors.php:14
1668
+ msgid "Country"
1669
+ msgstr "Země"
1670
+
1671
+ #: wp-statistics/includes/log/top-countries.php:34
1672
+ #: wp-statistics/includes/log/widgets/countries.php:12
1673
+ msgid "Visitor Count"
1674
+ msgstr "Počet návštěvníků"
1675
+
1676
+ #: wp-statistics/includes/log/top-pages.php:20
1677
+ #: wp-statistics/includes/log/top-pages.php:156
1678
+ msgid "Top Pages"
1679
+ msgstr "Nejlepší stránky"
1680
+
1681
+ #: wp-statistics/includes/log/top-pages.php:30
1682
+ msgid "Top 5 Pages Trends"
1683
+ msgstr "Top 5 stránek trendy"
1684
+
1685
+ #: wp-statistics/includes/log/top-pages.php:67
1686
+ msgid "Top 5 Page Trending Stats"
1687
+ msgstr "Top 5 stránek trendy statistiky"
1688
+
1689
+ #: wp-statistics/includes/log/top-pages.php:88
1690
+ #: wp-statistics/includes/log/widgets/page.php:63
1691
+ msgid "Number of Hits"
1692
+ msgstr "Počet přístupů"
1693
+
1694
+ #: wp-statistics/includes/log/top-pages.php:184
1695
+ #: wp-statistics/includes/log/widgets/pages.php:13
1696
+ msgid "No page title found"
1697
+ msgstr "Žádný titulek stránky nalézt"
1698
+
1699
+ #: wp-statistics/includes/log/top-pages.php:187
1700
+ #: wp-statistics/includes/log/widgets/pages.php:16
1701
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
1702
+ #: wp-statistics/includes/settings/tabs/wps-general.php:122
1703
+ #: wp-statistics/includes/settings/tabs/wps-general.php:127
1704
+ #: wp-statistics/shortcode.php:139
1705
+ msgid "Visits"
1706
+ msgstr "Návštěvy"
1707
+
1708
+ #: wp-statistics/includes/log/top-referring.php:4
1709
+ msgid "To be added soon"
1710
+ msgstr "Brzy bude přidáno"
1711
+
1712
+ #: wp-statistics/includes/log/top-referring.php:79
1713
+ msgid "Referring sites from"
1714
+ msgstr "Odkazující stránky od"
1715
+
1716
+ #: wp-statistics/includes/log/top-referring.php:137
1717
+ #: wp-statistics/includes/log/widgets/referring.php:35
1718
+ msgid "References"
1719
+ msgstr "Odkazy"
1720
+
1721
+ #: wp-statistics/includes/log/top-visitors.php:12
1722
+ msgid "Top 100 Visitors Today"
1723
+ msgstr ""
1724
+
1725
+ #: wp-statistics/includes/log/log.php:17
1726
+ msgid "About WP Statistics Version %s"
1727
+ msgstr "O WP Statistics Verze %s"
1728
+
1729
+ #: wp-statistics/includes/log/widgets/about.php:11
1730
+ msgid "Website"
1731
+ msgstr "Web stránky"
1732
+
1733
+ #: wp-statistics/includes/log/widgets/about.php:12
1734
+ msgid "Rate and Review"
1735
+ msgstr "Hodnotit a recenzovat"
1736
+
1737
+ #: wp-statistics/includes/log/widgets/about.php:16
1738
+ msgid "More Information"
1739
+ msgstr "Více informací"
1740
+
1741
+ #: wp-statistics/includes/log/widgets/about.php:25
1742
+ #: wp-statistics/includes/settings/tabs/wps-about.php:12
1743
+ msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1744
+ msgstr "Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od %s."
1745
+
1746
+ #: wp-statistics/includes/log/widgets/browsers.php:34
1747
+ msgid "Other"
1748
+ msgstr "Jiný"
1749
+
1750
+ #: wp-statistics/wp-statistics.php:445
1751
+ msgid "Today Visitors Map"
1752
+ msgstr "Dnešní mapa návštšvníků"
1753
+
1754
+ #: wp-statistics/includes/log/widgets/referring.php:36
1755
+ msgid "Address"
1756
+ msgstr "Adresa"
1757
+
1758
+ #: wp-statistics/includes/log/widgets/quickstats.php:12
1759
+ #: wp-statistics/includes/log/widgets/summary.php:12
1760
+ msgid "User(s) Online"
1761
+ msgstr "Online uživatelé"
1762
+
1763
+ #: wp-statistics/includes/log/widgets/quickstats.php:28
1764
+ #: wp-statistics/includes/log/widgets/quickstats.php:80
1765
+ #: wp-statistics/includes/log/widgets/summary.php:28
1766
+ #: wp-statistics/includes/log/widgets/summary.php:80
1767
+ msgid "Today"
1768
+ msgstr "Dnes"
1769
+
1770
+ #: wp-statistics/includes/log/widgets/quickstats.php:34
1771
+ #: wp-statistics/includes/log/widgets/quickstats.php:81
1772
+ #: wp-statistics/includes/log/widgets/summary.php:34
1773
+ #: wp-statistics/includes/log/widgets/summary.php:81
1774
+ msgid "Yesterday"
1775
+ msgstr "Včera"
1776
+
1777
+ #: wp-statistics/includes/log/widgets/quickstats.php:99
1778
+ #: wp-statistics/includes/log/widgets/summary.php:99
1779
+ msgid "Daily Total"
1780
+ msgstr "Denně celkem"
1781
+
1782
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1783
+ #: wp-statistics/includes/log/widgets/summary.php:118
1784
+ msgid "Current Time and Date"
1785
+ msgstr "Aktuální čas a datum"
1786
+
1787
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1788
+ #: wp-statistics/includes/log/widgets/summary.php:118
1789
+ msgid "(Adjustment)"
1790
+ msgstr "(Nastavení)"
1791
+
1792
+ #: wp-statistics/includes/log/widgets/quickstats.php:122
1793
+ #: wp-statistics/includes/log/widgets/summary.php:122
1794
+ msgid "Date: %s"
1795
+ msgstr "Datum: %s"
1796
+
1797
+ #: wp-statistics/includes/log/widgets/quickstats.php:126
1798
+ #: wp-statistics/includes/log/widgets/summary.php:126
1799
+ msgid "Time: %s"
1800
+ msgstr "Čas: %s"
1801
+
1802
+ #: wp-statistics/includes/log/widgets/top.visitors.php:12
1803
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
1804
+ #: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
1805
+ #: wp-statistics/wp-statistics.php:514
1806
+ msgid "Hits"
1807
+ msgstr "Hity"
1808
+
1809
+ #: wp-statistics/includes/log/widgets/top.visitors.php:15
1810
+ msgid "IP"
1811
+ msgstr ""
1812
+
1813
+ #: wp-statistics/includes/log/widgets/top.visitors.php:17
1814
+ msgid "Agent"
1815
+ msgstr ""
1816
+
1817
+ #: wp-statistics/includes/log/widgets/top.visitors.php:19
1818
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1819
+ msgid "Version"
1820
+ msgstr ""
1821
+
1822
+ #: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
1823
+ #: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
1824
+ #: wp-statistics/ajax.php:184 wp-statistics/ajax.php:302
1825
+ #: wp-statistics/includes/optimization/wps-optimization.php:6
1826
+ msgid "Access denied!"
1827
+ msgstr "Přístup zakázán!"
1828
+
1829
+ #: wp-statistics/ajax.php:31
1830
+ msgid "%s agent data deleted successfully."
1831
+ msgstr "%s agenta data úspěšně smazána."
1832
+
1833
+ #: wp-statistics/ajax.php:34
1834
+ msgid "No agent data found to remove!"
1835
+ msgstr ""
1836
+
1837
+ #: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
1838
+ #: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
1839
+ msgid "Please select the desired items."
1840
+ msgstr "Prosím vyber požadované položky."
1841
+
1842
+ #: wp-statistics/ajax.php:62
1843
+ msgid "%s platform data deleted successfully."
1844
+ msgstr "údaje platforma %s úspěšně smazána."
1845
+
1846
+ #: wp-statistics/ajax.php:65
1847
+ msgid "No platform data found to remove!"
1848
+ msgstr ""
1849
+
1850
+ #: wp-statistics/includes/functions/functions.php:1074
1851
+ msgid "%s table data deleted successfully."
1852
+ msgstr "data tabulky %s úspěšně smazána."
1853
+
1854
+ #: wp-statistics/includes/functions/functions.php:1078
1855
+ msgid "Error, %s not emptied!"
1856
+ msgstr "Chyba, %s není vyprázdněno!"
1857
+
1858
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1859
+ msgid "Database Setup"
1860
+ msgstr "Nastavení databáze"
1861
+
1862
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1863
+ msgid "Re-run Install"
1864
+ msgstr "Spusťte znovu instalaci"
1865
+
1866
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1867
+ msgid "Install Now!"
1868
+ msgstr "Nainstalujte nyní!"
1869
+
1870
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1871
+ 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."
1872
+ msgstr "Pokud z nějakého důvodu instalace WP Statistics chybí, databázové tabulky nebo jiné položky jádro, to bude znovu provést instalačního procesu."
1873
+
1874
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1875
+ msgid "Database Index"
1876
+ msgstr "Databáze Index"
1877
+
1878
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1879
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1880
+ #: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:512
1881
+ msgid "Countries"
1882
+ msgstr "Země"
1883
+
1884
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
1885
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
1886
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1887
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1888
+ msgid "Update Now!"
1889
+ msgstr "!Aktualizovat nyní"
1890
+
1891
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
1892
+ 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."
1893
+ msgstr "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce návštěvníků v případě rohové. Novější instalace se proti tomu bránit s jedinečný index v tabulce. Chcete-li vytvořit index na starší instaluje duplicitní položky musí být odstraněny jako první. Klepnutím na \"Update Now\" prohledá tabulku vistitors, odstranit duplicitní položky a přidat indexu."
1894
+
1895
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
1896
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
1897
+ msgid "This operation could take a long time on installs with many rows in the visitors table."
1898
+ msgstr "Tato operace může trvat dlouhou dobu na nainstaluje s mnoha řádků v tabulce návštěvníků."
1899
+
1900
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
1901
+ 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."
1902
+ msgstr "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce návštěvníků v případě rohové. Novější instalace se proti tomu bránit s jedinečný index v tabulce."
1903
+
1904
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
1905
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
1906
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
1907
+ msgid "Congratulations, your installation is already up to date, nothing to do."
1908
+ msgstr "Gratulujeme vaše instalace je již datum, nic společného."
1909
+
1910
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
1911
+ #: wp-statistics/includes/optimization/wps-optimization.php:235
1912
+ msgid "Export"
1913
+ msgstr "Export"
1914
+
1915
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
1916
+ msgid "Export from"
1917
+ msgstr "Export od"
1918
+
1919
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
1920
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
1921
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
1922
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
1923
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
1924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:134
1925
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:164
1926
+ msgid "Please select"
1927
+ msgstr "Prosím vyber"
1928
+
1929
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
1930
+ msgid "Select the table for the output file."
1931
+ msgstr "Vyberte tabulku pro výstupní soubor."
1932
+
1933
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
1934
+ msgid "Export To"
1935
+ msgstr "Exportovat do"
1936
+
1937
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
1938
+ msgid "Select the output file type."
1939
+ msgstr "Vyber typ výstupní souboru."
1940
+
1941
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
1942
+ msgid "Include Header Row"
1943
+ msgstr "Zahrnout řádek záhlaví"
1944
+
1945
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1946
+ msgid "Include a header row as the first line of the exported file."
1947
+ msgstr "Zahrnout řádek záhlaví jako první řádek v exportovaném souboru."
1948
+
1949
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
1950
+ msgid "Start Now!"
1951
+ msgstr "Start Nyní!"
1952
+
1953
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1954
+ msgid "Historical Values"
1955
+ msgstr ""
1956
+
1957
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1958
+ msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1959
+ msgstr ""
1960
+
1961
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1962
+ #: wp-statistics/includes/settings/tabs/wps-general.php:138
1963
+ #: wp-statistics/includes/settings/tabs/wps-general.php:143
1964
+ #: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
1965
+ #: wp-statistics/wp-statistics.php:521
1966
+ msgid "Visitors"
1967
+ msgstr "Návštěvníci"
1968
+
1969
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1970
+ msgid "Number of historical number of visitors to the site (current value is %s)."
1971
+ msgstr ""
1972
+
1973
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1974
+ msgid "Number of historical number of visits to the site (current value is %s)."
1975
+ msgstr ""
1976
+
1977
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1978
+ msgid "Update now!"
1979
+ msgstr ""
1980
+
1981
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1982
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
1983
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
1984
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
1985
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
1986
+ msgid "Are you sure?"
1987
+ msgstr "Jste si jistý?"
1988
+
1989
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
1990
+ msgid "Data"
1991
+ msgstr "Data"
1992
+
1993
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1994
+ msgid "Empty Table"
1995
+ msgstr "Prázdná tabulka"
1996
+
1997
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
1998
+ msgid "All data table will be lost."
1999
+ msgstr "Všechna data budou ztracena!"
2000
+
2001
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
2002
+ msgid "Clear now!"
2003
+ msgstr "Vyčistit nyní!"
2004
+
2005
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
2006
+ msgid "Purge records older than"
2007
+ msgstr "Pročistit záznamy starší než"
2008
+
2009
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
2010
+ msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
2011
+ msgstr "Odstraněný uživatel statistická data starší než zvolený počet dní. Minimální hodnota je 30 dní."
2012
+
2013
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
2014
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
2015
+ msgid "Purge now!"
2016
+ msgstr "Pročistit nyní!"
2017
+
2018
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
2019
+ msgid "Delete User Agent Types"
2020
+ msgstr "Odstranit typy uživatelských agentů"
2021
+
2022
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
2023
+ msgid "Delete Agents"
2024
+ msgstr "Smazat Agenty"
2025
+
2026
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
2027
+ msgid "All visitor data will be lost for this agent type."
2028
+ msgstr "Všechna data návštěvníků budou ztraceny pro tento typ agenta."
2029
+
2030
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
2031
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
2032
+ msgid "Delete now!"
2033
+ msgstr "Smazat nyní!"
2034
+
2035
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
2036
+ msgid "Delete Platforms"
2037
+ msgstr "Vymazat platformy"
2038
+
2039
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
2040
+ msgid "All visitor data will be lost for this platform type."
2041
+ msgstr "Všechna data návštěvníků budou ztraceny pro tento typ platformy."
2042
+
2043
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
2044
+ msgid "Resources"
2045
+ msgstr "Zdroje"
2046
+
2047
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
2048
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
2049
+ msgid "Memory usage in PHP"
2050
+ msgstr "Využití paměti v PHP"
2051
+
2052
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
2053
+ msgid "Byte"
2054
+ msgstr "Bytů"
2055
+
2056
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
2057
+ msgid "PHP Memory Limit"
2058
+ msgstr "PHP Paměť Limit"
2059
+
2060
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
2061
+ msgid "The memory limit a script is allowed to consume, set in php.ini."
2062
+ msgstr "Limit paměti skriptu je dovoleno konzumovat, v php.ini."
2063
+
2064
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
2065
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
2066
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
2067
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
2068
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
2069
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
2070
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
2071
+ msgid "Number of rows in the %s table"
2072
+ msgstr "Počet řádků v tabulce %s"
2073
+
2074
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
2075
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
2076
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
2077
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
2078
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
2079
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
2080
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
2081
+ msgid "Row"
2082
+ msgstr "Řádek"
2083
+
2084
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
2085
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
2086
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
2087
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
2088
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
2089
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
2090
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
2091
+ msgid "Number of rows"
2092
+ msgstr "Počet řádků"
2093
+
2094
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
2095
+ msgid "Version Info"
2096
+ msgstr "Verze info"
2097
+
2098
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
2099
+ msgid "WP Statistics Version"
2100
+ msgstr "WP Statistics Verze"
2101
+
2102
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
2103
+ msgid "The WP Statistics version you are running."
2104
+ msgstr "Používáte verzi WP Statistics."
2105
+
2106
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
2107
+ msgid "PHP Version"
2108
+ msgstr "PHP Verze"
2109
+
2110
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
2111
+ msgid "The PHP version you are running."
2112
+ msgstr "PHP verze kterou používáte."
2113
+
2114
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
2115
+ msgid "PHP Safe Mode"
2116
+ msgstr "PHP Bezpečný mód"
2117
+
2118
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
2119
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2120
+ msgstr "Je PHP nouzovém režimu aktivní. GeoIP kód není podporován v nouzovém režimu."
2121
+
2122
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
2123
+ msgid "jQuery Version"
2124
+ msgstr "jQuery Verze"
2125
+
2126
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
2127
+ msgid "The jQuery version you are running."
2128
+ msgstr " Query verze kterou používáte."
2129
+
2130
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
2131
+ msgid "cURL Version"
2132
+ msgstr "cURL Verze"
2133
+
2134
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
2135
+ msgid "cURL not installed"
2136
+ msgstr "cURL není instalováno"
2137
+
2138
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
2139
+ msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2140
+ msgstr "PHP cURL Extension verze kterou používáte. cURL je požadováno pro GeoIP kód, jestliže neni instalování GeoIP bude vypnuté."
2141
+
2142
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2143
+ msgid "Installed"
2144
+ msgstr "Instalováno"
2145
+
2146
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2147
+ msgid "Not installed"
2148
+ msgstr "Neinstalováno"
2149
+
2150
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
2151
+ msgid "File Info"
2152
+ msgstr "Informace o souboru"
2153
+
2154
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
2155
+ msgid "GeoIP Database"
2156
+ msgstr "GeoIP databáze"
2157
+
2158
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
2159
+ msgid "Database file does not exist."
2160
+ msgstr "Databáze neexistuje"
2161
+
2162
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
2163
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
2164
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
2165
+ msgid ", created on "
2166
+ msgstr ", na "
2167
+
2168
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
2169
+ msgid "The file size and date of the GeoIP database."
2170
+ msgstr "Velikost souboru a datum GeoIP databáze."
2171
+
2172
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
2173
+ msgid "browscap.ini File"
2174
+ msgstr "Soubor Browscap.ini"
2175
+
2176
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
2177
+ msgid "browscap.ini file does not exist."
2178
+ msgstr "Soubor Browscap.ini neexistuje."
2179
+
2180
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
2181
+ msgid "The file size and date of the browscap.ini file."
2182
+ msgstr "Velikost souboru a datum souboru browscap.ini."
2183
+
2184
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
2185
+ msgid "browscap Cache File"
2186
+ msgstr "Browscap soubor mezipaměti"
2187
+
2188
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
2189
+ msgid "browscap cache file does not exist."
2190
+ msgstr "Browscap cache soubor neexistuje."
2191
+
2192
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
2193
+ msgid "The file size and date of the browscap cache file."
2194
+ msgstr "Velikost souboru a datum tohoto souboru browscap."
2195
+
2196
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
2197
+ msgid "Client Info"
2198
+ msgstr "Klient Info"
2199
+
2200
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
2201
+ msgid "Client IP"
2202
+ msgstr "Klient IP"
2203
+
2204
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
2205
+ msgid "The client IP address."
2206
+ msgstr "Klientovo IP adresa"
2207
+
2208
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
2209
+ msgid "User Agent"
2210
+ msgstr "Uživatelský agent"
2211
+
2212
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2213
+ msgid "The client user agent string."
2214
+ msgstr "Řetězec agenta uživatele klienta."
2215
+
2216
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2217
+ msgid "Browser"
2218
+ msgstr ""
2219
+
2220
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2221
+ msgid "The detected client browser."
2222
+ msgstr ""
2223
+
2224
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2225
+ msgid "The detected client browser version."
2226
+ msgstr ""
2227
+
2228
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2229
+ msgid "The detected client platform."
2230
+ msgstr ""
2231
+
2232
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2233
+ msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2234
+ msgstr "To nahradí všechny IP adresy v databázi hodnoty hash a nemůže být zpět, jste si jisti?"
2235
+
2236
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2237
+ msgid "GeoIP Options"
2238
+ msgstr "GeoIP Vlastnosti"
2239
+
2240
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2241
+ msgid "Updates any unknown location data in the database, this may take a while"
2242
+ msgstr "Aktualizuje všechny neznámé lokalizační údaje v databázi, to může chvíli trvat"
2243
+
2244
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2245
+ #: wp-statistics/includes/settings/tabs/wps-general.php:66
2246
+ msgid "IP Addresses"
2247
+ msgstr "Adresy IP"
2248
+
2249
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2250
+ #: wp-statistics/includes/settings/tabs/wps-general.php:71
2251
+ msgid "Hash IP Addresses"
2252
+ msgstr "Algoritmus hash IP adresy"
2253
+
2254
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2255
+ 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"
2256
+ msgstr "Nahradit hodnoty hash, adresy IP v databázi nebude možné obnovit adresy IP v budoucnu k vyplnění informací o umístění později a to může chvíli trvat"
2257
+
2258
+ #: wp-statistics/includes/optimization/wps-optimization.php:43
2259
+ msgid "IP Addresses replaced with hash values."
2260
+ msgstr "IP adresy nahrazeny hodnoty hash."
2261
+
2262
+ #: wp-statistics/includes/optimization/wps-optimization.php:51
2263
+ msgid "Install routine complete."
2264
+ msgstr "Instalujte kompletní rutina."
2265
+
2266
+ #: wp-statistics/includes/optimization/wps-optimization.php:234
2267
+ msgid "Resources/Information"
2268
+ msgstr "Zdroje/Informace"
2269
+
2270
+ #: wp-statistics/includes/optimization/wps-optimization.php:236
2271
+ msgid "Purging"
2272
+ msgstr "Pročištění"
2273
+
2274
+ #: wp-statistics/includes/optimization/wps-optimization.php:237
2275
+ msgid "Database"
2276
+ msgstr "Databáze"
2277
+
2278
+ #: wp-statistics/includes/optimization/wps-optimization.php:238
2279
+ msgid "Updates"
2280
+ msgstr "Aktualizace"
2281
+
2282
+ #: wp-statistics/includes/optimization/wps-optimization.php:239
2283
+ msgid "Historical"
2284
+ msgstr ""
2285
+
2286
+ #: wp-statistics/includes/settings/tabs/wps-about.php:8
2287
+ msgid "WP Statistics V%s"
2288
+ msgstr "WP Statistiky V%s"
2289
+
2290
+ #: wp-statistics/includes/settings/tabs/wps-about.php:28
2291
+ msgid "Visit Us Online"
2292
+ msgstr "Navštivte nás Online"
2293
+
2294
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2295
+ msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2296
+ msgstr "Přijďte navštívit naše skvělé nové %s a aktualizuje na nejnovější zprávy o WP Statistics."
2297
+
2298
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2299
+ msgid "website"
2300
+ msgstr "webové stránky"
2301
+
2302
+ #: wp-statistics/includes/settings/tabs/wps-about.php:36
2303
+ msgid "Rate and Review at WordPress.org"
2304
+ msgstr "Ohodnoť a prohlédni WordPress.org"
2305
+
2306
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2307
+ msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2308
+ msgstr "Děkujeme za instalaci WP Stastiky, doporučujeme ti zaslat"
2309
+
2310
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2311
+ msgid "rating and review"
2312
+ msgstr "Hodnocení a recenze"
2313
+
2314
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2315
+ msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2316
+ msgstr "více než na WordPress.org. Vaše zpětná vazba je velmi ceněn!"
2317
+
2318
+ #: wp-statistics/includes/settings/tabs/wps-about.php:44
2319
+ msgid "Translations"
2320
+ msgstr "Překlady"
2321
+
2322
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2323
+ msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2324
+ msgstr "WP Statistics podporuje internacionalizaci a doporučujeme našim uživatelům odeslat překlady, navštivte prosím naši %s Chcete-li zobrazit aktuální stav a %s, pokud byste chtěli pomoci."
2325
+
2326
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2327
+ msgid "translation collaboration site"
2328
+ msgstr "Web pro spolupráci Překlad"
2329
+
2330
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2331
+ msgid "drop us a line"
2332
+ msgstr "Podejte nám zprávu"
2333
+
2334
+ #: wp-statistics/includes/settings/tabs/wps-about.php:52
2335
+ msgid "Support"
2336
+ msgstr "Podpora"
2337
+
2338
+ #: wp-statistics/includes/settings/tabs/wps-about.php:57
2339
+ 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:"
2340
+ msgstr "Omlouváme se, máte problémy s WP Statistics a my jsme rádi pomohli. Zde je pár věci na práci než se obrátíte na nás:"
2341
+
2342
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2343
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2344
+ msgid "Have you read the %s?"
2345
+ msgstr "Četli jste %s?"
2346
+
2347
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2348
+ msgid "FAQs"
2349
+ msgstr "Nejčastější dotazy"
2350
+
2351
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2352
+ msgid "manual"
2353
+ msgstr "manuál"
2354
+
2355
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2356
+ msgid "Have you search the %s for a similar issue?"
2357
+ msgstr "Už jste Hledat %s pro podobný problém?"
2358
+
2359
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2360
+ msgid "support forum"
2361
+ msgstr "fórum podpory"
2362
+
2363
+ #: wp-statistics/includes/settings/tabs/wps-about.php:63
2364
+ msgid "Have you search the Internet for any error messages you are receiving?"
2365
+ msgstr "Už jste Hledat na internetu pro všechny chybové zprávy, které obdržíte?"
2366
+
2367
+ #: wp-statistics/includes/settings/tabs/wps-about.php:64
2368
+ msgid "Make sure you have access to your PHP error logs."
2369
+ msgstr ""
2370
+
2371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:67
2372
+ msgid "And a few things to double-check:"
2373
+ msgstr "A pár věcí na dvakrát:"
2374
+
2375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:70
2376
+ msgid "How's your memory_limit in php.ini?"
2377
+ msgstr "Jak máš nastaven memory_limit v php.ini?"
2378
+
2379
+ #: wp-statistics/includes/settings/tabs/wps-about.php:71
2380
+ msgid "Have you tried disabling any other plugins you may have installed?"
2381
+ msgstr "Už jste vyzkoušeli, zakázání jiné pluginy, které jste nainstalovali?"
2382
+
2383
+ #: wp-statistics/includes/settings/tabs/wps-about.php:72
2384
+ msgid "Have you tried using the default WordPress theme?"
2385
+ msgstr "Už jste vyzkoušeli pomocí výchozí WordPress téma?"
2386
+
2387
+ #: wp-statistics/includes/settings/tabs/wps-about.php:73
2388
+ msgid "Have you double checked the plugin settings?"
2389
+ msgstr "Zkontrolovali jste dvojí nastavení pluginu?"
2390
+
2391
+ #: wp-statistics/includes/settings/tabs/wps-about.php:74
2392
+ msgid "Do you have all the required PHP extensions installed?"
2393
+ msgstr "Máte instalované všechny vyžadované PHP rozšíření?"
2394
+
2395
+ #: wp-statistics/includes/settings/tabs/wps-about.php:75
2396
+ msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2397
+ msgstr "Dostáváš prázdné nebo neúplné stránky zobrazené v prohlížeči? Jste zobrazit zdroj jazyk pro stránku a zkontrolujte případné závažné chyby?"
2398
+
2399
+ #: wp-statistics/includes/settings/tabs/wps-about.php:76
2400
+ msgid "Have you checked your PHP and web server error logs?"
2401
+ msgstr "Zkontrolovali jste protokolů chyb serveru PHP a web?"
2402
+
2403
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2404
+ msgid "Still not having any luck?"
2405
+ msgstr "Ještě nemají žádné štěstí?"
2406
+
2407
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2408
+ msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2409
+ msgstr "Pak prosím otevřít nové vlákno na %s a odpovíme co nejdříve."
2410
+
2411
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2412
+ msgid "WordPress.org support forum"
2413
+ msgstr "Fórum podpory WordPress.org"
2414
+
2415
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2416
+ msgid "Alternatively %s support is available as well."
2417
+ msgstr "Další možností %s podpora je k dispozici také."
2418
+
2419
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2420
+ msgid "Farsi"
2421
+ msgstr "Farsi"
2422
+
2423
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
2424
+ msgid "WP Statistics Honey Pot Page"
2425
+ msgstr ""
2426
+
2427
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
2428
+ msgid "This is the honey pot for WP Statistics to use, do not delete."
2429
+ msgstr ""
2430
+
2431
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:23
2432
+ #: wp-statistics/includes/settings/wps-settings.php:103
2433
+ msgid "Access Levels"
2434
+ msgstr "Úrovně přístupů"
2435
+
2436
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:52
2437
+ msgid "Required user level to view WP Statistics"
2438
+ msgstr "Požadována uživatelská úrověn k prohlížení WP Statistik"
2439
+
2440
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:67
2441
+ msgid "Required user level to manage WP Statistics"
2442
+ msgstr "Uživatelská úroveň pro správu statistiky WP"
2443
+
2444
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2445
+ msgid "See the %s for details on capability levels."
2446
+ msgstr "Viz %s další informace o úrovních schopností."
2447
+
2448
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2449
+ msgid "WordPress Roles and Capabilities page"
2450
+ msgstr "Stránky WordPress rolí a funkcí"
2451
+
2452
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:76
2453
+ msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2454
+ msgstr "Tip: manage_network = Super Admin síť, manage_options = správce, edit_others_posts = Editor, publish_posts = autor, edit_posts = přispěvatel, číst = všichni."
2455
+
2456
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:77
2457
+ msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2458
+ msgstr "Každý z výše uvedených casscades práva směrem nahoru v WordPress výchozí konfiguraci. Tak například výběrem publish_posts uděluje právo autorů, redaktoři, administrátoři a Super Admins."
2459
+
2460
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:78
2461
+ msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2462
+ 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."
2463
+
2464
+ #: wp-statistics/includes/log/exclusions.php:197
2465
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
2466
+ #: wp-statistics/includes/settings/wps-settings.php:104
2467
+ #: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:513
2468
+ msgid "Exclusions"
2469
+ msgstr "Vyjímky"
2470
+
2471
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
2472
+ msgid "Record exclusions"
2473
+ msgstr "Vyloučení záznamů"
2474
+
2475
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
2476
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
2477
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
2478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
2479
+ msgid "Enable"
2480
+ msgstr "Zapnout"
2481
+
2482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
2483
+ 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."
2484
+ msgstr "To bude zaznamenávat všechny vyloučené hity v samostatné tabulce s důvody, proč byla vyloučena, ale žádné další informace. To bude generovat velké množství dat, ale je užitečné, pokud chcete zobrazit celkový počet přístupů vašich stránek dostane, ne jen skutečné uživatele návštěvy."
2485
+
2486
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
2487
+ msgid "Exclude User Roles"
2488
+ msgstr "Vyloučení rolí uživatelů"
2489
+
2490
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
2491
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
2492
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
2493
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
2494
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
2495
+ msgid "Exclude"
2496
+ msgstr "Vyjímka"
2497
+
2498
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
2499
+ msgid "Exclude %s role from data collection."
2500
+ msgstr "Vylučte úlohu %s ze sběru údajů."
2501
+
2502
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
2503
+ msgid "IP/Robot Exclusions"
2504
+ msgstr "IP/Robot vyjímky"
2505
+
2506
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
2507
+ msgid "Robot list"
2508
+ msgstr "Seznam robotů"
2509
+
2510
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
2511
+ 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."
2512
+ msgstr "Seznam slov, (jeden na řádek) porovnávat odhalit roboty. Položky musí být dlouhé nejméně 4 znaky, nebo budou ignorovány."
2513
+
2514
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
2515
+ msgid "Reset to Default"
2516
+ msgstr "Reset do Defaultního nastavení"
2517
+
2518
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
2519
+ msgid "Force robot list update after upgrades"
2520
+ msgstr "Vynutit robota seznamu aktualizaci po inovaci"
2521
+
2522
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
2523
+ 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."
2524
+ msgstr "Platnost seznamu robota tak, aby obnovit na výchozí po aktualizaci statistiky WP se koná. Poznámka: je-li tato možnost povolena, žádné vlastní roboty, které jste přidali do seznamu budou ztraceny."
2525
+
2526
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
2527
+ msgid "Robot visit threshold"
2528
+ msgstr ""
2529
+
2530
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
2531
+ msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2532
+ msgstr ""
2533
+
2534
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
2535
+ msgid "Excluded IP address list"
2536
+ msgstr "Vyloučené seznam adres IP"
2537
+
2538
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
2539
+ msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2540
+ msgstr "Seznam adres IP a podsítě masky (jeden na řádek) vyloučit ze sběru statistických údajů (192.168.0.0/24 a 192.168.0.0/255.255.255.0 formáty jsou přijímány). Chcete-li určit adresu IP, použijte podsítě hodnotu 32 nebo 255.255.255.255."
2541
+
2542
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
2543
+ msgid "Add 10.0.0.0"
2544
+ msgstr "Přidat 10.0.0.0"
2545
+
2546
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
2547
+ msgid "Add 172.16.0.0"
2548
+ msgstr "Přidat 172.16.0.0"
2549
+
2550
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
2551
+ msgid "Add 192.168.0.0"
2552
+ msgstr "Přidat 192.168.0.0"
2553
+
2554
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
2555
+ msgid "Use honey pot"
2556
+ msgstr ""
2557
+
2558
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
2559
+ msgid "Use a honey pot page to identify robots."
2560
+ msgstr ""
2561
+
2562
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
2563
+ msgid "Honey pot post id"
2564
+ msgstr ""
2565
+
2566
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
2567
+ msgid "The post id to use for the honeypot page."
2568
+ msgstr ""
2569
+
2570
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
2571
+ msgid "Create a new honey pot page"
2572
+ msgstr ""
2573
+
2574
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
2575
+ msgid "GeoIP Exclusions"
2576
+ msgstr ""
2577
+
2578
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
2579
+ msgid "Excluded countries list"
2580
+ msgstr ""
2581
+
2582
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
2583
+ 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."
2584
+ msgstr ""
2585
+
2586
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
2587
+ msgid "Included countries list"
2588
+ msgstr ""
2589
+
2590
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
2591
+ 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."
2592
+ msgstr ""
2593
+
2594
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
2595
+ msgid "Host Exclusions"
2596
+ msgstr ""
2597
+
2598
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
2599
+ msgid "Excluded hosts list"
2600
+ msgstr ""
2601
+
2602
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
2603
+ msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2604
+ msgstr ""
2605
+
2606
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
2607
+ 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."
2608
+ msgstr ""
2609
+
2610
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
2611
+ msgid "Site URL Exclusions"
2612
+ msgstr "URL vyjímky"
2613
+
2614
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
2615
+ msgid "Excluded login page"
2616
+ msgstr "Vyloučené přihlašovací stránka"
2617
+
2618
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
2619
+ msgid "Exclude the login page for registering as a hit."
2620
+ msgstr "Vylučte přihlašovací stránku pro registraci jako hit."
2621
+
2622
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
2623
+ msgid "Excluded admin pages"
2624
+ msgstr "Vyloučené admin stránky"
2625
+
2626
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
2627
+ msgid "Exclude the admin pages for registering as a hit."
2628
+ msgstr "Vylučte admin stránky pro registraci jako hit."
2629
+
2630
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
2631
+ msgid "Excluded RSS feeds"
2632
+ msgstr ""
2633
+
2634
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
2635
+ msgid "Exclude the RSS feeds for registering as a hit."
2636
+ msgstr ""
2637
+
2638
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:162
2639
+ msgid "browscap settings"
2640
+ msgstr "Browscap nastavení"
2641
+
2642
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:167
2643
+ msgid "browscap usage"
2644
+ msgstr "Browscap využití"
2645
+
2646
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:52
2647
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:76
2648
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:109
2649
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:172
2650
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:196
2651
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:236
2652
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:260
2653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:76
2654
+ #: wp-statistics/includes/settings/tabs/wps-general.php:92
2655
+ #: wp-statistics/includes/settings/tabs/wps-general.php:116
2656
+ #: wp-statistics/includes/settings/tabs/wps-general.php:132
2657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:148
2658
+ #: wp-statistics/includes/settings/tabs/wps-general.php:160
2659
+ #: wp-statistics/includes/settings/tabs/wps-general.php:187
2660
+ #: wp-statistics/includes/settings/tabs/wps-general.php:199
2661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:214
2662
+ #: wp-statistics/includes/settings/tabs/wps-general.php:228
2663
+ #: wp-statistics/includes/settings/tabs/wps-general.php:258
2664
+ #: wp-statistics/includes/settings/tabs/wps-general.php:270
2665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:286
2666
+ #: wp-statistics/includes/settings/tabs/wps-general.php:325
2667
+ #: wp-statistics/includes/settings/tabs/wps-general.php:341
2668
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
2669
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
2670
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:69
2671
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:81
2672
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:93
2673
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:105
2674
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:121
2675
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
2676
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
2677
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:94
2678
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:106
2679
+ msgid "Active"
2680
+ msgstr "Aktivní"
2681
+
2682
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:173
2683
+ msgid "The browscap database will be downloaded and used to detect robots."
2684
+ msgstr "Browscap databáze bude stáhnout a slouží k detekci roboty."
2685
+
2686
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:179
2687
+ msgid "Update browscap Info"
2688
+ msgstr "Aktualizovat browscap Info"
2689
+
2690
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:184
2691
+ msgid "Download browscap Database"
2692
+ msgstr "Stáhnout browscap databáze"
2693
+
2694
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:65
2695
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:185
2696
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:249
2697
+ msgid "Save changes on this page to download the update."
2698
+ msgstr "Uložte změny na této stránce můžete stáhnout aktualizaci."
2699
+
2700
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:191
2701
+ msgid "Schedule weekly update of browscap DB"
2702
+ msgstr "Rozvrh týdenní aktualizace browscap DB"
2703
+
2704
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:79
2705
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:199
2706
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:263
2707
+ msgid "Next update will be"
2708
+ msgstr "Další update bude"
2709
+
2710
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:215
2711
+ msgid "Download of the browscap database will be scheduled for once a week."
2712
+ msgstr "Ke stažení browscap databáze bude naplánován pro jednou za týden."
2713
+
2714
+ #: wp-statistics/includes/settings/tabs/wps-general.php:50
2715
+ msgid "This will delete the manual when you save the settings, are you sure?"
2716
+ msgstr "To odstraní ruční, když uložíte nastavení, jste si jisti?"
2717
+
2718
+ #: wp-statistics/includes/settings/tabs/wps-general.php:77
2719
+ 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."
2720
+ 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."
2721
+
2722
+ #: wp-statistics/includes/settings/tabs/wps-general.php:82
2723
+ #: wp-statistics/shortcode.php:138
2724
+ msgid "Users Online"
2725
+ msgstr "Uživatelé online"
2726
+
2727
+ #: wp-statistics/includes/settings/tabs/wps-general.php:87
2728
+ msgid "User online"
2729
+ msgstr "Uživatel online"
languages/{wp-statistics-da.mo → wp_statistics-da_DK.mo} RENAMED
Binary file
languages/wp_statistics-da_DK.po ADDED
@@ -0,0 +1,2729 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of WP Statistics in Danish
2
+ # This file is distributed under the same license as the WP Statistics package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: +0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0.2\n"
11
+ "Project-Id-Version: WP Statistics\n"
12
+
13
+ #: wp-statistics/ajax.php:220
14
+ msgid "No matching widget found!"
15
+ msgstr ""
16
+
17
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
18
+ msgid "Zlib gzopen()"
19
+ msgstr ""
20
+
21
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
22
+ msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
23
+ msgstr ""
24
+
25
+ #: wp-statistics/wps-updates.php:16
26
+ msgid "Error the download_url() or gzopen() functions do not exist!"
27
+ msgstr ""
28
+
29
+ #: wp-statistics/wps-updates.php:45
30
+ msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
31
+ msgstr ""
32
+
33
+ #: wp-statistics/wp-statistics.php:95
34
+ msgid "&#151; You are running an unsupported version of PHP."
35
+ msgstr ""
36
+
37
+ #: wp-statistics/wp-statistics.php:95
38
+ msgid "WP Statistics Disabled"
39
+ msgstr ""
40
+
41
+ #: wp-statistics/wp-statistics.php:99
42
+ msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
43
+ msgstr ""
44
+
45
+ #: wp-statistics/wp-statistics.php:101
46
+ msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
47
+ msgstr ""
48
+
49
+ #: wp-statistics/ajax.php:299
50
+ msgid "ERROR: Widget not found!"
51
+ msgstr ""
52
+
53
+ #: wp-statistics/dashboard.php:111 wp-statistics/editor.php:66
54
+ #: wp-statistics/includes/log/log.php:20
55
+ msgid "Loading..."
56
+ msgstr ""
57
+
58
+ #: wp-statistics/dashboard.php:129 wp-statistics/editor.php:84
59
+ #: wp-statistics/includes/log/log.php:2
60
+ msgid "Reloading..."
61
+ msgstr ""
62
+
63
+ #: wp-statistics/includes/log/top-visitors.php:41
64
+ #: wp-statistics/wp-statistics.php:447
65
+ msgid "Top Visitors"
66
+ msgstr ""
67
+
68
+ #: wp-statistics/wp-statistics.php:206
69
+ msgid "optimization page"
70
+ msgstr ""
71
+
72
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
73
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
74
+ msgid "Enabled"
75
+ msgstr ""
76
+
77
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
78
+ msgid "Purge Old Data Daily"
79
+ msgstr ""
80
+
81
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
82
+ msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
83
+ msgstr ""
84
+
85
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
86
+ msgid "Purge data older than"
87
+ msgstr ""
88
+
89
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
90
+ msgid "Purge High Hit Count Visitors Daily"
91
+ msgstr ""
92
+
93
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
94
+ msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
95
+ msgstr ""
96
+
97
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
98
+ msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
99
+ msgstr ""
100
+
101
+ #: wp-statistics/shortcode.php:184
102
+ msgid "The post/page id to get page statistics on."
103
+ msgstr ""
104
+
105
+ #: wp-statistics/shortcode.php:181
106
+ msgid "Post/Page ID"
107
+ msgstr ""
108
+
109
+ #: wp-statistics/includes/functions/functions.php:435
110
+ msgid "Ask.com"
111
+ msgstr ""
112
+
113
+ #: wp-statistics/shortcode.php:158
114
+ 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."
115
+ msgstr ""
116
+
117
+ #: wp-statistics/wp-statistics.php:180
118
+ msgid "visitor tracking"
119
+ msgstr ""
120
+
121
+ #: wp-statistics/wp-statistics.php:181
122
+ msgid "geoip collection"
123
+ msgstr ""
124
+
125
+ #: wp-statistics/wp-statistics.php:197
126
+ msgid "visit database index"
127
+ msgstr ""
128
+
129
+ #: wp-statistics/wp-statistics.php:206
130
+ msgid "Database updates are required, please go to %s and update the following: %s"
131
+ msgstr ""
132
+
133
+ #: wp-statistics/wp-statistics.php:197
134
+ msgid "countries database index"
135
+ msgstr ""
136
+
137
+ #: wp-statistics/wp-statistics.php:190
138
+ msgid "search table"
139
+ msgstr ""
140
+
141
+ #: wp-statistics/wp-statistics.php:184
142
+ msgid "settings page"
143
+ msgstr ""
144
+
145
+ #: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
146
+ msgid ","
147
+ msgstr ""
148
+
149
+ #: wp-statistics/wp-statistics.php:184
150
+ msgid "The following features are disabled, please go to %s and enable them: %s"
151
+ msgstr ""
152
+
153
+ #: wp-statistics/wp-statistics.php:179
154
+ msgid "hit tracking"
155
+ msgstr ""
156
+
157
+ #: wp-statistics/wp-statistics.php:178
158
+ msgid "online user tracking"
159
+ msgstr ""
160
+
161
+ #: wp-statistics/wp-statistics.php:775
162
+ msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
163
+ msgstr ""
164
+
165
+ #: wp-statistics/includes/optimization/wps-optimization.php:196
166
+ msgid "Search table conversion complete, %d rows added."
167
+ msgstr ""
168
+
169
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
170
+ 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."
171
+ msgstr ""
172
+
173
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
174
+ msgid "Search Table"
175
+ msgstr ""
176
+
177
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
178
+ msgid "Convert"
179
+ msgstr ""
180
+
181
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
182
+ msgid "Convert Now!"
183
+ msgstr ""
184
+
185
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
186
+ 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."
187
+ msgstr ""
188
+
189
+ #: wp-statistics/includes/log/exclusions.php:24
190
+ msgid "Referrer Spam"
191
+ msgstr ""
192
+
193
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:279
194
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
195
+ msgstr ""
196
+
197
+ #: wp-statistics/includes/settings/wps-settings.php:105
198
+ msgid "Externals"
199
+ msgstr ""
200
+
201
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:220
202
+ msgid "Piwik Referrer Spam Blacklist settings"
203
+ msgstr ""
204
+
205
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:255
206
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
207
+ msgstr ""
208
+
209
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:248
210
+ msgid "Download Piwik Referrer Spam Blacklist Database"
211
+ msgstr ""
212
+
213
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:243
214
+ msgid "Update Piwik Referrer Spam Blacklist Info"
215
+ msgstr ""
216
+
217
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:237
218
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
219
+ msgstr ""
220
+
221
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:225
222
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
223
+ msgstr ""
224
+
225
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:231
226
+ msgid "Piwik Referrer Spam Blacklist usage"
227
+ msgstr ""
228
+
229
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
230
+ msgid "Treat corrupt browser info as a bot"
231
+ msgstr ""
232
+
233
+ #: wp-statistics/includes/log/exclusions.php:24
234
+ msgid "404 Pages"
235
+ msgstr ""
236
+
237
+ #: wp-statistics/includes/log/top-visitors.php:26
238
+ msgid "Date"
239
+ msgstr ""
240
+
241
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
242
+ msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
243
+ msgstr ""
244
+
245
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
246
+ msgid "Excluded 404 pages"
247
+ msgstr ""
248
+
249
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
250
+ msgid "Exclude any URL that returns a \"404 - Not Found\" message."
251
+ msgstr ""
252
+
253
+ #: wp-statistics/wps-updates.php:37
254
+ msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
255
+ msgstr ""
256
+
257
+ #: wp-statistics/includes/settings/tabs/wps-general.php:281
258
+ msgid "Add page title to empty search words"
259
+ msgstr ""
260
+
261
+ #: wp-statistics/includes/settings/tabs/wps-general.php:287
262
+ 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."
263
+ msgstr ""
264
+
265
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
266
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
267
+ msgid "Purge visitors with more than"
268
+ msgstr ""
269
+
270
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
271
+ msgid "hits"
272
+ msgstr ""
273
+
274
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
275
+ 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."
276
+ msgstr ""
277
+
278
+ #: wp-statistics/includes/functions/purge-hits.php:28
279
+ msgid "No visitors found to purge."
280
+ msgstr ""
281
+
282
+ #: wp-statistics/includes/functions/purge-hits.php:25
283
+ msgid "%s records purged successfully."
284
+ msgstr ""
285
+
286
+ #: wp-statistics/ajax.php:178
287
+ #: wp-statistics/includes/functions/purge-hits.php:32
288
+ msgid "Number of hits must be greater than or equal to 10!"
289
+ msgstr ""
290
+
291
+ #: wp-statistics/shortcode.php:141
292
+ msgid "Page Visits"
293
+ msgstr ""
294
+
295
+ #: wp-statistics/shortcode.php:144
296
+ msgid "Page Count"
297
+ msgstr ""
298
+
299
+ #: wp-statistics/shortcode.php:145
300
+ msgid "Comment Count"
301
+ msgstr ""
302
+
303
+ #: wp-statistics/shortcode.php:146
304
+ msgid "Spam Count"
305
+ msgstr ""
306
+
307
+ #: wp-statistics/shortcode.php:147
308
+ msgid "User Count"
309
+ msgstr ""
310
+
311
+ #: wp-statistics/shortcode.php:148
312
+ msgid "Post Average"
313
+ msgstr ""
314
+
315
+ #: wp-statistics/shortcode.php:149
316
+ msgid "Comment Average"
317
+ msgstr ""
318
+
319
+ #: wp-statistics/shortcode.php:150
320
+ msgid "User Average"
321
+ msgstr ""
322
+
323
+ #: wp-statistics/shortcode.php:162
324
+ msgid "Search Provider"
325
+ msgstr ""
326
+
327
+ #: wp-statistics/shortcode.php:165
328
+ msgid "The search provider to get statistics on."
329
+ msgstr ""
330
+
331
+ #: wp-statistics/shortcode.php:169
332
+ msgid "Number Format"
333
+ msgstr ""
334
+
335
+ #: wp-statistics/shortcode.php:172
336
+ msgid "The format to display numbers in: i18n, english, none."
337
+ msgstr ""
338
+
339
+ #: wp-statistics/shortcode.php:176
340
+ msgid "English"
341
+ msgstr ""
342
+
343
+ #: wp-statistics/shortcode.php:177
344
+ msgid "International"
345
+ msgstr ""
346
+
347
+ #: wp-statistics/includes/log/exclusions.php:191
348
+ #: wp-statistics/includes/log/hit-statistics.php:164
349
+ msgid "Hits Statistics Summary"
350
+ msgstr ""
351
+
352
+ #: wp-statistics/includes/log/exclusions.php:201
353
+ #: wp-statistics/includes/log/hit-statistics.php:175
354
+ msgid "Chart Total"
355
+ msgstr ""
356
+
357
+ #: wp-statistics/includes/log/exclusions.php:206
358
+ #: wp-statistics/includes/log/hit-statistics.php:181
359
+ msgid "All Time Total"
360
+ msgstr ""
361
+
362
+ #: wp-statistics/includes/log/log.php:6
363
+ msgid "Have you thought about donating to WP Statistics?"
364
+ msgstr ""
365
+
366
+ #: wp-statistics/includes/settings/tabs/wps-about.php:20
367
+ #: wp-statistics/wp-statistics.php:429
368
+ msgid "Donate"
369
+ msgstr ""
370
+
371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
372
+ msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
373
+ msgstr ""
374
+
375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
376
+ msgid "donation"
377
+ msgstr ""
378
+
379
+ #: wp-statistics/includes/log/log.php:6
380
+ msgid "Donate Now!"
381
+ msgstr ""
382
+
383
+ #: wp-statistics/includes/log/log.php:6
384
+ msgid "Close"
385
+ msgstr ""
386
+
387
+ #: wp-statistics/shortcode.php:135
388
+ msgid "Select the statistic you wish to display."
389
+ msgstr ""
390
+
391
+ #: wp-statistics/shortcode.php:132
392
+ msgid "Statistic"
393
+ msgstr ""
394
+
395
+ #: wp-statistics/shortcode.php:143
396
+ msgid "Post Count"
397
+ msgstr ""
398
+
399
+ #: wp-statistics/shortcode.php:155
400
+ msgid "Time Frame"
401
+ msgstr ""
402
+
403
+ #: wp-statistics/includes/functions/functions.php:1032
404
+ msgid "to"
405
+ msgstr ""
406
+
407
+ #: wp-statistics/includes/functions/functions.php:1032
408
+ #: wp-statistics/includes/log/top-visitors.php:29
409
+ msgid "Go"
410
+ msgstr ""
411
+
412
+ #: wp-statistics/includes/log/top-pages.php:102
413
+ msgid "Rank #5"
414
+ msgstr ""
415
+
416
+ #: wp-statistics/includes/log/top-pages.php:102
417
+ msgid "Rank #4"
418
+ msgstr ""
419
+
420
+ #: wp-statistics/includes/log/top-pages.php:102
421
+ msgid "Rank #3"
422
+ msgstr ""
423
+
424
+ #: wp-statistics/includes/log/top-pages.php:102
425
+ msgid "Rank #1"
426
+ msgstr ""
427
+
428
+ #: wp-statistics/includes/log/top-pages.php:102
429
+ msgid "Rank #2"
430
+ msgstr ""
431
+
432
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
433
+ msgid "Visits Table"
434
+ msgstr ""
435
+
436
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
437
+ 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."
438
+ msgstr ""
439
+
440
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
441
+ msgid "This operation could take a long time on installs with many rows in the visits table."
442
+ msgstr ""
443
+
444
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
445
+ 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."
446
+ msgstr ""
447
+
448
+ #: wp-statistics/includes/log/last-visitor.php:68
449
+ msgid "Filtered by"
450
+ msgstr ""
451
+
452
+ #: wp-statistics/includes/functions/functions.php:1026
453
+ #: wp-statistics/includes/functions/functions.php:1029
454
+ msgid "Range"
455
+ msgstr ""
456
+
457
+ #: wp-statistics/includes/functions/functions.php:1032
458
+ #: wp-statistics/includes/log/top-visitors.php:29
459
+ msgid "MM/DD/YYYY"
460
+ msgstr ""
461
+
462
+ #: wp-statistics/includes/settings/tabs/wps-general.php:342
463
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
464
+ msgstr ""
465
+
466
+ #: wp-statistics/includes/settings/tabs/wps-general.php:336
467
+ msgid "Force English"
468
+ msgstr ""
469
+
470
+ #: wp-statistics/includes/settings/tabs/wps-general.php:331
471
+ msgid "Languages"
472
+ msgstr ""
473
+
474
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
475
+ 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."
476
+ msgstr ""
477
+
478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
479
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
480
+ msgstr ""
481
+
482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
483
+ msgid "Excluded URLs list"
484
+ msgstr ""
485
+
486
+ #: wp-statistics/includes/log/exclusions.php:24
487
+ msgid "Excluded URL"
488
+ msgstr ""
489
+
490
+ #: wp-statistics/includes/log/widgets/quickstats.php:52
491
+ #: wp-statistics/includes/log/widgets/summary.php:52
492
+ msgid "Last 365 Days (Year)"
493
+ msgstr ""
494
+
495
+ #: wp-statistics/includes/log/widgets/quickstats.php:46
496
+ #: wp-statistics/includes/log/widgets/summary.php:46
497
+ msgid "Last 30 Days (Month)"
498
+ msgstr ""
499
+
500
+ #: wp-statistics/includes/log/widgets/quickstats.php:40
501
+ #: wp-statistics/includes/log/widgets/summary.php:40
502
+ msgid "Last 7 Days (Week)"
503
+ msgstr ""
504
+
505
+ #: wp-statistics/includes/functions/functions.php:441
506
+ msgid "Yahoo!"
507
+ msgstr ""
508
+
509
+ #: wp-statistics/includes/functions/functions.php:442
510
+ msgid "Yandex"
511
+ msgstr ""
512
+
513
+ #: wp-statistics/includes/functions/functions.php:438
514
+ msgid "clearch.org"
515
+ msgstr ""
516
+
517
+ #: wp-statistics/includes/functions/functions.php:439
518
+ msgid "DuckDuckGo"
519
+ msgstr ""
520
+
521
+ #: wp-statistics/includes/functions/functions.php:437
522
+ msgid "Bing"
523
+ msgstr ""
524
+
525
+ #: wp-statistics/includes/functions/functions.php:436
526
+ msgid "Baidu"
527
+ msgstr ""
528
+
529
+ #: wp-statistics/includes/log/exclusions.php:24
530
+ msgid "Feeds"
531
+ msgstr ""
532
+
533
+ #: wp-statistics/includes/log/exclusions.php:24
534
+ msgid "User Role"
535
+ msgstr ""
536
+
537
+ #: wp-statistics/includes/log/exclusions.php:24
538
+ msgid "Login Page"
539
+ msgstr ""
540
+
541
+ #: wp-statistics/includes/log/exclusions.php:24
542
+ msgid "Admin Page"
543
+ msgstr ""
544
+
545
+ #: wp-statistics/includes/log/exclusions.php:24
546
+ msgid "Self Referral"
547
+ msgstr ""
548
+
549
+ #: wp-statistics/includes/log/exclusions.php:24
550
+ msgid "IP Match"
551
+ msgstr ""
552
+
553
+ #: wp-statistics/includes/log/exclusions.php:24
554
+ msgid "Robot"
555
+ msgstr ""
556
+
557
+ #: wp-statistics/includes/log/online.php:100
558
+ msgid "Currently there are no users online in the site."
559
+ msgstr ""
560
+
561
+ #: wp-statistics/includes/log/exclusions.php:24
562
+ msgid "Robot Threshold"
563
+ msgstr ""
564
+
565
+ #: wp-statistics/includes/log/exclusions.php:24
566
+ msgid "Honey Pot"
567
+ msgstr ""
568
+
569
+ #: wp-statistics/includes/log/widgets/page.php:8
570
+ msgid "Page Trending Stats"
571
+ msgstr ""
572
+
573
+ #: wp-statistics/includes/log/exclusions.php:24
574
+ msgid "Hostname"
575
+ msgstr ""
576
+
577
+ #: wp-statistics/includes/settings/tabs/wps-general.php:93
578
+ #: wp-statistics/includes/settings/tabs/wps-general.php:133
579
+ #: wp-statistics/includes/settings/tabs/wps-general.php:149
580
+ #: wp-statistics/includes/settings/tabs/wps-general.php:188
581
+ #: wp-statistics/includes/settings/tabs/wps-general.php:200
582
+ #: wp-statistics/includes/settings/tabs/wps-general.php:229
583
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:122
584
+ msgid "Enable or disable this feature"
585
+ msgstr ""
586
+
587
+ #: wp-statistics/includes/settings/tabs/wps-general.php:99
588
+ msgid "Check for online users every"
589
+ msgstr ""
590
+
591
+ #: wp-statistics/includes/settings/tabs/wps-general.php:104
592
+ msgid "Second"
593
+ msgstr ""
594
+
595
+ #: wp-statistics/includes/settings/tabs/wps-general.php:105
596
+ msgid "Time for the check accurate online user in the site. Now: %s Second"
597
+ msgstr ""
598
+
599
+ #: wp-statistics/includes/settings/tabs/wps-general.php:111
600
+ msgid "Record all user"
601
+ msgstr ""
602
+
603
+ #: wp-statistics/includes/settings/tabs/wps-general.php:117
604
+ msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
605
+ msgstr ""
606
+
607
+ #: wp-statistics/includes/settings/tabs/wps-general.php:155
608
+ msgid "Store entire user agent string"
609
+ msgstr ""
610
+
611
+ #: wp-statistics/includes/settings/tabs/wps-general.php:161
612
+ msgid "Only enabled for debugging"
613
+ msgstr ""
614
+
615
+ #: wp-statistics/includes/settings/tabs/wps-general.php:167
616
+ msgid "Coefficient per visitor"
617
+ msgstr ""
618
+
619
+ #: wp-statistics/includes/settings/tabs/wps-general.php:172
620
+ msgid "For each visit to account for several hits. Currently %s."
621
+ msgstr ""
622
+
623
+ #: wp-statistics/includes/settings/tabs/wps-general.php:177
624
+ #: wp-statistics/includes/settings/tabs/wps-general.php:182
625
+ #: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:516
626
+ msgid "Pages"
627
+ msgstr ""
628
+
629
+ #: wp-statistics/includes/settings/tabs/wps-general.php:194
630
+ msgid "Track all pages"
631
+ msgstr ""
632
+
633
+ #: wp-statistics/includes/settings/tabs/wps-general.php:209
634
+ msgid "Strip parameters from URI"
635
+ msgstr ""
636
+
637
+ #: wp-statistics/includes/settings/tabs/wps-general.php:215
638
+ msgid "This will remove anything after the ? in a URL."
639
+ msgstr ""
640
+
641
+ #: wp-statistics/includes/settings/tabs/wps-general.php:223
642
+ msgid "Disable hits column in post/pages list"
643
+ msgstr ""
644
+
645
+ #: wp-statistics/includes/settings/tabs/wps-general.php:234
646
+ msgid "Miscellaneous"
647
+ msgstr ""
648
+
649
+ #: wp-statistics/includes/settings/tabs/wps-general.php:239
650
+ msgid "Show stats in menu bar"
651
+ msgstr ""
652
+
653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:244
654
+ msgid "No"
655
+ msgstr ""
656
+
657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:245
658
+ msgid "Yes"
659
+ msgstr ""
660
+
661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:247
662
+ msgid "Show stats in admin menu bar"
663
+ msgstr ""
664
+
665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:253
666
+ msgid "Hide admin notices about non active features"
667
+ msgstr ""
668
+
669
+ #: wp-statistics/includes/settings/tabs/wps-general.php:259
670
+ msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
671
+ msgstr ""
672
+
673
+ #: wp-statistics/includes/settings/tabs/wps-general.php:265
674
+ msgid "Delete the manual"
675
+ msgstr ""
676
+
677
+ #: wp-statistics/includes/settings/tabs/wps-general.php:271
678
+ 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."
679
+ msgstr ""
680
+
681
+ #: wp-statistics/includes/settings/tabs/wps-general.php:276
682
+ msgid "Search Engines"
683
+ msgstr ""
684
+
685
+ #: wp-statistics/includes/settings/tabs/wps-general.php:293
686
+ msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
687
+ msgstr ""
688
+
689
+ #: wp-statistics/includes/settings/tabs/wps-general.php:308
690
+ msgid "disable"
691
+ msgstr ""
692
+
693
+ #: wp-statistics/includes/settings/tabs/wps-general.php:309
694
+ msgid "Disable %s from data collection and reporting."
695
+ msgstr ""
696
+
697
+ #: wp-statistics/includes/settings/tabs/wps-general.php:315
698
+ msgid "Charts"
699
+ msgstr ""
700
+
701
+ #: wp-statistics/includes/settings/tabs/wps-general.php:320
702
+ msgid "Include totals"
703
+ msgstr ""
704
+
705
+ #: wp-statistics/includes/settings/tabs/wps-general.php:326
706
+ msgid "Add a total line to charts with multiple values, like the search engine referrals"
707
+ msgstr ""
708
+
709
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:32
710
+ msgid "GeoIP settings"
711
+ msgstr ""
712
+
713
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:37
714
+ msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
715
+ msgstr ""
716
+
717
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:47
718
+ msgid "GeoIP collection"
719
+ msgstr ""
720
+
721
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:53
722
+ msgid "For get more information and location (country) from visitor, enable this feature."
723
+ msgstr ""
724
+
725
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:59
726
+ msgid "Update GeoIP Info"
727
+ msgstr ""
728
+
729
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:64
730
+ msgid "Download GeoIP Database"
731
+ msgstr ""
732
+
733
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:71
734
+ msgid "Schedule monthly update of GeoIP DB"
735
+ msgstr ""
736
+
737
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:97
738
+ msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
739
+ msgstr ""
740
+
741
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:98
742
+ msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
743
+ msgstr ""
744
+
745
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:104
746
+ msgid "Populate missing GeoIP after update of GeoIP DB"
747
+ msgstr ""
748
+
749
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:110
750
+ msgid "Update any missing GeoIP data after downloading a new database."
751
+ msgstr ""
752
+
753
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:116
754
+ msgid "Country code for private IP addresses"
755
+ msgstr ""
756
+
757
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:121
758
+ msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
759
+ msgstr ""
760
+
761
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:132
762
+ msgid "GeoIP collection is disabled due to the following reasons:"
763
+ msgstr ""
764
+
765
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:135
766
+ msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
767
+ msgstr ""
768
+
769
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:140
770
+ msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
771
+ msgstr ""
772
+
773
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:146
774
+ msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
775
+ msgstr ""
776
+
777
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:152
778
+ msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
779
+ msgstr ""
780
+
781
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
782
+ msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
783
+ msgstr ""
784
+
785
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
786
+ msgid "Days"
787
+ msgstr ""
788
+
789
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
790
+ msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
791
+ msgstr ""
792
+
793
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:44
794
+ msgid "Common Report Options"
795
+ msgstr ""
796
+
797
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:49
798
+ msgid "E-mail addresses"
799
+ msgstr ""
800
+
801
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:54
802
+ msgid "A comma separated list of e-mail addresses to send reports to."
803
+ msgstr ""
804
+
805
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:59
806
+ msgid "Update Reports"
807
+ msgstr ""
808
+
809
+ #: wp-statistics/includes/log/exclusions.php:24
810
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:64
811
+ msgid "Browscap"
812
+ msgstr ""
813
+
814
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:70
815
+ msgid "Send a report whenever the browscap.ini is updated."
816
+ msgstr ""
817
+
818
+ #: wp-statistics/includes/log/exclusions.php:24
819
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:76
820
+ msgid "GeoIP"
821
+ msgstr ""
822
+
823
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:82
824
+ msgid "Send a report whenever the GeoIP database is updated."
825
+ msgstr ""
826
+
827
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:88
828
+ msgid "Pruning"
829
+ msgstr ""
830
+
831
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:94
832
+ msgid "Send a report whenever the pruning of database is run."
833
+ msgstr ""
834
+
835
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:100
836
+ msgid "Upgrade"
837
+ msgstr ""
838
+
839
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:106
840
+ msgid "Send a report whenever the plugin is upgraded."
841
+ msgstr ""
842
+
843
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:111
844
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:116
845
+ #: wp-statistics/schedule.php:221
846
+ msgid "Statistical reporting"
847
+ msgstr ""
848
+
849
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:129
850
+ msgid "Schedule"
851
+ msgstr ""
852
+
853
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:153
854
+ msgid "Select how often to receive statistical report."
855
+ msgstr ""
856
+
857
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:159
858
+ msgid "Send reports via"
859
+ msgstr ""
860
+
861
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:165
862
+ msgid "Email"
863
+ msgstr ""
864
+
865
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:167
866
+ msgid "SMS"
867
+ msgstr ""
868
+
869
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:170
870
+ msgid "Select delivery method for statistical report."
871
+ msgstr ""
872
+
873
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
874
+ msgid "Note: To send SMS text messages please install the %s plugin."
875
+ msgstr ""
876
+
877
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
878
+ msgid "WordPress SMS"
879
+ msgstr ""
880
+
881
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:180
882
+ msgid "Report body"
883
+ msgstr ""
884
+
885
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:185
886
+ msgid "Enter the contents of the report."
887
+ msgstr ""
888
+
889
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:187
890
+ msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
891
+ msgstr ""
892
+
893
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:188
894
+ #: wp-statistics/widget.php:38 wp-statistics/widget.php:247
895
+ #: wp-statistics/wp-statistics.php:621
896
+ msgid "User Online"
897
+ msgstr ""
898
+
899
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:189
900
+ #: wp-statistics/widget.php:52 wp-statistics/widget.php:253
901
+ msgid "Today Visitor"
902
+ msgstr ""
903
+
904
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:190
905
+ #: wp-statistics/widget.php:45 wp-statistics/widget.php:250
906
+ msgid "Today Visit"
907
+ msgstr ""
908
+
909
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:191
910
+ #: wp-statistics/widget.php:66 wp-statistics/widget.php:259
911
+ msgid "Yesterday Visitor"
912
+ msgstr ""
913
+
914
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:192
915
+ #: wp-statistics/widget.php:59
916
+ msgid "Yesterday Visit"
917
+ msgstr ""
918
+
919
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:193
920
+ #: wp-statistics/widget.php:101 wp-statistics/widget.php:274
921
+ msgid "Total Visitor"
922
+ msgstr ""
923
+
924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:194
925
+ #: wp-statistics/widget.php:94 wp-statistics/widget.php:271
926
+ msgid "Total Visit"
927
+ msgstr ""
928
+
929
+ #: wp-statistics/shortcode.php:175
930
+ msgid "None"
931
+ msgstr ""
932
+
933
+ #: wp-statistics/includes/settings/wps-settings.php:108
934
+ msgid "About"
935
+ msgstr ""
936
+
937
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
938
+ msgid "Dashboard"
939
+ msgstr ""
940
+
941
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
942
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
943
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
944
+ msgid "The following items are global to all users."
945
+ msgstr ""
946
+
947
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
948
+ msgid "Disable dashboard widgets"
949
+ msgstr ""
950
+
951
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
952
+ msgid "Disable the dashboard widgets."
953
+ msgstr ""
954
+
955
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
956
+ msgid "Page/Post Editor"
957
+ msgstr ""
958
+
959
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
960
+ msgid "Disable post/page editor widget"
961
+ msgstr ""
962
+
963
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
964
+ msgid "Disable the page/post editor widget."
965
+ msgstr ""
966
+
967
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
968
+ msgid "Map type"
969
+ msgstr ""
970
+
971
+ #: wp-statistics/includes/functions/functions.php:440
972
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
973
+ msgid "Google"
974
+ msgstr ""
975
+
976
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
977
+ msgid "JQVMap"
978
+ msgstr ""
979
+
980
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
981
+ msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
982
+ msgstr ""
983
+
984
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
985
+ msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
986
+ msgstr ""
987
+
988
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
989
+ msgid "Disable map"
990
+ msgstr ""
991
+
992
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:95
993
+ msgid "Disable the map display"
994
+ msgstr ""
995
+
996
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:101
997
+ msgid "Get country location from Google"
998
+ msgstr ""
999
+
1000
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:107
1001
+ msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
1002
+ msgstr ""
1003
+
1004
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:15
1005
+ msgid "WP Statisitcs Removal"
1006
+ msgstr ""
1007
+
1008
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:20
1009
+ 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."
1010
+ msgstr ""
1011
+
1012
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:23
1013
+ 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."
1014
+ msgstr ""
1015
+
1016
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:29
1017
+ msgid "Remove data and settings"
1018
+ msgstr ""
1019
+
1020
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:34
1021
+ msgid "Remove"
1022
+ msgstr ""
1023
+
1024
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:35
1025
+ msgid "Remove data and settings, this action cannot be undone."
1026
+ msgstr ""
1027
+
1028
+ #: wp-statistics/includes/settings/wps-settings.php:100
1029
+ msgid "General"
1030
+ msgstr ""
1031
+
1032
+ #: wp-statistics/includes/settings/wps-settings.php:101
1033
+ msgid "Notifications"
1034
+ msgstr ""
1035
+
1036
+ #: wp-statistics/includes/settings/wps-settings.php:102
1037
+ msgid "Dashboard/Overview"
1038
+ msgstr ""
1039
+
1040
+ #: wp-statistics/includes/settings/wps-settings.php:106
1041
+ msgid "Maintenance"
1042
+ msgstr ""
1043
+
1044
+ #: wp-statistics/includes/settings/wps-settings.php:107
1045
+ msgid "Removal"
1046
+ msgstr ""
1047
+
1048
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:85
1049
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
1050
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:286
1051
+ #: wp-statistics/includes/settings/tabs/wps-general.php:349
1052
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
1053
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:201
1054
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:116
1055
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:42
1056
+ msgid "Update"
1057
+ msgstr ""
1058
+
1059
+ #: wp-statistics/schedule.php:10
1060
+ msgid "Once Weekly"
1061
+ msgstr ""
1062
+
1063
+ #: wp-statistics/schedule.php:17
1064
+ msgid "Once Every 2 Weeks"
1065
+ msgstr ""
1066
+
1067
+ #: wp-statistics/schedule.php:24
1068
+ msgid "Once Every 4 Weeks"
1069
+ msgstr ""
1070
+
1071
+ #: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
1072
+ #: wp-statistics/wp-statistics.php:469
1073
+ msgid "Statistics"
1074
+ msgstr ""
1075
+
1076
+ #: wp-statistics/widget.php:15
1077
+ msgid "Show site stats in sidebar."
1078
+ msgstr ""
1079
+
1080
+ #: wp-statistics/widget.php:73 wp-statistics/widget.php:262
1081
+ msgid "Week Visit"
1082
+ msgstr ""
1083
+
1084
+ #: wp-statistics/widget.php:80 wp-statistics/widget.php:265
1085
+ msgid "Month Visit"
1086
+ msgstr ""
1087
+
1088
+ #: wp-statistics/widget.php:87 wp-statistics/widget.php:268
1089
+ msgid "Years Visit"
1090
+ msgstr ""
1091
+
1092
+ #: wp-statistics/widget.php:108 wp-statistics/widget.php:277
1093
+ msgid "Total Page Views"
1094
+ msgstr ""
1095
+
1096
+ #: wp-statistics/widget.php:116
1097
+ msgid "Search Engine referred"
1098
+ msgstr ""
1099
+
1100
+ #: wp-statistics/widget.php:123 wp-statistics/widget.php:300
1101
+ msgid "Total Posts"
1102
+ msgstr ""
1103
+
1104
+ #: wp-statistics/widget.php:130 wp-statistics/widget.php:303
1105
+ msgid "Total Pages"
1106
+ msgstr ""
1107
+
1108
+ #: wp-statistics/widget.php:137 wp-statistics/widget.php:306
1109
+ msgid "Total Comments"
1110
+ msgstr ""
1111
+
1112
+ #: wp-statistics/widget.php:144 wp-statistics/widget.php:309
1113
+ msgid "Total Spams"
1114
+ msgstr ""
1115
+
1116
+ #: wp-statistics/widget.php:151 wp-statistics/widget.php:312
1117
+ msgid "Total Users"
1118
+ msgstr ""
1119
+
1120
+ #: wp-statistics/widget.php:158 wp-statistics/widget.php:315
1121
+ msgid "Average Posts"
1122
+ msgstr ""
1123
+
1124
+ #: wp-statistics/widget.php:165 wp-statistics/widget.php:318
1125
+ msgid "Average Comments"
1126
+ msgstr ""
1127
+
1128
+ #: wp-statistics/widget.php:172 wp-statistics/widget.php:321
1129
+ msgid "Average Users"
1130
+ msgstr ""
1131
+
1132
+ #: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
1133
+ #: wp-statistics/widget.php:324
1134
+ msgid "Last Post Date"
1135
+ msgstr ""
1136
+
1137
+ #: wp-statistics/widget.php:240
1138
+ msgid "Name"
1139
+ msgstr ""
1140
+
1141
+ #: wp-statistics/widget.php:244
1142
+ msgid "Items"
1143
+ msgstr ""
1144
+
1145
+ #: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:646
1146
+ msgid "Yesterday visit"
1147
+ msgstr ""
1148
+
1149
+ #: wp-statistics/widget.php:280
1150
+ msgid "Search Engine Referred"
1151
+ msgstr ""
1152
+
1153
+ #: wp-statistics/widget.php:283
1154
+ msgid "Select type of search engine"
1155
+ msgstr ""
1156
+
1157
+ #: wp-statistics/wp-statistics.php:122
1158
+ msgid "WP Statistics has been removed, please disable and delete it."
1159
+ msgstr ""
1160
+
1161
+ #: wp-statistics/wp-statistics.php:54
1162
+ msgid "WP Statistics"
1163
+ msgstr ""
1164
+
1165
+ #: wp-statistics/wp-statistics.php:55
1166
+ msgid "Complete statistics for your WordPress site."
1167
+ msgstr ""
1168
+
1169
+ #: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
1170
+ #: wp-statistics/wp-statistics.php:523
1171
+ msgid "Settings"
1172
+ msgstr ""
1173
+
1174
+ #: wp-statistics/wp-statistics.php:325
1175
+ msgid "Click here to visit the plugin on WordPress.org"
1176
+ msgstr ""
1177
+
1178
+ #: wp-statistics/wp-statistics.php:325
1179
+ msgid "Visit WordPress.org page"
1180
+ msgstr ""
1181
+
1182
+ #: wp-statistics/wp-statistics.php:328
1183
+ msgid "Click here to rate and review this plugin on WordPress.org"
1184
+ msgstr ""
1185
+
1186
+ #: wp-statistics/wp-statistics.php:328
1187
+ msgid "Rate this plugin"
1188
+ msgstr ""
1189
+
1190
+ #: wp-statistics/wp-statistics.php:372
1191
+ msgid "WP Statistics - Hits"
1192
+ msgstr ""
1193
+
1194
+ #: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:472
1195
+ #: wp-statistics/wp-statistics.php:510
1196
+ msgid "Overview"
1197
+ msgstr ""
1198
+
1199
+ #: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:515
1200
+ msgid "Online"
1201
+ msgstr ""
1202
+
1203
+ #: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:517
1204
+ msgid "Referrers"
1205
+ msgstr ""
1206
+
1207
+ #: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
1208
+ #: wp-statistics/wp-statistics.php:518
1209
+ msgid "Searches"
1210
+ msgstr ""
1211
+
1212
+ #: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:519
1213
+ msgid "Search Words"
1214
+ msgstr ""
1215
+
1216
+ #: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:520
1217
+ msgid "Top Visitors Today"
1218
+ msgstr ""
1219
+
1220
+ #: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:522
1221
+ msgid "Optimization"
1222
+ msgstr ""
1223
+
1224
+ #: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:486
1225
+ msgid "Manual"
1226
+ msgstr ""
1227
+
1228
+ #: wp-statistics/wp-statistics.php:501
1229
+ msgid "Site"
1230
+ msgstr ""
1231
+
1232
+ #: wp-statistics/wp-statistics.php:502
1233
+ msgid "Options"
1234
+ msgstr ""
1235
+
1236
+ #: wp-statistics/wp-statistics.php:628
1237
+ msgid "Today visitor"
1238
+ msgstr ""
1239
+
1240
+ #: wp-statistics/wp-statistics.php:634
1241
+ msgid "Today visit"
1242
+ msgstr ""
1243
+
1244
+ #: wp-statistics/wp-statistics.php:640
1245
+ msgid "Yesterday visitor"
1246
+ msgstr ""
1247
+
1248
+ #: wp-statistics/wp-statistics.php:652
1249
+ msgid "View Stats"
1250
+ msgstr ""
1251
+
1252
+ #: wp-statistics/wp-statistics.php:676
1253
+ msgid "Download ODF file"
1254
+ msgstr ""
1255
+
1256
+ #: wp-statistics/wp-statistics.php:677
1257
+ msgid "Download HTML file"
1258
+ msgstr ""
1259
+
1260
+ #: wp-statistics/wp-statistics.php:681
1261
+ msgid "Manual file not found."
1262
+ msgstr ""
1263
+
1264
+ #: wp-statistics/wp-statistics.php:748 wp-statistics/wp-statistics.php:880
1265
+ #: wp-statistics/wp-statistics.php:915
1266
+ msgid "You do not have sufficient permissions to access this page."
1267
+ msgstr ""
1268
+
1269
+ #: wp-statistics/wp-statistics.php:301
1270
+ msgid "WP Statistics %s installed on"
1271
+ msgstr ""
1272
+
1273
+ #: wp-statistics/wps-updates.php:54
1274
+ msgid "Error downloading GeoIP database from: %s - %s"
1275
+ msgstr ""
1276
+
1277
+ #: wp-statistics/wps-updates.php:65
1278
+ msgid "Error could not open downloaded GeoIP database for reading: %s"
1279
+ msgstr ""
1280
+
1281
+ #: wp-statistics/wps-updates.php:72
1282
+ msgid "Error could not open destination GeoIP database for writing %s"
1283
+ msgstr ""
1284
+
1285
+ #: wp-statistics/wps-updates.php:88
1286
+ msgid "GeoIP Database updated successfully!"
1287
+ msgstr ""
1288
+
1289
+ #: wp-statistics/wps-updates.php:113
1290
+ msgid "GeoIP update on"
1291
+ msgstr ""
1292
+
1293
+ #: wp-statistics/wps-updates.php:180
1294
+ msgid "Error downloading browscap database from: %s - %s"
1295
+ msgstr ""
1296
+
1297
+ #: wp-statistics/wps-updates.php:289
1298
+ msgid "browscap database updated successfully!"
1299
+ msgstr ""
1300
+
1301
+ #: wp-statistics/wps-updates.php:299
1302
+ msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1303
+ msgstr ""
1304
+
1305
+ #: wp-statistics/wps-updates.php:307
1306
+ msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1307
+ msgstr ""
1308
+
1309
+ #: wp-statistics/wps-updates.php:329
1310
+ msgid "browscap already at current version!"
1311
+ msgstr ""
1312
+
1313
+ #: wp-statistics/wps-updates.php:342
1314
+ msgid "Browscap.ini update on"
1315
+ msgstr ""
1316
+
1317
+ #: wp-statistics/dashboard.php:56
1318
+ msgid "Quick Stats"
1319
+ msgstr ""
1320
+
1321
+ #: wp-statistics/dashboard.php:57
1322
+ #: wp-statistics/includes/log/widgets/browsers.php:41
1323
+ msgid "Top 10 Browsers"
1324
+ msgstr ""
1325
+
1326
+ #: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:457
1327
+ msgid "Top 10 Countries"
1328
+ msgstr ""
1329
+
1330
+ #: wp-statistics/dashboard.php:59
1331
+ msgid "Today's Visitor Map"
1332
+ msgstr ""
1333
+
1334
+ #: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
1335
+ #: wp-statistics/includes/log/hit-statistics.php:8
1336
+ #: wp-statistics/wp-statistics.php:446
1337
+ msgid "Hit Statistics"
1338
+ msgstr ""
1339
+
1340
+ #: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:450
1341
+ msgid "Top 10 Pages"
1342
+ msgstr ""
1343
+
1344
+ #: wp-statistics/dashboard.php:62
1345
+ #: wp-statistics/includes/log/last-visitor.php:36
1346
+ #: wp-statistics/wp-statistics.php:451
1347
+ msgid "Recent Visitors"
1348
+ msgstr ""
1349
+
1350
+ #: wp-statistics/dashboard.php:63
1351
+ #: wp-statistics/includes/log/top-referring.php:59
1352
+ #: wp-statistics/includes/log/top-referring.php:81
1353
+ #: wp-statistics/wp-statistics.php:456
1354
+ msgid "Top Referring Sites"
1355
+ msgstr ""
1356
+
1357
+ #: wp-statistics/dashboard.php:64
1358
+ #: wp-statistics/includes/log/widgets/quickstats.php:75
1359
+ #: wp-statistics/includes/log/widgets/summary.php:75
1360
+ #: wp-statistics/wp-statistics.php:448
1361
+ msgid "Search Engine Referrals"
1362
+ msgstr ""
1363
+
1364
+ #: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:454
1365
+ msgid "Summary"
1366
+ msgstr ""
1367
+
1368
+ #: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
1369
+ #: wp-statistics/wp-statistics.php:449
1370
+ msgid "Latest Search Words"
1371
+ msgstr ""
1372
+
1373
+ #: wp-statistics/dashboard.php:67
1374
+ msgid "Top 10 Visitors Today"
1375
+ msgstr ""
1376
+
1377
+ #: wp-statistics/editor.php:58
1378
+ msgid "This post is not yet published."
1379
+ msgstr ""
1380
+
1381
+ #: wp-statistics/includes/functions/geoip-populate.php:24
1382
+ msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1383
+ msgstr ""
1384
+
1385
+ #: wp-statistics/includes/functions/geoip-populate.php:48
1386
+ msgid "Updated %s GeoIP records in the visitors database."
1387
+ msgstr ""
1388
+
1389
+ #: wp-statistics/includes/functions/purge.php:21
1390
+ #: wp-statistics/includes/functions/purge.php:39
1391
+ #: wp-statistics/includes/functions/purge.php:50
1392
+ #: wp-statistics/includes/functions/purge.php:61
1393
+ #: wp-statistics/includes/functions/purge.php:94
1394
+ msgid "%s data older than %s days purged successfully."
1395
+ msgstr ""
1396
+
1397
+ #: wp-statistics/includes/functions/purge.php:23
1398
+ #: wp-statistics/includes/functions/purge.php:41
1399
+ #: wp-statistics/includes/functions/purge.php:52
1400
+ #: wp-statistics/includes/functions/purge.php:63
1401
+ #: wp-statistics/includes/functions/purge.php:96
1402
+ msgid "No records found to purge from %s!"
1403
+ msgstr ""
1404
+
1405
+ #: wp-statistics/includes/functions/purge-hits.php:45
1406
+ #: wp-statistics/includes/functions/purge.php:109
1407
+ msgid "Database pruned on"
1408
+ msgstr ""
1409
+
1410
+ #: wp-statistics/includes/functions/purge.php:114
1411
+ msgid "Please select a value over 30 days."
1412
+ msgstr ""
1413
+
1414
+ #: wp-statistics/includes/log/all-browsers.php:21
1415
+ msgid "Browser Statistics"
1416
+ msgstr ""
1417
+
1418
+ #: wp-statistics/includes/log/all-browsers.php:29
1419
+ #: wp-statistics/includes/log/all-browsers.php:113
1420
+ #: wp-statistics/includes/log/all-browsers.php:248
1421
+ #: wp-statistics/includes/log/exclusions.php:72
1422
+ #: wp-statistics/includes/log/exclusions.php:190
1423
+ #: wp-statistics/includes/log/hit-statistics.php:26
1424
+ #: wp-statistics/includes/log/hit-statistics.php:163
1425
+ #: wp-statistics/includes/log/last-search.php:64
1426
+ #: wp-statistics/includes/log/last-visitor.php:67
1427
+ #: wp-statistics/includes/log/online.php:17
1428
+ #: wp-statistics/includes/log/page-statistics.php:34
1429
+ #: wp-statistics/includes/log/search-statistics.php:27
1430
+ #: wp-statistics/includes/log/top-countries.php:26
1431
+ #: wp-statistics/includes/log/top-pages.php:29
1432
+ #: wp-statistics/includes/log/top-pages.php:155
1433
+ #: wp-statistics/includes/log/top-referring.php:77
1434
+ #: wp-statistics/includes/log/top-visitors.php:40
1435
+ msgid "Click to toggle"
1436
+ msgstr ""
1437
+
1438
+ #: wp-statistics/includes/log/all-browsers.php:30
1439
+ #: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:455
1440
+ #: wp-statistics/wp-statistics.php:511
1441
+ msgid "Browsers"
1442
+ msgstr ""
1443
+
1444
+ #: wp-statistics/includes/log/all-browsers.php:57
1445
+ msgid "Browsers by type"
1446
+ msgstr ""
1447
+
1448
+ #: wp-statistics/includes/log/all-browsers.php:114
1449
+ #: wp-statistics/includes/log/widgets/top.visitors.php:18
1450
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1451
+ msgid "Platform"
1452
+ msgstr ""
1453
+
1454
+ #: wp-statistics/includes/log/all-browsers.php:141
1455
+ msgid "Browsers by platform"
1456
+ msgstr ""
1457
+
1458
+ #: wp-statistics/includes/log/all-browsers.php:249
1459
+ msgid "%s Version"
1460
+ msgstr ""
1461
+
1462
+ #: wp-statistics/includes/log/exclusions.php:8
1463
+ msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1464
+ msgstr ""
1465
+
1466
+ #: wp-statistics/includes/log/exclusions.php:64
1467
+ msgid "Exclusions Statistics"
1468
+ msgstr ""
1469
+
1470
+ #: wp-statistics/includes/functions/functions.php:970
1471
+ msgid "10 Days"
1472
+ msgstr ""
1473
+
1474
+ #: wp-statistics/includes/functions/functions.php:970
1475
+ msgid "20 Days"
1476
+ msgstr ""
1477
+
1478
+ #: wp-statistics/includes/functions/functions.php:970
1479
+ msgid "30 Days"
1480
+ msgstr ""
1481
+
1482
+ #: wp-statistics/includes/functions/functions.php:970
1483
+ msgid "2 Months"
1484
+ msgstr ""
1485
+
1486
+ #: wp-statistics/includes/functions/functions.php:970
1487
+ msgid "3 Months"
1488
+ msgstr ""
1489
+
1490
+ #: wp-statistics/includes/functions/functions.php:970
1491
+ msgid "6 Months"
1492
+ msgstr ""
1493
+
1494
+ #: wp-statistics/includes/functions/functions.php:970
1495
+ msgid "9 Months"
1496
+ msgstr ""
1497
+
1498
+ #: wp-statistics/includes/functions/functions.php:970
1499
+ msgid "1 Year"
1500
+ msgstr ""
1501
+
1502
+ #: wp-statistics/includes/log/exclusions.php:73
1503
+ msgid "Exclusions Statistical Chart"
1504
+ msgstr ""
1505
+
1506
+ #: wp-statistics/includes/log/exclusions.php:95
1507
+ msgid "Excluded hits in the last"
1508
+ msgstr ""
1509
+
1510
+ #: wp-statistics/includes/log/exclusions.php:95
1511
+ #: wp-statistics/includes/log/hit-statistics.php:66
1512
+ #: wp-statistics/includes/log/search-statistics.php:69
1513
+ #: wp-statistics/includes/log/widgets/hits.php:42
1514
+ #: wp-statistics/includes/log/widgets/search.php:42
1515
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
1516
+ msgid "days"
1517
+ msgstr ""
1518
+
1519
+ #: wp-statistics/includes/log/exclusions.php:116
1520
+ msgid "Number of excluded hits"
1521
+ msgstr ""
1522
+
1523
+ #: wp-statistics/includes/log/hit-statistics.php:27
1524
+ msgid "Hits Statistics Chart"
1525
+ msgstr ""
1526
+
1527
+ #: wp-statistics/includes/log/hit-statistics.php:66
1528
+ #: wp-statistics/includes/log/widgets/hits.php:42
1529
+ msgid "Hits in the last"
1530
+ msgstr ""
1531
+
1532
+ #: wp-statistics/includes/log/hit-statistics.php:87
1533
+ #: wp-statistics/includes/log/widgets/hits.php:63
1534
+ msgid "Number of visits and visitors"
1535
+ msgstr ""
1536
+
1537
+ #: wp-statistics/includes/log/hit-statistics.php:101
1538
+ #: wp-statistics/includes/log/hit-statistics.php:170
1539
+ #: wp-statistics/includes/log/widgets/hits.php:77
1540
+ #: wp-statistics/includes/log/widgets/quickstats.php:24
1541
+ #: wp-statistics/includes/log/widgets/summary.php:24
1542
+ msgid "Visit"
1543
+ msgstr ""
1544
+
1545
+ #: wp-statistics/includes/log/hit-statistics.php:101
1546
+ #: wp-statistics/includes/log/hit-statistics.php:171
1547
+ #: wp-statistics/includes/log/widgets/hits.php:77
1548
+ #: wp-statistics/includes/log/widgets/quickstats.php:23
1549
+ #: wp-statistics/includes/log/widgets/summary.php:23
1550
+ msgid "Visitor"
1551
+ msgstr ""
1552
+
1553
+ #: wp-statistics/includes/log/last-search.php:65
1554
+ msgid "Latest Search Word Statistics"
1555
+ msgstr ""
1556
+
1557
+ #: wp-statistics/includes/log/last-search.php:110
1558
+ #: wp-statistics/includes/log/last-visitor.php:101
1559
+ #: wp-statistics/includes/log/online.php:50
1560
+ #: wp-statistics/includes/log/widgets/google.map.php:60
1561
+ #: wp-statistics/includes/log/widgets/jqv.map.php:55
1562
+ #: wp-statistics/includes/log/widgets/recent.php:14
1563
+ #: wp-statistics/includes/log/widgets/words.php:27
1564
+ msgid "#hash#"
1565
+ msgstr ""
1566
+
1567
+ #: wp-statistics/includes/log/last-search.php:115
1568
+ #: wp-statistics/includes/log/last-visitor.php:106
1569
+ #: wp-statistics/includes/log/online.php:55
1570
+ #: wp-statistics/includes/log/top-referring.php:112
1571
+ #: wp-statistics/includes/log/widgets/recent.php:19
1572
+ #: wp-statistics/includes/log/widgets/words.php:42
1573
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
1574
+ msgid "Map"
1575
+ msgstr ""
1576
+
1577
+ #: wp-statistics/includes/log/last-search.php:159
1578
+ #: wp-statistics/includes/log/last-visitor.php:139
1579
+ #: wp-statistics/includes/log/online.php:109
1580
+ #: wp-statistics/includes/log/top-pages.php:205
1581
+ #: wp-statistics/includes/log/top-referring.php:153
1582
+ msgid "Page"
1583
+ msgstr ""
1584
+
1585
+ #: wp-statistics/includes/log/last-search.php:159
1586
+ #: wp-statistics/includes/log/last-visitor.php:139
1587
+ #: wp-statistics/includes/log/online.php:109
1588
+ #: wp-statistics/includes/log/top-pages.php:205
1589
+ #: wp-statistics/includes/log/top-referring.php:153
1590
+ msgid "From"
1591
+ msgstr ""
1592
+
1593
+ #: wp-statistics/includes/log/last-search.php:47
1594
+ #: wp-statistics/includes/log/last-visitor.php:38
1595
+ #: wp-statistics/includes/log/top-referring.php:67
1596
+ #: wp-statistics/includes/log/top-referring.php:70
1597
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
1598
+ #: wp-statistics/widget.php:296
1599
+ msgid "All"
1600
+ msgstr ""
1601
+
1602
+ #: wp-statistics/includes/log/last-visitor.php:68
1603
+ msgid "Recent Visitor Statistics"
1604
+ msgstr ""
1605
+
1606
+ #: wp-statistics/includes/log/online.php:11
1607
+ #: wp-statistics/includes/log/online.php:18
1608
+ msgid "Online Users"
1609
+ msgstr ""
1610
+
1611
+ #: wp-statistics/includes/log/online.php:75
1612
+ msgid "Online for "
1613
+ msgstr ""
1614
+
1615
+ #: wp-statistics/includes/log/page-statistics.php:26
1616
+ msgid "Page Trend for Post ID"
1617
+ msgstr ""
1618
+
1619
+ #: wp-statistics/includes/log/page-statistics.php:35
1620
+ msgid "Page Trend"
1621
+ msgstr ""
1622
+
1623
+ #: wp-statistics/includes/log/search-statistics.php:19
1624
+ #: wp-statistics/includes/log/search-statistics.php:28
1625
+ msgid "Search Engine Referral Statistics"
1626
+ msgstr ""
1627
+
1628
+ #: wp-statistics/includes/log/search-statistics.php:69
1629
+ #: wp-statistics/includes/log/widgets/search.php:42
1630
+ msgid "Search engine referrals in the last"
1631
+ msgstr ""
1632
+
1633
+ #: wp-statistics/includes/log/search-statistics.php:90
1634
+ #: wp-statistics/includes/log/widgets/search.php:63
1635
+ msgid "Number of referrals"
1636
+ msgstr ""
1637
+
1638
+ #: wp-statistics/includes/log/exclusions.php:24
1639
+ #: wp-statistics/includes/log/search-statistics.php:104
1640
+ #: wp-statistics/includes/log/widgets/quickstats.php:58
1641
+ #: wp-statistics/includes/log/widgets/quickstats.php:105
1642
+ #: wp-statistics/includes/log/widgets/search.php:77
1643
+ #: wp-statistics/includes/log/widgets/summary.php:58
1644
+ #: wp-statistics/includes/log/widgets/summary.php:105
1645
+ msgid "Total"
1646
+ msgstr ""
1647
+
1648
+ #: wp-statistics/includes/log/top-countries.php:18
1649
+ #: wp-statistics/includes/log/top-countries.php:27
1650
+ msgid "Top Countries"
1651
+ msgstr ""
1652
+
1653
+ #: wp-statistics/includes/log/top-countries.php:31
1654
+ #: wp-statistics/includes/log/widgets/countries.php:9
1655
+ #: wp-statistics/includes/log/widgets/top.visitors.php:11
1656
+ msgid "Rank"
1657
+ msgstr ""
1658
+
1659
+ #: wp-statistics/includes/log/top-countries.php:32
1660
+ #: wp-statistics/includes/log/widgets/countries.php:10
1661
+ #: wp-statistics/includes/log/widgets/top.visitors.php:13
1662
+ msgid "Flag"
1663
+ msgstr ""
1664
+
1665
+ #: wp-statistics/includes/log/top-countries.php:33
1666
+ #: wp-statistics/includes/log/widgets/countries.php:11
1667
+ #: wp-statistics/includes/log/widgets/top.visitors.php:14
1668
+ msgid "Country"
1669
+ msgstr ""
1670
+
1671
+ #: wp-statistics/includes/log/top-countries.php:34
1672
+ #: wp-statistics/includes/log/widgets/countries.php:12
1673
+ msgid "Visitor Count"
1674
+ msgstr ""
1675
+
1676
+ #: wp-statistics/includes/log/top-pages.php:20
1677
+ #: wp-statistics/includes/log/top-pages.php:156
1678
+ msgid "Top Pages"
1679
+ msgstr ""
1680
+
1681
+ #: wp-statistics/includes/log/top-pages.php:30
1682
+ msgid "Top 5 Pages Trends"
1683
+ msgstr ""
1684
+
1685
+ #: wp-statistics/includes/log/top-pages.php:67
1686
+ msgid "Top 5 Page Trending Stats"
1687
+ msgstr ""
1688
+
1689
+ #: wp-statistics/includes/log/top-pages.php:88
1690
+ #: wp-statistics/includes/log/widgets/page.php:63
1691
+ msgid "Number of Hits"
1692
+ msgstr ""
1693
+
1694
+ #: wp-statistics/includes/log/top-pages.php:184
1695
+ #: wp-statistics/includes/log/widgets/pages.php:13
1696
+ msgid "No page title found"
1697
+ msgstr ""
1698
+
1699
+ #: wp-statistics/includes/log/top-pages.php:187
1700
+ #: wp-statistics/includes/log/widgets/pages.php:16
1701
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
1702
+ #: wp-statistics/includes/settings/tabs/wps-general.php:122
1703
+ #: wp-statistics/includes/settings/tabs/wps-general.php:127
1704
+ #: wp-statistics/shortcode.php:139
1705
+ msgid "Visits"
1706
+ msgstr ""
1707
+
1708
+ #: wp-statistics/includes/log/top-referring.php:4
1709
+ msgid "To be added soon"
1710
+ msgstr ""
1711
+
1712
+ #: wp-statistics/includes/log/top-referring.php:79
1713
+ msgid "Referring sites from"
1714
+ msgstr ""
1715
+
1716
+ #: wp-statistics/includes/log/top-referring.php:137
1717
+ #: wp-statistics/includes/log/widgets/referring.php:35
1718
+ msgid "References"
1719
+ msgstr ""
1720
+
1721
+ #: wp-statistics/includes/log/top-visitors.php:12
1722
+ msgid "Top 100 Visitors Today"
1723
+ msgstr ""
1724
+
1725
+ #: wp-statistics/includes/log/log.php:17
1726
+ msgid "About WP Statistics Version %s"
1727
+ msgstr ""
1728
+
1729
+ #: wp-statistics/includes/log/widgets/about.php:11
1730
+ msgid "Website"
1731
+ msgstr ""
1732
+
1733
+ #: wp-statistics/includes/log/widgets/about.php:12
1734
+ msgid "Rate and Review"
1735
+ msgstr ""
1736
+
1737
+ #: wp-statistics/includes/log/widgets/about.php:16
1738
+ msgid "More Information"
1739
+ msgstr ""
1740
+
1741
+ #: wp-statistics/includes/log/widgets/about.php:25
1742
+ #: wp-statistics/includes/settings/tabs/wps-about.php:12
1743
+ msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1744
+ msgstr ""
1745
+
1746
+ #: wp-statistics/includes/log/widgets/browsers.php:34
1747
+ msgid "Other"
1748
+ msgstr ""
1749
+
1750
+ #: wp-statistics/wp-statistics.php:445
1751
+ msgid "Today Visitors Map"
1752
+ msgstr ""
1753
+
1754
+ #: wp-statistics/includes/log/widgets/referring.php:36
1755
+ msgid "Address"
1756
+ msgstr ""
1757
+
1758
+ #: wp-statistics/includes/log/widgets/quickstats.php:12
1759
+ #: wp-statistics/includes/log/widgets/summary.php:12
1760
+ msgid "User(s) Online"
1761
+ msgstr ""
1762
+
1763
+ #: wp-statistics/includes/log/widgets/quickstats.php:28
1764
+ #: wp-statistics/includes/log/widgets/quickstats.php:80
1765
+ #: wp-statistics/includes/log/widgets/summary.php:28
1766
+ #: wp-statistics/includes/log/widgets/summary.php:80
1767
+ msgid "Today"
1768
+ msgstr ""
1769
+
1770
+ #: wp-statistics/includes/log/widgets/quickstats.php:34
1771
+ #: wp-statistics/includes/log/widgets/quickstats.php:81
1772
+ #: wp-statistics/includes/log/widgets/summary.php:34
1773
+ #: wp-statistics/includes/log/widgets/summary.php:81
1774
+ msgid "Yesterday"
1775
+ msgstr ""
1776
+
1777
+ #: wp-statistics/includes/log/widgets/quickstats.php:99
1778
+ #: wp-statistics/includes/log/widgets/summary.php:99
1779
+ msgid "Daily Total"
1780
+ msgstr ""
1781
+
1782
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1783
+ #: wp-statistics/includes/log/widgets/summary.php:118
1784
+ msgid "Current Time and Date"
1785
+ msgstr ""
1786
+
1787
+ #: wp-statistics/includes/log/widgets/quickstats.php:118
1788
+ #: wp-statistics/includes/log/widgets/summary.php:118
1789
+ msgid "(Adjustment)"
1790
+ msgstr ""
1791
+
1792
+ #: wp-statistics/includes/log/widgets/quickstats.php:122
1793
+ #: wp-statistics/includes/log/widgets/summary.php:122
1794
+ msgid "Date: %s"
1795
+ msgstr ""
1796
+
1797
+ #: wp-statistics/includes/log/widgets/quickstats.php:126
1798
+ #: wp-statistics/includes/log/widgets/summary.php:126
1799
+ msgid "Time: %s"
1800
+ msgstr ""
1801
+
1802
+ #: wp-statistics/includes/log/widgets/top.visitors.php:12
1803
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
1804
+ #: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
1805
+ #: wp-statistics/wp-statistics.php:514
1806
+ msgid "Hits"
1807
+ msgstr ""
1808
+
1809
+ #: wp-statistics/includes/log/widgets/top.visitors.php:15
1810
+ msgid "IP"
1811
+ msgstr ""
1812
+
1813
+ #: wp-statistics/includes/log/widgets/top.visitors.php:17
1814
+ msgid "Agent"
1815
+ msgstr ""
1816
+
1817
+ #: wp-statistics/includes/log/widgets/top.visitors.php:19
1818
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1819
+ msgid "Version"
1820
+ msgstr ""
1821
+
1822
+ #: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
1823
+ #: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
1824
+ #: wp-statistics/ajax.php:184 wp-statistics/ajax.php:302
1825
+ #: wp-statistics/includes/optimization/wps-optimization.php:6
1826
+ msgid "Access denied!"
1827
+ msgstr ""
1828
+
1829
+ #: wp-statistics/ajax.php:31
1830
+ msgid "%s agent data deleted successfully."
1831
+ msgstr ""
1832
+
1833
+ #: wp-statistics/ajax.php:34
1834
+ msgid "No agent data found to remove!"
1835
+ msgstr ""
1836
+
1837
+ #: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
1838
+ #: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
1839
+ msgid "Please select the desired items."
1840
+ msgstr ""
1841
+
1842
+ #: wp-statistics/ajax.php:62
1843
+ msgid "%s platform data deleted successfully."
1844
+ msgstr ""
1845
+
1846
+ #: wp-statistics/ajax.php:65
1847
+ msgid "No platform data found to remove!"
1848
+ msgstr ""
1849
+
1850
+ #: wp-statistics/includes/functions/functions.php:1074
1851
+ msgid "%s table data deleted successfully."
1852
+ msgstr ""
1853
+
1854
+ #: wp-statistics/includes/functions/functions.php:1078
1855
+ msgid "Error, %s not emptied!"
1856
+ msgstr ""
1857
+
1858
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1859
+ msgid "Database Setup"
1860
+ msgstr ""
1861
+
1862
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1863
+ msgid "Re-run Install"
1864
+ msgstr ""
1865
+
1866
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1867
+ msgid "Install Now!"
1868
+ msgstr ""
1869
+
1870
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1871
+ 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."
1872
+ msgstr ""
1873
+
1874
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1875
+ msgid "Database Index"
1876
+ msgstr ""
1877
+
1878
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1879
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1880
+ #: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:512
1881
+ msgid "Countries"
1882
+ msgstr ""
1883
+
1884
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
1885
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
1886
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1887
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1888
+ msgid "Update Now!"
1889
+ msgstr ""
1890
+
1891
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
1892
+ 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."
1893
+ msgstr ""
1894
+
1895
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
1896
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
1897
+ msgid "This operation could take a long time on installs with many rows in the visitors table."
1898
+ msgstr ""
1899
+
1900
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
1901
+ 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."
1902
+ msgstr ""
1903
+
1904
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
1905
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
1906
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
1907
+ msgid "Congratulations, your installation is already up to date, nothing to do."
1908
+ msgstr ""
1909
+
1910
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
1911
+ #: wp-statistics/includes/optimization/wps-optimization.php:235
1912
+ msgid "Export"
1913
+ msgstr ""
1914
+
1915
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
1916
+ msgid "Export from"
1917
+ msgstr ""
1918
+
1919
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
1920
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
1921
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
1922
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
1923
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
1924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:134
1925
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:164
1926
+ msgid "Please select"
1927
+ msgstr ""
1928
+
1929
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
1930
+ msgid "Select the table for the output file."
1931
+ msgstr ""
1932
+
1933
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
1934
+ msgid "Export To"
1935
+ msgstr ""
1936
+
1937
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
1938
+ msgid "Select the output file type."
1939
+ msgstr ""
1940
+
1941
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
1942
+ msgid "Include Header Row"
1943
+ msgstr ""
1944
+
1945
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1946
+ msgid "Include a header row as the first line of the exported file."
1947
+ msgstr ""
1948
+
1949
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
1950
+ msgid "Start Now!"
1951
+ msgstr ""
1952
+
1953
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1954
+ msgid "Historical Values"
1955
+ msgstr ""
1956
+
1957
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1958
+ msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1959
+ msgstr ""
1960
+
1961
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1962
+ #: wp-statistics/includes/settings/tabs/wps-general.php:138
1963
+ #: wp-statistics/includes/settings/tabs/wps-general.php:143
1964
+ #: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
1965
+ #: wp-statistics/wp-statistics.php:521
1966
+ msgid "Visitors"
1967
+ msgstr ""
1968
+
1969
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1970
+ msgid "Number of historical number of visitors to the site (current value is %s)."
1971
+ msgstr ""
1972
+
1973
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1974
+ msgid "Number of historical number of visits to the site (current value is %s)."
1975
+ msgstr ""
1976
+
1977
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1978
+ msgid "Update now!"
1979
+ msgstr ""
1980
+
1981
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1982
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
1983
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
1984
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
1985
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
1986
+ msgid "Are you sure?"
1987
+ msgstr ""
1988
+
1989
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
1990
+ msgid "Data"
1991
+ msgstr ""
1992
+
1993
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1994
+ msgid "Empty Table"
1995
+ msgstr ""
1996
+
1997
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
1998
+ msgid "All data table will be lost."
1999
+ msgstr ""
2000
+
2001
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
2002
+ msgid "Clear now!"
2003
+ msgstr ""
2004
+
2005
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
2006
+ msgid "Purge records older than"
2007
+ msgstr ""
2008
+
2009
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
2010
+ msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
2011
+ msgstr ""
2012
+
2013
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
2014
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
2015
+ msgid "Purge now!"
2016
+ msgstr ""
2017
+
2018
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
2019
+ msgid "Delete User Agent Types"
2020
+ msgstr ""
2021
+
2022
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
2023
+ msgid "Delete Agents"
2024
+ msgstr ""
2025
+
2026
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
2027
+ msgid "All visitor data will be lost for this agent type."
2028
+ msgstr ""
2029
+
2030
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
2031
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
2032
+ msgid "Delete now!"
2033
+ msgstr ""
2034
+
2035
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
2036
+ msgid "Delete Platforms"
2037
+ msgstr ""
2038
+
2039
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
2040
+ msgid "All visitor data will be lost for this platform type."
2041
+ msgstr ""
2042
+
2043
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
2044
+ msgid "Resources"
2045
+ msgstr ""
2046
+
2047
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
2048
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
2049
+ msgid "Memory usage in PHP"
2050
+ msgstr ""
2051
+
2052
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
2053
+ msgid "Byte"
2054
+ msgstr ""
2055
+
2056
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
2057
+ msgid "PHP Memory Limit"
2058
+ msgstr ""
2059
+
2060
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
2061
+ msgid "The memory limit a script is allowed to consume, set in php.ini."
2062
+ msgstr ""
2063
+
2064
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
2065
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
2066
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
2067
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
2068
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
2069
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
2070
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
2071
+ msgid "Number of rows in the %s table"
2072
+ msgstr ""
2073
+
2074
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
2075
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
2076
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
2077
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
2078
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
2079
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
2080
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
2081
+ msgid "Row"
2082
+ msgstr ""
2083
+
2084
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
2085
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
2086
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
2087
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
2088
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
2089
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
2090
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
2091
+ msgid "Number of rows"
2092
+ msgstr ""
2093
+
2094
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
2095
+ msgid "Version Info"
2096
+ msgstr ""
2097
+
2098
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
2099
+ msgid "WP Statistics Version"
2100
+ msgstr ""
2101
+
2102
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
2103
+ msgid "The WP Statistics version you are running."
2104
+ msgstr ""
2105
+
2106
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
2107
+ msgid "PHP Version"
2108
+ msgstr ""
2109
+
2110
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
2111
+ msgid "The PHP version you are running."
2112
+ msgstr ""
2113
+
2114
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
2115
+ msgid "PHP Safe Mode"
2116
+ msgstr ""
2117
+
2118
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
2119
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2120
+ msgstr ""
2121
+
2122
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
2123
+ msgid "jQuery Version"
2124
+ msgstr ""
2125
+
2126
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
2127
+ msgid "The jQuery version you are running."
2128
+ msgstr ""
2129
+
2130
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
2131
+ msgid "cURL Version"
2132
+ msgstr ""
2133
+
2134
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
2135
+ msgid "cURL not installed"
2136
+ msgstr ""
2137
+
2138
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
2139
+ msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
2140
+ msgstr ""
2141
+
2142
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2143
+ msgid "Installed"
2144
+ msgstr ""
2145
+
2146
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
2147
+ msgid "Not installed"
2148
+ msgstr ""
2149
+
2150
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
2151
+ msgid "File Info"
2152
+ msgstr ""
2153
+
2154
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
2155
+ msgid "GeoIP Database"
2156
+ msgstr ""
2157
+
2158
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
2159
+ msgid "Database file does not exist."
2160
+ msgstr ""
2161
+
2162
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
2163
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
2164
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
2165
+ msgid ", created on "
2166
+ msgstr ""
2167
+
2168
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
2169
+ msgid "The file size and date of the GeoIP database."
2170
+ msgstr ""
2171
+
2172
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
2173
+ msgid "browscap.ini File"
2174
+ msgstr ""
2175
+
2176
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
2177
+ msgid "browscap.ini file does not exist."
2178
+ msgstr ""
2179
+
2180
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
2181
+ msgid "The file size and date of the browscap.ini file."
2182
+ msgstr ""
2183
+
2184
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
2185
+ msgid "browscap Cache File"
2186
+ msgstr ""
2187
+
2188
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
2189
+ msgid "browscap cache file does not exist."
2190
+ msgstr ""
2191
+
2192
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
2193
+ msgid "The file size and date of the browscap cache file."
2194
+ msgstr ""
2195
+
2196
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
2197
+ msgid "Client Info"
2198
+ msgstr ""
2199
+
2200
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
2201
+ msgid "Client IP"
2202
+ msgstr ""
2203
+
2204
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
2205
+ msgid "The client IP address."
2206
+ msgstr ""
2207
+
2208
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
2209
+ msgid "User Agent"
2210
+ msgstr ""
2211
+
2212
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2213
+ msgid "The client user agent string."
2214
+ msgstr ""
2215
+
2216
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2217
+ msgid "Browser"
2218
+ msgstr ""
2219
+
2220
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2221
+ msgid "The detected client browser."
2222
+ msgstr ""
2223
+
2224
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2225
+ msgid "The detected client browser version."
2226
+ msgstr ""
2227
+
2228
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2229
+ msgid "The detected client platform."
2230
+ msgstr ""
2231
+
2232
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2233
+ msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2234
+ msgstr ""
2235
+
2236
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2237
+ msgid "GeoIP Options"
2238
+ msgstr ""
2239
+
2240
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2241
+ msgid "Updates any unknown location data in the database, this may take a while"
2242
+ msgstr ""
2243
+
2244
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2245
+ #: wp-statistics/includes/settings/tabs/wps-general.php:66
2246
+ msgid "IP Addresses"
2247
+ msgstr ""
2248
+
2249
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2250
+ #: wp-statistics/includes/settings/tabs/wps-general.php:71
2251
+ msgid "Hash IP Addresses"
2252
+ msgstr ""
2253
+
2254
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2255
+ 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"
2256
+ msgstr ""
2257
+
2258
+ #: wp-statistics/includes/optimization/wps-optimization.php:43
2259
+ msgid "IP Addresses replaced with hash values."
2260
+ msgstr ""
2261
+
2262
+ #: wp-statistics/includes/optimization/wps-optimization.php:51
2263
+ msgid "Install routine complete."
2264
+ msgstr ""
2265
+
2266
+ #: wp-statistics/includes/optimization/wps-optimization.php:234
2267
+ msgid "Resources/Information"
2268
+ msgstr ""
2269
+
2270
+ #: wp-statistics/includes/optimization/wps-optimization.php:236
2271
+ msgid "Purging"
2272
+ msgstr ""
2273
+
2274
+ #: wp-statistics/includes/optimization/wps-optimization.php:237
2275
+ msgid "Database"
2276
+ msgstr ""
2277
+
2278
+ #: wp-statistics/includes/optimization/wps-optimization.php:238
2279
+ msgid "Updates"
2280
+ msgstr ""
2281
+
2282
+ #: wp-statistics/includes/optimization/wps-optimization.php:239
2283
+ msgid "Historical"
2284
+ msgstr ""
2285
+
2286
+ #: wp-statistics/includes/settings/tabs/wps-about.php:8
2287
+ msgid "WP Statistics V%s"
2288
+ msgstr ""
2289
+
2290
+ #: wp-statistics/includes/settings/tabs/wps-about.php:28
2291
+ msgid "Visit Us Online"
2292
+ msgstr ""
2293
+
2294
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2295
+ msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2296
+ msgstr ""
2297
+
2298
+ #: wp-statistics/includes/settings/tabs/wps-about.php:32
2299
+ msgid "website"
2300
+ msgstr ""
2301
+
2302
+ #: wp-statistics/includes/settings/tabs/wps-about.php:36
2303
+ msgid "Rate and Review at WordPress.org"
2304
+ msgstr ""
2305
+
2306
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2307
+ msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2308
+ msgstr ""
2309
+
2310
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2311
+ msgid "rating and review"
2312
+ msgstr ""
2313
+
2314
+ #: wp-statistics/includes/settings/tabs/wps-about.php:40
2315
+ msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2316
+ msgstr ""
2317
+
2318
+ #: wp-statistics/includes/settings/tabs/wps-about.php:44
2319
+ msgid "Translations"
2320
+ msgstr ""
2321
+
2322
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2323
+ msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2324
+ msgstr ""
2325
+
2326
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2327
+ msgid "translation collaboration site"
2328
+ msgstr ""
2329
+
2330
+ #: wp-statistics/includes/settings/tabs/wps-about.php:48
2331
+ msgid "drop us a line"
2332
+ msgstr ""
2333
+
2334
+ #: wp-statistics/includes/settings/tabs/wps-about.php:52
2335
+ msgid "Support"
2336
+ msgstr ""
2337
+
2338
+ #: wp-statistics/includes/settings/tabs/wps-about.php:57
2339
+ 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:"
2340
+ msgstr ""
2341
+
2342
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2343
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2344
+ msgid "Have you read the %s?"
2345
+ msgstr ""
2346
+
2347
+ #: wp-statistics/includes/settings/tabs/wps-about.php:60
2348
+ msgid "FAQs"
2349
+ msgstr ""
2350
+
2351
+ #: wp-statistics/includes/settings/tabs/wps-about.php:61
2352
+ msgid "manual"
2353
+ msgstr ""
2354
+
2355
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2356
+ msgid "Have you search the %s for a similar issue?"
2357
+ msgstr ""
2358
+
2359
+ #: wp-statistics/includes/settings/tabs/wps-about.php:62
2360
+ msgid "support forum"
2361
+ msgstr ""
2362
+
2363
+ #: wp-statistics/includes/settings/tabs/wps-about.php:63
2364
+ msgid "Have you search the Internet for any error messages you are receiving?"
2365
+ msgstr ""
2366
+
2367
+ #: wp-statistics/includes/settings/tabs/wps-about.php:64
2368
+ msgid "Make sure you have access to your PHP error logs."
2369
+ msgstr ""
2370
+
2371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:67
2372
+ msgid "And a few things to double-check:"
2373
+ msgstr ""
2374
+
2375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:70
2376
+ msgid "How's your memory_limit in php.ini?"
2377
+ msgstr ""
2378
+
2379
+ #: wp-statistics/includes/settings/tabs/wps-about.php:71
2380
+ msgid "Have you tried disabling any other plugins you may have installed?"
2381
+ msgstr ""
2382
+
2383
+ #: wp-statistics/includes/settings/tabs/wps-about.php:72
2384
+ msgid "Have you tried using the default WordPress theme?"
2385
+ msgstr ""
2386
+
2387
+ #: wp-statistics/includes/settings/tabs/wps-about.php:73
2388
+ msgid "Have you double checked the plugin settings?"
2389
+ msgstr ""
2390
+
2391
+ #: wp-statistics/includes/settings/tabs/wps-about.php:74
2392
+ msgid "Do you have all the required PHP extensions installed?"
2393
+ msgstr ""
2394
+
2395
+ #: wp-statistics/includes/settings/tabs/wps-about.php:75
2396
+ msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2397
+ msgstr ""
2398
+
2399
+ #: wp-statistics/includes/settings/tabs/wps-about.php:76
2400
+ msgid "Have you checked your PHP and web server error logs?"
2401
+ msgstr ""
2402
+
2403
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2404
+ msgid "Still not having any luck?"
2405
+ msgstr ""
2406
+
2407
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2408
+ msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2409
+ msgstr ""
2410
+
2411
+ #: wp-statistics/includes/settings/tabs/wps-about.php:79
2412
+ msgid "WordPress.org support forum"
2413
+ msgstr ""
2414
+
2415
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2416
+ msgid "Alternatively %s support is available as well."
2417
+ msgstr ""
2418
+
2419
+ #: wp-statistics/includes/settings/tabs/wps-about.php:83
2420
+ msgid "Farsi"
2421
+ msgstr ""
2422
+
2423
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
2424
+ msgid "WP Statistics Honey Pot Page"
2425
+ msgstr ""
2426
+
2427
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
2428
+ msgid "This is the honey pot for WP Statistics to use, do not delete."
2429
+ msgstr ""
2430
+
2431
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:23
2432
+ #: wp-statistics/includes/settings/wps-settings.php:103
2433
+ msgid "Access Levels"
2434
+ msgstr ""
2435
+
2436
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:52
2437
+ msgid "Required user level to view WP Statistics"
2438
+ msgstr ""
2439
+
2440
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:67
2441
+ msgid "Required user level to manage WP Statistics"
2442
+ msgstr ""
2443
+
2444
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2445
+ msgid "See the %s for details on capability levels."
2446
+ msgstr ""
2447
+
2448
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:75
2449
+ msgid "WordPress Roles and Capabilities page"
2450
+ msgstr ""
2451
+
2452
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:76
2453
+ msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2454
+ msgstr ""
2455
+
2456
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:77
2457
+ msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2458
+ msgstr ""
2459
+
2460
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:78
2461
+ msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2462
+ msgstr ""
2463
+
2464
+ #: wp-statistics/includes/log/exclusions.php:197
2465
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
2466
+ #: wp-statistics/includes/settings/wps-settings.php:104
2467
+ #: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:513
2468
+ msgid "Exclusions"
2469
+ msgstr ""
2470
+
2471
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
2472
+ msgid "Record exclusions"
2473
+ msgstr ""
2474
+
2475
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
2476
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
2477
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
2478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
2479
+ msgid "Enable"
2480
+ msgstr ""
2481
+
2482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
2483
+ 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."
2484
+ msgstr ""
2485
+
2486
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
2487
+ msgid "Exclude User Roles"
2488
+ msgstr ""
2489
+
2490
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
2491
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
2492
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
2493
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
2494
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
2495
+ msgid "Exclude"
2496
+ msgstr ""
2497
+
2498
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
2499
+ msgid "Exclude %s role from data collection."
2500
+ msgstr ""
2501
+
2502
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
2503
+ msgid "IP/Robot Exclusions"
2504
+ msgstr ""
2505
+
2506
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
2507
+ msgid "Robot list"
2508
+ msgstr ""
2509
+
2510
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
2511
+ 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."
2512
+ msgstr ""
2513
+
2514
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
2515
+ msgid "Reset to Default"
2516
+ msgstr ""
2517
+
2518
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
2519
+ msgid "Force robot list update after upgrades"
2520
+ msgstr ""
2521
+
2522
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
2523
+ 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."
2524
+ msgstr ""
2525
+
2526
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
2527
+ msgid "Robot visit threshold"
2528
+ msgstr ""
2529
+
2530
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
2531
+ msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2532
+ msgstr ""
2533
+
2534
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
2535
+ msgid "Excluded IP address list"
2536
+ msgstr ""
2537
+
2538
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
2539
+ msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2540
+ msgstr ""
2541
+
2542
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
2543
+ msgid "Add 10.0.0.0"
2544
+ msgstr ""
2545
+
2546
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
2547
+ msgid "Add 172.16.0.0"
2548
+ msgstr ""
2549
+
2550
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
2551
+ msgid "Add 192.168.0.0"
2552
+ msgstr ""
2553
+
2554
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
2555
+ msgid "Use honey pot"
2556
+ msgstr ""
2557
+
2558
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
2559
+ msgid "Use a honey pot page to identify robots."
2560
+ msgstr ""
2561
+
2562
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
2563
+ msgid "Honey pot post id"
2564
+ msgstr ""
2565
+
2566
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
2567
+ msgid "The post id to use for the honeypot page."
2568
+ msgstr ""
2569
+
2570
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
2571
+ msgid "Create a new honey pot page"
2572
+ msgstr ""
2573
+
2574
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
2575
+ msgid "GeoIP Exclusions"
2576
+ msgstr ""
2577
+
2578
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
2579
+ msgid "Excluded countries list"
2580
+ msgstr ""
2581
+
2582
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
2583
+ 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."
2584
+ msgstr ""
2585
+
2586
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
2587
+ msgid "Included countries list"
2588
+ msgstr ""
2589
+
2590
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
2591
+ 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."
2592
+ msgstr ""
2593
+
2594
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
2595
+ msgid "Host Exclusions"
2596
+ msgstr ""
2597
+
2598
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
2599
+ msgid "Excluded hosts list"
2600
+ msgstr ""
2601
+
2602
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
2603
+ msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2604
+ msgstr ""
2605
+
2606
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
2607
+ 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."
2608
+ msgstr ""
2609
+
2610
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
2611
+ msgid "Site URL Exclusions"
2612
+ msgstr ""
2613
+
2614
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
2615
+ msgid "Excluded login page"
2616
+ msgstr ""
2617
+
2618
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
2619
+ msgid "Exclude the login page for registering as a hit."
2620
+ msgstr ""
2621
+
2622
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
2623
+ msgid "Excluded admin pages"
2624
+ msgstr ""
2625
+
2626
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
2627
+ msgid "Exclude the admin pages for registering as a hit."
2628
+ msgstr ""
2629
+
2630
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
2631
+ msgid "Excluded RSS feeds"
2632
+ msgstr ""
2633
+
2634
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
2635
+ msgid "Exclude the RSS feeds for registering as a hit."
2636
+ msgstr ""
2637
+
2638
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:162
2639
+ msgid "browscap settings"
2640
+ msgstr ""
2641
+
2642
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:167
2643
+ msgid "browscap usage"
2644
+ msgstr ""
2645
+
2646
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:52
2647
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:76
2648
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:109
2649
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:172
2650
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:196
2651
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:236
2652
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:260
2653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:76
2654
+ #: wp-statistics/includes/settings/tabs/wps-general.php:92
2655
+ #: wp-statistics/includes/settings/tabs/wps-general.php:116
2656
+ #: wp-statistics/includes/settings/tabs/wps-general.php:132
2657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:148
2658
+ #: wp-statistics/includes/settings/tabs/wps-general.php:160
2659
+ #: wp-statistics/includes/settings/tabs/wps-general.php:187
2660
+ #: wp-statistics/includes/settings/tabs/wps-general.php:199
2661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:214
2662
+ #: wp-statistics/includes/settings/tabs/wps-general.php:228
2663
+ #: wp-statistics/includes/settings/tabs/wps-general.php:258
2664
+ #: wp-statistics/includes/settings/tabs/wps-general.php:270
2665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:286
2666
+ #: wp-statistics/includes/settings/tabs/wps-general.php:325
2667
+ #: wp-statistics/includes/settings/tabs/wps-general.php:341
2668
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
2669
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
2670
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:69
2671
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:81
2672
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:93
2673
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:105
2674
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:121
2675
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
2676
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
2677
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:94
2678
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:106
2679
+ msgid "Active"
2680
+ msgstr ""
2681
+
2682
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:173
2683
+ msgid "The browscap database will be downloaded and used to detect robots."
2684
+ msgstr ""
2685
+
2686
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:179
2687
+ msgid "Update browscap Info"
2688
+ msgstr ""
2689
+
2690
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:184
2691
+ msgid "Download browscap Database"
2692
+ msgstr ""
2693
+
2694
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:65
2695
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:185
2696
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:249
2697
+ msgid "Save changes on this page to download the update."
2698
+ msgstr ""
2699
+
2700
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:191
2701
+ msgid "Schedule weekly update of browscap DB"
2702
+ msgstr ""
2703
+
2704
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:79
2705
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:199
2706
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:263
2707
+ msgid "Next update will be"
2708
+ msgstr ""
2709
+
2710
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:215
2711
+ msgid "Download of the browscap database will be scheduled for once a week."
2712
+ msgstr ""
2713
+
2714
+ #: wp-statistics/includes/settings/tabs/wps-general.php:50
2715
+ msgid "This will delete the manual when you save the settings, are you sure?"
2716
+ msgstr ""
2717
+
2718
+ #: wp-statistics/includes/settings/tabs/wps-general.php:77
2719
+ 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."
2720
+ msgstr ""
2721
+
2722
+ #: wp-statistics/includes/settings/tabs/wps-general.php:82
2723
+ #: wp-statistics/shortcode.php:138
2724
+ msgid "Users Online"
2725
+ msgstr ""
2726
+
2727
+ #: wp-statistics/includes/settings/tabs/wps-general.php:87
2728
+ msgid "User online"
2729
+ msgstr ""
languages/wp_statistics-de_DE.mo CHANGED
Binary file
languages/wp_statistics-de_DE.po CHANGED
@@ -7,2624 +7,2723 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-beta\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
- #: wp-statistics.php:95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "&#151; You are running an unsupported version of PHP."
15
  msgstr ""
16
 
17
- #: wp-statistics.php:95
18
  msgid "WP Statistics Disabled"
19
  msgstr ""
20
 
21
- #: wp-statistics.php:99
22
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
23
  msgstr ""
24
 
25
- #: wp-statistics.php:101
26
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
27
  msgstr ""
28
 
29
- #: ajax.php:281
30
  msgid "ERROR: Widget not found!"
31
  msgstr ""
32
 
33
- #: dashboard.php:103 includes/log/log.php:13
 
34
  msgid "Loading..."
35
  msgstr ""
36
 
37
- #: dashboard.php:121 includes/log/log.php:2
 
38
  msgid "Reloading..."
39
  msgstr ""
40
 
41
- #: includes/log/top-visitors.php:41 wp-statistics.php:447
 
42
  msgid "Top Visitors"
43
  msgstr ""
44
 
45
- #: wp-statistics.php:206
46
  msgid "optimization page"
47
  msgstr "Einstellungen"
48
 
49
- #: includes/settings/tabs/wps-maintenance.php:35
50
- #: includes/settings/tabs/wps-maintenance.php:63
51
  msgid "Enabled"
52
  msgstr "Aktiviert"
53
 
54
- #: includes/settings/tabs/wps-maintenance.php:30
55
  msgid "Purge Old Data Daily"
56
  msgstr "Alte Daten täglich löschen"
57
 
58
- #: includes/settings/tabs/wps-maintenance.php:41
59
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
60
  msgstr "Ein WordPress Cron-Job wird täglich ausgeführt, um Daten zu löschen die älter sind als die nachfolgend angegebene Anzahl an Tagen."
61
 
62
- #: includes/settings/tabs/wps-maintenance.php:47
63
  msgid "Purge data older than"
64
  msgstr "Lösche Daten älter als"
65
 
66
- #: includes/settings/tabs/wps-maintenance.php:58
67
  msgid "Purge High Hit Count Visitors Daily"
68
  msgstr "Hohe Aufrufe täglich löschen"
69
 
70
- #: includes/settings/tabs/wps-maintenance.php:69
71
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
72
  msgstr "Ein WordPress Cron-Job wird täglich ausgeführt, um Daten von Besuchern zu löschen die mehr Aufrufe pro Tag aufweisen als nachfolgend angegeben (eventuelle Robots)."
73
 
74
- #: includes/settings/tabs/wps-maintenance.php:81
75
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
76
  msgstr "Anzahl der Aufrufe (pro Tag), um als vermeintlicher Robot eingestuft zu werden. Minimum-Wert ist 10 Aufrufe. Ungültige Werte deaktivieren die automatisierte tägliche Wartung."
77
 
78
- #: shortcode.php:184
79
  msgid "The post/page id to get page statistics on."
80
  msgstr "Statistiken dieser Beitrags- / Seiten-ID anzeigen"
81
 
82
- #: shortcode.php:181
83
  msgid "Post/Page ID"
84
  msgstr "Beitrags- / Seiten-ID"
85
 
86
- #: includes/functions/functions.php:424
87
  msgid "Ask.com"
88
  msgstr "Ask.com"
89
 
90
- #: shortcode.php:158
91
  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."
92
  msgstr "Statistik für diesen Zeitraum anzeigen; strtotime() (http://php.net/manual/en/datetime.formats.php) wird verwendet, um sie zu berechnen. Verwenden Sie &quot;total&quot;, um alle aufgezeichneten Daten zu bekommen."
93
 
94
- #: wp-statistics.php:180
95
  msgid "visitor tracking"
96
  msgstr "Besucher-Tracking"
97
 
98
- #: wp-statistics.php:181
99
  msgid "geoip collection"
100
  msgstr "GeoIP-Aufzeichnung"
101
 
102
- #: wp-statistics.php:197
103
  msgid "visit database index"
104
  msgstr "Index der Aufrufe-Tabelle"
105
 
106
- #: wp-statistics.php:206
107
  msgid "Database updates are required, please go to %s and update the following: %s"
108
  msgstr "Eine Datenbank-Aktualisierung ist notwendig, bitte geh zu %s und führe folgende Aktionen durch: %s"
109
 
110
- #: wp-statistics.php:197
111
  msgid "countries database index"
112
  msgstr "Index der Länder-Tabelle"
113
 
114
- #: wp-statistics.php:190
115
  msgid "search table"
116
  msgstr "Tabelle für Suchanfragen"
117
 
118
- #: wp-statistics.php:184
119
  msgid "settings page"
120
  msgstr "Einstellungen"
121
 
122
- #: wp-statistics.php:184 wp-statistics.php:206
123
  msgid ","
124
  msgstr ","
125
 
126
- #: wp-statistics.php:184
127
  msgid "The following features are disabled, please go to %s and enable them: %s"
128
  msgstr "Die folgenden Funktionen sind deaktiviert, bitte gehen zur %s und aktiviere sie: %s"
129
 
130
- #: wp-statistics.php:179
131
  msgid "hit tracking"
132
  msgstr "Aufrufe-Tracking"
133
 
134
- #: wp-statistics.php:178
135
  msgid "online user tracking"
136
  msgstr "Online-User-Tracking"
137
 
138
- #: wp-statistics.php:775
139
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
140
  msgstr "Die folgenden Plugin-Tabellen existieren nicht in der Datenbank. Bitte führe die %s-Installationsroutine erneut durch %s: "
141
 
142
- #: includes/optimization/wps-optimization.php:196
143
  msgid "Search table conversion complete, %d rows added."
144
  msgstr "Konvertierung der Tabelle für Suchanfragen durchgeführt - %d Zeilen hinzugefügt."
145
 
146
- #: includes/optimization/tabs/wps-optimization-database.php:113
147
  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."
148
  msgstr "Bei älteren Versionen von WP Statistics werden detaillierte Informationen zu Suchanfragen in der Besucher-Tabelle gespeichert. Das kann bei großen Datensätzen zu Leistungseinbußen führen. Daher wurde eine neue Tabelle implementiert, die diese Informationen in einem besser skalierbaren Format enthält."
149
 
150
- #: includes/optimization/tabs/wps-optimization-database.php:94
151
  msgid "Search Table"
152
  msgstr "Tabelle für Suchanfragen"
153
 
154
- #: includes/optimization/tabs/wps-optimization-database.php:99
155
  msgid "Convert"
156
  msgstr "Konvertieren"
157
 
158
- #: includes/optimization/tabs/wps-optimization-database.php:106
159
  msgid "Convert Now!"
160
  msgstr "Jetzt konvertieren"
161
 
162
- #: includes/optimization/tabs/wps-optimization-database.php:107
163
  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."
164
  msgstr "Bei älteren Versionen von WP Statistics werden detaillierte Informationen zu Suchanfragen in der Besucher-Tabelle gespeichert. Das kann bei großen Datensätzen zu Leistungseinbußen führen. Daher wurde eine neue Tabelle implementiert, die diese Informationen in einem besser skalierbaren Format enthält. Die alten Daten müssen dafür jedoch konvertiert werden, bevor sie verwendet werden können."
165
 
166
- #: includes/log/exclusions.php:24
167
  msgid "Referrer Spam"
168
  msgstr "Referrer Spam"
169
 
170
- #: includes/settings/tabs/wps-externals.php:279
171
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
172
  msgstr "Die Aktualisierung der \"Piwik Referrer Spam\"-Blacklist wird ein Mal wöchentlich durchgeführt."
173
 
174
- #: includes/settings/wps-settings.php:105
175
  msgid "Externals"
176
  msgstr "Externe Quellen"
177
 
178
- #: includes/settings/tabs/wps-externals.php:220
179
  msgid "Piwik Referrer Spam Blacklist settings"
180
  msgstr "\"Piwik Referrer Spam\" Blacklist-Einstellungen"
181
 
182
- #: includes/settings/tabs/wps-externals.php:255
183
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
184
  msgstr "Automat. Aktualisierung der \"Piwik Referrer Spam\" Blacklist"
185
 
186
- #: includes/settings/tabs/wps-externals.php:248
187
  msgid "Download Piwik Referrer Spam Blacklist Database"
188
  msgstr "\"Piwik Referrer Spam\" Blacklist herunterladen"
189
 
190
- #: includes/settings/tabs/wps-externals.php:243
191
  msgid "Update Piwik Referrer Spam Blacklist Info"
192
  msgstr "\"Piwik Referrer Spam\" Blacklist aktualisieren"
193
 
194
- #: includes/settings/tabs/wps-externals.php:237
195
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
196
  msgstr "Die \"Piwik Referrer Spam\" Blacklist wird heruntergeladen und zur Erkennung von Referrer Spam verwendet."
197
 
198
- #: includes/settings/tabs/wps-externals.php:225
199
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
200
  msgstr "Diese Spam-Blacklist wird von Piwik auf %s zur Verfügung gestellt."
201
 
202
- #: includes/settings/tabs/wps-externals.php:231
203
  msgid "Piwik Referrer Spam Blacklist usage"
204
  msgstr "\"Piwik Referrer Spam\" Blacklist verwenden"
205
 
206
- #: includes/settings/tabs/wps-exclusions.php:148
207
  msgid "Treat corrupt browser info as a bot"
208
  msgstr "Falsche/fehlerhafte Browserkennung berücksichtigen"
209
 
210
- #: includes/log/exclusions.php:24
211
  msgid "404 Pages"
212
  msgstr "404-Fehlerseiten"
213
 
214
- #: includes/log/top-visitors.php:26
215
  msgid "Date"
216
  msgstr "Wähle den gewünschten Tag"
217
 
218
- #: includes/settings/tabs/wps-exclusions.php:151
219
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
220
  msgstr "Behandle Besucher mit einer falschen oder fehlerhaften Browserkennung (fehlende IP-Adresse oder leere User-Agent-Kennung) als Robot."
221
 
222
- #: includes/settings/tabs/wps-exclusions.php:215
223
  msgid "Excluded 404 pages"
224
  msgstr "404-Fehlerseiten"
225
 
226
- #: includes/settings/tabs/wps-exclusions.php:218
227
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
228
  msgstr "Alle Seiten, die einen Fehler-404 erzeugen, von der Statistik ausschließen."
229
 
230
- #: wps-updates.php:29
231
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
232
  msgstr "Fehler beim Erstellen des GeoIP Datenbank-Verzeichnisses. Stelle sicher, dass dein Webserver die Berechtigung zum Erstellen von Verzeichnissen in %s hat."
233
 
234
- #: includes/settings/tabs/wps-general.php:281
235
  msgid "Add page title to empty search words"
236
  msgstr "Seiten-Titel bei leeren Suchanfragen hinzufügen"
237
 
238
- #: includes/settings/tabs/wps-general.php:287
239
  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."
240
  msgstr "Wenn eine Suchmaschine als Referrer identifiziert wird, diese jedoch die vorangegangene Suchanfrage nicht sendet, wird diese Option bei Aktivierung den Seiten-Titel mit einem vorangestellten \"~:\" als Suchanfrage ausweisen. Das kann dabei helfen herauszufinden, wonach der Besucher gesucht haben könnte."
241
 
242
- #: includes/optimization/tabs/wps-optimization-purging.php:218
243
- #: includes/settings/tabs/wps-maintenance.php:75
244
  msgid "Purge visitors with more than"
245
  msgstr "Lösche Besucher mit mehr als"
246
 
247
- #: includes/optimization/tabs/wps-optimization-purging.php:223
248
  msgid "hits"
249
  msgstr "Zugriffen pro Tag"
250
 
251
- #: includes/optimization/tabs/wps-optimization-purging.php:224
252
  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."
253
  msgstr "Daten von Besuchern mit mehr als den hier definierten Zugriffen an einem Tag werden gelöscht. Das kann hilfreich sein, wenn du z.B. Daten nach einer Robot-Attacke löschen willst. Diese Option löscht die entsprechenden Besucher und die mit ihnen verbunden Zugriffe auf deine Website, aktualisiert jedoch nicht die individuellen Seitenaufrufe da diese Daten nicht pro Besucher aufgezeichnet werden. Minimum-Wert ist 10 Zugriffe pro Tag."
254
 
255
- #: includes/functions/purge-hits.php:28
256
  msgid "No visitors found to purge."
257
  msgstr "Keine Besucher zum Löschen gefunden."
258
 
259
- #: includes/functions/purge-hits.php:25
260
  msgid "%s records purged successfully."
261
  msgstr "%s Einträge erfolgreich gelöscht."
262
 
263
- #: ajax.php:178 includes/functions/purge-hits.php:32
 
264
  msgid "Number of hits must be greater than or equal to 10!"
265
  msgstr "Zugriffe muss größer als oder gleich 10 sein!"
266
 
267
- #: shortcode.php:141
268
  msgid "Page Visits"
269
  msgstr "Seitenbesuche"
270
 
271
- #: shortcode.php:144
272
  msgid "Page Count"
273
  msgstr "Seitenanzahl"
274
 
275
- #: shortcode.php:145
276
  msgid "Comment Count"
277
  msgstr "Kommentaranzahl"
278
 
279
- #: shortcode.php:146
280
  msgid "Spam Count"
281
  msgstr "Spam-Anzahl"
282
 
283
- #: shortcode.php:147
284
  msgid "User Count"
285
  msgstr "Benutzeranzahl"
286
 
287
- #: shortcode.php:148
288
  msgid "Post Average"
289
  msgstr ""
290
 
291
- #: shortcode.php:149
292
  msgid "Comment Average"
293
  msgstr ""
294
 
295
- #: shortcode.php:150
296
  msgid "User Average"
297
  msgstr ""
298
 
299
- #: shortcode.php:162
300
  msgid "Search Provider"
301
  msgstr "Suchanbieter"
302
 
303
- #: shortcode.php:165
304
  msgid "The search provider to get statistics on."
305
  msgstr "Statistiken von folgendem Suchanbieter anzeigen."
306
 
307
- #: shortcode.php:169
308
  msgid "Number Format"
309
  msgstr "Zahlenformat"
310
 
311
- #: shortcode.php:172
312
  msgid "The format to display numbers in: i18n, english, none."
313
  msgstr "Das Format, um Zahlen anzuzeigen: i18n, english, none"
314
 
315
- #: shortcode.php:176
316
  msgid "English"
317
  msgstr "Englisch"
318
 
319
- #: shortcode.php:177
320
  msgid "International"
321
  msgstr "International"
322
 
323
- #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
 
324
  msgid "Hits Statistics Summary"
325
  msgstr "Website-Aufrufe - Zusammenfassung"
326
 
327
- #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
 
328
  msgid "Chart Total"
329
  msgstr "Gesamt im gewählten Diagramm-Zeitraum"
330
 
331
- #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
 
332
  msgid "All Time Total"
333
  msgstr "Gesamt seit Statistik-Beginn"
334
 
335
- #: includes/log/log.php:6
336
  msgid "Have you thought about donating to WP Statistics?"
337
  msgstr "Hast du schon über eine Spende für WP Statistics nachgedacht?"
338
 
339
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:429
 
340
  msgid "Donate"
341
  msgstr "Spenden"
342
 
343
- #: includes/settings/tabs/wps-about.php:24
344
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
345
  msgstr "Möchtest du uns zeigen, wieviel Spaß du mit WP Statistics hast? Besuche unsere %s-Seite und unterstütze uns!"
346
 
347
- #: includes/settings/tabs/wps-about.php:24
348
  msgid "donation"
349
  msgstr "Spenden"
350
 
351
- #: includes/log/log.php:6
352
  msgid "Donate Now!"
353
  msgstr "Jetzt spenden!"
354
 
355
- #: includes/log/log.php:6
356
  msgid "Close"
357
  msgstr "Schließen"
358
 
359
- #: shortcode.php:135
360
  msgid "Select the statistic you wish to display."
361
  msgstr "Wähle, welche Statistik angezeigt werden soll."
362
 
363
- #: shortcode.php:132
364
  msgid "Statistic"
365
  msgstr "Statistik"
366
 
367
- #: shortcode.php:143
368
  msgid "Post Count"
369
  msgstr "Beitragszahl"
370
 
371
- #: shortcode.php:155
372
  msgid "Time Frame"
373
  msgstr "Zeitraum"
374
 
375
- #: includes/functions/functions.php:1009
376
  msgid "to"
377
  msgstr "bis"
378
 
379
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
380
  msgid "Go"
381
  msgstr "Los"
382
 
383
- #: includes/log/top-pages.php:95
384
  msgid "Rank #5"
385
  msgstr "Rang #5"
386
 
387
- #: includes/log/top-pages.php:95
388
  msgid "Rank #4"
389
  msgstr "Rang #4"
390
 
391
- #: includes/log/top-pages.php:95
392
  msgid "Rank #3"
393
  msgstr "Rang #3"
394
 
395
- #: includes/log/top-pages.php:95
396
  msgid "Rank #1"
397
  msgstr "Rang #1"
398
 
399
- #: includes/log/top-pages.php:95
400
  msgid "Rank #2"
401
  msgstr "Rang #2"
402
 
403
- #: includes/optimization/tabs/wps-optimization-database.php:60
404
  msgid "Visits Table"
405
  msgstr "Aufrufe"
406
 
407
- #: includes/optimization/tabs/wps-optimization-database.php:75
408
  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."
409
  msgstr "Bei älteren Versionen von WP Statistics können in seltenen Fällen duplizierte Einträge in der Aufrufe-Tabelle entstehen. Neuere Installationen verhindern das mit einem eindeutigen Index für diese Tabelle. Um diesen eindeutigen Index zu erstellen, müssen zuerst die Duplikate entfernt werden - klicke dazu auf \"Jetzt aktualisieren\"."
410
 
411
- #: includes/optimization/tabs/wps-optimization-database.php:76
412
  msgid "This operation could take a long time on installs with many rows in the visits table."
413
  msgstr "Die Durchführung kann bei Installationen mit vielen Zeilen in der Aufrufe-Tabelle länger dauern."
414
 
415
- #: includes/optimization/tabs/wps-optimization-database.php:82
416
  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."
417
  msgstr "Bei älteren Versionen von WP Statistics können in seltenen Fällen duplizierte Einträge in der Aufrufe-Tabelle entstehen. Neuere Installationen verhindern das mit einem eindeutigen Index für diese Tabelle."
418
 
419
- #: includes/log/last-visitor.php:68
420
  msgid "Filtered by"
421
  msgstr "Filtern nach"
422
 
423
- #: includes/functions/functions.php:1002 includes/functions/functions.php:1005
 
424
  msgid "Range"
425
  msgstr "Zeitraum von"
426
 
427
- #: includes/functions/functions.php:1009 includes/log/top-visitors.php:29
 
428
  msgid "MM/DD/YYYY"
429
  msgstr "MM/DD/YYYY"
430
 
431
- #: includes/settings/tabs/wps-general.php:342
432
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
433
  msgstr "Verwende keine Übersetzungen innerhalb des Plugins sondern stattdessen die Englischen Standard-Texte (benötigt zwei Mal ein Neuladen der Seite)."
434
 
435
- #: includes/settings/tabs/wps-general.php:336
436
  msgid "Force English"
437
  msgstr "Englisch erzwingen"
438
 
439
- #: includes/settings/tabs/wps-general.php:331
440
  msgid "Languages"
441
  msgstr "Sprachen"
442
 
443
- #: includes/settings/tabs/wps-exclusions.php:227
444
  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."
445
  msgstr "Hinweis: Diese Option berücksichtigt KEINE Parameter nach einem \"?\" in URLs. Einträge mit weniger als zwei zeichen werden ignoriert."
446
 
447
- #: includes/settings/tabs/wps-exclusions.php:225
448
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
449
  msgstr "Eine Liste an lokalen URLs (z.B. \"/wordpress/about\", eine pro Zeile), die aus der Statistik ausgeschlossen werden sollen."
450
 
451
- #: includes/settings/tabs/wps-exclusions.php:222
452
  msgid "Excluded URLs list"
453
  msgstr "Ausgeschlossene URLs"
454
 
455
- #: includes/log/exclusions.php:24
456
  msgid "Excluded URL"
457
  msgstr "Ausgeschlossene URL"
458
 
459
- #: includes/log/widgets/quickstats.php:52 includes/log/widgets/summary.php:52
 
460
  msgid "Last 365 Days (Year)"
461
  msgstr "In den letzten 365 Tagen"
462
 
463
- #: includes/log/widgets/quickstats.php:46 includes/log/widgets/summary.php:46
 
464
  msgid "Last 30 Days (Month)"
465
  msgstr "In den letzten 30 Tagen"
466
 
467
- #: includes/log/widgets/quickstats.php:40 includes/log/widgets/summary.php:40
 
468
  msgid "Last 7 Days (Week)"
469
  msgstr "In den letzten 7 Tagen"
470
 
471
- #: includes/functions/functions.php:430
472
  msgid "Yahoo!"
473
  msgstr "Yahoo!"
474
 
475
- #: includes/functions/functions.php:431
476
  msgid "Yandex"
477
  msgstr "Yandex"
478
 
479
- #: includes/functions/functions.php:427
480
  msgid "clearch.org"
481
  msgstr "clearch.org"
482
 
483
- #: includes/functions/functions.php:428
484
  msgid "DuckDuckGo"
485
  msgstr "DuckDuckGo"
486
 
487
- #: includes/functions/functions.php:426
488
  msgid "Bing"
489
  msgstr "Bing"
490
 
491
- #: includes/functions/functions.php:425
492
  msgid "Baidu"
493
  msgstr "Baidu"
494
 
495
- #: editor.php:69
496
- msgid "Hits in the last 20 days"
497
- msgstr "Aufrufe in den letzten 20 Tagen"
498
-
499
- #: includes/log/exclusions.php:24
500
  msgid "Feeds"
501
  msgstr "Feeds"
502
 
503
- #: includes/log/exclusions.php:24
504
  msgid "User Role"
505
  msgstr "Benutzer-Rolle"
506
 
507
- #: includes/log/exclusions.php:24
508
  msgid "Login Page"
509
  msgstr "Login-Seite"
510
 
511
- #: includes/log/exclusions.php:24
512
  msgid "Admin Page"
513
  msgstr "Admin-Seite"
514
 
515
- #: includes/log/exclusions.php:24
516
  msgid "Self Referral"
517
  msgstr "Self-Referral"
518
 
519
- #: includes/log/exclusions.php:24
520
  msgid "IP Match"
521
  msgstr "IP-Adresse"
522
 
523
- #: includes/log/exclusions.php:24
524
  msgid "Robot"
525
  msgstr "Robot"
526
 
527
- #: includes/log/online.php:100
528
  msgid "Currently there are no users online in the site."
529
  msgstr "Zurzeit sind keine (anderen) Benutzer online auf deiner Website."
530
 
531
- #: includes/log/exclusions.php:24
532
  msgid "Robot Threshold"
533
  msgstr "Robot-Erkennschwelle"
534
 
535
- #: includes/log/exclusions.php:24
536
  msgid "Honey Pot"
537
  msgstr "Honey Pot"
538
 
539
- #: includes/log/widgets/page.php:8
540
  msgid "Page Trending Stats"
541
  msgstr "Verlauf der Aufrufe"
542
 
543
- #: includes/log/exclusions.php:24
544
  msgid "Hostname"
545
  msgstr "Hostname"
546
 
547
- #: includes/settings/tabs/wps-general.php:93
548
- #: includes/settings/tabs/wps-general.php:133
549
- #: includes/settings/tabs/wps-general.php:149
550
- #: includes/settings/tabs/wps-general.php:188
551
- #: includes/settings/tabs/wps-general.php:200
552
- #: includes/settings/tabs/wps-general.php:229
553
- #: includes/settings/tabs/wps-notifications.php:122
554
  msgid "Enable or disable this feature"
555
  msgstr "Feature aktivieren oder deaktivieren"
556
 
557
- #: includes/settings/tabs/wps-general.php:99
558
  msgid "Check for online users every"
559
  msgstr "Auf neue Besucher überprüfen alle"
560
 
561
- #: includes/settings/tabs/wps-general.php:104
562
  msgid "Second"
563
  msgstr "Sekunden"
564
 
565
- #: includes/settings/tabs/wps-general.php:105
566
  msgid "Time for the check accurate online user in the site. Now: %s Second"
567
  msgstr "Zeit, um auf neue Besucher zu überprüfen. Aktuell: %s Sekunden."
568
 
569
- #: includes/settings/tabs/wps-general.php:111
570
  msgid "Record all user"
571
  msgstr "Alle Besucher aufzeichnen"
572
 
573
- #: includes/settings/tabs/wps-general.php:117
574
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
575
  msgstr "Ignoriert etwaige gesetzte Ausnahmen und zeichnet alle Besucheraktivitäten auf (inkl. Self-Referrals und Robots). Diese Option sollte nur zur Problembehebung aktiviert werden!"
576
 
577
- #: includes/settings/tabs/wps-general.php:155
578
  msgid "Store entire user agent string"
579
  msgstr "Gesamten User Agent-String speichern"
580
 
581
- #: includes/settings/tabs/wps-general.php:161
582
  msgid "Only enabled for debugging"
583
  msgstr "Sollte nur bei Problemen bei der Bestimmung der User Agent-Strings aktiviert werden."
584
 
585
- #: includes/settings/tabs/wps-general.php:167
586
  msgid "Coefficient per visitor"
587
  msgstr "Koeffizient pro Besucher"
588
 
589
- #: includes/settings/tabs/wps-general.php:172
590
  msgid "For each visit to account for several hits. Currently %s."
591
  msgstr "Koeffizient - ein Besucher zählt \"X\" Aufrufe. Aktuell: %s."
592
 
593
- #: includes/settings/tabs/wps-general.php:177
594
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:418
595
- #: wp-statistics.php:516
596
  msgid "Pages"
597
  msgstr "Seitenaufrufe"
598
 
599
- #: includes/settings/tabs/wps-general.php:194
600
  msgid "Track all pages"
601
  msgstr "Alle Seiten (Kategorien, Archive, etc.) berücksichtigen"
602
 
603
- #: includes/settings/tabs/wps-general.php:209
604
  msgid "Strip parameters from URI"
605
  msgstr "Parameter aus URLs entfernen"
606
 
607
- #: includes/settings/tabs/wps-general.php:215
608
  msgid "This will remove anything after the ? in a URL."
609
  msgstr "Diese Option entfernt alle Parameter nach einem \"?\" in URLs."
610
 
611
- #: includes/settings/tabs/wps-general.php:223
612
  msgid "Disable hits column in post/pages list"
613
  msgstr "\"Aufrufe\"-Spalte in Beiträgen/Seiten-Listen im Admin-Bereich deaktivieren"
614
 
615
- #: includes/settings/tabs/wps-general.php:234
616
  msgid "Miscellaneous"
617
  msgstr "Sonstige Einstellungen"
618
 
619
- #: includes/settings/tabs/wps-general.php:239
620
  msgid "Show stats in menu bar"
621
  msgstr "Statistiken in der Menüleiste anzeigen"
622
 
623
- #: includes/settings/tabs/wps-general.php:244
624
  msgid "No"
625
  msgstr "Nein"
626
 
627
- #: includes/settings/tabs/wps-general.php:245
628
  msgid "Yes"
629
  msgstr "Ja"
630
 
631
- #: includes/settings/tabs/wps-general.php:247
632
  msgid "Show stats in admin menu bar"
633
  msgstr "Zeige Statistiken in der Admin-Menüleiste"
634
 
635
- #: includes/settings/tabs/wps-general.php:253
636
  msgid "Hide admin notices about non active features"
637
  msgstr "Benachrichtigungen im Admin-Bereich verstecken"
638
 
639
- #: includes/settings/tabs/wps-general.php:259
640
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
641
  msgstr "WP Statistics zeigt standardmäßig eine Benachrichtigung auf allen Admin-Seiten an, wenn eines der Basis-Features deaktiviert ist. Diese Option schaltet diese Benachrichtigungen aus."
642
 
643
- #: includes/settings/tabs/wps-general.php:265
644
  msgid "Delete the manual"
645
  msgstr "Benutzerdokumentation löschen"
646
 
647
- #: includes/settings/tabs/wps-general.php:271
648
  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."
649
  msgstr "WP Statistics speichert standardmäßig die Benutzerdokumentation im Plugin-Verzeichnis (ca. 5 MB). Diese Option löscht diese Dateien."
650
 
651
- #: includes/settings/tabs/wps-general.php:276
652
  msgid "Search Engines"
653
  msgstr "Suchmaschinen"
654
 
655
- #: includes/settings/tabs/wps-general.php:293
656
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
657
  msgstr "Es ist nicht erlaubt, alle Suchmaschinen zu deaktivieren. Wenn hier alle Suchmaschinen deaktiviert werden, ignoriert WP Statistics diese Einstellung."
658
 
659
- #: includes/settings/tabs/wps-general.php:308
660
  msgid "disable"
661
  msgstr "Deaktivieren"
662
 
663
- #: includes/settings/tabs/wps-general.php:309
664
  msgid "Disable %s from data collection and reporting."
665
  msgstr "Daten von %s aus der Statistik ausschließen."
666
 
667
- #: includes/settings/tabs/wps-general.php:315
668
  msgid "Charts"
669
  msgstr "Diagramme"
670
 
671
- #: includes/settings/tabs/wps-general.php:320
672
  msgid "Include totals"
673
  msgstr "Gesamt-Zähler zeigen"
674
 
675
- #: includes/settings/tabs/wps-general.php:326
676
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
677
  msgstr "Zeige eine Linie mit dem Gesamt-Zähler in Diagrammen mit mehreren Verläufen."
678
 
679
- #: includes/settings/tabs/wps-externals.php:32
680
  msgid "GeoIP settings"
681
  msgstr "GeoIP-Einstellungen"
682
 
683
- #: includes/settings/tabs/wps-externals.php:37
684
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
685
  msgstr "IP-Standorbestimmung mittels GeoLite2, zur Verfügung gestellt von MaxMind - %s."
686
 
687
- #: includes/settings/tabs/wps-externals.php:47
688
  msgid "GeoIP collection"
689
  msgstr "GeoIP verwenden"
690
 
691
- #: includes/settings/tabs/wps-externals.php:53
692
  msgid "For get more information and location (country) from visitor, enable this feature."
693
  msgstr "Wenn aktiviert, ermittelt WP Statistics Standort-Informationen (zumindest das Land) aus der IP-Adresse der Besucher."
694
 
695
- #: includes/settings/tabs/wps-externals.php:59
696
  msgid "Update GeoIP Info"
697
  msgstr "GeoIP aktualisieren"
698
 
699
- #: includes/settings/tabs/wps-externals.php:64
700
  msgid "Download GeoIP Database"
701
  msgstr "GeoIP-Datenbank herunterladen"
702
 
703
- #: includes/settings/tabs/wps-externals.php:71
704
  msgid "Schedule monthly update of GeoIP DB"
705
  msgstr "Automat. Aktualisierung von GeoIP"
706
 
707
- #: includes/settings/tabs/wps-externals.php:97
708
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
709
  msgstr "Die Aktualisierung der GeoIP-Datenbank wird monatlich zwei Tage nach dem ersten Dienstag durchgeführt."
710
 
711
- #: includes/settings/tabs/wps-externals.php:98
712
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
713
  msgstr "Diese Option lädt die GeoIP-Datenbank auch dann herunter, wenn die Dateigröße der lokalen Datenbank kleiner als 1 kB ist (was in den meisten Fällen bedeutet, dass die Datei bisher noch nicht heruntergeladen wurde)."
714
 
715
- #: includes/settings/tabs/wps-externals.php:104
716
  msgid "Populate missing GeoIP after update of GeoIP DB"
717
  msgstr "Fehlende GeoIP-Daten nach Aktualisierung einpflegen"
718
 
719
- #: includes/settings/tabs/wps-externals.php:110
720
  msgid "Update any missing GeoIP data after downloading a new database."
721
  msgstr "Aktualisiert alle fehlenden GeoIP-Daten nachdem eine neue GeoIP-Datenbank herunter geladen wurde."
722
 
723
- #: includes/settings/tabs/wps-externals.php:116
724
  msgid "Country code for private IP addresses"
725
  msgstr "Länderkennung für private IP-Adressen"
726
 
727
- #: includes/settings/tabs/wps-externals.php:121
728
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
729
  msgstr "Die internationale Standard-Länderkennung (zwei Buchstaben, z.B. US = United States, CA = Canada, etc.) für private, nicht-routbare IP-Adressen wie 10.0.0.1, 192.158.1.1, 127.0.0.1 usw. Verwende \"000\" (drei Nullen), um private IP-Adressen als \"unbekannt\" zu definieren."
730
 
731
- #: includes/settings/tabs/wps-externals.php:132
732
  msgid "GeoIP collection is disabled due to the following reasons:"
733
  msgstr "Die GeoIP-Funktion ist aus den folgenden Gründen deaktiviert:"
734
 
735
- #: includes/settings/tabs/wps-externals.php:135
736
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
737
  msgstr "GeoIP benötigt die PHP-Version %s oder höher, die installierte PHP-Version ist "
738
 
739
- #: includes/settings/tabs/wps-externals.php:140
740
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
741
  msgstr "GeoIP benötigt die cURL PHP-Erweiterung, die mit deiner PHP Version nicht geladen wird!"
742
 
743
- #: includes/settings/tabs/wps-externals.php:146
744
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
745
  msgstr "GeoIP benötigt die BC Math PHP-Erweiterung, die mit deiner PHP Version nicht geladen wird!"
746
 
747
- #: includes/settings/tabs/wps-externals.php:152
748
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
749
  msgstr "PHP Safe Mode wurde erkannt! GeoIP funktioniert mit aktiviertem PHP Safe Mode nicht!"
750
 
751
- #: includes/settings/tabs/wps-maintenance.php:20
752
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
753
  msgstr "Diese Einstellung löscht täglich Daten aus der Datenbank. Bist du sicher, dass du diese Option aktivieren willst?"
754
 
755
- #: includes/settings/tabs/wps-maintenance.php:52
756
  msgid "Days"
757
  msgstr "Tage"
758
 
759
- #: includes/settings/tabs/wps-maintenance.php:53
760
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
761
  msgstr "Anzahl der Tage, für die die Statistik-Daten gespeichert werden sollen. Minimum-Wert ist 30 Tage, ungültige Werte deaktivieren die automatisierte tägliche Wartung."
762
 
763
- #: includes/settings/tabs/wps-notifications.php:44
764
  msgid "Common Report Options"
765
  msgstr "Allgemeine Einstellungen"
766
 
767
- #: includes/settings/tabs/wps-notifications.php:49
768
  msgid "E-mail addresses"
769
  msgstr "E-Mail-Adressen"
770
 
771
- #: includes/settings/tabs/wps-notifications.php:54
772
  msgid "A comma separated list of e-mail addresses to send reports to."
773
  msgstr "Komma-getrennte Liste an E-Mail-Adressen, an die Benachrichtigungen versendet werden sollen."
774
 
775
- #: includes/settings/tabs/wps-notifications.php:59
776
  msgid "Update Reports"
777
  msgstr "Update-Benachrichtigungen"
778
 
779
- #: includes/log/exclusions.php:24
780
- #: includes/settings/tabs/wps-notifications.php:64
781
  msgid "Browscap"
782
  msgstr "browscap.ini"
783
 
784
- #: includes/settings/tabs/wps-notifications.php:70
785
  msgid "Send a report whenever the browscap.ini is updated."
786
  msgstr "Bei Update der \"browscap.ini\"-Datei benachrichtigen"
787
 
788
- #: includes/log/exclusions.php:24
789
- #: includes/settings/tabs/wps-notifications.php:76
790
  msgid "GeoIP"
791
  msgstr "GeoIP"
792
 
793
- #: includes/settings/tabs/wps-notifications.php:82
794
  msgid "Send a report whenever the GeoIP database is updated."
795
  msgstr "Bei Update der GeoIP-Datenbank benachrichtigen"
796
 
797
- #: includes/settings/tabs/wps-notifications.php:88
798
  msgid "Pruning"
799
  msgstr "DB-Bereinigung"
800
 
801
- #: includes/settings/tabs/wps-notifications.php:94
802
  msgid "Send a report whenever the pruning of database is run."
803
  msgstr "Bei Datenbank-Bereinigung benachrichtigen"
804
 
805
- #: includes/settings/tabs/wps-notifications.php:100
806
  msgid "Upgrade"
807
  msgstr "Plugin-Update"
808
 
809
- #: includes/settings/tabs/wps-notifications.php:106
810
  msgid "Send a report whenever the plugin is upgraded."
811
  msgstr "Bei Update des Plugins benachrichtigen"
812
 
813
- #: includes/settings/tabs/wps-notifications.php:111
814
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
 
815
  msgid "Statistical reporting"
816
  msgstr "Statistik-Reports"
817
 
818
- #: includes/settings/tabs/wps-notifications.php:129
819
  msgid "Schedule"
820
  msgstr "Zeitplan"
821
 
822
- #: includes/settings/tabs/wps-notifications.php:153
823
  msgid "Select how often to receive statistical report."
824
  msgstr "Wähle, wie oft ein Statistik-Report versendet werden soll."
825
 
826
- #: includes/settings/tabs/wps-notifications.php:159
827
  msgid "Send reports via"
828
  msgstr "Reports senden via"
829
 
830
- #: includes/settings/tabs/wps-notifications.php:165
831
  msgid "Email"
832
  msgstr "E-Mail"
833
 
834
- #: includes/settings/tabs/wps-notifications.php:167
835
  msgid "SMS"
836
  msgstr "SMS"
837
 
838
- #: includes/settings/tabs/wps-notifications.php:170
839
  msgid "Select delivery method for statistical report."
840
  msgstr "Wähle die Art der Statistik-Reports."
841
 
842
- #: includes/settings/tabs/wps-notifications.php:173
843
  msgid "Note: To send SMS text messages please install the %s plugin."
844
  msgstr "Hinweis: Um Statistik-Reports per SMS versenden zu können, muss das Plugin %s installiert werden."
845
 
846
- #: includes/settings/tabs/wps-notifications.php:173
847
  msgid "WordPress SMS"
848
  msgstr "WordPress SMS"
849
 
850
- #: includes/settings/tabs/wps-notifications.php:180
851
  msgid "Report body"
852
  msgstr "Report-Text"
853
 
854
- #: includes/settings/tabs/wps-notifications.php:185
855
  msgid "Enter the contents of the report."
856
  msgstr "Gib den gewünschten Inhalt der Statistik-Reports hier ein."
857
 
858
- #: includes/settings/tabs/wps-notifications.php:187
859
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
860
  msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes von WP Statistics (siehe Benutzerdokumentation) können im Nachrichtentext verwendet werden. Hier sind ein paar Beispiele:"
861
 
862
- #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
863
- #: widget.php:247 wp-statistics.php:621
 
864
  msgid "User Online"
865
  msgstr "Besucher aktuell"
866
 
867
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
868
- #: widget.php:253
869
  msgid "Today Visitor"
870
  msgstr "Besucher heute"
871
 
872
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
873
- #: widget.php:250
874
  msgid "Today Visit"
875
  msgstr "Aufrufe heute"
876
 
877
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
878
- #: widget.php:259
879
  msgid "Yesterday Visitor"
880
  msgstr "Besucher gestern"
881
 
882
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
 
883
  msgid "Yesterday Visit"
884
  msgstr "Aufrufe gestern"
885
 
886
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
887
- #: widget.php:274
888
  msgid "Total Visitor"
889
  msgstr "Besucher gesamt"
890
 
891
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
892
- #: widget.php:271
893
  msgid "Total Visit"
894
  msgstr "Aufrufe gesamt"
895
 
896
- #: shortcode.php:175
897
  msgid "None"
898
  msgstr "Keine"
899
 
900
- #: includes/settings/wps-settings.php:108
901
  msgid "About"
902
  msgstr "Über das Plugin"
903
 
904
- #: includes/settings/tabs/wps-overview-display.php:20
905
  msgid "Dashboard"
906
  msgstr "Admin-Übersicht"
907
 
908
- #: includes/settings/tabs/wps-overview-display.php:24
909
- #: includes/settings/tabs/wps-overview-display.php:44
910
- #: includes/settings/tabs/wps-overview-display.php:64
911
  msgid "The following items are global to all users."
912
  msgstr "Diese Einstellungen sind global für alle Benutzer gültig."
913
 
914
- #: includes/settings/tabs/wps-overview-display.php:29
915
  msgid "Disable dashboard widgets"
916
  msgstr "Admin-Widgets deaktivieren"
917
 
918
- #: includes/settings/tabs/wps-overview-display.php:35
919
  msgid "Disable the dashboard widgets."
920
  msgstr "Feature aktivieren oder deaktivieren"
921
 
922
- #: includes/settings/tabs/wps-overview-display.php:40
923
  msgid "Page/Post Editor"
924
  msgstr "Seiten-/Beitrags-Editor"
925
 
926
- #: includes/settings/tabs/wps-overview-display.php:49
927
  msgid "Disable post/page editor widget"
928
  msgstr "Editor-Widget deaktivieren"
929
 
930
- #: includes/settings/tabs/wps-overview-display.php:55
931
  msgid "Disable the page/post editor widget."
932
  msgstr "Feature aktivieren oder deaktivieren"
933
 
934
- #: includes/settings/tabs/wps-overview-display.php:69
935
  msgid "Map type"
936
  msgstr "Karten-Typ"
937
 
938
- #: includes/functions/functions.php:429
939
- #: includes/settings/tabs/wps-overview-display.php:75
940
  msgid "Google"
941
  msgstr "Google"
942
 
943
- #: includes/settings/tabs/wps-overview-display.php:75
944
  msgid "JQVMap"
945
  msgstr "JQVMap"
946
 
947
- #: includes/settings/tabs/wps-overview-display.php:82
948
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
949
  msgstr "\"Google\" verwendet das externe Karten-Service von Google, um die letzten Besucher anzuzeigen. Diese Option benötigt eine Verbindung zum Google Karten-Service."
950
 
951
- #: includes/settings/tabs/wps-overview-display.php:83
952
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
953
  msgstr "\"JQVMap\" verwendet die zugehörige Javascript Karten-Bibliothek, um die letzten Besucher anzuzeigen und benötigt keine externen Services."
954
 
955
- #: includes/settings/tabs/wps-overview-display.php:89
956
  msgid "Disable map"
957
  msgstr "Karte deaktivieren"
958
 
959
- #: includes/settings/tabs/wps-overview-display.php:95
960
  msgid "Disable the map display"
961
  msgstr "Anzeige der Weltkarte auf der Statistik-Übersicht deaktiveren."
962
 
963
- #: includes/settings/tabs/wps-overview-display.php:101
964
  msgid "Get country location from Google"
965
  msgstr "Länderinformation von Google abfragen"
966
 
967
- #: includes/settings/tabs/wps-overview-display.php:107
968
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
969
  msgstr "Diese Option kann Leistungseinbußen bei der Anzeige der Statistiken zur Folge haben und ist nur gültig, wenn der Karten-Typ auf \"Google\" gesetzt ist."
970
 
971
- #: includes/settings/tabs/wps-removal.php:15
972
  msgid "WP Statisitcs Removal"
973
  msgstr "WP Statistics - Daten entfernen"
974
 
975
- #: includes/settings/tabs/wps-removal.php:20
976
  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."
977
  msgstr "Das normale Deaktivieren und Löschen von WP Statistics führt keine Änderungen an deiner Datenbank und den Plugin-Einstellungen durch. Wenn du alle Daten des Plugins also tatsächlich löschen willst, kannst du das mit dieser Funktion tun."
978
 
979
- #: includes/settings/tabs/wps-removal.php:23
980
  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."
981
  msgstr "Die Daten werden aus der Datenbank gelöscht, sobald dieses Formular abgeschickt wird. WP Statistics wird danach noch so lange in deinem Admin-Menü angezeigt, bis du eine andere Admin-Seite aufrufst."
982
 
983
- #: includes/settings/tabs/wps-removal.php:29
984
  msgid "Remove data and settings"
985
  msgstr "Daten und Einstellungen entfernen"
986
 
987
- #: includes/settings/tabs/wps-removal.php:34
988
  msgid "Remove"
989
  msgstr "Entfernen"
990
 
991
- #: includes/settings/tabs/wps-removal.php:35
992
  msgid "Remove data and settings, this action cannot be undone."
993
  msgstr "Alle Daten und Plugin-Einstellungen werden aus der Datenbank gelöscht. ACHTUNG: Diese Aktion kann nicht rückgängig gemacht werden!"
994
 
995
- #: includes/settings/wps-settings.php:100
996
  msgid "General"
997
  msgstr "Allgemeines"
998
 
999
- #: includes/settings/wps-settings.php:101
1000
  msgid "Notifications"
1001
  msgstr "Benachrichtigungen"
1002
 
1003
- #: includes/settings/wps-settings.php:102
1004
  msgid "Dashboard/Overview"
1005
  msgstr "Admin- & Statistik-Übersicht"
1006
 
1007
- #: includes/settings/wps-settings.php:106
1008
  msgid "Maintenance"
1009
  msgstr "Datenbank-Wartung"
1010
 
1011
- #: includes/settings/wps-settings.php:107
1012
  msgid "Removal"
1013
  msgstr "Deinstallation"
1014
 
1015
- #: includes/settings/tabs/wps-access-level.php:85
1016
- #: includes/settings/tabs/wps-exclusions.php:234
1017
- #: includes/settings/tabs/wps-externals.php:286
1018
- #: includes/settings/tabs/wps-general.php:349
1019
- #: includes/settings/tabs/wps-maintenance.php:88
1020
- #: includes/settings/tabs/wps-notifications.php:201
1021
- #: includes/settings/tabs/wps-overview-display.php:116
1022
- #: includes/settings/tabs/wps-removal.php:42
1023
  msgid "Update"
1024
  msgstr "Einstellungen speichern"
1025
 
1026
- #: schedule.php:10
1027
  msgid "Once Weekly"
1028
  msgstr "Ein Mal wöchentlich"
1029
 
1030
- #: schedule.php:17
1031
  msgid "Once Every 2 Weeks"
1032
  msgstr "Alle zwei Wochen"
1033
 
1034
- #: schedule.php:24
1035
  msgid "Once Every 4 Weeks"
1036
  msgstr "Alle vier Wochen"
1037
 
1038
- #: widget.php:14 wp-statistics.php:408 wp-statistics.php:469
 
1039
  msgid "Statistics"
1040
  msgstr "Statistik"
1041
 
1042
- #: widget.php:15
1043
  msgid "Show site stats in sidebar."
1044
  msgstr "Website-Statistiken in der Sidebar anzeigen."
1045
 
1046
- #: widget.php:73 widget.php:262
1047
  msgid "Week Visit"
1048
  msgstr "Besucher pro Woche"
1049
 
1050
- #: widget.php:80 widget.php:265
1051
  msgid "Month Visit"
1052
  msgstr "Aufrufe im Monat"
1053
 
1054
- #: widget.php:87 widget.php:268
1055
  msgid "Years Visit"
1056
  msgstr "Aufrufe im Jahr"
1057
 
1058
- #: widget.php:108 widget.php:277
1059
  msgid "Total Page Views"
1060
  msgstr "Gesamt Seitenaufrufe"
1061
 
1062
- #: widget.php:116
1063
  msgid "Search Engine referred"
1064
  msgstr "Von Suchmaschinen-Verweis"
1065
 
1066
- #: widget.php:123 widget.php:300
1067
  msgid "Total Posts"
1068
  msgstr "Gesamt Beiträge"
1069
 
1070
- #: widget.php:130 widget.php:303
1071
  msgid "Total Pages"
1072
  msgstr "Gesamt Seiten"
1073
 
1074
- #: widget.php:137 widget.php:306
1075
  msgid "Total Comments"
1076
  msgstr "Gesamt Kommentare"
1077
 
1078
- #: widget.php:144 widget.php:309
1079
  msgid "Total Spams"
1080
  msgstr "Gesamt Spam"
1081
 
1082
- #: widget.php:151 widget.php:312
1083
  msgid "Total Users"
1084
  msgstr "Gesamt Benutzer"
1085
 
1086
- #: widget.php:158 widget.php:315
1087
  msgid "Average Posts"
1088
  msgstr "Durchschnittliche Artikel"
1089
 
1090
- #: widget.php:165 widget.php:318
1091
  msgid "Average Comments"
1092
  msgstr "Durchschnittliche Kommentare"
1093
 
1094
- #: widget.php:172 widget.php:321
1095
  msgid "Average Users"
1096
  msgstr "Durchschnittliche Benutzer"
1097
 
1098
- #: shortcode.php:151 widget.php:179 widget.php:324
 
1099
  msgid "Last Post Date"
1100
  msgstr "Letztes Beitrags-Datum"
1101
 
1102
- #: widget.php:240
1103
  msgid "Name"
1104
  msgstr "Name"
1105
 
1106
- #: widget.php:244
1107
  msgid "Items"
1108
  msgstr "Elemente"
1109
 
1110
- #: widget.php:256 wp-statistics.php:646
1111
  msgid "Yesterday visit"
1112
  msgstr "Aufrufe gestern"
1113
 
1114
- #: widget.php:280
1115
  msgid "Search Engine Referred"
1116
  msgstr "Von Suchmaschinen-Verweis"
1117
 
1118
- #: widget.php:283
1119
  msgid "Select type of search engine"
1120
  msgstr "Wähle die Suchmaschine"
1121
 
1122
- #: wp-statistics.php:122
1123
  msgid "WP Statistics has been removed, please disable and delete it."
1124
  msgstr "WP Statistics wurde entfernt, du kannst das Plugin jetzt deaktivieren und löschen."
1125
 
1126
- #. Plugin Name of the plugin/theme
1127
- #: wp-statistics.php:54
1128
  msgid "WP Statistics"
1129
  msgstr "WP Statistics"
1130
 
1131
- #. Description of the plugin/theme
1132
- #: wp-statistics.php:55
1133
  msgid "Complete statistics for your WordPress site."
1134
  msgstr "Umfangreiche Statistik für WordPress."
1135
 
1136
- #: wp-statistics.php:313 wp-statistics.php:428 wp-statistics.php:523
 
1137
  msgid "Settings"
1138
  msgstr "Einstellungen"
1139
 
1140
- #: wp-statistics.php:325
1141
  msgid "Click here to visit the plugin on WordPress.org"
1142
  msgstr "Klicke hier, um die Plugin-Seite auf WordPress.org zu besuchen"
1143
 
1144
- #: wp-statistics.php:325
1145
  msgid "Visit WordPress.org page"
1146
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
1147
 
1148
- #: wp-statistics.php:328
1149
  msgid "Click here to rate and review this plugin on WordPress.org"
1150
  msgstr "Klicke hier, um das Plugin auf WordPress.org zu bewerten un
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0.2\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: wp-statistics/ajax.php:220
14
+ msgid "No matching widget found!"
15
+ msgstr ""
16
+
17
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
18
+ msgid "Zlib gzopen()"
19
+ msgstr ""
20
+
21
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
22
+ msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
23
+ msgstr ""
24
+
25
+ #: wp-statistics/wps-updates.php:16
26
+ msgid "Error the download_url() or gzopen() functions do not exist!"
27
+ msgstr ""
28
+
29
+ #: wp-statistics/wps-updates.php:45
30
+ msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
31
+ msgstr ""
32
+
33
+ #: wp-statistics/wp-statistics.php:95
34
  msgid "&#151; You are running an unsupported version of PHP."
35
  msgstr ""
36
 
37
+ #: wp-statistics/wp-statistics.php:95
38
  msgid "WP Statistics Disabled"
39
  msgstr ""
40
 
41
+ #: wp-statistics/wp-statistics.php:99
42
  msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
43
  msgstr ""
44
 
45
+ #: wp-statistics/wp-statistics.php:101
46
  msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
47
  msgstr ""
48
 
49
+ #: wp-statistics/ajax.php:299
50
  msgid "ERROR: Widget not found!"
51
  msgstr ""
52
 
53
+ #: wp-statistics/dashboard.php:111 wp-statistics/editor.php:66
54
+ #: wp-statistics/includes/log/log.php:20
55
  msgid "Loading..."
56
  msgstr ""
57
 
58
+ #: wp-statistics/dashboard.php:129 wp-statistics/editor.php:84
59
+ #: wp-statistics/includes/log/log.php:2
60
  msgid "Reloading..."
61
  msgstr ""
62
 
63
+ #: wp-statistics/includes/log/top-visitors.php:41
64
+ #: wp-statistics/wp-statistics.php:447
65
  msgid "Top Visitors"
66
  msgstr ""
67
 
68
+ #: wp-statistics/wp-statistics.php:206
69
  msgid "optimization page"
70
  msgstr "Einstellungen"
71
 
72
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
73
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
74
  msgid "Enabled"
75
  msgstr "Aktiviert"
76
 
77
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
78
  msgid "Purge Old Data Daily"
79
  msgstr "Alte Daten täglich löschen"
80
 
81
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
82
  msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
83
  msgstr "Ein WordPress Cron-Job wird täglich ausgeführt, um Daten zu löschen die älter sind als die nachfolgend angegebene Anzahl an Tagen."
84
 
85
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
86
  msgid "Purge data older than"
87
  msgstr "Lösche Daten älter als"
88
 
89
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
90
  msgid "Purge High Hit Count Visitors Daily"
91
  msgstr "Hohe Aufrufe täglich löschen"
92
 
93
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
94
  msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
95
  msgstr "Ein WordPress Cron-Job wird täglich ausgeführt, um Daten von Besuchern zu löschen die mehr Aufrufe pro Tag aufweisen als nachfolgend angegeben (eventuelle Robots)."
96
 
97
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
98
  msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
99
  msgstr "Anzahl der Aufrufe (pro Tag), um als vermeintlicher Robot eingestuft zu werden. Minimum-Wert ist 10 Aufrufe. Ungültige Werte deaktivieren die automatisierte tägliche Wartung."
100
 
101
+ #: wp-statistics/shortcode.php:184
102
  msgid "The post/page id to get page statistics on."
103
  msgstr "Statistiken dieser Beitrags- / Seiten-ID anzeigen"
104
 
105
+ #: wp-statistics/shortcode.php:181
106
  msgid "Post/Page ID"
107
  msgstr "Beitrags- / Seiten-ID"
108
 
109
+ #: wp-statistics/includes/functions/functions.php:435
110
  msgid "Ask.com"
111
  msgstr "Ask.com"
112
 
113
+ #: wp-statistics/shortcode.php:158
114
  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."
115
  msgstr "Statistik für diesen Zeitraum anzeigen; strtotime() (http://php.net/manual/en/datetime.formats.php) wird verwendet, um sie zu berechnen. Verwenden Sie &quot;total&quot;, um alle aufgezeichneten Daten zu bekommen."
116
 
117
+ #: wp-statistics/wp-statistics.php:180
118
  msgid "visitor tracking"
119
  msgstr "Besucher-Tracking"
120
 
121
+ #: wp-statistics/wp-statistics.php:181
122
  msgid "geoip collection"
123
  msgstr "GeoIP-Aufzeichnung"
124
 
125
+ #: wp-statistics/wp-statistics.php:197
126
  msgid "visit database index"
127
  msgstr "Index der Aufrufe-Tabelle"
128
 
129
+ #: wp-statistics/wp-statistics.php:206
130
  msgid "Database updates are required, please go to %s and update the following: %s"
131
  msgstr "Eine Datenbank-Aktualisierung ist notwendig, bitte geh zu %s und führe folgende Aktionen durch: %s"
132
 
133
+ #: wp-statistics/wp-statistics.php:197
134
  msgid "countries database index"
135
  msgstr "Index der Länder-Tabelle"
136
 
137
+ #: wp-statistics/wp-statistics.php:190
138
  msgid "search table"
139
  msgstr "Tabelle für Suchanfragen"
140
 
141
+ #: wp-statistics/wp-statistics.php:184
142
  msgid "settings page"
143
  msgstr "Einstellungen"
144
 
145
+ #: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
146
  msgid ","
147
  msgstr ","
148
 
149
+ #: wp-statistics/wp-statistics.php:184
150
  msgid "The following features are disabled, please go to %s and enable them: %s"
151
  msgstr "Die folgenden Funktionen sind deaktiviert, bitte gehen zur %s und aktiviere sie: %s"
152
 
153
+ #: wp-statistics/wp-statistics.php:179
154
  msgid "hit tracking"
155
  msgstr "Aufrufe-Tracking"
156
 
157
+ #: wp-statistics/wp-statistics.php:178
158
  msgid "online user tracking"
159
  msgstr "Online-User-Tracking"
160
 
161
+ #: wp-statistics/wp-statistics.php:775
162
  msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
163
  msgstr "Die folgenden Plugin-Tabellen existieren nicht in der Datenbank. Bitte führe die %s-Installationsroutine erneut durch %s: "
164
 
165
+ #: wp-statistics/includes/optimization/wps-optimization.php:196
166
  msgid "Search table conversion complete, %d rows added."
167
  msgstr "Konvertierung der Tabelle für Suchanfragen durchgeführt - %d Zeilen hinzugefügt."
168
 
169
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
170
  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."
171
  msgstr "Bei älteren Versionen von WP Statistics werden detaillierte Informationen zu Suchanfragen in der Besucher-Tabelle gespeichert. Das kann bei großen Datensätzen zu Leistungseinbußen führen. Daher wurde eine neue Tabelle implementiert, die diese Informationen in einem besser skalierbaren Format enthält."
172
 
173
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
174
  msgid "Search Table"
175
  msgstr "Tabelle für Suchanfragen"
176
 
177
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
178
  msgid "Convert"
179
  msgstr "Konvertieren"
180
 
181
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
182
  msgid "Convert Now!"
183
  msgstr "Jetzt konvertieren"
184
 
185
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
186
  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."
187
  msgstr "Bei älteren Versionen von WP Statistics werden detaillierte Informationen zu Suchanfragen in der Besucher-Tabelle gespeichert. Das kann bei großen Datensätzen zu Leistungseinbußen führen. Daher wurde eine neue Tabelle implementiert, die diese Informationen in einem besser skalierbaren Format enthält. Die alten Daten müssen dafür jedoch konvertiert werden, bevor sie verwendet werden können."
188
 
189
+ #: wp-statistics/includes/log/exclusions.php:24
190
  msgid "Referrer Spam"
191
  msgstr "Referrer Spam"
192
 
193
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:279
194
  msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
195
  msgstr "Die Aktualisierung der \"Piwik Referrer Spam\"-Blacklist wird ein Mal wöchentlich durchgeführt."
196
 
197
+ #: wp-statistics/includes/settings/wps-settings.php:105
198
  msgid "Externals"
199
  msgstr "Externe Quellen"
200
 
201
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:220
202
  msgid "Piwik Referrer Spam Blacklist settings"
203
  msgstr "\"Piwik Referrer Spam\" Blacklist-Einstellungen"
204
 
205
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:255
206
  msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
207
  msgstr "Automat. Aktualisierung der \"Piwik Referrer Spam\" Blacklist"
208
 
209
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:248
210
  msgid "Download Piwik Referrer Spam Blacklist Database"
211
  msgstr "\"Piwik Referrer Spam\" Blacklist herunterladen"
212
 
213
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:243
214
  msgid "Update Piwik Referrer Spam Blacklist Info"
215
  msgstr "\"Piwik Referrer Spam\" Blacklist aktualisieren"
216
 
217
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:237
218
  msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
219
  msgstr "Die \"Piwik Referrer Spam\" Blacklist wird heruntergeladen und zur Erkennung von Referrer Spam verwendet."
220
 
221
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:225
222
  msgid "Referrer spam blacklist is provided by Piwik, available from %s."
223
  msgstr "Diese Spam-Blacklist wird von Piwik auf %s zur Verfügung gestellt."
224
 
225
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:231
226
  msgid "Piwik Referrer Spam Blacklist usage"
227
  msgstr "\"Piwik Referrer Spam\" Blacklist verwenden"
228
 
229
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
230
  msgid "Treat corrupt browser info as a bot"
231
  msgstr "Falsche/fehlerhafte Browserkennung berücksichtigen"
232
 
233
+ #: wp-statistics/includes/log/exclusions.php:24
234
  msgid "404 Pages"
235
  msgstr "404-Fehlerseiten"
236
 
237
+ #: wp-statistics/includes/log/top-visitors.php:26
238
  msgid "Date"
239
  msgstr "Wähle den gewünschten Tag"
240
 
241
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
242
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
243
  msgstr "Behandle Besucher mit einer falschen oder fehlerhaften Browserkennung (fehlende IP-Adresse oder leere User-Agent-Kennung) als Robot."
244
 
245
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
246
  msgid "Excluded 404 pages"
247
  msgstr "404-Fehlerseiten"
248
 
249
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
250
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
251
  msgstr "Alle Seiten, die einen Fehler-404 erzeugen, von der Statistik ausschließen."
252
 
253
+ #: wp-statistics/wps-updates.php:37
254
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
255
  msgstr "Fehler beim Erstellen des GeoIP Datenbank-Verzeichnisses. Stelle sicher, dass dein Webserver die Berechtigung zum Erstellen von Verzeichnissen in %s hat."
256
 
257
+ #: wp-statistics/includes/settings/tabs/wps-general.php:281
258
  msgid "Add page title to empty search words"
259
  msgstr "Seiten-Titel bei leeren Suchanfragen hinzufügen"
260
 
261
+ #: wp-statistics/includes/settings/tabs/wps-general.php:287
262
  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."
263
  msgstr "Wenn eine Suchmaschine als Referrer identifiziert wird, diese jedoch die vorangegangene Suchanfrage nicht sendet, wird diese Option bei Aktivierung den Seiten-Titel mit einem vorangestellten \"~:\" als Suchanfrage ausweisen. Das kann dabei helfen herauszufinden, wonach der Besucher gesucht haben könnte."
264
 
265
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
266
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
267
  msgid "Purge visitors with more than"
268
  msgstr "Lösche Besucher mit mehr als"
269
 
270
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
271
  msgid "hits"
272
  msgstr "Zugriffen pro Tag"
273
 
274
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
275
  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."
276
  msgstr "Daten von Besuchern mit mehr als den hier definierten Zugriffen an einem Tag werden gelöscht. Das kann hilfreich sein, wenn du z.B. Daten nach einer Robot-Attacke löschen willst. Diese Option löscht die entsprechenden Besucher und die mit ihnen verbunden Zugriffe auf deine Website, aktualisiert jedoch nicht die individuellen Seitenaufrufe da diese Daten nicht pro Besucher aufgezeichnet werden. Minimum-Wert ist 10 Zugriffe pro Tag."
277
 
278
+ #: wp-statistics/includes/functions/purge-hits.php:28
279
  msgid "No visitors found to purge."
280
  msgstr "Keine Besucher zum Löschen gefunden."
281
 
282
+ #: wp-statistics/includes/functions/purge-hits.php:25
283
  msgid "%s records purged successfully."
284
  msgstr "%s Einträge erfolgreich gelöscht."
285
 
286
+ #: wp-statistics/ajax.php:178
287
+ #: wp-statistics/includes/functions/purge-hits.php:32
288
  msgid "Number of hits must be greater than or equal to 10!"
289
  msgstr "Zugriffe muss größer als oder gleich 10 sein!"
290
 
291
+ #: wp-statistics/shortcode.php:141
292
  msgid "Page Visits"
293
  msgstr "Seitenbesuche"
294
 
295
+ #: wp-statistics/shortcode.php:144
296
  msgid "Page Count"
297
  msgstr "Seitenanzahl"
298
 
299
+ #: wp-statistics/shortcode.php:145
300
  msgid "Comment Count"
301
  msgstr "Kommentaranzahl"
302
 
303
+ #: wp-statistics/shortcode.php:146
304
  msgid "Spam Count"
305
  msgstr "Spam-Anzahl"
306
 
307
+ #: wp-statistics/shortcode.php:147
308
  msgid "User Count"
309
  msgstr "Benutzeranzahl"
310
 
311
+ #: wp-statistics/shortcode.php:148
312
  msgid "Post Average"
313
  msgstr ""
314
 
315
+ #: wp-statistics/shortcode.php:149
316
  msgid "Comment Average"
317
  msgstr ""
318
 
319
+ #: wp-statistics/shortcode.php:150
320
  msgid "User Average"
321
  msgstr ""
322
 
323
+ #: wp-statistics/shortcode.php:162
324
  msgid "Search Provider"
325
  msgstr "Suchanbieter"
326
 
327
+ #: wp-statistics/shortcode.php:165
328
  msgid "The search provider to get statistics on."
329
  msgstr "Statistiken von folgendem Suchanbieter anzeigen."
330
 
331
+ #: wp-statistics/shortcode.php:169
332
  msgid "Number Format"
333
  msgstr "Zahlenformat"
334
 
335
+ #: wp-statistics/shortcode.php:172
336
  msgid "The format to display numbers in: i18n, english, none."
337
  msgstr "Das Format, um Zahlen anzuzeigen: i18n, english, none"
338
 
339
+ #: wp-statistics/shortcode.php:176
340
  msgid "English"
341
  msgstr "Englisch"
342
 
343
+ #: wp-statistics/shortcode.php:177
344
  msgid "International"
345
  msgstr "International"
346
 
347
+ #: wp-statistics/includes/log/exclusions.php:191
348
+ #: wp-statistics/includes/log/hit-statistics.php:164
349
  msgid "Hits Statistics Summary"
350
  msgstr "Website-Aufrufe - Zusammenfassung"
351
 
352
+ #: wp-statistics/includes/log/exclusions.php:201
353
+ #: wp-statistics/includes/log/hit-statistics.php:175
354
  msgid "Chart Total"
355
  msgstr "Gesamt im gewählten Diagramm-Zeitraum"
356
 
357
+ #: wp-statistics/includes/log/exclusions.php:206
358
+ #: wp-statistics/includes/log/hit-statistics.php:181
359
  msgid "All Time Total"
360
  msgstr "Gesamt seit Statistik-Beginn"
361
 
362
+ #: wp-statistics/includes/log/log.php:6
363
  msgid "Have you thought about donating to WP Statistics?"
364
  msgstr "Hast du schon über eine Spende für WP Statistics nachgedacht?"
365
 
366
+ #: wp-statistics/includes/settings/tabs/wps-about.php:20
367
+ #: wp-statistics/wp-statistics.php:429
368
  msgid "Donate"
369
  msgstr "Spenden"
370
 
371
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
372
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
373
  msgstr "Möchtest du uns zeigen, wieviel Spaß du mit WP Statistics hast? Besuche unsere %s-Seite und unterstütze uns!"
374
 
375
+ #: wp-statistics/includes/settings/tabs/wps-about.php:24
376
  msgid "donation"
377
  msgstr "Spenden"
378
 
379
+ #: wp-statistics/includes/log/log.php:6
380
  msgid "Donate Now!"
381
  msgstr "Jetzt spenden!"
382
 
383
+ #: wp-statistics/includes/log/log.php:6
384
  msgid "Close"
385
  msgstr "Schließen"
386
 
387
+ #: wp-statistics/shortcode.php:135
388
  msgid "Select the statistic you wish to display."
389
  msgstr "Wähle, welche Statistik angezeigt werden soll."
390
 
391
+ #: wp-statistics/shortcode.php:132
392
  msgid "Statistic"
393
  msgstr "Statistik"
394
 
395
+ #: wp-statistics/shortcode.php:143
396
  msgid "Post Count"
397
  msgstr "Beitragszahl"
398
 
399
+ #: wp-statistics/shortcode.php:155
400
  msgid "Time Frame"
401
  msgstr "Zeitraum"
402
 
403
+ #: wp-statistics/includes/functions/functions.php:1032
404
  msgid "to"
405
  msgstr "bis"
406
 
407
+ #: wp-statistics/includes/functions/functions.php:1032
408
+ #: wp-statistics/includes/log/top-visitors.php:29
409
  msgid "Go"
410
  msgstr "Los"
411
 
412
+ #: wp-statistics/includes/log/top-pages.php:102
413
  msgid "Rank #5"
414
  msgstr "Rang #5"
415
 
416
+ #: wp-statistics/includes/log/top-pages.php:102
417
  msgid "Rank #4"
418
  msgstr "Rang #4"
419
 
420
+ #: wp-statistics/includes/log/top-pages.php:102
421
  msgid "Rank #3"
422
  msgstr "Rang #3"
423
 
424
+ #: wp-statistics/includes/log/top-pages.php:102
425
  msgid "Rank #1"
426
  msgstr "Rang #1"
427
 
428
+ #: wp-statistics/includes/log/top-pages.php:102
429
  msgid "Rank #2"
430
  msgstr "Rang #2"
431
 
432
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
433
  msgid "Visits Table"
434
  msgstr "Aufrufe"
435
 
436
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
437
  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."
438
  msgstr "Bei älteren Versionen von WP Statistics können in seltenen Fällen duplizierte Einträge in der Aufrufe-Tabelle entstehen. Neuere Installationen verhindern das mit einem eindeutigen Index für diese Tabelle. Um diesen eindeutigen Index zu erstellen, müssen zuerst die Duplikate entfernt werden - klicke dazu auf \"Jetzt aktualisieren\"."
439
 
440
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
441
  msgid "This operation could take a long time on installs with many rows in the visits table."
442
  msgstr "Die Durchführung kann bei Installationen mit vielen Zeilen in der Aufrufe-Tabelle länger dauern."
443
 
444
+ #: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
445
  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."
446
  msgstr "Bei älteren Versionen von WP Statistics können in seltenen Fällen duplizierte Einträge in der Aufrufe-Tabelle entstehen. Neuere Installationen verhindern das mit einem eindeutigen Index für diese Tabelle."
447
 
448
+ #: wp-statistics/includes/log/last-visitor.php:68
449
  msgid "Filtered by"
450
  msgstr "Filtern nach"
451
 
452
+ #: wp-statistics/includes/functions/functions.php:1026
453
+ #: wp-statistics/includes/functions/functions.php:1029
454
  msgid "Range"
455
  msgstr "Zeitraum von"
456
 
457
+ #: wp-statistics/includes/functions/functions.php:1032
458
+ #: wp-statistics/includes/log/top-visitors.php:29
459
  msgid "MM/DD/YYYY"
460
  msgstr "MM/DD/YYYY"
461
 
462
+ #: wp-statistics/includes/settings/tabs/wps-general.php:342
463
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
464
  msgstr "Verwende keine Übersetzungen innerhalb des Plugins sondern stattdessen die Englischen Standard-Texte (benötigt zwei Mal ein Neuladen der Seite)."
465
 
466
+ #: wp-statistics/includes/settings/tabs/wps-general.php:336
467
  msgid "Force English"
468
  msgstr "Englisch erzwingen"
469
 
470
+ #: wp-statistics/includes/settings/tabs/wps-general.php:331
471
  msgid "Languages"
472
  msgstr "Sprachen"
473
 
474
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
475
  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."
476
  msgstr "Hinweis: Diese Option berücksichtigt KEINE Parameter nach einem \"?\" in URLs. Einträge mit weniger als zwei zeichen werden ignoriert."
477
 
478
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
479
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
480
  msgstr "Eine Liste an lokalen URLs (z.B. \"/wordpress/about\", eine pro Zeile), die aus der Statistik ausgeschlossen werden sollen."
481
 
482
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
483
  msgid "Excluded URLs list"
484
  msgstr "Ausgeschlossene URLs"
485
 
486
+ #: wp-statistics/includes/log/exclusions.php:24
487
  msgid "Excluded URL"
488
  msgstr "Ausgeschlossene URL"
489
 
490
+ #: wp-statistics/includes/log/widgets/quickstats.php:52
491
+ #: wp-statistics/includes/log/widgets/summary.php:52
492
  msgid "Last 365 Days (Year)"
493
  msgstr "In den letzten 365 Tagen"
494
 
495
+ #: wp-statistics/includes/log/widgets/quickstats.php:46
496
+ #: wp-statistics/includes/log/widgets/summary.php:46
497
  msgid "Last 30 Days (Month)"
498
  msgstr "In den letzten 30 Tagen"
499
 
500
+ #: wp-statistics/includes/log/widgets/quickstats.php:40
501
+ #: wp-statistics/includes/log/widgets/summary.php:40
502
  msgid "Last 7 Days (Week)"
503
  msgstr "In den letzten 7 Tagen"
504
 
505
+ #: wp-statistics/includes/functions/functions.php:441
506
  msgid "Yahoo!"
507
  msgstr "Yahoo!"
508
 
509
+ #: wp-statistics/includes/functions/functions.php:442
510
  msgid "Yandex"
511
  msgstr "Yandex"
512
 
513
+ #: wp-statistics/includes/functions/functions.php:438
514
  msgid "clearch.org"
515
  msgstr "clearch.org"
516
 
517
+ #: wp-statistics/includes/functions/functions.php:439
518
  msgid "DuckDuckGo"
519
  msgstr "DuckDuckGo"
520
 
521
+ #: wp-statistics/includes/functions/functions.php:437
522
  msgid "Bing"
523
  msgstr "Bing"
524
 
525
+ #: wp-statistics/includes/functions/functions.php:436
526
  msgid "Baidu"
527
  msgstr "Baidu"
528
 
529
+ #: wp-statistics/includes/log/exclusions.php:24
 
 
 
 
530
  msgid "Feeds"
531
  msgstr "Feeds"
532
 
533
+ #: wp-statistics/includes/log/exclusions.php:24
534
  msgid "User Role"
535
  msgstr "Benutzer-Rolle"
536
 
537
+ #: wp-statistics/includes/log/exclusions.php:24
538
  msgid "Login Page"
539
  msgstr "Login-Seite"
540
 
541
+ #: wp-statistics/includes/log/exclusions.php:24
542
  msgid "Admin Page"
543
  msgstr "Admin-Seite"
544
 
545
+ #: wp-statistics/includes/log/exclusions.php:24
546
  msgid "Self Referral"
547
  msgstr "Self-Referral"
548
 
549
+ #: wp-statistics/includes/log/exclusions.php:24
550
  msgid "IP Match"
551
  msgstr "IP-Adresse"
552
 
553
+ #: wp-statistics/includes/log/exclusions.php:24
554
  msgid "Robot"
555
  msgstr "Robot"
556
 
557
+ #: wp-statistics/includes/log/online.php:100
558
  msgid "Currently there are no users online in the site."
559
  msgstr "Zurzeit sind keine (anderen) Benutzer online auf deiner Website."
560
 
561
+ #: wp-statistics/includes/log/exclusions.php:24
562
  msgid "Robot Threshold"
563
  msgstr "Robot-Erkennschwelle"
564
 
565
+ #: wp-statistics/includes/log/exclusions.php:24
566
  msgid "Honey Pot"
567
  msgstr "Honey Pot"
568
 
569
+ #: wp-statistics/includes/log/widgets/page.php:8
570
  msgid "Page Trending Stats"
571
  msgstr "Verlauf der Aufrufe"
572
 
573
+ #: wp-statistics/includes/log/exclusions.php:24
574
  msgid "Hostname"
575
  msgstr "Hostname"
576
 
577
+ #: wp-statistics/includes/settings/tabs/wps-general.php:93
578
+ #: wp-statistics/includes/settings/tabs/wps-general.php:133
579
+ #: wp-statistics/includes/settings/tabs/wps-general.php:149
580
+ #: wp-statistics/includes/settings/tabs/wps-general.php:188
581
+ #: wp-statistics/includes/settings/tabs/wps-general.php:200
582
+ #: wp-statistics/includes/settings/tabs/wps-general.php:229
583
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:122
584
  msgid "Enable or disable this feature"
585
  msgstr "Feature aktivieren oder deaktivieren"
586
 
587
+ #: wp-statistics/includes/settings/tabs/wps-general.php:99
588
  msgid "Check for online users every"
589
  msgstr "Auf neue Besucher überprüfen alle"
590
 
591
+ #: wp-statistics/includes/settings/tabs/wps-general.php:104
592
  msgid "Second"
593
  msgstr "Sekunden"
594
 
595
+ #: wp-statistics/includes/settings/tabs/wps-general.php:105
596
  msgid "Time for the check accurate online user in the site. Now: %s Second"
597
  msgstr "Zeit, um auf neue Besucher zu überprüfen. Aktuell: %s Sekunden."
598
 
599
+ #: wp-statistics/includes/settings/tabs/wps-general.php:111
600
  msgid "Record all user"
601
  msgstr "Alle Besucher aufzeichnen"
602
 
603
+ #: wp-statistics/includes/settings/tabs/wps-general.php:117
604
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
605
  msgstr "Ignoriert etwaige gesetzte Ausnahmen und zeichnet alle Besucheraktivitäten auf (inkl. Self-Referrals und Robots). Diese Option sollte nur zur Problembehebung aktiviert werden!"
606
 
607
+ #: wp-statistics/includes/settings/tabs/wps-general.php:155
608
  msgid "Store entire user agent string"
609
  msgstr "Gesamten User Agent-String speichern"
610
 
611
+ #: wp-statistics/includes/settings/tabs/wps-general.php:161
612
  msgid "Only enabled for debugging"
613
  msgstr "Sollte nur bei Problemen bei der Bestimmung der User Agent-Strings aktiviert werden."
614
 
615
+ #: wp-statistics/includes/settings/tabs/wps-general.php:167
616
  msgid "Coefficient per visitor"
617
  msgstr "Koeffizient pro Besucher"
618
 
619
+ #: wp-statistics/includes/settings/tabs/wps-general.php:172
620
  msgid "For each visit to account for several hits. Currently %s."
621
  msgstr "Koeffizient - ein Besucher zählt \"X\" Aufrufe. Aktuell: %s."
622
 
623
+ #: wp-statistics/includes/settings/tabs/wps-general.php:177
624
+ #: wp-statistics/includes/settings/tabs/wps-general.php:182
625
+ #: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:516
626
  msgid "Pages"
627
  msgstr "Seitenaufrufe"
628
 
629
+ #: wp-statistics/includes/settings/tabs/wps-general.php:194
630
  msgid "Track all pages"
631
  msgstr "Alle Seiten (Kategorien, Archive, etc.) berücksichtigen"
632
 
633
+ #: wp-statistics/includes/settings/tabs/wps-general.php:209
634
  msgid "Strip parameters from URI"
635
  msgstr "Parameter aus URLs entfernen"
636
 
637
+ #: wp-statistics/includes/settings/tabs/wps-general.php:215
638
  msgid "This will remove anything after the ? in a URL."
639
  msgstr "Diese Option entfernt alle Parameter nach einem \"?\" in URLs."
640
 
641
+ #: wp-statistics/includes/settings/tabs/wps-general.php:223
642
  msgid "Disable hits column in post/pages list"
643
  msgstr "\"Aufrufe\"-Spalte in Beiträgen/Seiten-Listen im Admin-Bereich deaktivieren"
644
 
645
+ #: wp-statistics/includes/settings/tabs/wps-general.php:234
646
  msgid "Miscellaneous"
647
  msgstr "Sonstige Einstellungen"
648
 
649
+ #: wp-statistics/includes/settings/tabs/wps-general.php:239
650
  msgid "Show stats in menu bar"
651
  msgstr "Statistiken in der Menüleiste anzeigen"
652
 
653
+ #: wp-statistics/includes/settings/tabs/wps-general.php:244
654
  msgid "No"
655
  msgstr "Nein"
656
 
657
+ #: wp-statistics/includes/settings/tabs/wps-general.php:245
658
  msgid "Yes"
659
  msgstr "Ja"
660
 
661
+ #: wp-statistics/includes/settings/tabs/wps-general.php:247
662
  msgid "Show stats in admin menu bar"
663
  msgstr "Zeige Statistiken in der Admin-Menüleiste"
664
 
665
+ #: wp-statistics/includes/settings/tabs/wps-general.php:253
666
  msgid "Hide admin notices about non active features"
667
  msgstr "Benachrichtigungen im Admin-Bereich verstecken"
668
 
669
+ #: wp-statistics/includes/settings/tabs/wps-general.php:259
670
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
671
  msgstr "WP Statistics zeigt standardmäßig eine Benachrichtigung auf allen Admin-Seiten an, wenn eines der Basis-Features deaktiviert ist. Diese Option schaltet diese Benachrichtigungen aus."
672
 
673
+ #: wp-statistics/includes/settings/tabs/wps-general.php:265
674
  msgid "Delete the manual"
675
  msgstr "Benutzerdokumentation löschen"
676
 
677
+ #: wp-statistics/includes/settings/tabs/wps-general.php:271
678
  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."
679
  msgstr "WP Statistics speichert standardmäßig die Benutzerdokumentation im Plugin-Verzeichnis (ca. 5 MB). Diese Option löscht diese Dateien."
680
 
681
+ #: wp-statistics/includes/settings/tabs/wps-general.php:276
682
  msgid "Search Engines"
683
  msgstr "Suchmaschinen"
684
 
685
+ #: wp-statistics/includes/settings/tabs/wps-general.php:293
686
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
687
  msgstr "Es ist nicht erlaubt, alle Suchmaschinen zu deaktivieren. Wenn hier alle Suchmaschinen deaktiviert werden, ignoriert WP Statistics diese Einstellung."
688
 
689
+ #: wp-statistics/includes/settings/tabs/wps-general.php:308
690
  msgid "disable"
691
  msgstr "Deaktivieren"
692
 
693
+ #: wp-statistics/includes/settings/tabs/wps-general.php:309
694
  msgid "Disable %s from data collection and reporting."
695
  msgstr "Daten von %s aus der Statistik ausschließen."
696
 
697
+ #: wp-statistics/includes/settings/tabs/wps-general.php:315
698
  msgid "Charts"
699
  msgstr "Diagramme"
700
 
701
+ #: wp-statistics/includes/settings/tabs/wps-general.php:320
702
  msgid "Include totals"
703
  msgstr "Gesamt-Zähler zeigen"
704
 
705
+ #: wp-statistics/includes/settings/tabs/wps-general.php:326
706
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
707
  msgstr "Zeige eine Linie mit dem Gesamt-Zähler in Diagrammen mit mehreren Verläufen."
708
 
709
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:32
710
  msgid "GeoIP settings"
711
  msgstr "GeoIP-Einstellungen"
712
 
713
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:37
714
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
715
  msgstr "IP-Standorbestimmung mittels GeoLite2, zur Verfügung gestellt von MaxMind - %s."
716
 
717
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:47
718
  msgid "GeoIP collection"
719
  msgstr "GeoIP verwenden"
720
 
721
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:53
722
  msgid "For get more information and location (country) from visitor, enable this feature."
723
  msgstr "Wenn aktiviert, ermittelt WP Statistics Standort-Informationen (zumindest das Land) aus der IP-Adresse der Besucher."
724
 
725
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:59
726
  msgid "Update GeoIP Info"
727
  msgstr "GeoIP aktualisieren"
728
 
729
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:64
730
  msgid "Download GeoIP Database"
731
  msgstr "GeoIP-Datenbank herunterladen"
732
 
733
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:71
734
  msgid "Schedule monthly update of GeoIP DB"
735
  msgstr "Automat. Aktualisierung von GeoIP"
736
 
737
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:97
738
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
739
  msgstr "Die Aktualisierung der GeoIP-Datenbank wird monatlich zwei Tage nach dem ersten Dienstag durchgeführt."
740
 
741
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:98
742
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
743
  msgstr "Diese Option lädt die GeoIP-Datenbank auch dann herunter, wenn die Dateigröße der lokalen Datenbank kleiner als 1 kB ist (was in den meisten Fällen bedeutet, dass die Datei bisher noch nicht heruntergeladen wurde)."
744
 
745
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:104
746
  msgid "Populate missing GeoIP after update of GeoIP DB"
747
  msgstr "Fehlende GeoIP-Daten nach Aktualisierung einpflegen"
748
 
749
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:110
750
  msgid "Update any missing GeoIP data after downloading a new database."
751
  msgstr "Aktualisiert alle fehlenden GeoIP-Daten nachdem eine neue GeoIP-Datenbank herunter geladen wurde."
752
 
753
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:116
754
  msgid "Country code for private IP addresses"
755
  msgstr "Länderkennung für private IP-Adressen"
756
 
757
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:121
758
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
759
  msgstr "Die internationale Standard-Länderkennung (zwei Buchstaben, z.B. US = United States, CA = Canada, etc.) für private, nicht-routbare IP-Adressen wie 10.0.0.1, 192.158.1.1, 127.0.0.1 usw. Verwende \"000\" (drei Nullen), um private IP-Adressen als \"unbekannt\" zu definieren."
760
 
761
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:132
762
  msgid "GeoIP collection is disabled due to the following reasons:"
763
  msgstr "Die GeoIP-Funktion ist aus den folgenden Gründen deaktiviert:"
764
 
765
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:135
766
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
767
  msgstr "GeoIP benötigt die PHP-Version %s oder höher, die installierte PHP-Version ist "
768
 
769
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:140
770
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
771
  msgstr "GeoIP benötigt die cURL PHP-Erweiterung, die mit deiner PHP Version nicht geladen wird!"
772
 
773
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:146
774
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
775
  msgstr "GeoIP benötigt die BC Math PHP-Erweiterung, die mit deiner PHP Version nicht geladen wird!"
776
 
777
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:152
778
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
779
  msgstr "PHP Safe Mode wurde erkannt! GeoIP funktioniert mit aktiviertem PHP Safe Mode nicht!"
780
 
781
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
782
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
783
  msgstr "Diese Einstellung löscht täglich Daten aus der Datenbank. Bist du sicher, dass du diese Option aktivieren willst?"
784
 
785
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
786
  msgid "Days"
787
  msgstr "Tage"
788
 
789
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
790
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
791
  msgstr "Anzahl der Tage, für die die Statistik-Daten gespeichert werden sollen. Minimum-Wert ist 30 Tage, ungültige Werte deaktivieren die automatisierte tägliche Wartung."
792
 
793
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:44
794
  msgid "Common Report Options"
795
  msgstr "Allgemeine Einstellungen"
796
 
797
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:49
798
  msgid "E-mail addresses"
799
  msgstr "E-Mail-Adressen"
800
 
801
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:54
802
  msgid "A comma separated list of e-mail addresses to send reports to."
803
  msgstr "Komma-getrennte Liste an E-Mail-Adressen, an die Benachrichtigungen versendet werden sollen."
804
 
805
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:59
806
  msgid "Update Reports"
807
  msgstr "Update-Benachrichtigungen"
808
 
809
+ #: wp-statistics/includes/log/exclusions.php:24
810
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:64
811
  msgid "Browscap"
812
  msgstr "browscap.ini"
813
 
814
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:70
815
  msgid "Send a report whenever the browscap.ini is updated."
816
  msgstr "Bei Update der \"browscap.ini\"-Datei benachrichtigen"
817
 
818
+ #: wp-statistics/includes/log/exclusions.php:24
819
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:76
820
  msgid "GeoIP"
821
  msgstr "GeoIP"
822
 
823
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:82
824
  msgid "Send a report whenever the GeoIP database is updated."
825
  msgstr "Bei Update der GeoIP-Datenbank benachrichtigen"
826
 
827
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:88
828
  msgid "Pruning"
829
  msgstr "DB-Bereinigung"
830
 
831
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:94
832
  msgid "Send a report whenever the pruning of database is run."
833
  msgstr "Bei Datenbank-Bereinigung benachrichtigen"
834
 
835
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:100
836
  msgid "Upgrade"
837
  msgstr "Plugin-Update"
838
 
839
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:106
840
  msgid "Send a report whenever the plugin is upgraded."
841
  msgstr "Bei Update des Plugins benachrichtigen"
842
 
843
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:111
844
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:116
845
+ #: wp-statistics/schedule.php:221
846
  msgid "Statistical reporting"
847
  msgstr "Statistik-Reports"
848
 
849
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:129
850
  msgid "Schedule"
851
  msgstr "Zeitplan"
852
 
853
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:153
854
  msgid "Select how often to receive statistical report."
855
  msgstr "Wähle, wie oft ein Statistik-Report versendet werden soll."
856
 
857
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:159
858
  msgid "Send reports via"
859
  msgstr "Reports senden via"
860
 
861
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:165
862
  msgid "Email"
863
  msgstr "E-Mail"
864
 
865
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:167
866
  msgid "SMS"
867
  msgstr "SMS"
868
 
869
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:170
870
  msgid "Select delivery method for statistical report."
871
  msgstr "Wähle die Art der Statistik-Reports."
872
 
873
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
874
  msgid "Note: To send SMS text messages please install the %s plugin."
875
  msgstr "Hinweis: Um Statistik-Reports per SMS versenden zu können, muss das Plugin %s installiert werden."
876
 
877
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:173
878
  msgid "WordPress SMS"
879
  msgstr "WordPress SMS"
880
 
881
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:180
882
  msgid "Report body"
883
  msgstr "Report-Text"
884
 
885
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:185
886
  msgid "Enter the contents of the report."
887
  msgstr "Gib den gewünschten Inhalt der Statistik-Reports hier ein."
888
 
889
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:187
890
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
891
  msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes von WP Statistics (siehe Benutzerdokumentation) können im Nachrichtentext verwendet werden. Hier sind ein paar Beispiele:"
892
 
893
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:188
894
+ #: wp-statistics/widget.php:38 wp-statistics/widget.php:247
895
+ #: wp-statistics/wp-statistics.php:621
896
  msgid "User Online"
897
  msgstr "Besucher aktuell"
898
 
899
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:189
900
+ #: wp-statistics/widget.php:52 wp-statistics/widget.php:253
901
  msgid "Today Visitor"
902
  msgstr "Besucher heute"
903
 
904
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:190
905
+ #: wp-statistics/widget.php:45 wp-statistics/widget.php:250
906
  msgid "Today Visit"
907
  msgstr "Aufrufe heute"
908
 
909
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:191
910
+ #: wp-statistics/widget.php:66 wp-statistics/widget.php:259
911
  msgid "Yesterday Visitor"
912
  msgstr "Besucher gestern"
913
 
914
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:192
915
+ #: wp-statistics/widget.php:59
916
  msgid "Yesterday Visit"
917
  msgstr "Aufrufe gestern"
918
 
919
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:193
920
+ #: wp-statistics/widget.php:101 wp-statistics/widget.php:274
921
  msgid "Total Visitor"
922
  msgstr "Besucher gesamt"
923
 
924
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:194
925
+ #: wp-statistics/widget.php:94 wp-statistics/widget.php:271
926
  msgid "Total Visit"
927
  msgstr "Aufrufe gesamt"
928
 
929
+ #: wp-statistics/shortcode.php:175
930
  msgid "None"
931
  msgstr "Keine"
932
 
933
+ #: wp-statistics/includes/settings/wps-settings.php:108
934
  msgid "About"
935
  msgstr "Über das Plugin"
936
 
937
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
938
  msgid "Dashboard"
939
  msgstr "Admin-Übersicht"
940
 
941
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
942
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
943
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
944
  msgid "The following items are global to all users."
945
  msgstr "Diese Einstellungen sind global für alle Benutzer gültig."
946
 
947
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
948
  msgid "Disable dashboard widgets"
949
  msgstr "Admin-Widgets deaktivieren"
950
 
951
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
952
  msgid "Disable the dashboard widgets."
953
  msgstr "Feature aktivieren oder deaktivieren"
954
 
955
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
956
  msgid "Page/Post Editor"
957
  msgstr "Seiten-/Beitrags-Editor"
958
 
959
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
960
  msgid "Disable post/page editor widget"
961
  msgstr "Editor-Widget deaktivieren"
962
 
963
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
964
  msgid "Disable the page/post editor widget."
965
  msgstr "Feature aktivieren oder deaktivieren"
966
 
967
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
968
  msgid "Map type"
969
  msgstr "Karten-Typ"
970
 
971
+ #: wp-statistics/includes/functions/functions.php:440
972
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
973
  msgid "Google"
974
  msgstr "Google"
975
 
976
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
977
  msgid "JQVMap"
978
  msgstr "JQVMap"
979
 
980
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
981
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
982
  msgstr "\"Google\" verwendet das externe Karten-Service von Google, um die letzten Besucher anzuzeigen. Diese Option benötigt eine Verbindung zum Google Karten-Service."
983
 
984
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
985
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
986
  msgstr "\"JQVMap\" verwendet die zugehörige Javascript Karten-Bibliothek, um die letzten Besucher anzuzeigen und benötigt keine externen Services."
987
 
988
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
989
  msgid "Disable map"
990
  msgstr "Karte deaktivieren"
991
 
992
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:95
993
  msgid "Disable the map display"
994
  msgstr "Anzeige der Weltkarte auf der Statistik-Übersicht deaktiveren."
995
 
996
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:101
997
  msgid "Get country location from Google"
998
  msgstr "Länderinformation von Google abfragen"
999
 
1000
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:107
1001
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
1002
  msgstr "Diese Option kann Leistungseinbußen bei der Anzeige der Statistiken zur Folge haben und ist nur gültig, wenn der Karten-Typ auf \"Google\" gesetzt ist."
1003
 
1004
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:15
1005
  msgid "WP Statisitcs Removal"
1006
  msgstr "WP Statistics - Daten entfernen"
1007
 
1008
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:20
1009
  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."
1010
  msgstr "Das normale Deaktivieren und Löschen von WP Statistics führt keine Änderungen an deiner Datenbank und den Plugin-Einstellungen durch. Wenn du alle Daten des Plugins also tatsächlich löschen willst, kannst du das mit dieser Funktion tun."
1011
 
1012
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:23
1013
  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."
1014
  msgstr "Die Daten werden aus der Datenbank gelöscht, sobald dieses Formular abgeschickt wird. WP Statistics wird danach noch so lange in deinem Admin-Menü angezeigt, bis du eine andere Admin-Seite aufrufst."
1015
 
1016
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:29
1017
  msgid "Remove data and settings"
1018
  msgstr "Daten und Einstellungen entfernen"
1019
 
1020
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:34
1021
  msgid "Remove"
1022
  msgstr "Entfernen"
1023
 
1024
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:35
1025
  msgid "Remove data and settings, this action cannot be undone."
1026
  msgstr "Alle Daten und Plugin-Einstellungen werden aus der Datenbank gelöscht. ACHTUNG: Diese Aktion kann nicht rückgängig gemacht werden!"
1027
 
1028
+ #: wp-statistics/includes/settings/wps-settings.php:100
1029
  msgid "General"
1030
  msgstr "Allgemeines"
1031
 
1032
+ #: wp-statistics/includes/settings/wps-settings.php:101
1033
  msgid "Notifications"
1034
  msgstr "Benachrichtigungen"
1035
 
1036
+ #: wp-statistics/includes/settings/wps-settings.php:102
1037
  msgid "Dashboard/Overview"
1038
  msgstr "Admin- & Statistik-Übersicht"
1039
 
1040
+ #: wp-statistics/includes/settings/wps-settings.php:106
1041
  msgid "Maintenance"
1042
  msgstr "Datenbank-Wartung"
1043
 
1044
+ #: wp-statistics/includes/settings/wps-settings.php:107
1045
  msgid "Removal"
1046
  msgstr "Deinstallation"
1047
 
1048
+ #: wp-statistics/includes/settings/tabs/wps-access-level.php:85
1049
+ #: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
1050
+ #: wp-statistics/includes/settings/tabs/wps-externals.php:286
1051
+ #: wp-statistics/includes/settings/tabs/wps-general.php:349
1052
+ #: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
1053
+ #: wp-statistics/includes/settings/tabs/wps-notifications.php:201
1054
+ #: wp-statistics/includes/settings/tabs/wps-overview-display.php:116
1055
+ #: wp-statistics/includes/settings/tabs/wps-removal.php:42
1056
  msgid "Update"
1057
  msgstr "Einstellungen speichern"
1058
 
1059
+ #: wp-statistics/schedule.php:10
1060
  msgid "Once Weekly"
1061
  msgstr "Ein Mal wöchentlich"
1062
 
1063
+ #: wp-statistics/schedule.php:17
1064
  msgid "Once Every 2 Weeks"
1065
  msgstr "Alle zwei Wochen"
1066
 
1067
+ #: wp-statistics/schedule.php:24
1068
  msgid "Once Every 4 Weeks"
1069
  msgstr "Alle vier Wochen"
1070
 
1071
+ #: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
1072
+ #: wp-statistics/wp-statistics.php:469
1073
  msgid "Statistics"
1074
  msgstr "Statistik"
1075
 
1076
+ #: wp-statistics/widget.php:15
1077
  msgid "Show site stats in sidebar."
1078
  msgstr "Website-Statistiken in der Sidebar anzeigen."
1079
 
1080
+ #: wp-statistics/widget.php:73 wp-statistics/widget.php:262
1081
  msgid "Week Visit"
1082
  msgstr "Besucher pro Woche"
1083
 
1084
+ #: wp-statistics/widget.php:80 wp-statistics/widget.php:265
1085
  msgid "Month Visit"
1086
  msgstr "Aufrufe im Monat"
1087
 
1088
+ #: wp-statistics/widget.php:87 wp-statistics/widget.php:268
1089
  msgid "Years Visit"
1090
  msgstr "Aufrufe im Jahr"
1091
 
1092
+ #: wp-statistics/widget.php:108 wp-statistics/widget.php:277
1093
  msgid "Total Page Views"
1094
  msgstr "Gesamt Seitenaufrufe"
1095
 
1096
+ #: wp-statistics/widget.php:116
1097
  msgid "Search Engine referred"
1098
  msgstr "Von Suchmaschinen-Verweis"
1099
 
1100
+ #: wp-statistics/widget.php:123 wp-statistics/widget.php:300
1101
  msgid "Total Posts"
1102
  msgstr "Gesamt Beiträge"
1103
 
1104
+ #: wp-statistics/widget.php:130 wp-statistics/widget.php:303
1105
  msgid "Total Pages"
1106
  msgstr "Gesamt Seiten"
1107
 
1108
+ #: wp-statistics/widget.php:137 wp-statistics/widget.php:306
1109
  msgid "Total Comments"
1110
  msgstr "Gesamt Kommentare"
1111
 
1112
+ #: wp-statistics/widget.php:144 wp-statistics/widget.php:309
1113
  msgid "Total Spams"
1114
  msgstr "Gesamt Spam"
1115
 
1116
+ #: wp-statistics/widget.php:151 wp-statistics/widget.php:312
1117
  msgid "Total Users"
1118
  msgstr "Gesamt Benutzer"
1119
 
1120
+ #: wp-statistics/widget.php:158 wp-statistics/widget.php:315
1121
  msgid "Average Posts"
1122
  msgstr "Durchschnittliche Artikel"
1123
 
1124
+ #: wp-statistics/widget.php:165 wp-statistics/widget.php:318
1125
  msgid "Average Comments"
1126
  msgstr "Durchschnittliche Kommentare"
1127
 
1128
+ #: wp-statistics/widget.php:172 wp-statistics/widget.php:321
1129
  msgid "Average Users"
1130
  msgstr "Durchschnittliche Benutzer"
1131
 
1132
+ #: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
1133
+ #: wp-statistics/widget.php:324
1134
  msgid "Last Post Date"
1135
  msgstr "Letztes Beitrags-Datum"
1136
 
1137
+ #: wp-statistics/widget.php:240
1138
  msgid "Name"
1139
  msgstr "Name"
1140
 
1141
+ #: wp-statistics/widget.php:244
1142
  msgid "Items"
1143
  msgstr "Elemente"
1144
 
1145
+ #: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:646
1146
  msgid "Yesterday visit"
1147
  msgstr "Aufrufe gestern"
1148
 
1149
+ #: wp-statistics/widget.php:280
1150
  msgid "Search Engine Referred"
1151
  msgstr "Von Suchmaschinen-Verweis"
1152
 
1153
+ #: wp-statistics/widget.php:283
1154
  msgid "Select type of search engine"
1155
  msgstr "Wähle die Suchmaschine"
1156
 
1157
+ #: wp-statistics/wp-statistics.php:122
1158
  msgid "WP Statistics has been removed, please disable and delete it."
1159
  msgstr "WP Statistics wurde entfernt, du kannst das Plugin jetzt deaktivieren und löschen."
1160
 
1161
+ #: wp-statistics/wp-statistics.php:54
 
1162
  msgid "WP Statistics"
1163
  msgstr "WP Statistics"
1164
 
1165
+ #: wp-statistics/wp-statistics.php:55
 
1166
  msgid "Complete statistics for your WordPress site."
1167
  msgstr "Umfangreiche Statistik für WordPress."
1168
 
1169
+ #: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
1170
+ #: wp-statistics/wp-statistics.php:523
1171
  msgid "Settings"
1172
  msgstr "Einstellungen"
1173
 
1174
+ #: wp-statistics/wp-statistics.php:325
1175
  msgid "Click here to visit the plugin on WordPress.org"
1176
  msgstr "Klicke hier, um die Plugin-Seite auf WordPress.org zu besuchen"
1177
 
1178
+ #: wp-statistics/wp-statistics.php:325
1179
  msgid "Visit WordPress.org page"
1180
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
1181
 
1182
+ #: wp-statistics/wp-statistics.php:328
1183
  msgid "Click here to rate and review this plugin on WordPress.org"
1184
  msgstr "Klicke hier, um das Plugin auf WordPress.org zu bewerten un