Version Description
- Added: Extra check that the co-efficient setting is valid.
- Updated: Format of the dbDetla scripts to match the guidelines from WordPress, thanks kitchin.
- Updated: Handled some WP_DEBUG warning messages, thanks kitchin.
- Updated: Multiple additional WP_DEBUG warning fixes.
- Updated: Arabic (ar) language.
- Updated: Polish (pl_PL) language.
- Fixed: Typo in variable name which causes the robots list to be overwritten with the defaults incorrectly.
- Fixed: Access role exclusions and search engine exclusions options not displaying correctly in the settings page.
- Removed: Database upgrade code to add the unique index on the visitors table due to issues with multiple users. Will add back in a future release as a user selectable option.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 7.0.3 |
Comparing to | |
See all releases |
Code changes from version 7.0.2 to 7.0.3
- includes/classes/statistics.class.php +3 -0
- includes/functions/functions.php +14 -2
- includes/log/exclusions.php +4 -1
- includes/log/last-search.php +2 -0
- includes/log/last-visitor.php +21 -19
- includes/log/log.php +1 -1
- includes/optimization/wps-optimization.php +4 -1
- includes/settings/tabs/wps-access-level.php +10 -4
- includes/settings/tabs/wps-general.php +8 -3
- includes/settings/tabs/wps-geoip.php +2 -1
- includes/settings/tabs/wps-maintenance.php +2 -1
- includes/settings/tabs/wps-overview-display.php +6 -3
- includes/settings/wps-settings.php +4 -1
- languages/default.mo +0 -0
- languages/default.po +209 -212
- languages/wp-statistics-ar.mo +0 -0
- languages/wp-statistics-ar.po +1906 -0
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +213 -213
- languages/wp_statistics-pl_PL.mo +0 -0
- languages/wp_statistics-pl_PL.po +835 -660
- readme.txt +28 -2
- wp-statistics.php +9 -3
- wps-install.php +45 -75
includes/classes/statistics.class.php
CHANGED
@@ -35,6 +35,9 @@
|
|
35 |
|
36 |
// Set the default co-efficient.
|
37 |
$this->coefficient = $this->get_option('coefficient', 1);
|
|
|
|
|
|
|
38 |
|
39 |
// This is a bit of a hack, we strip off the "includes/classes" at the end of the current class file's path.
|
40 |
$this->plugin_dir = substr( dirname( __FILE__ ), 0, -17 );
|
35 |
|
36 |
// Set the default co-efficient.
|
37 |
$this->coefficient = $this->get_option('coefficient', 1);
|
38 |
+
|
39 |
+
// Double check the co-efficient setting to make sure it's not been set to 0.
|
40 |
+
if( $this->coefficient <= 0 ) { $this->coefficient = 1; }
|
41 |
|
42 |
// This is a bit of a hack, we strip off the "includes/classes" at the end of the current class file's path.
|
43 |
$this->plugin_dir = substr( dirname( __FILE__ ), 0, -17 );
|
includes/functions/functions.php
CHANGED
@@ -235,7 +235,13 @@
|
|
235 |
|
236 |
// Lookup the post title.
|
237 |
$post = get_post($id);
|
238 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
|
240 |
// Add the current post to the array.
|
241 |
$uris[] = array( $out[0], wp_statistics_pages( 'total', $out[0] ), $id, $title );
|
@@ -756,7 +762,13 @@
|
|
756 |
// If we're not using online looksups, load the country co-ordinates from our local copy.
|
757 |
include_once( dirname( __FILE__ ) . "/country-coordinates.php");
|
758 |
|
759 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
760 |
}
|
761 |
|
762 |
// If we couldn't find the co-ordinates, return 0.
|
235 |
|
236 |
// Lookup the post title.
|
237 |
$post = get_post($id);
|
238 |
+
|
239 |
+
if( is_object( $post ) ) {
|
240 |
+
$title = $post->post_title;
|
241 |
+
}
|
242 |
+
else {
|
243 |
+
$title = '';
|
244 |
+
}
|
245 |
|
246 |
// Add the current post to the array.
|
247 |
$uris[] = array( $out[0], wp_statistics_pages( 'total', $out[0] ), $id, $title );
|
762 |
// If we're not using online looksups, load the country co-ordinates from our local copy.
|
763 |
include_once( dirname( __FILE__ ) . "/country-coordinates.php");
|
764 |
|
765 |
+
if( array_key_exists( $country, $CountryCoordinates ) ) {
|
766 |
+
$result = $CountryCoordinates[$country][$coordinate];
|
767 |
+
}
|
768 |
+
else {
|
769 |
+
$result = '';
|
770 |
+
}
|
771 |
+
|
772 |
}
|
773 |
|
774 |
// If we couldn't find the co-ordinates, return 0.
|
includes/log/exclusions.php
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
|
15 |
$excluded_reasons = array('Robot','IP Match','Self Referral','Login Page','Admin Page','User Role');
|
16 |
$excluded_reason_tags = array('Robot' => 'robot','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole', 'Total' => 'total');
|
17 |
-
$excluded_results = array();
|
18 |
$excluded_total = 0;
|
19 |
|
20 |
foreach( $excluded_reasons as $reason ) {
|
@@ -37,6 +37,9 @@
|
|
37 |
// If we're returned an error or a FALSE value, then let's make sure it's set to a numerical 0.
|
38 |
if( $excluded_results[$reason][$i] < 1 ) { $excluded_results[$reason][$i] = 0; }
|
39 |
|
|
|
|
|
|
|
40 |
// We're totalling things up here for use later.
|
41 |
$excluded_results['Total'][$i] += $excluded_results[$reason][$i];
|
42 |
$excluded_total += $excluded_results[$reason][$i];
|
14 |
|
15 |
$excluded_reasons = array('Robot','IP Match','Self Referral','Login Page','Admin Page','User Role');
|
16 |
$excluded_reason_tags = array('Robot' => 'robot','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole', 'Total' => 'total');
|
17 |
+
$excluded_results = array('Total' => array() );
|
18 |
$excluded_total = 0;
|
19 |
|
20 |
foreach( $excluded_reasons as $reason ) {
|
37 |
// If we're returned an error or a FALSE value, then let's make sure it's set to a numerical 0.
|
38 |
if( $excluded_results[$reason][$i] < 1 ) { $excluded_results[$reason][$i] = 0; }
|
39 |
|
40 |
+
// Make sure to initialize the results so we don't get warnings when WP_DEBUG is enabled.
|
41 |
+
if( !array_key_exists( $i, $excluded_results['Total'] ) ) { $excluded_results['Total'][$i] = 0; }
|
42 |
+
|
43 |
// We're totalling things up here for use later.
|
44 |
$excluded_results['Total'][$i] += $excluded_results[$reason][$i];
|
45 |
$excluded_total += $excluded_results[$reason][$i];
|
includes/log/last-search.php
CHANGED
@@ -91,6 +91,8 @@
|
|
91 |
|
92 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
93 |
|
|
|
|
|
94 |
foreach($result as $items) {
|
95 |
if( !$WP_Statistics->Search_Engine_QueryString($items->referred) ) continue;
|
96 |
|
91 |
|
92 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
93 |
|
94 |
+
include_once( dirname( __FILE__ ) . "/../functions/country-codes.php");
|
95 |
+
|
96 |
foreach($result as $items) {
|
97 |
if( !$WP_Statistics->Search_Engine_QueryString($items->referred) ) continue;
|
98 |
|
includes/log/last-visitor.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
}
|
20 |
}
|
21 |
|
22 |
-
if( $_get ) {
|
23 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE '%{$_get}%'");
|
24 |
} else {
|
25 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
|
@@ -31,25 +31,27 @@
|
|
31 |
<?php screen_icon('options-general'); ?>
|
32 |
<h2><?php _e('Recent Visitors', 'wp_statistics'); ?></h2>
|
33 |
<ul class="subsubsub">
|
34 |
-
<li class="all"><a <?php if(
|
35 |
<?php
|
36 |
-
if($_var
|
37 |
-
$
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
foreach( $Browsers as $Browser ) {
|
43 |
-
if($Browser == null) continue;
|
44 |
|
45 |
-
$
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
-
} elseif($_var) {
|
51 |
-
if($_get) { $current = 'class="current" '; } else { $current = ""; }
|
52 |
-
echo "| <li><a {$current} href='?page=wps_visitors_menu&{$_var}={$_get}'>{$_get} <span class='count'>({$total})</span></a></li>";
|
53 |
}
|
54 |
?>
|
55 |
</ul>
|
@@ -58,7 +60,7 @@
|
|
58 |
<div class="meta-box-sortables">
|
59 |
<div class="postbox">
|
60 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
61 |
-
<?php if($_var) { ?>
|
62 |
<h3 class="hndle"><span><?php _e('Search for', 'wp_statistics'); ?>: <?php echo $_get; ?></span></h3>
|
63 |
<?php } else { ?>
|
64 |
<h3 class="hndle"><span><?php _e('Recent Visitor Statistics', 'wp_statistics'); ?></span></h3>
|
@@ -79,7 +81,7 @@
|
|
79 |
$end = $Pagination->getEntryEnd();
|
80 |
|
81 |
// Retrieve MySQL data
|
82 |
-
if( $_get ) {
|
83 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE '%{$_get}%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
84 |
} else {
|
85 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
19 |
}
|
20 |
}
|
21 |
|
22 |
+
if( isset( $_get ) ) {
|
23 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE '%{$_get}%'");
|
24 |
} else {
|
25 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
|
31 |
<?php screen_icon('options-general'); ?>
|
32 |
<h2><?php _e('Recent Visitors', 'wp_statistics'); ?></h2>
|
33 |
<ul class="subsubsub">
|
34 |
+
<li class="all"><a <?php if(!isset($_get)) { echo 'class="current"'; } ?>href="?page=wps_visitors_menu"><?php _e('All', 'wp_statistics'); ?> <span class="count">(<?php echo $total_visitor; ?>)</span></a></li>
|
35 |
<?php
|
36 |
+
if( isset( $_var ) ) {
|
37 |
+
if($_var == 'agent') {
|
38 |
+
$Browsers = wp_statistics_ua_list();
|
39 |
+
$i = 0;
|
40 |
+
$Total = count( $Browsers );
|
41 |
+
$spacer = " |";
|
|
|
|
|
42 |
|
43 |
+
foreach( $Browsers as $Browser ) {
|
44 |
+
if($Browser == null) continue;
|
45 |
+
|
46 |
+
$i++;
|
47 |
+
if($_get == $Browser) { $current = 'class="current" '; } else { $current = ""; }
|
48 |
+
if( $i == $Total ) { $spacer = ""; }
|
49 |
+
echo "| <li><a " . $current . "href='?page=wps_visitors_menu&agent=" . $Browser . "'> " . __($Browser, 'wp_statistics') ." <span class='count'>(" . number_format_i18n(wp_statistics_useragent($Browser)) .")</span></a>" . $spacer . "</li>";
|
50 |
+
}
|
51 |
+
} elseif(isset($_var)) {
|
52 |
+
if(isset($_get)) { $current = 'class="current" '; } else { $current = ""; }
|
53 |
+
echo "| <li><a {$current} href='?page=wps_visitors_menu&{$_var}={$_get}'>{$_get} <span class='count'>({$total})</span></a></li>";
|
54 |
}
|
|
|
|
|
|
|
55 |
}
|
56 |
?>
|
57 |
</ul>
|
60 |
<div class="meta-box-sortables">
|
61 |
<div class="postbox">
|
62 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
63 |
+
<?php if(isset($_var)) { ?>
|
64 |
<h3 class="hndle"><span><?php _e('Search for', 'wp_statistics'); ?>: <?php echo $_get; ?></span></h3>
|
65 |
<?php } else { ?>
|
66 |
<h3 class="hndle"><span><?php _e('Recent Visitor Statistics', 'wp_statistics'); ?></span></h3>
|
81 |
$end = $Pagination->getEntryEnd();
|
82 |
|
83 |
// Retrieve MySQL data
|
84 |
+
if( isset($_get) ) {
|
85 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE '%{$_get}%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
86 |
} else {
|
87 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
includes/log/log.php
CHANGED
@@ -899,7 +899,7 @@
|
|
899 |
|
900 |
echo "<div>{$i} - {$uri[3]}</div>";
|
901 |
echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
|
902 |
-
echo "<div class='left-div'><a href='{$
|
903 |
echo "</div>";
|
904 |
|
905 |
if( $i > 9 ) { break; }
|
899 |
|
900 |
echo "<div>{$i} - {$uri[3]}</div>";
|
901 |
echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
|
902 |
+
echo "<div class='left-div'><a href='{$uri[0]}'>{$uri[0]}</a></div>";
|
903 |
echo "</div>";
|
904 |
|
905 |
if( $i > 9 ) { break; }
|
includes/optimization/wps-optimization.php
CHANGED
@@ -6,7 +6,10 @@
|
|
6 |
}
|
7 |
}
|
8 |
|
9 |
-
|
|
|
|
|
|
|
10 |
{
|
11 |
case 'export':
|
12 |
$current_tab = 1;
|
6 |
}
|
7 |
}
|
8 |
|
9 |
+
$selected_tab = "";
|
10 |
+
if( array_key_exists( 'tab', $_GET ) ) { $selected_tab = $_GET['tab']; }
|
11 |
+
|
12 |
+
switch( $selected_tab )
|
13 |
{
|
14 |
case 'export':
|
15 |
$current_tab = 1;
|
includes/settings/tabs/wps-access-level.php
CHANGED
@@ -8,15 +8,20 @@ if( $wps_nonce_valid ) {
|
|
8 |
foreach( $role_list as $role ) {
|
9 |
$role_post = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
10 |
|
|
|
|
|
11 |
$new_option = str_replace( "wps_", "", $role_post );
|
12 |
-
$WP_Statistics->store_option($new_option, $
|
|
|
13 |
}
|
14 |
|
15 |
$wps_option_list = array_merge( $wps_option_list, array("wps_read_capability","wps_manage_capability","wps_record_exclusions","wps_robotlist","wps_exclude_ip","wps_exclude_loginpage","wps_exclude_adminpage" ) );
|
16 |
|
17 |
foreach( $wps_option_list as $option ) {
|
18 |
$new_option = str_replace( "wps_", "", $option );
|
19 |
-
|
|
|
|
|
20 |
}
|
21 |
}
|
22 |
|
@@ -103,14 +108,15 @@ if( $wps_nonce_valid ) {
|
|
103 |
$role_option_list = '';
|
104 |
|
105 |
foreach( $role_list as $role ) {
|
106 |
-
$
|
|
|
107 |
$role_option_list .= $option_name . ',';
|
108 |
?>
|
109 |
|
110 |
<tr valign="top">
|
111 |
<th scope="row"><label for="<?php echo $option_name;?>"><?php _e($role, 'wp_statistics'); ?>:</label></th>
|
112 |
<td>
|
113 |
-
<input id="<?php echo $option_name;?>" type="checkbox" value="1" name="<?php echo $option_name;?>" <?php echo get_option($
|
114 |
<p class="description"><?php echo sprintf(__('Exclude %s role from data collection.', 'wp_statistics'), $role); ?></p>
|
115 |
</td>
|
116 |
</tr>
|
8 |
foreach( $role_list as $role ) {
|
9 |
$role_post = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
10 |
|
11 |
+
if( array_key_exists( $role_post, $_POST ) ) { $value = $_POST[$role_post]; } else { $value = ''; }
|
12 |
+
|
13 |
$new_option = str_replace( "wps_", "", $role_post );
|
14 |
+
$WP_Statistics->store_option($new_option, $value);
|
15 |
+
|
16 |
}
|
17 |
|
18 |
$wps_option_list = array_merge( $wps_option_list, array("wps_read_capability","wps_manage_capability","wps_record_exclusions","wps_robotlist","wps_exclude_ip","wps_exclude_loginpage","wps_exclude_adminpage" ) );
|
19 |
|
20 |
foreach( $wps_option_list as $option ) {
|
21 |
$new_option = str_replace( "wps_", "", $option );
|
22 |
+
|
23 |
+
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
24 |
+
$WP_Statistics->store_option($new_option, $value);
|
25 |
}
|
26 |
}
|
27 |
|
108 |
$role_option_list = '';
|
109 |
|
110 |
foreach( $role_list as $role ) {
|
111 |
+
$store_name = 'exclude_' . str_replace(" ", "_", strtolower($role) );
|
112 |
+
$option_name = 'wps_' . $store_name;
|
113 |
$role_option_list .= $option_name . ',';
|
114 |
?>
|
115 |
|
116 |
<tr valign="top">
|
117 |
<th scope="row"><label for="<?php echo $option_name;?>"><?php _e($role, 'wp_statistics'); ?>:</label></th>
|
118 |
<td>
|
119 |
+
<input id="<?php echo $option_name;?>" type="checkbox" value="1" name="<?php echo $option_name;?>" <?php echo $WP_Statistics->get_option($store_name)==true? "checked='checked'":'';?>><label for="<?php echo $option_name;?>"><?php _e('Exclude', 'wp_statistics'); ?></label>
|
120 |
<p class="description"><?php echo sprintf(__('Exclude %s role from data collection.', 'wp_statistics'), $role); ?></p>
|
121 |
</td>
|
122 |
</tr>
|
includes/settings/tabs/wps-general.php
CHANGED
@@ -5,15 +5,17 @@ if( $wps_nonce_valid ) {
|
|
5 |
foreach( $selist as $se ) {
|
6 |
$se_post = 'wps_disable_se_' . $se['tag'];
|
7 |
|
|
|
8 |
$new_option = str_replace( "wps_", "", $se_post );
|
9 |
-
$WP_Statistics->store_option($new_option, $
|
10 |
}
|
11 |
|
12 |
$wps_option_list = array("wps_useronline","wps_visits","wps_visitors","wps_pages","wps_track_all_pages","wps_disable_column","wps_check_online","wps_menu_bar","wps_coefficient","wps_stats_report","wps_time_report","wps_send_report","wps_content_report","wps_chart_totals","wps_store_ua","wps_hide_notices" );
|
13 |
|
14 |
foreach( $wps_option_list as $option ) {
|
|
|
15 |
$new_option = str_replace( "wps_", "", $option );
|
16 |
-
$WP_Statistics->store_option($new_option, $
|
17 |
}
|
18 |
}
|
19 |
|
@@ -189,15 +191,18 @@ if( $wps_nonce_valid ) {
|
|
189 |
</th>
|
190 |
</tr>
|
191 |
<?php
|
|
|
|
|
192 |
foreach( $selist as $se ) {
|
193 |
$option_name = 'wps_disable_se_' . $se['tag'];
|
|
|
194 |
$se_option_list .= $option_name . ',';
|
195 |
?>
|
196 |
|
197 |
<tr valign="top">
|
198 |
<th scope="row"><label for="<?php echo $option_name;?>"><?php _e($se['name'], 'wp_statistics'); ?>:</label></th>
|
199 |
<td>
|
200 |
-
<input id="<?php echo $option_name;?>" type="checkbox" value="1" name="<?php echo $option_name;?>" <?php echo $WP_Statistics->get_option($
|
201 |
<p class="description"><?php echo sprintf(__('Disable %s from data collection and reporting.', 'wp_statistics'), $se['name']); ?></p>
|
202 |
</td>
|
203 |
</tr>
|
5 |
foreach( $selist as $se ) {
|
6 |
$se_post = 'wps_disable_se_' . $se['tag'];
|
7 |
|
8 |
+
if( array_key_exists( $se_post, $_POST ) ) { $value = $_POST[$se_post]; } else { $value = ''; }
|
9 |
$new_option = str_replace( "wps_", "", $se_post );
|
10 |
+
$WP_Statistics->store_option($new_option, $value);
|
11 |
}
|
12 |
|
13 |
$wps_option_list = array("wps_useronline","wps_visits","wps_visitors","wps_pages","wps_track_all_pages","wps_disable_column","wps_check_online","wps_menu_bar","wps_coefficient","wps_stats_report","wps_time_report","wps_send_report","wps_content_report","wps_chart_totals","wps_store_ua","wps_hide_notices" );
|
14 |
|
15 |
foreach( $wps_option_list as $option ) {
|
16 |
+
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
17 |
$new_option = str_replace( "wps_", "", $option );
|
18 |
+
$WP_Statistics->store_option($new_option, $value);
|
19 |
}
|
20 |
}
|
21 |
|
191 |
</th>
|
192 |
</tr>
|
193 |
<?php
|
194 |
+
$se_option_list = '';
|
195 |
+
|
196 |
foreach( $selist as $se ) {
|
197 |
$option_name = 'wps_disable_se_' . $se['tag'];
|
198 |
+
$store_name = 'disable_se_' . $se['tag'];
|
199 |
$se_option_list .= $option_name . ',';
|
200 |
?>
|
201 |
|
202 |
<tr valign="top">
|
203 |
<th scope="row"><label for="<?php echo $option_name;?>"><?php _e($se['name'], 'wp_statistics'); ?>:</label></th>
|
204 |
<td>
|
205 |
+
<input id="<?php echo $option_name;?>" type="checkbox" value="1" name="<?php echo $option_name;?>" <?php echo $WP_Statistics->get_option($store_name)==true? "checked='checked'":'';?>><label for="<?php echo $option_name;?>"><?php _e('disable', 'wp_statistics'); ?></label>
|
206 |
<p class="description"><?php echo sprintf(__('Disable %s from data collection and reporting.', 'wp_statistics'), $se['name']); ?></p>
|
207 |
</td>
|
208 |
</tr>
|
includes/settings/tabs/wps-geoip.php
CHANGED
@@ -5,7 +5,8 @@ if( $wps_nonce_valid ) {
|
|
5 |
|
6 |
foreach( $wps_option_list as $option ) {
|
7 |
$new_option = str_replace( "wps_", "", $option );
|
8 |
-
|
|
|
9 |
}
|
10 |
}
|
11 |
|
5 |
|
6 |
foreach( $wps_option_list as $option ) {
|
7 |
$new_option = str_replace( "wps_", "", $option );
|
8 |
+
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
9 |
+
$WP_Statistics->store_option($new_option, $value);
|
10 |
}
|
11 |
}
|
12 |
|
includes/settings/tabs/wps-maintenance.php
CHANGED
@@ -5,7 +5,8 @@ if( $wps_nonce_valid ) {
|
|
5 |
|
6 |
foreach( $wps_option_list as $option ) {
|
7 |
$new_option = str_replace( "wps_", "", $option );
|
8 |
-
|
|
|
9 |
}
|
10 |
}
|
11 |
|
5 |
|
6 |
foreach( $wps_option_list as $option ) {
|
7 |
$new_option = str_replace( "wps_", "", $option );
|
8 |
+
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
9 |
+
$WP_Statistics->store_option($new_option, $value);
|
10 |
}
|
11 |
}
|
12 |
|
includes/settings/tabs/wps-overview-display.php
CHANGED
@@ -43,15 +43,18 @@
|
|
43 |
|
44 |
foreach( $wps_option_list as $option ) {
|
45 |
$new_option = str_replace( "wps_", "", $option );
|
46 |
-
|
|
|
|
|
|
|
47 |
}
|
48 |
|
49 |
-
for( $i = 1; $i <
|
50 |
$display_array['A'][$i] = '';
|
51 |
if( array_key_exists( $_POST['wps_display']['A'][$i], $column_a_list) ) { $display_array['A'][$i] = $_POST['wps_display']['A'][$i]; }
|
52 |
}
|
53 |
|
54 |
-
for( $i = 1; $i <
|
55 |
$display_array['B'][$i] = '';
|
56 |
if( array_key_exists( $_POST['wps_display']['B'][$i], $column_b_list) ) { $display_array['B'][$i] = $_POST['wps_display']['B'][$i]; }
|
57 |
}
|
43 |
|
44 |
foreach( $wps_option_list as $option ) {
|
45 |
$new_option = str_replace( "wps_", "", $option );
|
46 |
+
|
47 |
+
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
48 |
+
|
49 |
+
$WP_Statistics->store_option($new_option, $value);
|
50 |
}
|
51 |
|
52 |
+
for( $i = 1; $i < 6; $i++ ) {
|
53 |
$display_array['A'][$i] = '';
|
54 |
if( array_key_exists( $_POST['wps_display']['A'][$i], $column_a_list) ) { $display_array['A'][$i] = $_POST['wps_display']['A'][$i]; }
|
55 |
}
|
56 |
|
57 |
+
for( $i = 1; $i < 7; $i++) {
|
58 |
$display_array['B'][$i] = '';
|
59 |
if( array_key_exists( $_POST['wps_display']['B'][$i], $column_b_list) ) { $display_array['B'][$i] = $_POST['wps_display']['B'][$i]; }
|
60 |
}
|
includes/settings/wps-settings.php
CHANGED
@@ -11,7 +11,10 @@ if(current_user_can(wp_statistics_validate_capability($WP_Statistics->get_option
|
|
11 |
$wps_admin = true;
|
12 |
}
|
13 |
|
14 |
-
|
|
|
|
|
|
|
15 |
{
|
16 |
case 'overview':
|
17 |
if( $wps_admin ) { $current_tab = 1; } else { $current_tab = 0; }
|
11 |
$wps_admin = true;
|
12 |
}
|
13 |
|
14 |
+
$selected_tab = "";
|
15 |
+
if( array_key_exists( 'tab', $_GET ) ) { $selected_tab = $_GET['tab']; }
|
16 |
+
|
17 |
+
switch( $selected_tab )
|
18 |
{
|
19 |
case 'overview':
|
20 |
if( $wps_admin ) { $current_tab = 1; } else { $current_tab = 0; }
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-08-
|
6 |
-
"PO-Revision-Date: 2014-08-
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
@@ -33,12 +33,12 @@ msgid "Browser Statistics"
|
|
33 |
msgstr ""
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
36 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
37 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
38 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
41 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
42 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
43 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
|
@@ -65,19 +65,19 @@ msgstr ""
|
|
65 |
msgid "Browsers"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
69 |
msgid "Browsers by type"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
73 |
msgid "Platform"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
77 |
msgid "Browsers by platform"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
81 |
#, php-format
|
82 |
msgid "%s Version"
|
83 |
msgstr ""
|
@@ -88,80 +88,80 @@ msgid ""
|
|
88 |
"may not reflect current statistics!"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
92 |
msgid "Exclusions Statistics"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
96 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
97 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
98 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
99 |
msgid "10 Days"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
103 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
104 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
105 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
106 |
msgid "20 Days"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
110 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
111 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
112 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
113 |
msgid "30 Days"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
117 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
118 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
119 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
120 |
msgid "2 Months"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
124 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
125 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
126 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
127 |
msgid "3 Months"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
131 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
132 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
133 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
134 |
msgid "6 Months"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
138 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
139 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
140 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
141 |
msgid "9 Months"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
145 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
146 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
147 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
148 |
msgid "1 Year"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
152 |
#, php-format
|
153 |
msgid "Total Exclusions: %s"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
157 |
msgid "Exclusions Statistical Chart"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
161 |
msgid "Excluded hits in the last"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
166 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
@@ -170,7 +170,7 @@ msgstr ""
|
|
170 |
msgid "days"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
174 |
msgid "Number of excluded hits"
|
175 |
msgstr ""
|
176 |
|
@@ -222,25 +222,25 @@ msgstr ""
|
|
222 |
msgid "Latest Search Word Statistics"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
227 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:844
|
228 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:937
|
229 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
230 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
231 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
232 |
msgid "Map"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
236 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
237 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
238 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
239 |
msgid "Page"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
243 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
244 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
245 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
246 |
msgid "From"
|
@@ -259,11 +259,11 @@ msgstr ""
|
|
259 |
msgid "All"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
263 |
msgid "Search for"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
267 |
msgid "Recent Visitor Statistics"
|
268 |
msgstr ""
|
269 |
|
@@ -440,8 +440,8 @@ msgstr ""
|
|
440 |
|
441 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:901
|
442 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:147
|
443 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
444 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
445 |
msgid "Visits"
|
446 |
msgstr ""
|
447 |
|
@@ -546,7 +546,7 @@ msgid "Please select a value over 30 days."
|
|
546 |
msgstr ""
|
547 |
|
548 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
549 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
550 |
msgid "Export"
|
551 |
msgstr ""
|
552 |
|
@@ -559,7 +559,9 @@ msgstr ""
|
|
559 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
560 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
561 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
562 |
-
|
|
|
|
|
563 |
msgstr ""
|
564 |
|
565 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
@@ -823,15 +825,15 @@ msgstr ""
|
|
823 |
msgid "Get updates for the location and the countries, this may take a while"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
827 |
msgid "Resources/Information"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
831 |
msgid "Purging"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
835 |
msgid "Updates"
|
836 |
msgstr ""
|
837 |
|
@@ -949,60 +951,60 @@ msgid ""
|
|
949 |
"a> support is available as well."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
953 |
msgid "Access Levels"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
957 |
msgid "Required user level to view WP Statistics"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
961 |
msgid "Required user level to manage WP Statistics"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
965 |
#, php-format
|
966 |
msgid ""
|
967 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
968 |
"levels."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
972 |
msgid ""
|
973 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
974 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
975 |
"Contributor, read = Everyone."
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
979 |
msgid ""
|
980 |
"Each of the above casscades the rights upwards in the default WordPress "
|
981 |
"configuration. So for example selecting publish_posts grants the right to "
|
982 |
"Authors, Editors, Admins and Super Admins."
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
986 |
#, php-format
|
987 |
msgid ""
|
988 |
"If you need a more robust solution to delegate access you might want to look "
|
989 |
"at %s in the WordPress plugin directory."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
993 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
994 |
msgid "Exclusions"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
998 |
msgid "Record exclusions"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1002 |
msgid "Enable"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1006 |
msgid ""
|
1007 |
"This will record all the excluded hits in a separate table with the reasons "
|
1008 |
"why it was excluded but no other information. This will generate a lot of "
|
@@ -1010,44 +1012,44 @@ msgid ""
|
|
1010 |
"gets, not just actual user visits."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1014 |
msgid "Exclude User Roles"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1018 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1019 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1020 |
msgid "Exclude"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1024 |
#, php-format
|
1025 |
msgid "Exclude %s role from data collection."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1029 |
msgid "IP/Robot Exclusions"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1033 |
msgid "Robot list"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1037 |
msgid ""
|
1038 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1039 |
"must be at least 4 characters long or they will be ignored."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1043 |
msgid "Reset to Default"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1047 |
msgid "Excluded IP address list"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1051 |
msgid ""
|
1052 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1053 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
@@ -1055,414 +1057,409 @@ msgid ""
|
|
1055 |
"32 or 255.255.255.255."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1059 |
msgid "Add 10.0.0.0"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1063 |
msgid "Add 172.16.0.0"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1067 |
msgid "Add 192.168.0.0"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1071 |
msgid "Site URL Exclusions"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1075 |
msgid "Excluded login page"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1079 |
msgid "Exclude the login page for registering as a hit."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1083 |
msgid "Excluded admin pages"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1087 |
msgid "Exclude the admin pages for registering as a hit."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1091 |
msgid "Users Online"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1095 |
msgid "User online"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1099 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1100 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1101 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1102 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1103 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1104 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1105 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1106 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1107 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1108 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1109 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1110 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1112 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1113 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1114 |
msgid "Active"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1118 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1121 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1122 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1123 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1124 |
msgid "Enable or disable this feature"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1128 |
msgid "Check for online users every"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1132 |
msgid "Second"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1136 |
#, php-format
|
1137 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1141 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1142 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
1143 |
msgid "Visitors"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1147 |
msgid "Store entire user agent string"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1151 |
msgid "Only enabled for debugging"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1155 |
msgid "Coefficient per visitor"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1159 |
#, php-format
|
1160 |
msgid "For each visit to account for several hits. Currently %s."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1164 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
1166 |
msgid "Pages"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1170 |
msgid "Track all pages"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1174 |
msgid "Disable hits column in post/pages list"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1178 |
msgid "Miscellaneous"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1182 |
msgid "Show stats in menu bar"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1186 |
msgid "No"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1190 |
msgid "Yes"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1194 |
msgid "Show stats in admin menu bar"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1198 |
msgid "Hide admin notices about non active features"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1202 |
msgid ""
|
1203 |
"By default WP Statistics displays an alert if any of the core features are "
|
1204 |
"disbaled on every admin page, this option will disable these notices."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1208 |
msgid "Search Enginges"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1212 |
msgid ""
|
1213 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1214 |
"search engines being active."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1218 |
msgid "disable"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1222 |
#, php-format
|
1223 |
msgid "Disable %s from data collection and reporting."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1227 |
msgid "Charts"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1231 |
msgid "Include totals"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1235 |
msgid ""
|
1236 |
"Add a total line to charts with multiple values, like the search engine "
|
1237 |
"referrals"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
1241 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
|
|
1242 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
1243 |
msgid "Statistical reporting"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:241
|
1247 |
-
msgid "Time send"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:246
|
1251 |
-
|
1252 |
-
msgid "Please select"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1256 |
msgid "Select when receiving statistics report."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1260 |
msgid "Send Statistical reporting to"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1264 |
msgid "Email"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1268 |
msgid "SMS"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1272 |
msgid "Type Select Get Status Report."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1276 |
#, php-format
|
1277 |
msgid ""
|
1278 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1279 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1283 |
msgid "Send Content Report"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1287 |
msgid "Enter the contents of the reports received."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1291 |
msgid ""
|
1292 |
"Any shortcode supported by your installation of WordPress, include all "
|
1293 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1294 |
"available) are supported in the body of the message."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1298 |
msgid ""
|
1299 |
"Input data codes are now deprecated and will be removed in a future version "
|
1300 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
1301 |
"here only for historical purposes:"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1305 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1306 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1307 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1308 |
msgid "User Online"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1312 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1313 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1314 |
msgid "Today Visitor"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1318 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1319 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1320 |
msgid "Today Visit"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1324 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1325 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1326 |
msgid "Yesterday Visitor"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1330 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1331 |
msgid "Yesterday Visit"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1335 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1336 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1337 |
msgid "Total Visitor"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1341 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1342 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1343 |
msgid "Total Visit"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1347 |
msgid "GeoIP settings"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1351 |
#, php-format
|
1352 |
msgid ""
|
1353 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1354 |
"from %s."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1358 |
msgid "GeoIP collection"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1362 |
msgid ""
|
1363 |
"For get more information and location (country) from visitor, enable this "
|
1364 |
"feature."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1368 |
msgid "Update GeoIP Info"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1372 |
msgid "Download GeoIP Database"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1376 |
msgid "Save changes on this page to download the update."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1380 |
msgid "Schedule monthly update of GeoIP DB"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1384 |
msgid "Next update will be"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1388 |
msgid ""
|
1389 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1390 |
"Tuesday of the month."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1394 |
msgid ""
|
1395 |
"This option will also download the database if the local filesize is less "
|
1396 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1397 |
"place)."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1401 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1405 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1409 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1413 |
#, php-format
|
1414 |
msgid ""
|
1415 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1416 |
"the installed PHP version being "
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1420 |
msgid ""
|
1421 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1422 |
"your version of PHP!"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1426 |
msgid ""
|
1427 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1428 |
"your version of PHP!"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1432 |
msgid ""
|
1433 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1434 |
"mode enabled!"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1438 |
msgid ""
|
1439 |
"This will permanently delete data from the database each day, are you sure "
|
1440 |
"you want to enable this option?"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1444 |
msgid "Database Maintenance"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1448 |
msgid "Run a daily WP Cron job to prune the databases"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1452 |
msgid ""
|
1453 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1454 |
"days."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1458 |
msgid "Prune data older than"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1462 |
msgid "Days"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1466 |
msgid ""
|
1467 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1468 |
"Invalid values will disable the daily maintenance."
|
@@ -1478,7 +1475,7 @@ msgid "Summary Statistics"
|
|
1478 |
msgstr ""
|
1479 |
|
1480 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
1481 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1482 |
msgid "About"
|
1483 |
msgstr ""
|
1484 |
|
@@ -1494,75 +1491,75 @@ msgstr ""
|
|
1494 |
msgid "Top Pages Visited"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1498 |
msgid "The following two items are global to all users."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1502 |
msgid "Disable map"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1506 |
msgid "Disable the map display"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1510 |
msgid "Get country location from Google"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1514 |
msgid ""
|
1515 |
"This feature may cause a performance degradation when viewing statistics."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1519 |
msgid "Widgets to Display"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1523 |
msgid ""
|
1524 |
"The following items are unique to each user. If you do not select the "
|
1525 |
"'About' widget it will automatically be displayed in the last positon of "
|
1526 |
"column A."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1530 |
msgid "Slot"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1534 |
msgid "Column A"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1538 |
msgid "Column B"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1542 |
msgid "Slot 1"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1546 |
msgid "Slot 2"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1550 |
msgid "Slot 3"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1554 |
msgid "Slot 4"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1558 |
msgid "Slot 5"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1562 |
msgid "Slot 6"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1566 |
msgid "N/A"
|
1567 |
msgstr ""
|
1568 |
|
@@ -1575,7 +1572,7 @@ msgid "Items"
|
|
1575 |
msgstr ""
|
1576 |
|
1577 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
|
1578 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1579 |
msgid "Yesterday visit"
|
1580 |
msgstr ""
|
1581 |
|
@@ -1652,28 +1649,28 @@ msgstr ""
|
|
1652 |
msgid "Last Post Date"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1656 |
msgid "General"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1660 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1661 |
msgid "Overview"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1665 |
msgid "Access/Exclusions"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1669 |
msgid "GeoIP"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1673 |
msgid "Maintenance"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1677 |
msgid "Update"
|
1678 |
msgstr ""
|
1679 |
|
@@ -1799,59 +1796,59 @@ msgstr ""
|
|
1799 |
msgid "Manual"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1803 |
msgid "Today visitor"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1807 |
msgid "Today visit"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1811 |
msgid "Yesterday visitor"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1815 |
msgid "View Stats"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1819 |
msgid "Download ODF file"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1823 |
msgid "Download HTML file"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1827 |
msgid "Manual file not found."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1831 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1832 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1833 |
msgid "You do not have sufficient permissions to access this page."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1837 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1841 |
#, php-format
|
1842 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1846 |
#, php-format
|
1847 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1851 |
#, php-format
|
1852 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1856 |
msgid "GeoIP Database updated successfully!"
|
1857 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-08-08 20:37+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-08-08 20:37+0330\n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
33 |
msgstr ""
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
36 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:101
|
37 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:230
|
38 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
41 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
42 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
43 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
|
65 |
msgid "Browsers"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:50
|
69 |
msgid "Browsers by type"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:102
|
73 |
msgid "Platform"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:128
|
77 |
msgid "Browsers by platform"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:231
|
81 |
#, php-format
|
82 |
msgid "%s Version"
|
83 |
msgstr ""
|
88 |
"may not reflect current statistics!"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
92 |
msgid "Exclusions Statistics"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
96 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
97 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
98 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
99 |
msgid "10 Days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
103 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
104 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
105 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
106 |
msgid "20 Days"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
110 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
111 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
112 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
113 |
msgid "30 Days"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
117 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
118 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
119 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
120 |
msgid "2 Months"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
124 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
125 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
126 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
127 |
msgid "3 Months"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
131 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
132 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
133 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
134 |
msgid "6 Months"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
138 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
139 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
140 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
141 |
msgid "9 Months"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
145 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
146 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
147 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
148 |
msgid "1 Year"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
152 |
#, php-format
|
153 |
msgid "Total Exclusions: %s"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
157 |
msgid "Exclusions Statistical Chart"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
161 |
msgid "Excluded hits in the last"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
166 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
170 |
msgid "days"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:115
|
174 |
msgid "Number of excluded hits"
|
175 |
msgstr ""
|
176 |
|
222 |
msgid "Latest Search Word Statistics"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
|
226 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:100
|
227 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:844
|
228 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:937
|
229 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
230 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
231 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:71
|
232 |
msgid "Map"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
236 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:125
|
237 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
238 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
239 |
msgid "Page"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
243 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:125
|
244 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
245 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
246 |
msgid "From"
|
259 |
msgid "All"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
263 |
msgid "Search for"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:66
|
267 |
msgid "Recent Visitor Statistics"
|
268 |
msgstr ""
|
269 |
|
440 |
|
441 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:901
|
442 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:147
|
443 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:60
|
444 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:65
|
445 |
msgid "Visits"
|
446 |
msgstr ""
|
447 |
|
546 |
msgstr ""
|
547 |
|
548 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
549 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:38
|
550 |
msgid "Export"
|
551 |
msgstr ""
|
552 |
|
559 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
560 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
561 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
562 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:251
|
563 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
564 |
+
msgid "Please select"
|
565 |
msgstr ""
|
566 |
|
567 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
825 |
msgid "Get updates for the location and the countries, this may take a while"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:37
|
829 |
msgid "Resources/Information"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:39
|
833 |
msgid "Purging"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:41
|
837 |
msgid "Updates"
|
838 |
msgstr ""
|
839 |
|
951 |
"a> support is available as well."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:33
|
955 |
msgid "Access Levels"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:62
|
959 |
msgid "Required user level to view WP Statistics"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:77
|
963 |
msgid "Required user level to manage WP Statistics"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
967 |
#, php-format
|
968 |
msgid ""
|
969 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
970 |
"levels."
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:86
|
974 |
msgid ""
|
975 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
976 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
977 |
"Contributor, read = Everyone."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:87
|
981 |
msgid ""
|
982 |
"Each of the above casscades the rights upwards in the default WordPress "
|
983 |
"configuration. So for example selecting publish_posts grants the right to "
|
984 |
"Authors, Editors, Admins and Super Admins."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:88
|
988 |
#, php-format
|
989 |
msgid ""
|
990 |
"If you need a more robust solution to delegate access you might want to look "
|
991 |
"at %s in the WordPress plugin directory."
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:93
|
995 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
996 |
msgid "Exclusions"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
1000 |
msgid "Record exclusions"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
1004 |
msgid "Enable"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
1008 |
msgid ""
|
1009 |
"This will record all the excluded hits in a separate table with the reasons "
|
1010 |
"why it was excluded but no other information. This will generate a lot of "
|
1012 |
"gets, not just actual user visits."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
1016 |
msgid "Exclude User Roles"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:119
|
1020 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
1021 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:172
|
1022 |
msgid "Exclude"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:120
|
1026 |
#, php-format
|
1027 |
msgid "Exclude %s role from data collection."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:126
|
1031 |
msgid "IP/Robot Exclusions"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:130
|
1035 |
msgid "Robot list"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:143
|
1039 |
msgid ""
|
1040 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1041 |
"must be at least 4 characters long or they will be ignored."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
1045 |
msgid "Reset to Default"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:148
|
1049 |
msgid "Excluded IP address list"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:151
|
1053 |
msgid ""
|
1054 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1055 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
1057 |
"32 or 255.255.255.255."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:152
|
1061 |
msgid "Add 10.0.0.0"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:153
|
1065 |
msgid "Add 172.16.0.0"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:154
|
1069 |
msgid "Add 192.168.0.0"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:159
|
1073 |
msgid "Site URL Exclusions"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
1077 |
msgid "Excluded login page"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
1081 |
msgid "Exclude the login page for registering as a hit."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:170
|
1085 |
msgid "Excluded admin pages"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:173
|
1089 |
msgid "Exclude the admin pages for registering as a hit."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:32
|
1093 |
msgid "Users Online"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:37
|
1097 |
msgid "User online"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:42
|
1101 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:70
|
1102 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:86
|
1103 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:98
|
1104 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:125
|
1105 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:137
|
1106 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
1107 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:179
|
1108 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:222
|
1109 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:238
|
1110 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:37
|
1111 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:61
|
1112 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:94
|
1113 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
1114 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:85
|
1115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
1116 |
msgid "Active"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:43
|
1120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1121 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
1122 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:126
|
1123 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:150
|
1125 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
1126 |
msgid "Enable or disable this feature"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:49
|
1130 |
msgid "Check for online users every"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:54
|
1134 |
msgid "Second"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:55
|
1138 |
#, php-format
|
1139 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
|
1143 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:81
|
1144 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
1145 |
msgid "Visitors"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
1149 |
msgid "Store entire user agent string"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
1153 |
msgid "Only enabled for debugging"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
1157 |
msgid "Coefficient per visitor"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:110
|
1161 |
#, php-format
|
1162 |
msgid "For each visit to account for several hits. Currently %s."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:115
|
1166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:120
|
1167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
1168 |
msgid "Pages"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
|
1172 |
msgid "Track all pages"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:144
|
1176 |
msgid "Disable hits column in post/pages list"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
1180 |
msgid "Miscellaneous"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
1184 |
msgid "Show stats in menu bar"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:165
|
1188 |
msgid "No"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:166
|
1192 |
msgid "Yes"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:168
|
1196 |
msgid "Show stats in admin menu bar"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:174
|
1200 |
msgid "Hide admin notices about non active features"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:180
|
1204 |
msgid ""
|
1205 |
"By default WP Statistics displays an alert if any of the core features are "
|
1206 |
"disbaled on every admin page, this option will disable these notices."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:185
|
1210 |
msgid "Search Enginges"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:190
|
1214 |
msgid ""
|
1215 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1216 |
"search engines being active."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:205
|
1220 |
msgid "disable"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:206
|
1224 |
#, php-format
|
1225 |
msgid "Disable %s from data collection and reporting."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:212
|
1229 |
msgid "Charts"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:217
|
1233 |
msgid "Include totals"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
1237 |
msgid ""
|
1238 |
"Add a total line to charts with multiple values, like the search engine "
|
1239 |
"referrals"
|
1240 |
msgstr ""
|
1241 |
|
|
|
1242 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
1243 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:233
|
1244 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
1245 |
msgid "Statistical reporting"
|
1246 |
msgstr ""
|
1247 |
|
|
|
|
|
|
|
|
|
1248 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:246
|
1249 |
+
msgid "Time send"
|
|
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:260
|
1253 |
msgid "Select when receiving statistics report."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:266
|
1257 |
msgid "Send Statistical reporting to"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:272
|
1261 |
msgid "Email"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:273
|
1265 |
msgid "SMS"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:275
|
1269 |
msgid "Type Select Get Status Report."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:278
|
1273 |
#, php-format
|
1274 |
msgid ""
|
1275 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1276 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:285
|
1280 |
msgid "Send Content Report"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:290
|
1284 |
msgid "Enter the contents of the reports received."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:292
|
1288 |
msgid ""
|
1289 |
"Any shortcode supported by your installation of WordPress, include all "
|
1290 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1291 |
"available) are supported in the body of the message."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:295
|
1295 |
msgid ""
|
1296 |
"Input data codes are now deprecated and will be removed in a future version "
|
1297 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
1298 |
"here only for historical purposes:"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
1302 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1303 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1304 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:286
|
1305 |
msgid "User Online"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
1309 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1310 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1311 |
msgid "Today Visitor"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:298
|
1315 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1316 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1317 |
msgid "Today Visit"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:299
|
1321 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1322 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1323 |
msgid "Yesterday Visitor"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:300
|
1327 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1328 |
msgid "Yesterday Visit"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:301
|
1332 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1333 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1334 |
msgid "Total Visitor"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:302
|
1338 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1339 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1340 |
msgid "Total Visit"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:17
|
1344 |
msgid "GeoIP settings"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:22
|
1348 |
#, php-format
|
1349 |
msgid ""
|
1350 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1351 |
"from %s."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
1355 |
msgid "GeoIP collection"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:38
|
1359 |
msgid ""
|
1360 |
"For get more information and location (country) from visitor, enable this "
|
1361 |
"feature."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:44
|
1365 |
msgid "Update GeoIP Info"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:49
|
1369 |
msgid "Download GeoIP Database"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:50
|
1373 |
msgid "Save changes on this page to download the update."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:56
|
1377 |
msgid "Schedule monthly update of GeoIP DB"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:64
|
1381 |
msgid "Next update will be"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1385 |
msgid ""
|
1386 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1387 |
"Tuesday of the month."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:83
|
1391 |
msgid ""
|
1392 |
"This option will also download the database if the local filesize is less "
|
1393 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1394 |
"place)."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:89
|
1398 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:95
|
1402 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:106
|
1406 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:109
|
1410 |
#, php-format
|
1411 |
msgid ""
|
1412 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1413 |
"the installed PHP version being "
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:114
|
1417 |
msgid ""
|
1418 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1419 |
"your version of PHP!"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:120
|
1423 |
msgid ""
|
1424 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1425 |
"your version of PHP!"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:126
|
1429 |
msgid ""
|
1430 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1431 |
"mode enabled!"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
1435 |
msgid ""
|
1436 |
"This will permanently delete data from the database each day, are you sure "
|
1437 |
"you want to enable this option?"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
1441 |
msgid "Database Maintenance"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
1445 |
msgid "Run a daily WP Cron job to prune the databases"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
1449 |
msgid ""
|
1450 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1451 |
"days."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
1455 |
msgid "Prune data older than"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
1459 |
msgid "Days"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
1463 |
msgid ""
|
1464 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1465 |
"Invalid values will disable the daily maintenance."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
1478 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
|
1479 |
msgid "About"
|
1480 |
msgstr ""
|
1481 |
|
1491 |
msgid "Top Pages Visited"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
1495 |
msgid "The following two items are global to all users."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:80
|
1499 |
msgid "Disable map"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
1503 |
msgid "Disable the map display"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:92
|
1507 |
msgid "Get country location from Google"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:98
|
1511 |
msgid ""
|
1512 |
"This feature may cause a performance degradation when viewing statistics."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:103
|
1516 |
msgid "Widgets to Display"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:112
|
1520 |
msgid ""
|
1521 |
"The following items are unique to each user. If you do not select the "
|
1522 |
"'About' widget it will automatically be displayed in the last positon of "
|
1523 |
"column A."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
1527 |
msgid "Slot"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:121
|
1531 |
msgid "Column A"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:125
|
1535 |
msgid "Column B"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:131
|
1539 |
msgid "Slot 1"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:161
|
1543 |
msgid "Slot 2"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:191
|
1547 |
msgid "Slot 3"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:221
|
1551 |
msgid "Slot 4"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:251
|
1555 |
msgid "Slot 5"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:281
|
1559 |
msgid "Slot 6"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:285
|
1563 |
msgid "N/A"
|
1564 |
msgstr ""
|
1565 |
|
1572 |
msgstr ""
|
1573 |
|
1574 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
|
1575 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:310
|
1576 |
msgid "Yesterday visit"
|
1577 |
msgstr ""
|
1578 |
|
1649 |
msgid "Last Post Date"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:80
|
1653 |
msgid "General"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:81
|
1657 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1658 |
msgid "Overview"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:82
|
1662 |
msgid "Access/Exclusions"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:83
|
1666 |
msgid "GeoIP"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:84
|
1670 |
msgid "Maintenance"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:115
|
1674 |
msgid "Update"
|
1675 |
msgstr ""
|
1676 |
|
1796 |
msgid "Manual"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
1800 |
msgid "Today visitor"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
1804 |
msgid "Today visit"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
|
1808 |
msgid "Yesterday visitor"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1812 |
msgid "View Stats"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:340
|
1816 |
msgid "Download ODF file"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:341
|
1820 |
msgid "Download HTML file"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:345
|
1824 |
msgid "Manual file not found."
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:420
|
1828 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:513
|
1829 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
|
1830 |
msgid "You do not have sufficient permissions to access this page."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:431
|
1834 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:565
|
1838 |
#, php-format
|
1839 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:576
|
1843 |
#, php-format
|
1844 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
|
1848 |
#, php-format
|
1849 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
|
1853 |
msgid "GeoIP Database updated successfully!"
|
1854 |
msgstr ""
|
languages/wp-statistics-ar.mo
ADDED
Binary file
|
languages/wp-statistics-ar.po
ADDED
@@ -0,0 +1,1906 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Wordpress Statistics in Arabic
|
2 |
+
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-08-08 20:43+0330\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 "
|
10 |
+
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
11 |
+
"X-Generator: Poedit 1.6.5\n"
|
12 |
+
"Project-Id-Version: Wordpress Statistics\n"
|
13 |
+
"POT-Creation-Date: \n"
|
14 |
+
"Last-Translator: \n"
|
15 |
+
"Language-Team: \n"
|
16 |
+
"Language: ar\n"
|
17 |
+
|
18 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:50
|
19 |
+
msgid "Browsers by type"
|
20 |
+
msgstr "المتصفحات حسب النوع"
|
21 |
+
|
22 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:128
|
23 |
+
msgid "Browsers by platform"
|
24 |
+
msgstr "المتصفحات حسب المنصة"
|
25 |
+
|
26 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
27 |
+
msgid "Excluded hits in the last"
|
28 |
+
msgstr "استبعاد الفعالية في الأخير"
|
29 |
+
|
30 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
31 |
+
msgid "Hits Statistics Chart"
|
32 |
+
msgstr "الرسم البياني لاحصائيات الفعالية"
|
33 |
+
|
34 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
35 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
36 |
+
msgid "Hits in the last"
|
37 |
+
msgstr "الفعالية في الأخير"
|
38 |
+
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
40 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:831
|
41 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
42 |
+
msgid "Latest Search Words"
|
43 |
+
msgstr "أحدث كلمات البحث"
|
44 |
+
|
45 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
46 |
+
msgid "Latest Search Word Statistics"
|
47 |
+
msgstr "أحدث الإحصائيات - كلمة البحث"
|
48 |
+
|
49 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:66
|
50 |
+
msgid "Recent Visitor Statistics"
|
51 |
+
msgstr "احصائيات الزوار الأخيرة"
|
52 |
+
|
53 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
|
54 |
+
msgid "Today Visitors Map"
|
55 |
+
msgstr "خريطة زوار اليوم"
|
56 |
+
|
57 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
|
58 |
+
msgid "Summary"
|
59 |
+
msgstr "ملخص"
|
60 |
+
|
61 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:263
|
62 |
+
msgid "User(s) Online"
|
63 |
+
msgstr "الأعضاء المتصلين"
|
64 |
+
|
65 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:412
|
66 |
+
msgid "Top 10 Browsers"
|
67 |
+
msgstr "أفضل 10 متصفحات"
|
68 |
+
|
69 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:469
|
70 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
|
71 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
|
72 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
73 |
+
msgid "Top Referring Sites"
|
74 |
+
msgstr "أعلى المواقع اشارة"
|
75 |
+
|
76 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
|
77 |
+
msgid "Rate and Review"
|
78 |
+
msgstr "المعدل والاستعراض"
|
79 |
+
|
80 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:586
|
81 |
+
msgid "More Information"
|
82 |
+
msgstr "مزيد من المعلومات"
|
83 |
+
|
84 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:595
|
85 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
86 |
+
msgid ""
|
87 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
88 |
+
msgstr ""
|
89 |
+
"يتضمن هذا المنتج GeoLite2 البيانات التي أنشأتها MaxMind، وهي متاحة من %s."
|
90 |
+
|
91 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
92 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:73
|
93 |
+
msgid "Search engine referrals in the last"
|
94 |
+
msgstr "إحالات محرك البحث في الماضي"
|
95 |
+
|
96 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:769
|
97 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
98 |
+
msgid "Number of referrals"
|
99 |
+
msgstr "عدد الإحالات"
|
100 |
+
|
101 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:884
|
102 |
+
msgid "Top 10 Pages"
|
103 |
+
msgstr "أفضل 10 صفحات"
|
104 |
+
|
105 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
106 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
107 |
+
msgid "Search Engine Referral Statistics"
|
108 |
+
msgstr "احصائيات إحالات محركات البحث"
|
109 |
+
|
110 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:4
|
111 |
+
msgid "WP Statistics V%s"
|
112 |
+
msgstr "نسخة الإحصائيات %s"
|
113 |
+
|
114 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:16
|
115 |
+
msgid "Visit Us Online"
|
116 |
+
msgstr "زيارة موقعنا على الانترنت"
|
117 |
+
|
118 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
119 |
+
msgid ""
|
120 |
+
"Come visit our great new <a href=\"http://wp-statistics.com\" target=\"_blank"
|
121 |
+
"\">website</a> and keep up to date on the latest news about WP Statistics."
|
122 |
+
msgstr ""
|
123 |
+
"قم بزيارة <a href=\"http://wp-statistics.com\" target=\"_blank\">موقعنا</a> "
|
124 |
+
"الجديد على الانترنت وواكب آخر الأخبار عن إضافة الاحصائيات."
|
125 |
+
|
126 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
127 |
+
msgid "Rate and Review at WordPress.org"
|
128 |
+
msgstr "قيم وأستعرض على WordPress.org"
|
129 |
+
|
130 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
131 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
132 |
+
msgstr "شكرا لتثبيت إحصائيات ووردبريس، ونحن نشجعكم على تقديم"
|
133 |
+
|
134 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
135 |
+
msgid "rating and review"
|
136 |
+
msgstr "التقييم والاستعراض"
|
137 |
+
|
138 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
139 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
140 |
+
msgstr "زيادة على WordPress.org. ملاحظاتك هي موضع تقدير!"
|
141 |
+
|
142 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
143 |
+
msgid ""
|
144 |
+
"WP Statistics supports internationalization and we encourage our users to "
|
145 |
+
"submit translations, please visit our <a href=\"http://teamwork.wp-parsi.com/"
|
146 |
+
"projects/wp-statistics\" target=\"_blank\">translation collaboration site</"
|
147 |
+
"a> to see the current status and <a href=\"http://wp-statistics.com/contact/"
|
148 |
+
"\" target=\"_blank\">drop us a line</a> if you would like to help."
|
149 |
+
msgstr ""
|
150 |
+
"احصائيات ووردبريس تدعم الترجمة ونحن نشجع مستخدمينا أن يقدموا الترجمات، يرجى "
|
151 |
+
"زيارة <a href=\"http://teamwork.wp-parsi.com/projects/wp-statistics\" target="
|
152 |
+
"\"_blank\">translation موقع الترجمة</a> لرؤية الترجمة في الوضع الحالي <a "
|
153 |
+
"href=\"http://wp-statistics.com/contact/\" target=\"_blank\">وتقديم "
|
154 |
+
"المساعدة</a> إذا كنت ترغب في ذلك."
|
155 |
+
|
156 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:45
|
157 |
+
msgid ""
|
158 |
+
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
159 |
+
"out. Here are a few things to do before contacting us:"
|
160 |
+
msgstr ""
|
161 |
+
"نحن آسفون كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد "
|
162 |
+
"قليل من الأشياء يجب القيام به قبل الاتصال بنا:"
|
163 |
+
|
164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:48
|
165 |
+
msgid ""
|
166 |
+
"Have you read the <a title=\"FAQs\" href=\"http://wp-statistics.com/?"
|
167 |
+
"page_id=19\" target=_blank>FAQs</a>?"
|
168 |
+
msgstr ""
|
169 |
+
"هل قراءة <a title=\"أسئلة وأجوبة\" href=\"http://wp-statistics.com/?"
|
170 |
+
"page_id=19\" target=_blank>أسئلة وأجوبة</a>؟"
|
171 |
+
|
172 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
173 |
+
msgid ""
|
174 |
+
"Have you read the <a title=\"Manual\" href=\"?page=wps_manual_menu\">manual</"
|
175 |
+
"a>?"
|
176 |
+
msgstr ""
|
177 |
+
"هل قرءاة <a title=\"الدليل\" href=\"?page=wps_manual_menu\">الدليل</a>؟"
|
178 |
+
|
179 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:50
|
180 |
+
msgid ""
|
181 |
+
"Have you search the <a href=\"http://wordpress.org/support/plugin/wp-"
|
182 |
+
"statistics\" target=\"_blank\">support forum</a> for a similar issue?"
|
183 |
+
msgstr ""
|
184 |
+
"هل بحثت في <a href=\"http://wordpress.org/support/plugin/wp-statistics\" "
|
185 |
+
"target=\"_blank\">منتدى الدعم</a> لمشكلة مشابهة؟"
|
186 |
+
|
187 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
188 |
+
msgid "And a few things to double-check:"
|
189 |
+
msgstr "و عدد قليل من التحقق المزدوج:"
|
190 |
+
|
191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
192 |
+
msgid "How's your memory_limit in php.ini?"
|
193 |
+
msgstr "كيف memory_limit الخاصة بك في ملف php.ini؟"
|
194 |
+
|
195 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:57
|
196 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
197 |
+
msgstr "هل حاولت تعطيل أي ملحقات أخرى عندما قمت بالتثبيت؟"
|
198 |
+
|
199 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:58
|
200 |
+
msgid "Have you tried using the default WordPress theme?"
|
201 |
+
msgstr "هل حاولت استخدام المظهر الافتراضي لووردبريس؟"
|
202 |
+
|
203 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
204 |
+
msgid "Have you double checked the plugin settings?"
|
205 |
+
msgstr "هل قمت بمضاعفة فحص إعدادات البرنامج المساعد؟"
|
206 |
+
|
207 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:60
|
208 |
+
msgid "Do you have all the required PHP extensions installed?"
|
209 |
+
msgstr "هل لديك جميع الملحقات المطلوبة لتثبيت PHP؟"
|
210 |
+
|
211 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
212 |
+
msgid "Still not having any luck?"
|
213 |
+
msgstr "هل ما زالت المشكلة قائمة؟"
|
214 |
+
|
215 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
216 |
+
msgid ""
|
217 |
+
"Then please open a new thread on the <a href=\"http://wordpress.org/support/"
|
218 |
+
"plugin/wp-statistics\" target=\"_blank\">WordPress.org support forum</a> and "
|
219 |
+
"we'll respond as soon as possible."
|
220 |
+
msgstr ""
|
221 |
+
"إذاً أفتح موضوع جديد في <a href=\"http://wordpress.org/support/plugin/wp-"
|
222 |
+
"statistics\" target=\"_blank\">منتدى الدعم الرسمي</a> وسنقوم بالرد في أقرب "
|
223 |
+
"وقت ممكن."
|
224 |
+
|
225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
226 |
+
msgid ""
|
227 |
+
"Alternatively <a href=\"http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA"
|
228 |
+
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">Farsi</"
|
229 |
+
"a> support is available as well."
|
230 |
+
msgstr ""
|
231 |
+
"والدعم <a href=\"http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA"
|
232 |
+
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">الفارسي</"
|
233 |
+
"a> متاح ايضا."
|
234 |
+
|
235 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
236 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
237 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
238 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
239 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:251
|
241 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
242 |
+
msgid "Please select"
|
243 |
+
msgstr "الرجاء اختيار"
|
244 |
+
|
245 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:292
|
246 |
+
msgid ""
|
247 |
+
"Any shortcode supported by your installation of WordPress, include all "
|
248 |
+
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
249 |
+
"available) are supported in the body of the message."
|
250 |
+
msgstr ""
|
251 |
+
"أي رمز قصير مدعوم في تنصيب ووردبريس، مشمولة في احصائيات ووردبريس (انظر الى "
|
252 |
+
"دليل المشرف للحصول على قائمة الرموز المتوفرة) ومعتمدة في نص الرسالة. "
|
253 |
+
|
254 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:295
|
255 |
+
msgid ""
|
256 |
+
"Input data codes are now deprecated and will be removed in a future version "
|
257 |
+
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
258 |
+
"here only for historical purposes:"
|
259 |
+
msgstr ""
|
260 |
+
"رموز البيانات المهملة المدخلة سيتم ازالتها في إصدار مستقبلي من احصائيات "
|
261 |
+
"ووردبريس، يرجى استخدام الرموز القصيرة المناسبة، يتم تضمينها هنا فقط لأغراض "
|
262 |
+
"تاريخية:"
|
263 |
+
|
264 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:22
|
265 |
+
msgid ""
|
266 |
+
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
267 |
+
"from %s."
|
268 |
+
msgstr ""
|
269 |
+
"خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، وهي متاحة "
|
270 |
+
"من %s."
|
271 |
+
|
272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
273 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
274 |
+
msgid "None"
|
275 |
+
msgstr "لا شيء"
|
276 |
+
|
277 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
278 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
|
279 |
+
msgid "About"
|
280 |
+
msgstr "حول"
|
281 |
+
|
282 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
283 |
+
msgid "The following two items are global to all users."
|
284 |
+
msgstr "البندين التاليين عالمية لجميع المستخدمين."
|
285 |
+
|
286 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:103
|
287 |
+
msgid "Widgets to Display"
|
288 |
+
msgstr "المربعات الجانبية إلى العرض"
|
289 |
+
|
290 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:112
|
291 |
+
msgid ""
|
292 |
+
"The following items are unique to each user. If you do not select the "
|
293 |
+
"'About' widget it will automatically be displayed in the last positon of "
|
294 |
+
"column A."
|
295 |
+
msgstr ""
|
296 |
+
"البنود التالية هي فريدة من نوعها لكل مستخدم. إذا لم تقم بتحديد موقع المربع "
|
297 |
+
"الجانبي 'حول' سيتم تلقائيا إظهارها في الأخير من العمود A."
|
298 |
+
|
299 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
300 |
+
msgid "Slot"
|
301 |
+
msgstr "الشريحة"
|
302 |
+
|
303 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:121
|
304 |
+
msgid "Column A"
|
305 |
+
msgstr "العمود A"
|
306 |
+
|
307 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:125
|
308 |
+
msgid "Column B"
|
309 |
+
msgstr "العمود B"
|
310 |
+
|
311 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:131
|
312 |
+
msgid "Slot 1"
|
313 |
+
msgstr "الشريحة 1"
|
314 |
+
|
315 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:161
|
316 |
+
msgid "Slot 2"
|
317 |
+
msgstr "الشريحة 2"
|
318 |
+
|
319 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:191
|
320 |
+
msgid "Slot 3"
|
321 |
+
msgstr "الشريحة 3"
|
322 |
+
|
323 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:221
|
324 |
+
msgid "Slot 4"
|
325 |
+
msgstr "الشريحة 4"
|
326 |
+
|
327 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:251
|
328 |
+
msgid "Slot 5"
|
329 |
+
msgstr "الشريحة 5"
|
330 |
+
|
331 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:281
|
332 |
+
msgid "Slot 6"
|
333 |
+
msgstr "الشريحة 6"
|
334 |
+
|
335 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:285
|
336 |
+
msgid "N/A"
|
337 |
+
msgstr "N/A"
|
338 |
+
|
339 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:48
|
340 |
+
msgid "Search Engine Referred"
|
341 |
+
msgstr "محرك البحث المشار اليه"
|
342 |
+
|
343 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
344 |
+
msgid "Once Weekly"
|
345 |
+
msgstr "مرة واحدة أسبوعيا"
|
346 |
+
|
347 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
348 |
+
msgid "Once Every 2 Weeks"
|
349 |
+
msgstr "مرة واحدة كل أسبوعين"
|
350 |
+
|
351 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
352 |
+
msgid "Once Every 4 Weeks"
|
353 |
+
msgstr "مرة واحدة كل 4 أسابيع"
|
354 |
+
|
355 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
|
356 |
+
msgid "Complete statistics for your WordPress site."
|
357 |
+
msgstr "الإحصائيات الكاملة للموقع الخاص بك."
|
358 |
+
|
359 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
|
360 |
+
msgid ""
|
361 |
+
"Online user tracking in WP Statistics is not enabled, please go to <a href="
|
362 |
+
"\"%s\">setting page</a> and enable it."
|
363 |
+
msgstr ""
|
364 |
+
"لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الدخول "
|
365 |
+
"إلى <a href=\"%s\">صفحة الاعدادات</a> و تمكينه."
|
366 |
+
|
367 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
|
368 |
+
msgid ""
|
369 |
+
"Hit tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
370 |
+
"\">setting page</a> and enable it."
|
371 |
+
msgstr ""
|
372 |
+
"نقرات التتبع في احصائيات ووردبريس لم يتم تمكينها، يرجى الدخول إلى <a href="
|
373 |
+
"\"%s\">صفحة الاعدادات</a> و تمكينه."
|
374 |
+
|
375 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:73
|
376 |
+
msgid ""
|
377 |
+
"Visitor tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
378 |
+
"\">setting page</a> and enable it."
|
379 |
+
msgstr ""
|
380 |
+
"لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الدخول إلى <a href=\"%s"
|
381 |
+
"\">صفحة الاعدادات</a> و تمكينه."
|
382 |
+
|
383 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:76
|
384 |
+
msgid ""
|
385 |
+
"GeoIP collection is not active, please go to <a href=\"%s\">Setting page > "
|
386 |
+
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
387 |
+
msgstr ""
|
388 |
+
"مجموعة GeoIP غير نشطة، يرجى الدخول إلى صفحة إعداد <a href=\"%s\">صفحة "
|
389 |
+
"الاعدادات > GeoIP</a> و تمكين هذه الميزة (GeoIP يمكنه الكشف عن بلد آخر)"
|
390 |
+
|
391 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:574
|
392 |
+
msgid "About WP Statistics V%s"
|
393 |
+
msgstr "حول نسخة احصائيات ووردبريس %s"
|
394 |
+
|
395 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:581
|
396 |
+
msgid "Website"
|
397 |
+
msgstr "الموقع"
|
398 |
+
|
399 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:475
|
400 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
|
401 |
+
msgid "References"
|
402 |
+
msgstr "المراجع"
|
403 |
+
|
404 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:21
|
405 |
+
msgid "PHP Memory Limit"
|
406 |
+
msgstr "حد ذاكرة PHP"
|
407 |
+
|
408 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
409 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
410 |
+
msgstr "حد الذاكرة المسموحبه في السكربت, محدد في php.ini."
|
411 |
+
|
412 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
413 |
+
msgid "WP Statistics"
|
414 |
+
msgstr "احصائيات ووردبريس"
|
415 |
+
|
416 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:146
|
417 |
+
msgid "Visit WordPress.org page"
|
418 |
+
msgstr "زيارة صفحة الووردبريس"
|
419 |
+
|
420 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
421 |
+
msgid "Page Trend for Post ID"
|
422 |
+
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
423 |
+
|
424 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
425 |
+
msgid "Page Trend"
|
426 |
+
msgstr "الصفحة الأكثر رواجاً"
|
427 |
+
|
428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:68
|
429 |
+
msgid "Page Trending Stats"
|
430 |
+
msgstr "احصائيات الصفحة الاكثر رواجاً"
|
431 |
+
|
432 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:32
|
433 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:43
|
434 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:54
|
435 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:65
|
436 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:76
|
437 |
+
msgid "Number of rows in the <code>%s</code> table"
|
438 |
+
msgstr "عدد الصفوف في الجدول <code>%s</code>"
|
439 |
+
|
440 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
441 |
+
msgid "Record exclusions"
|
442 |
+
msgstr "سجل الاستثناءات"
|
443 |
+
|
444 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:130
|
445 |
+
msgid "Robot list"
|
446 |
+
msgstr "قائمة الروبوت"
|
447 |
+
|
448 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:148
|
449 |
+
msgid "Excluded IP address list"
|
450 |
+
msgstr "قائمة عناوين IP المستبعدة"
|
451 |
+
|
452 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:151
|
453 |
+
msgid ""
|
454 |
+
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
455 |
+
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
456 |
+
"formats are accepted). To specify an IP address only, use a subnet value of "
|
457 |
+
"32 or 255.255.255.255."
|
458 |
+
msgstr ""
|
459 |
+
"قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع "
|
460 |
+
"الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و "
|
461 |
+
"192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية "
|
462 |
+
"32 أو 255.255.255.255.255."
|
463 |
+
|
464 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
465 |
+
msgid "Excluded login page"
|
466 |
+
msgstr "استبعاد صفحة تسجيل الدخول"
|
467 |
+
|
468 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:170
|
469 |
+
msgid "Excluded admin pages"
|
470 |
+
msgstr "استبعاد الصفحات الإدارية"
|
471 |
+
|
472 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:32
|
473 |
+
msgid "Users Online"
|
474 |
+
msgstr "الإعضاء المتواجدين"
|
475 |
+
|
476 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:37
|
477 |
+
msgid "User online"
|
478 |
+
msgstr "المتواجدين الآن"
|
479 |
+
|
480 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
|
481 |
+
msgid "Track all pages"
|
482 |
+
msgstr "تتبع جميع الصفحات"
|
483 |
+
|
484 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:144
|
485 |
+
msgid "Disable hits column in post/pages list"
|
486 |
+
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
487 |
+
|
488 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
489 |
+
msgid "Miscellaneous"
|
490 |
+
msgstr "متفرقات"
|
491 |
+
|
492 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:146
|
493 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
494 |
+
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
495 |
+
|
496 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
497 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
498 |
+
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
499 |
+
|
500 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
501 |
+
msgid "Rate this plugin"
|
502 |
+
msgstr "ضع تقييمك لهذه الاضافة"
|
503 |
+
|
504 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:193
|
505 |
+
msgid "WP Statistics - Hits"
|
506 |
+
msgstr "احصائيات ووردبريس - الزيارات"
|
507 |
+
|
508 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:565
|
509 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
510 |
+
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
511 |
+
|
512 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:45
|
513 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:93
|
514 |
+
msgid "Total Page Views"
|
515 |
+
msgstr "مجموع مشاهدات الصفحة"
|
516 |
+
|
517 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:115
|
518 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:120
|
519 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
520 |
+
msgid "Pages"
|
521 |
+
msgstr "الصفحات"
|
522 |
+
|
523 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:245
|
524 |
+
msgid "Manual"
|
525 |
+
msgstr "الدليل"
|
526 |
+
|
527 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:340
|
528 |
+
msgid "Download ODF file"
|
529 |
+
msgstr "تحميل ملف ODF"
|
530 |
+
|
531 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:341
|
532 |
+
msgid "Download HTML file"
|
533 |
+
msgstr "تحميل ملف HTML"
|
534 |
+
|
535 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:345
|
536 |
+
msgid "Manual file not found."
|
537 |
+
msgstr "لم يتم العثور على ملف الدليل."
|
538 |
+
|
539 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
540 |
+
msgid "Exclusions Statistics"
|
541 |
+
msgstr "استثناءات الاحصائيات"
|
542 |
+
|
543 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
544 |
+
msgid "Top Pages Visited"
|
545 |
+
msgstr "أعلى الصفحات زيارة"
|
546 |
+
|
547 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:898
|
548 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:144
|
549 |
+
msgid "No page title found"
|
550 |
+
msgstr "لم يتم العثور على عنوان الصفحة"
|
551 |
+
|
552 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
553 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:116
|
554 |
+
msgid "Top Pages"
|
555 |
+
msgstr "أفضل الصفحات"
|
556 |
+
|
557 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
558 |
+
msgid "Top 5 Pages Trends"
|
559 |
+
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
560 |
+
|
561 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
562 |
+
msgid "Top 5 Page Trending Stats"
|
563 |
+
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
564 |
+
|
565 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:88
|
566 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:69
|
567 |
+
msgid "Number of Hits"
|
568 |
+
msgstr "عدد الزيارات"
|
569 |
+
|
570 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
571 |
+
msgid "Manual not found: %s"
|
572 |
+
msgstr "الدليل لم يعثر على: %s"
|
573 |
+
|
574 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
575 |
+
msgid "Invalid file type selected: %s"
|
576 |
+
msgstr "نوع الملف المختار غير صالح: %s"
|
577 |
+
|
578 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
579 |
+
msgid "Search Engine referred"
|
580 |
+
msgstr "محرك البحث المشار"
|
581 |
+
|
582 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
583 |
+
msgid "Include Header Row"
|
584 |
+
msgstr "تضمين رأس الصف"
|
585 |
+
|
586 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
587 |
+
msgid "Include a header row as the first line of the exported file."
|
588 |
+
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
589 |
+
|
590 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:113
|
591 |
+
msgid "PHP Safe Mode"
|
592 |
+
msgstr "الوضع الآمن PHP"
|
593 |
+
|
594 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:118
|
595 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
596 |
+
msgstr "الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
597 |
+
|
598 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:106
|
599 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
600 |
+
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
601 |
+
|
602 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:126
|
603 |
+
msgid ""
|
604 |
+
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
605 |
+
"mode enabled!"
|
606 |
+
msgstr ""
|
607 |
+
"تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع "
|
608 |
+
"الآمن في PHP!"
|
609 |
+
|
610 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:174
|
611 |
+
msgid "Hide admin notices about non active features"
|
612 |
+
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
613 |
+
|
614 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:180
|
615 |
+
msgid ""
|
616 |
+
"By default WP Statistics displays an alert if any of the core features are "
|
617 |
+
"disbaled on every admin page, this option will disable these notices."
|
618 |
+
msgstr ""
|
619 |
+
"افتراضيا احصائيات ووردبريس يعرض تنبيها اذا تم تعطيل أي من الميزات الأساسية "
|
620 |
+
"على كل مشرف, فإن هذا الخيار يقوم بتعطيل الإشعارات."
|
621 |
+
|
622 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:185
|
623 |
+
msgid "Search Enginges"
|
624 |
+
msgstr "محرك البحث"
|
625 |
+
|
626 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:190
|
627 |
+
msgid ""
|
628 |
+
"Disabling all search engines is not allowed, doing so will result in all "
|
629 |
+
"search engines being active."
|
630 |
+
msgstr ""
|
631 |
+
"تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
632 |
+
|
633 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:205
|
634 |
+
msgid "disable"
|
635 |
+
msgstr "تعطيل"
|
636 |
+
|
637 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:206
|
638 |
+
msgid "Disable %s from data collection and reporting."
|
639 |
+
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
640 |
+
|
641 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:135
|
642 |
+
msgid "cURL Version"
|
643 |
+
msgstr "إصدار cURL"
|
644 |
+
|
645 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:139
|
646 |
+
msgid "cURL not installed"
|
647 |
+
msgstr "cURL غير مثبت"
|
648 |
+
|
649 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:140
|
650 |
+
msgid ""
|
651 |
+
"The PHP cURL Extension version you are running. cURL is required for the "
|
652 |
+
"GeoIP code, if it is not installed GeoIP will be disabled."
|
653 |
+
msgstr ""
|
654 |
+
"نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم "
|
655 |
+
"تثبيته يتم تعطيل GeoIP."
|
656 |
+
|
657 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:146
|
658 |
+
msgid "BC Math"
|
659 |
+
msgstr "BC Math"
|
660 |
+
|
661 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:150
|
662 |
+
msgid "Installed"
|
663 |
+
msgstr "مثبت"
|
664 |
+
|
665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:150
|
666 |
+
msgid "Not installed"
|
667 |
+
msgstr "غير مثبت"
|
668 |
+
|
669 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:151
|
670 |
+
msgid ""
|
671 |
+
"If the PHP BC Math Extension is installed. BC Math is required for the "
|
672 |
+
"GeoIP code, if it is not installed GeoIP will be disabled."
|
673 |
+
msgstr ""
|
674 |
+
"إذا تم تثبيت الملحق PHP BC Math. فأن كود GeoIP مطلوب في BC Math, واذا لم "
|
675 |
+
"يتم تثبيته يتم تعطيل GeoIP."
|
676 |
+
|
677 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:114
|
678 |
+
msgid ""
|
679 |
+
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
680 |
+
"your version of PHP!"
|
681 |
+
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
682 |
+
|
683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:120
|
684 |
+
msgid ""
|
685 |
+
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
686 |
+
"your version of PHP!"
|
687 |
+
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
688 |
+
|
689 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
690 |
+
msgid ""
|
691 |
+
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
692 |
+
"settings page."
|
693 |
+
msgstr ""
|
694 |
+
"غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة "
|
695 |
+
"الإعدادات."
|
696 |
+
|
697 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:19
|
698 |
+
msgid "Database file does not exist."
|
699 |
+
msgstr "لا وجود لملف قاعدة البيانات."
|
700 |
+
|
701 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
702 |
+
msgid "Search for"
|
703 |
+
msgstr "البحث عن"
|
704 |
+
|
705 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:375
|
706 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:469
|
707 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:522
|
708 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:608
|
709 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:712
|
710 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:831
|
711 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:884
|
712 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:923
|
713 |
+
msgid "More"
|
714 |
+
msgstr "المزيد"
|
715 |
+
|
716 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:5
|
717 |
+
msgid "GeoIP File Info"
|
718 |
+
msgstr "معلومات ملف GeoIP"
|
719 |
+
|
720 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:10
|
721 |
+
msgid "File Date"
|
722 |
+
msgstr "ملف التاريخ"
|
723 |
+
|
724 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:23
|
725 |
+
msgid "The file date of the GeoIP database."
|
726 |
+
msgstr "تاريخ الملف من قاعدة البيانات GeoIP."
|
727 |
+
|
728 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:29
|
729 |
+
msgid "File Size"
|
730 |
+
msgstr "حجم الملف"
|
731 |
+
|
732 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:46
|
733 |
+
msgid "The file size of the GeoIP database."
|
734 |
+
msgstr "حجم ملف قاعدة البيانات GeoIP."
|
735 |
+
|
736 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:217
|
737 |
+
msgid "Include totals"
|
738 |
+
msgstr "تتضمن الاجماليات"
|
739 |
+
|
740 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
741 |
+
msgid ""
|
742 |
+
"Add a total line to charts with multiple values, like the search engine "
|
743 |
+
"referrals"
|
744 |
+
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
745 |
+
|
746 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:80
|
747 |
+
msgid "Disable map"
|
748 |
+
msgstr "تعطيل الخريطة"
|
749 |
+
|
750 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
751 |
+
msgid "Disable the map display"
|
752 |
+
msgstr "تعطيل عرض الخريطة"
|
753 |
+
|
754 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:92
|
755 |
+
msgid "Get country location from Google"
|
756 |
+
msgstr "الحصول على موقع البلد من جوجل"
|
757 |
+
|
758 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:98
|
759 |
+
msgid ""
|
760 |
+
"This feature may cause a performance degradation when viewing statistics."
|
761 |
+
msgstr "قد تسبب هذه الميزة انخفاض أداء الموقع عند عرض الإحصائيات."
|
762 |
+
|
763 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
764 |
+
msgid ""
|
765 |
+
"Attention: Exclusion are not currently set to be recorded, the results below "
|
766 |
+
"may not reflect current statistics!"
|
767 |
+
msgstr ""
|
768 |
+
"تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج "
|
769 |
+
"الإحصائيات الحالية أدناه!"
|
770 |
+
|
771 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:115
|
772 |
+
msgid "Number of excluded hits"
|
773 |
+
msgstr "عدد الزيارات المستبعدة"
|
774 |
+
|
775 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:86
|
776 |
+
msgid ""
|
777 |
+
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
778 |
+
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
779 |
+
"Contributor, read = Everyone."
|
780 |
+
msgstr ""
|
781 |
+
"تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
|
782 |
+
"محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
783 |
+
|
784 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
785 |
+
msgid "Enable"
|
786 |
+
msgstr "تمكين"
|
787 |
+
|
788 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
789 |
+
msgid ""
|
790 |
+
"This will record all the excluded hits in a separate table with the reasons "
|
791 |
+
"why it was excluded but no other information. This will generate a lot of "
|
792 |
+
"data but is useful if you want to see the total number of hits your site "
|
793 |
+
"gets, not just actual user visits."
|
794 |
+
msgstr ""
|
795 |
+
"يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب "
|
796 |
+
"الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو "
|
797 |
+
"مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، "
|
798 |
+
"وليس فقط المستخدم الفعلي للموقع."
|
799 |
+
|
800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:159
|
801 |
+
msgid "Site URL Exclusions"
|
802 |
+
msgstr "رابط الموقع المستثنى"
|
803 |
+
|
804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
805 |
+
msgid "Exclude the login page for registering as a hit."
|
806 |
+
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
807 |
+
|
808 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:173
|
809 |
+
msgid "Exclude the admin pages for registering as a hit."
|
810 |
+
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
811 |
+
|
812 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:93
|
813 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
814 |
+
msgid "Exclusions"
|
815 |
+
msgstr "الاستثناءات"
|
816 |
+
|
817 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
818 |
+
msgid "Total Exclusions: %s"
|
819 |
+
msgstr "مجموع الاستثناءات: %s"
|
820 |
+
|
821 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
822 |
+
msgid "Exclusions Statistical Chart"
|
823 |
+
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
824 |
+
|
825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:33
|
826 |
+
msgid "Access Levels"
|
827 |
+
msgstr "مستويات الوصول"
|
828 |
+
|
829 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:37
|
830 |
+
msgid "Resources/Information"
|
831 |
+
msgstr "الموارد/معلومات"
|
832 |
+
|
833 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:39
|
834 |
+
msgid "Purging"
|
835 |
+
msgstr "تطهير"
|
836 |
+
|
837 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:41
|
838 |
+
msgid "Updates"
|
839 |
+
msgstr "تحديثات"
|
840 |
+
|
841 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:82
|
842 |
+
msgid "Access/Exclusions"
|
843 |
+
msgstr "وصول/استثناءات"
|
844 |
+
|
845 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:84
|
846 |
+
msgid "Maintenance"
|
847 |
+
msgstr "صيانة"
|
848 |
+
|
849 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:115
|
850 |
+
msgid "Update"
|
851 |
+
msgstr "تحديث"
|
852 |
+
|
853 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:80
|
854 |
+
msgid "General"
|
855 |
+
msgstr "عام"
|
856 |
+
|
857 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
858 |
+
msgid "Error, %s not emptied!"
|
859 |
+
msgstr "خطأ, %s لم يتم التفريغ!"
|
860 |
+
|
861 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:118
|
862 |
+
msgid "Data"
|
863 |
+
msgstr "المعطيات"
|
864 |
+
|
865 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:145
|
866 |
+
msgid "Purge records older than"
|
867 |
+
msgstr "سجلات الضخ أقدم من"
|
868 |
+
|
869 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
870 |
+
msgid ""
|
871 |
+
"Deleted user statistics data older than the selected number of days. "
|
872 |
+
"Minimum value is 30 days."
|
873 |
+
msgstr ""
|
874 |
+
"بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد "
|
875 |
+
"الأدنى هو 30 يوما."
|
876 |
+
|
877 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
878 |
+
msgid "Purge now!"
|
879 |
+
msgstr "ضخ الآن!"
|
880 |
+
|
881 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
|
882 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
|
883 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:37
|
884 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:47
|
885 |
+
msgid ""
|
886 |
+
"<code>%s</code> data older than <code>%s</code> days purged successfully."
|
887 |
+
msgstr ""
|
888 |
+
"بيانات <code>%s</code> مضى عليها أكثر من <code>%s</code> أيام ضخ بنجاح."
|
889 |
+
|
890 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
891 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
892 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:39
|
893 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:49
|
894 |
+
msgid "No records found to purge from <code>%s</code>!"
|
895 |
+
msgstr "لاتوجد سجلات للضخ من <code>%s</code>!"
|
896 |
+
|
897 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:55
|
898 |
+
msgid "Please select a value over 30 days."
|
899 |
+
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
900 |
+
|
901 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
902 |
+
msgid ""
|
903 |
+
"This will permanently delete data from the database each day, are you sure "
|
904 |
+
"you want to enable this option?"
|
905 |
+
msgstr ""
|
906 |
+
"سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد "
|
907 |
+
"من أنك تريد تمكين هذا الخيار؟"
|
908 |
+
|
909 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
910 |
+
msgid "Database Maintenance"
|
911 |
+
msgstr "صيانة قاعدة البيانات"
|
912 |
+
|
913 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
914 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
915 |
+
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
916 |
+
|
917 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
918 |
+
msgid ""
|
919 |
+
"A WP Cron job will be run daily to prune any data older than a set number of "
|
920 |
+
"days."
|
921 |
+
msgstr ""
|
922 |
+
"سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد "
|
923 |
+
"المحدد من الأيام."
|
924 |
+
|
925 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
926 |
+
msgid "Prune data older than"
|
927 |
+
msgstr "ضخ البيانات الأقدم من"
|
928 |
+
|
929 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
930 |
+
msgid "Days"
|
931 |
+
msgstr "أيام"
|
932 |
+
|
933 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
934 |
+
msgid ""
|
935 |
+
"The number of days to keep statistics for. Minimum value is 30 days. "
|
936 |
+
"Invalid values will disable the daily maintenance."
|
937 |
+
msgstr ""
|
938 |
+
"عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم "
|
939 |
+
"تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
940 |
+
|
941 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
|
942 |
+
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
943 |
+
msgstr "التاريخ: <code dir=\"rtl\">%s</code></code>"
|
944 |
+
|
945 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:360
|
946 |
+
msgid "Time: <code dir=\"ltr\">%s</code>"
|
947 |
+
msgstr "الوقت: <code dir=\"rtl\">%s</code></code>"
|
948 |
+
|
949 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:83
|
950 |
+
msgid "GeoIP"
|
951 |
+
msgstr "GeoIP"
|
952 |
+
|
953 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:64
|
954 |
+
msgid "Next update will be"
|
955 |
+
msgstr "التحديث القادم سيكون في"
|
956 |
+
|
957 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:109
|
958 |
+
msgid ""
|
959 |
+
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
960 |
+
"the installed PHP version being "
|
961 |
+
msgstr ""
|
962 |
+
"جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
963 |
+
|
964 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:314
|
965 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:712
|
966 |
+
msgid "Search Engine Referrals"
|
967 |
+
msgstr "محرك البحث الدعوات"
|
968 |
+
|
969 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
|
970 |
+
msgid "Daily Total"
|
971 |
+
msgstr "المجموع اليومي"
|
972 |
+
|
973 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
|
974 |
+
msgid "Current Time and Date"
|
975 |
+
msgstr "التوقيت الحالي و التاريخ"
|
976 |
+
|
977 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:60
|
978 |
+
msgid "Update Now!"
|
979 |
+
msgstr "تحديث الآن!"
|
980 |
+
|
981 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
982 |
+
msgid ""
|
983 |
+
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
984 |
+
"levels."
|
985 |
+
msgstr "انظر أدوار %s ووردبريس وقدرات الصفحة %s للتفاصيل على مستويات القدرة."
|
986 |
+
|
987 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:87
|
988 |
+
msgid ""
|
989 |
+
"Each of the above casscades the rights upwards in the default WordPress "
|
990 |
+
"configuration. So for example selecting publish_posts grants the right to "
|
991 |
+
"Authors, Editors, Admins and Super Admins."
|
992 |
+
msgstr ""
|
993 |
+
"كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال "
|
994 |
+
"عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
995 |
+
|
996 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:88
|
997 |
+
msgid ""
|
998 |
+
"If you need a more robust solution to delegate access you might want to look "
|
999 |
+
"at %s in the WordPress plugin directory."
|
1000 |
+
msgstr ""
|
1001 |
+
"إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
|
1002 |
+
"الدليل المساعد لووردبريس."
|
1003 |
+
|
1004 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:62
|
1005 |
+
msgid "Required user level to view WP Statistics"
|
1006 |
+
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
1007 |
+
|
1008 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:77
|
1009 |
+
msgid "Required user level to manage WP Statistics"
|
1010 |
+
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
1011 |
+
|
1012 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:56
|
1013 |
+
msgid "Schedule monthly update of GeoIP DB"
|
1014 |
+
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
1015 |
+
|
1016 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1017 |
+
msgid ""
|
1018 |
+
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1019 |
+
"Tuesday of the month."
|
1020 |
+
msgstr ""
|
1021 |
+
"سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء "
|
1022 |
+
"الأول من الشهر."
|
1023 |
+
|
1024 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:83
|
1025 |
+
msgid ""
|
1026 |
+
"This option will also download the database if the local filesize is less "
|
1027 |
+
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1028 |
+
"place)."
|
1029 |
+
msgstr ""
|
1030 |
+
"وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K "
|
1031 |
+
"(الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في "
|
1032 |
+
"مكانه)."
|
1033 |
+
|
1034 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:89
|
1035 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1036 |
+
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
1037 |
+
|
1038 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:95
|
1039 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
1040 |
+
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
1041 |
+
|
1042 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:46
|
1043 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1044 |
+
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
1045 |
+
|
1046 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:86
|
1047 |
+
msgid "Version Info"
|
1048 |
+
msgstr "معلومات الإصدار"
|
1049 |
+
|
1050 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:91
|
1051 |
+
msgid "WP Statistics Version"
|
1052 |
+
msgstr "نسخة WP Statistics"
|
1053 |
+
|
1054 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:96
|
1055 |
+
msgid "The WP Statistics version you are running."
|
1056 |
+
msgstr "إصدار WP Statistics."
|
1057 |
+
|
1058 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:102
|
1059 |
+
msgid "PHP Version"
|
1060 |
+
msgstr "نسخة PHP"
|
1061 |
+
|
1062 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:107
|
1063 |
+
msgid "The PHP version you are running."
|
1064 |
+
msgstr "إصدار PHP."
|
1065 |
+
|
1066 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:124
|
1067 |
+
msgid "jQuery Version"
|
1068 |
+
msgstr "نسخة jQuery"
|
1069 |
+
|
1070 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:129
|
1071 |
+
msgid "The jQuery version you are running."
|
1072 |
+
msgstr "إصدار jQuery."
|
1073 |
+
|
1074 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:576
|
1075 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1076 |
+
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
1077 |
+
|
1078 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
|
1079 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
1080 |
+
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
1081 |
+
|
1082 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
|
1083 |
+
msgid "GeoIP Database updated successfully!"
|
1084 |
+
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
1085 |
+
|
1086 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:156
|
1087 |
+
msgid "Client Info"
|
1088 |
+
msgstr "معلومات العميل"
|
1089 |
+
|
1090 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:161
|
1091 |
+
msgid "Client IP"
|
1092 |
+
msgstr "IP العميل"
|
1093 |
+
|
1094 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:166
|
1095 |
+
msgid "The client IP address."
|
1096 |
+
msgstr "عنوان IP للعميل."
|
1097 |
+
|
1098 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:172
|
1099 |
+
msgid "User Agent"
|
1100 |
+
msgstr "وكيل المستخدم"
|
1101 |
+
|
1102 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:177
|
1103 |
+
msgid "The client user agent string."
|
1104 |
+
msgstr "سلسلة عامل المستخدم العميل."
|
1105 |
+
|
1106 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:61
|
1107 |
+
msgid "Get updates for the location and the countries, this may take a while"
|
1108 |
+
msgstr "الحصول على تحديثات للموقع والدول، وهذا قد يستغرق بعض الوقت"
|
1109 |
+
|
1110 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
1111 |
+
msgid "Exclude User Roles"
|
1112 |
+
msgstr "استبعاد أدوار المستخدم"
|
1113 |
+
|
1114 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:119
|
1115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
1116 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:172
|
1117 |
+
msgid "Exclude"
|
1118 |
+
msgstr "منع"
|
1119 |
+
|
1120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:120
|
1121 |
+
msgid "Exclude %s role from data collection."
|
1122 |
+
msgstr "استبعاد دور %s من جمع البيانات."
|
1123 |
+
|
1124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:126
|
1125 |
+
msgid "IP/Robot Exclusions"
|
1126 |
+
msgstr "استثناءات IP/Robot"
|
1127 |
+
|
1128 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:143
|
1129 |
+
msgid ""
|
1130 |
+
"A list of words (one per line) to match against to detect robots. Entries "
|
1131 |
+
"must be at least 4 characters long or they will be ignored."
|
1132 |
+
msgstr ""
|
1133 |
+
"قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون "
|
1134 |
+
"إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
1135 |
+
|
1136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
1137 |
+
msgid "Reset to Default"
|
1138 |
+
msgstr "إعادة تعيين إلى الافتراضي"
|
1139 |
+
|
1140 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:152
|
1141 |
+
msgid "Add 10.0.0.0"
|
1142 |
+
msgstr "إضافة 10.0.0.0"
|
1143 |
+
|
1144 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:153
|
1145 |
+
msgid "Add 172.16.0.0"
|
1146 |
+
msgstr "إضافة 172.16.0.0"
|
1147 |
+
|
1148 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:154
|
1149 |
+
msgid "Add 192.168.0.0"
|
1150 |
+
msgstr "إضافة 192.168.0.0"
|
1151 |
+
|
1152 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:212
|
1153 |
+
msgid "Charts"
|
1154 |
+
msgstr "الرسوم البيانية"
|
1155 |
+
|
1156 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:38
|
1157 |
+
msgid ""
|
1158 |
+
"For get more information and location (country) from visitor, enable this "
|
1159 |
+
"feature."
|
1160 |
+
msgstr ""
|
1161 |
+
"للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
1162 |
+
|
1163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:81
|
1164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1165 |
+
msgid "Overview"
|
1166 |
+
msgstr "نظرة عامة"
|
1167 |
+
|
1168 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:56
|
1169 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:233
|
1170 |
+
msgid "Countries"
|
1171 |
+
msgstr "الدول"
|
1172 |
+
|
1173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:158
|
1174 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:235
|
1175 |
+
msgid "Hits"
|
1176 |
+
msgstr "نقرات"
|
1177 |
+
|
1178 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:237
|
1179 |
+
msgid "Referers"
|
1180 |
+
msgstr "المراجع"
|
1181 |
+
|
1182 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:238
|
1183 |
+
msgid "Searches"
|
1184 |
+
msgstr "عمليات البحث"
|
1185 |
+
|
1186 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:239
|
1187 |
+
msgid "Search Words"
|
1188 |
+
msgstr "كلمات البحث"
|
1189 |
+
|
1190 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:54
|
1191 |
+
msgid "Second"
|
1192 |
+
msgstr "ثانية"
|
1193 |
+
|
1194 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:17
|
1195 |
+
msgid "Browser Statistics"
|
1196 |
+
msgstr "إحصائيات المتصفح"
|
1197 |
+
|
1198 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:102
|
1199 |
+
msgid "Platform"
|
1200 |
+
msgstr "المنصة"
|
1201 |
+
|
1202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:231
|
1203 |
+
msgid "%s Version"
|
1204 |
+
msgstr "الإصدار %s"
|
1205 |
+
|
1206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1207 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:608
|
1208 |
+
msgid "Hit Statistics"
|
1209 |
+
msgstr "احصائية النقرات"
|
1210 |
+
|
1211 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
1212 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
1213 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1215 |
+
msgid "10 Days"
|
1216 |
+
msgstr "10 أيام"
|
1217 |
+
|
1218 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
1219 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
1220 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1221 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1222 |
+
msgid "20 Days"
|
1223 |
+
msgstr "20 يوم"
|
1224 |
+
|
1225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1226 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
1227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
1229 |
+
msgid "30 Days"
|
1230 |
+
msgstr "30 يو م"
|
1231 |
+
|
1232 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1233 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
1234 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1235 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
1236 |
+
msgid "2 Months"
|
1237 |
+
msgstr "شهرين"
|
1238 |
+
|
1239 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
1241 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1242 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
1243 |
+
msgid "3 Months"
|
1244 |
+
msgstr "3 أشهر"
|
1245 |
+
|
1246 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1247 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
1248 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1249 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
1250 |
+
msgid "6 Months"
|
1251 |
+
msgstr "6 أشهر"
|
1252 |
+
|
1253 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1254 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1255 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1256 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
1257 |
+
msgid "9 Months"
|
1258 |
+
msgstr "9 أشهر"
|
1259 |
+
|
1260 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1261 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
1262 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1263 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1264 |
+
msgid "1 Year"
|
1265 |
+
msgstr "سنة"
|
1266 |
+
|
1267 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
1268 |
+
msgid "Hits Statistical Chart"
|
1269 |
+
msgstr "الرسم البياني لعدد النقرات"
|
1270 |
+
|
1271 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
1272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
1273 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
1274 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
1275 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:73
|
1276 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:150
|
1277 |
+
msgid "days"
|
1278 |
+
msgstr "أيام"
|
1279 |
+
|
1280 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:522
|
1281 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1282 |
+
msgid "Top 10 Countries"
|
1283 |
+
msgstr "أعلى 10 دول"
|
1284 |
+
|
1285 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:528
|
1286 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
|
1287 |
+
msgid "Rank"
|
1288 |
+
msgstr "الترتيب"
|
1289 |
+
|
1290 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:529
|
1291 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
|
1292 |
+
msgid "Flag"
|
1293 |
+
msgstr "العلم"
|
1294 |
+
|
1295 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:531
|
1296 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
1297 |
+
msgid "Visitor Count"
|
1298 |
+
msgstr "عدد الزوار"
|
1299 |
+
|
1300 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1301 |
+
msgid "Search Engine Referrers Statistical Chart"
|
1302 |
+
msgstr "الرسم البياني لمحركات البحث"
|
1303 |
+
|
1304 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
1305 |
+
msgid "Top Countries"
|
1306 |
+
msgstr "أفضل الدول"
|
1307 |
+
|
1308 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1309 |
+
msgid "<code>%s</code> agent data deleted successfully."
|
1310 |
+
msgstr "<code>%s</code> حذف بيانات الوكيل بنجاح."
|
1311 |
+
|
1312 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1313 |
+
msgid "<code>%s</code> platform data deleted successfully."
|
1314 |
+
msgstr "<code>%s</code> حذف بيانات المنصة بنجاح."
|
1315 |
+
|
1316 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:159
|
1317 |
+
msgid "Delete User Agent Types"
|
1318 |
+
msgstr "حذف أنواع وكيل العضو"
|
1319 |
+
|
1320 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:164
|
1321 |
+
msgid "Delete Agents"
|
1322 |
+
msgstr "حذف الوكلاء"
|
1323 |
+
|
1324 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:179
|
1325 |
+
msgid "All visitor data will be lost for this agent type."
|
1326 |
+
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
1327 |
+
|
1328 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1329 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1330 |
+
msgid "Delete now!"
|
1331 |
+
msgstr "حذف الآن!"
|
1332 |
+
|
1333 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:188
|
1334 |
+
msgid "Delete Platforms"
|
1335 |
+
msgstr "حذف المنصات"
|
1336 |
+
|
1337 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
|
1338 |
+
msgid "All visitor data will be lost for this platform type."
|
1339 |
+
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
1340 |
+
|
1341 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:51
|
1342 |
+
msgid "GeoIP Options"
|
1343 |
+
msgstr "خيارات GeoIP"
|
1344 |
+
|
1345 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
1346 |
+
msgid "Store entire user agent string"
|
1347 |
+
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
1348 |
+
|
1349 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
1350 |
+
msgid "Only enabled for debugging"
|
1351 |
+
msgstr "تمكين فقط من أجل التصحيح"
|
1352 |
+
|
1353 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:17
|
1354 |
+
msgid "GeoIP settings"
|
1355 |
+
msgstr "إعدادات GeoIP"
|
1356 |
+
|
1357 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
1358 |
+
msgid "GeoIP collection"
|
1359 |
+
msgstr "مجموعة GeoIP"
|
1360 |
+
|
1361 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:44
|
1362 |
+
msgid "Update GeoIP Info"
|
1363 |
+
msgstr "تحديث معلومات GeoIP"
|
1364 |
+
|
1365 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:49
|
1366 |
+
msgid "Download GeoIP Database"
|
1367 |
+
msgstr "تحميل قاعدة بيانات GeoIP"
|
1368 |
+
|
1369 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:50
|
1370 |
+
msgid "Save changes on this page to download the update."
|
1371 |
+
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
1372 |
+
|
1373 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1374 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:36
|
1375 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:62
|
1376 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:90
|
1377 |
+
msgid "Are you sure?"
|
1378 |
+
msgstr "هل أنت متأكد؟"
|
1379 |
+
|
1380 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1381 |
+
msgid "Clear now!"
|
1382 |
+
msgstr "مسح الآن!"
|
1383 |
+
|
1384 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:243
|
1385 |
+
msgid "Optimization"
|
1386 |
+
msgstr "التحسين"
|
1387 |
+
|
1388 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1389 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1390 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1391 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1392 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
|
1393 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1394 |
+
msgid "Access denied!"
|
1395 |
+
msgstr "تم رفض الوصول!"
|
1396 |
+
|
1397 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1398 |
+
msgid "<code>%s</code> table data deleted successfully."
|
1399 |
+
msgstr "<code>%s</code> حذف بيانات الجدول بنجاح."
|
1400 |
+
|
1401 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
1402 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
1403 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1404 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1405 |
+
msgid "Please select the desired items."
|
1406 |
+
msgstr "يرجى تحديد العناصر المطلوبة."
|
1407 |
+
|
1408 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:5
|
1409 |
+
msgid "Resources"
|
1410 |
+
msgstr "الموارد"
|
1411 |
+
|
1412 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:10
|
1413 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:15
|
1414 |
+
msgid "Memory usage in PHP"
|
1415 |
+
msgstr "استخدام الذاكرة في PHP"
|
1416 |
+
|
1417 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:14
|
1418 |
+
msgid "Byte"
|
1419 |
+
msgstr "بايت"
|
1420 |
+
|
1421 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:36
|
1422 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:47
|
1423 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:58
|
1424 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:69
|
1425 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:80
|
1426 |
+
msgid "Row"
|
1427 |
+
msgstr "صف"
|
1428 |
+
|
1429 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1430 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
|
1431 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1432 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1433 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
1434 |
+
msgid "Number of rows"
|
1435 |
+
msgstr "عدد الصفوف"
|
1436 |
+
|
1437 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1438 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:38
|
1439 |
+
msgid "Export"
|
1440 |
+
msgstr "تصدير"
|
1441 |
+
|
1442 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1443 |
+
msgid "Export from"
|
1444 |
+
msgstr "التصدير من"
|
1445 |
+
|
1446 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1447 |
+
msgid "Select the table for the output file."
|
1448 |
+
msgstr "حدد الجدول لملف الإخراج."
|
1449 |
+
|
1450 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1451 |
+
msgid "Export To"
|
1452 |
+
msgstr "التصدير إلى"
|
1453 |
+
|
1454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1455 |
+
msgid "Select the output file type."
|
1456 |
+
msgstr "حدد نوع ملف الإخراج."
|
1457 |
+
|
1458 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1459 |
+
msgid "Start Now!"
|
1460 |
+
msgstr "ابدأ الآن!"
|
1461 |
+
|
1462 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:123
|
1463 |
+
msgid "Empty Table"
|
1464 |
+
msgstr "تفريغ الجدول"
|
1465 |
+
|
1466 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:136
|
1467 |
+
msgid "All data table will be lost."
|
1468 |
+
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1469 |
+
|
1470 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1471 |
+
msgid "Support"
|
1472 |
+
msgstr "دعم"
|
1473 |
+
|
1474 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
|
1475 |
+
msgid "Referring sites from"
|
1476 |
+
msgstr "مواقع اشارة من"
|
1477 |
+
|
1478 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1479 |
+
msgid "Translations"
|
1480 |
+
msgstr "الترجمات"
|
1481 |
+
|
1482 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
|
1483 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
|
1484 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
|
1485 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1486 |
+
msgid "To be added soon"
|
1487 |
+
msgstr "تضاف قريبا"
|
1488 |
+
|
1489 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
|
1490 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:100
|
1491 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:844
|
1492 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:937
|
1493 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
1494 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1495 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:71
|
1496 |
+
msgid "Map"
|
1497 |
+
msgstr "خريطة"
|
1498 |
+
|
1499 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
1500 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:125
|
1501 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
1502 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1503 |
+
msgid "Page"
|
1504 |
+
msgstr "صفحة"
|
1505 |
+
|
1506 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
1507 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:125
|
1508 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
1509 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1510 |
+
msgid "From"
|
1511 |
+
msgstr "من"
|
1512 |
+
|
1513 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:431
|
1514 |
+
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1515 |
+
msgstr ""
|
1516 |
+
"هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
|
1517 |
+
"تفعيلة مرة أخرى."
|
1518 |
+
|
1519 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
1520 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:233
|
1521 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
1522 |
+
msgid "Statistical reporting"
|
1523 |
+
msgstr "تقارير الإحصائيات"
|
1524 |
+
|
1525 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
1526 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
1527 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:227
|
1528 |
+
msgid "Statistics"
|
1529 |
+
msgstr "الاحصائيات"
|
1530 |
+
|
1531 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
|
1532 |
+
msgid "Show site stats in sidebar"
|
1533 |
+
msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
|
1534 |
+
|
1535 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
1536 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1537 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1538 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:286
|
1539 |
+
msgid "User Online"
|
1540 |
+
msgstr "المتواجدين الآن"
|
1541 |
+
|
1542 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:298
|
1543 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1544 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1545 |
+
msgid "Today Visit"
|
1546 |
+
msgstr "زيارات اليوم"
|
1547 |
+
|
1548 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
1549 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1550 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1551 |
+
msgid "Today Visitor"
|
1552 |
+
msgstr "زوار اليوم"
|
1553 |
+
|
1554 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:300
|
1555 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1556 |
+
msgid "Yesterday Visit"
|
1557 |
+
msgstr "زيارات الأمس"
|
1558 |
+
|
1559 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:299
|
1560 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1561 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1562 |
+
msgid "Yesterday Visitor"
|
1563 |
+
msgstr "زوار الأمس"
|
1564 |
+
|
1565 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:30
|
1566 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:58
|
1567 |
+
msgid "Week Visit"
|
1568 |
+
msgstr "زيارات الأسبوع"
|
1569 |
+
|
1570 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
1571 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:65
|
1572 |
+
msgid "Month Visit"
|
1573 |
+
msgstr "زيارات الشهر"
|
1574 |
+
|
1575 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
1576 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:72
|
1577 |
+
msgid "Years Visit"
|
1578 |
+
msgstr "زيارات السنة"
|
1579 |
+
|
1580 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:302
|
1581 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1582 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1583 |
+
msgid "Total Visit"
|
1584 |
+
msgstr "مجموع الزيارات"
|
1585 |
+
|
1586 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:301
|
1587 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1588 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1589 |
+
msgid "Total Visitor"
|
1590 |
+
msgstr "مجموع الزوار"
|
1591 |
+
|
1592 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:68
|
1593 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
1594 |
+
msgid "Total Posts"
|
1595 |
+
msgstr "إجمالي المشاركات"
|
1596 |
+
|
1597 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:71
|
1598 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:115
|
1599 |
+
msgid "Total Pages"
|
1600 |
+
msgstr "إجمالي الصفحات"
|
1601 |
+
|
1602 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:74
|
1603 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:122
|
1604 |
+
msgid "Total Comments"
|
1605 |
+
msgstr "إجمالي التعليقات"
|
1606 |
+
|
1607 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:77
|
1608 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:129
|
1609 |
+
msgid "Total Spams"
|
1610 |
+
msgstr "إجمالي السبام"
|
1611 |
+
|
1612 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:80
|
1613 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:136
|
1614 |
+
msgid "Total Users"
|
1615 |
+
msgstr "عدد الاعضاء"
|
1616 |
+
|
1617 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:83
|
1618 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:143
|
1619 |
+
msgid "Average Posts"
|
1620 |
+
msgstr "متوسط المشاركات"
|
1621 |
+
|
1622 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:86
|
1623 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:150
|
1624 |
+
msgid "Average Comments"
|
1625 |
+
msgstr "متوسط التعليقات"
|
1626 |
+
|
1627 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:89
|
1628 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:157
|
1629 |
+
msgid "Average Users"
|
1630 |
+
msgstr "متوسط الاعضاء"
|
1631 |
+
|
1632 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:92
|
1633 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:164
|
1634 |
+
msgid "Last Post Date"
|
1635 |
+
msgstr "تاريخ آخر مشاركة"
|
1636 |
+
|
1637 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1638 |
+
msgid "View Stats"
|
1639 |
+
msgstr "عرض الإحصائيات"
|
1640 |
+
|
1641 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
|
1642 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:244
|
1643 |
+
msgid "Settings"
|
1644 |
+
msgstr "الإعدادات"
|
1645 |
+
|
1646 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
1647 |
+
msgid "Today visitor"
|
1648 |
+
msgstr "زوار اليوم"
|
1649 |
+
|
1650 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
1651 |
+
msgid "Today visit"
|
1652 |
+
msgstr "زيارات اليوم"
|
1653 |
+
|
1654 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
|
1655 |
+
msgid "Yesterday visitor"
|
1656 |
+
msgstr "زيارات الأمس"
|
1657 |
+
|
1658 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
|
1659 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:310
|
1660 |
+
msgid "Yesterday visit"
|
1661 |
+
msgstr "زيارات الأمس"
|
1662 |
+
|
1663 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:420
|
1664 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:513
|
1665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
|
1666 |
+
msgid "You do not have sufficient permissions to access this page."
|
1667 |
+
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1668 |
+
|
1669 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
1670 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:101
|
1671 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:230
|
1672 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1673 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
1674 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
1675 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
1676 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
1677 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
1678 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
|
1679 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:467
|
1680 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:520
|
1681 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:573
|
1682 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:607
|
1683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:711
|
1684 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:829
|
1685 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:882
|
1686 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:921
|
1687 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1688 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
1689 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
1690 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:115
|
1691 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
1692 |
+
msgid "Click to toggle"
|
1693 |
+
msgstr "انقر للتبديل"
|
1694 |
+
|
1695 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
1696 |
+
msgid "Summary Statistics"
|
1697 |
+
msgstr "ملخص الاحصائيات"
|
1698 |
+
|
1699 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:101
|
1700 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:269
|
1701 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:673
|
1702 |
+
msgid "Visitor"
|
1703 |
+
msgstr "زائر"
|
1704 |
+
|
1705 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:101
|
1706 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:270
|
1707 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:673
|
1708 |
+
msgid "Visit"
|
1709 |
+
msgstr "زيارة"
|
1710 |
+
|
1711 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:274
|
1712 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:319
|
1713 |
+
msgid "Today"
|
1714 |
+
msgstr "اليوم"
|
1715 |
+
|
1716 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:280
|
1717 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:320
|
1718 |
+
msgid "Yesterday"
|
1719 |
+
msgstr "الأمس"
|
1720 |
+
|
1721 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
1722 |
+
msgid "Week"
|
1723 |
+
msgstr "أسبوع"
|
1724 |
+
|
1725 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:292
|
1726 |
+
msgid "Month"
|
1727 |
+
msgstr "الشهر"
|
1728 |
+
|
1729 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:298
|
1730 |
+
msgid "Year"
|
1731 |
+
msgstr "سنة"
|
1732 |
+
|
1733 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:304
|
1734 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:344
|
1735 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:783
|
1736 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:107
|
1737 |
+
msgid "Total"
|
1738 |
+
msgstr "المجموع"
|
1739 |
+
|
1740 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
|
1741 |
+
msgid "(Adjustment)"
|
1742 |
+
msgstr "(التوافق)"
|
1743 |
+
|
1744 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
|
1745 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:375
|
1746 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1747 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:231
|
1748 |
+
msgid "Browsers"
|
1749 |
+
msgstr "المتصفحات"
|
1750 |
+
|
1751 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:405
|
1752 |
+
msgid "Other"
|
1753 |
+
msgstr "أخرى"
|
1754 |
+
|
1755 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:476
|
1756 |
+
msgid "Address"
|
1757 |
+
msgstr "العنوان"
|
1758 |
+
|
1759 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:87
|
1760 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:659
|
1761 |
+
msgid "Number of visits and visitors"
|
1762 |
+
msgstr "عدد الزيارات والزوار"
|
1763 |
+
|
1764 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
1765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:923
|
1766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
1767 |
+
msgid "Recent Visitors"
|
1768 |
+
msgstr "الزيارات الأخيرة"
|
1769 |
+
|
1770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:530
|
1771 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
1772 |
+
msgid "Country"
|
1773 |
+
msgstr "الدولة"
|
1774 |
+
|
1775 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:42
|
1776 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:70
|
1777 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:86
|
1778 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:98
|
1779 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:125
|
1780 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:137
|
1781 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
1782 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:179
|
1783 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:222
|
1784 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:238
|
1785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:37
|
1786 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:61
|
1787 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:94
|
1788 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
1789 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:85
|
1790 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
1791 |
+
msgid "Active"
|
1792 |
+
msgstr "تفعيل"
|
1793 |
+
|
1794 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:43
|
1795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1796 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
1797 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:126
|
1798 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:150
|
1800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
1801 |
+
msgid "Enable or disable this feature"
|
1802 |
+
msgstr "تمكين أو تعطيل هذه الميزة"
|
1803 |
+
|
1804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:901
|
1805 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:147
|
1806 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:60
|
1807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:65
|
1808 |
+
msgid "Visits"
|
1809 |
+
msgstr "مرة"
|
1810 |
+
|
1811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
|
1812 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:81
|
1813 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
1814 |
+
msgid "Visitors"
|
1815 |
+
msgstr "الزوار"
|
1816 |
+
|
1817 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:49
|
1818 |
+
msgid "Check for online users every"
|
1819 |
+
msgstr "تحقق من المتصلين في الموقع في كل"
|
1820 |
+
|
1821 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:55
|
1822 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1823 |
+
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
1824 |
+
|
1825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
1826 |
+
msgid "Show stats in menu bar"
|
1827 |
+
msgstr "إظهار الاحصائيات في شريط القوائم"
|
1828 |
+
|
1829 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:165
|
1830 |
+
msgid "No"
|
1831 |
+
msgstr "لا"
|
1832 |
+
|
1833 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:166
|
1834 |
+
msgid "Yes"
|
1835 |
+
msgstr "نعم"
|
1836 |
+
|
1837 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:168
|
1838 |
+
msgid "Show stats in admin menu bar"
|
1839 |
+
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
1840 |
+
|
1841 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
1842 |
+
msgid "Coefficient per visitor"
|
1843 |
+
msgstr "درجة لكل زائر"
|
1844 |
+
|
1845 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:110
|
1846 |
+
msgid "For each visit to account for several hits. Currently %s."
|
1847 |
+
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
1848 |
+
|
1849 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:246
|
1850 |
+
msgid "Time send"
|
1851 |
+
msgstr "وقت الارسال"
|
1852 |
+
|
1853 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:260
|
1854 |
+
msgid "Select when receiving statistics report."
|
1855 |
+
msgstr "حدد عند استلام إحصاءات التقرير."
|
1856 |
+
|
1857 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:266
|
1858 |
+
msgid "Send Statistical reporting to"
|
1859 |
+
msgstr "إرسال تقارير الإحصائيات إلى"
|
1860 |
+
|
1861 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:272
|
1862 |
+
msgid "Email"
|
1863 |
+
msgstr "البريد الإلكتروني"
|
1864 |
+
|
1865 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:273
|
1866 |
+
msgid "SMS"
|
1867 |
+
msgstr "رسائل نصية"
|
1868 |
+
|
1869 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:275
|
1870 |
+
msgid "Type Select Get Status Report."
|
1871 |
+
msgstr "حدد نوع الحصول على التقرير."
|
1872 |
+
|
1873 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:278
|
1874 |
+
msgid ""
|
1875 |
+
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1876 |
+
"\"_blank\">Wordpress SMS</a> plugin."
|
1877 |
+
msgstr ""
|
1878 |
+
"ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
|
1879 |
+
"\" target=\"_blank\">Wordpress SMS</a>."
|
1880 |
+
|
1881 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:285
|
1882 |
+
msgid "Send Content Report"
|
1883 |
+
msgstr "أرسل المحتوى"
|
1884 |
+
|
1885 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:290
|
1886 |
+
msgid "Enter the contents of the reports received."
|
1887 |
+
msgstr "أدخل محتويات التقارير الواردة."
|
1888 |
+
|
1889 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:8
|
1890 |
+
msgid "Name"
|
1891 |
+
msgstr "الأسم"
|
1892 |
+
|
1893 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
1894 |
+
msgid "Items"
|
1895 |
+
msgstr "البنود"
|
1896 |
+
|
1897 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:51
|
1898 |
+
msgid "Select type of search engine"
|
1899 |
+
msgstr "حدد نوع من محرك البحث"
|
1900 |
+
|
1901 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
|
1902 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
1903 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:134
|
1904 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:64
|
1905 |
+
msgid "All"
|
1906 |
+
msgstr "الكل"
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP Statistics\n"
|
6 |
-
"POT-Creation-Date: 2014-08-
|
7 |
-
"PO-Revision-Date: 2014-08-
|
8 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: fa_IR\n"
|
@@ -37,12 +37,12 @@ msgid "Browser Statistics"
|
|
37 |
msgstr "آمار مرورگرها"
|
38 |
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
40 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
41 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
42 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
43 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
45 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
48 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
|
@@ -69,19 +69,19 @@ msgstr "برای باز و بستن کلیک کنید"
|
|
69 |
msgid "Browsers"
|
70 |
msgstr "مرورگرها"
|
71 |
|
72 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
73 |
msgid "Browsers by type"
|
74 |
msgstr "مرورگرها براساس نوع"
|
75 |
|
76 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
77 |
msgid "Platform"
|
78 |
msgstr "سَکو"
|
79 |
|
80 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
81 |
msgid "Browsers by platform"
|
82 |
msgstr "مرورگرها براساس سَکو"
|
83 |
|
84 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
85 |
#, php-format
|
86 |
msgid "%s Version"
|
87 |
msgstr "نسخه %s"
|
@@ -94,80 +94,80 @@ msgstr ""
|
|
94 |
"توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشدهاند. نتایج زیر ممکن است "
|
95 |
"آمار فعلی را منعکس نکند."
|
96 |
|
97 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
98 |
msgid "Exclusions Statistics"
|
99 |
msgstr "استثنائات آمار"
|
100 |
|
101 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
102 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
103 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
104 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
105 |
msgid "10 Days"
|
106 |
msgstr "10 روز"
|
107 |
|
108 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
109 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
110 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
111 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
112 |
msgid "20 Days"
|
113 |
msgstr "20 روز"
|
114 |
|
115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
116 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
117 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
118 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
119 |
msgid "30 Days"
|
120 |
msgstr "30 روز"
|
121 |
|
122 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
123 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
124 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
125 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
126 |
msgid "2 Months"
|
127 |
msgstr "2 ماهه"
|
128 |
|
129 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
130 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
131 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
132 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
133 |
msgid "3 Months"
|
134 |
msgstr "3 ماهه"
|
135 |
|
136 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
137 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
138 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
139 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
140 |
msgid "6 Months"
|
141 |
msgstr "6 ماهه"
|
142 |
|
143 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
144 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
145 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
146 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
147 |
msgid "9 Months"
|
148 |
msgstr "9 ماهه"
|
149 |
|
150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
151 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
152 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
153 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
154 |
msgid "1 Year"
|
155 |
msgstr "1 ساله"
|
156 |
|
157 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
158 |
#, php-format
|
159 |
msgid "Total Exclusions: %s"
|
160 |
msgstr "کل استثنائات %s"
|
161 |
|
162 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
163 |
msgid "Exclusions Statistical Chart"
|
164 |
msgstr "نمودار آمار استثنائات"
|
165 |
|
166 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
167 |
msgid "Excluded hits in the last"
|
168 |
msgstr "بازدید آخرین استثنائات"
|
169 |
|
170 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
171 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
172 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
173 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
@@ -176,7 +176,7 @@ msgstr "بازدید آخرین استثنائات"
|
|
176 |
msgid "days"
|
177 |
msgstr "روز"
|
178 |
|
179 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
180 |
msgid "Number of excluded hits"
|
181 |
msgstr "تعداد بازدید استثنائات"
|
182 |
|
@@ -228,25 +228,25 @@ msgstr "آخرین کلمات جستجو شده"
|
|
228 |
msgid "Latest Search Word Statistics"
|
229 |
msgstr "آخرین آمار کلمات جستجو شده"
|
230 |
|
231 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
232 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
233 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:844
|
234 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:937
|
235 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
236 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
237 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
238 |
msgid "Map"
|
239 |
msgstr "نقشه"
|
240 |
|
241 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
242 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
243 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
244 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
245 |
msgid "Page"
|
246 |
msgstr "صفحه"
|
247 |
|
248 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
249 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
250 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
251 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
252 |
msgid "From"
|
@@ -265,11 +265,11 @@ msgstr "آخرین بازدیدکنندگان"
|
|
265 |
msgid "All"
|
266 |
msgstr "همه"
|
267 |
|
268 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
269 |
msgid "Search for"
|
270 |
msgstr "جستجو برای"
|
271 |
|
272 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
273 |
msgid "Recent Visitor Statistics"
|
274 |
msgstr "آخرین آمار بازدیدکنندگان"
|
275 |
|
@@ -448,8 +448,8 @@ msgstr "عنوان برگه یافت نشد"
|
|
448 |
|
449 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:901
|
450 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:147
|
451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
452 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
453 |
msgid "Visits"
|
454 |
msgstr "بازدیدها"
|
455 |
|
@@ -556,7 +556,7 @@ msgid "Please select a value over 30 days."
|
|
556 |
msgstr "لطفاً مقدار بیشتر از 30 روز انتخاب کنید."
|
557 |
|
558 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
559 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
560 |
msgid "Export"
|
561 |
msgstr "برونبری"
|
562 |
|
@@ -569,8 +569,10 @@ msgstr "برونبری از"
|
|
569 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
570 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
571 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
572 |
-
|
573 |
-
|
|
|
|
|
574 |
|
575 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
576 |
msgid "Select the table for the output file."
|
@@ -838,15 +840,15 @@ msgid "Get updates for the location and the countries, this may take a while"
|
|
838 |
msgstr ""
|
839 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
840 |
|
841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
842 |
msgid "Resources/Information"
|
843 |
msgstr "منابع/اطلاعات"
|
844 |
|
845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
846 |
msgid "Purging"
|
847 |
msgstr "پاکسازی"
|
848 |
|
849 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
850 |
msgid "Updates"
|
851 |
msgstr "بهروز رسانیها"
|
852 |
|
@@ -984,26 +986,26 @@ msgstr ""
|
|
984 |
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">انجمن "
|
985 |
"پشتیبانی فارسی</a> ما نیز دردسترس است."
|
986 |
|
987 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
988 |
msgid "Access Levels"
|
989 |
msgstr "سطح دسترسی"
|
990 |
|
991 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
992 |
msgid "Required user level to view WP Statistics"
|
993 |
msgstr "سطح کاربری مورد نیاز برای مشاهده آمارگیر وردپرس"
|
994 |
|
995 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
996 |
msgid "Required user level to manage WP Statistics"
|
997 |
msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگیر وردپرس"
|
998 |
|
999 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1000 |
#, php-format
|
1001 |
msgid ""
|
1002 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1003 |
"levels."
|
1004 |
msgstr "مشاهده اطلاعات بیشتر درمورد %s نقشهای کاربری وردپرس%s"
|
1005 |
|
1006 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1007 |
msgid ""
|
1008 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1009 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
@@ -1012,7 +1014,7 @@ msgstr ""
|
|
1012 |
"نکته: manage_network = مدیر شبکه، manage_options = مدیر، edit_others_posts = "
|
1013 |
"ویرایشگر، publish_posts = نویسنده، edit_posts = مشارکتکننده، read = همه."
|
1014 |
|
1015 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1016 |
msgid ""
|
1017 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1018 |
"configuration. So for example selecting publish_posts grants the right to "
|
@@ -1021,7 +1023,7 @@ msgstr ""
|
|
1021 |
"هریک از موارد بهصورت پیشفرض در وردپرس تعریف شدهاند. بهعنوان مثال با انتخاب "
|
1022 |
"publish_posts به نویسندهگاه، ویرایشگرها، مدیر و مدیرکلی دسترسی اعطا میگردد."
|
1023 |
|
1024 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1025 |
#, php-format
|
1026 |
msgid ""
|
1027 |
"If you need a more robust solution to delegate access you might want to look "
|
@@ -1030,20 +1032,20 @@ msgstr ""
|
|
1030 |
"اگر نیاز به راهحلهای بیشتری در رابطه با نقشهای کاربری وردپرس داشتید، نگاهی "
|
1031 |
"به افزونه %s بیندازید."
|
1032 |
|
1033 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1034 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
1035 |
msgid "Exclusions"
|
1036 |
msgstr "استثنائات"
|
1037 |
|
1038 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1039 |
msgid "Record exclusions"
|
1040 |
msgstr "رکوردهای استثناء"
|
1041 |
|
1042 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1043 |
msgid "Enable"
|
1044 |
msgstr "فعال"
|
1045 |
|
1046 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1047 |
msgid ""
|
1048 |
"This will record all the excluded hits in a separate table with the reasons "
|
1049 |
"why it was excluded but no other information. This will generate a lot of "
|
@@ -1054,30 +1056,30 @@ msgstr ""
|
|
1054 |
"جدول دیگر. میتواند مقدار زیادی داده تولید شود، درعوض مفید خواهد بود و "
|
1055 |
"میتوانید آمار دقیق بازدید و بازدیدکنندهتان را به دست آورید."
|
1056 |
|
1057 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1058 |
msgid "Exclude User Roles"
|
1059 |
msgstr "محرومکردن نقشهای کاربری"
|
1060 |
|
1061 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1062 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1063 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1064 |
msgid "Exclude"
|
1065 |
msgstr "محروم"
|
1066 |
|
1067 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1068 |
#, php-format
|
1069 |
msgid "Exclude %s role from data collection."
|
1070 |
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
1071 |
|
1072 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1073 |
msgid "IP/Robot Exclusions"
|
1074 |
msgstr "محرومیتهای آیپی/ربات"
|
1075 |
|
1076 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1077 |
msgid "Robot list"
|
1078 |
msgstr "لیست روباتها"
|
1079 |
|
1080 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1081 |
msgid ""
|
1082 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1083 |
"must be at least 4 characters long or they will be ignored."
|
@@ -1085,15 +1087,15 @@ msgstr ""
|
|
1085 |
"یک لیست از کلمات برای مقایسه و شناسایی رباتها (در هر خط یک کلمه وارد شود). "
|
1086 |
"ورودیها باید حداقل دارای 4 کارکتر باشد."
|
1087 |
|
1088 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1089 |
msgid "Reset to Default"
|
1090 |
msgstr "بازگشت به حالت پیشفرض"
|
1091 |
|
1092 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1093 |
msgid "Excluded IP address list"
|
1094 |
msgstr "لیست آدرس آیپیهای محروم"
|
1095 |
|
1096 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1097 |
msgid ""
|
1098 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1099 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
@@ -1104,150 +1106,150 @@ msgstr ""
|
|
1104 |
"آمارگیر (هردو فرمت 192.168.0.0/24 و 192.168.0.0/255.255.255.0 قابل قبول). "
|
1105 |
"برای مشخص کردن تنها یک آدرس آیپی نیازی نیست Subnet Mask را اضافه کنید."
|
1106 |
|
1107 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1108 |
msgid "Add 10.0.0.0"
|
1109 |
msgstr "افزودن 10.0.0.0"
|
1110 |
|
1111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1112 |
msgid "Add 172.16.0.0"
|
1113 |
msgstr "افزودن 172.16.0.0"
|
1114 |
|
1115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1116 |
msgid "Add 192.168.0.0"
|
1117 |
msgstr "افزودن 192.168.0.0"
|
1118 |
|
1119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1120 |
msgid "Site URL Exclusions"
|
1121 |
msgstr "استثنائات آدرس"
|
1122 |
|
1123 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1124 |
msgid "Excluded login page"
|
1125 |
msgstr "استثنائات برگهی ورود"
|
1126 |
|
1127 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1128 |
msgid "Exclude the login page for registering as a hit."
|
1129 |
msgstr "نادیده گرفتن برگهی ورود برای نامنویسی بهعنوان محاسبه در آمار"
|
1130 |
|
1131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1132 |
msgid "Excluded admin pages"
|
1133 |
msgstr "استثنائات برگههای مدیریت"
|
1134 |
|
1135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:
|
1136 |
msgid "Exclude the admin pages for registering as a hit."
|
1137 |
msgstr "نادیده گرفتن برگههای مدیریت برای نامنویسی بهعنوان محاسبه در آمار"
|
1138 |
|
1139 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1140 |
msgid "Users Online"
|
1141 |
msgstr "کاربران حاضر"
|
1142 |
|
1143 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1144 |
msgid "User online"
|
1145 |
msgstr "کاربران حاضر"
|
1146 |
|
1147 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1148 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1151 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1152 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1153 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1154 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1155 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1156 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1157 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1158 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1159 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1160 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1161 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1162 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1163 |
msgid "Active"
|
1164 |
msgstr "فعال"
|
1165 |
|
1166 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1167 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1168 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1169 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1170 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1171 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1172 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1173 |
msgid "Enable or disable this feature"
|
1174 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
1175 |
|
1176 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1177 |
msgid "Check for online users every"
|
1178 |
msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
|
1179 |
|
1180 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1181 |
msgid "Second"
|
1182 |
msgstr "ثانیه"
|
1183 |
|
1184 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1185 |
#, php-format
|
1186 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1187 |
msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. فعلا %s ثانیه است"
|
1188 |
|
1189 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1190 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1191 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
1192 |
msgid "Visitors"
|
1193 |
msgstr "بازدیدکنندهگان"
|
1194 |
|
1195 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1196 |
msgid "Store entire user agent string"
|
1197 |
msgstr "ذخیره تمامی مرورگرهای کاربر"
|
1198 |
|
1199 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1200 |
msgid "Only enabled for debugging"
|
1201 |
msgstr "فعال فقط برای اشکال زدایی"
|
1202 |
|
1203 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1204 |
msgid "Coefficient per visitor"
|
1205 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
1206 |
|
1207 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1208 |
#, php-format
|
1209 |
msgid "For each visit to account for several hits. Currently %s."
|
1210 |
msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص میکند. درحال حاضر %s است."
|
1211 |
|
1212 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1213 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1214 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
1215 |
msgid "Pages"
|
1216 |
msgstr "برگهها"
|
1217 |
|
1218 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1219 |
msgid "Track all pages"
|
1220 |
msgstr "رهگیری همه برگهها"
|
1221 |
|
1222 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1223 |
msgid "Disable hits column in post/pages list"
|
1224 |
msgstr "غیرفعال کردن ستون بازدید در لیست برگه/نوشته(ها)"
|
1225 |
|
1226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1227 |
msgid "Miscellaneous"
|
1228 |
msgstr "متفرقه"
|
1229 |
|
1230 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1231 |
msgid "Show stats in menu bar"
|
1232 |
msgstr "نمایش آمار در منوبار"
|
1233 |
|
1234 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1235 |
msgid "No"
|
1236 |
msgstr "خیر"
|
1237 |
|
1238 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1239 |
msgid "Yes"
|
1240 |
msgstr "بله"
|
1241 |
|
1242 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1243 |
msgid "Show stats in admin menu bar"
|
1244 |
msgstr "نمایش آمار در منوبار مدیریت"
|
1245 |
|
1246 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1247 |
msgid "Hide admin notices about non active features"
|
1248 |
msgstr "غیرفعال شدن اطلاعیههای مدیریت درمورد فعال بودن امکانات"
|
1249 |
|
1250 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1251 |
msgid ""
|
1252 |
"By default WP Statistics displays an alert if any of the core features are "
|
1253 |
"disbaled on every admin page, this option will disable these notices."
|
@@ -1255,11 +1257,11 @@ msgstr ""
|
|
1255 |
"بهطور پیشفرض آمارهوردپرس امکاناتی که در افزونه غیرفعال باشد را به صورت اخطار "
|
1256 |
"در برگههای مدیریت نمایان میکند، این گزینه این ویژگی را غیرفعال میکند."
|
1257 |
|
1258 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1259 |
msgid "Search Enginges"
|
1260 |
msgstr "موتورهای جستجوگر"
|
1261 |
|
1262 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1263 |
msgid ""
|
1264 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1265 |
"search engines being active."
|
@@ -1267,65 +1269,60 @@ msgstr ""
|
|
1267 |
"از کار انداختن موتورهای جستجویی که نیازی به آنها نیست، این عمل در نتیجه کل "
|
1268 |
"موتورهای جستجو تأثیر میگذارد."
|
1269 |
|
1270 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1271 |
msgid "disable"
|
1272 |
msgstr "غیرفعال"
|
1273 |
|
1274 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1275 |
#, php-format
|
1276 |
msgid "Disable %s from data collection and reporting."
|
1277 |
msgstr "غیرفعال کردن %s از جمع آوری دادهها و گزارش."
|
1278 |
|
1279 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1280 |
msgid "Charts"
|
1281 |
msgstr "نمودار"
|
1282 |
|
1283 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1284 |
msgid "Include totals"
|
1285 |
msgstr "جمع کل"
|
1286 |
|
1287 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1288 |
msgid ""
|
1289 |
"Add a total line to charts with multiple values, like the search engine "
|
1290 |
"referrals"
|
1291 |
msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
|
1292 |
|
1293 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
1294 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
|
|
1295 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
1296 |
msgid "Statistical reporting"
|
1297 |
msgstr "گزارش آماری"
|
1298 |
|
1299 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1300 |
msgid "Time send"
|
1301 |
msgstr "زمان ارسال"
|
1302 |
|
1303 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1304 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:266
|
1305 |
-
msgid "Please select"
|
1306 |
-
msgstr "لطفا انتخاب کنید"
|
1307 |
-
|
1308 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:255
|
1309 |
msgid "Select when receiving statistics report."
|
1310 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1311 |
|
1312 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1313 |
msgid "Send Statistical reporting to"
|
1314 |
msgstr "ارسال گزارش آمار به"
|
1315 |
|
1316 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1317 |
msgid "Email"
|
1318 |
msgstr "پست الکترونیک"
|
1319 |
|
1320 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1321 |
msgid "SMS"
|
1322 |
msgstr "پیامک"
|
1323 |
|
1324 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1325 |
msgid "Type Select Get Status Report."
|
1326 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1327 |
|
1328 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1329 |
#, php-format
|
1330 |
msgid ""
|
1331 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -1334,15 +1331,15 @@ msgstr ""
|
|
1334 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1335 |
"وردپرس</a> را نصب کنید."
|
1336 |
|
1337 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1338 |
msgid "Send Content Report"
|
1339 |
msgstr "محتوای ارسال گزارش"
|
1340 |
|
1341 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1342 |
msgid "Enter the contents of the reports received."
|
1343 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1344 |
|
1345 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1346 |
msgid ""
|
1347 |
"Any shortcode supported by your installation of WordPress, include all "
|
1348 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
@@ -1351,7 +1348,7 @@ msgstr ""
|
|
1351 |
"هر کدکوتاهی توسط وردپرس شما پشتیبانی میشود. کدهای کوتاه در افزونه آمار (لیست "
|
1352 |
"کدها در راهنمای کاربری موجود است) در بدنهی متن پشتیبانی میشوند."
|
1353 |
|
1354 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1355 |
msgid ""
|
1356 |
"Input data codes are now deprecated and will be removed in a future version "
|
1357 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
@@ -1361,53 +1358,53 @@ msgstr ""
|
|
1361 |
"حذف خواهد شد، لطفاً از کدهای مناسبتر استفاده کنید. آنها در این قسمت برای "
|
1362 |
"اهدافی مشخص شدهاند:"
|
1363 |
|
1364 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1365 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1366 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1367 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1368 |
msgid "User Online"
|
1369 |
msgstr "کاربران حاضر"
|
1370 |
|
1371 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1372 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1374 |
msgid "Today Visitor"
|
1375 |
msgstr "بازدیدکننده امروز"
|
1376 |
|
1377 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1378 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1379 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1380 |
msgid "Today Visit"
|
1381 |
msgstr "بازدید امروز"
|
1382 |
|
1383 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1384 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1385 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1386 |
msgid "Yesterday Visitor"
|
1387 |
msgstr "بازدید کننده دیروز"
|
1388 |
|
1389 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1390 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1391 |
msgid "Yesterday Visit"
|
1392 |
msgstr "بازدید دیروز"
|
1393 |
|
1394 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1395 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1396 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1397 |
msgid "Total Visitor"
|
1398 |
msgstr "کل بازدیدکنندهگان"
|
1399 |
|
1400 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:
|
1401 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1402 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1403 |
msgid "Total Visit"
|
1404 |
msgstr "کل بازدیدها"
|
1405 |
|
1406 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1407 |
msgid "GeoIP settings"
|
1408 |
msgstr "تنظیمات GeoIP"
|
1409 |
|
1410 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1411 |
#, php-format
|
1412 |
msgid ""
|
1413 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
@@ -1416,11 +1413,11 @@ msgstr ""
|
|
1416 |
"سرویس ارائهدهنده مکاننمای IP با GeoLite2 ایجاد شده و توسط MaxMind ساخته شده "
|
1417 |
"است و در %s قابل دسترس است."
|
1418 |
|
1419 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1420 |
msgid "GeoIP collection"
|
1421 |
msgstr "مجموعه GeoIP"
|
1422 |
|
1423 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1424 |
msgid ""
|
1425 |
"For get more information and location (country) from visitor, enable this "
|
1426 |
"feature."
|
@@ -1428,33 +1425,33 @@ msgstr ""
|
|
1428 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1429 |
"کنید."
|
1430 |
|
1431 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1432 |
msgid "Update GeoIP Info"
|
1433 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1434 |
|
1435 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1436 |
msgid "Download GeoIP Database"
|
1437 |
msgstr "دریافت پایگاهداده GeoIP"
|
1438 |
|
1439 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1440 |
msgid "Save changes on this page to download the update."
|
1441 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1442 |
|
1443 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1444 |
msgid "Schedule monthly update of GeoIP DB"
|
1445 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1446 |
|
1447 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1448 |
msgid "Next update will be"
|
1449 |
msgstr "بهروز رسانی بعدی خواهد بود"
|
1450 |
|
1451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1452 |
msgid ""
|
1453 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1454 |
"Tuesday of the month."
|
1455 |
msgstr "دریافت پایگاهدادهی GeoIP در 2 روز بعد از اولین سهشنبه در هرماه."
|
1456 |
|
1457 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1458 |
msgid ""
|
1459 |
"This option will also download the database if the local filesize is less "
|
1460 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
@@ -1463,20 +1460,20 @@ msgstr ""
|
|
1463 |
"این امکان حتی دادههای کمتر از 1 کیلوبایت را نیز دریافت میکند (که به معنای "
|
1464 |
"دادههای همراه افزونه است)."
|
1465 |
|
1466 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1467 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1468 |
msgstr "جمعیتهای از دست رفته GeoIP بعد از بهروز سانی پایگاهدادهی GeoIP"
|
1469 |
|
1470 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1471 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1472 |
msgstr ""
|
1473 |
"بهروز رسانی هر دادهی از دسترفتهی GeoIP بعد از دریافت پایگاه دادهی جدید."
|
1474 |
|
1475 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1476 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1477 |
msgstr "مجموعه GeoIP با توجه به دلایل زیر غیرفعال شده است:"
|
1478 |
|
1479 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1480 |
#, php-format
|
1481 |
msgid ""
|
1482 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
@@ -1485,7 +1482,7 @@ msgstr ""
|
|
1485 |
"مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
|
1486 |
"بودن نسخه PHP شما، غیرفعال است"
|
1487 |
|
1488 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1489 |
msgid ""
|
1490 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1491 |
"your version of PHP!"
|
@@ -1493,7 +1490,7 @@ msgstr ""
|
|
1493 |
"مجموعهی GeoIP نیاز به ماژول cURL در PHP دارد و نمیتواند در نگارش PHP شما "
|
1494 |
"بارگزاری شود!"
|
1495 |
|
1496 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1497 |
msgid ""
|
1498 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1499 |
"your version of PHP!"
|
@@ -1501,14 +1498,14 @@ msgstr ""
|
|
1501 |
"مجموعهی GeoIP نیاز به ماژول BC Math در PHP دارد و نمیتواند در نگارش PHP شما "
|
1502 |
"بارگزاری شود!"
|
1503 |
|
1504 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:
|
1505 |
msgid ""
|
1506 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1507 |
"mode enabled!"
|
1508 |
msgstr ""
|
1509 |
"حالت ایمنی PHP شناسایی نشد! مجموعه GeoIP توسط حالت ایمنی PHP پشتیبانی نمیشود!"
|
1510 |
|
1511 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1512 |
msgid ""
|
1513 |
"This will permanently delete data from the database each day, are you sure "
|
1514 |
"you want to enable this option?"
|
@@ -1516,15 +1513,15 @@ msgstr ""
|
|
1516 |
"این درخواست دادههای قدیمی را برای همیشه پاک میکند. برای فعال سازی آن مطمئن "
|
1517 |
"هستید؟"
|
1518 |
|
1519 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1520 |
msgid "Database Maintenance"
|
1521 |
msgstr "تعمیر و نگهداری پایگاهداده"
|
1522 |
|
1523 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1524 |
msgid "Run a daily WP Cron job to prune the databases"
|
1525 |
msgstr "اجرای روزانه یک زمانبندی برای هرس کردن پایگاهداده."
|
1526 |
|
1527 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1528 |
msgid ""
|
1529 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1530 |
"days."
|
@@ -1532,15 +1529,15 @@ msgstr ""
|
|
1532 |
"وظیفه آن اجرای روزانه برای حذف دادههایی که بیشتر از زمان انتخاب شده نگهداری "
|
1533 |
"شده اند."
|
1534 |
|
1535 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1536 |
msgid "Prune data older than"
|
1537 |
msgstr "دادههای قدیمیتر از"
|
1538 |
|
1539 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1540 |
msgid "Days"
|
1541 |
msgstr "روز"
|
1542 |
|
1543 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:
|
1544 |
msgid ""
|
1545 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1546 |
"Invalid values will disable the daily maintenance."
|
@@ -1558,7 +1555,7 @@ msgid "Summary Statistics"
|
|
1558 |
msgstr "خلاصه آمار"
|
1559 |
|
1560 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
1561 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1562 |
msgid "About"
|
1563 |
msgstr "درباره"
|
1564 |
|
@@ -1574,32 +1571,32 @@ msgstr "نمودار آمار موتورهای جستجو"
|
|
1574 |
msgid "Top Pages Visited"
|
1575 |
msgstr "برترین برگههای بازدید شده"
|
1576 |
|
1577 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1578 |
msgid "The following two items are global to all users."
|
1579 |
msgstr "دو آیتم زیر برای تمامی کاربرها قابل مشاهده است."
|
1580 |
|
1581 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1582 |
msgid "Disable map"
|
1583 |
msgstr "غیرفعال کردن نقشه"
|
1584 |
|
1585 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1586 |
msgid "Disable the map display"
|
1587 |
msgstr "غیرفعال کردن نمایش نقشه"
|
1588 |
|
1589 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1590 |
msgid "Get country location from Google"
|
1591 |
msgstr "دریافت مختصات کشورها از گوگل"
|
1592 |
|
1593 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1594 |
msgid ""
|
1595 |
"This feature may cause a performance degradation when viewing statistics."
|
1596 |
msgstr "این ویژگی ممکن است مشاهده آمار را با کندی مواجه کند."
|
1597 |
|
1598 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1599 |
msgid "Widgets to Display"
|
1600 |
msgstr "نمایش ابزارکها"
|
1601 |
|
1602 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1603 |
msgid ""
|
1604 |
"The following items are unique to each user. If you do not select the "
|
1605 |
"'About' widget it will automatically be displayed in the last positon of "
|
@@ -1608,43 +1605,43 @@ msgstr ""
|
|
1608 |
"موارد زیر برای هرکاربر منحصر به فرد است. اگر شما ابزارک \"درباره پلاگین\" را "
|
1609 |
"انتخاب نکنید، به صورت پیشفرض در ستون A نمایش داده میشود."
|
1610 |
|
1611 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1612 |
msgid "Slot"
|
1613 |
msgstr "سطر"
|
1614 |
|
1615 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1616 |
msgid "Column A"
|
1617 |
msgstr "ستون A"
|
1618 |
|
1619 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1620 |
msgid "Column B"
|
1621 |
msgstr "ستون B"
|
1622 |
|
1623 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1624 |
msgid "Slot 1"
|
1625 |
msgstr "سطر 1"
|
1626 |
|
1627 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1628 |
msgid "Slot 2"
|
1629 |
msgstr "سطر 2"
|
1630 |
|
1631 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1632 |
msgid "Slot 3"
|
1633 |
msgstr "سطر 3"
|
1634 |
|
1635 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1636 |
msgid "Slot 4"
|
1637 |
msgstr "سطر 4"
|
1638 |
|
1639 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1640 |
msgid "Slot 5"
|
1641 |
msgstr "سطر 5"
|
1642 |
|
1643 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1644 |
msgid "Slot 6"
|
1645 |
msgstr "سطر 6"
|
1646 |
|
1647 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1648 |
msgid "N/A"
|
1649 |
msgstr "خالی"
|
1650 |
|
@@ -1657,7 +1654,7 @@ msgid "Items"
|
|
1657 |
msgstr "آیتمها"
|
1658 |
|
1659 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
|
1660 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1661 |
msgid "Yesterday visit"
|
1662 |
msgstr "بازدید دیروز"
|
1663 |
|
@@ -1734,28 +1731,28 @@ msgstr "میانگین کاربرها"
|
|
1734 |
msgid "Last Post Date"
|
1735 |
msgstr "تاریخ بهروزشدن سایت"
|
1736 |
|
1737 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1738 |
msgid "General"
|
1739 |
msgstr "عمومی"
|
1740 |
|
1741 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1742 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1743 |
msgid "Overview"
|
1744 |
msgstr "مرور کلی"
|
1745 |
|
1746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1747 |
msgid "Access/Exclusions"
|
1748 |
msgstr "دسترسی/محرومیتها"
|
1749 |
|
1750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1751 |
msgid "GeoIP"
|
1752 |
msgstr "GeoIP"
|
1753 |
|
1754 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1755 |
msgid "Maintenance"
|
1756 |
msgstr "تعمیر و نگهداری"
|
1757 |
|
1758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1759 |
msgid "Update"
|
1760 |
msgstr "بهروز رسانی"
|
1761 |
|
@@ -1890,63 +1887,66 @@ msgstr "بهینه سازی"
|
|
1890 |
msgid "Manual"
|
1891 |
msgstr "راهنما"
|
1892 |
|
1893 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1894 |
msgid "Today visitor"
|
1895 |
msgstr "بازدید کننده امروز"
|
1896 |
|
1897 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1898 |
msgid "Today visit"
|
1899 |
msgstr "بازدید امروز"
|
1900 |
|
1901 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1902 |
msgid "Yesterday visitor"
|
1903 |
msgstr "بازدید کننده دیروز"
|
1904 |
|
1905 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1906 |
msgid "View Stats"
|
1907 |
msgstr "نمایش آمار"
|
1908 |
|
1909 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1910 |
msgid "Download ODF file"
|
1911 |
msgstr "دریافت فایل ODF"
|
1912 |
|
1913 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1914 |
msgid "Download HTML file"
|
1915 |
msgstr "دریافت فایل HTML"
|
1916 |
|
1917 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1918 |
msgid "Manual file not found."
|
1919 |
msgstr "راهنما یافت نشد."
|
1920 |
|
1921 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1922 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1923 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1924 |
msgid "You do not have sufficient permissions to access this page."
|
1925 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
1926 |
|
1927 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1928 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1929 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
1930 |
|
1931 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1932 |
#, php-format
|
1933 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1934 |
msgstr "خطای دریافت پایگاهداده GeoIP از %s: - %s"
|
1935 |
|
1936 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1937 |
#, php-format
|
1938 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1939 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای خواندن: %s"
|
1940 |
|
1941 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1942 |
#, php-format
|
1943 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1944 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای نوشتن: %s"
|
1945 |
|
1946 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1947 |
msgid "GeoIP Database updated successfully!"
|
1948 |
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
1949 |
|
|
|
|
|
|
|
1950 |
#~ msgid "Browser share"
|
1951 |
#~ msgstr "سهم مرورگر"
|
1952 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP Statistics\n"
|
6 |
+
"POT-Creation-Date: 2014-08-08 20:38+0330\n"
|
7 |
+
"PO-Revision-Date: 2014-08-08 20:38+0330\n"
|
8 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: fa_IR\n"
|
37 |
msgstr "آمار مرورگرها"
|
38 |
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
40 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:101
|
41 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:230
|
42 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
43 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
45 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
48 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
|
69 |
msgid "Browsers"
|
70 |
msgstr "مرورگرها"
|
71 |
|
72 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:50
|
73 |
msgid "Browsers by type"
|
74 |
msgstr "مرورگرها براساس نوع"
|
75 |
|
76 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:102
|
77 |
msgid "Platform"
|
78 |
msgstr "سَکو"
|
79 |
|
80 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:128
|
81 |
msgid "Browsers by platform"
|
82 |
msgstr "مرورگرها براساس سَکو"
|
83 |
|
84 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:231
|
85 |
#, php-format
|
86 |
msgid "%s Version"
|
87 |
msgstr "نسخه %s"
|
94 |
"توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشدهاند. نتایج زیر ممکن است "
|
95 |
"آمار فعلی را منعکس نکند."
|
96 |
|
97 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
98 |
msgid "Exclusions Statistics"
|
99 |
msgstr "استثنائات آمار"
|
100 |
|
101 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
102 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
103 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
104 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
105 |
msgid "10 Days"
|
106 |
msgstr "10 روز"
|
107 |
|
108 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
109 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
110 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
111 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
112 |
msgid "20 Days"
|
113 |
msgstr "20 روز"
|
114 |
|
115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
116 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
117 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
118 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
119 |
msgid "30 Days"
|
120 |
msgstr "30 روز"
|
121 |
|
122 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
123 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
124 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
125 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
126 |
msgid "2 Months"
|
127 |
msgstr "2 ماهه"
|
128 |
|
129 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
130 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
131 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
132 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
133 |
msgid "3 Months"
|
134 |
msgstr "3 ماهه"
|
135 |
|
136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
137 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
138 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
139 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
140 |
msgid "6 Months"
|
141 |
msgstr "6 ماهه"
|
142 |
|
143 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
144 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
145 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
146 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
147 |
msgid "9 Months"
|
148 |
msgstr "9 ماهه"
|
149 |
|
150 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
151 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
152 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
153 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
154 |
msgid "1 Year"
|
155 |
msgstr "1 ساله"
|
156 |
|
157 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
158 |
#, php-format
|
159 |
msgid "Total Exclusions: %s"
|
160 |
msgstr "کل استثنائات %s"
|
161 |
|
162 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
163 |
msgid "Exclusions Statistical Chart"
|
164 |
msgstr "نمودار آمار استثنائات"
|
165 |
|
166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
167 |
msgid "Excluded hits in the last"
|
168 |
msgstr "بازدید آخرین استثنائات"
|
169 |
|
170 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
171 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
172 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
173 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
176 |
msgid "days"
|
177 |
msgstr "روز"
|
178 |
|
179 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:115
|
180 |
msgid "Number of excluded hits"
|
181 |
msgstr "تعداد بازدید استثنائات"
|
182 |
|
228 |
msgid "Latest Search Word Statistics"
|
229 |
msgstr "آخرین آمار کلمات جستجو شده"
|
230 |
|
231 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
|
232 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:100
|
233 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:844
|
234 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:937
|
235 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
236 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
237 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:71
|
238 |
msgid "Map"
|
239 |
msgstr "نقشه"
|
240 |
|
241 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
242 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:125
|
243 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
244 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
245 |
msgid "Page"
|
246 |
msgstr "صفحه"
|
247 |
|
248 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
249 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:125
|
250 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
251 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
252 |
msgid "From"
|
265 |
msgid "All"
|
266 |
msgstr "همه"
|
267 |
|
268 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
269 |
msgid "Search for"
|
270 |
msgstr "جستجو برای"
|
271 |
|
272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:66
|
273 |
msgid "Recent Visitor Statistics"
|
274 |
msgstr "آخرین آمار بازدیدکنندگان"
|
275 |
|
448 |
|
449 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:901
|
450 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:147
|
451 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:60
|
452 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:65
|
453 |
msgid "Visits"
|
454 |
msgstr "بازدیدها"
|
455 |
|
556 |
msgstr "لطفاً مقدار بیشتر از 30 روز انتخاب کنید."
|
557 |
|
558 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
559 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:38
|
560 |
msgid "Export"
|
561 |
msgstr "برونبری"
|
562 |
|
569 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
570 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
571 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
572 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:251
|
573 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
574 |
+
msgid "Please select"
|
575 |
+
msgstr "لطفا انتخاب کنید"
|
576 |
|
577 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
578 |
msgid "Select the table for the output file."
|
840 |
msgstr ""
|
841 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
842 |
|
843 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:37
|
844 |
msgid "Resources/Information"
|
845 |
msgstr "منابع/اطلاعات"
|
846 |
|
847 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:39
|
848 |
msgid "Purging"
|
849 |
msgstr "پاکسازی"
|
850 |
|
851 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:41
|
852 |
msgid "Updates"
|
853 |
msgstr "بهروز رسانیها"
|
854 |
|
986 |
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">انجمن "
|
987 |
"پشتیبانی فارسی</a> ما نیز دردسترس است."
|
988 |
|
989 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:33
|
990 |
msgid "Access Levels"
|
991 |
msgstr "سطح دسترسی"
|
992 |
|
993 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:62
|
994 |
msgid "Required user level to view WP Statistics"
|
995 |
msgstr "سطح کاربری مورد نیاز برای مشاهده آمارگیر وردپرس"
|
996 |
|
997 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:77
|
998 |
msgid "Required user level to manage WP Statistics"
|
999 |
msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگیر وردپرس"
|
1000 |
|
1001 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1002 |
#, php-format
|
1003 |
msgid ""
|
1004 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1005 |
"levels."
|
1006 |
msgstr "مشاهده اطلاعات بیشتر درمورد %s نقشهای کاربری وردپرس%s"
|
1007 |
|
1008 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:86
|
1009 |
msgid ""
|
1010 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1011 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1014 |
"نکته: manage_network = مدیر شبکه، manage_options = مدیر، edit_others_posts = "
|
1015 |
"ویرایشگر، publish_posts = نویسنده، edit_posts = مشارکتکننده، read = همه."
|
1016 |
|
1017 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:87
|
1018 |
msgid ""
|
1019 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1020 |
"configuration. So for example selecting publish_posts grants the right to "
|
1023 |
"هریک از موارد بهصورت پیشفرض در وردپرس تعریف شدهاند. بهعنوان مثال با انتخاب "
|
1024 |
"publish_posts به نویسندهگاه، ویرایشگرها، مدیر و مدیرکلی دسترسی اعطا میگردد."
|
1025 |
|
1026 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:88
|
1027 |
#, php-format
|
1028 |
msgid ""
|
1029 |
"If you need a more robust solution to delegate access you might want to look "
|
1032 |
"اگر نیاز به راهحلهای بیشتری در رابطه با نقشهای کاربری وردپرس داشتید، نگاهی "
|
1033 |
"به افزونه %s بیندازید."
|
1034 |
|
1035 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:93
|
1036 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
1037 |
msgid "Exclusions"
|
1038 |
msgstr "استثنائات"
|
1039 |
|
1040 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
1041 |
msgid "Record exclusions"
|
1042 |
msgstr "رکوردهای استثناء"
|
1043 |
|
1044 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
1045 |
msgid "Enable"
|
1046 |
msgstr "فعال"
|
1047 |
|
1048 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
1049 |
msgid ""
|
1050 |
"This will record all the excluded hits in a separate table with the reasons "
|
1051 |
"why it was excluded but no other information. This will generate a lot of "
|
1056 |
"جدول دیگر. میتواند مقدار زیادی داده تولید شود، درعوض مفید خواهد بود و "
|
1057 |
"میتوانید آمار دقیق بازدید و بازدیدکنندهتان را به دست آورید."
|
1058 |
|
1059 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
1060 |
msgid "Exclude User Roles"
|
1061 |
msgstr "محرومکردن نقشهای کاربری"
|
1062 |
|
1063 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:119
|
1064 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
1065 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:172
|
1066 |
msgid "Exclude"
|
1067 |
msgstr "محروم"
|
1068 |
|
1069 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:120
|
1070 |
#, php-format
|
1071 |
msgid "Exclude %s role from data collection."
|
1072 |
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
1073 |
|
1074 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:126
|
1075 |
msgid "IP/Robot Exclusions"
|
1076 |
msgstr "محرومیتهای آیپی/ربات"
|
1077 |
|
1078 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:130
|
1079 |
msgid "Robot list"
|
1080 |
msgstr "لیست روباتها"
|
1081 |
|
1082 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:143
|
1083 |
msgid ""
|
1084 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1085 |
"must be at least 4 characters long or they will be ignored."
|
1087 |
"یک لیست از کلمات برای مقایسه و شناسایی رباتها (در هر خط یک کلمه وارد شود). "
|
1088 |
"ورودیها باید حداقل دارای 4 کارکتر باشد."
|
1089 |
|
1090 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
1091 |
msgid "Reset to Default"
|
1092 |
msgstr "بازگشت به حالت پیشفرض"
|
1093 |
|
1094 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:148
|
1095 |
msgid "Excluded IP address list"
|
1096 |
msgstr "لیست آدرس آیپیهای محروم"
|
1097 |
|
1098 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:151
|
1099 |
msgid ""
|
1100 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1101 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
1106 |
"آمارگیر (هردو فرمت 192.168.0.0/24 و 192.168.0.0/255.255.255.0 قابل قبول). "
|
1107 |
"برای مشخص کردن تنها یک آدرس آیپی نیازی نیست Subnet Mask را اضافه کنید."
|
1108 |
|
1109 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:152
|
1110 |
msgid "Add 10.0.0.0"
|
1111 |
msgstr "افزودن 10.0.0.0"
|
1112 |
|
1113 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:153
|
1114 |
msgid "Add 172.16.0.0"
|
1115 |
msgstr "افزودن 172.16.0.0"
|
1116 |
|
1117 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:154
|
1118 |
msgid "Add 192.168.0.0"
|
1119 |
msgstr "افزودن 192.168.0.0"
|
1120 |
|
1121 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:159
|
1122 |
msgid "Site URL Exclusions"
|
1123 |
msgstr "استثنائات آدرس"
|
1124 |
|
1125 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
1126 |
msgid "Excluded login page"
|
1127 |
msgstr "استثنائات برگهی ورود"
|
1128 |
|
1129 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
1130 |
msgid "Exclude the login page for registering as a hit."
|
1131 |
msgstr "نادیده گرفتن برگهی ورود برای نامنویسی بهعنوان محاسبه در آمار"
|
1132 |
|
1133 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:170
|
1134 |
msgid "Excluded admin pages"
|
1135 |
msgstr "استثنائات برگههای مدیریت"
|
1136 |
|
1137 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:173
|
1138 |
msgid "Exclude the admin pages for registering as a hit."
|
1139 |
msgstr "نادیده گرفتن برگههای مدیریت برای نامنویسی بهعنوان محاسبه در آمار"
|
1140 |
|
1141 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:32
|
1142 |
msgid "Users Online"
|
1143 |
msgstr "کاربران حاضر"
|
1144 |
|
1145 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:37
|
1146 |
msgid "User online"
|
1147 |
msgstr "کاربران حاضر"
|
1148 |
|
1149 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:42
|
1150 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:70
|
1151 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:86
|
1152 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:98
|
1153 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:125
|
1154 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:137
|
1155 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
1156 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:179
|
1157 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:222
|
1158 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:238
|
1159 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:37
|
1160 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:61
|
1161 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:94
|
1162 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
1163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:85
|
1164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
1165 |
msgid "Active"
|
1166 |
msgstr "فعال"
|
1167 |
|
1168 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:43
|
1169 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1170 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
1171 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:126
|
1172 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:150
|
1174 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
1175 |
msgid "Enable or disable this feature"
|
1176 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
1177 |
|
1178 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:49
|
1179 |
msgid "Check for online users every"
|
1180 |
msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
|
1181 |
|
1182 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:54
|
1183 |
msgid "Second"
|
1184 |
msgstr "ثانیه"
|
1185 |
|
1186 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:55
|
1187 |
#, php-format
|
1188 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1189 |
msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. فعلا %s ثانیه است"
|
1190 |
|
1191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
|
1192 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:81
|
1193 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
1194 |
msgid "Visitors"
|
1195 |
msgstr "بازدیدکنندهگان"
|
1196 |
|
1197 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
1198 |
msgid "Store entire user agent string"
|
1199 |
msgstr "ذخیره تمامی مرورگرهای کاربر"
|
1200 |
|
1201 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
1202 |
msgid "Only enabled for debugging"
|
1203 |
msgstr "فعال فقط برای اشکال زدایی"
|
1204 |
|
1205 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
1206 |
msgid "Coefficient per visitor"
|
1207 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
1208 |
|
1209 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:110
|
1210 |
#, php-format
|
1211 |
msgid "For each visit to account for several hits. Currently %s."
|
1212 |
msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص میکند. درحال حاضر %s است."
|
1213 |
|
1214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:115
|
1215 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:120
|
1216 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
1217 |
msgid "Pages"
|
1218 |
msgstr "برگهها"
|
1219 |
|
1220 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
|
1221 |
msgid "Track all pages"
|
1222 |
msgstr "رهگیری همه برگهها"
|
1223 |
|
1224 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:144
|
1225 |
msgid "Disable hits column in post/pages list"
|
1226 |
msgstr "غیرفعال کردن ستون بازدید در لیست برگه/نوشته(ها)"
|
1227 |
|
1228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
1229 |
msgid "Miscellaneous"
|
1230 |
msgstr "متفرقه"
|
1231 |
|
1232 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
1233 |
msgid "Show stats in menu bar"
|
1234 |
msgstr "نمایش آمار در منوبار"
|
1235 |
|
1236 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:165
|
1237 |
msgid "No"
|
1238 |
msgstr "خیر"
|
1239 |
|
1240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:166
|
1241 |
msgid "Yes"
|
1242 |
msgstr "بله"
|
1243 |
|
1244 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:168
|
1245 |
msgid "Show stats in admin menu bar"
|
1246 |
msgstr "نمایش آمار در منوبار مدیریت"
|
1247 |
|
1248 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:174
|
1249 |
msgid "Hide admin notices about non active features"
|
1250 |
msgstr "غیرفعال شدن اطلاعیههای مدیریت درمورد فعال بودن امکانات"
|
1251 |
|
1252 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:180
|
1253 |
msgid ""
|
1254 |
"By default WP Statistics displays an alert if any of the core features are "
|
1255 |
"disbaled on every admin page, this option will disable these notices."
|
1257 |
"بهطور پیشفرض آمارهوردپرس امکاناتی که در افزونه غیرفعال باشد را به صورت اخطار "
|
1258 |
"در برگههای مدیریت نمایان میکند، این گزینه این ویژگی را غیرفعال میکند."
|
1259 |
|
1260 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:185
|
1261 |
msgid "Search Enginges"
|
1262 |
msgstr "موتورهای جستجوگر"
|
1263 |
|
1264 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:190
|
1265 |
msgid ""
|
1266 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1267 |
"search engines being active."
|
1269 |
"از کار انداختن موتورهای جستجویی که نیازی به آنها نیست، این عمل در نتیجه کل "
|
1270 |
"موتورهای جستجو تأثیر میگذارد."
|
1271 |
|
1272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:205
|
1273 |
msgid "disable"
|
1274 |
msgstr "غیرفعال"
|
1275 |
|
1276 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:206
|
1277 |
#, php-format
|
1278 |
msgid "Disable %s from data collection and reporting."
|
1279 |
msgstr "غیرفعال کردن %s از جمع آوری دادهها و گزارش."
|
1280 |
|
1281 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:212
|
1282 |
msgid "Charts"
|
1283 |
msgstr "نمودار"
|
1284 |
|
1285 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:217
|
1286 |
msgid "Include totals"
|
1287 |
msgstr "جمع کل"
|
1288 |
|
1289 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
1290 |
msgid ""
|
1291 |
"Add a total line to charts with multiple values, like the search engine "
|
1292 |
"referrals"
|
1293 |
msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
|
1294 |
|
|
|
1295 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
1296 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:233
|
1297 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
1298 |
msgid "Statistical reporting"
|
1299 |
msgstr "گزارش آماری"
|
1300 |
|
1301 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:246
|
1302 |
msgid "Time send"
|
1303 |
msgstr "زمان ارسال"
|
1304 |
|
1305 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:260
|
|
|
|
|
|
|
|
|
|
|
1306 |
msgid "Select when receiving statistics report."
|
1307 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1308 |
|
1309 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:266
|
1310 |
msgid "Send Statistical reporting to"
|
1311 |
msgstr "ارسال گزارش آمار به"
|
1312 |
|
1313 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:272
|
1314 |
msgid "Email"
|
1315 |
msgstr "پست الکترونیک"
|
1316 |
|
1317 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:273
|
1318 |
msgid "SMS"
|
1319 |
msgstr "پیامک"
|
1320 |
|
1321 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:275
|
1322 |
msgid "Type Select Get Status Report."
|
1323 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1324 |
|
1325 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:278
|
1326 |
#, php-format
|
1327 |
msgid ""
|
1328 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1331 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1332 |
"وردپرس</a> را نصب کنید."
|
1333 |
|
1334 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:285
|
1335 |
msgid "Send Content Report"
|
1336 |
msgstr "محتوای ارسال گزارش"
|
1337 |
|
1338 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:290
|
1339 |
msgid "Enter the contents of the reports received."
|
1340 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1341 |
|
1342 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:292
|
1343 |
msgid ""
|
1344 |
"Any shortcode supported by your installation of WordPress, include all "
|
1345 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1348 |
"هر کدکوتاهی توسط وردپرس شما پشتیبانی میشود. کدهای کوتاه در افزونه آمار (لیست "
|
1349 |
"کدها در راهنمای کاربری موجود است) در بدنهی متن پشتیبانی میشوند."
|
1350 |
|
1351 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:295
|
1352 |
msgid ""
|
1353 |
"Input data codes are now deprecated and will be removed in a future version "
|
1354 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
1358 |
"حذف خواهد شد، لطفاً از کدهای مناسبتر استفاده کنید. آنها در این قسمت برای "
|
1359 |
"اهدافی مشخص شدهاند:"
|
1360 |
|
1361 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
1362 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1363 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1364 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:286
|
1365 |
msgid "User Online"
|
1366 |
msgstr "کاربران حاضر"
|
1367 |
|
1368 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
1369 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1370 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1371 |
msgid "Today Visitor"
|
1372 |
msgstr "بازدیدکننده امروز"
|
1373 |
|
1374 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:298
|
1375 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1376 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1377 |
msgid "Today Visit"
|
1378 |
msgstr "بازدید امروز"
|
1379 |
|
1380 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:299
|
1381 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1382 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1383 |
msgid "Yesterday Visitor"
|
1384 |
msgstr "بازدید کننده دیروز"
|
1385 |
|
1386 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:300
|
1387 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1388 |
msgid "Yesterday Visit"
|
1389 |
msgstr "بازدید دیروز"
|
1390 |
|
1391 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:301
|
1392 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1393 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1394 |
msgid "Total Visitor"
|
1395 |
msgstr "کل بازدیدکنندهگان"
|
1396 |
|
1397 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:302
|
1398 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1399 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1400 |
msgid "Total Visit"
|
1401 |
msgstr "کل بازدیدها"
|
1402 |
|
1403 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:17
|
1404 |
msgid "GeoIP settings"
|
1405 |
msgstr "تنظیمات GeoIP"
|
1406 |
|
1407 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:22
|
1408 |
#, php-format
|
1409 |
msgid ""
|
1410 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1413 |
"سرویس ارائهدهنده مکاننمای IP با GeoLite2 ایجاد شده و توسط MaxMind ساخته شده "
|
1414 |
"است و در %s قابل دسترس است."
|
1415 |
|
1416 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
1417 |
msgid "GeoIP collection"
|
1418 |
msgstr "مجموعه GeoIP"
|
1419 |
|
1420 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:38
|
1421 |
msgid ""
|
1422 |
"For get more information and location (country) from visitor, enable this "
|
1423 |
"feature."
|
1425 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1426 |
"کنید."
|
1427 |
|
1428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:44
|
1429 |
msgid "Update GeoIP Info"
|
1430 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1431 |
|
1432 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:49
|
1433 |
msgid "Download GeoIP Database"
|
1434 |
msgstr "دریافت پایگاهداده GeoIP"
|
1435 |
|
1436 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:50
|
1437 |
msgid "Save changes on this page to download the update."
|
1438 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1439 |
|
1440 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:56
|
1441 |
msgid "Schedule monthly update of GeoIP DB"
|
1442 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1443 |
|
1444 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:64
|
1445 |
msgid "Next update will be"
|
1446 |
msgstr "بهروز رسانی بعدی خواهد بود"
|
1447 |
|
1448 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1449 |
msgid ""
|
1450 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1451 |
"Tuesday of the month."
|
1452 |
msgstr "دریافت پایگاهدادهی GeoIP در 2 روز بعد از اولین سهشنبه در هرماه."
|
1453 |
|
1454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:83
|
1455 |
msgid ""
|
1456 |
"This option will also download the database if the local filesize is less "
|
1457 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1460 |
"این امکان حتی دادههای کمتر از 1 کیلوبایت را نیز دریافت میکند (که به معنای "
|
1461 |
"دادههای همراه افزونه است)."
|
1462 |
|
1463 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:89
|
1464 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1465 |
msgstr "جمعیتهای از دست رفته GeoIP بعد از بهروز سانی پایگاهدادهی GeoIP"
|
1466 |
|
1467 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:95
|
1468 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1469 |
msgstr ""
|
1470 |
"بهروز رسانی هر دادهی از دسترفتهی GeoIP بعد از دریافت پایگاه دادهی جدید."
|
1471 |
|
1472 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:106
|
1473 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1474 |
msgstr "مجموعه GeoIP با توجه به دلایل زیر غیرفعال شده است:"
|
1475 |
|
1476 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:109
|
1477 |
#, php-format
|
1478 |
msgid ""
|
1479 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1482 |
"مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
|
1483 |
"بودن نسخه PHP شما، غیرفعال است"
|
1484 |
|
1485 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:114
|
1486 |
msgid ""
|
1487 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1488 |
"your version of PHP!"
|
1490 |
"مجموعهی GeoIP نیاز به ماژول cURL در PHP دارد و نمیتواند در نگارش PHP شما "
|
1491 |
"بارگزاری شود!"
|
1492 |
|
1493 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:120
|
1494 |
msgid ""
|
1495 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1496 |
"your version of PHP!"
|
1498 |
"مجموعهی GeoIP نیاز به ماژول BC Math در PHP دارد و نمیتواند در نگارش PHP شما "
|
1499 |
"بارگزاری شود!"
|
1500 |
|
1501 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:126
|
1502 |
msgid ""
|
1503 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1504 |
"mode enabled!"
|
1505 |
msgstr ""
|
1506 |
"حالت ایمنی PHP شناسایی نشد! مجموعه GeoIP توسط حالت ایمنی PHP پشتیبانی نمیشود!"
|
1507 |
|
1508 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
1509 |
msgid ""
|
1510 |
"This will permanently delete data from the database each day, are you sure "
|
1511 |
"you want to enable this option?"
|
1513 |
"این درخواست دادههای قدیمی را برای همیشه پاک میکند. برای فعال سازی آن مطمئن "
|
1514 |
"هستید؟"
|
1515 |
|
1516 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
1517 |
msgid "Database Maintenance"
|
1518 |
msgstr "تعمیر و نگهداری پایگاهداده"
|
1519 |
|
1520 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
1521 |
msgid "Run a daily WP Cron job to prune the databases"
|
1522 |
msgstr "اجرای روزانه یک زمانبندی برای هرس کردن پایگاهداده."
|
1523 |
|
1524 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
1525 |
msgid ""
|
1526 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1527 |
"days."
|
1529 |
"وظیفه آن اجرای روزانه برای حذف دادههایی که بیشتر از زمان انتخاب شده نگهداری "
|
1530 |
"شده اند."
|
1531 |
|
1532 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
1533 |
msgid "Prune data older than"
|
1534 |
msgstr "دادههای قدیمیتر از"
|
1535 |
|
1536 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
1537 |
msgid "Days"
|
1538 |
msgstr "روز"
|
1539 |
|
1540 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
1541 |
msgid ""
|
1542 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1543 |
"Invalid values will disable the daily maintenance."
|
1555 |
msgstr "خلاصه آمار"
|
1556 |
|
1557 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
1558 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
|
1559 |
msgid "About"
|
1560 |
msgstr "درباره"
|
1561 |
|
1571 |
msgid "Top Pages Visited"
|
1572 |
msgstr "برترین برگههای بازدید شده"
|
1573 |
|
1574 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
1575 |
msgid "The following two items are global to all users."
|
1576 |
msgstr "دو آیتم زیر برای تمامی کاربرها قابل مشاهده است."
|
1577 |
|
1578 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:80
|
1579 |
msgid "Disable map"
|
1580 |
msgstr "غیرفعال کردن نقشه"
|
1581 |
|
1582 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
1583 |
msgid "Disable the map display"
|
1584 |
msgstr "غیرفعال کردن نمایش نقشه"
|
1585 |
|
1586 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:92
|
1587 |
msgid "Get country location from Google"
|
1588 |
msgstr "دریافت مختصات کشورها از گوگل"
|
1589 |
|
1590 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:98
|
1591 |
msgid ""
|
1592 |
"This feature may cause a performance degradation when viewing statistics."
|
1593 |
msgstr "این ویژگی ممکن است مشاهده آمار را با کندی مواجه کند."
|
1594 |
|
1595 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:103
|
1596 |
msgid "Widgets to Display"
|
1597 |
msgstr "نمایش ابزارکها"
|
1598 |
|
1599 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:112
|
1600 |
msgid ""
|
1601 |
"The following items are unique to each user. If you do not select the "
|
1602 |
"'About' widget it will automatically be displayed in the last positon of "
|
1605 |
"موارد زیر برای هرکاربر منحصر به فرد است. اگر شما ابزارک \"درباره پلاگین\" را "
|
1606 |
"انتخاب نکنید، به صورت پیشفرض در ستون A نمایش داده میشود."
|
1607 |
|
1608 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
1609 |
msgid "Slot"
|
1610 |
msgstr "سطر"
|
1611 |
|
1612 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:121
|
1613 |
msgid "Column A"
|
1614 |
msgstr "ستون A"
|
1615 |
|
1616 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:125
|
1617 |
msgid "Column B"
|
1618 |
msgstr "ستون B"
|
1619 |
|
1620 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:131
|
1621 |
msgid "Slot 1"
|
1622 |
msgstr "سطر 1"
|
1623 |
|
1624 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:161
|
1625 |
msgid "Slot 2"
|
1626 |
msgstr "سطر 2"
|
1627 |
|
1628 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:191
|
1629 |
msgid "Slot 3"
|
1630 |
msgstr "سطر 3"
|
1631 |
|
1632 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:221
|
1633 |
msgid "Slot 4"
|
1634 |
msgstr "سطر 4"
|
1635 |
|
1636 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:251
|
1637 |
msgid "Slot 5"
|
1638 |
msgstr "سطر 5"
|
1639 |
|
1640 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:281
|
1641 |
msgid "Slot 6"
|
1642 |
msgstr "سطر 6"
|
1643 |
|
1644 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:285
|
1645 |
msgid "N/A"
|
1646 |
msgstr "خالی"
|
1647 |
|
1654 |
msgstr "آیتمها"
|
1655 |
|
1656 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
|
1657 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:310
|
1658 |
msgid "Yesterday visit"
|
1659 |
msgstr "بازدید دیروز"
|
1660 |
|
1731 |
msgid "Last Post Date"
|
1732 |
msgstr "تاریخ بهروزشدن سایت"
|
1733 |
|
1734 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:80
|
1735 |
msgid "General"
|
1736 |
msgstr "عمومی"
|
1737 |
|
1738 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:81
|
1739 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1740 |
msgid "Overview"
|
1741 |
msgstr "مرور کلی"
|
1742 |
|
1743 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:82
|
1744 |
msgid "Access/Exclusions"
|
1745 |
msgstr "دسترسی/محرومیتها"
|
1746 |
|
1747 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:83
|
1748 |
msgid "GeoIP"
|
1749 |
msgstr "GeoIP"
|
1750 |
|
1751 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:84
|
1752 |
msgid "Maintenance"
|
1753 |
msgstr "تعمیر و نگهداری"
|
1754 |
|
1755 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:115
|
1756 |
msgid "Update"
|
1757 |
msgstr "بهروز رسانی"
|
1758 |
|
1887 |
msgid "Manual"
|
1888 |
msgstr "راهنما"
|
1889 |
|
1890 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
1891 |
msgid "Today visitor"
|
1892 |
msgstr "بازدید کننده امروز"
|
1893 |
|
1894 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
1895 |
msgid "Today visit"
|
1896 |
msgstr "بازدید امروز"
|
1897 |
|
1898 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
|
1899 |
msgid "Yesterday visitor"
|
1900 |
msgstr "بازدید کننده دیروز"
|
1901 |
|
1902 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1903 |
msgid "View Stats"
|
1904 |
msgstr "نمایش آمار"
|
1905 |
|
1906 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:340
|
1907 |
msgid "Download ODF file"
|
1908 |
msgstr "دریافت فایل ODF"
|
1909 |
|
1910 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:341
|
1911 |
msgid "Download HTML file"
|
1912 |
msgstr "دریافت فایل HTML"
|
1913 |
|
1914 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:345
|
1915 |
msgid "Manual file not found."
|
1916 |
msgstr "راهنما یافت نشد."
|
1917 |
|
1918 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:420
|
1919 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:513
|
1920 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
|
1921 |
msgid "You do not have sufficient permissions to access this page."
|
1922 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
1923 |
|
1924 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:431
|
1925 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1926 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
1927 |
|
1928 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:565
|
1929 |
#, php-format
|
1930 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1931 |
msgstr "خطای دریافت پایگاهداده GeoIP از %s: - %s"
|
1932 |
|
1933 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:576
|
1934 |
#, php-format
|
1935 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1936 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای خواندن: %s"
|
1937 |
|
1938 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
|
1939 |
#, php-format
|
1940 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1941 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای نوشتن: %s"
|
1942 |
|
1943 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
|
1944 |
msgid "GeoIP Database updated successfully!"
|
1945 |
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
1946 |
|
1947 |
+
#~ msgid "Please select."
|
1948 |
+
#~ msgstr "لطفا انتخاب کنید."
|
1949 |
+
|
1950 |
#~ msgid "Browser share"
|
1951 |
#~ msgstr "سهم مرورگر"
|
1952 |
|
languages/wp_statistics-pl_PL.mo
CHANGED
Binary file
|
languages/wp_statistics-pl_PL.po
CHANGED
@@ -2,19 +2,423 @@
|
|
2 |
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2014-06
|
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%10>=2 && n%10<=4 && (n%100<10 "
|
10 |
"|| n%100>=20) ? 1 : 2);\n"
|
11 |
-
"X-Generator: Poedit 1.6.
|
12 |
"Project-Id-Version: Wordpress Statistics\n"
|
13 |
"POT-Creation-Date: \n"
|
14 |
"Last-Translator: \n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: pl\n"
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
19 |
msgid "Page Trend for Post ID"
|
20 |
msgstr "Wątek strony dla ID postu"
|
@@ -23,31 +427,31 @@ msgstr "Wątek strony dla ID postu"
|
|
23 |
msgid "Page Trend"
|
24 |
msgstr "Wątek strony"
|
25 |
|
26 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:
|
27 |
msgid "Page Trending Stats"
|
28 |
msgstr "Statystyki wątków strony"
|
29 |
|
30 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
31 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
32 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
33 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
34 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
35 |
msgid "Number of rows in the <code>%s</code> table"
|
36 |
msgstr "Liczba wierszy w tabeli <code>%s</code>"
|
37 |
|
38 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
39 |
msgid "Record exclusions"
|
40 |
msgstr "Wykluczenia rekordów"
|
41 |
|
42 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
43 |
msgid "Robot list"
|
44 |
msgstr "Lista robotów"
|
45 |
|
46 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
47 |
msgid "Excluded IP address list"
|
48 |
msgstr "Lista wykluczonych adresów IP"
|
49 |
|
50 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
51 |
msgid ""
|
52 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
53 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
@@ -59,113 +463,109 @@ msgstr ""
|
|
59 |
"192.168.0.0/255.255.255.0 są akceptowane). Aby określić adres IP, użyj "
|
60 |
"wartości podsieci 32 lub 255.255.255.255."
|
61 |
|
62 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
63 |
msgid "Excluded login page"
|
64 |
msgstr "Wykluczona strona logowania"
|
65 |
|
66 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
67 |
msgid "Excluded admin pages"
|
68 |
msgstr "Wykluczone strony administracji"
|
69 |
|
70 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
71 |
msgid "Users Online"
|
72 |
msgstr "Aktywni użytkownicy"
|
73 |
|
74 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
75 |
msgid "User online"
|
76 |
msgstr "Aktywny użytkownik"
|
77 |
|
78 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
79 |
msgid "Track all pages"
|
80 |
msgstr "Śledź wszystkie strony"
|
81 |
|
82 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
83 |
msgid "Disable hits column in post/pages list"
|
84 |
msgstr "Wyłącz kolumnę wejść w liście postu/stron"
|
85 |
|
86 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
87 |
msgid "Miscellaneous"
|
88 |
msgstr "Różne"
|
89 |
|
90 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
91 |
msgid "Click here to visit the plugin on WordPress.org"
|
92 |
msgstr "Kliknij tutaj, aby odwiedzić wtyczkę WordPress.org"
|
93 |
|
94 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
95 |
-
msgid "Visit plugin page"
|
96 |
-
msgstr "Odwiedź stronę wtyczki"
|
97 |
-
|
98 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
|
99 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
100 |
msgstr "Kliknij tutaj, aby ocenić i opisać tę wtyczkę na WordPress.org"
|
101 |
|
102 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
103 |
msgid "Rate this plugin"
|
104 |
msgstr "Oceń tę wtyczkę"
|
105 |
|
106 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
107 |
msgid "WP Statistics - Hits"
|
108 |
msgstr "WP Statistics - Wejścia"
|
109 |
|
110 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
111 |
msgid "Error downloading GeoIP database from: %s - %s"
|
112 |
msgstr "Błąd pobierania bazy danych GeoIP z: %s - %s"
|
113 |
|
114 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
116 |
msgid "Total Page Views"
|
117 |
msgstr "Razem odwiedzonych stron"
|
118 |
|
119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
121 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
122 |
msgid "Pages"
|
123 |
msgstr "Strony"
|
124 |
|
125 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
126 |
msgid "Manual"
|
127 |
msgstr "Podręcznik"
|
128 |
|
129 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
130 |
msgid "Download ODF file"
|
131 |
msgstr "Pobierz plik ODF"
|
132 |
|
133 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
134 |
msgid "Download HTML file"
|
135 |
msgstr "Pobierz plik HTML"
|
136 |
|
137 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
138 |
msgid "Manual file not found."
|
139 |
msgstr "Plik podręcznika nie znaleziony."
|
140 |
|
141 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
142 |
msgid "Exclusions Statistics"
|
143 |
msgstr "Statytyki wykluczeń"
|
144 |
|
145 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
146 |
msgid "Top Pages Visited"
|
147 |
msgstr "Najlepiej odwiedzone strony"
|
148 |
|
149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
151 |
msgid "No page title found"
|
152 |
msgstr "Tytuł strony nie znaleziony"
|
153 |
|
154 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
155 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
156 |
msgid "Top Pages"
|
157 |
msgstr "Najlepsze strony"
|
158 |
|
159 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
160 |
msgid "Top 5 Pages Trends"
|
161 |
msgstr "Najlepszych 5 wątków stron"
|
162 |
|
163 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
164 |
msgid "Top 5 Page Trending Stats"
|
165 |
msgstr "Statystyki najlepszych 5 wątków stron"
|
166 |
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:88
|
168 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
169 |
msgid "Number of Hits"
|
170 |
msgstr "Liczba wejść"
|
171 |
|
@@ -177,33 +577,33 @@ msgstr "Podręcznik nie znaleziony: %s"
|
|
177 |
msgid "Invalid file type selected: %s"
|
178 |
msgstr "Wybrano nieprawidłowy typ pliku: %s"
|
179 |
|
180 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
181 |
msgid "Search Engine referred"
|
182 |
msgstr "Wyszukiwarka, o której mowa"
|
183 |
|
184 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
185 |
msgid "Include Header Row"
|
186 |
msgstr "Dołącz wierz nagłówka"
|
187 |
|
188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
189 |
msgid "Include a header row as the first line of the exported file."
|
190 |
msgstr "Dołącz wiersz nagłówka w pierwszym wierszu eksportowanego pliku."
|
191 |
|
192 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
193 |
msgid "PHP Safe Mode"
|
194 |
msgstr "PHP Safe Mode"
|
195 |
|
196 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
197 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
198 |
msgstr ""
|
199 |
"PHP Safe Mode jest aktywny. Kod GeoIP nie jest obsługiwany w trybie "
|
200 |
"awaryjnym."
|
201 |
|
202 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
203 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
204 |
msgstr "Biblioteka GeoIP jest wyłączona z powodu następujących przyczyn:"
|
205 |
|
206 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
207 |
msgid ""
|
208 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
209 |
"mode enabled!"
|
@@ -211,11 +611,11 @@ msgstr ""
|
|
211 |
"Wykryty PHP Safe Mode! Biblioteka GeoIP nie jest obsługiwana w trybie "
|
212 |
"bezpiecznym PHP!"
|
213 |
|
214 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
215 |
msgid "Hide admin notices about non active features"
|
216 |
msgstr "Ukryj uwagi administratora o niekatywnych funkcjach"
|
217 |
|
218 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
219 |
msgid ""
|
220 |
"By default WP Statistics displays an alert if any of the core features are "
|
221 |
"disbaled on every admin page, this option will disable these notices."
|
@@ -224,11 +624,11 @@ msgstr ""
|
|
224 |
"funkcji jest wyłączona na każdej stronie administratora, opcja ta wyłączy "
|
225 |
"powiadomienia."
|
226 |
|
227 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
228 |
msgid "Search Enginges"
|
229 |
msgstr "Wyszukiwarki"
|
230 |
|
231 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
232 |
msgid ""
|
233 |
"Disabling all search engines is not allowed, doing so will result in all "
|
234 |
"search engines being active."
|
@@ -236,23 +636,23 @@ msgstr ""
|
|
236 |
"Wyłączenie wszystkich wyszukiwarek jest zabronione, spowoduje to wynik we "
|
237 |
"wszystkich aktywnych wyszukiwarkach."
|
238 |
|
239 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
240 |
msgid "disable"
|
241 |
msgstr "wyłącz"
|
242 |
|
243 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
244 |
msgid "Disable %s from data collection and reporting."
|
245 |
msgstr "Wyłącz %s z zbierania danych i raportowania."
|
246 |
|
247 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
248 |
msgid "cURL Version"
|
249 |
msgstr "Wersja cURL"
|
250 |
|
251 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
252 |
msgid "cURL not installed"
|
253 |
msgstr "cURL nie zainstalowane"
|
254 |
|
255 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
256 |
msgid ""
|
257 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
258 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
@@ -260,19 +660,19 @@ msgstr ""
|
|
260 |
"Użyawsz uruchomionej wersji rozszerzenia PHP cURL. cURL wymaga kodu GeoIP, "
|
261 |
"jeśli nie jest zainstalowane GeoIP zostanie wyłączone."
|
262 |
|
263 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
264 |
msgid "BC Math"
|
265 |
msgstr "BC Math"
|
266 |
|
267 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
268 |
msgid "Installed"
|
269 |
msgstr "Zainstalowany"
|
270 |
|
271 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
272 |
msgid "Not installed"
|
273 |
msgstr "Nie zainstalowany"
|
274 |
|
275 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
276 |
msgid ""
|
277 |
"If the PHP BC Math Extension is installed. BC Math is required for the "
|
278 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
@@ -280,7 +680,7 @@ msgstr ""
|
|
280 |
"Jeśli jest zainstalowane rozszerzenie PHP BC Math. BC Math jest wymagane dla "
|
281 |
"kodu GeoIP, jeśli nie jest zainstalowane GeoIP zostanie wyłączone."
|
282 |
|
283 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
284 |
msgid ""
|
285 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
286 |
"your version of PHP!"
|
@@ -288,7 +688,7 @@ msgstr ""
|
|
288 |
"Gromadzony GeoIP wymaga rozszerzenia cURL PHP i nie jest uruchomiony w "
|
289 |
"Twojej wersji PHP!"
|
290 |
|
291 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
292 |
msgid ""
|
293 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
294 |
"your version of PHP!"
|
@@ -296,7 +696,7 @@ msgstr ""
|
|
296 |
"Gromadzony GeoIP wymaga rozszerzenia BC Math PHP i nie jest uruchomiony w "
|
297 |
"Twojej wersji PHP!"
|
298 |
|
299 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:
|
300 |
msgid ""
|
301 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
302 |
"settings page."
|
@@ -304,54 +704,50 @@ msgstr ""
|
|
304 |
"Nie można załadować bazy danych GeoIP, upewnij się, że pobrałeś ją na "
|
305 |
"stronie ustawień."
|
306 |
|
307 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
308 |
msgid "Database file does not exist."
|
309 |
msgstr "Plik bazy danych nie istnieje."
|
310 |
|
311 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
312 |
msgid "Search for"
|
313 |
msgstr "Szukaj dla"
|
314 |
|
315 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
316 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
317 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
318 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
319 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
320 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
321 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
322 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
323 |
msgid "More"
|
324 |
msgstr "Więcej"
|
325 |
|
326 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
327 |
-
msgid "Today visitors on map"
|
328 |
-
msgstr "Dzisiejsi odwiedzający na mapie"
|
329 |
-
|
330 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
331 |
msgid "GeoIP File Info"
|
332 |
msgstr "Informacje pliku GeoIP"
|
333 |
|
334 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
335 |
msgid "File Date"
|
336 |
msgstr "Data pliku"
|
337 |
|
338 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
339 |
msgid "The file date of the GeoIP database."
|
340 |
msgstr "Data pliku bazy danych GeoIP."
|
341 |
|
342 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
343 |
msgid "File Size"
|
344 |
msgstr "Rozmiar pliku"
|
345 |
|
346 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
347 |
msgid "The file size of the GeoIP database."
|
348 |
msgstr "Rozmiar pliku bazy danych GeoIP."
|
349 |
|
350 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
351 |
msgid "Include totals"
|
352 |
msgstr "Razem dołączonych"
|
353 |
|
354 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
355 |
msgid ""
|
356 |
"Add a total line to charts with multiple values, like the search engine "
|
357 |
"referrals"
|
@@ -359,46 +755,25 @@ msgstr ""
|
|
359 |
"Dodaj całkowitą linię do wykresów z wieloma wartościami, takimi jak "
|
360 |
"odwołania w wyszukiwarkach"
|
361 |
|
362 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
363 |
msgid "Disable map"
|
364 |
msgstr "Wyłącz mapę"
|
365 |
|
366 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
367 |
msgid "Disable the map display"
|
368 |
msgstr "Wyłącz wyświetlanie mapy"
|
369 |
|
370 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
371 |
-
msgid "Alternate map location"
|
372 |
-
msgstr "Alternatywna lokalizacja mapy"
|
373 |
-
|
374 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:270
|
375 |
-
msgid ""
|
376 |
-
"Place the map above the recent visitors area instead of at the top of the "
|
377 |
-
"page."
|
378 |
-
msgstr ""
|
379 |
-
"Umieść powyższą mapę w obszarsze ostatnio odwiedzający zamiast na górnej "
|
380 |
-
"stronie."
|
381 |
-
|
382 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:276
|
383 |
msgid "Get country location from Google"
|
384 |
msgstr "Otrzymaj położenie kraju z Google"
|
385 |
|
386 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
387 |
msgid ""
|
388 |
"This feature may cause a performance degradation when viewing statistics."
|
389 |
msgstr ""
|
390 |
"Ta funkcja może spowodować pogorszenie wydajności podczas przeglądania "
|
391 |
"statystyk."
|
392 |
|
393 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
|
394 |
-
msgid ""
|
395 |
-
"GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
|
396 |
-
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
397 |
-
msgstr ""
|
398 |
-
"Gromadzenie GeoIP nie jest aktywne! Proszę przejść na stronę <a href=\"%s"
|
399 |
-
"\">Ustawienia > GeoIP</a> i włączyć tą funkcję (GeoIP może wykryć kraj "
|
400 |
-
"odwiedzających)"
|
401 |
-
|
402 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
403 |
msgid ""
|
404 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
@@ -407,15 +782,11 @@ msgstr ""
|
|
407 |
"Uwaga: Wykluczenia nie są obecnie ustawione na zapisywanie, poniższe wyniki "
|
408 |
"mogą nie odzwierciedlać aktualnej statystyki!"
|
409 |
|
410 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
411 |
-
msgid "Excluded hits chart in the last"
|
412 |
-
msgstr "Wykres wykluczonych wejść w ciągu"
|
413 |
-
|
414 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
|
415 |
msgid "Number of excluded hits"
|
416 |
msgstr "Liczba wykluczonych wejść"
|
417 |
|
418 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
419 |
msgid ""
|
420 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
421 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
@@ -425,11 +796,11 @@ msgstr ""
|
|
425 |
"Administrator, edit_others_posts = Editor, publish_posts = Author, "
|
426 |
"edit_posts = Contributor, read = Everyone."
|
427 |
|
428 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
429 |
msgid "Enable"
|
430 |
msgstr "Włącz"
|
431 |
|
432 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
433 |
msgid ""
|
434 |
"This will record all the excluded hits in a separate table with the reasons "
|
435 |
"why it was excluded but no other information. This will generate a lot of "
|
@@ -441,90 +812,76 @@ msgstr ""
|
|
441 |
"Dzięki temu uzyskasz sporo danych, jeśli chcesz zobaczyć łączną liczbę "
|
442 |
"odsłon strony otrzymując, nie tylko rzeczywiste odwiedziny użytkowników."
|
443 |
|
444 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
445 |
msgid "Site URL Exclusions"
|
446 |
msgstr "Wykluczenia adresów URL"
|
447 |
|
448 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
449 |
msgid "Exclude the login page for registering as a hit."
|
450 |
msgstr "Wyklucz stronę logowania do rejestracji jako wejście."
|
451 |
|
452 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
453 |
msgid "Exclude the admin pages for registering as a hit."
|
454 |
msgstr "Wyklucz strony administracji do rejestracji jako wejście."
|
455 |
|
456 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
457 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
458 |
msgid "Exclusions"
|
459 |
msgstr "Wykluczenia"
|
460 |
|
461 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
462 |
msgid "Total Exclusions: %s"
|
463 |
msgstr "Razem wykluczeń: %s"
|
464 |
|
465 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
466 |
msgid "Exclusions Statistical Chart"
|
467 |
msgstr "Statystyczny wykres odsłon"
|
468 |
|
469 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
470 |
msgid "Access Levels"
|
471 |
msgstr "Dostęp do poziomów"
|
472 |
|
473 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
474 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:116
|
475 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:11
|
476 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:3
|
477 |
msgid "Resources/Information"
|
478 |
msgstr "Zasoby/Informacje"
|
479 |
|
480 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
481 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:118
|
482 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:13
|
483 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:5
|
484 |
msgid "Purging"
|
485 |
msgstr "Wyczyść"
|
486 |
|
487 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
488 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:120
|
489 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:15
|
490 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:7
|
491 |
msgid "Updates"
|
492 |
msgstr "Zaktualizuj"
|
493 |
|
494 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
495 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:22
|
496 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:22
|
497 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:22
|
498 |
msgid "Access/Exclusions"
|
499 |
msgstr "Dostęp/Wykluczenia"
|
500 |
|
501 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
502 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:24
|
503 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:24
|
504 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:24
|
505 |
msgid "Maintenance"
|
506 |
msgstr "Zarządzanie"
|
507 |
|
508 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
509 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:149
|
510 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
511 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:364
|
512 |
msgid "Update"
|
513 |
msgstr "Zaktualizuj"
|
514 |
|
515 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
|
|
|
|
|
|
|
|
516 |
msgid "Error, %s not emptied!"
|
517 |
msgstr "Błąd, %s nie opróźniono!"
|
518 |
|
519 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
520 |
msgid "Data"
|
521 |
msgstr "Dane"
|
522 |
|
523 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
524 |
msgid "Purge records older than"
|
525 |
msgstr "Wyczyść rekordy stasrze niż"
|
526 |
|
527 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
528 |
msgid ""
|
529 |
"Deleted user statistics data older than the selected number of days. "
|
530 |
"Minimum value is 30 days."
|
@@ -532,7 +889,7 @@ msgstr ""
|
|
532 |
"Usunięto dane statystyk użytkownika starszych niż wybrana liczba dni. "
|
533 |
"Minimalna wartość to 30 dni."
|
534 |
|
535 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
536 |
msgid "Purge now!"
|
537 |
msgstr "Wyczyść"
|
538 |
|
@@ -557,10 +914,7 @@ msgstr "Nie znaleziono rekordów w celu usunięcia z <code>%s</code>!"
|
|
557 |
msgid "Please select a value over 30 days."
|
558 |
msgstr "Proszę wybrać wartość w ciągu 30 dni."
|
559 |
|
560 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
561 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
562 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
563 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:11
|
564 |
msgid ""
|
565 |
"This will permanently delete data from the database each day, are you sure "
|
566 |
"you want to enable this option?"
|
@@ -568,15 +922,15 @@ msgstr ""
|
|
568 |
"Spowoduje to trwałe usunięcie danych z bazy danych każdego dnia, czy na "
|
569 |
"pewno chcesz włączyć tą opcję?"
|
570 |
|
571 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:
|
572 |
msgid "Database Maintenance"
|
573 |
msgstr "Zarządzanie bazą danych"
|
574 |
|
575 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:
|
576 |
msgid "Run a daily WP Cron job to prune the databases"
|
577 |
msgstr "Uruchom codzienne zadanie WP Corn, aby czyścić bazy danych"
|
578 |
|
579 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:
|
580 |
msgid ""
|
581 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
582 |
"days."
|
@@ -584,15 +938,15 @@ msgstr ""
|
|
584 |
"Zostanie uruchomione codzienne zadanie WP Cron, aby czyścić wszelkie dane "
|
585 |
"starsze niż w określonej liczbie dni."
|
586 |
|
587 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:
|
588 |
msgid "Prune data older than"
|
589 |
msgstr "Wczyść dane starsze niż"
|
590 |
|
591 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:
|
592 |
msgid "Days"
|
593 |
msgstr "Dni"
|
594 |
|
595 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:
|
596 |
msgid ""
|
597 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
598 |
"Invalid values will disable the daily maintenance."
|
@@ -600,26 +954,23 @@ msgstr ""
|
|
600 |
"Liczba dni dla przechowujących statystyk. Minimalna wartość to 30 dni. "
|
601 |
"Nieprawidłowe wartości wyłączy codzienną konserwację."
|
602 |
|
603 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
604 |
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
605 |
msgstr "Data: <code dir=\"ltr\">%s</code></code>"
|
606 |
|
607 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
608 |
msgid "Time: <code dir=\"ltr\">%s</code>"
|
609 |
msgstr "Czas: <code dir=\"ltr\">%s</code>"
|
610 |
|
611 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
612 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:23
|
613 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:23
|
614 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:23
|
615 |
msgid "GeoIP"
|
616 |
msgstr "GeoIP"
|
617 |
|
618 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
619 |
msgid "Next update will be"
|
620 |
msgstr "Następna aktualizacja będzie za"
|
621 |
|
622 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
623 |
msgid ""
|
624 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
625 |
"the installed PHP version being "
|
@@ -627,23 +978,24 @@ msgstr ""
|
|
627 |
"Biblioteka GeoIP wymaga PHP %s lub nowszego, obecnie jest wyłączona z powodu "
|
628 |
"zainstalowanej istniejącej wersji PHP"
|
629 |
|
630 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
631 |
msgid "Search Engine Referrals"
|
632 |
msgstr "Polecone w wyszukiwarkach"
|
633 |
|
634 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
635 |
msgid "Daily Total"
|
636 |
msgstr "Razem codziennie"
|
637 |
|
638 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
639 |
msgid "Current Time and Date"
|
640 |
msgstr "Bieżący czas i data"
|
641 |
|
642 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
643 |
msgid "Update Now!"
|
644 |
msgstr "Zaktualizuj"
|
645 |
|
646 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
647 |
msgid ""
|
648 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
649 |
"levels."
|
@@ -651,7 +1003,7 @@ msgstr ""
|
|
651 |
"Zobacz %s zasady WordPress oraz możliwości strony %s dla szczegółowych "
|
652 |
"informacji na temat poziomów użytkowania."
|
653 |
|
654 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
655 |
msgid ""
|
656 |
"Each of the above casscades the rights upwards in the default WordPress "
|
657 |
"configuration. So for example selecting publish_posts grants the right to "
|
@@ -661,7 +1013,7 @@ msgstr ""
|
|
661 |
"WordPress. Na przykład wybierając publish_posts daje prawo dla Autorów, "
|
662 |
"Redaktorów, Administratorów i Super Administratorów."
|
663 |
|
664 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
665 |
msgid ""
|
666 |
"If you need a more robust solution to delegate access you might want to look "
|
667 |
"at %s in the WordPress plugin directory."
|
@@ -669,19 +1021,19 @@ msgstr ""
|
|
669 |
"Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, "
|
670 |
"możesz zajrzeć do %s w katalogu wtyczek WordPress."
|
671 |
|
672 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
673 |
msgid "Required user level to view WP Statistics"
|
674 |
msgstr "Wymagany poziom użytkownika, aby wyświetlić WP Statistics"
|
675 |
|
676 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
677 |
msgid "Required user level to manage WP Statistics"
|
678 |
msgstr "Wymagany poziom użytkownika, aby zarządzać WP Statistics"
|
679 |
|
680 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
681 |
msgid "Schedule monthly update of GeoIP DB"
|
682 |
msgstr "Kalendarz miesięczny aktualizacji GeoIP DB"
|
683 |
|
684 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
685 |
msgid ""
|
686 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
687 |
"Tuesday of the month."
|
@@ -689,7 +1041,7 @@ msgstr ""
|
|
689 |
"Pobranie bazy danych GeoIP będzie zaplanowane na 2 dni po pierwszym Wtorku "
|
690 |
"każdego miesiąca."
|
691 |
|
692 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
693 |
msgid ""
|
694 |
"This option will also download the database if the local filesize is less "
|
695 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
@@ -699,102 +1051,102 @@ msgstr ""
|
|
699 |
"mniejszy niż 1k (który zazwyczaj oznacza odcinek, pochodzący z tej wtyczk "
|
700 |
"jest nadal w tym miejscu)."
|
701 |
|
702 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
703 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
704 |
msgstr "Wypełnienie brakujących GeoIP po aktualizacji GeoIP DB"
|
705 |
|
706 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
707 |
msgid "Update any missing GeoIP data after downloading a new database."
|
708 |
msgstr ""
|
709 |
"Zaktualizuj wszelkie brakujące dane GeoIP po pobraniu nowej bazy danych."
|
710 |
|
711 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:
|
712 |
msgid "Updated %s GeoIP records in the visitors database."
|
713 |
msgstr "Zaktualizowano %s rekordów GeoIP w bazie danych odwiedzających. "
|
714 |
|
715 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
716 |
msgid "Version Info"
|
717 |
msgstr "Informacje o wersji"
|
718 |
|
719 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
720 |
msgid "WP Statistics Version"
|
721 |
msgstr "Wersja WP Statistics"
|
722 |
|
723 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
724 |
msgid "The WP Statistics version you are running."
|
725 |
msgstr "Używasz wersji WP Statistics."
|
726 |
|
727 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
728 |
msgid "PHP Version"
|
729 |
msgstr "Wersja PHP"
|
730 |
|
731 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
732 |
msgid "The PHP version you are running."
|
733 |
msgstr "Używasz wersji PHP."
|
734 |
|
735 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
736 |
msgid "jQuery Version"
|
737 |
msgstr "Wersja jQuery"
|
738 |
|
739 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
740 |
msgid "The jQuery version you are running."
|
741 |
msgstr "Używasz wersji jQuery."
|
742 |
|
743 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
744 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
745 |
msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP odnoszącej się do: %s"
|
746 |
|
747 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
748 |
msgid "Error could not open destination GeoIP database for writing %s"
|
749 |
msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP zapisanej w %s"
|
750 |
|
751 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
752 |
msgid "GeoIP Database updated successfully!"
|
753 |
msgstr "Baza danych GeoIP zaktualizowana pomyślnie!"
|
754 |
|
755 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
756 |
msgid "Client Info"
|
757 |
msgstr "Informacje o kliencie"
|
758 |
|
759 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
760 |
msgid "Client IP"
|
761 |
msgstr "Adres IP klienta"
|
762 |
|
763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
764 |
msgid "The client IP address."
|
765 |
msgstr "Adres IP Klienta."
|
766 |
|
767 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
768 |
msgid "User Agent"
|
769 |
msgstr "Agent uzytkownika"
|
770 |
|
771 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
772 |
msgid "The client user agent string."
|
773 |
msgstr "Ciąg agenta użytkownika klienta."
|
774 |
|
775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
776 |
msgid "Get updates for the location and the countries, this may take a while"
|
777 |
msgstr "Pobierz aktualizacje dla lokalizacji i krajów, może to chwilę potrwać"
|
778 |
|
779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
780 |
msgid "Exclude User Roles"
|
781 |
msgstr "Wyklucz zasady użytkownika"
|
782 |
|
783 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
785 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
786 |
msgid "Exclude"
|
787 |
msgstr "Wyklucz"
|
788 |
|
789 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
790 |
msgid "Exclude %s role from data collection."
|
791 |
msgstr "Wyklucz regułę %s z gromadzonych danych."
|
792 |
|
793 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
794 |
msgid "IP/Robot Exclusions"
|
795 |
msgstr "Wykluczenia adresów IP/robotów"
|
796 |
|
797 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
798 |
msgid ""
|
799 |
"A list of words (one per line) to match against to detect robots. Entries "
|
800 |
"must be at least 4 characters long or they will be ignored."
|
@@ -802,27 +1154,27 @@ msgstr ""
|
|
802 |
"Lista słów (po jednym w wierszu) tak, aby zgadzały się z wykrytymi robotami. "
|
803 |
"Wpisy muszą być co najmniej z 4 znakami lub będą one ignorowane."
|
804 |
|
805 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
806 |
msgid "Reset to Default"
|
807 |
msgstr "Przywróć domyślne"
|
808 |
|
809 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
810 |
msgid "Add 10.0.0.0"
|
811 |
msgstr "Dodaj 10.0.0.0"
|
812 |
|
813 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
814 |
msgid "Add 172.16.0.0"
|
815 |
msgstr "Dodaj 172.16.0.0"
|
816 |
|
817 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
818 |
msgid "Add 192.168.0.0"
|
819 |
msgstr "Dodaj 192.168.0.0"
|
820 |
|
821 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
822 |
msgid "Charts"
|
823 |
msgstr "Wykresy"
|
824 |
|
825 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
826 |
msgid ""
|
827 |
"For get more information and location (country) from visitor, enable this "
|
828 |
"feature."
|
@@ -830,41 +1182,34 @@ msgstr ""
|
|
830 |
"Dla uzyskania dodatkowych informacji i lokalizacji (kraju) z odwiedzającym, "
|
831 |
"włącz tą funkcję."
|
832 |
|
833 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/
|
834 |
-
|
835 |
-
msgstr "Statystyki Wordpress"
|
836 |
-
|
837 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:25
|
838 |
-
msgid "Complete statistics for your blog."
|
839 |
-
msgstr "Uzupełnij statystyki dla blogu."
|
840 |
-
|
841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:204
|
842 |
msgid "Overview"
|
843 |
msgstr "Przegląd"
|
844 |
|
845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
847 |
msgid "Countries"
|
848 |
msgstr "Kraje"
|
849 |
|
850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
851 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
852 |
msgid "Hits"
|
853 |
msgstr "Wejścia"
|
854 |
|
855 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
856 |
msgid "Referers"
|
857 |
msgstr "Strony odsyłające"
|
858 |
|
859 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
860 |
msgid "Searches"
|
861 |
msgstr "Wyszukiwarki"
|
862 |
|
863 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
864 |
msgid "Search Words"
|
865 |
msgstr "Wyszukiwane frazy"
|
866 |
|
867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
868 |
msgid "Second"
|
869 |
msgstr "Sekund"
|
870 |
|
@@ -872,146 +1217,112 @@ msgstr "Sekund"
|
|
872 |
msgid "Browser Statistics"
|
873 |
msgstr "Statystyki przeglądarki"
|
874 |
|
875 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
876 |
-
msgid "Browsers by Type"
|
877 |
-
msgstr "Typ przeglądarek"
|
878 |
-
|
879 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:130
|
880 |
msgid "Platform"
|
881 |
msgstr "Platforma"
|
882 |
|
883 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
884 |
-
msgid "Browsers by Platform"
|
885 |
-
msgstr "Przeglądarki wg platformy"
|
886 |
-
|
887 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:194
|
888 |
-
msgid "Platform share"
|
889 |
-
msgstr "Udział platformy"
|
890 |
-
|
891 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:274
|
892 |
msgid "%s Version"
|
893 |
msgstr "Wersja %s"
|
894 |
|
895 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:338
|
896 |
-
msgid "Browser version share"
|
897 |
-
msgstr "Udział wersji przeglądarki"
|
898 |
-
|
899 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
|
|
900 |
msgid "Hit Statistics"
|
901 |
msgstr "Statystyki odsłon"
|
902 |
|
903 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
904 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
905 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
906 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
907 |
msgid "10 Days"
|
908 |
msgstr "10 dni"
|
909 |
|
910 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
911 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
912 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
913 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
914 |
msgid "20 Days"
|
915 |
msgstr "20 dni"
|
916 |
|
917 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
918 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
919 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
920 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
921 |
msgid "30 Days"
|
922 |
msgstr "30 dni"
|
923 |
|
924 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
925 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
926 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
927 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
928 |
msgid "2 Months"
|
929 |
msgstr "2 miesiące"
|
930 |
|
931 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
932 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
933 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
934 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
935 |
msgid "3 Months"
|
936 |
msgstr "3 miesiące"
|
937 |
|
938 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
939 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
940 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
941 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
942 |
msgid "6 Months"
|
943 |
msgstr "6 miesięcy"
|
944 |
|
945 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
946 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
947 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
948 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
949 |
msgid "9 Months"
|
950 |
msgstr "9 miesięcy"
|
951 |
|
952 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
953 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
954 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
955 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
956 |
msgid "1 Year"
|
957 |
msgstr "Rok"
|
958 |
|
959 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
960 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
|
961 |
msgid "Hits Statistical Chart"
|
962 |
msgstr "Statystyczny wykres odsłon"
|
963 |
|
964 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/
|
969 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
970 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
971 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:159
|
972 |
msgid "days"
|
973 |
msgstr "dniach"
|
974 |
|
975 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
976 |
msgid "Top 10 Countries"
|
977 |
msgstr "Najlepszych 10 państw"
|
978 |
|
979 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
980 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
|
981 |
msgid "Rank"
|
982 |
msgstr "Pozycja"
|
983 |
|
984 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
985 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
|
986 |
msgid "Flag"
|
987 |
msgstr "Flaga"
|
988 |
|
989 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
990 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
991 |
msgid "Visitor Count"
|
992 |
-
msgstr "
|
993 |
-
|
994 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:344
|
995 |
-
msgid ""
|
996 |
-
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
997 |
-
"world!"
|
998 |
-
msgstr ""
|
999 |
-
"Proszę wspomóc WP Statistics. Z twoją pomocą WP Statistics będzie rządzić "
|
1000 |
-
"światem!"
|
1001 |
|
1002 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
1003 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
1004 |
msgid "Search Engine Referrers Statistical Chart"
|
1005 |
msgstr "Statystyczny wykres odsyłań w wyszukiwarkach"
|
1006 |
|
1007 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
1008 |
-
msgid "Search Engine Referrers Statistics"
|
1009 |
-
msgstr "Statystyki odsyłań w wyszukiwarkach"
|
1010 |
-
|
1011 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
1012 |
-
msgid "Referrer search engine chart in the last"
|
1013 |
-
msgstr "Wykres ostatnich odsyłań w wyszukiwarkach"
|
1014 |
-
|
1015 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
1016 |
msgid "Top Countries"
|
1017 |
msgstr "Najlepsze kraje"
|
@@ -1024,75 +1335,75 @@ msgstr "<code>%s</code> danych agenta usunięto pomyślnie."
|
|
1024 |
msgid "<code>%s</code> platform data deleted successfully."
|
1025 |
msgstr "<code>%s</code> danych platform usunięto pomyślnie."
|
1026 |
|
1027 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1028 |
msgid "Delete User Agent Types"
|
1029 |
msgstr "Usuń typy agentów użytkownika"
|
1030 |
|
1031 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1032 |
msgid "Delete Agents"
|
1033 |
msgstr "Usuń agentów"
|
1034 |
|
1035 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1036 |
msgid "All visitor data will be lost for this agent type."
|
1037 |
msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu agenta."
|
1038 |
|
1039 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1040 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1041 |
msgid "Delete now!"
|
1042 |
msgstr "Usuń"
|
1043 |
|
1044 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1045 |
msgid "Delete Platforms"
|
1046 |
msgstr "Usuń platformy"
|
1047 |
|
1048 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1049 |
msgid "All visitor data will be lost for this platform type."
|
1050 |
msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu platformy."
|
1051 |
|
1052 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1053 |
msgid "GeoIP Options"
|
1054 |
msgstr "Opcje GeoIP"
|
1055 |
|
1056 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1057 |
msgid "Store entire user agent string"
|
1058 |
msgstr "Przechowuj cały ciąg agenta użytkownika"
|
1059 |
|
1060 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1061 |
msgid "Only enabled for debugging"
|
1062 |
msgstr "Włączone tylko do debugowania"
|
1063 |
|
1064 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
1065 |
msgid "GeoIP settings"
|
1066 |
msgstr "Ustawienia GeoIP"
|
1067 |
|
1068 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
1069 |
msgid "GeoIP collection"
|
1070 |
msgstr "Biblioteka GeoIP"
|
1071 |
|
1072 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
1073 |
msgid "Update GeoIP Info"
|
1074 |
msgstr "Aktualizacja informacji GeoIP"
|
1075 |
|
1076 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
1077 |
msgid "Download GeoIP Database"
|
1078 |
msgstr "Pobierz bazę danych GeoIP"
|
1079 |
|
1080 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:
|
1081 |
msgid "Save changes on this page to download the update."
|
1082 |
msgstr "Zapisz zmiany na tej stronie, aby pobrać aktualizację."
|
1083 |
|
1084 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1085 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1086 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1087 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1088 |
msgid "Are you sure?"
|
1089 |
msgstr "Czy na pewno?"
|
1090 |
|
1091 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1092 |
msgid "Clear now!"
|
1093 |
msgstr "Wyczyść"
|
1094 |
|
1095 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1096 |
msgid "Optimization"
|
1097 |
msgstr "Optymizacja"
|
1098 |
|
@@ -1105,151 +1416,91 @@ msgstr "Optymizacja"
|
|
1105 |
msgid "Access denied!"
|
1106 |
msgstr "Dostęp zabroniony!"
|
1107 |
|
1108 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:
|
1109 |
msgid "<code>%s</code> table data deleted successfully."
|
1110 |
msgstr "<code>%s</code> danych tabel usunięto pomyślnie."
|
1111 |
|
1112 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
1113 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
1114 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:
|
1115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:
|
1116 |
msgid "Please select the desired items."
|
1117 |
msgstr "Proszę wybierz odpowiednie wpisy."
|
1118 |
|
1119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1120 |
msgid "Resources"
|
1121 |
msgstr "Zasoby"
|
1122 |
|
1123 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1124 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1125 |
msgid "Memory usage in PHP"
|
1126 |
msgstr "Zużycie pamięci w PHP"
|
1127 |
|
1128 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1129 |
msgid "Byte"
|
1130 |
msgstr "Bajt"
|
1131 |
|
1132 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1133 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1134 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1136 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1137 |
msgid "Row"
|
1138 |
msgstr "Rzędów"
|
1139 |
|
1140 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1141 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1142 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1143 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1144 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1145 |
msgid "Number of rows"
|
1146 |
msgstr "Liczba rzędów"
|
1147 |
|
1148 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:117
|
1151 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:12
|
1152 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:4
|
1153 |
msgid "Export"
|
1154 |
msgstr "Eksportuj"
|
1155 |
|
1156 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1157 |
msgid "Export from"
|
1158 |
msgstr "Eksportuj z"
|
1159 |
|
1160 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1161 |
msgid "Select the table for the output file."
|
1162 |
msgstr "Wybierż tablę dla pliku wyjściowego."
|
1163 |
|
1164 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1165 |
msgid "Export To"
|
1166 |
msgstr "Eksportuj do"
|
1167 |
|
1168 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1169 |
msgid "Select the output file type."
|
1170 |
msgstr "Wybierz typ liku wyjściowego."
|
1171 |
|
1172 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1173 |
msgid "Start Now!"
|
1174 |
msgstr "Rozpocznij"
|
1175 |
|
1176 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1177 |
msgid "Empty Table"
|
1178 |
msgstr "Opróżnij tabelę"
|
1179 |
|
1180 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1181 |
msgid "All data table will be lost."
|
1182 |
msgstr "Wszystkie dane tabeli będą utracone."
|
1183 |
|
1184 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
1185 |
-
msgid "Hits chart in the last 20 days"
|
1186 |
-
msgstr "Wykres odwiedzin z ostatnich 20 dni"
|
1187 |
-
|
1188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:489
|
1189 |
-
msgid "Referrer search engine chart in the last 20 days"
|
1190 |
-
msgstr "Wykres odsyłań w wyszukiwarkach z ostatnich 20 dni"
|
1191 |
-
|
1192 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:512
|
1193 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
1194 |
-
msgid "Number of referrer"
|
1195 |
-
msgstr "Liczba odsyłań"
|
1196 |
-
|
1197 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:216
|
1198 |
-
msgid "Chart type"
|
1199 |
-
msgstr "Typ wykresu"
|
1200 |
-
|
1201 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
|
1202 |
-
msgid "Line"
|
1203 |
-
msgstr "Liniowy"
|
1204 |
-
|
1205 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
|
1206 |
-
msgid "Spline"
|
1207 |
-
msgstr "Interpolowany"
|
1208 |
-
|
1209 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:224
|
1210 |
-
msgid "Area"
|
1211 |
-
msgstr "Powierzchniowy"
|
1212 |
-
|
1213 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
|
1214 |
-
msgid "Area Spline"
|
1215 |
-
msgstr "Interpolowany powierzchniowy"
|
1216 |
-
|
1217 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:226
|
1218 |
-
msgid "Column"
|
1219 |
-
msgstr "Słupkowy"
|
1220 |
-
|
1221 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:227
|
1222 |
-
msgid "Bar"
|
1223 |
-
msgstr "Kolumnowy"
|
1224 |
-
|
1225 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:228
|
1226 |
-
msgid "Scatter"
|
1227 |
-
msgstr "Punktowy"
|
1228 |
-
|
1229 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:230
|
1230 |
-
msgid "Chart type in view stats."
|
1231 |
-
msgstr "Typ wykresu w podglądzie statystyk."
|
1232 |
-
|
1233 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
|
1234 |
msgid "Support"
|
1235 |
msgstr "Pomoc techniczna"
|
1236 |
|
1237 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
|
1238 |
-
msgid "Farsi"
|
1239 |
-
msgstr "Farsi"
|
1240 |
-
|
1241 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
|
1242 |
msgid "Referring sites from"
|
1243 |
msgstr "Strony odsyłające z"
|
1244 |
|
1245 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
1246 |
msgid "Translations"
|
1247 |
msgstr "Tłumaczenia"
|
1248 |
|
1249 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
|
1250 |
-
msgid "Facebook"
|
1251 |
-
msgstr "Facebook"
|
1252 |
-
|
1253 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
|
1254 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
|
1255 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
|
@@ -1257,50 +1508,43 @@ msgstr "Facebook"
|
|
1257 |
msgid "To be added soon"
|
1258 |
msgstr "Wkrótce dodany"
|
1259 |
|
1260 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
1261 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
1262 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1263 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1264 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
1265 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
|
|
1266 |
msgid "Map"
|
1267 |
msgstr "Mapa"
|
1268 |
|
1269 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
1270 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
1271 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
1272 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1273 |
msgid "Page"
|
1274 |
msgstr "Strona"
|
1275 |
|
1276 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
1277 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
1278 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
1279 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1280 |
msgid "From"
|
1281 |
msgstr "z"
|
1282 |
|
1283 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1284 |
-
msgid ""
|
1285 |
-
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
1286 |
-
"\">setting page</a> and enable statistics"
|
1287 |
-
msgstr ""
|
1288 |
-
"Pobieranie statystyk nie jest uruchomine! Przedjdź do <a href=\"%s"
|
1289 |
-
"\">ustawień</a> i uruchom je."
|
1290 |
-
|
1291 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:388
|
1292 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1293 |
msgstr "Tabela wtyczki nie istnieje! Proszę wyłącz i włącz wtyczkę."
|
1294 |
|
1295 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1296 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1297 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:
|
1298 |
msgid "Statistical reporting"
|
1299 |
msgstr "Raporty statystyk"
|
1300 |
|
1301 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
1302 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
1303 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1304 |
msgid "Statistics"
|
1305 |
msgstr "Statystyki"
|
1306 |
|
@@ -1308,418 +1552,353 @@ msgstr "Statystyki"
|
|
1308 |
msgid "Show site stats in sidebar"
|
1309 |
msgstr "Pokaż statystyki stron w menu bocznym"
|
1310 |
|
1311 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
1312 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1313 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/
|
1314 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/
|
1315 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:257
|
1316 |
msgid "User Online"
|
1317 |
msgstr "Osób online"
|
1318 |
|
1319 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1320 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1321 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1322 |
msgid "Today Visit"
|
1323 |
msgstr "Odwiedzin dzisiaj"
|
1324 |
|
1325 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1326 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1327 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1328 |
msgid "Today Visitor"
|
1329 |
msgstr "Odwiedziło dzisiaj"
|
1330 |
|
1331 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1332 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1333 |
msgid "Yesterday Visit"
|
1334 |
msgstr "Odwiedzin wczoraj"
|
1335 |
|
1336 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1337 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1338 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1339 |
msgid "Yesterday Visitor"
|
1340 |
msgstr "Odwiedziń wczoraj"
|
1341 |
|
1342 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1343 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1344 |
msgid "Week Visit"
|
1345 |
msgstr "Odwiedzin w tygodniu"
|
1346 |
|
1347 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1348 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1349 |
msgid "Month Visit"
|
1350 |
msgstr "Odwiedzin w miesiącu"
|
1351 |
|
1352 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1353 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1354 |
msgid "Years Visit"
|
1355 |
msgstr "Odwiedzin w roku"
|
1356 |
|
1357 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1358 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1359 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1360 |
msgid "Total Visit"
|
1361 |
msgstr "Razem odwiedzin"
|
1362 |
|
1363 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1364 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1365 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1366 |
msgid "Total Visitor"
|
1367 |
msgstr "Razem odwiedzin"
|
1368 |
|
1369 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1370 |
-
|
1371 |
-
msgstr "Razem odwiedziło"
|
1372 |
-
|
1373 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:62
|
1374 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
|
1375 |
msgid "Total Posts"
|
1376 |
msgstr "Razem wpisów"
|
1377 |
|
1378 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1379 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1380 |
msgid "Total Pages"
|
1381 |
msgstr "Razem stron"
|
1382 |
|
1383 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1384 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1385 |
msgid "Total Comments"
|
1386 |
msgstr "Razem komentarzy"
|
1387 |
|
1388 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1389 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1390 |
msgid "Total Spams"
|
1391 |
msgstr "Razem spamów"
|
1392 |
|
1393 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1394 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1395 |
msgid "Total Users"
|
1396 |
msgstr "Razem uzytkowników"
|
1397 |
|
1398 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1399 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1400 |
msgid "Average Posts"
|
1401 |
msgstr "Średnio wpisów"
|
1402 |
|
1403 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1404 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1405 |
msgid "Average Comments"
|
1406 |
msgstr "Średnio komentarzy"
|
1407 |
|
1408 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1409 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1410 |
msgid "Average Users"
|
1411 |
msgstr "Średnio użytkowników"
|
1412 |
|
1413 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1414 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
1415 |
msgid "Last Post Date"
|
1416 |
msgstr "Data ostatniego wpisu"
|
1417 |
|
1418 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1419 |
msgid "View Stats"
|
1420 |
msgstr "Zobacz statystyki"
|
1421 |
|
1422 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1423 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1424 |
msgid "Settings"
|
1425 |
msgstr "Ustawienia"
|
1426 |
|
1427 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1428 |
msgid "Today visitor"
|
1429 |
msgstr "Dzisiaj odwiedziło"
|
1430 |
|
1431 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1432 |
msgid "Today visit"
|
1433 |
msgstr "Dzisiaj odwiedzin"
|
1434 |
|
1435 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1436 |
msgid "Yesterday visitor"
|
1437 |
msgstr "Wczoraj odwiedziło"
|
1438 |
|
1439 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1440 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1441 |
msgid "Yesterday visit"
|
1442 |
msgstr "Wczoraj odwiedzin"
|
1443 |
|
1444 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1445 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1446 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1447 |
msgid "You do not have sufficient permissions to access this page."
|
1448 |
msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
|
1449 |
|
1450 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
1451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
1452 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:
|
1453 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
1454 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
1455 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
1456 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
1457 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1458 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1459 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1460 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1461 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1462 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1463 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1464 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1465 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1466 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1467 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1468 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1469 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
1470 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
1471 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
1472 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
1473 |
msgid "Click to toggle"
|
1474 |
msgstr "Kliknij, aby przełączyć"
|
1475 |
|
1476 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
1477 |
msgid "Summary Statistics"
|
1478 |
msgstr "Podsumowanie statystyk"
|
1479 |
|
1480 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:
|
1481 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1482 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1483 |
msgid "Visitor"
|
1484 |
msgstr "Odwiedziło"
|
1485 |
|
1486 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:
|
1487 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1488 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1489 |
msgid "Visit"
|
1490 |
msgstr "Odwiedzin"
|
1491 |
|
1492 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1493 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1494 |
msgid "Today"
|
1495 |
msgstr "Dzisiaj"
|
1496 |
|
1497 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1498 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1499 |
msgid "Yesterday"
|
1500 |
msgstr "Wczoraj"
|
1501 |
|
1502 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1503 |
msgid "Week"
|
1504 |
msgstr "W tygodniu"
|
1505 |
|
1506 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1507 |
msgid "Month"
|
1508 |
msgstr "W miesiącu"
|
1509 |
|
1510 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1511 |
msgid "Year"
|
1512 |
msgstr "W roku"
|
1513 |
|
1514 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1515 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1516 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1517 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:
|
1518 |
msgid "Total"
|
1519 |
msgstr "Razem"
|
1520 |
|
1521 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1522 |
msgid "(Adjustment)"
|
1523 |
msgstr "(Wyrównanie)"
|
1524 |
|
1525 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
|
1526 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1527 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/
|
|
|
1528 |
msgid "Browsers"
|
1529 |
msgstr "Przeglądarki"
|
1530 |
|
1531 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1532 |
-
msgid "
|
1533 |
-
msgstr "
|
1534 |
-
|
1535 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1536 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
|
1537 |
-
msgid "Browser share"
|
1538 |
-
msgstr "Udział przeglądarek"
|
1539 |
-
|
1540 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
|
1541 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
|
1542 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
|
1543 |
-
msgid "Top referring sites"
|
1544 |
-
msgstr "Najlepsze strony odsyłające"
|
1545 |
-
|
1546 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
|
1547 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
|
1548 |
-
msgid "Reference"
|
1549 |
-
msgstr "Odesłań"
|
1550 |
|
1551 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1552 |
msgid "Address"
|
1553 |
msgstr "Adres"
|
1554 |
|
1555 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/
|
1556 |
-
|
1557 |
-
msgstr "O wtyczce"
|
1558 |
-
|
1559 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
|
1560 |
-
msgid "Plugin version: %s"
|
1561 |
-
msgstr "Wersja wtyczki: %s"
|
1562 |
-
|
1563 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
|
1564 |
-
msgid "Weblog"
|
1565 |
-
msgstr "Weblog"
|
1566 |
-
|
1567 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:357
|
1568 |
-
msgid "Donate"
|
1569 |
-
msgstr "Wesprzyj"
|
1570 |
-
|
1571 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
1572 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:417
|
1573 |
msgid "Number of visits and visitors"
|
1574 |
msgstr "Liczba odwiedzin i odwiedzających"
|
1575 |
|
1576 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
1577 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
1578 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
|
1579 |
-
msgid "Latest search words"
|
1580 |
-
msgstr "Ostatnio wyszukiwane frazy"
|
1581 |
-
|
1582 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
1583 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/
|
1584 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
1585 |
msgid "Recent Visitors"
|
1586 |
msgstr "Ostatni odwiedzający"
|
1587 |
|
1588 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1589 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
1590 |
msgid "Country"
|
1591 |
msgstr "Kraj"
|
1592 |
|
1593 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1594 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1595 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1596 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1601 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1602 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1603 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1604 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1605 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1606 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1607 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1608 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1609 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:137
|
1610 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:149
|
1611 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
|
1612 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:241
|
1613 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
|
1614 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:269
|
1615 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:281
|
1616 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:297
|
1617 |
msgid "Active"
|
1618 |
msgstr "Uaktywnij"
|
1619 |
|
1620 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1621 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1622 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1623 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1624 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1625 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1626 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1627 |
msgid "Enable or disable this feature"
|
1628 |
msgstr "Włącz lub wyłącz tą funkcję"
|
1629 |
|
1630 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
1631 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:
|
1632 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1633 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1634 |
msgid "Visits"
|
1635 |
msgstr "Odwiedzin"
|
1636 |
|
1637 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1638 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1639 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1640 |
msgid "Visitors"
|
1641 |
msgstr "Odzwiedzający"
|
1642 |
|
1643 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1644 |
msgid "Check for online users every"
|
1645 |
msgstr "Sprawdź aktywne osoby co"
|
1646 |
|
1647 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1648 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1649 |
msgstr "Czas sprawdzania liczby użytkowników online. Aktualnie: %s sekund."
|
1650 |
|
1651 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1652 |
msgid "Show stats in menu bar"
|
1653 |
msgstr "Wyświetl statystyki w pasku menu"
|
1654 |
|
1655 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1656 |
msgid "No"
|
1657 |
msgstr "Nie"
|
1658 |
|
1659 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1660 |
msgid "Yes"
|
1661 |
msgstr "Tak"
|
1662 |
|
1663 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1664 |
msgid "Show stats in admin menu bar"
|
1665 |
msgstr "Pokaż statystyki w pasku menu administratora"
|
1666 |
|
1667 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1668 |
msgid "Coefficient per visitor"
|
1669 |
msgstr "Współczynnik dla odwiedzającego"
|
1670 |
|
1671 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1672 |
msgid "For each visit to account for several hits. Currently %s."
|
1673 |
msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
|
1674 |
|
1675 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1676 |
msgid "Time send"
|
1677 |
msgstr "Czas wysłania"
|
1678 |
|
1679 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1680 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1681 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1682 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1683 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1684 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
|
1685 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:310
|
1686 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:326
|
1687 |
msgid "Please select."
|
1688 |
msgstr "Proszę wybrać"
|
1689 |
|
1690 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1691 |
-
msgid "Hourly"
|
1692 |
-
msgstr "Co godzinę"
|
1693 |
-
|
1694 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:312
|
1695 |
-
msgid "Twice daily"
|
1696 |
-
msgstr "2 razy dziennie"
|
1697 |
-
|
1698 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:313
|
1699 |
-
msgid "daily"
|
1700 |
-
msgstr "codziennie"
|
1701 |
-
|
1702 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:315
|
1703 |
msgid "Select when receiving statistics report."
|
1704 |
msgstr "Wybierz kiedy otrzymywać raporty statystyczne."
|
1705 |
|
1706 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1707 |
msgid "Send Statistical reporting to"
|
1708 |
msgstr "Wysyłaj raport statystyk do"
|
1709 |
|
1710 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1711 |
msgid "Email"
|
1712 |
msgstr "E-mail"
|
1713 |
|
1714 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1715 |
msgid "SMS"
|
1716 |
msgstr "SMS"
|
1717 |
|
1718 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1719 |
msgid "Type Select Get Status Report."
|
1720 |
msgstr "Sposób wysyłania raportów."
|
1721 |
|
1722 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1723 |
msgid ""
|
1724 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1725 |
"\"_blank\">Wordpress SMS</a> plugin."
|
@@ -1727,33 +1906,29 @@ msgstr ""
|
|
1727 |
"Ważne: By wysyłać wiadomości SMS zainstaluj wtyczkę <a href=\"%s\" target="
|
1728 |
"\"_blank\">Wordpress SMS</a>."
|
1729 |
|
1730 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1731 |
msgid "Send Content Report"
|
1732 |
msgstr "Wyślij raport z przygotowaną treścią"
|
1733 |
|
1734 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-
|
1735 |
msgid "Enter the contents of the reports received."
|
1736 |
msgstr "Wprowadź treść otrzymanych sprawozdań."
|
1737 |
|
1738 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/
|
1739 |
-
msgid "Input data:"
|
1740 |
-
msgstr "Wprowadź dane:"
|
1741 |
-
|
1742 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:2
|
1743 |
msgid "Name"
|
1744 |
msgstr "Nazwa"
|
1745 |
|
1746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1747 |
msgid "Items"
|
1748 |
msgstr "Wpisów"
|
1749 |
|
1750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1751 |
msgid "Select type of search engine"
|
1752 |
msgstr "Wybierz typ wyszukiwarki"
|
1753 |
|
1754 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
|
1755 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
1756 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/
|
1757 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:
|
1758 |
msgid "All"
|
1759 |
msgstr "Wszystkie"
|
2 |
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-08-06 20:15+0100\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%10>=2 && n%10<=4 && (n%100<10 "
|
10 |
"|| n%100>=20) ? 1 : 2);\n"
|
11 |
+
"X-Generator: Poedit 1.6.7\n"
|
12 |
"Project-Id-Version: Wordpress Statistics\n"
|
13 |
"POT-Creation-Date: \n"
|
14 |
"Last-Translator: \n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: pl\n"
|
17 |
|
18 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:48
|
19 |
+
msgid "Browsers by type"
|
20 |
+
msgstr "Wg typu przeglądarek"
|
21 |
+
|
22 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:124
|
23 |
+
msgid "Browsers by platform"
|
24 |
+
msgstr "Wg platformy przeglądarek"
|
25 |
+
|
26 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:92
|
27 |
+
msgid "Excluded hits in the last"
|
28 |
+
msgstr "Wykluczonych wejść w ostatnich"
|
29 |
+
|
30 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
31 |
+
msgid "Hits Statistics Chart"
|
32 |
+
msgstr "Wykres statystyki odsłon"
|
33 |
+
|
34 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
35 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
36 |
+
msgid "Hits in the last"
|
37 |
+
msgstr "Wejść w ostatnich"
|
38 |
+
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
40 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:831
|
41 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
42 |
+
msgid "Latest Search Words"
|
43 |
+
msgstr "Najnowsze wyszukane frazy"
|
44 |
+
|
45 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
46 |
+
msgid "Latest Search Word Statistics"
|
47 |
+
msgstr "Najnowsze statystyki szukanych fraz"
|
48 |
+
|
49 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
50 |
+
msgid "Recent Visitor Statistics"
|
51 |
+
msgstr "Ostatnie statystyki odwiedzin"
|
52 |
+
|
53 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
|
54 |
+
msgid "Today Visitors Map"
|
55 |
+
msgstr "Mapa dzisiejszych odwiedzających"
|
56 |
+
|
57 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
|
58 |
+
msgid "Summary"
|
59 |
+
msgstr "Podsumowanie"
|
60 |
+
|
61 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:263
|
62 |
+
msgid "User(s) Online"
|
63 |
+
msgstr "Aktywnych"
|
64 |
+
|
65 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:412
|
66 |
+
msgid "Top 10 Browsers"
|
67 |
+
msgstr "Najlepsza 10 przeglądarek"
|
68 |
+
|
69 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:469
|
70 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
|
71 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
|
72 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
73 |
+
msgid "Top Referring Sites"
|
74 |
+
msgstr "Najlepsze odsłyłające strony"
|
75 |
+
|
76 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
|
77 |
+
msgid "Rate and Review"
|
78 |
+
msgstr "Oceń i opisz wtyczkę"
|
79 |
+
|
80 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:586
|
81 |
+
msgid "More Information"
|
82 |
+
msgstr "Więcej informacji"
|
83 |
+
|
84 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:595
|
85 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
86 |
+
msgid ""
|
87 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
88 |
+
msgstr ""
|
89 |
+
"Produkt ten zawiera dane GeoLite2 utworzone przez MediaWiki, dostępne z %s."
|
90 |
+
|
91 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
92 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:73
|
93 |
+
msgid "Search engine referrals in the last"
|
94 |
+
msgstr "Odsyłań wyszukiwarki w ostatnich"
|
95 |
+
|
96 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:769
|
97 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
98 |
+
msgid "Number of referrals"
|
99 |
+
msgstr "Liczba odsyłań"
|
100 |
+
|
101 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:884
|
102 |
+
msgid "Top 10 Pages"
|
103 |
+
msgstr "Najlepsza 10 stron"
|
104 |
+
|
105 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
106 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
107 |
+
msgid "Search Engine Referral Statistics"
|
108 |
+
msgstr "Statystyki odsyłań wyszukiwarki"
|
109 |
+
|
110 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:4
|
111 |
+
msgid "WP Statistics V%s"
|
112 |
+
msgstr "WP Statistics V%s"
|
113 |
+
|
114 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:16
|
115 |
+
msgid "Visit Us Online"
|
116 |
+
msgstr "Odwiedź nas"
|
117 |
+
|
118 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
119 |
+
msgid ""
|
120 |
+
"Come visit our great new <a href=\"http://wp-statistics.com\" target=\"_blank"
|
121 |
+
"\">website</a> and keep up to date on the latest news about WP Statistics."
|
122 |
+
msgstr ""
|
123 |
+
"Chodź odwiedzić naszą świetną nową <a href=\"http://wp-statistics.com\" "
|
124 |
+
"target=\"_blank\">stronę internetową</a> i bądź na bieżąco z najnowszymi "
|
125 |
+
"informacjami o WP Statistics."
|
126 |
+
|
127 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
128 |
+
msgid "Rate and Review at WordPress.org"
|
129 |
+
msgstr "Oceń i opisz wtyczkę w WordPress.org"
|
130 |
+
|
131 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
132 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
133 |
+
msgstr "Dziękujemy za instalację WP Statistics, zachęcamy do złożenia"
|
134 |
+
|
135 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
136 |
+
msgid "rating and review"
|
137 |
+
msgstr "oceny i opisu wtyczki"
|
138 |
+
|
139 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
140 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
141 |
+
msgstr "na WordPress.org. Twoja opinia jest bardzo mile widziana!"
|
142 |
+
|
143 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
144 |
+
msgid ""
|
145 |
+
"WP Statistics supports internationalization and we encourage our users to "
|
146 |
+
"submit translations, please visit our <a href=\"http://teamwork.wp-parsi.com/"
|
147 |
+
"projects/wp-statistics\" target=\"_blank\">translation collaboration site</"
|
148 |
+
"a> to see the current status and <a href=\"http://wp-statistics.com/contact/"
|
149 |
+
"\" target=\"_blank\">drop us a line</a> if you would like to help."
|
150 |
+
msgstr ""
|
151 |
+
"WP Statistics wspiera umiędzynarodowienie dlatego zachęcamy naszych "
|
152 |
+
"użytkowników do przesłania tłumaczeń, prosimy odwiedzić naszą stronę <a href="
|
153 |
+
"\"http://teamwork.wp-parsi.com/projects/wp-statistics\" target=\"_blank"
|
154 |
+
"\">współpraca z tłumaczeniem</a>, aby zobaczyć bieżący stan i <a href="
|
155 |
+
"\"http://wp-statistics.com/contact/\" target=\"_blank\">dać nam znać</a> "
|
156 |
+
"jeśli potrzebujesz pomocy."
|
157 |
+
|
158 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:45
|
159 |
+
msgid ""
|
160 |
+
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
161 |
+
"out. Here are a few things to do before contacting us:"
|
162 |
+
msgstr ""
|
163 |
+
"Przepraszamy, że masz problem z WP Statistics, jesteśmy zadowoleni, aby "
|
164 |
+
"pomóc. Oto kilka uwag do zrobienia, zanim skontaktujesz się z nami:"
|
165 |
+
|
166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:48
|
167 |
+
msgid ""
|
168 |
+
"Have you read the <a title=\"FAQs\" href=\"http://wp-statistics.com/?"
|
169 |
+
"page_id=19\" target=_blank>FAQs</a>?"
|
170 |
+
msgstr ""
|
171 |
+
"Czytałeś <a title=\"FAQs\" href=\"http://wp-statistics.com/?page_id=19\" "
|
172 |
+
"target=_blank>FAQ</a>?"
|
173 |
+
|
174 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
175 |
+
msgid ""
|
176 |
+
"Have you read the <a title=\"Manual\" href=\"?page=wps_manual_menu\">manual</"
|
177 |
+
"a>?"
|
178 |
+
msgstr ""
|
179 |
+
"Czytałeś <a title=\"Manual\" href=\"?page=wps_manual_menu\">podręcznik</a>?"
|
180 |
+
|
181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:50
|
182 |
+
msgid ""
|
183 |
+
"Have you search the <a href=\"http://wordpress.org/support/plugin/wp-"
|
184 |
+
"statistics\" target=\"_blank\">support forum</a> for a similar issue?"
|
185 |
+
msgstr ""
|
186 |
+
"Przeszukałeś <a href=\"http://wordpress.org/support/plugin/wp-statistics\" "
|
187 |
+
"target=\"_blank\">forum wsparcia</a> dla podobnego problemu?"
|
188 |
+
|
189 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
190 |
+
msgid "And a few things to double-check:"
|
191 |
+
msgstr "I sprawdź dokładnie kilka rzeczy:"
|
192 |
+
|
193 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
194 |
+
msgid "How's your memory_limit in php.ini?"
|
195 |
+
msgstr "Jaki jest Twój memory_limit w php.ini?"
|
196 |
+
|
197 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:57
|
198 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
199 |
+
msgstr ""
|
200 |
+
"Czy próbowałeś wyłączyć wszystkie inne wtyczki, które masz zainstalowane?"
|
201 |
+
|
202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:58
|
203 |
+
msgid "Have you tried using the default WordPress theme?"
|
204 |
+
msgstr "Czy próbowałeś użyć domyślnego motywu WordPressa?"
|
205 |
+
|
206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
207 |
+
msgid "Have you double checked the plugin settings?"
|
208 |
+
msgstr "Czy dwukrotnie sprawdziłeś ustawienia wtyczki?"
|
209 |
+
|
210 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:60
|
211 |
+
msgid "Do you have all the required PHP extensions installed?"
|
212 |
+
msgstr "Czy masz zainstalowane wszystkie wymagane rozszerzenia PHP?"
|
213 |
+
|
214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
215 |
+
msgid "Still not having any luck?"
|
216 |
+
msgstr "Nadal nie masz trafu?"
|
217 |
+
|
218 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
219 |
+
msgid ""
|
220 |
+
"Then please open a new thread on the <a href=\"http://wordpress.org/support/"
|
221 |
+
"plugin/wp-statistics\" target=\"_blank\">WordPress.org support forum</a> and "
|
222 |
+
"we'll respond as soon as possible."
|
223 |
+
msgstr ""
|
224 |
+
"Następnie prosimy otworzyć nowy wątek w <a href=\"http://wordpress.org/"
|
225 |
+
"support/plugin/wp-statistics\" target=\"_blank\">forum wsparcia WordPress."
|
226 |
+
"org</a> i będziemy reagować jak najszybciej."
|
227 |
+
|
228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
229 |
+
msgid ""
|
230 |
+
"Alternatively <a href=\"http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA"
|
231 |
+
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">Farsi</"
|
232 |
+
"a> support is available as well."
|
233 |
+
msgstr ""
|
234 |
+
"Alternatywne wsparcie <a href=\"http://forum.wp-parsi.com/forum/17-"
|
235 |
+
"%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target="
|
236 |
+
"\"_blank\">Farsi</a> jest dostępne."
|
237 |
+
|
238 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:246
|
239 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:266
|
240 |
+
msgid "Please select"
|
241 |
+
msgstr "Proszę wybrać"
|
242 |
+
|
243 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:287
|
244 |
+
msgid ""
|
245 |
+
"Any shortcode supported by your installation of WordPress, include all "
|
246 |
+
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
247 |
+
"available) are supported in the body of the message."
|
248 |
+
msgstr ""
|
249 |
+
"Jakikolwiek krótki kod obsługiwany przez instalację WordPressa, obejmuje "
|
250 |
+
"wszystkie krótkie kody dla WP Statistics (zobacz podręcznik administratora, "
|
251 |
+
"aby uzyskać listę dostępnych kodów), które są obsługiwane w treści "
|
252 |
+
"wiadomości."
|
253 |
+
|
254 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:290
|
255 |
+
msgid ""
|
256 |
+
"Input data codes are now deprecated and will be removed in a future version "
|
257 |
+
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
258 |
+
"here only for historical purposes:"
|
259 |
+
msgstr ""
|
260 |
+
"Kody danych wejściowych są przestarzałe i zostaną usunięte w przyszłej "
|
261 |
+
"wersji WP Statistics, proszę użyć odpowiednich krótkich kodów, które są "
|
262 |
+
"tylko do celów historycznych:"
|
263 |
+
|
264 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:21
|
265 |
+
msgid ""
|
266 |
+
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
267 |
+
"from %s."
|
268 |
+
msgstr ""
|
269 |
+
"Usługi lokalizacyjne IP świadczone przez dane GeoLite2 utworzone przez "
|
270 |
+
"MediaWiki, dostępne z %s."
|
271 |
+
|
272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
273 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
274 |
+
msgid "None"
|
275 |
+
msgstr "Żaden"
|
276 |
+
|
277 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
278 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:82
|
279 |
+
msgid "About"
|
280 |
+
msgstr "Informacje"
|
281 |
+
|
282 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:72
|
283 |
+
msgid "The following two items are global to all users."
|
284 |
+
msgstr "Następujące dwa elementy są globalne dla wszystkich użytkowników."
|
285 |
+
|
286 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:100
|
287 |
+
msgid "Widgets to Display"
|
288 |
+
msgstr "Wyświetl widgety"
|
289 |
+
|
290 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:109
|
291 |
+
msgid ""
|
292 |
+
"The following items are unique to each user. If you do not select the "
|
293 |
+
"'About' widget it will automatically be displayed in the last positon of "
|
294 |
+
"column A."
|
295 |
+
msgstr ""
|
296 |
+
"Następujące elementy są unikalne dla każdego użytkownika. Jeśli nie "
|
297 |
+
"wybierzesz widgetu 'Informacje' będzie automatycznie wyświetlony w ostatniej "
|
298 |
+
"pozycji kolumny A."
|
299 |
+
|
300 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:114
|
301 |
+
msgid "Slot"
|
302 |
+
msgstr "Slot"
|
303 |
+
|
304 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:118
|
305 |
+
msgid "Column A"
|
306 |
+
msgstr "Kolumna A"
|
307 |
+
|
308 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
309 |
+
msgid "Column B"
|
310 |
+
msgstr "Kolumna B"
|
311 |
+
|
312 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
313 |
+
msgid "Slot 1"
|
314 |
+
msgstr "Slot 1"
|
315 |
+
|
316 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:158
|
317 |
+
msgid "Slot 2"
|
318 |
+
msgstr "Slot 2"
|
319 |
+
|
320 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
321 |
+
msgid "Slot 3"
|
322 |
+
msgstr "Slot 3"
|
323 |
+
|
324 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:218
|
325 |
+
msgid "Slot 4"
|
326 |
+
msgstr "Slot 4"
|
327 |
+
|
328 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:248
|
329 |
+
msgid "Slot 5"
|
330 |
+
msgstr "Slot 5"
|
331 |
+
|
332 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:278
|
333 |
+
msgid "Slot 6"
|
334 |
+
msgstr "Slot 6"
|
335 |
+
|
336 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:282
|
337 |
+
msgid "N/A"
|
338 |
+
msgstr "N/A"
|
339 |
+
|
340 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:48
|
341 |
+
msgid "Search Engine Referred"
|
342 |
+
msgstr "Odniesienia wyszukiwarki"
|
343 |
+
|
344 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
345 |
+
msgid "Once Weekly"
|
346 |
+
msgstr "Raz na tydzień"
|
347 |
+
|
348 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
349 |
+
msgid "Once Every 2 Weeks"
|
350 |
+
msgstr "Raz na 2 tygodnie"
|
351 |
+
|
352 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
353 |
+
msgid "Once Every 4 Weeks"
|
354 |
+
msgstr "Raz na 4 tygodnie"
|
355 |
+
|
356 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
|
357 |
+
msgid "Complete statistics for your WordPress site."
|
358 |
+
msgstr "Uzupełnij statystyki dla Twojej strony WordPress."
|
359 |
+
|
360 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
|
361 |
+
msgid ""
|
362 |
+
"Online user tracking in WP Statistics is not enabled, please go to <a href="
|
363 |
+
"\"%s\">setting page</a> and enable it."
|
364 |
+
msgstr ""
|
365 |
+
"Śledzenie aktywnych użytkowników w WP Statistics jest nie włączone, prosimy "
|
366 |
+
"przejść do <a href=\"%s\">ustawień</a> i włączyć opcję."
|
367 |
+
|
368 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
|
369 |
+
msgid ""
|
370 |
+
"Hit tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
371 |
+
"\">setting page</a> and enable it."
|
372 |
+
msgstr ""
|
373 |
+
"Śledzenie wejść w w WP Statistics jest nie włączone, prosimy przejść do <a "
|
374 |
+
"href=\"%s\">ustawień</a> i włączyć opcję."
|
375 |
+
|
376 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:73
|
377 |
+
msgid ""
|
378 |
+
"Visitor tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
379 |
+
"\">setting page</a> and enable it."
|
380 |
+
msgstr ""
|
381 |
+
"Śledzenie odwiedzin w WP Statistics jest nie włączone, prosimy przejść do <a "
|
382 |
+
"href=\"%s\">ustawień</a> i włączyć opcję."
|
383 |
+
|
384 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:76
|
385 |
+
msgid ""
|
386 |
+
"GeoIP collection is not active, please go to <a href=\"%s\">Setting page > "
|
387 |
+
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
388 |
+
msgstr ""
|
389 |
+
"Biblioteka GeoIP nie jest aktywna, należy przejść do strony <a href=\"%s"
|
390 |
+
"\">Ustawienia > GeoIP</a> i włączyć tę funkcję (GeoIP może wykryć "
|
391 |
+
"odwiedzających gości z kraju)"
|
392 |
+
|
393 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:574
|
394 |
+
msgid "About WP Statistics V%s"
|
395 |
+
msgstr "WP Statistics V%s - informacje"
|
396 |
+
|
397 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:581
|
398 |
+
msgid "Website"
|
399 |
+
msgstr "Strona internetowa"
|
400 |
+
|
401 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:475
|
402 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
|
403 |
+
msgid "References"
|
404 |
+
msgstr "Odniesienia"
|
405 |
+
|
406 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:21
|
407 |
+
msgid "PHP Memory Limit"
|
408 |
+
msgstr "Limit pamięci PHP"
|
409 |
+
|
410 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
411 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
412 |
+
msgstr "Limit pamięci skryptu może się zużywać, ustaw w pliku php.ini."
|
413 |
+
|
414 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
415 |
+
msgid "WP Statistics"
|
416 |
+
msgstr "WP Statistics"
|
417 |
+
|
418 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:146
|
419 |
+
msgid "Visit WordPress.org page"
|
420 |
+
msgstr "Odwiedź stronę WordPress.org"
|
421 |
+
|
422 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
423 |
msgid "Page Trend for Post ID"
|
424 |
msgstr "Wątek strony dla ID postu"
|
427 |
msgid "Page Trend"
|
428 |
msgstr "Wątek strony"
|
429 |
|
430 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:68
|
431 |
msgid "Page Trending Stats"
|
432 |
msgstr "Statystyki wątków strony"
|
433 |
|
434 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:32
|
435 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:43
|
436 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:54
|
437 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:65
|
438 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:76
|
439 |
msgid "Number of rows in the <code>%s</code> table"
|
440 |
msgstr "Liczba wierszy w tabeli <code>%s</code>"
|
441 |
|
442 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:92
|
443 |
msgid "Record exclusions"
|
444 |
msgstr "Wykluczenia rekordów"
|
445 |
|
446 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:124
|
447 |
msgid "Robot list"
|
448 |
msgstr "Lista robotów"
|
449 |
|
450 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:142
|
451 |
msgid "Excluded IP address list"
|
452 |
msgstr "Lista wykluczonych adresów IP"
|
453 |
|
454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:145
|
455 |
msgid ""
|
456 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
457 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
463 |
"192.168.0.0/255.255.255.0 są akceptowane). Aby określić adres IP, użyj "
|
464 |
"wartości podsieci 32 lub 255.255.255.255."
|
465 |
|
466 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
467 |
msgid "Excluded login page"
|
468 |
msgstr "Wykluczona strona logowania"
|
469 |
|
470 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:164
|
471 |
msgid "Excluded admin pages"
|
472 |
msgstr "Wykluczone strony administracji"
|
473 |
|
474 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:30
|
475 |
msgid "Users Online"
|
476 |
msgstr "Aktywni użytkownicy"
|
477 |
|
478 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:35
|
479 |
msgid "User online"
|
480 |
msgstr "Aktywny użytkownik"
|
481 |
|
482 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:130
|
483 |
msgid "Track all pages"
|
484 |
msgstr "Śledź wszystkie strony"
|
485 |
|
486 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:142
|
487 |
msgid "Disable hits column in post/pages list"
|
488 |
msgstr "Wyłącz kolumnę wejść w liście postu/stron"
|
489 |
|
490 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:153
|
491 |
msgid "Miscellaneous"
|
492 |
msgstr "Różne"
|
493 |
|
494 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:146
|
495 |
msgid "Click here to visit the plugin on WordPress.org"
|
496 |
msgstr "Kliknij tutaj, aby odwiedzić wtyczkę WordPress.org"
|
497 |
|
498 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
|
|
|
|
|
|
|
|
499 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
500 |
msgstr "Kliknij tutaj, aby ocenić i opisać tę wtyczkę na WordPress.org"
|
501 |
|
502 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
503 |
msgid "Rate this plugin"
|
504 |
msgstr "Oceń tę wtyczkę"
|
505 |
|
506 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:193
|
507 |
msgid "WP Statistics - Hits"
|
508 |
msgstr "WP Statistics - Wejścia"
|
509 |
|
510 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:559
|
511 |
msgid "Error downloading GeoIP database from: %s - %s"
|
512 |
msgstr "Błąd pobierania bazy danych GeoIP z: %s - %s"
|
513 |
|
514 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:45
|
515 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:93
|
516 |
msgid "Total Page Views"
|
517 |
msgstr "Razem odwiedzonych stron"
|
518 |
|
519 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:113
|
520 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:118
|
521 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
522 |
msgid "Pages"
|
523 |
msgstr "Strony"
|
524 |
|
525 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:245
|
526 |
msgid "Manual"
|
527 |
msgstr "Podręcznik"
|
528 |
|
529 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:334
|
530 |
msgid "Download ODF file"
|
531 |
msgstr "Pobierz plik ODF"
|
532 |
|
533 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:335
|
534 |
msgid "Download HTML file"
|
535 |
msgstr "Pobierz plik HTML"
|
536 |
|
537 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:339
|
538 |
msgid "Manual file not found."
|
539 |
msgstr "Plik podręcznika nie znaleziony."
|
540 |
|
541 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:51
|
542 |
msgid "Exclusions Statistics"
|
543 |
msgstr "Statytyki wykluczeń"
|
544 |
|
545 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
546 |
msgid "Top Pages Visited"
|
547 |
msgstr "Najlepiej odwiedzone strony"
|
548 |
|
549 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:898
|
550 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:144
|
551 |
msgid "No page title found"
|
552 |
msgstr "Tytuł strony nie znaleziony"
|
553 |
|
554 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
555 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:116
|
556 |
msgid "Top Pages"
|
557 |
msgstr "Najlepsze strony"
|
558 |
|
559 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
560 |
msgid "Top 5 Pages Trends"
|
561 |
msgstr "Najlepszych 5 wątków stron"
|
562 |
|
563 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
564 |
msgid "Top 5 Page Trending Stats"
|
565 |
msgstr "Statystyki najlepszych 5 wątków stron"
|
566 |
|
567 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:88
|
568 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:69
|
569 |
msgid "Number of Hits"
|
570 |
msgstr "Liczba wejść"
|
571 |
|
577 |
msgid "Invalid file type selected: %s"
|
578 |
msgstr "Wybrano nieprawidłowy typ pliku: %s"
|
579 |
|
580 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
581 |
msgid "Search Engine referred"
|
582 |
msgstr "Wyszukiwarka, o której mowa"
|
583 |
|
584 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
585 |
msgid "Include Header Row"
|
586 |
msgstr "Dołącz wierz nagłówka"
|
587 |
|
588 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
589 |
msgid "Include a header row as the first line of the exported file."
|
590 |
msgstr "Dołącz wiersz nagłówka w pierwszym wierszu eksportowanego pliku."
|
591 |
|
592 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:113
|
593 |
msgid "PHP Safe Mode"
|
594 |
msgstr "PHP Safe Mode"
|
595 |
|
596 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:118
|
597 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
598 |
msgstr ""
|
599 |
"PHP Safe Mode jest aktywny. Kod GeoIP nie jest obsługiwany w trybie "
|
600 |
"awaryjnym."
|
601 |
|
602 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
603 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
604 |
msgstr "Biblioteka GeoIP jest wyłączona z powodu następujących przyczyn:"
|
605 |
|
606 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:125
|
607 |
msgid ""
|
608 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
609 |
"mode enabled!"
|
611 |
"Wykryty PHP Safe Mode! Biblioteka GeoIP nie jest obsługiwana w trybie "
|
612 |
"bezpiecznym PHP!"
|
613 |
|
614 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
|
615 |
msgid "Hide admin notices about non active features"
|
616 |
msgstr "Ukryj uwagi administratora o niekatywnych funkcjach"
|
617 |
|
618 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:178
|
619 |
msgid ""
|
620 |
"By default WP Statistics displays an alert if any of the core features are "
|
621 |
"disbaled on every admin page, this option will disable these notices."
|
624 |
"funkcji jest wyłączona na każdej stronie administratora, opcja ta wyłączy "
|
625 |
"powiadomienia."
|
626 |
|
627 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:183
|
628 |
msgid "Search Enginges"
|
629 |
msgstr "Wyszukiwarki"
|
630 |
|
631 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:188
|
632 |
msgid ""
|
633 |
"Disabling all search engines is not allowed, doing so will result in all "
|
634 |
"search engines being active."
|
636 |
"Wyłączenie wszystkich wyszukiwarek jest zabronione, spowoduje to wynik we "
|
637 |
"wszystkich aktywnych wyszukiwarkach."
|
638 |
|
639 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
|
640 |
msgid "disable"
|
641 |
msgstr "wyłącz"
|
642 |
|
643 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:201
|
644 |
msgid "Disable %s from data collection and reporting."
|
645 |
msgstr "Wyłącz %s z zbierania danych i raportowania."
|
646 |
|
647 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:135
|
648 |
msgid "cURL Version"
|
649 |
msgstr "Wersja cURL"
|
650 |
|
651 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:139
|
652 |
msgid "cURL not installed"
|
653 |
msgstr "cURL nie zainstalowane"
|
654 |
|
655 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:140
|
656 |
msgid ""
|
657 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
658 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
660 |
"Użyawsz uruchomionej wersji rozszerzenia PHP cURL. cURL wymaga kodu GeoIP, "
|
661 |
"jeśli nie jest zainstalowane GeoIP zostanie wyłączone."
|
662 |
|
663 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:146
|
664 |
msgid "BC Math"
|
665 |
msgstr "BC Math"
|
666 |
|
667 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:150
|
668 |
msgid "Installed"
|
669 |
msgstr "Zainstalowany"
|
670 |
|
671 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:150
|
672 |
msgid "Not installed"
|
673 |
msgstr "Nie zainstalowany"
|
674 |
|
675 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:151
|
676 |
msgid ""
|
677 |
"If the PHP BC Math Extension is installed. BC Math is required for the "
|
678 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
680 |
"Jeśli jest zainstalowane rozszerzenie PHP BC Math. BC Math jest wymagane dla "
|
681 |
"kodu GeoIP, jeśli nie jest zainstalowane GeoIP zostanie wyłączone."
|
682 |
|
683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:113
|
684 |
msgid ""
|
685 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
686 |
"your version of PHP!"
|
688 |
"Gromadzony GeoIP wymaga rozszerzenia cURL PHP i nie jest uruchomiony w "
|
689 |
"Twojej wersji PHP!"
|
690 |
|
691 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:119
|
692 |
msgid ""
|
693 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
694 |
"your version of PHP!"
|
696 |
"Gromadzony GeoIP wymaga rozszerzenia BC Math PHP i nie jest uruchomiony w "
|
697 |
"Twojej wersji PHP!"
|
698 |
|
699 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
700 |
msgid ""
|
701 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
702 |
"settings page."
|
704 |
"Nie można załadować bazy danych GeoIP, upewnij się, że pobrałeś ją na "
|
705 |
"stronie ustawień."
|
706 |
|
707 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:19
|
708 |
msgid "Database file does not exist."
|
709 |
msgstr "Plik bazy danych nie istnieje."
|
710 |
|
711 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
712 |
msgid "Search for"
|
713 |
msgstr "Szukaj dla"
|
714 |
|
715 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:375
|
716 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:469
|
717 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:522
|
718 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:608
|
719 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:712
|
720 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:831
|
721 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:884
|
722 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:923
|
723 |
msgid "More"
|
724 |
msgstr "Więcej"
|
725 |
|
726 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:5
|
|
|
|
|
|
|
|
|
727 |
msgid "GeoIP File Info"
|
728 |
msgstr "Informacje pliku GeoIP"
|
729 |
|
730 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:10
|
731 |
msgid "File Date"
|
732 |
msgstr "Data pliku"
|
733 |
|
734 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:23
|
735 |
msgid "The file date of the GeoIP database."
|
736 |
msgstr "Data pliku bazy danych GeoIP."
|
737 |
|
738 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:29
|
739 |
msgid "File Size"
|
740 |
msgstr "Rozmiar pliku"
|
741 |
|
742 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:46
|
743 |
msgid "The file size of the GeoIP database."
|
744 |
msgstr "Rozmiar pliku bazy danych GeoIP."
|
745 |
|
746 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:212
|
747 |
msgid "Include totals"
|
748 |
msgstr "Razem dołączonych"
|
749 |
|
750 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:218
|
751 |
msgid ""
|
752 |
"Add a total line to charts with multiple values, like the search engine "
|
753 |
"referrals"
|
755 |
"Dodaj całkowitą linię do wykresów z wieloma wartościami, takimi jak "
|
756 |
"odwołania w wyszukiwarkach"
|
757 |
|
758 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
759 |
msgid "Disable map"
|
760 |
msgstr "Wyłącz mapę"
|
761 |
|
762 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
763 |
msgid "Disable the map display"
|
764 |
msgstr "Wyłącz wyświetlanie mapy"
|
765 |
|
766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
767 |
msgid "Get country location from Google"
|
768 |
msgstr "Otrzymaj położenie kraju z Google"
|
769 |
|
770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:95
|
771 |
msgid ""
|
772 |
"This feature may cause a performance degradation when viewing statistics."
|
773 |
msgstr ""
|
774 |
"Ta funkcja może spowodować pogorszenie wydajności podczas przeglądania "
|
775 |
"statystyk."
|
776 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
778 |
msgid ""
|
779 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
782 |
"Uwaga: Wykluczenia nie są obecnie ustawione na zapisywanie, poniższe wyniki "
|
783 |
"mogą nie odzwierciedlać aktualnej statystyki!"
|
784 |
|
785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:112
|
|
|
|
|
|
|
|
|
786 |
msgid "Number of excluded hits"
|
787 |
msgstr "Liczba wykluczonych wejść"
|
788 |
|
789 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:81
|
790 |
msgid ""
|
791 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
792 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
796 |
"Administrator, edit_others_posts = Editor, publish_posts = Author, "
|
797 |
"edit_posts = Contributor, read = Everyone."
|
798 |
|
799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:94
|
800 |
msgid "Enable"
|
801 |
msgstr "Włącz"
|
802 |
|
803 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:95
|
804 |
msgid ""
|
805 |
"This will record all the excluded hits in a separate table with the reasons "
|
806 |
"why it was excluded but no other information. This will generate a lot of "
|
812 |
"Dzięki temu uzyskasz sporo danych, jeśli chcesz zobaczyć łączną liczbę "
|
813 |
"odsłon strony otrzymując, nie tylko rzeczywiste odwiedziny użytkowników."
|
814 |
|
815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:153
|
816 |
msgid "Site URL Exclusions"
|
817 |
msgstr "Wykluczenia adresów URL"
|
818 |
|
819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:160
|
820 |
msgid "Exclude the login page for registering as a hit."
|
821 |
msgstr "Wyklucz stronę logowania do rejestracji jako wejście."
|
822 |
|
823 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:167
|
824 |
msgid "Exclude the admin pages for registering as a hit."
|
825 |
msgstr "Wyklucz strony administracji do rejestracji jako wejście."
|
826 |
|
827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:88
|
828 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
829 |
msgid "Exclusions"
|
830 |
msgstr "Wykluczenia"
|
831 |
|
832 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
|
833 |
msgid "Total Exclusions: %s"
|
834 |
msgstr "Razem wykluczeń: %s"
|
835 |
|
836 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:72
|
837 |
msgid "Exclusions Statistical Chart"
|
838 |
msgstr "Statystyczny wykres odsłon"
|
839 |
|
840 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:28
|
841 |
msgid "Access Levels"
|
842 |
msgstr "Dostęp do poziomów"
|
843 |
|
844 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:34
|
|
|
|
|
|
|
845 |
msgid "Resources/Information"
|
846 |
msgstr "Zasoby/Informacje"
|
847 |
|
848 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:36
|
|
|
|
|
|
|
849 |
msgid "Purging"
|
850 |
msgstr "Wyczyść"
|
851 |
|
852 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:38
|
|
|
|
|
|
|
853 |
msgid "Updates"
|
854 |
msgstr "Zaktualizuj"
|
855 |
|
856 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:79
|
|
|
|
|
|
|
857 |
msgid "Access/Exclusions"
|
858 |
msgstr "Dostęp/Wykluczenia"
|
859 |
|
860 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:81
|
|
|
|
|
|
|
861 |
msgid "Maintenance"
|
862 |
msgstr "Zarządzanie"
|
863 |
|
864 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:112
|
|
|
|
|
|
|
865 |
msgid "Update"
|
866 |
msgstr "Zaktualizuj"
|
867 |
|
868 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:77
|
869 |
+
msgid "General"
|
870 |
+
msgstr "Ogólne"
|
871 |
+
|
872 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
873 |
msgid "Error, %s not emptied!"
|
874 |
msgstr "Błąd, %s nie opróźniono!"
|
875 |
|
876 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:118
|
877 |
msgid "Data"
|
878 |
msgstr "Dane"
|
879 |
|
880 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:145
|
881 |
msgid "Purge records older than"
|
882 |
msgstr "Wyczyść rekordy stasrze niż"
|
883 |
|
884 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
885 |
msgid ""
|
886 |
"Deleted user statistics data older than the selected number of days. "
|
887 |
"Minimum value is 30 days."
|
889 |
"Usunięto dane statystyk użytkownika starszych niż wybrana liczba dni. "
|
890 |
"Minimalna wartość to 30 dni."
|
891 |
|
892 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
893 |
msgid "Purge now!"
|
894 |
msgstr "Wyczyść"
|
895 |
|
914 |
msgid "Please select a value over 30 days."
|
915 |
msgstr "Proszę wybrać wartość w ciągu 30 dni."
|
916 |
|
917 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:19
|
|
|
|
|
|
|
918 |
msgid ""
|
919 |
"This will permanently delete data from the database each day, are you sure "
|
920 |
"you want to enable this option?"
|
922 |
"Spowoduje to trwałe usunięcie danych z bazy danych każdego dnia, czy na "
|
923 |
"pewno chcesz włączyć tą opcję?"
|
924 |
|
925 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:29
|
926 |
msgid "Database Maintenance"
|
927 |
msgstr "Zarządzanie bazą danych"
|
928 |
|
929 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:34
|
930 |
msgid "Run a daily WP Cron job to prune the databases"
|
931 |
msgstr "Uruchom codzienne zadanie WP Corn, aby czyścić bazy danych"
|
932 |
|
933 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
934 |
msgid ""
|
935 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
936 |
"days."
|
938 |
"Zostanie uruchomione codzienne zadanie WP Cron, aby czyścić wszelkie dane "
|
939 |
"starsze niż w określonej liczbie dni."
|
940 |
|
941 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:46
|
942 |
msgid "Prune data older than"
|
943 |
msgstr "Wczyść dane starsze niż"
|
944 |
|
945 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:51
|
946 |
msgid "Days"
|
947 |
msgstr "Dni"
|
948 |
|
949 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
950 |
msgid ""
|
951 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
952 |
"Invalid values will disable the daily maintenance."
|
954 |
"Liczba dni dla przechowujących statystyk. Minimalna wartość to 30 dni. "
|
955 |
"Nieprawidłowe wartości wyłączy codzienną konserwację."
|
956 |
|
957 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
|
958 |
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
959 |
msgstr "Data: <code dir=\"ltr\">%s</code></code>"
|
960 |
|
961 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:360
|
962 |
msgid "Time: <code dir=\"ltr\">%s</code>"
|
963 |
msgstr "Czas: <code dir=\"ltr\">%s</code>"
|
964 |
|
965 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:80
|
|
|
|
|
|
|
966 |
msgid "GeoIP"
|
967 |
msgstr "GeoIP"
|
968 |
|
969 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:63
|
970 |
msgid "Next update will be"
|
971 |
msgstr "Następna aktualizacja będzie za"
|
972 |
|
973 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:108
|
974 |
msgid ""
|
975 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
976 |
"the installed PHP version being "
|
978 |
"Biblioteka GeoIP wymaga PHP %s lub nowszego, obecnie jest wyłączona z powodu "
|
979 |
"zainstalowanej istniejącej wersji PHP"
|
980 |
|
981 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:314
|
982 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:712
|
983 |
msgid "Search Engine Referrals"
|
984 |
msgstr "Polecone w wyszukiwarkach"
|
985 |
|
986 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
|
987 |
msgid "Daily Total"
|
988 |
msgstr "Razem codziennie"
|
989 |
|
990 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
|
991 |
msgid "Current Time and Date"
|
992 |
msgstr "Bieżący czas i data"
|
993 |
|
994 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:60
|
995 |
msgid "Update Now!"
|
996 |
msgstr "Zaktualizuj"
|
997 |
|
998 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:80
|
999 |
msgid ""
|
1000 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1001 |
"levels."
|
1003 |
"Zobacz %s zasady WordPress oraz możliwości strony %s dla szczegółowych "
|
1004 |
"informacji na temat poziomów użytkowania."
|
1005 |
|
1006 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:82
|
1007 |
msgid ""
|
1008 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1009 |
"configuration. So for example selecting publish_posts grants the right to "
|
1013 |
"WordPress. Na przykład wybierając publish_posts daje prawo dla Autorów, "
|
1014 |
"Redaktorów, Administratorów i Super Administratorów."
|
1015 |
|
1016 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:83
|
1017 |
msgid ""
|
1018 |
"If you need a more robust solution to delegate access you might want to look "
|
1019 |
"at %s in the WordPress plugin directory."
|
1021 |
"Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, "
|
1022 |
"możesz zajrzeć do %s w katalogu wtyczek WordPress."
|
1023 |
|
1024 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:57
|
1025 |
msgid "Required user level to view WP Statistics"
|
1026 |
msgstr "Wymagany poziom użytkownika, aby wyświetlić WP Statistics"
|
1027 |
|
1028 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:72
|
1029 |
msgid "Required user level to manage WP Statistics"
|
1030 |
msgstr "Wymagany poziom użytkownika, aby zarządzać WP Statistics"
|
1031 |
|
1032 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:55
|
1033 |
msgid "Schedule monthly update of GeoIP DB"
|
1034 |
msgstr "Kalendarz miesięczny aktualizacji GeoIP DB"
|
1035 |
|
1036 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:81
|
1037 |
msgid ""
|
1038 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1039 |
"Tuesday of the month."
|
1041 |
"Pobranie bazy danych GeoIP będzie zaplanowane na 2 dni po pierwszym Wtorku "
|
1042 |
"każdego miesiąca."
|
1043 |
|
1044 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1045 |
msgid ""
|
1046 |
"This option will also download the database if the local filesize is less "
|
1047 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1051 |
"mniejszy niż 1k (który zazwyczaj oznacza odcinek, pochodzący z tej wtyczk "
|
1052 |
"jest nadal w tym miejscu)."
|
1053 |
|
1054 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:88
|
1055 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1056 |
msgstr "Wypełnienie brakujących GeoIP po aktualizacji GeoIP DB"
|
1057 |
|
1058 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:94
|
1059 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1060 |
msgstr ""
|
1061 |
"Zaktualizuj wszelkie brakujące dane GeoIP po pobraniu nowej bazy danych."
|
1062 |
|
1063 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:46
|
1064 |
msgid "Updated %s GeoIP records in the visitors database."
|
1065 |
msgstr "Zaktualizowano %s rekordów GeoIP w bazie danych odwiedzających. "
|
1066 |
|
1067 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:86
|
1068 |
msgid "Version Info"
|
1069 |
msgstr "Informacje o wersji"
|
1070 |
|
1071 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:91
|
1072 |
msgid "WP Statistics Version"
|
1073 |
msgstr "Wersja WP Statistics"
|
1074 |
|
1075 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:96
|
1076 |
msgid "The WP Statistics version you are running."
|
1077 |
msgstr "Używasz wersji WP Statistics."
|
1078 |
|
1079 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:102
|
1080 |
msgid "PHP Version"
|
1081 |
msgstr "Wersja PHP"
|
1082 |
|
1083 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:107
|
1084 |
msgid "The PHP version you are running."
|
1085 |
msgstr "Używasz wersji PHP."
|
1086 |
|
1087 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:124
|
1088 |
msgid "jQuery Version"
|
1089 |
msgstr "Wersja jQuery"
|
1090 |
|
1091 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:129
|
1092 |
msgid "The jQuery version you are running."
|
1093 |
msgstr "Używasz wersji jQuery."
|
1094 |
|
1095 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:570
|
1096 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1097 |
msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP odnoszącej się do: %s"
|
1098 |
|
1099 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:577
|
1100 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1101 |
msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP zapisanej w %s"
|
1102 |
|
1103 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
|
1104 |
msgid "GeoIP Database updated successfully!"
|
1105 |
msgstr "Baza danych GeoIP zaktualizowana pomyślnie!"
|
1106 |
|
1107 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:156
|
1108 |
msgid "Client Info"
|
1109 |
msgstr "Informacje o kliencie"
|
1110 |
|
1111 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:161
|
1112 |
msgid "Client IP"
|
1113 |
msgstr "Adres IP klienta"
|
1114 |
|
1115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:166
|
1116 |
msgid "The client IP address."
|
1117 |
msgstr "Adres IP Klienta."
|
1118 |
|
1119 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:172
|
1120 |
msgid "User Agent"
|
1121 |
msgstr "Agent uzytkownika"
|
1122 |
|
1123 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:177
|
1124 |
msgid "The client user agent string."
|
1125 |
msgstr "Ciąg agenta użytkownika klienta."
|
1126 |
|
1127 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:61
|
1128 |
msgid "Get updates for the location and the countries, this may take a while"
|
1129 |
msgstr "Pobierz aktualizacje dla lokalizacji i krajów, może to chwilę potrwać"
|
1130 |
|
1131 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
1132 |
msgid "Exclude User Roles"
|
1133 |
msgstr "Wyklucz zasady użytkownika"
|
1134 |
|
1135 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:113
|
1136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:159
|
1137 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
1138 |
msgid "Exclude"
|
1139 |
msgstr "Wyklucz"
|
1140 |
|
1141 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:114
|
1142 |
msgid "Exclude %s role from data collection."
|
1143 |
msgstr "Wyklucz regułę %s z gromadzonych danych."
|
1144 |
|
1145 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:120
|
1146 |
msgid "IP/Robot Exclusions"
|
1147 |
msgstr "Wykluczenia adresów IP/robotów"
|
1148 |
|
1149 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:137
|
1150 |
msgid ""
|
1151 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1152 |
"must be at least 4 characters long or they will be ignored."
|
1154 |
"Lista słów (po jednym w wierszu) tak, aby zgadzały się z wykrytymi robotami. "
|
1155 |
"Wpisy muszą być co najmniej z 4 znakami lub będą one ignorowane."
|
1156 |
|
1157 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:138
|
1158 |
msgid "Reset to Default"
|
1159 |
msgstr "Przywróć domyślne"
|
1160 |
|
1161 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:146
|
1162 |
msgid "Add 10.0.0.0"
|
1163 |
msgstr "Dodaj 10.0.0.0"
|
1164 |
|
1165 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:147
|
1166 |
msgid "Add 172.16.0.0"
|
1167 |
msgstr "Dodaj 172.16.0.0"
|
1168 |
|
1169 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:148
|
1170 |
msgid "Add 192.168.0.0"
|
1171 |
msgstr "Dodaj 192.168.0.0"
|
1172 |
|
1173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:207
|
1174 |
msgid "Charts"
|
1175 |
msgstr "Wykresy"
|
1176 |
|
1177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:37
|
1178 |
msgid ""
|
1179 |
"For get more information and location (country) from visitor, enable this "
|
1180 |
"feature."
|
1182 |
"Dla uzyskania dodatkowych informacji i lokalizacji (kraju) z odwiedzającym, "
|
1183 |
"włącz tą funkcję."
|
1184 |
|
1185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
|
1186 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1187 |
msgid "Overview"
|
1188 |
msgstr "Przegląd"
|
1189 |
|
1190 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:56
|
1191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:233
|
1192 |
msgid "Countries"
|
1193 |
msgstr "Kraje"
|
1194 |
|
1195 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:158
|
1196 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:235
|
1197 |
msgid "Hits"
|
1198 |
msgstr "Wejścia"
|
1199 |
|
1200 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:237
|
1201 |
msgid "Referers"
|
1202 |
msgstr "Strony odsyłające"
|
1203 |
|
1204 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:238
|
1205 |
msgid "Searches"
|
1206 |
msgstr "Wyszukiwarki"
|
1207 |
|
1208 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:239
|
1209 |
msgid "Search Words"
|
1210 |
msgstr "Wyszukiwane frazy"
|
1211 |
|
1212 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:52
|
1213 |
msgid "Second"
|
1214 |
msgstr "Sekund"
|
1215 |
|
1217 |
msgid "Browser Statistics"
|
1218 |
msgstr "Statystyki przeglądarki"
|
1219 |
|
1220 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:100
|
|
|
|
|
|
|
|
|
1221 |
msgid "Platform"
|
1222 |
msgstr "Platforma"
|
1223 |
|
1224 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:227
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1225 |
msgid "%s Version"
|
1226 |
msgstr "Wersja %s"
|
1227 |
|
|
|
|
|
|
|
|
|
1228 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1229 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:608
|
1230 |
msgid "Hit Statistics"
|
1231 |
msgstr "Statystyki odsłon"
|
1232 |
|
1233 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
1234 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
1235 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1236 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1237 |
msgid "10 Days"
|
1238 |
msgstr "10 dni"
|
1239 |
|
1240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
|
1241 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
1242 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1243 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1244 |
msgid "20 Days"
|
1245 |
msgstr "20 dni"
|
1246 |
|
1247 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
|
1248 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
1249 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1250 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
1251 |
msgid "30 Days"
|
1252 |
msgstr "30 dni"
|
1253 |
|
1254 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
1255 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
1256 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1257 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
1258 |
msgid "2 Months"
|
1259 |
msgstr "2 miesiące"
|
1260 |
|
1261 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
1262 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
1263 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1264 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
1265 |
msgid "3 Months"
|
1266 |
msgstr "3 miesiące"
|
1267 |
|
1268 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1269 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
1270 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1271 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
1272 |
msgid "6 Months"
|
1273 |
msgstr "6 miesięcy"
|
1274 |
|
1275 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1277 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1278 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
1279 |
msgid "9 Months"
|
1280 |
msgstr "9 miesięcy"
|
1281 |
|
1282 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1283 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
1284 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1285 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1286 |
msgid "1 Year"
|
1287 |
msgstr "Rok"
|
1288 |
|
1289 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
|
|
1290 |
msgid "Hits Statistical Chart"
|
1291 |
msgstr "Statystyczny wykres odsłon"
|
1292 |
|
1293 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:92
|
1294 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
1295 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:639
|
1296 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:749
|
1297 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:73
|
1298 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:150
|
|
|
|
|
1299 |
msgid "days"
|
1300 |
msgstr "dniach"
|
1301 |
|
1302 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:522
|
1303 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1304 |
msgid "Top 10 Countries"
|
1305 |
msgstr "Najlepszych 10 państw"
|
1306 |
|
1307 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:528
|
1308 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
|
1309 |
msgid "Rank"
|
1310 |
msgstr "Pozycja"
|
1311 |
|
1312 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:529
|
1313 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
|
1314 |
msgid "Flag"
|
1315 |
msgstr "Flaga"
|
1316 |
|
1317 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:531
|
1318 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
1319 |
msgid "Visitor Count"
|
1320 |
+
msgstr "Odwiedzin"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1321 |
|
1322 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
|
|
1323 |
msgid "Search Engine Referrers Statistical Chart"
|
1324 |
msgstr "Statystyczny wykres odsyłań w wyszukiwarkach"
|
1325 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1326 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
1327 |
msgid "Top Countries"
|
1328 |
msgstr "Najlepsze kraje"
|
1335 |
msgid "<code>%s</code> platform data deleted successfully."
|
1336 |
msgstr "<code>%s</code> danych platform usunięto pomyślnie."
|
1337 |
|
1338 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:159
|
1339 |
msgid "Delete User Agent Types"
|
1340 |
msgstr "Usuń typy agentów użytkownika"
|
1341 |
|
1342 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:164
|
1343 |
msgid "Delete Agents"
|
1344 |
msgstr "Usuń agentów"
|
1345 |
|
1346 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:179
|
1347 |
msgid "All visitor data will be lost for this agent type."
|
1348 |
msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu agenta."
|
1349 |
|
1350 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1351 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1352 |
msgid "Delete now!"
|
1353 |
msgstr "Usuń"
|
1354 |
|
1355 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:188
|
1356 |
msgid "Delete Platforms"
|
1357 |
msgstr "Usuń platformy"
|
1358 |
|
1359 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
|
1360 |
msgid "All visitor data will be lost for this platform type."
|
1361 |
msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu platformy."
|
1362 |
|
1363 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:51
|
1364 |
msgid "GeoIP Options"
|
1365 |
msgstr "Opcje GeoIP"
|
1366 |
|
1367 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:91
|
1368 |
msgid "Store entire user agent string"
|
1369 |
msgstr "Przechowuj cały ciąg agenta użytkownika"
|
1370 |
|
1371 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:97
|
1372 |
msgid "Only enabled for debugging"
|
1373 |
msgstr "Włączone tylko do debugowania"
|
1374 |
|
1375 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:16
|
1376 |
msgid "GeoIP settings"
|
1377 |
msgstr "Ustawienia GeoIP"
|
1378 |
|
1379 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:31
|
1380 |
msgid "GeoIP collection"
|
1381 |
msgstr "Biblioteka GeoIP"
|
1382 |
|
1383 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:43
|
1384 |
msgid "Update GeoIP Info"
|
1385 |
msgstr "Aktualizacja informacji GeoIP"
|
1386 |
|
1387 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
1388 |
msgid "Download GeoIP Database"
|
1389 |
msgstr "Pobierz bazę danych GeoIP"
|
1390 |
|
1391 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:49
|
1392 |
msgid "Save changes on this page to download the update."
|
1393 |
msgstr "Zapisz zmiany na tej stronie, aby pobrać aktualizację."
|
1394 |
|
1395 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1396 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:36
|
1397 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:62
|
1398 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:90
|
1399 |
msgid "Are you sure?"
|
1400 |
msgstr "Czy na pewno?"
|
1401 |
|
1402 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1403 |
msgid "Clear now!"
|
1404 |
msgstr "Wyczyść"
|
1405 |
|
1406 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:243
|
1407 |
msgid "Optimization"
|
1408 |
msgstr "Optymizacja"
|
1409 |
|
1416 |
msgid "Access denied!"
|
1417 |
msgstr "Dostęp zabroniony!"
|
1418 |
|
1419 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1420 |
msgid "<code>%s</code> table data deleted successfully."
|
1421 |
msgstr "<code>%s</code> danych tabel usunięto pomyślnie."
|
1422 |
|
1423 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
1424 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
1425 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1426 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1427 |
msgid "Please select the desired items."
|
1428 |
msgstr "Proszę wybierz odpowiednie wpisy."
|
1429 |
|
1430 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:5
|
1431 |
msgid "Resources"
|
1432 |
msgstr "Zasoby"
|
1433 |
|
1434 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:10
|
1435 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:15
|
1436 |
msgid "Memory usage in PHP"
|
1437 |
msgstr "Zużycie pamięci w PHP"
|
1438 |
|
1439 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:14
|
1440 |
msgid "Byte"
|
1441 |
msgstr "Bajt"
|
1442 |
|
1443 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:36
|
1444 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:47
|
1445 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:58
|
1446 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:69
|
1447 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:80
|
1448 |
msgid "Row"
|
1449 |
msgstr "Rzędów"
|
1450 |
|
1451 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1452 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
|
1453 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1455 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
1456 |
msgid "Number of rows"
|
1457 |
msgstr "Liczba rzędów"
|
1458 |
|
1459 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1460 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:35
|
|
|
|
|
|
|
1461 |
msgid "Export"
|
1462 |
msgstr "Eksportuj"
|
1463 |
|
1464 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1465 |
msgid "Export from"
|
1466 |
msgstr "Eksportuj z"
|
1467 |
|
1468 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1469 |
msgid "Select the table for the output file."
|
1470 |
msgstr "Wybierż tablę dla pliku wyjściowego."
|
1471 |
|
1472 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1473 |
msgid "Export To"
|
1474 |
msgstr "Eksportuj do"
|
1475 |
|
1476 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1477 |
msgid "Select the output file type."
|
1478 |
msgstr "Wybierz typ liku wyjściowego."
|
1479 |
|
1480 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1481 |
msgid "Start Now!"
|
1482 |
msgstr "Rozpocznij"
|
1483 |
|
1484 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:123
|
1485 |
msgid "Empty Table"
|
1486 |
msgstr "Opróżnij tabelę"
|
1487 |
|
1488 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:136
|
1489 |
msgid "All data table will be lost."
|
1490 |
msgstr "Wszystkie dane tabeli będą utracone."
|
1491 |
|
1492 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1493 |
msgid "Support"
|
1494 |
msgstr "Pomoc techniczna"
|
1495 |
|
|
|
|
|
|
|
|
|
1496 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
|
1497 |
msgid "Referring sites from"
|
1498 |
msgstr "Strony odsyłające z"
|
1499 |
|
1500 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1501 |
msgid "Translations"
|
1502 |
msgstr "Tłumaczenia"
|
1503 |
|
|
|
|
|
|
|
|
|
1504 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
|
1505 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
|
1506 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
|
1508 |
msgid "To be added soon"
|
1509 |
msgstr "Wkrótce dodany"
|
1510 |
|
1511 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:101
|
1512 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
1513 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:844
|
1514 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:937
|
1515 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
1516 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1517 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:68
|
1518 |
msgid "Map"
|
1519 |
msgstr "Mapa"
|
1520 |
|
1521 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:130
|
1522 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:123
|
1523 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
1524 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1525 |
msgid "Page"
|
1526 |
msgstr "Strona"
|
1527 |
|
1528 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:130
|
1529 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:123
|
1530 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:165
|
1531 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1532 |
msgid "From"
|
1533 |
msgstr "z"
|
1534 |
|
1535 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:425
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1536 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1537 |
msgstr "Tabela wtyczki nie istnieje! Proszę wyłącz i włącz wtyczkę."
|
1538 |
|
1539 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
1540 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
1541 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
1542 |
msgid "Statistical reporting"
|
1543 |
msgstr "Raporty statystyk"
|
1544 |
|
1545 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
1546 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
1547 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:227
|
1548 |
msgid "Statistics"
|
1549 |
msgstr "Statystyki"
|
1550 |
|
1552 |
msgid "Show site stats in sidebar"
|
1553 |
msgstr "Pokaż statystyki stron w menu bocznym"
|
1554 |
|
1555 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:291
|
1556 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1557 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1558 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:285
|
|
|
1559 |
msgid "User Online"
|
1560 |
msgstr "Osób online"
|
1561 |
|
1562 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:293
|
1563 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1564 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1565 |
msgid "Today Visit"
|
1566 |
msgstr "Odwiedzin dzisiaj"
|
1567 |
|
1568 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:292
|
1569 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1570 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1571 |
msgid "Today Visitor"
|
1572 |
msgstr "Odwiedziło dzisiaj"
|
1573 |
|
1574 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:295
|
1575 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1576 |
msgid "Yesterday Visit"
|
1577 |
msgstr "Odwiedzin wczoraj"
|
1578 |
|
1579 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:294
|
1580 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1581 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1582 |
msgid "Yesterday Visitor"
|
1583 |
msgstr "Odwiedziń wczoraj"
|
1584 |
|
1585 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:30
|
1586 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:58
|
1587 |
msgid "Week Visit"
|
1588 |
msgstr "Odwiedzin w tygodniu"
|
1589 |
|
1590 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
1591 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:65
|
1592 |
msgid "Month Visit"
|
1593 |
msgstr "Odwiedzin w miesiącu"
|
1594 |
|
1595 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
1596 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:72
|
1597 |
msgid "Years Visit"
|
1598 |
msgstr "Odwiedzin w roku"
|
1599 |
|
1600 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
1601 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1602 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1603 |
msgid "Total Visit"
|
1604 |
msgstr "Razem odwiedzin"
|
1605 |
|
1606 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
1607 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1608 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1609 |
msgid "Total Visitor"
|
1610 |
msgstr "Razem odwiedzin"
|
1611 |
|
1612 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:68
|
1613 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
|
|
|
|
|
|
|
|
1614 |
msgid "Total Posts"
|
1615 |
msgstr "Razem wpisów"
|
1616 |
|
1617 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:71
|
1618 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:115
|
1619 |
msgid "Total Pages"
|
1620 |
msgstr "Razem stron"
|
1621 |
|
1622 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:74
|
1623 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:122
|
1624 |
msgid "Total Comments"
|
1625 |
msgstr "Razem komentarzy"
|
1626 |
|
1627 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:77
|
1628 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:129
|
1629 |
msgid "Total Spams"
|
1630 |
msgstr "Razem spamów"
|
1631 |
|
1632 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:80
|
1633 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:136
|
1634 |
msgid "Total Users"
|
1635 |
msgstr "Razem uzytkowników"
|
1636 |
|
1637 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:83
|
1638 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:143
|
1639 |
msgid "Average Posts"
|
1640 |
msgstr "Średnio wpisów"
|
1641 |
|
1642 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:86
|
1643 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:150
|
1644 |
msgid "Average Comments"
|
1645 |
msgstr "Średnio komentarzy"
|
1646 |
|
1647 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:89
|
1648 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:157
|
1649 |
msgid "Average Users"
|
1650 |
msgstr "Średnio użytkowników"
|
1651 |
|
1652 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:92
|
1653 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:164
|
1654 |
msgid "Last Post Date"
|
1655 |
msgstr "Data ostatniego wpisu"
|
1656 |
|
1657 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:310
|
1658 |
msgid "View Stats"
|
1659 |
msgstr "Zobacz statystyki"
|
1660 |
|
1661 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
|
1662 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:244
|
1663 |
msgid "Settings"
|
1664 |
msgstr "Ustawienia"
|
1665 |
|
1666 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
1667 |
msgid "Today visitor"
|
1668 |
msgstr "Dzisiaj odwiedziło"
|
1669 |
|
1670 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
|
1671 |
msgid "Today visit"
|
1672 |
msgstr "Dzisiaj odwiedzin"
|
1673 |
|
1674 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
1675 |
msgid "Yesterday visitor"
|
1676 |
msgstr "Wczoraj odwiedziło"
|
1677 |
|
1678 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
|
1679 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:305
|
1680 |
msgid "Yesterday visit"
|
1681 |
msgstr "Wczoraj odwiedzin"
|
1682 |
|
1683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:414
|
1684 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:507
|
1685 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:618
|
1686 |
msgid "You do not have sufficient permissions to access this page."
|
1687 |
msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
|
1688 |
|
1689 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
1690 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1691 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:226
|
1692 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:71
|
1693 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
1694 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
1695 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
|
1696 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
1697 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
1698 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
|
1699 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:467
|
1700 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:520
|
1701 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:573
|
1702 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:607
|
1703 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:711
|
1704 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:829
|
1705 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:882
|
1706 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:921
|
1707 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1708 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
1709 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
1710 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:115
|
1711 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
1712 |
msgid "Click to toggle"
|
1713 |
msgstr "Kliknij, aby przełączyć"
|
1714 |
|
1715 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
1716 |
msgid "Summary Statistics"
|
1717 |
msgstr "Podsumowanie statystyk"
|
1718 |
|
1719 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:101
|
1720 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:269
|
1721 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:673
|
1722 |
msgid "Visitor"
|
1723 |
msgstr "Odwiedziło"
|
1724 |
|
1725 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:101
|
1726 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:270
|
1727 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:673
|
1728 |
msgid "Visit"
|
1729 |
msgstr "Odwiedzin"
|
1730 |
|
1731 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:274
|
1732 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:319
|
1733 |
msgid "Today"
|
1734 |
msgstr "Dzisiaj"
|
1735 |
|
1736 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:280
|
1737 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:320
|
1738 |
msgid "Yesterday"
|
1739 |
msgstr "Wczoraj"
|
1740 |
|
1741 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
1742 |
msgid "Week"
|
1743 |
msgstr "W tygodniu"
|
1744 |
|
1745 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:292
|
1746 |
msgid "Month"
|
1747 |
msgstr "W miesiącu"
|
1748 |
|
1749 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:298
|
1750 |
msgid "Year"
|
1751 |
msgstr "W roku"
|
1752 |
|
1753 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:304
|
1754 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:344
|
1755 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:783
|
1756 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:107
|
1757 |
msgid "Total"
|
1758 |
msgstr "Razem"
|
1759 |
|
1760 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
|
1761 |
msgid "(Adjustment)"
|
1762 |
msgstr "(Wyrównanie)"
|
1763 |
|
1764 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
|
1765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:375
|
1766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1767 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:231
|
1768 |
msgid "Browsers"
|
1769 |
msgstr "Przeglądarki"
|
1770 |
|
1771 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:405
|
1772 |
+
msgid "Other"
|
1773 |
+
msgstr "Inne"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1774 |
|
1775 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:476
|
1776 |
msgid "Address"
|
1777 |
msgstr "Adres"
|
1778 |
|
1779 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:87
|
1780 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:659
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1781 |
msgid "Number of visits and visitors"
|
1782 |
msgstr "Liczba odwiedzin i odwiedzających"
|
1783 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1784 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
1785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:923
|
1786 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
1787 |
msgid "Recent Visitors"
|
1788 |
msgstr "Ostatni odwiedzający"
|
1789 |
|
1790 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:530
|
1791 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
1792 |
msgid "Country"
|
1793 |
msgstr "Kraj"
|
1794 |
|
1795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:40
|
1796 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:68
|
1797 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:84
|
1798 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:96
|
1799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:123
|
1800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:135
|
1801 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:147
|
1802 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
|
1803 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:217
|
1804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:233
|
1805 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:36
|
1806 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
1807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
1808 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:39
|
1809 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
1810 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1811 |
msgid "Active"
|
1812 |
msgstr "Uaktywnij"
|
1813 |
|
1814 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:41
|
1815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:69
|
1816 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:85
|
1817 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:124
|
1818 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:136
|
1819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:148
|
1820 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
|
1821 |
msgid "Enable or disable this feature"
|
1822 |
msgstr "Włącz lub wyłącz tą funkcję"
|
1823 |
|
1824 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:901
|
1825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:147
|
1826 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:58
|
1827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:63
|
1828 |
msgid "Visits"
|
1829 |
msgstr "Odwiedzin"
|
1830 |
|
1831 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:74
|
1832 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:79
|
1833 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
1834 |
msgid "Visitors"
|
1835 |
msgstr "Odzwiedzający"
|
1836 |
|
1837 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:47
|
1838 |
msgid "Check for online users every"
|
1839 |
msgstr "Sprawdź aktywne osoby co"
|
1840 |
|
1841 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:53
|
1842 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1843 |
msgstr "Czas sprawdzania liczby użytkowników online. Aktualnie: %s sekund."
|
1844 |
|
1845 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:158
|
1846 |
msgid "Show stats in menu bar"
|
1847 |
msgstr "Wyświetl statystyki w pasku menu"
|
1848 |
|
1849 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:163
|
1850 |
msgid "No"
|
1851 |
msgstr "Nie"
|
1852 |
|
1853 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:164
|
1854 |
msgid "Yes"
|
1855 |
msgstr "Tak"
|
1856 |
|
1857 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:166
|
1858 |
msgid "Show stats in admin menu bar"
|
1859 |
msgstr "Pokaż statystyki w pasku menu administratora"
|
1860 |
|
1861 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:103
|
1862 |
msgid "Coefficient per visitor"
|
1863 |
msgstr "Współczynnik dla odwiedzającego"
|
1864 |
|
1865 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:108
|
1866 |
msgid "For each visit to account for several hits. Currently %s."
|
1867 |
msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
|
1868 |
|
1869 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:241
|
1870 |
msgid "Time send"
|
1871 |
msgstr "Czas wysłania"
|
1872 |
|
1873 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
1874 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
1875 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
1876 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
1877 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
|
|
|
|
|
|
1878 |
msgid "Please select."
|
1879 |
msgstr "Proszę wybrać"
|
1880 |
|
1881 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:255
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1882 |
msgid "Select when receiving statistics report."
|
1883 |
msgstr "Wybierz kiedy otrzymywać raporty statystyczne."
|
1884 |
|
1885 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:261
|
1886 |
msgid "Send Statistical reporting to"
|
1887 |
msgstr "Wysyłaj raport statystyk do"
|
1888 |
|
1889 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:267
|
1890 |
msgid "Email"
|
1891 |
msgstr "E-mail"
|
1892 |
|
1893 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:268
|
1894 |
msgid "SMS"
|
1895 |
msgstr "SMS"
|
1896 |
|
1897 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
|
1898 |
msgid "Type Select Get Status Report."
|
1899 |
msgstr "Sposób wysyłania raportów."
|
1900 |
|
1901 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:273
|
1902 |
msgid ""
|
1903 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1904 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1906 |
"Ważne: By wysyłać wiadomości SMS zainstaluj wtyczkę <a href=\"%s\" target="
|
1907 |
"\"_blank\">Wordpress SMS</a>."
|
1908 |
|
1909 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:280
|
1910 |
msgid "Send Content Report"
|
1911 |
msgstr "Wyślij raport z przygotowaną treścią"
|
1912 |
|
1913 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:285
|
1914 |
msgid "Enter the contents of the reports received."
|
1915 |
msgstr "Wprowadź treść otrzymanych sprawozdań."
|
1916 |
|
1917 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:8
|
|
|
|
|
|
|
|
|
1918 |
msgid "Name"
|
1919 |
msgstr "Nazwa"
|
1920 |
|
1921 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
1922 |
msgid "Items"
|
1923 |
msgstr "Wpisów"
|
1924 |
|
1925 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:51
|
1926 |
msgid "Select type of search engine"
|
1927 |
msgstr "Wybierz typ wyszukiwarki"
|
1928 |
|
1929 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
|
1930 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
1931 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:134
|
1932 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:64
|
1933 |
msgid "All"
|
1934 |
msgstr "Wszystkie"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mostafa-soufi.ir/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 7.0.
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
@@ -118,6 +118,22 @@ Yes, version 6.0 has introduced page hit tracking!
|
|
118 |
= Does WP Statistics track the time of the hits? =
|
119 |
No.
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
== Screenshots ==
|
122 |
1. View stats page.
|
123 |
2. View latest search words.
|
@@ -133,12 +149,22 @@ No.
|
|
133 |
== Upgrade Notice ==
|
134 |
= 7.0 =
|
135 |
* BACKUP YOUR DATABASE BEFORE INSTALLING!
|
136 |
-
* This update includes a database change to the visitors table that requires the duplicate data in the table to be deleted. This requires a complete scan of the database and on large installs may take a while.
|
137 |
* Page track is now enabled on new installs or upgrades from pre 6.0 installs.
|
138 |
* HighCharts has been replaced by jqPlot and the chart type setting is no longer available.
|
139 |
* If you have enabled statistical reporting you can now use any shortcode that is supported in your WordPress installation, the old variables will continue to work for the time being, however in a future version of WP Statistics they will be removed so please update your message text now with the appropriate shortcodes.
|
140 |
|
141 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
= 7.0.2 =
|
143 |
* Fixed: Database prefix not being used when creating/updating tables correctly.
|
144 |
* Fixed: New installs caused an error in the new upgrade code as the visitor table did not exist yet.
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 7.0.3
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
118 |
= Does WP Statistics track the time of the hits? =
|
119 |
No.
|
120 |
|
121 |
+
= The GeoIP database isn't downloading and when I force a download through the settings page I get the following error: "Error downloading GeoIP database from: http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz - Forbidden" =
|
122 |
+
This means that MaxMind has block the IP address of your webserver, this is often the case if it has been blacklisted in the past due to abuse.
|
123 |
+
|
124 |
+
You have two options:
|
125 |
+
- Contact MaxMind and have them umblock your IP addres
|
126 |
+
- Manually download the database
|
127 |
+
|
128 |
+
To manually download it take the following steps:
|
129 |
+
|
130 |
+
- On another system (any PC will do) download the maxmind database from http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz
|
131 |
+
- Decompress the database
|
132 |
+
- Connect to your web host and create a "wp-statistics" directory in your wordpress uploads folder (usually it is located in wp-content, so you would create a directory "wp-content/uploads/wp-statistics").
|
133 |
+
- Upload the GeoLite-Country.mmdb file to the folder you just created.
|
134 |
+
|
135 |
+
You can also ask MaxMind to unblock your host. Note that automatic updates will not function until you can successfully download the database from your web server.
|
136 |
+
|
137 |
== Screenshots ==
|
138 |
1. View stats page.
|
139 |
2. View latest search words.
|
149 |
== Upgrade Notice ==
|
150 |
= 7.0 =
|
151 |
* BACKUP YOUR DATABASE BEFORE INSTALLING!
|
|
|
152 |
* Page track is now enabled on new installs or upgrades from pre 6.0 installs.
|
153 |
* HighCharts has been replaced by jqPlot and the chart type setting is no longer available.
|
154 |
* If you have enabled statistical reporting you can now use any shortcode that is supported in your WordPress installation, the old variables will continue to work for the time being, however in a future version of WP Statistics they will be removed so please update your message text now with the appropriate shortcodes.
|
155 |
|
156 |
== Changelog ==
|
157 |
+
= 7.0.3 =
|
158 |
+
* Added: Extra check that the co-efficient setting is valid.
|
159 |
+
* Updated: Format of the dbDetla scripts to match the guidelines from WordPress, thanks kitchin.
|
160 |
+
* Updated: Handled some WP_DEBUG warning messages, thanks kitchin.
|
161 |
+
* Updated: Multiple additional WP_DEBUG warning fixes.
|
162 |
+
* Updated: Arabic (ar) language.
|
163 |
+
* Updated: Polish (pl_PL) language.
|
164 |
+
* Fixed: Typo in variable name which causes the robots list to be overwritten with the defaults incorrectly.
|
165 |
+
* Fixed: Access role exclusions and search engine exclusions options not displaying correctly in the settings page.
|
166 |
+
* Removed: Database upgrade code to add the unique index on the visitors table due to issues with multiple users. Will add back in a future release as a user selectable option.
|
167 |
+
|
168 |
= 7.0.2 =
|
169 |
* Fixed: Database prefix not being used when creating/updating tables correctly.
|
170 |
* Fixed: New installs caused an error in the new upgrade code as the visitor table did not exist yet.
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
-
Version: 7.0.
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
@@ -17,7 +17,7 @@ License: GPL2
|
|
17 |
}
|
18 |
|
19 |
// These defines are used later for various reasons.
|
20 |
-
define('WP_STATISTICS_VERSION', '7.0.
|
21 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
22 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
|
23 |
define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
|
@@ -281,31 +281,37 @@ License: GPL2
|
|
281 |
}
|
282 |
|
283 |
$wp_admin_bar->add_menu( array(
|
|
|
284 |
'parent' => 'wp-statistic-menu',
|
285 |
'title' => __('User Online', 'wp_statistics') . ": " . wp_statistics_useronline()
|
286 |
));
|
287 |
|
288 |
$wp_admin_bar->add_menu( array(
|
|
|
289 |
'parent' => 'wp-statistic-menu',
|
290 |
'title' => __('Today visitor', 'wp_statistics') . ": " . wp_statistics_visitor('today')
|
291 |
));
|
292 |
|
293 |
$wp_admin_bar->add_menu( array(
|
|
|
294 |
'parent' => 'wp-statistic-menu',
|
295 |
'title' => __('Today visit', 'wp_statistics') . ": " . wp_statistics_visit('today')
|
296 |
));
|
297 |
|
298 |
$wp_admin_bar->add_menu( array(
|
|
|
299 |
'parent' => 'wp-statistic-menu',
|
300 |
'title' => __('Yesterday visitor', 'wp_statistics') . ": " . wp_statistics_visitor('yesterday')
|
301 |
));
|
302 |
|
303 |
$wp_admin_bar->add_menu( array(
|
|
|
304 |
'parent' => 'wp-statistic-menu',
|
305 |
'title' => __('Yesterday visit', 'wp_statistics') . ": " . wp_statistics_visit('yesterday')
|
306 |
));
|
307 |
|
308 |
$wp_admin_bar->add_menu( array(
|
|
|
309 |
'parent' => 'wp-statistic-menu',
|
310 |
'title' => __('View Stats', 'wp_statistics'),
|
311 |
'href' => get_bloginfo('url') . '/wp-admin/admin.php?page=wp-statistics/wp-statistics.php'
|
@@ -485,7 +491,7 @@ License: GPL2
|
|
485 |
} else if( $log_type == 'top-pages' ) {
|
486 |
|
487 |
// If we've been given a page id or uri to get statistics for, load the page stats, otherwise load the page stats overview page.
|
488 |
-
if(
|
489 |
include_once dirname( __FILE__ ) . '/includes/log/page-statistics.php';
|
490 |
} else {
|
491 |
include_once dirname( __FILE__ ) . '/includes/log/top-pages.php';
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
+
Version: 7.0.3
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
17 |
}
|
18 |
|
19 |
// These defines are used later for various reasons.
|
20 |
+
define('WP_STATISTICS_VERSION', '7.0.3');
|
21 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
22 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
|
23 |
define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
|
281 |
}
|
282 |
|
283 |
$wp_admin_bar->add_menu( array(
|
284 |
+
'id' => false,
|
285 |
'parent' => 'wp-statistic-menu',
|
286 |
'title' => __('User Online', 'wp_statistics') . ": " . wp_statistics_useronline()
|
287 |
));
|
288 |
|
289 |
$wp_admin_bar->add_menu( array(
|
290 |
+
'id' => false,
|
291 |
'parent' => 'wp-statistic-menu',
|
292 |
'title' => __('Today visitor', 'wp_statistics') . ": " . wp_statistics_visitor('today')
|
293 |
));
|
294 |
|
295 |
$wp_admin_bar->add_menu( array(
|
296 |
+
'id' => false,
|
297 |
'parent' => 'wp-statistic-menu',
|
298 |
'title' => __('Today visit', 'wp_statistics') . ": " . wp_statistics_visit('today')
|
299 |
));
|
300 |
|
301 |
$wp_admin_bar->add_menu( array(
|
302 |
+
'id' => false,
|
303 |
'parent' => 'wp-statistic-menu',
|
304 |
'title' => __('Yesterday visitor', 'wp_statistics') . ": " . wp_statistics_visitor('yesterday')
|
305 |
));
|
306 |
|
307 |
$wp_admin_bar->add_menu( array(
|
308 |
+
'id' => false,
|
309 |
'parent' => 'wp-statistic-menu',
|
310 |
'title' => __('Yesterday visit', 'wp_statistics') . ": " . wp_statistics_visit('yesterday')
|
311 |
));
|
312 |
|
313 |
$wp_admin_bar->add_menu( array(
|
314 |
+
'id' => false,
|
315 |
'parent' => 'wp-statistic-menu',
|
316 |
'title' => __('View Stats', 'wp_statistics'),
|
317 |
'href' => get_bloginfo('url') . '/wp-admin/admin.php?page=wp-statistics/wp-statistics.php'
|
491 |
} else if( $log_type == 'top-pages' ) {
|
492 |
|
493 |
// If we've been given a page id or uri to get statistics for, load the page stats, otherwise load the page stats overview page.
|
494 |
+
if( array_key_exists( 'page-id', $_GET ) || array_key_exists( 'page-uri', $_GET ) ) {
|
495 |
include_once dirname( __FILE__ ) . '/includes/log/page-statistics.php';
|
496 |
} else {
|
497 |
include_once dirname( __FILE__ ) . '/includes/log/top-pages.php';
|
wps-install.php
CHANGED
@@ -6,62 +6,62 @@
|
|
6 |
|
7 |
// The follow variables are used to define the table structure for new and upgrade installations.
|
8 |
$create_useronline_table = ("CREATE TABLE {$wp_prefix}statistics_useronline (
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
PRIMARY KEY
|
18 |
) CHARSET=utf8");
|
19 |
|
20 |
$create_visit_table = ("CREATE TABLE {$wp_prefix}statistics_visit (
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
PRIMARY KEY
|
26 |
) CHARSET=utf8");
|
27 |
|
28 |
$create_visitor_table = ("CREATE TABLE {$wp_prefix}statistics_visitor (
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
PRIMARY KEY
|
39 |
-
UNIQUE KEY
|
40 |
-
KEY
|
41 |
-
KEY
|
42 |
-
KEY
|
43 |
-
KEY
|
44 |
) CHARSET=utf8");
|
45 |
|
46 |
$create_exclusion_table = ("CREATE TABLE {$wp_prefix}statistics_exclusions (
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
PRIMARY KEY
|
52 |
-
KEY
|
53 |
-
KEY
|
54 |
) CHARSET=utf8");
|
55 |
|
56 |
$create_pages_table = ("CREATE TABLE {$wp_prefix}statistics_pages (
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
UNIQUE KEY
|
62 |
-
KEY
|
63 |
-
KEY
|
64 |
-
KEY
|
65 |
) CHARSET=utf8");
|
66 |
|
67 |
// This includes the dbDelta function from WordPress.
|
@@ -74,36 +74,6 @@
|
|
74 |
dbDelta($create_exclusion_table);
|
75 |
dbDelta($create_pages_table);
|
76 |
|
77 |
-
// Check the number of index's on the visitors table, if it's only 5 we need to check for duplicate entries and remove them
|
78 |
-
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = 'date_ip'");
|
79 |
-
|
80 |
-
if( $result != 2 ) {
|
81 |
-
// We have to loop through all the rows in the visitors table to check for duplicates that may have been created in error.
|
82 |
-
$result = $wpdb->get_results( "SELECT ID, last_counter, ip FROM {$wp_prefix}statistics_visitor ORDER BY last_counter, ip" );
|
83 |
-
|
84 |
-
// Setup the inital values.
|
85 |
-
$lastrow = array( 'last_counter' => '', 'ip' => '' );
|
86 |
-
$deleterows = array();
|
87 |
-
|
88 |
-
// Ok, now iterate over the results.
|
89 |
-
foreach( $result as $row ) {
|
90 |
-
// if the last_counter (the date) and IP is the same as the last row, add the row to be deleted.
|
91 |
-
if( $row->last_counter == $lastrow['last_counter'] && $row->ip == $lastrow['ip'] ) { $deleterows[] .= $row->ID;}
|
92 |
-
|
93 |
-
// Update the lastrow data.
|
94 |
-
$lastrow['last_counter'] = $row->last_counter;
|
95 |
-
$lastrow['ip'] = $row->ip;
|
96 |
-
}
|
97 |
-
|
98 |
-
// Now do the acutal deletions.
|
99 |
-
foreach( $deleterows as $row ) {
|
100 |
-
$wpdb->delete( $wp_prefix . 'statistics_visitor', array( 'ID' => $row ) );
|
101 |
-
}
|
102 |
-
|
103 |
-
// The table should be ready to be updated now with the new index, so let's do it.
|
104 |
-
dbDelta($create_visitor_table);
|
105 |
-
}
|
106 |
-
|
107 |
// Store the new version information.
|
108 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
109 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
@@ -166,7 +136,7 @@
|
|
166 |
// If the robot list is empty, fill in the defaults.
|
167 |
$wps_temp_robotslist = $WP_Statistics->get_option('robotlist');
|
168 |
|
169 |
-
if(trim($
|
170 |
$WP_Statistics->update_option('robotlist', $wps_robotslist);
|
171 |
}
|
172 |
|
6 |
|
7 |
// The follow variables are used to define the table structure for new and upgrade installations.
|
8 |
$create_useronline_table = ("CREATE TABLE {$wp_prefix}statistics_useronline (
|
9 |
+
ID int(11) NOT NULL AUTO_INCREMENT,
|
10 |
+
ip varchar(20) NOT NULL,
|
11 |
+
timestamp int(10) NOT NULL,
|
12 |
+
date datetime NOT NULL,
|
13 |
+
referred text CHARACTER SET utf8 NOT NULL,
|
14 |
+
agent varchar(255) NOT NULL,
|
15 |
+
platform varchar(255),
|
16 |
+
version varchar(255),
|
17 |
+
PRIMARY KEY (ID)
|
18 |
) CHARSET=utf8");
|
19 |
|
20 |
$create_visit_table = ("CREATE TABLE {$wp_prefix}statistics_visit (
|
21 |
+
ID int(11) NOT NULL AUTO_INCREMENT,
|
22 |
+
last_visit datetime NOT NULL,
|
23 |
+
last_counter date NOT NULL,
|
24 |
+
visit int(10) NOT NULL,
|
25 |
+
PRIMARY KEY (ID)
|
26 |
) CHARSET=utf8");
|
27 |
|
28 |
$create_visitor_table = ("CREATE TABLE {$wp_prefix}statistics_visitor (
|
29 |
+
ID int(11) NOT NULL AUTO_INCREMENT,
|
30 |
+
last_counter date NOT NULL,
|
31 |
+
referred text NOT NULL,
|
32 |
+
agent varchar(255) NOT NULL,
|
33 |
+
platform varchar(255),
|
34 |
+
version varchar(255),
|
35 |
+
AString varchar(255),
|
36 |
+
ip varchar(20) NOT NULL,
|
37 |
+
location varchar(10),
|
38 |
+
PRIMARY KEY (ID),
|
39 |
+
UNIQUE KEY date_ip (last_counter,ip),
|
40 |
+
KEY agent (agent),
|
41 |
+
KEY platform (platform),
|
42 |
+
KEY version (version),
|
43 |
+
KEY location (location)
|
44 |
) CHARSET=utf8");
|
45 |
|
46 |
$create_exclusion_table = ("CREATE TABLE {$wp_prefix}statistics_exclusions (
|
47 |
+
ID int(11) NOT NULL AUTO_INCREMENT,
|
48 |
+
date date NOT NULL,
|
49 |
+
reason varchar(255) DEFAULT NULL,
|
50 |
+
count bigint(20) NOT NULL,
|
51 |
+
PRIMARY KEY (ID),
|
52 |
+
KEY date (date),
|
53 |
+
KEY reason (reason)
|
54 |
) CHARSET=utf8");
|
55 |
|
56 |
$create_pages_table = ("CREATE TABLE {$wp_prefix}statistics_pages (
|
57 |
+
uri varchar(255) NOT NULL,
|
58 |
+
date date NOT NULL,
|
59 |
+
count int(11) NOT NULL,
|
60 |
+
id int(11) NOT NULL,
|
61 |
+
UNIQUE KEY date_2 (date,uri),
|
62 |
+
KEY url (uri),
|
63 |
+
KEY date (date),
|
64 |
+
KEY id (id)
|
65 |
) CHARSET=utf8");
|
66 |
|
67 |
// This includes the dbDelta function from WordPress.
|
74 |
dbDelta($create_exclusion_table);
|
75 |
dbDelta($create_pages_table);
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
// Store the new version information.
|
78 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
79 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
136 |
// If the robot list is empty, fill in the defaults.
|
137 |
$wps_temp_robotslist = $WP_Statistics->get_option('robotlist');
|
138 |
|
139 |
+
if(trim($wps_temp_robotslist) == "") {
|
140 |
$WP_Statistics->update_option('robotlist', $wps_robotslist);
|
141 |
}
|
142 |
|