Version Description
- Release Date: March 24, 2017
- Added: Check for BCMath or GMP Math extensions to support newer GeoIP database files.
- Fixed: Robots list not being updated on upgrades properly in some cases.
- Fixed: wp_statistics_get_uri() to handle cases where site and home uri's are different.
- Fixed: wp_statistics_get_uri() to validate what is being removed to make sure we don't remove the wrong things.
- Fixed: Display of individual referring site stats.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 12.0.1 |
Comparing to | |
See all releases |
Code changes from version 12.0 to 12.0.1
- includes/functions/functions.php +30 -2
- includes/log/top-referring.php +35 -13
- includes/optimization/tabs/wps-optimization-resources.php +22 -0
- languages/wp_statistics-ar.mo +0 -0
- languages/wp_statistics-ar.po +1 -1
- languages/wp_statistics-ary.mo +0 -0
- languages/wp_statistics-ary.po +1 -1
- languages/wp_statistics-az.mo +0 -0
- languages/wp_statistics-az.po +72 -72
- languages/wp_statistics-bg_BG.mo +0 -0
- languages/wp_statistics-bg_BG.po +1 -1
- languages/wp_statistics-bn_BD.mo +0 -0
- languages/wp_statistics-bn_BD.po +1 -1
- languages/wp_statistics-bs.mo +0 -0
- languages/wp_statistics-bs.po +1 -1
- languages/wp_statistics-ckb.mo +0 -0
- languages/wp_statistics-ckb.po +1 -1
- languages/wp_statistics-cs_CZ.mo +0 -0
- languages/wp_statistics-cs_CZ.po +1 -1
- languages/wp_statistics-da_DK.mo +0 -0
- languages/wp_statistics-da_DK.po +1 -1
- languages/wp_statistics-de_DE.mo +0 -0
- languages/wp_statistics-de_DE.po +1 -1
- languages/wp_statistics-de_de_formal.mo +0 -0
- languages/wp_statistics-de_de_formal.po +1 -1
- languages/wp_statistics-eo.mo +0 -0
- languages/wp_statistics-eo.po +1 -1
- languages/wp_statistics-es_ES.mo +0 -0
- languages/wp_statistics-es_ES.po +1 -1
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +1 -1
- languages/wp_statistics-fr_FR.mo +0 -0
- languages/wp_statistics-fr_FR.po +1 -1
- languages/wp_statistics-hi.mo +0 -0
- languages/wp_statistics-hi.po +1 -1
- languages/wp_statistics-hu_HU.mo +0 -0
- languages/wp_statistics-hu_HU.po +1 -1
- languages/wp_statistics-id_ID.mo +0 -0
- languages/wp_statistics-id_ID.po +1 -1
- languages/wp_statistics-it_IT.mo +0 -0
- languages/wp_statistics-it_IT.po +1 -1
- languages/wp_statistics-ja.mo +0 -0
- languages/wp_statistics-ja.po +1 -1
- languages/wp_statistics-nl_NL.mo +0 -0
- languages/wp_statistics-nl_NL.po +1 -1
- languages/wp_statistics-pl_PL.mo +0 -0
- languages/wp_statistics-pl_PL.po +1 -1
- languages/wp_statistics-pt_BR.mo +0 -0
- languages/wp_statistics-pt_BR.po +1 -1
- languages/wp_statistics-ro_RO.mo +0 -0
- languages/wp_statistics-ro_RO.po +1 -1
- languages/wp_statistics-ru_RU.mo +0 -0
- languages/wp_statistics-ru_RU.po +1 -1
- languages/wp_statistics-sk_SK.mo +0 -0
- languages/wp_statistics-sk_SK.po +1 -1
- languages/wp_statistics-sr_RS.mo +0 -0
- languages/wp_statistics-sr_RS.po +1 -1
- languages/wp_statistics-sv_SE.mo +0 -0
- languages/wp_statistics-sv_SE.po +1 -1
- languages/wp_statistics-tr_TR.mo +0 -0
- languages/wp_statistics-tr_TR.po +1 -1
- languages/wp_statistics-uk.mo +0 -0
- languages/wp_statistics-uk.po +1 -1
- languages/wp_statistics-vi.mo +0 -0
- languages/wp_statistics-vi.po +1 -1
- languages/wp_statistics-zh_CN.mo +0 -0
- languages/wp_statistics-zh_CN.po +1 -1
- languages/wp_statistics-zh_TW.mo +0 -0
- languages/wp_statistics-zh_TW.po +1 -1
- readme.txt +9 -1
- wp-statistics.php +2 -2
includes/functions/functions.php
CHANGED
@@ -297,12 +297,40 @@
|
|
297 |
function wp_statistics_get_uri() {
|
298 |
// Get the site's path from the URL.
|
299 |
$site_uri = parse_url( site_url(), PHP_URL_PATH );
|
|
|
300 |
|
|
|
|
|
|
|
|
|
301 |
// Get the current page URI.
|
302 |
$page_uri = $_SERVER["REQUEST_URI"];
|
303 |
|
304 |
-
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
|
307 |
// If we're at the root (aka the URI is blank), let's make sure to indicate it.
|
308 |
if( $page_uri == '' ) { $page_uri = '/'; }
|
297 |
function wp_statistics_get_uri() {
|
298 |
// Get the site's path from the URL.
|
299 |
$site_uri = parse_url( site_url(), PHP_URL_PATH );
|
300 |
+
$site_uri_len = strlen( $site_uri );
|
301 |
|
302 |
+
// Get the site's path from the URL.
|
303 |
+
$home_uri = parse_url( home_url(), PHP_URL_PATH );
|
304 |
+
$home_uri_len = strlen( $home_uri );
|
305 |
+
|
306 |
// Get the current page URI.
|
307 |
$page_uri = $_SERVER["REQUEST_URI"];
|
308 |
|
309 |
+
/*
|
310 |
+
* We need to check which URI is longer in case one contains the other.
|
311 |
+
*
|
312 |
+
* For example home_uri might be "/site/wp" and site_uri might be "/site".
|
313 |
+
*
|
314 |
+
* In that case we want to check to see if the page_uri starts with "/site/wp" before
|
315 |
+
* we check for "/site", but in the reverse case, we need to swap the order of the check.
|
316 |
+
*/
|
317 |
+
if( $site_uri_len > $home_uri_len ) {
|
318 |
+
if( substr( $page_uri, 0, $site_uri_len ) == $site_uri ) {
|
319 |
+
$page_uri = substr( $page_uri, $site_uri_len );
|
320 |
+
}
|
321 |
+
|
322 |
+
if( substr( $page_uri, 0, $home_uri_len ) == $home_uri ) {
|
323 |
+
$page_uri = substr( $page_uri, $home_uri_len );
|
324 |
+
}
|
325 |
+
} else {
|
326 |
+
if( substr( $page_uri, 0, $home_uri_len ) == $home_uri ) {
|
327 |
+
$page_uri = substr( $page_uri, $home_uri_len );
|
328 |
+
}
|
329 |
+
|
330 |
+
if( substr( $page_uri, 0, $site_uri_len ) == $site_uri ) {
|
331 |
+
$page_uri = substr( $page_uri, $site_uri_len );
|
332 |
+
}
|
333 |
+
}
|
334 |
|
335 |
// If we're at the root (aka the URI is blank), let's make sure to indicate it.
|
336 |
if( $page_uri == '' ) { $page_uri = '/'; }
|
includes/log/top-referring.php
CHANGED
@@ -22,33 +22,55 @@
|
|
22 |
if( array_key_exists('referr',$_GET) ) {
|
23 |
$referr = $_GET['referr'];
|
24 |
$title = $_GET['referr'];
|
|
|
25 |
}
|
26 |
else {
|
27 |
$referr = '';
|
|
|
28 |
}
|
29 |
|
30 |
$get_urls = array();
|
31 |
$total = 0;
|
32 |
|
33 |
if( $referr ) {
|
34 |
-
|
|
|
|
|
|
|
|
|
35 |
|
|
|
|
|
36 |
$total = count( $result );
|
37 |
} else {
|
38 |
-
$result = $wpdb->get_results( $wpdb->prepare( "SELECT referred FROM {$wpdb->prefix}statistics_visitor WHERE referred <> '' AND `last_counter` BETWEEN %s AND %s", $rangestartdate, $rangeenddate ) );
|
39 |
-
|
40 |
$urls = array();
|
41 |
-
foreach( $result as $item ) {
|
42 |
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
-
|
46 |
-
continue;
|
47 |
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
|
51 |
-
$get_urls = array_count_values($urls);
|
52 |
|
53 |
$total = count( $get_urls );
|
54 |
}
|
@@ -58,7 +80,7 @@
|
|
58 |
<?php screen_icon('options-general'); ?>
|
59 |
<h2><?php _e('Top Referring Sites', 'wp_statistics'); ?></h2>
|
60 |
|
61 |
-
<div><?php wp_statistics_date_range_selector( WP_STATISTICS_REFERRERS_PAGE, $daysToDisplay ); ?></div>
|
62 |
|
63 |
<div class="clear"/>
|
64 |
|
@@ -98,10 +120,10 @@
|
|
98 |
$start = $Pagination->getEntryStart();
|
99 |
$end = $Pagination->getEntryEnd();
|
100 |
|
101 |
-
if( $WP_Statistics->get_option('search_converted') ) {
|
102 |
-
$result = $wpdb->get_results($wpdb->prepare("SELECT * FROM `{$wpdb->prefix}statistics_search` INNER JOIN `{$wpdb->prefix}statistics_visitor` on {$wpdb->prefix}statistics_search.`visitor` = {$wpdb->prefix}statistics_visitor.`ID` WHERE `host` = %s AND {$wpdb->prefix}statistics_visitor.`last_counter` BETWEEN %s AND %s ORDER BY `{$wpdb->prefix}statistics_search`.`ID` DESC LIMIT %d, %d", $referr, $rangestartdate, $rangeenddate, $start, $end ) );
|
103 |
}
|
104 |
-
|
105 |
if( $referr ) {
|
106 |
foreach($result as $item) {
|
107 |
|
22 |
if( array_key_exists('referr',$_GET) ) {
|
23 |
$referr = $_GET['referr'];
|
24 |
$title = $_GET['referr'];
|
25 |
+
$referr_field = '&referr=' . $referr;
|
26 |
}
|
27 |
else {
|
28 |
$referr = '';
|
29 |
+
$referr_field = null;
|
30 |
}
|
31 |
|
32 |
$get_urls = array();
|
33 |
$total = 0;
|
34 |
|
35 |
if( $referr ) {
|
36 |
+
if( $WP_Statistics->get_option( 'search_converted' ) ) {
|
37 |
+
$sql = $wpdb->prepare( "SELECT * FROM `{$wpdb->prefix}statistics_search` WHERE `host` = %s AND `last_counter` BETWEEN %s AND %s ORDER BY `ID` DESC", $referr, $rangestartdate, $rangeenddate );
|
38 |
+
} else {
|
39 |
+
$sql = $wpdb->prepare( "SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `referred` LIKE %s AND referred <> '' AND `last_counter` BETWEEN %s AND %s ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC", '%' . $referr . '%', $rangestartdate, $rangeenddate );
|
40 |
+
}
|
41 |
|
42 |
+
$result = $wpdb->get_results( $sql );
|
43 |
+
|
44 |
$total = count( $result );
|
45 |
} else {
|
|
|
|
|
46 |
$urls = array();
|
|
|
47 |
|
48 |
+
if( $WP_Statistics->get_option( 'search_converted' ) ) {
|
49 |
+
$result = $wpdb->get_results( $wpdb->prepare( "SELECT host FROM {$wpdb->prefix}statistics_search WHERE host <> '' AND `last_counter` BETWEEN %s AND %s", $rangestartdate, $rangeenddate ) );
|
50 |
+
|
51 |
+
foreach( $result as $item ) {
|
52 |
+
if( empty( $item->host ) || stristr( get_bloginfo( 'url' ), $item->host ) ) {
|
53 |
+
continue;
|
54 |
+
}
|
55 |
+
|
56 |
+
$urls[] = $item->host;
|
57 |
+
}
|
58 |
+
} else {
|
59 |
+
$result = $wpdb->get_results( $wpdb->prepare( "SELECT referred FROM {$wpdb->prefix}statistics_visitor WHERE referred <> '' AND `last_counter` BETWEEN %s AND %s", $rangestartdate, $rangeenddate ) );
|
60 |
+
|
61 |
+
foreach( $result as $item ) {
|
62 |
|
63 |
+
$url = parse_url($item->referred);
|
|
|
64 |
|
65 |
+
if( empty( $url['host'] ) || stristr( get_bloginfo( 'url' ), $url['host'] ) ) {
|
66 |
+
continue;
|
67 |
+
}
|
68 |
+
|
69 |
+
$urls[] = $url['host'];
|
70 |
+
}
|
71 |
}
|
72 |
|
73 |
+
$get_urls = array_count_values( $urls );
|
74 |
|
75 |
$total = count( $get_urls );
|
76 |
}
|
80 |
<?php screen_icon('options-general'); ?>
|
81 |
<h2><?php _e('Top Referring Sites', 'wp_statistics'); ?></h2>
|
82 |
|
83 |
+
<div><?php wp_statistics_date_range_selector( WP_STATISTICS_REFERRERS_PAGE, $daysToDisplay, null, null, $referr_field ); ?></div>
|
84 |
|
85 |
<div class="clear"/>
|
86 |
|
120 |
$start = $Pagination->getEntryStart();
|
121 |
$end = $Pagination->getEntryEnd();
|
122 |
|
123 |
+
if( $WP_Statistics->get_option( 'search_converted' ) ) {
|
124 |
+
$result = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM `{$wpdb->prefix}statistics_search` INNER JOIN `{$wpdb->prefix}statistics_visitor` on {$wpdb->prefix}statistics_search.`visitor` = {$wpdb->prefix}statistics_visitor.`ID` WHERE `host` = %s AND {$wpdb->prefix}statistics_visitor.`last_counter` BETWEEN %s AND %s ORDER BY `{$wpdb->prefix}statistics_search`.`ID` DESC LIMIT %d, %d", $referr, $rangestartdate, $rangeenddate, $start, $end ) );
|
125 |
}
|
126 |
+
|
127 |
if( $referr ) {
|
128 |
foreach($result as $item) {
|
129 |
|
includes/optimization/tabs/wps-optimization-resources.php
CHANGED
@@ -197,6 +197,28 @@
|
|
197 |
</td>
|
198 |
</tr>
|
199 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
<tr valign="top">
|
201 |
<th scope="row" colspan="2"><h3><?php _e('File Info', 'wp_statistics'); ?></h3></th>
|
202 |
</tr>
|
197 |
</td>
|
198 |
</tr>
|
199 |
|
200 |
+
<tr valign="top">
|
201 |
+
<th scope="row">
|
202 |
+
<?php _e('GMP PHP extension', 'wp_statistics'); ?>:
|
203 |
+
</th>
|
204 |
+
|
205 |
+
<td>
|
206 |
+
<strong><?php if( extension_loaded( 'gmp' ) ) { _e('Installed','wp_statistics'); } else { _e('Not installed', 'wp_statistics'); }?></strong>
|
207 |
+
<p class="description"><?php _e('If the GMP Math PHP extension is loaded, either GMP or BCMath is required for the GeoIP database to be read successfully.', 'wp_statistics'); ?></p>
|
208 |
+
</td>
|
209 |
+
</tr>
|
210 |
+
|
211 |
+
<tr valign="top">
|
212 |
+
<th scope="row">
|
213 |
+
<?php _e('BCMath PHP extension', 'wp_statistics'); ?>:
|
214 |
+
</th>
|
215 |
+
|
216 |
+
<td>
|
217 |
+
<strong><?php if( extension_loaded( 'bcmath' ) ) { _e('Installed','wp_statistics'); } else { _e('Not installed', 'wp_statistics'); }?></strong>
|
218 |
+
<p class="description"><?php _e('If the BCMath PHP extension is loaded, either GMP or BCMath is required for the GeoIP database to be read successfully.', 'wp_statistics'); ?></p>
|
219 |
+
</td>
|
220 |
+
</tr>
|
221 |
+
|
222 |
<tr valign="top">
|
223 |
<th scope="row" colspan="2"><h3><?php _e('File Info', 'wp_statistics'); ?></h3></th>
|
224 |
</tr>
|
languages/wp_statistics-ar.mo
CHANGED
Binary file
|
languages/wp_statistics-ar.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-ary.mo
CHANGED
Binary file
|
languages/wp_statistics-ary.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: ar_MA\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: ar_MA\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-az.mo
CHANGED
Binary file
|
languages/wp_statistics-az.po
CHANGED
@@ -2,12 +2,12 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2017-02-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: az\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
@@ -1076,15 +1076,15 @@ msgstr ""
|
|
1076 |
|
1077 |
#: includes/settings/tabs/wps-notifications.php:173
|
1078 |
msgid "WordPress SMS"
|
1079 |
-
msgstr ""
|
1080 |
|
1081 |
#: includes/settings/tabs/wps-notifications.php:180
|
1082 |
msgid "Report body"
|
1083 |
-
msgstr ""
|
1084 |
|
1085 |
#: includes/settings/tabs/wps-notifications.php:185
|
1086 |
msgid "Enter the contents of the report."
|
1087 |
-
msgstr ""
|
1088 |
|
1089 |
#: includes/settings/tabs/wps-notifications.php:187
|
1090 |
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
@@ -1092,81 +1092,81 @@ msgstr ""
|
|
1092 |
|
1093 |
#: includes/settings/tabs/wps-notifications.php:188 wp-statistics.php:662
|
1094 |
msgid "User Online"
|
1095 |
-
msgstr ""
|
1096 |
|
1097 |
#: includes/settings/tabs/wps-notifications.php:189
|
1098 |
msgid "Today Visitor"
|
1099 |
-
msgstr ""
|
1100 |
|
1101 |
#: includes/settings/tabs/wps-notifications.php:190
|
1102 |
msgid "Today Visit"
|
1103 |
-
msgstr ""
|
1104 |
|
1105 |
#: includes/settings/tabs/wps-notifications.php:191
|
1106 |
msgid "Yesterday Visitor"
|
1107 |
-
msgstr ""
|
1108 |
|
1109 |
#: includes/settings/tabs/wps-notifications.php:192
|
1110 |
msgid "Yesterday Visit"
|
1111 |
-
msgstr ""
|
1112 |
|
1113 |
#: includes/settings/tabs/wps-notifications.php:193
|
1114 |
msgid "Total Visitor"
|
1115 |
-
msgstr ""
|
1116 |
|
1117 |
#: includes/settings/tabs/wps-notifications.php:194
|
1118 |
msgid "Total Visit"
|
1119 |
-
msgstr ""
|
1120 |
|
1121 |
#: shortcode.php:175
|
1122 |
msgid "None"
|
1123 |
-
msgstr ""
|
1124 |
|
1125 |
#: includes/settings/wps-settings.php:108
|
1126 |
msgid "About"
|
1127 |
-
msgstr ""
|
1128 |
|
1129 |
#: includes/settings/tabs/wps-overview-display.php:20
|
1130 |
msgid "Dashboard"
|
1131 |
-
msgstr ""
|
1132 |
|
1133 |
#: includes/settings/tabs/wps-overview-display.php:24
|
1134 |
#: includes/settings/tabs/wps-overview-display.php:44
|
1135 |
#: includes/settings/tabs/wps-overview-display.php:64
|
1136 |
msgid "The following items are global to all users."
|
1137 |
-
msgstr ""
|
1138 |
|
1139 |
#: includes/settings/tabs/wps-overview-display.php:29
|
1140 |
msgid "Disable dashboard widgets"
|
1141 |
-
msgstr ""
|
1142 |
|
1143 |
#: includes/settings/tabs/wps-overview-display.php:35
|
1144 |
msgid "Disable the dashboard widgets."
|
1145 |
-
msgstr ""
|
1146 |
|
1147 |
#: includes/settings/tabs/wps-overview-display.php:40
|
1148 |
msgid "Page/Post Editor"
|
1149 |
-
msgstr ""
|
1150 |
|
1151 |
#: includes/settings/tabs/wps-overview-display.php:49
|
1152 |
msgid "Disable post/page editor widget"
|
1153 |
-
msgstr ""
|
1154 |
|
1155 |
#: includes/settings/tabs/wps-overview-display.php:55
|
1156 |
msgid "Disable the page/post editor widget."
|
1157 |
-
msgstr ""
|
1158 |
|
1159 |
#: includes/functions/functions.php:440
|
1160 |
msgid "Google"
|
1161 |
-
msgstr ""
|
1162 |
|
1163 |
#: includes/settings/tabs/wps-overview-display.php:69
|
1164 |
msgid "Disable map"
|
1165 |
-
msgstr ""
|
1166 |
|
1167 |
#: includes/settings/tabs/wps-overview-display.php:75
|
1168 |
msgid "Disable the map display"
|
1169 |
-
msgstr ""
|
1170 |
|
1171 |
#: includes/settings/tabs/wps-removal.php:74
|
1172 |
msgid "WP Statisitcs Removal"
|
@@ -1194,15 +1194,15 @@ msgstr ""
|
|
1194 |
|
1195 |
#: includes/settings/wps-settings.php:100
|
1196 |
msgid "General"
|
1197 |
-
msgstr ""
|
1198 |
|
1199 |
#: includes/settings/wps-settings.php:101
|
1200 |
msgid "Notifications"
|
1201 |
-
msgstr ""
|
1202 |
|
1203 |
#: includes/settings/wps-settings.php:102
|
1204 |
msgid "Dashboard/Overview"
|
1205 |
-
msgstr ""
|
1206 |
|
1207 |
#: includes/settings/wps-settings.php:106
|
1208 |
msgid "Maintenance"
|
@@ -1237,7 +1237,7 @@ msgstr ""
|
|
1237 |
|
1238 |
#: widget.php:14 wp-statistics.php:430 wp-statistics.php:510
|
1239 |
msgid "Statistics"
|
1240 |
-
msgstr ""
|
1241 |
|
1242 |
#: widget.php:15
|
1243 |
msgid "Show site stats in sidebar."
|
@@ -1365,51 +1365,51 @@ msgstr ""
|
|
1365 |
|
1366 |
#: wp-statistics.php:452 wp-statistics.php:563
|
1367 |
msgid "Optimization"
|
1368 |
-
msgstr ""
|
1369 |
|
1370 |
#: wp-statistics.php:458 wp-statistics.php:527
|
1371 |
msgid "Manual"
|
1372 |
-
msgstr ""
|
1373 |
|
1374 |
#: wp-statistics.php:542
|
1375 |
msgid "Site"
|
1376 |
-
msgstr ""
|
1377 |
|
1378 |
#: wp-statistics.php:543
|
1379 |
msgid "Options"
|
1380 |
-
msgstr ""
|
1381 |
|
1382 |
#: wp-statistics.php:669
|
1383 |
msgid "Today visitor"
|
1384 |
-
msgstr ""
|
1385 |
|
1386 |
#: wp-statistics.php:675
|
1387 |
msgid "Today visit"
|
1388 |
-
msgstr ""
|
1389 |
|
1390 |
#: wp-statistics.php:681
|
1391 |
msgid "Yesterday visitor"
|
1392 |
-
msgstr ""
|
1393 |
|
1394 |
#: wp-statistics.php:693
|
1395 |
msgid "View Stats"
|
1396 |
-
msgstr ""
|
1397 |
|
1398 |
#: wp-statistics.php:717
|
1399 |
msgid "Download ODF file"
|
1400 |
-
msgstr ""
|
1401 |
|
1402 |
#: wp-statistics.php:718
|
1403 |
msgid "Download HTML file"
|
1404 |
-
msgstr ""
|
1405 |
|
1406 |
#: wp-statistics.php:722
|
1407 |
msgid "Manual file not found."
|
1408 |
-
msgstr ""
|
1409 |
|
1410 |
#: wp-statistics.php:801 wp-statistics.php:915 wp-statistics.php:951
|
1411 |
msgid "You do not have sufficient permissions to access this page."
|
1412 |
-
msgstr ""
|
1413 |
|
1414 |
#: wp-statistics.php:323
|
1415 |
msgid "WP Statistics %s installed on"
|
@@ -1465,20 +1465,20 @@ msgstr ""
|
|
1465 |
|
1466 |
#: dashboard.php:57 includes/log/widgets/browsers.php:41
|
1467 |
msgid "Top 10 Browsers"
|
1468 |
-
msgstr ""
|
1469 |
|
1470 |
#: dashboard.php:58 wp-statistics.php:496
|
1471 |
msgid "Top 10 Countries"
|
1472 |
-
msgstr ""
|
1473 |
|
1474 |
#: dashboard.php:59
|
1475 |
msgid "Today's Visitor Map"
|
1476 |
-
msgstr ""
|
1477 |
|
1478 |
#: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
|
1479 |
#: wp-statistics.php:471
|
1480 |
msgid "Hit Statistics"
|
1481 |
-
msgstr ""
|
1482 |
|
1483 |
#: dashboard.php:61 wp-statistics.php:486
|
1484 |
msgid "Top 10 Pages"
|
@@ -1833,76 +1833,76 @@ msgstr ""
|
|
1833 |
|
1834 |
#: includes/log/widgets/browsers.php:34
|
1835 |
msgid "Other"
|
1836 |
-
msgstr ""
|
1837 |
|
1838 |
#: wp-statistics.php:481
|
1839 |
msgid "Today Visitors Map"
|
1840 |
-
msgstr ""
|
1841 |
|
1842 |
#: includes/log/widgets/referring.php:36
|
1843 |
msgid "Address"
|
1844 |
-
msgstr ""
|
1845 |
|
1846 |
#: includes/log/widgets/quickstats.php:12
|
1847 |
msgid "User(s) Online"
|
1848 |
-
msgstr ""
|
1849 |
|
1850 |
#: includes/log/widgets/quickstats.php:28
|
1851 |
#: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
|
1852 |
#: includes/log/widgets/summary.php:80
|
1853 |
msgid "Today"
|
1854 |
-
msgstr ""
|
1855 |
|
1856 |
#: includes/log/widgets/quickstats.php:34
|
1857 |
#: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
|
1858 |
#: includes/log/widgets/summary.php:81
|
1859 |
msgid "Yesterday"
|
1860 |
-
msgstr ""
|
1861 |
|
1862 |
#: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
|
1863 |
msgid "Daily Total"
|
1864 |
-
msgstr ""
|
1865 |
|
1866 |
#: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
|
1867 |
msgid "Current Time and Date"
|
1868 |
-
msgstr ""
|
1869 |
|
1870 |
#: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
|
1871 |
msgid "(Adjustment)"
|
1872 |
-
msgstr ""
|
1873 |
|
1874 |
#: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
|
1875 |
msgid "Date: %s"
|
1876 |
-
msgstr ""
|
1877 |
|
1878 |
#: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
|
1879 |
msgid "Time: %s"
|
1880 |
-
msgstr ""
|
1881 |
|
1882 |
#: includes/log/authors.php:257 includes/log/categories.php:245
|
1883 |
#: includes/log/tags.php:260 includes/log/widgets/top.visitors.php:12
|
1884 |
#: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:359
|
1885 |
#: wp-statistics.php:438 wp-statistics.php:555
|
1886 |
msgid "Hits"
|
1887 |
-
msgstr ""
|
1888 |
|
1889 |
#: includes/log/widgets/top.visitors.php:15
|
1890 |
msgid "IP"
|
1891 |
-
msgstr ""
|
1892 |
|
1893 |
#: includes/log/widgets/top.visitors.php:17
|
1894 |
msgid "Agent"
|
1895 |
-
msgstr ""
|
1896 |
|
1897 |
#: includes/log/widgets/top.visitors.php:19
|
1898 |
#: includes/optimization/tabs/wps-optimization-resources.php:302
|
1899 |
msgid "Version"
|
1900 |
-
msgstr ""
|
1901 |
|
1902 |
#: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:296
|
1903 |
#: includes/optimization/wps-optimization.php:6
|
1904 |
msgid "Access denied!"
|
1905 |
-
msgstr ""
|
1906 |
|
1907 |
#: ajax.php:31
|
1908 |
msgid "%s agent data deleted successfully."
|
@@ -1910,7 +1910,7 @@ msgstr ""
|
|
1910 |
|
1911 |
#: ajax.php:34
|
1912 |
msgid "No agent data found to remove!"
|
1913 |
-
msgstr ""
|
1914 |
|
1915 |
#: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
|
1916 |
msgid "Please select the desired items."
|
@@ -1922,11 +1922,11 @@ msgstr ""
|
|
1922 |
|
1923 |
#: ajax.php:65
|
1924 |
msgid "No platform data found to remove!"
|
1925 |
-
msgstr ""
|
1926 |
|
1927 |
#: includes/functions/functions.php:1007
|
1928 |
msgid "%s table data deleted successfully."
|
1929 |
-
msgstr ""
|
1930 |
|
1931 |
#: includes/functions/functions.php:1011
|
1932 |
msgid "Error, %s not emptied!"
|
@@ -1934,15 +1934,15 @@ msgstr ""
|
|
1934 |
|
1935 |
#: includes/optimization/tabs/wps-optimization-database.php:5
|
1936 |
msgid "Database Setup"
|
1937 |
-
msgstr ""
|
1938 |
|
1939 |
#: includes/optimization/tabs/wps-optimization-database.php:10
|
1940 |
msgid "Re-run Install"
|
1941 |
-
msgstr ""
|
1942 |
|
1943 |
#: includes/optimization/tabs/wps-optimization-database.php:14
|
1944 |
msgid "Install Now!"
|
1945 |
-
msgstr ""
|
1946 |
|
1947 |
#: includes/optimization/tabs/wps-optimization-database.php:15
|
1948 |
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
@@ -1950,20 +1950,20 @@ msgstr ""
|
|
1950 |
|
1951 |
#: includes/optimization/tabs/wps-optimization-database.php:20
|
1952 |
msgid "Database Index"
|
1953 |
-
msgstr ""
|
1954 |
|
1955 |
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1956 |
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1957 |
#: wp-statistics.php:436 wp-statistics.php:553
|
1958 |
msgid "Countries"
|
1959 |
-
msgstr ""
|
1960 |
|
1961 |
#: includes/optimization/tabs/wps-optimization-database.php:42
|
1962 |
#: includes/optimization/tabs/wps-optimization-database.php:74
|
1963 |
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1964 |
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1965 |
msgid "Update Now!"
|
1966 |
-
msgstr ""
|
1967 |
|
1968 |
#: includes/optimization/tabs/wps-optimization-database.php:43
|
1969 |
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
@@ -2001,7 +2001,7 @@ msgstr ""
|
|
2001 |
#: includes/settings/tabs/wps-notifications.php:134
|
2002 |
#: includes/settings/tabs/wps-notifications.php:164
|
2003 |
msgid "Please select"
|
2004 |
-
msgstr ""
|
2005 |
|
2006 |
#: includes/optimization/tabs/wps-optimization-export.php:26
|
2007 |
msgid "Select the table for the output file."
|
@@ -2025,11 +2025,11 @@ msgstr ""
|
|
2025 |
|
2026 |
#: includes/optimization/tabs/wps-optimization-export.php:54
|
2027 |
msgid "Start Now!"
|
2028 |
-
msgstr ""
|
2029 |
|
2030 |
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
2031 |
msgid "Historical Values"
|
2032 |
-
msgstr ""
|
2033 |
|
2034 |
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
2035 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2017-02-23 19:49:33+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: az\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
1076 |
|
1077 |
#: includes/settings/tabs/wps-notifications.php:173
|
1078 |
msgid "WordPress SMS"
|
1079 |
+
msgstr "WordPress SMS"
|
1080 |
|
1081 |
#: includes/settings/tabs/wps-notifications.php:180
|
1082 |
msgid "Report body"
|
1083 |
+
msgstr "body Hesabat"
|
1084 |
|
1085 |
#: includes/settings/tabs/wps-notifications.php:185
|
1086 |
msgid "Enter the contents of the report."
|
1087 |
+
msgstr "Hesabatın məzmununu daxil edin."
|
1088 |
|
1089 |
#: includes/settings/tabs/wps-notifications.php:187
|
1090 |
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
1092 |
|
1093 |
#: includes/settings/tabs/wps-notifications.php:188 wp-statistics.php:662
|
1094 |
msgid "User Online"
|
1095 |
+
msgstr "Online İstifadəçi"
|
1096 |
|
1097 |
#: includes/settings/tabs/wps-notifications.php:189
|
1098 |
msgid "Today Visitor"
|
1099 |
+
msgstr "Bugünkü Ziyarətçi"
|
1100 |
|
1101 |
#: includes/settings/tabs/wps-notifications.php:190
|
1102 |
msgid "Today Visit"
|
1103 |
+
msgstr "Bugünkü Ziyarət"
|
1104 |
|
1105 |
#: includes/settings/tabs/wps-notifications.php:191
|
1106 |
msgid "Yesterday Visitor"
|
1107 |
+
msgstr "Dünənki Ziyarətçi"
|
1108 |
|
1109 |
#: includes/settings/tabs/wps-notifications.php:192
|
1110 |
msgid "Yesterday Visit"
|
1111 |
+
msgstr "Dünənki Ziyarət"
|
1112 |
|
1113 |
#: includes/settings/tabs/wps-notifications.php:193
|
1114 |
msgid "Total Visitor"
|
1115 |
+
msgstr "Toplam Ziyarətçi"
|
1116 |
|
1117 |
#: includes/settings/tabs/wps-notifications.php:194
|
1118 |
msgid "Total Visit"
|
1119 |
+
msgstr "Toplam Ziyarət"
|
1120 |
|
1121 |
#: shortcode.php:175
|
1122 |
msgid "None"
|
1123 |
+
msgstr "heç biri"
|
1124 |
|
1125 |
#: includes/settings/wps-settings.php:108
|
1126 |
msgid "About"
|
1127 |
+
msgstr "Haqqında"
|
1128 |
|
1129 |
#: includes/settings/tabs/wps-overview-display.php:20
|
1130 |
msgid "Dashboard"
|
1131 |
+
msgstr "Əsas Lövhə"
|
1132 |
|
1133 |
#: includes/settings/tabs/wps-overview-display.php:24
|
1134 |
#: includes/settings/tabs/wps-overview-display.php:44
|
1135 |
#: includes/settings/tabs/wps-overview-display.php:64
|
1136 |
msgid "The following items are global to all users."
|
1137 |
+
msgstr "Aşağıdakı maddələr bütün istifadəçilər üçün keçərlidir."
|
1138 |
|
1139 |
#: includes/settings/tabs/wps-overview-display.php:29
|
1140 |
msgid "Disable dashboard widgets"
|
1141 |
+
msgstr "Əsas Lövhə modullarını deaktiv et"
|
1142 |
|
1143 |
#: includes/settings/tabs/wps-overview-display.php:35
|
1144 |
msgid "Disable the dashboard widgets."
|
1145 |
+
msgstr "Əsas Lövhə modullarını deaktiv et."
|
1146 |
|
1147 |
#: includes/settings/tabs/wps-overview-display.php:40
|
1148 |
msgid "Page/Post Editor"
|
1149 |
+
msgstr "Səhifə / Yazı Redaktoru"
|
1150 |
|
1151 |
#: includes/settings/tabs/wps-overview-display.php:49
|
1152 |
msgid "Disable post/page editor widget"
|
1153 |
+
msgstr "Yazı/səhifə redaktor modulunu deaktiv et"
|
1154 |
|
1155 |
#: includes/settings/tabs/wps-overview-display.php:55
|
1156 |
msgid "Disable the page/post editor widget."
|
1157 |
+
msgstr "Səhifə/yazı redaktor modulunu deaktiv et"
|
1158 |
|
1159 |
#: includes/functions/functions.php:440
|
1160 |
msgid "Google"
|
1161 |
+
msgstr "Google"
|
1162 |
|
1163 |
#: includes/settings/tabs/wps-overview-display.php:69
|
1164 |
msgid "Disable map"
|
1165 |
+
msgstr "Xəritən deaktiv et"
|
1166 |
|
1167 |
#: includes/settings/tabs/wps-overview-display.php:75
|
1168 |
msgid "Disable the map display"
|
1169 |
+
msgstr "Xəritə ekranını deaktiv et"
|
1170 |
|
1171 |
#: includes/settings/tabs/wps-removal.php:74
|
1172 |
msgid "WP Statisitcs Removal"
|
1194 |
|
1195 |
#: includes/settings/wps-settings.php:100
|
1196 |
msgid "General"
|
1197 |
+
msgstr "Ümumi"
|
1198 |
|
1199 |
#: includes/settings/wps-settings.php:101
|
1200 |
msgid "Notifications"
|
1201 |
+
msgstr "Bildirişlər"
|
1202 |
|
1203 |
#: includes/settings/wps-settings.php:102
|
1204 |
msgid "Dashboard/Overview"
|
1205 |
+
msgstr "Əsas Lövhə/Ümumi Baxış"
|
1206 |
|
1207 |
#: includes/settings/wps-settings.php:106
|
1208 |
msgid "Maintenance"
|
1237 |
|
1238 |
#: widget.php:14 wp-statistics.php:430 wp-statistics.php:510
|
1239 |
msgid "Statistics"
|
1240 |
+
msgstr "Statistika"
|
1241 |
|
1242 |
#: widget.php:15
|
1243 |
msgid "Show site stats in sidebar."
|
1365 |
|
1366 |
#: wp-statistics.php:452 wp-statistics.php:563
|
1367 |
msgid "Optimization"
|
1368 |
+
msgstr "Optimallaşdırma"
|
1369 |
|
1370 |
#: wp-statistics.php:458 wp-statistics.php:527
|
1371 |
msgid "Manual"
|
1372 |
+
msgstr "Təlimat"
|
1373 |
|
1374 |
#: wp-statistics.php:542
|
1375 |
msgid "Site"
|
1376 |
+
msgstr "Sayt"
|
1377 |
|
1378 |
#: wp-statistics.php:543
|
1379 |
msgid "Options"
|
1380 |
+
msgstr "Seçimlər"
|
1381 |
|
1382 |
#: wp-statistics.php:669
|
1383 |
msgid "Today visitor"
|
1384 |
+
msgstr "Bugünkü Ziyarətçi"
|
1385 |
|
1386 |
#: wp-statistics.php:675
|
1387 |
msgid "Today visit"
|
1388 |
+
msgstr "Bugünkü ziyarət"
|
1389 |
|
1390 |
#: wp-statistics.php:681
|
1391 |
msgid "Yesterday visitor"
|
1392 |
+
msgstr "Dünənki Ziyarətçi"
|
1393 |
|
1394 |
#: wp-statistics.php:693
|
1395 |
msgid "View Stats"
|
1396 |
+
msgstr "Statistikanı Göstər"
|
1397 |
|
1398 |
#: wp-statistics.php:717
|
1399 |
msgid "Download ODF file"
|
1400 |
+
msgstr "ODF faylını Endir"
|
1401 |
|
1402 |
#: wp-statistics.php:718
|
1403 |
msgid "Download HTML file"
|
1404 |
+
msgstr "HTML faylını Endir"
|
1405 |
|
1406 |
#: wp-statistics.php:722
|
1407 |
msgid "Manual file not found."
|
1408 |
+
msgstr "Təlimat faylı tapılmadı."
|
1409 |
|
1410 |
#: wp-statistics.php:801 wp-statistics.php:915 wp-statistics.php:951
|
1411 |
msgid "You do not have sufficient permissions to access this page."
|
1412 |
+
msgstr "Bu səhifəyə daxil olmaq üçün kifayət qədər icazəniz yoxdur."
|
1413 |
|
1414 |
#: wp-statistics.php:323
|
1415 |
msgid "WP Statistics %s installed on"
|
1465 |
|
1466 |
#: dashboard.php:57 includes/log/widgets/browsers.php:41
|
1467 |
msgid "Top 10 Browsers"
|
1468 |
+
msgstr "Top 10 brauzerlər"
|
1469 |
|
1470 |
#: dashboard.php:58 wp-statistics.php:496
|
1471 |
msgid "Top 10 Countries"
|
1472 |
+
msgstr "Top 10 Ölkələr"
|
1473 |
|
1474 |
#: dashboard.php:59
|
1475 |
msgid "Today's Visitor Map"
|
1476 |
+
msgstr "Bu günkü Ziyarətçi Xəritəsi"
|
1477 |
|
1478 |
#: dashboard.php:60 editor.php:46 includes/log/hit-statistics.php:8
|
1479 |
#: wp-statistics.php:471
|
1480 |
msgid "Hit Statistics"
|
1481 |
+
msgstr "Hit Statistika"
|
1482 |
|
1483 |
#: dashboard.php:61 wp-statistics.php:486
|
1484 |
msgid "Top 10 Pages"
|
1833 |
|
1834 |
#: includes/log/widgets/browsers.php:34
|
1835 |
msgid "Other"
|
1836 |
+
msgstr "Digər"
|
1837 |
|
1838 |
#: wp-statistics.php:481
|
1839 |
msgid "Today Visitors Map"
|
1840 |
+
msgstr "Bugünkü Ziyarətçi Xəritəsi"
|
1841 |
|
1842 |
#: includes/log/widgets/referring.php:36
|
1843 |
msgid "Address"
|
1844 |
+
msgstr "Ünvan"
|
1845 |
|
1846 |
#: includes/log/widgets/quickstats.php:12
|
1847 |
msgid "User(s) Online"
|
1848 |
+
msgstr "Online İstifadəçi(lər)"
|
1849 |
|
1850 |
#: includes/log/widgets/quickstats.php:28
|
1851 |
#: includes/log/widgets/quickstats.php:80 includes/log/widgets/summary.php:28
|
1852 |
#: includes/log/widgets/summary.php:80
|
1853 |
msgid "Today"
|
1854 |
+
msgstr "Bugün"
|
1855 |
|
1856 |
#: includes/log/widgets/quickstats.php:34
|
1857 |
#: includes/log/widgets/quickstats.php:81 includes/log/widgets/summary.php:34
|
1858 |
#: includes/log/widgets/summary.php:81
|
1859 |
msgid "Yesterday"
|
1860 |
+
msgstr "Dünən"
|
1861 |
|
1862 |
#: includes/log/widgets/quickstats.php:99 includes/log/widgets/summary.php:99
|
1863 |
msgid "Daily Total"
|
1864 |
+
msgstr "Günlük Toplam"
|
1865 |
|
1866 |
#: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
|
1867 |
msgid "Current Time and Date"
|
1868 |
+
msgstr "Cari Vaxt və Tarix"
|
1869 |
|
1870 |
#: includes/log/widgets/quickstats.php:118 includes/log/widgets/summary.php:118
|
1871 |
msgid "(Adjustment)"
|
1872 |
+
msgstr "(Düzəliş)"
|
1873 |
|
1874 |
#: includes/log/widgets/quickstats.php:122 includes/log/widgets/summary.php:122
|
1875 |
msgid "Date: %s"
|
1876 |
+
msgstr "Tarix: %s"
|
1877 |
|
1878 |
#: includes/log/widgets/quickstats.php:126 includes/log/widgets/summary.php:126
|
1879 |
msgid "Time: %s"
|
1880 |
+
msgstr "Vaxt: %s"
|
1881 |
|
1882 |
#: includes/log/authors.php:257 includes/log/categories.php:245
|
1883 |
#: includes/log/tags.php:260 includes/log/widgets/top.visitors.php:12
|
1884 |
#: includes/settings/tabs/wps-maintenance.php:80 wp-statistics.php:359
|
1885 |
#: wp-statistics.php:438 wp-statistics.php:555
|
1886 |
msgid "Hits"
|
1887 |
+
msgstr "Hitlər"
|
1888 |
|
1889 |
#: includes/log/widgets/top.visitors.php:15
|
1890 |
msgid "IP"
|
1891 |
+
msgstr "IP"
|
1892 |
|
1893 |
#: includes/log/widgets/top.visitors.php:17
|
1894 |
msgid "Agent"
|
1895 |
+
msgstr "Agent"
|
1896 |
|
1897 |
#: includes/log/widgets/top.visitors.php:19
|
1898 |
#: includes/optimization/tabs/wps-optimization-resources.php:302
|
1899 |
msgid "Version"
|
1900 |
+
msgstr "Versiya"
|
1901 |
|
1902 |
#: ajax.php:41 ajax.php:71 ajax.php:129 ajax.php:154 ajax.php:184 ajax.php:296
|
1903 |
#: includes/optimization/wps-optimization.php:6
|
1904 |
msgid "Access denied!"
|
1905 |
+
msgstr "Giriş qadağandır!"
|
1906 |
|
1907 |
#: ajax.php:31
|
1908 |
msgid "%s agent data deleted successfully."
|
1910 |
|
1911 |
#: ajax.php:34
|
1912 |
msgid "No agent data found to remove!"
|
1913 |
+
msgstr "Silmək üçün agent məlumatı tapılmadı!"
|
1914 |
|
1915 |
#: ajax.php:38 ajax.php:68 ajax.php:120 ajax.php:126
|
1916 |
msgid "Please select the desired items."
|
1922 |
|
1923 |
#: ajax.php:65
|
1924 |
msgid "No platform data found to remove!"
|
1925 |
+
msgstr "Silmək üçün heç bir platforma çəlumatı tapılmadı!"
|
1926 |
|
1927 |
#: includes/functions/functions.php:1007
|
1928 |
msgid "%s table data deleted successfully."
|
1929 |
+
msgstr "%s dənə cədvəl məlumatı uğurla silindi."
|
1930 |
|
1931 |
#: includes/functions/functions.php:1011
|
1932 |
msgid "Error, %s not emptied!"
|
1934 |
|
1935 |
#: includes/optimization/tabs/wps-optimization-database.php:5
|
1936 |
msgid "Database Setup"
|
1937 |
+
msgstr "Baza Ayarları"
|
1938 |
|
1939 |
#: includes/optimization/tabs/wps-optimization-database.php:10
|
1940 |
msgid "Re-run Install"
|
1941 |
+
msgstr "Quraşdırmanı yenidən çalışdır"
|
1942 |
|
1943 |
#: includes/optimization/tabs/wps-optimization-database.php:14
|
1944 |
msgid "Install Now!"
|
1945 |
+
msgstr "İndi Quraşdır!"
|
1946 |
|
1947 |
#: includes/optimization/tabs/wps-optimization-database.php:15
|
1948 |
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1950 |
|
1951 |
#: includes/optimization/tabs/wps-optimization-database.php:20
|
1952 |
msgid "Database Index"
|
1953 |
+
msgstr "Baza indeksi"
|
1954 |
|
1955 |
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1956 |
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1957 |
#: wp-statistics.php:436 wp-statistics.php:553
|
1958 |
msgid "Countries"
|
1959 |
+
msgstr "Ölkələr"
|
1960 |
|
1961 |
#: includes/optimization/tabs/wps-optimization-database.php:42
|
1962 |
#: includes/optimization/tabs/wps-optimization-database.php:74
|
1963 |
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1964 |
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1965 |
msgid "Update Now!"
|
1966 |
+
msgstr "İndi Yenilə!"
|
1967 |
|
1968 |
#: includes/optimization/tabs/wps-optimization-database.php:43
|
1969 |
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
2001 |
#: includes/settings/tabs/wps-notifications.php:134
|
2002 |
#: includes/settings/tabs/wps-notifications.php:164
|
2003 |
msgid "Please select"
|
2004 |
+
msgstr "Zəhmət olmasa seçin"
|
2005 |
|
2006 |
#: includes/optimization/tabs/wps-optimization-export.php:26
|
2007 |
msgid "Select the table for the output file."
|
2025 |
|
2026 |
#: includes/optimization/tabs/wps-optimization-export.php:54
|
2027 |
msgid "Start Now!"
|
2028 |
+
msgstr "İndi Başla!"
|
2029 |
|
2030 |
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
2031 |
msgid "Historical Values"
|
2032 |
+
msgstr "Tarixi Dəyərlər"
|
2033 |
|
2034 |
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
2035 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
languages/wp_statistics-bg_BG.mo
CHANGED
Binary file
|
languages/wp_statistics-bg_BG.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-bn_BD.mo
CHANGED
Binary file
|
languages/wp_statistics-bn_BD.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: bn\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: bn\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-bs.mo
CHANGED
Binary file
|
languages/wp_statistics-bs.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: bs_BA\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: bs_BA\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-ckb.mo
CHANGED
Binary file
|
languages/wp_statistics-ckb.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: ku_IQ\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: ku_IQ\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-cs_CZ.mo
CHANGED
Binary file
|
languages/wp_statistics-cs_CZ.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: cs_CZ\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: cs_CZ\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-da_DK.mo
CHANGED
Binary file
|
languages/wp_statistics-da_DK.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: da_DK\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: da_DK\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-de_DE.mo
CHANGED
Binary file
|
languages/wp_statistics-de_DE.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: de\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: de\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-de_de_formal.mo
CHANGED
Binary file
|
languages/wp_statistics-de_de_formal.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: de\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: de\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-eo.mo
CHANGED
Binary file
|
languages/wp_statistics-eo.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: eo\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: eo\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-es_ES.mo
CHANGED
Binary file
|
languages/wp_statistics-es_ES.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: es\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: es\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: fa\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: fa\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-fr_FR.mo
CHANGED
Binary file
|
languages/wp_statistics-fr_FR.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: fr\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: fr\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-hi.mo
CHANGED
Binary file
|
languages/wp_statistics-hi.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: hi_IN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: hi_IN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-hu_HU.mo
CHANGED
Binary file
|
languages/wp_statistics-hu_HU.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: hu\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: hu\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-id_ID.mo
CHANGED
Binary file
|
languages/wp_statistics-id_ID.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: id\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: id\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-it_IT.mo
CHANGED
Binary file
|
languages/wp_statistics-it_IT.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: it\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: it\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-ja.mo
CHANGED
Binary file
|
languages/wp_statistics-ja.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: ja_JP\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: ja_JP\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-nl_NL.mo
CHANGED
Binary file
|
languages/wp_statistics-nl_NL.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-pl_PL.mo
CHANGED
Binary file
|
languages/wp_statistics-pl_PL.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
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 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: pl\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
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 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: pl\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-pt_BR.mo
CHANGED
Binary file
|
languages/wp_statistics-pt_BR.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: pt_BR\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: pt_BR\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-ro_RO.mo
CHANGED
Binary file
|
languages/wp_statistics-ro_RO.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
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==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: ro\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
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==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: ro\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-ru_RU.mo
CHANGED
Binary file
|
languages/wp_statistics-ru_RU.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: ru\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: ru\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-sk_SK.mo
CHANGED
Binary file
|
languages/wp_statistics-sk_SK.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: sk\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: sk\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-sr_RS.mo
CHANGED
Binary file
|
languages/wp_statistics-sr_RS.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: sr_RS\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: sr_RS\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-sv_SE.mo
CHANGED
Binary file
|
languages/wp_statistics-sv_SE.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: sv_SE\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: sv_SE\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-tr_TR.mo
CHANGED
Binary file
|
languages/wp_statistics-tr_TR.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: tr\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: tr\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-uk.mo
CHANGED
Binary file
|
languages/wp_statistics-uk.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: uk_UA\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: uk_UA\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-vi.mo
CHANGED
Binary file
|
languages/wp_statistics-vi.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: vi_VN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: vi_VN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-zh_CN.mo
CHANGED
Binary file
|
languages/wp_statistics-zh_CN.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: zh_CN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: zh_CN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
languages/wp_statistics-zh_TW.mo
CHANGED
Binary file
|
languages/wp_statistics-zh_TW.po
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/2.3.
|
11 |
"Language: zh_TW\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.3.1\n"
|
11 |
"Language: zh_TW\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wp-statistics.com/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 12.0
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
@@ -287,6 +287,14 @@ You may also downgrade to WP Statistics 10.3 as a temporary measure, but no new
|
|
287 |
PHP 5.4 is now required for version 11.0 and above!
|
288 |
|
289 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
= 12.0.0 =
|
291 |
* Release Date: February 18, 2017
|
292 |
* Added: Categories, tags and authors stats pages.
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 12.0.1
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
287 |
PHP 5.4 is now required for version 11.0 and above!
|
288 |
|
289 |
== Changelog ==
|
290 |
+
= 12.0.1 =
|
291 |
+
* Release Date: March 24, 2017
|
292 |
+
* Added: Check for BCMath or GMP Math extensions to support newer GeoIP database files.
|
293 |
+
* Fixed: Robots list not being updated on upgrades properly in some cases.
|
294 |
+
* Fixed: wp_statistics_get_uri() to handle cases where site and home uri's are different.
|
295 |
+
* Fixed: wp_statistics_get_uri() to validate what is being removed to make sure we don't remove the wrong things.
|
296 |
+
* Fixed: Display of individual referring site stats.
|
297 |
+
|
298 |
= 12.0.0 =
|
299 |
* Release Date: February 18, 2017
|
300 |
* Added: Categories, tags and authors stats pages.
|
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: 12.0
|
7 |
* Author: Greg Ross & Mostafa Soufi
|
8 |
* Author URI: http://wp-statistics.com/
|
9 |
* Text Domain: wp_statistics
|
@@ -12,7 +12,7 @@
|
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
-
define('WP_STATISTICS_VERSION', '12.0');
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.4.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|
3 |
* Plugin Name: WP Statistics
|
4 |
* Plugin URI: http://wp-statistics.com/
|
5 |
* Description: Complete statistics for your WordPress site.
|
6 |
+
* Version: 12.0.1
|
7 |
* Author: Greg Ross & Mostafa Soufi
|
8 |
* Author URI: http://wp-statistics.com/
|
9 |
* Text Domain: wp_statistics
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
+
define('WP_STATISTICS_VERSION', '12.0.1');
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.4.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|