Version Description
BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. This release creates a new table for search engine/words for performance improvements, however you must convert your data to the new format via the Statistics->Optimization->Database tab.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 9.5.3 |
Comparing to | |
See all releases |
Code changes from version 9.5.2 to 9.5.3
- includes/classes/hits.class.php +2 -1
- includes/functions/export.php +4 -1
- includes/optimization/tabs/wps-optimization-export.php +1 -0
- languages/default.mo +0 -0
- languages/default.po +56 -63
- languages/wp-statistics-da.po +54 -57
- languages/wp_statistics-ar.mo +0 -0
- languages/wp_statistics-ar.po +54 -57
- languages/wp_statistics-bg_BG.mo +0 -0
- languages/wp_statistics-bg_BG.po +54 -57
- languages/wp_statistics-bn_BD.po +54 -57
- languages/wp_statistics-ckb.mo +0 -0
- languages/wp_statistics-ckb.po +54 -57
- languages/wp_statistics-cs.mo +0 -0
- languages/wp_statistics-cs.po +54 -57
- languages/wp_statistics-de_DE.mo +0 -0
- languages/wp_statistics-de_DE.po +54 -57
- languages/wp_statistics-eo.po +54 -57
- languages/wp_statistics-es_ES.mo +0 -0
- languages/wp_statistics-es_ES.po +58 -61
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +54 -57
- languages/wp_statistics-fr_FR.mo +0 -0
- languages/wp_statistics-fr_FR.po +54 -57
- languages/wp_statistics-hu_HU.mo +0 -0
- languages/wp_statistics-hu_HU.po +54 -57
- languages/wp_statistics-id_ID.mo +0 -0
- languages/wp_statistics-id_ID.po +54 -57
- languages/wp_statistics-it_IT.mo +0 -0
- languages/wp_statistics-it_IT.po +54 -57
- languages/wp_statistics-ja.mo +0 -0
- languages/wp_statistics-ja.po +54 -57
- languages/wp_statistics-nl_NL.mo +0 -0
- languages/wp_statistics-nl_NL.po +54 -57
- languages/wp_statistics-pl_PL.mo +0 -0
- languages/wp_statistics-pl_PL.po +54 -57
- languages/wp_statistics-pt_BR.mo +0 -0
- languages/wp_statistics-pt_BR.po +54 -57
- languages/wp_statistics-ro_RO.mo +0 -0
- languages/wp_statistics-ro_RO.po +54 -57
- languages/wp_statistics-ru_RU.mo +0 -0
- languages/wp_statistics-ru_RU.po +54 -57
- languages/wp_statistics-ru_UA.po +54 -57
- languages/wp_statistics-sk_SK.mo +0 -0
- languages/wp_statistics-sk_SK.po +54 -57
- languages/wp_statistics-sr_RS.mo +0 -0
- languages/wp_statistics-sr_RS.po +54 -57
- languages/wp_statistics-sv_SE.mo +0 -0
- languages/wp_statistics-sv_SE.po +54 -57
- languages/wp_statistics-tr_TR.mo +0 -0
- languages/wp_statistics-tr_TR.po +54 -57
- languages/wp_statistics-uk.mo +0 -0
- languages/wp_statistics-uk.po +54 -57
- languages/wp_statistics-vi.mo +0 -0
- languages/wp_statistics-vi.po +54 -57
- languages/wp_statistics-zh_CN.mo +0 -0
- languages/wp_statistics-zh_CN.po +54 -57
- languages/wp_statistics-zh_TW.mo +0 -0
- languages/wp_statistics-zh_TW.po +54 -57
- manual/WP Statistics Admin Manual.html +4 -4
- manual/WP Statistics Admin Manual.odt +0 -0
- readme.txt +21 -1
- widget.php +2 -0
- wp-statistics.php +21 -3
- wps-install.php +44 -0
includes/classes/hits.class.php
CHANGED
@@ -87,7 +87,8 @@
|
|
87 |
$bc->doAutoUpdate = false; // We don't want to auto update.
|
88 |
try {
|
89 |
$current_browser = $bc->getBrowser();
|
90 |
-
|
|
|
91 |
$crawler = $current_browser->Crawler;
|
92 |
}
|
93 |
else {
|
87 |
$bc->doAutoUpdate = false; // We don't want to auto update.
|
88 |
try {
|
89 |
$current_browser = $bc->getBrowser();
|
90 |
+
// Make sure we got an object back and it has the Crawler property before accessing it.
|
91 |
+
if( is_object( $current_browser ) && property_exists( $current_browser, 'Crawler') ) {
|
92 |
$crawler = $current_browser->Crawler;
|
93 |
}
|
94 |
else {
|
includes/functions/export.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
$headers = $_POST['export-headers'];
|
11 |
|
12 |
// Validate the table name the user passed to us.
|
13 |
-
if( !( $table == "useronline" || $table == "visit" || $table == "visitor" || $table == "exclusions" || $table == "pages" ) ) { $table = FALSE; }
|
14 |
|
15 |
// Validate the file type the user passed to us.
|
16 |
if( !( $type == "excel" || $type == "xml" || $type == "csv" || $type == "tsv" ) ) { $table = FALSE; }
|
@@ -49,6 +49,9 @@
|
|
49 |
$more_results = true;
|
50 |
$result = $wpdb->get_results($query, ARRAY_A);
|
51 |
|
|
|
|
|
|
|
52 |
if( $headers ) {
|
53 |
foreach( $result[0] as $key => $col ) { $columns[] = $key; }
|
54 |
$exporter->addRow($columns);
|
10 |
$headers = $_POST['export-headers'];
|
11 |
|
12 |
// Validate the table name the user passed to us.
|
13 |
+
if( !( $table == "useronline" || $table == "visit" || $table == "visitor" || $table == "exclusions" || $table == "pages" || $table == "search" ) ) { $table = FALSE; }
|
14 |
|
15 |
// Validate the file type the user passed to us.
|
16 |
if( !( $type == "excel" || $type == "xml" || $type == "csv" || $type == "tsv" ) ) { $table = FALSE; }
|
49 |
$more_results = true;
|
50 |
$result = $wpdb->get_results($query, ARRAY_A);
|
51 |
|
52 |
+
// If we didn't get any rows, don't output anything.
|
53 |
+
if( count( $result < 1 ) ) { echo "No data in table!"; exit; }
|
54 |
+
|
55 |
if( $headers ) {
|
56 |
foreach( $result[0] as $key => $col ) { $columns[] = $key; }
|
57 |
$exporter->addRow($columns);
|
includes/optimization/tabs/wps-optimization-export.php
CHANGED
@@ -21,6 +21,7 @@
|
|
21 |
<option value="visitor"><?php echo $wpdb->prefix . 'statistics_visitor'; ?></option>
|
22 |
<option value="exclusions"><?php echo $wpdb->prefix . 'statistics_exclusions'; ?></option>
|
23 |
<option value="pages"><?php echo $wpdb->prefix . 'statistics_pages'; ?></option>
|
|
|
24 |
</select>
|
25 |
<p class="description"><?php _e('Select the table for the output file.', 'wp_statistics'); ?></p>
|
26 |
</td>
|
21 |
<option value="visitor"><?php echo $wpdb->prefix . 'statistics_visitor'; ?></option>
|
22 |
<option value="exclusions"><?php echo $wpdb->prefix . 'statistics_exclusions'; ?></option>
|
23 |
<option value="pages"><?php echo $wpdb->prefix . 'statistics_pages'; ?></option>
|
24 |
+
<option value="search"><?php echo $wpdb->prefix . 'statistics_search'; ?></option>
|
25 |
</select>
|
26 |
<p class="description"><?php _e('Select the table for the output file.', 'wp_statistics'); ?></p>
|
27 |
</td>
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -2,15 +2,16 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP Statistics 9.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-statistics\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date: 2015-
|
12 |
-
"Last-Translator:
|
13 |
-
"Language-Team:
|
|
|
14 |
|
15 |
#: ajax.php:31
|
16 |
msgid "%s agent data deleted successfully."
|
@@ -73,8 +74,8 @@ msgstr ""
|
|
73 |
msgid "Recent Visitors"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
77 |
-
#: includes/log/top-referring.php:
|
78 |
#: includes/settings/tabs/wps-overview-display.php:26
|
79 |
msgid "Top Referring Sites"
|
80 |
msgstr ""
|
@@ -247,11 +248,11 @@ msgstr ""
|
|
247 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
248 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
249 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
250 |
-
#: includes/log/top-referring.php:
|
251 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
252 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
253 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
254 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
255 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
256 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
257 |
msgid "Click to toggle"
|
@@ -381,8 +382,7 @@ msgstr ""
|
|
381 |
msgid "Hits Statistics Summary"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: includes/log/exclusions.php:197
|
385 |
-
#: includes/settings/tabs/wps-exclusions.php:46
|
386 |
#: includes/settings/wps-settings.php:104 wp-statistics.php:352
|
387 |
#: wp-statistics.php:428
|
388 |
msgid "Exclusions"
|
@@ -419,7 +419,7 @@ msgid "Visitor"
|
|
419 |
msgstr ""
|
420 |
|
421 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
422 |
-
#: includes/log/top-referring.php:
|
423 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
424 |
msgid "All"
|
425 |
msgstr ""
|
@@ -436,7 +436,7 @@ msgid "#hash#"
|
|
436 |
msgstr ""
|
437 |
|
438 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
439 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
440 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
441 |
#: includes/settings/tabs/wps-overview-display.php:33
|
442 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -445,13 +445,13 @@ msgstr ""
|
|
445 |
|
446 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
447 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
448 |
-
#: includes/log/top-referring.php:
|
449 |
msgid "Page"
|
450 |
msgstr ""
|
451 |
|
452 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
453 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
454 |
-
#: includes/log/top-referring.php:
|
455 |
msgid "From"
|
456 |
msgstr ""
|
457 |
|
@@ -573,7 +573,7 @@ msgstr ""
|
|
573 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
574 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
575 |
#: includes/settings/tabs/wps-general.php:122
|
576 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
577 |
msgid "Visits"
|
578 |
msgstr ""
|
579 |
|
@@ -581,11 +581,11 @@ msgstr ""
|
|
581 |
msgid "To be added soon"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: includes/log/top-referring.php:
|
585 |
msgid "Referring sites from"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: includes/log/top-referring.php:
|
589 |
msgid "References"
|
590 |
msgstr ""
|
591 |
|
@@ -620,7 +620,7 @@ msgstr ""
|
|
620 |
|
621 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
622 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
623 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
624 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
625 |
#: includes/log/widgets/words.php:11
|
626 |
msgid "More"
|
@@ -638,7 +638,7 @@ msgstr ""
|
|
638 |
msgid "Page Trending Stats"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: includes/log/widgets/referring.php:
|
642 |
msgid "Address"
|
643 |
msgstr ""
|
644 |
|
@@ -826,7 +826,7 @@ msgid ""
|
|
826 |
msgstr ""
|
827 |
|
828 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
829 |
-
#: includes/optimization/wps-optimization.php:
|
830 |
msgid "Export"
|
831 |
msgstr ""
|
832 |
|
@@ -880,7 +880,7 @@ msgstr ""
|
|
880 |
|
881 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
882 |
#: includes/settings/tabs/wps-general.php:138
|
883 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
884 |
#: wp-statistics.php:360 wp-statistics.php:436
|
885 |
msgid "Visitors"
|
886 |
msgstr ""
|
@@ -1227,27 +1227,27 @@ msgstr ""
|
|
1227 |
msgid "Install routine complete."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: includes/optimization/wps-optimization.php:
|
1231 |
msgid "Search table conversion complete, %d rows added."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: includes/optimization/wps-optimization.php:
|
1235 |
msgid "Resources/Information"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/optimization/wps-optimization.php:
|
1239 |
msgid "Purging"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/optimization/wps-optimization.php:
|
1243 |
msgid "Database"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/optimization/wps-optimization.php:
|
1247 |
msgid "Updates"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/optimization/wps-optimization.php:
|
1251 |
msgid "Historical"
|
1252 |
msgstr ""
|
1253 |
|
@@ -1920,7 +1920,7 @@ msgid ""
|
|
1920 |
"addresses in the future to recover location information if this is enabled."
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
1924 |
msgid "Users Online"
|
1925 |
msgstr ""
|
1926 |
|
@@ -2277,7 +2277,7 @@ msgid "Total Visit"
|
|
2277 |
msgstr ""
|
2278 |
|
2279 |
#: includes/settings/tabs/wps-overview-display.php:23
|
2280 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
2281 |
msgid "None"
|
2282 |
msgstr ""
|
2283 |
|
@@ -2492,89 +2492,89 @@ msgstr ""
|
|
2492 |
msgid "Once Every 4 Weeks"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: shortcode.php:
|
2496 |
msgid "Statistic"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: shortcode.php:
|
2500 |
msgid "Select the statistic you wish to display."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: shortcode.php:
|
2504 |
msgid "Page Visits"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: shortcode.php:
|
2508 |
msgid "Searches"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: shortcode.php:
|
2512 |
msgid "Post Count"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: shortcode.php:
|
2516 |
msgid "Page Count"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: shortcode.php:
|
2520 |
msgid "Comment Count"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: shortcode.php:
|
2524 |
msgid "Spam Count"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: shortcode.php:
|
2528 |
msgid "User Count"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: shortcode.php:
|
2532 |
msgid "Post Average"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: shortcode.php:
|
2536 |
msgid "Comment Average"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: shortcode.php:
|
2540 |
msgid "User Average"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: shortcode.php:
|
2544 |
msgid "Last Post Date"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: shortcode.php:
|
2548 |
msgid "Time Frame"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: shortcode.php:
|
2552 |
msgid ""
|
2553 |
"The time frame to get the statistic for, strtotime() (http://php.net/manual/"
|
2554 |
"en/datetime.formats.php) will be used to calculate it."
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: shortcode.php:
|
2558 |
msgid "Search Provider"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: shortcode.php:
|
2562 |
msgid "The search provider to get statistics on."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: shortcode.php:
|
2566 |
msgid "Number Format"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: shortcode.php:
|
2570 |
msgid "The format to display numbers in: i18n, english, none."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: shortcode.php:
|
2574 |
msgid "English"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: shortcode.php:
|
2578 |
msgid "International"
|
2579 |
msgstr ""
|
2580 |
|
@@ -2658,13 +2658,11 @@ msgstr ""
|
|
2658 |
msgid "Select type of search engine"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
|
2662 |
#. Plugin Name of the plugin/theme
|
2663 |
#: wp-statistics.php:37
|
2664 |
msgid "WP Statistics"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
|
2668 |
#. Description of the plugin/theme
|
2669 |
#: wp-statistics.php:38
|
2670 |
msgid "Complete statistics for your WordPress site."
|
@@ -2695,6 +2693,7 @@ msgid ""
|
|
2695 |
msgstr ""
|
2696 |
|
2697 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
2698 |
msgid "setting page"
|
2699 |
msgstr ""
|
2700 |
|
@@ -2714,10 +2713,6 @@ msgid ""
|
|
2714 |
"GeoIP collection is not active, please go to %s and enable this feature."
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: wp-statistics.php:146
|
2718 |
-
msgid "Setting page > GeoIP"
|
2719 |
-
msgstr ""
|
2720 |
-
|
2721 |
#: wp-statistics.php:241
|
2722 |
msgid "WP Statistics %s installed on"
|
2723 |
msgstr ""
|
@@ -2810,14 +2805,14 @@ msgstr ""
|
|
2810 |
msgid "Manual file not found."
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
2814 |
msgid "You do not have sufficient permissions to access this page."
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: wp-statistics.php:
|
2818 |
msgid ""
|
2819 |
-
"
|
2820 |
-
"routine %s
|
2821 |
msgstr ""
|
2822 |
|
2823 |
#: wps-updates.php:29
|
@@ -2874,9 +2869,7 @@ msgstr ""
|
|
2874 |
msgid "Browscap.ini update on"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
|
2878 |
#. Plugin URI of the plugin/theme
|
2879 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
|
2880 |
#. Author URI of the plugin/theme
|
2881 |
msgid "http://wp-statistics.com/"
|
2882 |
msgstr ""
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP Statistics 9.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-statistics\n"
|
7 |
+
"POT-Creation-Date: 2015-08-14 13:53:04+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-08-14 16:27-0400\n"
|
12 |
+
"Last-Translator: \n"
|
13 |
+
"Language-Team: \n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
|
16 |
#: ajax.php:31
|
17 |
msgid "%s agent data deleted successfully."
|
74 |
msgid "Recent Visitors"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
78 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
79 |
#: includes/settings/tabs/wps-overview-display.php:26
|
80 |
msgid "Top Referring Sites"
|
81 |
msgstr ""
|
248 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
249 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
250 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
251 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
252 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
253 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
254 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
255 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
256 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
257 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
258 |
msgid "Click to toggle"
|
382 |
msgid "Hits Statistics Summary"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
|
|
|
386 |
#: includes/settings/wps-settings.php:104 wp-statistics.php:352
|
387 |
#: wp-statistics.php:428
|
388 |
msgid "Exclusions"
|
419 |
msgstr ""
|
420 |
|
421 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
422 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
423 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
424 |
msgid "All"
|
425 |
msgstr ""
|
436 |
msgstr ""
|
437 |
|
438 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
439 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
440 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
441 |
#: includes/settings/tabs/wps-overview-display.php:33
|
442 |
#: includes/settings/tabs/wps-overview-display.php:113
|
445 |
|
446 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
447 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
448 |
+
#: includes/log/top-referring.php:151
|
449 |
msgid "Page"
|
450 |
msgstr ""
|
451 |
|
452 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
453 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
454 |
+
#: includes/log/top-referring.php:151
|
455 |
msgid "From"
|
456 |
msgstr ""
|
457 |
|
573 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
574 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
575 |
#: includes/settings/tabs/wps-general.php:122
|
576 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
577 |
msgid "Visits"
|
578 |
msgstr ""
|
579 |
|
581 |
msgid "To be added soon"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/log/top-referring.php:77
|
585 |
msgid "Referring sites from"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
589 |
msgid "References"
|
590 |
msgstr ""
|
591 |
|
620 |
|
621 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
622 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
623 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
624 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
625 |
#: includes/log/widgets/words.php:11
|
626 |
msgid "More"
|
638 |
msgid "Page Trending Stats"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: includes/log/widgets/referring.php:60
|
642 |
msgid "Address"
|
643 |
msgstr ""
|
644 |
|
826 |
msgstr ""
|
827 |
|
828 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
829 |
+
#: includes/optimization/wps-optimization.php:215
|
830 |
msgid "Export"
|
831 |
msgstr ""
|
832 |
|
880 |
|
881 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
882 |
#: includes/settings/tabs/wps-general.php:138
|
883 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
884 |
#: wp-statistics.php:360 wp-statistics.php:436
|
885 |
msgid "Visitors"
|
886 |
msgstr ""
|
1227 |
msgid "Install routine complete."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: includes/optimization/wps-optimization.php:176
|
1231 |
msgid "Search table conversion complete, %d rows added."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: includes/optimization/wps-optimization.php:214
|
1235 |
msgid "Resources/Information"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/optimization/wps-optimization.php:216
|
1239 |
msgid "Purging"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/optimization/wps-optimization.php:217
|
1243 |
msgid "Database"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/optimization/wps-optimization.php:218
|
1247 |
msgid "Updates"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: includes/optimization/wps-optimization.php:219
|
1251 |
msgid "Historical"
|
1252 |
msgstr ""
|
1253 |
|
1920 |
"addresses in the future to recover location information if this is enabled."
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
1924 |
msgid "Users Online"
|
1925 |
msgstr ""
|
1926 |
|
2277 |
msgstr ""
|
2278 |
|
2279 |
#: includes/settings/tabs/wps-overview-display.php:23
|
2280 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
2281 |
msgid "None"
|
2282 |
msgstr ""
|
2283 |
|
2492 |
msgid "Once Every 4 Weeks"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: shortcode.php:130
|
2496 |
msgid "Statistic"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: shortcode.php:133
|
2500 |
msgid "Select the statistic you wish to display."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: shortcode.php:139
|
2504 |
msgid "Page Visits"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
2508 |
msgid "Searches"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: shortcode.php:141
|
2512 |
msgid "Post Count"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: shortcode.php:142
|
2516 |
msgid "Page Count"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: shortcode.php:143
|
2520 |
msgid "Comment Count"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: shortcode.php:144
|
2524 |
msgid "Spam Count"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: shortcode.php:145
|
2528 |
msgid "User Count"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: shortcode.php:146
|
2532 |
msgid "Post Average"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: shortcode.php:147
|
2536 |
msgid "Comment Average"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: shortcode.php:148
|
2540 |
msgid "User Average"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
2544 |
msgid "Last Post Date"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: shortcode.php:153
|
2548 |
msgid "Time Frame"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: shortcode.php:156
|
2552 |
msgid ""
|
2553 |
"The time frame to get the statistic for, strtotime() (http://php.net/manual/"
|
2554 |
"en/datetime.formats.php) will be used to calculate it."
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: shortcode.php:160
|
2558 |
msgid "Search Provider"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: shortcode.php:163
|
2562 |
msgid "The search provider to get statistics on."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: shortcode.php:167
|
2566 |
msgid "Number Format"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: shortcode.php:170
|
2570 |
msgid "The format to display numbers in: i18n, english, none."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: shortcode.php:174
|
2574 |
msgid "English"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: shortcode.php:175
|
2578 |
msgid "International"
|
2579 |
msgstr ""
|
2580 |
|
2658 |
msgid "Select type of search engine"
|
2659 |
msgstr ""
|
2660 |
|
|
|
2661 |
#. Plugin Name of the plugin/theme
|
2662 |
#: wp-statistics.php:37
|
2663 |
msgid "WP Statistics"
|
2664 |
msgstr ""
|
2665 |
|
|
|
2666 |
#. Description of the plugin/theme
|
2667 |
#: wp-statistics.php:38
|
2668 |
msgid "Complete statistics for your WordPress site."
|
2693 |
msgstr ""
|
2694 |
|
2695 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
2696 |
+
#: wp-statistics.php:146
|
2697 |
msgid "setting page"
|
2698 |
msgstr ""
|
2699 |
|
2713 |
"GeoIP collection is not active, please go to %s and enable this feature."
|
2714 |
msgstr ""
|
2715 |
|
|
|
|
|
|
|
|
|
2716 |
#: wp-statistics.php:241
|
2717 |
msgid "WP Statistics %s installed on"
|
2718 |
msgstr ""
|
2805 |
msgid "Manual file not found."
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
2809 |
msgid "You do not have sufficient permissions to access this page."
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: wp-statistics.php:690
|
2813 |
msgid ""
|
2814 |
+
"The following plugin table(s) do not exist in the database, please re-run "
|
2815 |
+
"the %s install routine %s: "
|
2816 |
msgstr ""
|
2817 |
|
2818 |
#: wps-updates.php:29
|
2869 |
msgid "Browscap.ini update on"
|
2870 |
msgstr ""
|
2871 |
|
|
|
2872 |
#. Plugin URI of the plugin/theme
|
|
|
2873 |
#. Author URI of the plugin/theme
|
2874 |
msgid "http://wp-statistics.com/"
|
2875 |
msgstr ""
|
languages/wp-statistics-da.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr ""
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr ""
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr ""
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr ""
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr ""
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr ""
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr ""
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr ""
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr ""
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr ""
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr ""
|
@@ -1411,11 +1408,11 @@ msgstr ""
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr ""
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr ""
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr ""
|
@@ -1646,7 +1643,7 @@ msgstr ""
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr ""
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr ""
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr ""
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr ""
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr ""
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr ""
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr ""
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr ""
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr ""
|
@@ -2211,23 +2208,23 @@ msgstr ""
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr ""
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr ""
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr ""
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr ""
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr ""
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr ""
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr ""
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr ""
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr ""
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr ""
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr ""
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr ""
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr ""
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr ""
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr ""
|
1705 |
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr ""
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr ""
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr ""
|
2669 |
|
languages/wp_statistics-ar.mo
CHANGED
Binary file
|
languages/wp_statistics-ar.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr "بحث تحويل الجدول المكتمل، الصفوف %d أضيفت."
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s سجلات طهرت بنجاح."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "عدد الزيارات يجب أن يكون أكبر من أو يساوي 10!"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "عدد زيارات هذه الصفحة"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "عدد الصفحة"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "عدد التعليق"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "عدد السبام"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "عدد المستخدم"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "متوسط المشاركة"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "متوسط التعليق"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "متوسط المستخدم"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "الإطار الزمني للحصول على إحصائية لـ ، strtotime() (http://php.net/manual/en/datetime.formats.php) سيتم استخدامها لحساب ذلك."
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "محرك البحث"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "مزود البحث للحصول على إحصائيات عن."
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "صيغة الرقم"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "صيغة الأرقام للعرض في: I18N، الانجليزية، لا شيء."
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "الإنجليزية"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "دولي"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "تبرع الآن!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "إغلاق"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "حدد الإحصائية التي ترغب في عرضها."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "إحصائية"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "عدد المقال"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "الإطار الزمني"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "مجموع الزيارات"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "لا شيء"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "متوسط التعليقات"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "متوسط الاعضاء"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "تاريخ آخر مشاركة"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "نسخة PHP الحالي هو"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "احصائيات ووردبريس"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "صفحة الإعدادات"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "لم يتم تمكين تتبع الزائر في احصائيات وو
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "صفحة الإعدادات > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "الإعدادات"
|
@@ -1181,7 +1182,7 @@ msgstr "المتواجدون"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "الدعوات"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "عمليات البحث"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "تحميل ملف HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "لم يتم العثور على ملف الدليل."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "احصائيات ووردبريس %s مثبتة على"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap بالفعل في النسخة الحالية!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "تحديث Browscap.ini على"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "أفضل 10 صفحات"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "الزيارات الأخيرة"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "أعلى المواقع اشارة"
|
@@ -1411,11 +1408,11 @@ msgstr "إحصائيات المتصفح"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "خريطة"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "صفحة"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "من"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "الكل"
|
@@ -1646,7 +1643,7 @@ msgstr "لم يتم العثور على عنوان الصفحة"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "الزيارات"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "الزيارات"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "تضاف قريبا"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "مواقع اشارة من"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "المراجع"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنش
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "أخرى"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "خريطة زوار اليوم"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "العنوان"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "تصدير"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "الزوار"
|
@@ -2211,23 +2208,23 @@ msgstr "استبدال عناوين IP مع قيم التجزئة."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "التثبيت الكامل الروتيني."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "الموارد/معلومات"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "تطهير"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "قاعدة البيانات"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "تحديثات"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "التاريخي"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدا
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "الإعضاء المتواجدين"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr "بحث تحويل الجدول المكتمل، الصفوف %d أضيفت."
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "عدد الزيارات يجب أن يكون أكبر من أو يساوي 10!"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "عدد زيارات هذه الصفحة"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "عدد الصفحة"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "عدد التعليق"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "عدد السبام"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "عدد المستخدم"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "متوسط المشاركة"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "متوسط التعليق"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "متوسط المستخدم"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "الإطار الزمني للحصول على إحصائية لـ ، strtotime() (http://php.net/manual/en/datetime.formats.php) سيتم استخدامها لحساب ذلك."
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "محرك البحث"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "مزود البحث للحصول على إحصائيات عن."
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "صيغة الرقم"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "صيغة الأرقام للعرض في: I18N، الانجليزية، لا شيء."
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "الإنجليزية"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "دولي"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "إغلاق"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "حدد الإحصائية التي ترغب في عرضها."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "إحصائية"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "عدد المقال"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "الإطار الزمني"
|
264 |
|
801 |
msgstr "مجموع الزيارات"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "لا شيء"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "متوسط الاعضاء"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "تاريخ آخر مشاركة"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "احصائيات ووردبريس"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "صفحة الإعدادات"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "الإعدادات"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "الدعوات"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "عمليات البحث"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "لم يتم العثور على ملف الدليل."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "احصائيات ووردبريس %s مثبتة على"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "تحديث Browscap.ini على"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "الزيارات الأخيرة"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "أعلى المواقع اشارة"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "صفحة"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "من"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "الكل"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "الزيارات"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "تضاف قريبا"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "مواقع اشارة من"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "المراجع"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "خريطة زوار اليوم"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "العنوان"
|
1705 |
|
1840 |
msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "تصدير"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "الزوار"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "التثبيت الكامل الروتيني."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "الموارد/معلومات"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "تطهير"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "قاعدة البيانات"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "تحديثات"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "التاريخي"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "الإعضاء المتواجدين"
|
2669 |
|
languages/wp_statistics-bg_BG.mo
CHANGED
Binary file
|
languages/wp_statistics-bg_BG.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Общо посещения"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Няма"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Средно коментари"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Средно потребители"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Последно добавена публикация"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "определянето страница"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Посетител проследяване в WP Statistics не е р
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Определянето страница > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Настройки"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Търсения"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Изтегли HTML файл"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Ръчно файлът не е намерен."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Нямате права за тази страница"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap вече в текущата версия!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Топ 10 страници"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Последните посетители"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Топ Препращащи сайтове"
|
@@ -1411,11 +1408,11 @@ msgstr "Браузър статистика"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Карта"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Страница"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "От"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Всички"
|
@@ -1646,7 +1643,7 @@ msgstr "Няма намерени заглавието на страницата
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Посещения"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Посещения"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Да бъде добавена скоро"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Препращащи сайтове от"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Препратки"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Този продукт съдържа GeoLite2 данни, създад
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Други"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Днес посетителите карта"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Адрес"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Износ"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Посетители"
|
@@ -2211,23 +2208,23 @@ msgstr "IP адреси се заменят с хеш стойности."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Инсталиране на ежедневието пълна."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Ресурси/информация"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Прочистване"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "База данни"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Актуализации"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Това ще изтрие ръчно, когато запишете н
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Потребители онлайн"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Общо посещения"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Няма"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Средно потребители"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Последно добавена публикация"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "определянето страница"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Настройки"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Търсения"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Ръчно файлът не е намерен."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Нямате права за тази страница"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Последните посетители"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Топ Препращащи сайтове"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Страница"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "От"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Всички"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Посещения"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Да бъде добавена скоро"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Препращащи сайтове от"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Препратки"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Днес посетителите карта"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Адрес"
|
1705 |
|
1840 |
msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Износ"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Посетители"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Инсталиране на ежедневието пълна."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Ресурси/информация"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Прочистване"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "База данни"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Актуализации"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Потребители онлайн"
|
2669 |
|
languages/wp_statistics-bn_BD.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "মোট দেখা হয়েছে"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr ""
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "গড় মন্তব্য"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "গড় ব্যবহারকারী"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "শেষ পোষ্টের তারিখ"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr ""
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "সেটিসং"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr ""
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr ""
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr ""
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr ""
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr ""
|
@@ -1411,11 +1408,11 @@ msgstr ""
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr ""
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr ""
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "সকল"
|
@@ -1646,7 +1643,7 @@ msgstr ""
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr ""
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr ""
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr ""
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr ""
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr ""
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr ""
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr ""
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr ""
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr ""
|
@@ -2211,23 +2208,23 @@ msgstr ""
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr ""
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr ""
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "মোট দেখা হয়েছে"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr ""
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "গড় ব্যবহারকারী"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "শেষ পোষ্টের তারিখ"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr ""
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr ""
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "সেটিসং"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr ""
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr ""
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "সকল"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr ""
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr ""
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr ""
|
1705 |
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr ""
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr ""
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr ""
|
2669 |
|
languages/wp_statistics-ckb.mo
CHANGED
Binary file
|
languages/wp_statistics-ckb.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "کۆی سەردانەکان"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "هیچ"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "مامناوەندی بۆچوونەکان"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "مامناوەندی بەکارهێنەران"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "وەشانی ئێستای PHP ئێوە"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "ئاماری وۆردپرێس"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "بەکارهێنەرانی سەرهێڵ لە زیادکراوەی وۆردپرێس ناچالاکن تکایە بڕۆن بۆ %s چالاکی بکەن."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "ڕیکخستنەکانی پەرە"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "شوێن کەوتنی میوان لە زیادکراوەی ئامری و
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "کۆی GeoIPچالاک نییە تکایە بڕۆن بۆ %s ئەم تایبەتمەندییە چالاک بکەن"
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "پەرەی ڕیکخستنەکان > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "ڕیکخستن"
|
@@ -1181,7 +1182,7 @@ msgstr "سەرهێڵ"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "هاتنەژوورەوەکان"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "گەرانەکان"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "داگرتنی پەڕگەی HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "ڕێنمایی پەیدا نەبوو"
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "خشتی زیادکراوە لە بنکەدراوە نییە! تکایە%s بۆدامەزراندن ئەنجام بدە %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini بەڕۆژکرا"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "بەرزترین ١٠ پەرە"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "دوایین میوانەکان"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "زۆرترین ماڵپەڕی هاتن"
|
@@ -1411,11 +1408,11 @@ msgstr "ئاماری وێبگەرەکان"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "نەخشە"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "پەڕە"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "لە"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "گشتی"
|
@@ -1646,7 +1643,7 @@ msgstr "سەردێڕی پەرە پەیدا نەبوو"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "سەردانەکان"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "سەردانەکان"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "بە خێرایی زیاد دەبێت"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "ماڵپەرەکانی هاتن لە"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "سەرچاوە"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "ائەم بەرهەمە بریتیە لە داتا GeoLite2 ە کە لە
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "ئەوی "
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "ناونیشان"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "هەناردەکردن"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کر
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "میوانەکان"
|
@@ -2211,23 +2208,23 @@ msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕد
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "دامەزراندن تەواوبوو"
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "سەرچاوەکان/زانیاری"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "پاکسازی"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "بنکەدراوە"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "بەڕۆژبونەکان"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "مێژوویی"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "پاش پاشکەتکردنی ڕێکخستنەکان پەڕگەی ڕین
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "بەکارهێنەری سەرهێڵ"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "کۆی سەردانەکان"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "هیچ"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "مامناوەندی بەکارهێنەران"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "ئاماری وۆردپرێس"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "بەکارهێنەرانی سەرهێڵ لە زیادکراوەی وۆردپرێس ناچالاکن تکایە بڕۆن بۆ %s چالاکی بکەن."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "ڕیکخستنەکانی پەرە"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "کۆی GeoIPچالاک نییە تکایە بڕۆن بۆ %s ئەم تایبەتمەندییە چالاک بکەن"
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "ڕیکخستن"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "هاتنەژوورەوەکان"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "گەرانەکان"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "ڕێنمایی پەیدا نەبوو"
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini بەڕۆژکرا"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "دوایین میوانەکان"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "زۆرترین ماڵپەڕی هاتن"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "پەڕە"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "لە"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "گشتی"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "سەردانەکان"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "بە خێرایی زیاد دەبێت"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "ماڵپەرەکانی هاتن لە"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "سەرچاوە"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "ناونیشان"
|
1705 |
|
1840 |
msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "هەناردەکردن"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "میوانەکان"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "دامەزراندن تەواوبوو"
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "سەرچاوەکان/زانیاری"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "پاکسازی"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "بنکەدراوە"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "بەڕۆژبونەکان"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "مێژوویی"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "بەکارهێنەری سەرهێڵ"
|
2669 |
|
languages/wp_statistics-cs.mo
CHANGED
Binary file
|
languages/wp_statistics-cs.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Celkem návštěv"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Žádný"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Průměr komentářů"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Průměr uživatelů"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Datum posledního příspěvku"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistiky"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a umožňují."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "nastavení stránky"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Návštěvník v WP Statistics sledování není povoleno, přejděte na
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Nastavení stránky > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Nastavení"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Vyhledávání"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Stáhnout HTML soubor"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Ruční soubor nebyl nalezen."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "Browscap již v aktuální verzi!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-STATISTICS.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 stránek"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Aktuální návštěvníci"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Nejlepší odkazující stránky"
|
@@ -1411,11 +1408,11 @@ msgstr "Statistiky prohlížečů"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Mapa"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Stránka"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Od"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Všechno"
|
@@ -1646,7 +1643,7 @@ msgstr "Žádný titulek stránky nalézt"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Návštěvy"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Návštěvy"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Brzy bude přidáno"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Odkazující stránky od"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Odkazy"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Jiný"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Dnešní mapa návštšvníků"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adresa"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Gratulujeme vaše instalace je již datum, nic společného."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Export"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Návštěvníci"
|
@@ -2211,23 +2208,23 @@ msgstr "IP adresy nahrazeny hodnoty hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Instalujte kompletní rutina."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Zdroje/Informace"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Pročištění"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Databáze"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Aktualizace"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "To odstraní ruční, když uložíte nastavení, jste si jisti?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Tato funkce nebude ukládat IP adresy do databáze, ale místo toho používá jedinečný algoritmus hash. \"Store celé uživatelské agent string\" nastavení bude zakázáno, pokud je vybrána tato možnost. Nebude schopen obnovit adresy IP v budoucnosti obnovit informace o poloze, pokud je to povoleno."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Uživatelé online"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Celkem návštěv"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Žádný"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Průměr uživatelů"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Datum posledního příspěvku"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistiky"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a umožňují."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "nastavení stránky"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Nastavení"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Vyhledávání"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Ruční soubor nebyl nalezen."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-STATISTICS.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Aktuální návštěvníci"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Nejlepší odkazující stránky"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Stránka"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Od"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Všechno"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Návštěvy"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Brzy bude přidáno"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Odkazující stránky od"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Odkazy"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Dnešní mapa návštšvníků"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adresa"
|
1705 |
|
1840 |
msgstr "Gratulujeme vaše instalace je již datum, nic společného."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Export"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Návštěvníci"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Instalujte kompletní rutina."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Zdroje/Informace"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Pročištění"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Databáze"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Aktualizace"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Tato funkce nebude ukládat IP adresy do databáze, ale místo toho používá jedinečný algoritmus hash. \"Store celé uživatelské agent string\" nastavení bude zakázáno, pokud je vybrána tato možnost. Nebude schopen obnovit adresy IP v budoucnosti obnovit informace o poloze, pokud je to povoleno."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Uživatelé online"
|
2669 |
|
languages/wp_statistics-de_DE.mo
CHANGED
Binary file
|
languages/wp_statistics-de_DE.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Aufrufe gesamt"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Keine"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Durchschnittliche Kommentare"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Durchschnittliche Benutzer"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Letztes Beitrags-Datum"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr ""
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Einstellungen"
|
@@ -1181,7 +1182,7 @@ msgstr "Zurzeit online"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Suchmaschinen"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr ""
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Benutzerdokumentation nicht gefunden."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "Die Plugin-Tabellen existieren nicht in deiner Datenbank! Bitte führe die %s Plugin-Installationsroutine %s noch einmal aus."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr ""
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 Seiten"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Letzte Besucher"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top verweisende Websites"
|
@@ -1411,11 +1408,11 @@ msgstr "Browser-Statistiken"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#anonymisiert#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Weltkarte"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Seite"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "von"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Alle"
|
@@ -1646,7 +1643,7 @@ msgstr "kein Titel verfügbar / Fehler 404"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Aufrufe"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Aufrufe"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Verweise von"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Verweise"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Dieses Plugin verwendet GeoLite2, zur Verfügung gestellt von MaxMin
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Andere"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Herkunft Besucher heute"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adresse"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Glückwunsch! Deine Installation ist aktuell, es gibt hier nichts zu tun..."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Export"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Besucher"
|
@@ -2211,23 +2208,23 @@ msgstr "IP-Adressen erfolgreich anonymisiert."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Ressourcen/Information"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Daten löschen"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Datenbank"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Historie"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Diese Einstellung löscht das Benutzerhandbuch unwiderruflich, wenn
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Dieses Feature ersetzt IP-Adressen in der Datenbank durch generierte, eindeutige Hash-Werte. Die Einstellung \"Gesamten User Agent-String speichern\" wird automatisch deaktiviert, wenn die Einstellung zum Anonymisieren der IP-Adressen aktiviert wird. ACHTUNG: einmal anonymisierte IP-Adressen können zu keinem Zeitpunkt wiederhergestellt werden!"
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Besucher online"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Aufrufe gesamt"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Keine"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Durchschnittliche Benutzer"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Letztes Beitrags-Datum"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr ""
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr ""
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Einstellungen"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Suchmaschinen"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Benutzerdokumentation nicht gefunden."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Letzte Besucher"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top verweisende Websites"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#anonymisiert#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Seite"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "von"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Alle"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Aufrufe"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Verweise von"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Verweise"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Herkunft Besucher heute"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adresse"
|
1705 |
|
1840 |
msgstr "Glückwunsch! Deine Installation ist aktuell, es gibt hier nichts zu tun..."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Export"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Besucher"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Ressourcen/Information"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Daten löschen"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Datenbank"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Historie"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Dieses Feature ersetzt IP-Adressen in der Datenbank durch generierte, eindeutige Hash-Werte. Die Einstellung \"Gesamten User Agent-String speichern\" wird automatisch deaktiviert, wenn die Einstellung zum Anonymisieren der IP-Adressen aktiviert wird. ACHTUNG: einmal anonymisierte IP-Adressen können zu keinem Zeitpunkt wiederhergestellt werden!"
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Besucher online"
|
2669 |
|
languages/wp_statistics-eo.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr ""
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr ""
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr ""
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr ""
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr ""
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr ""
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr ""
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr ""
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr ""
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr ""
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr ""
|
@@ -1411,11 +1408,11 @@ msgstr ""
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr ""
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr ""
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr ""
|
@@ -1646,7 +1643,7 @@ msgstr ""
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr ""
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr ""
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr ""
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr ""
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr ""
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr ""
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr ""
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr ""
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr ""
|
@@ -2211,23 +2208,23 @@ msgstr ""
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr ""
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr ""
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr ""
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr ""
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr ""
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr ""
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr ""
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr ""
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr ""
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr ""
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr ""
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr ""
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr ""
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr ""
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr ""
|
1705 |
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr ""
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr ""
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr ""
|
2669 |
|
languages/wp_statistics-es_ES.mo
CHANGED
Binary file
|
languages/wp_statistics-es_ES.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
-
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
-
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
-
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Total de visitas"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Ninguno"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Media por comentarios"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Media por usuarios"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Fecha de última entrada"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "Estadísticas de WP"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Usuario en línea de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "Página de configuración"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Visita de seguimiento en las WP Statistics no está habilitado, por favo
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP colección no está activo, por favor vaya a %s y activar esta función."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Página Configuración > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Configuración"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Búsquedas"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Descargar archivo HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Manual archivo no encontrado."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "No tienes permisos suficientes para acceder a esta página."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap ya en la versión actual."
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 páginas"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Visitantes recientes"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Principales sitios de referencia"
|
@@ -1411,11 +1408,11 @@ msgstr "Estadísticas de navegador"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Mapa"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Página"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "De"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Todo"
|
@@ -1646,7 +1643,7 @@ msgstr "No encontró el título de página"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Visitas"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Visitas"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Agregarse pronto"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Sitios de referencia"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Referencias"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Este producto incluye datos GeoLite2 creados por MaxMind, disponible des
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Otros"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Hoy en día los visitantes mapa"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Dirección"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Felicitaciones, su instalación es ya hasta la fecha, nada que ver."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Exportación"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Visitantes"
|
@@ -2211,23 +2208,23 @@ msgstr "Direcciones IP reemplazado con valores hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Instale la rutina completa."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Recursos e información"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Purga"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Base de datos"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Actualizaciones"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Esto eliminará el manual cuando usted guardar los ajustes, ¿estás seg
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Esta característica no almacenará direcciones IP en la base de datos pero en su lugar utiliza un hash único. La string \"Store todo usuario agente\" ajuste estará desactivada si éste está seleccionado. Usted no será capaz de recuperar las direcciones IP en el futuro para recuperar información de ubicación si esta opción está activada."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Usuarios en línea"
|
2672 |
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-08-17 11:56:26+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
+
msgstr "Comentario Número de"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
+
msgstr "Número de spam"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
+
msgstr "Número de usuario"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Total de visitas"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Ninguno"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Media por usuarios"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Fecha de última entrada"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "Estadísticas de WP"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Usuario en línea de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "Página de configuración"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP colección no está activo, por favor vaya a %s y activar esta función."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Configuración"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Búsquedas"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Manual archivo no encontrado."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "No tienes permisos suficientes para acceder a esta página."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Visitantes recientes"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Principales sitios de referencia"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Página"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "De"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Todo"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Visitas"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Agregarse pronto"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Sitios de referencia"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Referencias"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Hoy en día los visitantes mapa"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Dirección"
|
1705 |
|
1840 |
msgstr "Felicitaciones, su instalación es ya hasta la fecha, nada que ver."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Exportación"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Visitantes"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Instale la rutina completa."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Recursos e información"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Purga"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Base de datos"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Actualizaciones"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Esta característica no almacenará direcciones IP en la base de datos pero en su lugar utiliza un hash único. La string \"Store todo usuario agente\" ajuste estará desactivada si éste está seleccionado. Usted no será capaz de recuperar las direcciones IP en el futuro para recuperar información de ubicación si esta opción está activada."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Usuarios en línea"
|
2669 |
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s رکورد با موفقیت پاکسازی شدند."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "بازدید برگهها"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "تعداد برگهها"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "تعداد دیدگاهها"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "تعداد جفنگها"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "تعداد کاربرها"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "میانگین نوشته"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "میانگین دیدگاه"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "میانگین کاربر"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "برای محاسبه آمارر از چارچوب زمانی strtotime () (http://php.net/manual/en/datetime.formats.php) استفاده میشود."
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "سرویس جستجو"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "سرویس دهنده جستجو برای گرفتن آمار."
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "قالب شماره"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "فرمت شماره ها برای نمایش: i18n، انگلیسی یا هیچکدام."
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "انگلیسی"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "بین المللی"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "هماکنون حمایت میکنم!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "بستن"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "بازدید را برای نوع نمایش انتخاب کنید."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "آمار"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "تعداد نوشتهها"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "قاب زمان"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "کل بازدیدها"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "هیچ"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "میانگین دیدگاهها"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "میانگین کاربرها"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "تاریخ بهروزشدن سایت"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "نسخه جاری PHP شما"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "آمار وردپرس"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "کاربران آنلاین در افزونه آمار وردپرس غیرفعال است لطفا به %s بروید و آن را فعال کنید."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "تنظیمات صفحه"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "ردیابی بازدیدکنندگاه در افزونه آمار ور
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "مجموعه GeoIP فعال نیست لطفا به قسمت %s بروید و این ویژگی را فعال کنید."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "صفحه تنظیمات > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "تنظیمات"
|
@@ -1181,7 +1182,7 @@ msgstr "آنلاین"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "ارجاعدهندهها"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "جستجوها"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "دریافت فایل HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "راهنما یافت نشد."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "جدولهای افزونه در پایگاهداده وجود ندارند! لطفاً %s را اجرا کنید برای نصب %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "افزونه آمار وردپرس نگارش %s نصب شده است"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap در حال حاضر در نسخه فعلی!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini به روز رسانی شد"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr "10 برگه برتر"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "آخرین بازدیدکنندگان"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "برترین ارجاع دهندهها"
|
@@ -1411,11 +1408,11 @@ msgstr "آمار مرورگرها"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "نقشه"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "صفحه"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "از"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "همه"
|
@@ -1646,7 +1643,7 @@ msgstr "عنوان برگه یافت نشد"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "بازدیدها"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "بازدیدها"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "به زودی اضافه می شود"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "سایت های ارجاع دهنده از"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "ارجاع"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "این محصول شامل دادههای GeoLite2 میباشد ک
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "دیگر"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "بازدیدکنندگان امروز برروی نقشه"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "آدرس"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "تبریک میگویم، در حال حاضر نصب شما بهروز است و مشکلی ندارد."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "برونبری"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "نکته: همانطوری که پایگاهداده را پاک سا
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "بازدیدکنندگان"
|
@@ -2211,23 +2208,23 @@ msgstr "آدرس آیپی با مقادیر هش جایگزین میشود
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "نصب کامل شد."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "منابع/اطلاعات"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "پاکسازی"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "پایگاهداده"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "بهروز رسانیها"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "تاریخچه"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "پس از ذخیرهی صفحه، فایل راهنما حذف خوا
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "این ویژگی آدرس IP را در پایگاه داده ذخیره خواهد شد اما در عوض هش منحصر به فرد استفاده. String عامل کاربر کل \"Store\" تنظیم غیرفعال خواهد شد اگر این گزینه انتخاب شود. شما قادر خواهید بود برای بازیابی آدرس IP در آینده برای بازیابی اطلاعات مکان اگر این فعال شده است."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "کاربران حاضر"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "بازدید برگهها"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "تعداد برگهها"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "تعداد دیدگاهها"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "تعداد جفنگها"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "تعداد کاربرها"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "میانگین نوشته"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "میانگین دیدگاه"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "میانگین کاربر"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "برای محاسبه آمارر از چارچوب زمانی strtotime () (http://php.net/manual/en/datetime.formats.php) استفاده میشود."
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "سرویس جستجو"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "سرویس دهنده جستجو برای گرفتن آمار."
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "قالب شماره"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "فرمت شماره ها برای نمایش: i18n، انگلیسی یا هیچکدام."
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "انگلیسی"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "بین المللی"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "بستن"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "بازدید را برای نوع نمایش انتخاب کنید."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "آمار"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "تعداد نوشتهها"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "قاب زمان"
|
264 |
|
801 |
msgstr "کل بازدیدها"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "هیچ"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "میانگین کاربرها"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "تاریخ بهروزشدن سایت"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "آمار وردپرس"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "کاربران آنلاین در افزونه آمار وردپرس غیرفعال است لطفا به %s بروید و آن را فعال کنید."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "تنظیمات صفحه"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "مجموعه GeoIP فعال نیست لطفا به قسمت %s بروید و این ویژگی را فعال کنید."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "تنظیمات"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "ارجاعدهندهها"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "جستجوها"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "راهنما یافت نشد."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "افزونه آمار وردپرس نگارش %s نصب شده است"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini به روز رسانی شد"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "آخرین بازدیدکنندگان"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "برترین ارجاع دهندهها"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "صفحه"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "از"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "همه"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "بازدیدها"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "به زودی اضافه می شود"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "سایت های ارجاع دهنده از"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "ارجاع"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "بازدیدکنندگان امروز برروی نقشه"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "آدرس"
|
1705 |
|
1840 |
msgstr "تبریک میگویم، در حال حاضر نصب شما بهروز است و مشکلی ندارد."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "برونبری"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "بازدیدکنندگان"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "نصب کامل شد."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "منابع/اطلاعات"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "پاکسازی"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "پایگاهداده"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "بهروز رسانیها"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "تاریخچه"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "این ویژگی آدرس IP را در پایگاه داده ذخیره خواهد شد اما در عوض هش منحصر به فرد استفاده. String عامل کاربر کل \"Store\" تنظیم غیرفعال خواهد شد اگر این گزینه انتخاب شود. شما قادر خواهید بود برای بازیابی آدرس IP در آینده برای بازیابی اطلاعات مکان اگر این فعال شده است."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "کاربران حاضر"
|
2669 |
|
languages/wp_statistics-fr_FR.mo
CHANGED
Binary file
|
languages/wp_statistics-fr_FR.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr "Conversion de la table des recherches terminée, %d rangs ajoutés."
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s enregistrements purgés avec succès."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "Le nombre de hits doit être égal ou supérieur à 10 !"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "Visites sur les pages"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "Compte des pages"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "Compte des commentaires"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "Compte du spam"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "Compte des utilisateurs"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "Moyenne des articles"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "Moyenne des commentaires"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "Moyenne des utilisateurs"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "La période pour laquelle on obtient une statistique, strtotime() (http://php.net/manual/en/datetime.formats.php) sera utilisé pour la calculer."
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "Fournisseur de recherche"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "Le fournisseur de recherche sur lequel faire des statistiques."
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "Format des nombres"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "Le format dans lequel afficher les nombres : i18n, anglais, aucun."
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "Anglais"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "International"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "Faites un don maintenant !"
|
|
242 |
msgid "Close"
|
243 |
msgstr "Fermer"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "Sélectionnez la statistique que vous voulez afficher."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "Statistique"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "Compte des articles"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "Période de temps"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Nombre total de visites"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Aucun"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Moyenne des commentaires"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Moyenne des utilisateurs"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Date du dernier article"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "Votre version PHP actuelle est "
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Le suivi des utilisateurs en ligne de WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "page paramètres"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Les suivi des visiteurs dans WP Statistics n'est pas activée, rendez-vo
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "La collecte GeoIP n'est pas active, rendez-vous sur %s et activez cette fonctionnalité."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Page de paramètres > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Paramètres"
|
@@ -1181,7 +1182,7 @@ msgstr "En ligne"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "Référents"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Recherches"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Télécharger le fichier HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Fichier du manuel non trouvé."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "La table de l’extension n'existe pas dans la base de données ! Merci de relancer la %s routine d’installation %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WP Statistics %s installé sur"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap est déjà en version actuelle !"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.in mis à jour sur"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 des pages"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Visiteurs récents"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top des Sites référents"
|
@@ -1411,11 +1408,11 @@ msgstr "Statistiques de navigateur"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Carte"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Page"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "De"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Tous les"
|
@@ -1646,7 +1643,7 @@ msgstr "Aucun titre de page trouvé"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Visites"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Visites"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Seront ajoutées prochainement"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Site référents de"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Références"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Ce produit inclut des données de GeoLite2 créées par MaxMind, disponi
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Autres"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Carte des Visiteurs Aujourd’hui"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adresse"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Félicitations, votre installation est déjà à jour, rien à faire."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Exportation"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Note : comme vous venez de purger la base de données, vous devez rechar
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Visiteurs"
|
@@ -2211,23 +2208,23 @@ msgstr "Adresses IP remplacées par des valeurs de hachage."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Processus d’installation terminé."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Ressources/Informations"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Purge"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Base de données"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Mises à jour"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Historique"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Cela supprimera le manuel lorsque vous enregistrez les paramètres, ête
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Cette fonctionnalité ne stocke pas les adresses IP dans la base de données, mais utilise à la place un hachage unique. Le réglage \"Stocker la chaîne d'agent utilisateur entièrement\" sera désactivé si ce champ est sélectionné. Vous ne serez pas en mesure de récupérer les adresses IP à l'avenir pour obtenir des informations de localisation si cette option est activée."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Utilisateurs en ligne"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr "Conversion de la table des recherches terminée, %d rangs ajoutés."
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "Le nombre de hits doit être égal ou supérieur à 10 !"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "Visites sur les pages"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "Compte des pages"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "Compte des commentaires"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "Compte du spam"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "Compte des utilisateurs"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "Moyenne des articles"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "Moyenne des commentaires"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "Moyenne des utilisateurs"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "La période pour laquelle on obtient une statistique, strtotime() (http://php.net/manual/en/datetime.formats.php) sera utilisé pour la calculer."
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "Fournisseur de recherche"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "Le fournisseur de recherche sur lequel faire des statistiques."
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "Format des nombres"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "Le format dans lequel afficher les nombres : i18n, anglais, aucun."
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "Anglais"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "International"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "Fermer"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "Sélectionnez la statistique que vous voulez afficher."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "Statistique"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "Compte des articles"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "Période de temps"
|
264 |
|
801 |
msgstr "Nombre total de visites"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Aucun"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Moyenne des utilisateurs"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Date du dernier article"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Le suivi des utilisateurs en ligne de WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "page paramètres"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "La collecte GeoIP n'est pas active, rendez-vous sur %s et activez cette fonctionnalité."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Paramètres"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "Référents"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Recherches"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Fichier du manuel non trouvé."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WP Statistics %s installé sur"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.in mis à jour sur"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Visiteurs récents"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top des Sites référents"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Page"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "De"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Tous les"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Visites"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Seront ajoutées prochainement"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Site référents de"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Références"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Carte des Visiteurs Aujourd’hui"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adresse"
|
1705 |
|
1840 |
msgstr "Félicitations, votre installation est déjà à jour, rien à faire."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Exportation"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Visiteurs"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Processus d’installation terminé."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Ressources/Informations"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Purge"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Base de données"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Mises à jour"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Historique"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Cette fonctionnalité ne stocke pas les adresses IP dans la base de données, mais utilise à la place un hachage unique. Le réglage \"Stocker la chaîne d'agent utilisateur entièrement\" sera désactivé si ce champ est sélectionné. Vous ne serez pas en mesure de récupérer les adresses IP à l'avenir pour obtenir des informations de localisation si cette option est activée."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Utilisateurs en ligne"
|
2669 |
|
languages/wp_statistics-hu_HU.mo
CHANGED
Binary file
|
languages/wp_statistics-hu_HU.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr "Keresés táblázat átalakítás befejeződött,%d sor hozzáadva"
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s bejegyzés kitisztítása sikeres."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "Találatok számának nagyobbnak vagy egyenlőnek kell lennie, mint 10!"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "Oldallátogatások"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "Hozzászólás számláló"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "Spam számláló"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "Felhasználó számláló"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "Hozzászólás átlag"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "Megjegyzés átlag"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "Felhasználói átlag"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "Keresési szolgáltató"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "Szám formátum"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "Angol"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "Nemzetközi"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "Adományozzon most!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "Bezárás"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "Válassza ki a megjeleníteni kívánt statisztikát."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "Statisztikai"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "Bejegyzés számláló"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "Időkeret"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Összes látogatás"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Egyik sem"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Átlagos hozzászólás"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Átlagos felhasználó"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Utolsó bejegyzés dátuma"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "Az aktuális PHP verzió"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP Statistics el lett távolítva, kérjük, kapcsolja ki és törölje."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statisztika"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Követés-ban WP Statistics online felhasználó nem engedélyezett, kérjük megy (% s), és lehetővé teszi."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "beállítás oldal"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Látogató követés a WP Statistics-ban nincs engedélyezve, bekapcsol
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP gyűjtés nem aktív, engedélyezéshez menjen a %s fülre."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Beállítás oldal > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Beállítások"
|
@@ -1181,7 +1182,7 @@ msgstr "Elérhető"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "Hivatkozók"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Keresések"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "HTML fájl letöltése"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Kézikönyv nem található."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WP Statisztika %s telepítve a(z)"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap már az aktuális verzió!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini frissítés"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 oldal"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Előző Látogató"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top hivatkozó webhelyek"
|
@@ -1411,11 +1408,11 @@ msgstr "Böngésző statisztikák"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Térkép"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Oldal"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "/"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Mind"
|
@@ -1646,7 +1643,7 @@ msgstr "Az oldal címe nem található"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Látogatások"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Látogatások"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Hamarosan kiegészül"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Webhelyekre hivatkozás"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Referenciák"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Ez a termék tartalmaz GeoLite2 adatokat, amit a MaxMind készített, el
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Egyéb"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Mai látogatók térképe"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Cím"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Gratulálunk a telepítés befejeződött, nincs további teendője."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Exportálás"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Megjegyzés: mivel az imént tisztította meg az adatbázist, újra be k
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Megtekintések"
|
@@ -2211,23 +2208,23 @@ msgstr "IP-címek helyett vagdalék érték."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Felszerel rutin teljes."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Erőforrás/információ"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Tisztítás"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Adatbázis"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Frissítések"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Történeti"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Ez letörli a kézikönyvet a beállítások mentésekor, biztos benne?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Ez a szolgáltatás IP-címeket nem tárolja az adatbázisban, de ehelyett használható egyedi kivonatokat. A \"Store teljes felhasználói ügynök string\" beállítás ki lesz kapcsolva, ha ez be van jelölve. Nem lesz képes-hoz visszaszerez a jövőben, hogy visszaszerezze a helyadatokat, ha ez engedélyezve van az IP-címek."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Jelenlévő látogatók"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr "Keresés táblázat átalakítás befejeződött,%d sor hozzáadva"
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "Találatok számának nagyobbnak vagy egyenlőnek kell lennie, mint 10!"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "Oldallátogatások"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "Hozzászólás számláló"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "Spam számláló"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "Felhasználó számláló"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "Hozzászólás átlag"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "Megjegyzés átlag"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "Felhasználói átlag"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "Keresési szolgáltató"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "Szám formátum"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "Angol"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "Nemzetközi"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "Bezárás"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "Válassza ki a megjeleníteni kívánt statisztikát."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "Statisztikai"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "Bejegyzés számláló"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "Időkeret"
|
264 |
|
801 |
msgstr "Összes látogatás"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Egyik sem"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Átlagos felhasználó"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Utolsó bejegyzés dátuma"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP Statistics el lett távolítva, kérjük, kapcsolja ki és törölje."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statisztika"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Követés-ban WP Statistics online felhasználó nem engedélyezett, kérjük megy (% s), és lehetővé teszi."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "beállítás oldal"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP gyűjtés nem aktív, engedélyezéshez menjen a %s fülre."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Beállítások"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "Hivatkozók"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Keresések"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Kézikönyv nem található."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WP Statisztika %s telepítve a(z)"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini frissítés"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Előző Látogató"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top hivatkozó webhelyek"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Oldal"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "/"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Mind"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Látogatások"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Hamarosan kiegészül"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Webhelyekre hivatkozás"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Referenciák"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Mai látogatók térképe"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Cím"
|
1705 |
|
1840 |
msgstr "Gratulálunk a telepítés befejeződött, nincs további teendője."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Exportálás"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Megtekintések"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Felszerel rutin teljes."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Erőforrás/információ"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Tisztítás"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Adatbázis"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Frissítések"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Történeti"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Ez a szolgáltatás IP-címeket nem tárolja az adatbázisban, de ehelyett használható egyedi kivonatokat. A \"Store teljes felhasználói ügynök string\" beállítás ki lesz kapcsolva, ha ez be van jelölve. Nem lesz képes-hoz visszaszerez a jövőben, hogy visszaszerezze a helyadatokat, ha ez engedélyezve van az IP-címek."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Jelenlévő látogatók"
|
2669 |
|
languages/wp_statistics-id_ID.mo
CHANGED
Binary file
|
languages/wp_statistics-id_ID.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Jumlah Pengunjung"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Tidak ada"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Rata-rata Komentar"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Rata-rata Anggota"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Tanggal Posting Terakhir"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Pengguna online pelacakan dalam WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "Halaman pengaturan"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Pelacakan dalam WP Statistics pengunjung tidak diaktifkan, harap menuju
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "Koleksi GeoIP tidak aktif, harap menuju %s dan mengaktifkan fitur ini."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Halaman Pengaturan > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Pengaturan"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Pencarian"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Men-download HTML file"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Manual file tidak ditemukan."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap sudah di versi saat ini!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 halaman"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Pengunjung terkini"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top merujuk situs"
|
@@ -1411,11 +1408,11 @@ msgstr "Browser Statistik"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Peta"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Halaman"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Dari"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Semua"
|
@@ -1646,7 +1643,7 @@ msgstr "Judul Halaman tidak ditemukan"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Kunjungan"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Kunjungan"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Akan ditambahkan segera"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Merujuk situs dari"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Referensi"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Produk ini termasuk data GeoLite2 yang dibuat oleh MaxMind, tersedia dar
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Lainnya"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Hari peta pengunjung"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Alamat"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Selamat, instalasi ini sudah sampai tanggal, tidak ada hubungannya."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Ekspor"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Pengunjung"
|
@@ -2211,23 +2208,23 @@ msgstr "Alamat IP diganti dengan nilai hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Menginstal rutin lengkap."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Sumber-sumber/informasi"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Membersihkan"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Database"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Update"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Ini akan menghapus manual ketika Anda menyimpan pengaturan, Anda yakin?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Fitur ini tidak akan menyimpan alamat IP dalam database tetapi sebaliknya digunakan hash unik. \"Store seluruh pengguna agen string\" pengaturan akan dinonaktifkan jika ini dipilih. Anda tidak akan dapat memulihkan alamat IP di masa depan untuk memulihkan informasi lokasi jika ini diaktifkan."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Pengguna Online"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Jumlah Pengunjung"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Tidak ada"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Rata-rata Anggota"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Tanggal Posting Terakhir"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Pengguna online pelacakan dalam WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "Halaman pengaturan"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "Koleksi GeoIP tidak aktif, harap menuju %s dan mengaktifkan fitur ini."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Pengaturan"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Pencarian"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Manual file tidak ditemukan."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Pengunjung terkini"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top merujuk situs"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Halaman"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Dari"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Semua"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Kunjungan"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Akan ditambahkan segera"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Merujuk situs dari"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Referensi"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Hari peta pengunjung"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Alamat"
|
1705 |
|
1840 |
msgstr "Selamat, instalasi ini sudah sampai tanggal, tidak ada hubungannya."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Ekspor"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Pengunjung"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Menginstal rutin lengkap."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Sumber-sumber/informasi"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Membersihkan"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Database"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Update"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Fitur ini tidak akan menyimpan alamat IP dalam database tetapi sebaliknya digunakan hash unik. \"Store seluruh pengguna agen string\" pengaturan akan dinonaktifkan jika ini dipilih. Anda tidak akan dapat memulihkan alamat IP di masa depan untuk memulihkan informasi lokasi jika ini diaktifkan."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Pengguna Online"
|
2669 |
|
languages/wp_statistics-it_IT.mo
CHANGED
Binary file
|
languages/wp_statistics-it_IT.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Visite Totali"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Nessuo"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Media Commenti"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Utenti Medi"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Data Ultimo Post"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Il tracciamento degli utenti online su Wp Statistics non è abilitata, vai su %s e attivala."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "Pagina di Configurazione"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Il rilevamento dei visitatori in WP Statistics non è abilitato, vai su
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "Il GeoIP non è attivo, vai su %s per abilitare questa funzionalità."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Pagina di configurazione > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Impostazioni"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Ricerche"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Scarica file HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "File con il manuale non trovato."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap è già alla versione corrente!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 Pagine"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Visitatori Recenti"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top Siti Referrals"
|
@@ -1411,11 +1408,11 @@ msgstr "Statistiche Browser"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Mappa"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Pagina"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Da"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Tutti"
|
@@ -1646,7 +1643,7 @@ msgstr "Nessun titolo di pagina trovato"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Visite"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Visite"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Verranno aggiunte presto"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Siti Referral da"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Riferimenti"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Questo prodotto comprende I dati GeoLite2 creati da MaxMind, disponibili
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Altri"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Mappa Visitatori di Oggi"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Indirizzo"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Congratulazioni, l'installazione è già aggiornata all'ultima versione, non devi fare altro."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Esporta"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Visitatori"
|
@@ -2211,23 +2208,23 @@ msgstr "Indirizzi IP sostituiti con i valori hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Installazione completa della routine."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Risorse/informazioni"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Pulisci"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Database"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Aggiornamenti"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Questo eliminerà la documentazione quando si salveranno le impostazioni
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Questa caratteristica non memorizza gli indirizzi IP nel database ma invece utilizza un hash univoco. l'impostazione \"Archivia per intero la stringa dello user agent\" verrà disabilitata se si seleziona questa opzione. WP Statistic non sarà più in grado, da questo momento, di recuperare gli indirizzi IP e gli altri dati associati."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Utenti Online"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Visite Totali"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Nessuo"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Utenti Medi"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Data Ultimo Post"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Il tracciamento degli utenti online su Wp Statistics non è abilitata, vai su %s e attivala."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "Pagina di Configurazione"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "Il GeoIP non è attivo, vai su %s per abilitare questa funzionalità."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Impostazioni"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Ricerche"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "File con il manuale non trovato."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Visitatori Recenti"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top Siti Referrals"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Pagina"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Da"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Tutti"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Visite"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Verranno aggiunte presto"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Siti Referral da"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Riferimenti"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Mappa Visitatori di Oggi"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Indirizzo"
|
1705 |
|
1840 |
msgstr "Congratulazioni, l'installazione è già aggiornata all'ultima versione, non devi fare altro."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Esporta"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Visitatori"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Installazione completa della routine."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Risorse/informazioni"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Pulisci"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Database"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Aggiornamenti"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Questa caratteristica non memorizza gli indirizzi IP nel database ma invece utilizza un hash univoco. l'impostazione \"Archivia per intero la stringa dello user agent\" verrà disabilitata se si seleziona questa opzione. WP Statistic non sarà più in grado, da questo momento, di recuperare gli indirizzi IP e gli altri dati associati."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Utenti Online"
|
2669 |
|
languages/wp_statistics-ja.mo
CHANGED
Binary file
|
languages/wp_statistics-ja.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s のレコードが正常にパージされました。"
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "ヒット数は10以上でなければなりません!"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "ページ訪問数"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "ページ数"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "コメント数"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "スパム数"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "ユーザ数"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "投稿数の平均"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "コメント数の平均"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "ユーザ数の平均"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "統計を取得するための時間範囲、strtotime() (http://php.net/manual/en/datetime.formats.php) が計算に使用されます。"
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "検索プロバイダ"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "統計情報を取得するための検索プロバイダ"
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "数の書式"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "数値を表示する形式: 国際化, 英語, なし"
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "英語"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "インターナショナル"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "今すぐ寄付します!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "クローズ"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "表示したい統計情報を選択します。"
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "統計"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "投稿数"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "時間範囲"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "総訪問数"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "なし"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "平均コメント数"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "平均ユーザー数"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "最終投稿日"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "現在のPHPバージョンは"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP Statisticsは削除されています。無効にして削除してください。"
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "WP Statisticsでオンラインユーザの追跡が有効になっていません。%sに移動して有効にしてください。"
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "設定ページ"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "WP Statisticsで訪問者の追跡が有効になっていません。%s
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIPコレクションが有効ではありません。%sに移動してこの機能を有効にしてください。"
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "設定ページ > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "設定"
|
@@ -1181,7 +1182,7 @@ msgstr "オンライン"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "参照元"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "検索"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "HTMLファイルをダウンロード"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "マニュアルファイルが見つかりません。"
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "プラグインのテーブルがデータベースに存在しません! %sを再実行してルーチン%sをインストールしてください。"
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WPの統計は、%s上に設置されています"
|
@@ -1293,9 +1290,9 @@ msgstr "browscapは既に最新バージョンです!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini更新"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "トップ10ページ"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "最近の訪問者"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "トップ参照サイト"
|
@@ -1411,11 +1408,11 @@ msgstr "ブラウザの統計"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#ハッシュ#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "マップ"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "ページ"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "から"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "すべて"
|
@@ -1646,7 +1643,7 @@ msgstr "ページのタイトルが見つかりません"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "訪問"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "訪問"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "近日追加します"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "参照サイト"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "参照"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "この製品は、%sから入手できるMaxMindによって作成され
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "その他"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "今日の訪問者マップ"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "アドレス"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "おめでとうございます、あなたのインストールは既に最新になり、すべきことは何もありません。"
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "エクスポート"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "注: データベースからパージしたばかりなので、番号
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "訪問者"
|
@@ -2211,23 +2208,23 @@ msgstr "IPアドレスをハッシュ値に置き換えます。"
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "インストールルーチンが完了しました。"
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "リソース/情報"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "削除"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "データベース"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "更新"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "履歴"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "これは設定を保存するときマニュアルを削除しますが
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "この機能は、データベース内にIPアドレスを格納せず、代わりに一意のハッシュを使用します。これが選択されている場合は、「全ユーザーエージェント文字列を保存」の設定は無効となります。これが有効になっている場合は、将来的に位置情報を回復するためにIPアドレスを回復することはできません。"
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "オンラインユーザ"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "ヒット数は10以上でなければなりません!"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "ページ訪問数"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "ページ数"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "コメント数"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "スパム数"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "ユーザ数"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "投稿数の平均"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "コメント数の平均"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "ユーザ数の平均"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "統計を取得するための時間範囲、strtotime() (http://php.net/manual/en/datetime.formats.php) が計算に使用されます。"
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "検索プロバイダ"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "統計情報を取得するための検索プロバイダ"
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "数の書式"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "数値を表示する形式: 国際化, 英語, なし"
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "英語"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "インターナショナル"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "クローズ"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "表示したい統計情報を選択します。"
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "統計"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "投稿数"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "時間範囲"
|
264 |
|
801 |
msgstr "総訪問数"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "なし"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "平均ユーザー数"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "最終投稿日"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP Statisticsは削除されています。無効にして削除してください。"
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "WP Statisticsでオンラインユーザの追跡が有効になっていません。%sに移動して有効にしてください。"
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "設定ページ"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIPコレクションが有効ではありません。%sに移動してこの機能を有効にしてください。"
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "設定"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "参照元"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "検索"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "マニュアルファイルが見つかりません。"
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WPの統計は、%s上に設置されています"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini更新"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "最近の訪問者"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "トップ参照サイト"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#ハッシュ#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "ページ"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "から"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "すべて"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "訪問"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "近日追加します"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "参照サイト"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "参照"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "今日の訪問者マップ"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "アドレス"
|
1705 |
|
1840 |
msgstr "おめでとうございます、あなたのインストールは既に最新になり、すべきことは何もありません。"
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "エクスポート"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "訪問者"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "インストールルーチンが完了しました。"
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "リソース/情報"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "削除"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "データベース"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "更新"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "履歴"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "この機能は、データベース内にIPアドレスを格納せず、代わりに一意のハッシュを使用します。これが選択されている場合は、「全ユーザーエージェント文字列を保存」の設定は無効となります。これが有効になっている場合は、将来的に位置情報を回復するためにIPアドレスを回復することはできません。"
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "オンラインユーザ"
|
2669 |
|
languages/wp_statistics-nl_NL.mo
CHANGED
Binary file
|
languages/wp_statistics-nl_NL.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s records succesvol verwijderd."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "Aantal hits moet groter of gelijk aan 10 zijn!"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "Paginabezoeken"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "Aantal pagina's"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "Aantal commentaren"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "Spam aantal"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "Aantal gebruikers"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "Gemiddeld aantal berichten"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "Gemiddeld aantal commentaren"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "Gebruikergemiddelde"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "De tijdsduur voor het verkrijgen van de statistieken. De PHP-functie 'strtotime()' (http://php.net/manual/en/datetime.formats.php) zal worden gebruikt voor de berekening."
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "Zoekmachine"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "De zoekmachine waarvan de statistieken verkregen worden."
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "Getalformaat"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "Het formaat om getallen weer te geven in: i18n, Engels, geen."
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "Engels"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "Internationaal"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "Doneer nu!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "Afsluiten"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "Selecteer de statistiek die u wilt weergeven."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "Statistisch"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "Berichten teller"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "Tijdsduur"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Totale bezoek"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Geen"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Gemiddelde reacties"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Gemiddelde bezoekers"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Datum laatste bericht"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "Uw huidige PHP-versie is"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP CBS is verwijderd, u kunt het nu uitschakelen en verwijderen."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "On line-gebruiker volgen in statistieken van WP is niet ingeschakeld, ga naar %s en inschakelen."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "pagina-instelling"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Bezoeker bijhouden in WP Statistics niet is ingeschakeld, ga naar %s en
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP collectie is niet actief, ga naar %s en deze functie inschakelen."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Instellingenpagina > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Instellingen"
|
@@ -1181,7 +1182,7 @@ msgstr "Online"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "Verwijzers"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Zoekopdrachten"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Het HTML-bestand downloaden"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Handleiding-bestand niet gevonden."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "Plug-in tabellen bestaan niet in de database! Gelieve opnieuw de %s installatie-routine %s te draaien."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WP Statistics%s geïnstalleerd op"
|
@@ -1293,9 +1290,9 @@ msgstr "Browscap al op de huidige versie!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini update over"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10-pagina 's"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Recente bezoekers"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top 10-verwijzende sites"
|
@@ -1411,11 +1408,11 @@ msgstr "Browser statistieken"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Kaart"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Pagina"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Van"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Alle"
|
@@ -1646,7 +1643,7 @@ msgstr "Geen paginatitel gevonden"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Bezoeken"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Bezoeken"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Binnenkort worden toegevoegd"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Verwijzende sites van"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Verwijzingen"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Dit product bevat GeoLite2 gegevens gemaakt door MaxMind, zie %s."
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Andere"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Overzicht bezoekers vandaag"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adres"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Gefeliciteerd, is uw installatie al up-to-date. Er is hier niets te doen."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Exporteren"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Opmerking: Omdat de database net opgeschoond is, moet u deze pagina herl
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Bezoekers"
|
@@ -2211,23 +2208,23 @@ msgstr "IP-adressen vervangen met hash-waarden."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Installeren volledige routine."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Middelen/informatie"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Systeemaanpassingen"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Database"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Updates"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Historie"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Dit zal de handleiding verwijderen wanneer u de instellingen opslaan, be
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Deze functie zal IP-adressen niet in de database opslaan maar zal in plaats daarvan een unieke hash gebruiken. De \"hele gebruikers-agent-string opslaan\"-instelling wordt uitgeschakeld als deze optie is geselecteerd. U kan de IP-adressen dan niet meer herleiden tot locatie-informatie."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Gebruikers Online"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "Aantal hits moet groter of gelijk aan 10 zijn!"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "Paginabezoeken"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "Aantal pagina's"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "Aantal commentaren"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "Spam aantal"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "Aantal gebruikers"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "Gemiddeld aantal berichten"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "Gemiddeld aantal commentaren"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "Gebruikergemiddelde"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "De tijdsduur voor het verkrijgen van de statistieken. De PHP-functie 'strtotime()' (http://php.net/manual/en/datetime.formats.php) zal worden gebruikt voor de berekening."
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "Zoekmachine"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "De zoekmachine waarvan de statistieken verkregen worden."
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "Getalformaat"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "Het formaat om getallen weer te geven in: i18n, Engels, geen."
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "Engels"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "Internationaal"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "Afsluiten"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "Selecteer de statistiek die u wilt weergeven."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "Statistisch"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "Berichten teller"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "Tijdsduur"
|
264 |
|
801 |
msgstr "Totale bezoek"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Geen"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Gemiddelde bezoekers"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Datum laatste bericht"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP CBS is verwijderd, u kunt het nu uitschakelen en verwijderen."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "On line-gebruiker volgen in statistieken van WP is niet ingeschakeld, ga naar %s en inschakelen."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "pagina-instelling"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP collectie is niet actief, ga naar %s en deze functie inschakelen."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Instellingen"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "Verwijzers"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Zoekopdrachten"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Handleiding-bestand niet gevonden."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WP Statistics%s geïnstalleerd op"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini update over"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Recente bezoekers"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top 10-verwijzende sites"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Pagina"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Van"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Alle"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Bezoeken"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Binnenkort worden toegevoegd"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Verwijzende sites van"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Verwijzingen"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Overzicht bezoekers vandaag"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adres"
|
1705 |
|
1840 |
msgstr "Gefeliciteerd, is uw installatie al up-to-date. Er is hier niets te doen."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Exporteren"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Bezoekers"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Installeren volledige routine."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Middelen/informatie"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Systeemaanpassingen"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Database"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Updates"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Historie"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Deze functie zal IP-adressen niet in de database opslaan maar zal in plaats daarvan een unieke hash gebruiken. De \"hele gebruikers-agent-string opslaan\"-instelling wordt uitgeschakeld als deze optie is geselecteerd. U kan de IP-adressen dan niet meer herleiden tot locatie-informatie."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Gebruikers Online"
|
2669 |
|
languages/wp_statistics-pl_PL.mo
CHANGED
Binary file
|
languages/wp_statistics-pl_PL.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Razem odwiedzin"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Żaden"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Średnio komentarzy"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Średnio użytkowników"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Data ostatniego wpisu"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "Twoja bieżąca wersja PHP"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP Statistics został usunięty, proszę wyłączyć i usunąć go."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Śledzenie aktywnych użytkowników w WP Statistics nie jest włączone, przejdź do %s i włącz go."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "ustawienia strony"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Śledzenie gości w WP Statistics nie jest włączone, przejdź do %s i
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "Biblioteka GeoIP nie jest aktywna, przejdź do %s i włącz ją."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Ustawienie strony > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Ustawienia"
|
@@ -1181,7 +1182,7 @@ msgstr "Dostępni użytkownicy"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "Referenci"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Wyszukiwarki"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Pobierz plik HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Plik podręcznika nie znaleziony."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "Tabele wtyczki nie istnieją w bazie danych! Proszę ponownie uruchomić %s rutynową instalację %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WP Statistics %s zainstalował się"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap już w aktualnej wersji!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini zaktualizował się"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr "Najlepsza 10 stron"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Ostatni odwiedzający"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Najlepsze odsłyłające strony"
|
@@ -1411,11 +1408,11 @@ msgstr "Statystyki przeglądarki"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Mapa"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Strona"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "z"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Wszystkie"
|
@@ -1646,7 +1643,7 @@ msgstr "Tytuł strony nie znaleziony"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Odwiedzin"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Odwiedzin"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Wkrótce dodany"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Strony odsyłające z"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Odniesienia"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Produkt ten zawiera dane GeoLite2 utworzone przez MediaWiki, dostępne z
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Inne"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Mapa dzisiejszych odwiedzających"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adres"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Gratulacje, instalacja jest już aktualna, nic nie rób."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Eksportuj"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Uwaga: Ponieważ właśnie usunięto bazę danych, należy załadować t
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Odzwiedzający"
|
@@ -2211,23 +2208,23 @@ msgstr "Adresy IP zastąpione wartościami skrótu."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Zainstaluj rutynowe zakończona."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Zasoby/Informacje"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Wyczyść"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Baza danych"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Zaktualizuj"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Historyczny"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Spowoduje to usunięcie instrukcji po zapisaniu ustawień, czy na pewno?
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Ta funkcja nie będzie przechowywać adresów IP w bazie danych, ale zamiast tego stosować unikalny hash. Ustawienie \"Przechowuj cały ciąg agenta użytkownika\" zostanie wyłączone, jeśli ta opcja jest zaznaczona. Nie będzie w stanie odzyskać adresów IP w przyszłości w celu odzyskania informacji o lokalizacji, jeśli ta jest włączona."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Aktywni użytkownicy"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Razem odwiedzin"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Żaden"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Średnio użytkowników"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Data ostatniego wpisu"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP Statistics został usunięty, proszę wyłączyć i usunąć go."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Śledzenie aktywnych użytkowników w WP Statistics nie jest włączone, przejdź do %s i włącz go."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "ustawienia strony"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "Biblioteka GeoIP nie jest aktywna, przejdź do %s i włącz ją."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Ustawienia"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "Referenci"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Wyszukiwarki"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Plik podręcznika nie znaleziony."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WP Statistics %s zainstalował się"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini zaktualizował się"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Ostatni odwiedzający"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Najlepsze odsłyłające strony"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Strona"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "z"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Wszystkie"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Odwiedzin"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Wkrótce dodany"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Strony odsyłające z"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Odniesienia"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Mapa dzisiejszych odwiedzających"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adres"
|
1705 |
|
1840 |
msgstr "Gratulacje, instalacja jest już aktualna, nic nie rób."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Eksportuj"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Odzwiedzający"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Zainstaluj rutynowe zakończona."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Zasoby/Informacje"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Wyczyść"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Baza danych"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Zaktualizuj"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Historyczny"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Ta funkcja nie będzie przechowywać adresów IP w bazie danych, ale zamiast tego stosować unikalny hash. Ustawienie \"Przechowuj cały ciąg agenta użytkownika\" zostanie wyłączone, jeśli ta opcja jest zaznaczona. Nie będzie w stanie odzyskać adresów IP w przyszłości w celu odzyskania informacji o lokalizacji, jeśli ta jest włączona."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Aktywni użytkownicy"
|
2669 |
|
languages/wp_statistics-pt_BR.mo
CHANGED
Binary file
|
languages/wp_statistics-pt_BR.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Visita total"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Nenhum"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Médios comentários"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Média de usuários"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Data último Post"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "Estatísticas da WP"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Usuário on-line, acompanhamento de estatísticas WP não está habilitado, por favor, vá para %s e habilitá-lo."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "página de configuração"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Visitante em WP Statistics de rastreamento não é habilitada, vá para
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP coleção não está ativa, por favor, vá para %s e habilitar esse recurso."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Página de configuração > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Configurações"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Pesquisas"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Baixar arquivo HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Manual arquivo não encontrado."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Você não tem permissões suficientes para acessar esta página."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap já na versão atual!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 páginas"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Visitantes recentes"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top Sites referentes"
|
@@ -1411,11 +1408,11 @@ msgstr "Estatísticas do navegador"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Mapa"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Página de vídeo"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "De"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Todos os"
|
@@ -1646,7 +1643,7 @@ msgstr "title da página não encontrado"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Visitas"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Visitas"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Para ser adicionado em breve"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Referindo-se a sites de"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Referências"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Este produto inclui dados de GeoLite2 criados por MaxMind, disponível a
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Outros"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Hoje os visitantes mapa"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Endereço"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Parabéns, sua instalação é já até à data, nada a fazer."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Exportação"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Visitantes"
|
@@ -2211,23 +2208,23 @@ msgstr "Endereços IP substituído com valores de hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Instale a rotina completa."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Recursos/informação"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Purga"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Banco de dados"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Atualizações"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Isso excluirá o manual quando você salvar as configurações, você te
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Esse recurso não irá armazenar endereços IP no banco de dados, mas em vez disso, usou um hash exclusivo. O string de agente de usuário inteira \"Store\" configuração será desabilitada se esta opção estiver seleccionada. Você não será capaz de recuperar os endereços IP no futuro para recuperar informações de localização, se essa opção estiver habilitada."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Usuários on-line"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Visita total"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Nenhum"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Média de usuários"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Data último Post"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "Estatísticas da WP"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Usuário on-line, acompanhamento de estatísticas WP não está habilitado, por favor, vá para %s e habilitá-lo."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "página de configuração"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP coleção não está ativa, por favor, vá para %s e habilitar esse recurso."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Configurações"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Pesquisas"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Manual arquivo não encontrado."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Você não tem permissões suficientes para acessar esta página."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Visitantes recentes"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top Sites referentes"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Página de vídeo"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "De"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Todos os"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Visitas"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Para ser adicionado em breve"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Referindo-se a sites de"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Referências"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Hoje os visitantes mapa"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Endereço"
|
1705 |
|
1840 |
msgstr "Parabéns, sua instalação é já até à data, nada a fazer."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Exportação"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Visitantes"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Instale a rotina completa."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Recursos/informação"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Purga"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Banco de dados"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Atualizações"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Esse recurso não irá armazenar endereços IP no banco de dados, mas em vez disso, usou um hash exclusivo. O string de agente de usuário inteira \"Store\" configuração será desabilitada se esta opção estiver seleccionada. Você não será capaz de recuperar os endereços IP no futuro para recuperar informações de localização, se essa opção estiver habilitada."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Usuários on-line"
|
2669 |
|
languages/wp_statistics-ro_RO.mo
CHANGED
Binary file
|
languages/wp_statistics-ro_RO.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Vizite pe an"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Nici unul"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Comentarii in medie"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Useri in medie"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Data ultimei postari"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Utilizator online de urmărire în WP Statistics nu este activat, vă rugăm să mergeţi la %s şi activa."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "Pagina de setare"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Vizitator de urmărire în WP Statistics nu este activat, vă rugăm să
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP colectare nu este activ, vă rugăm să mergeţi la %s şi activaţi această caracteristică."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Pagina de setare > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Setări"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Căutări"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Descărcaţi fişierul HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Manualul fişier negăsit."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap deja la versiunea curentă!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 pagini"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Vizitatori recente"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top referindu-se site-uri"
|
@@ -1411,11 +1408,11 @@ msgstr "Statistici browser"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Hartă"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Filme"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "La"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Toate"
|
@@ -1646,7 +1643,7 @@ msgstr "Nici a title de pagina găsit"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Vizite"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Vizite"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Pentru a fi adăugate în curând"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Referindu-se site-uri din"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Referințe"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Acest produs include date GeoLite2 creat de MaxMind, disponibil de la %s
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Alte"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Azi vizitatori hartă"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adresa"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Felicitări, instalarea este deja până la data, nimic de a face."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Export"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Vizitatori"
|
@@ -2211,23 +2208,23 @@ msgstr "Adrese IP înlocuite cu valorile hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Instalarea completă de rutină."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Resurse/informatii"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Epurare"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Baza de date"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Actualizări"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Aceasta va şterge manual când salvaţi setările, sigur?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Această caracteristică nu va stoca adrese IP în baza de date, dar în schimb folosit un hash unic. \"Store întreaga utilizator agent string\" setarea va fi dezactivat dacă aceasta este bifată. Nu va fi capabil de a recupera adresele IP în viitor pentru a recupera informatii de localizare dacă acest lucru este permis."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Utilizatori Online"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Vizite pe an"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Nici unul"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Useri in medie"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Data ultimei postari"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Utilizator online de urmărire în WP Statistics nu este activat, vă rugăm să mergeţi la %s şi activa."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "Pagina de setare"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP colectare nu este activ, vă rugăm să mergeţi la %s şi activaţi această caracteristică."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Setări"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Căutări"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Manualul fişier negăsit."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Vizitatori recente"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top referindu-se site-uri"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Filme"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "La"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Toate"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Vizite"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Pentru a fi adăugate în curând"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Referindu-se site-uri din"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Referințe"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Azi vizitatori hartă"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adresa"
|
1705 |
|
1840 |
msgstr "Felicitări, instalarea este deja până la data, nimic de a face."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Export"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Vizitatori"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Instalarea completă de rutină."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Resurse/informatii"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Epurare"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Baza de date"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Actualizări"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Această caracteristică nu va stoca adrese IP în baza de date, dar în schimb folosit un hash unic. \"Store întreaga utilizator agent string\" setarea va fi dezactivat dacă aceasta este bifată. Nu va fi capabil de a recupera adresele IP în viitor pentru a recupera informatii de localizare dacă acest lucru este permis."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Utilizatori Online"
|
2669 |
|
languages/wp_statistics-ru_RU.mo
CHANGED
Binary file
|
languages/wp_statistics-ru_RU.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Всего визитов"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Нет"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Среднее число комментариев"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Среднее число участников"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Последняя запись на сайте"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Онлайн отслеживание в WP статистика пользователей не включена, перейдите к %s и включить его."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "Настройка страницы"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Отслеживания в WP Статистика посетителе
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP коллекция не является активным, перейдите к %s и включить эту функцию."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Настройка страницы > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Настройки"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Поиск"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Скачать файл HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Вручную файл не найден."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "У вас нет достаточных прав для доступа к этой странице."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap уже на текущей версии!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Топ 10 страниц"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Последних посетителей"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Лучшие сайты-источники переходов"
|
@@ -1411,11 +1408,11 @@ msgstr "Статистика браузеров"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Карта"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Страница"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "От"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Все"
|
@@ -1646,7 +1643,7 @@ msgstr "Название не найдено"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Посещений"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Посещений"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Чтобы быть добавлены скоро"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Ссылаясь сайтов от"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Ссылки"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Этот продукт включает в себя GeoLite2 данны
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Другие"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Сегодня карта визитеров"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Адрес"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Поздравляем ваша установка находится уже в курсе, ничего не делать."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Экспорт"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Посетителей"
|
@@ -2211,23 +2208,23 @@ msgstr "IP-адреса заменяются значениями хэша."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Установите полную рутину."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Ресурсы/информация"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Очистка"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "База данных"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Обновления"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Это приведет к удалению руководства пр
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Данная функция будет сохранять в базе данных уникальный хэш вместо IP-адреса. Функция \"Сохранять user-агенты\" будет отключена. Так же вы не сможете использовать IP-адреса для определения информации о местоположении."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Пользователей онлайн"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Всего визитов"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Нет"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Среднее число участников"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Последняя запись на сайте"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Онлайн отслеживание в WP статистика пользователей не включена, перейдите к %s и включить его."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "Настройка страницы"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP коллекция не является активным, перейдите к %s и включить эту функцию."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Настройки"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Поиск"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Вручную файл не найден."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "У вас нет достаточных прав для доступа к этой странице."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Последних посетителей"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Лучшие сайты-источники переходов"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Страница"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "От"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Все"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Посещений"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Чтобы быть добавлены скоро"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Ссылаясь сайтов от"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Ссылки"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Сегодня карта визитеров"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Адрес"
|
1705 |
|
1840 |
msgstr "Поздравляем ваша установка находится уже в курсе, ничего не делать."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Экспорт"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Посетителей"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Установите полную рутину."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Ресурсы/информация"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Очистка"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "База данных"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Обновления"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Данная функция будет сохранять в базе данных уникальный хэш вместо IP-адреса. Функция \"Сохранять user-агенты\" будет отключена. Так же вы не сможете использовать IP-адреса для определения информации о местоположении."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Пользователей онлайн"
|
2669 |
|
languages/wp_statistics-ru_UA.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr ""
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr ""
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr ""
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr ""
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr ""
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr ""
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr ""
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr ""
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr ""
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr ""
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr ""
|
@@ -1411,11 +1408,11 @@ msgstr ""
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr ""
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr ""
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr ""
|
@@ -1646,7 +1643,7 @@ msgstr ""
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr ""
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr ""
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr ""
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr ""
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr ""
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr ""
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr ""
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr ""
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr ""
|
@@ -2211,23 +2208,23 @@ msgstr ""
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr ""
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr ""
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr ""
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr ""
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr ""
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr ""
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr ""
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr ""
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr ""
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr ""
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr ""
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr ""
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr ""
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr ""
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr ""
|
1705 |
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr ""
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr ""
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr ""
|
2669 |
|
languages/wp_statistics-sk_SK.mo
CHANGED
Binary file
|
languages/wp_statistics-sk_SK.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr "Konverzia vyhľadavacej tabuľky dokončená, pridaných %d riadkov."
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s záznamov úspešne uvoľnených."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "Počet zobrazení musí byť väčší alebo rovný 10!"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "Návštev stránok"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "Počet stránok"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "Počet komentárov"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "Počet Spamu"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "Počet používateľov"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "Priemerne príspevkov"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "Komentárov priemerne"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "Časový rámec pre získanie štatistiky, pre tento výpočet bude použitá funkcia strtotime() (http://php.net/manual/en/datetime.formats.php)."
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "Poskytovateľ vyhľadávania"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "Poskytovateľ vyhľadávania pre získanie štatistických údajov."
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "Číselný formát"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "Formát zobrazenia čísla v: i18n, angličtina, nič."
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "Angličtina"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "Medzinárodný"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "Prispejte práve teraz!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "Zavrieť"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "Vyberte štatistiku, ktorú chcete zobraziť."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "Štatistický"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "Počet príspevkov"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "Časový rámec"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Celkom Visit"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Žiadna"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Priemer komentárov"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Priemerny Uzivatelske"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Dátum posledného príspevku"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "Vaša aktuálna verzia PHP je"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "Aplikácia WP Statistics bola odstránená, prosím, vypnite a zmažte ju."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Sledovanie online používateľov nie je povolené vo WP Statistics, prosím prejdite na %s a povoľte to."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "Nastavenie stránky"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Návštevník tracking v WP Statistics nie je povolená, prosím prejdit
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "Zber údajov GeoIP nie je aktívny, prosím prejdite na %s a aktivujte túto funkciu."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Nastavenie stránky > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Nastavenia"
|
@@ -1181,7 +1182,7 @@ msgstr "Online"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "Odkazovače"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Vyhľadávanie"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Stiahnuť súbor vo formáte HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Súbor manuálu nebol nájdený."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Nemáte dostatočné oprávnenia pre prístup k tejto stránke."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "Tabuľky zásuvného modulu neexistujú v databáze! Prosím, znovu spustite %s inštalačnú rutinu %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WP Statistics %s inštalovaný na"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap už v aktuálnej verzii!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini aktualizovaný na"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 stránok"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Nedávni návštevníci"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Top odkazujúce stránky"
|
@@ -1411,11 +1408,11 @@ msgstr "Štatistiky prehliadačov"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Mapa"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Strana"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "z"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Všetko"
|
@@ -1646,7 +1643,7 @@ msgstr "Nenašiel sa názov stránky"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Návštevy"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Návštevy"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Ktoré sa dopĺňajú čoskoro"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Odkazujúce stránky z"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Referencie"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Tento produkt obsahuje GeoLite2 údaje vytvorené MaxMind, dostupné z %
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Ostatné"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Dnešná mapa návštevníkov"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adresa"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Gratulujeme, vaša inštalácia je už aktuálna, nič nebude vykonané."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Export"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Poznámka: Ako ste práve vyčistili databázu, musíte znova načítať
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Návštevníci"
|
@@ -2211,23 +2208,23 @@ msgstr "IP adresy nahradené hodnotami hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Inštalačná rutina kompletná."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Zdroje/Informácie"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Odstraňujem"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Databáza"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Aktualizácie"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Historický"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "To odstráni manuálne uložíte nastavenia, sú si istí?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Táto funkcia nebude ukladať IP adresy v databáze, ale namiesto toho použije jedinečné hodnoty hash. Ak je táto možnosť vybratá, nastavenie \"Uložiť celý reťazec agenta používateľa\" sa vypne. Pri tomto nastavení nebudete môcť v budúcnosti obnoviť IP adresy a získať tak informácie o polohe."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Aktívni používatelia"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr "Konverzia vyhľadavacej tabuľky dokončená, pridaných %d riadkov."
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "Počet zobrazení musí byť väčší alebo rovný 10!"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "Návštev stránok"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "Počet stránok"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "Počet komentárov"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "Počet Spamu"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "Počet používateľov"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "Priemerne príspevkov"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "Komentárov priemerne"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "Časový rámec pre získanie štatistiky, pre tento výpočet bude použitá funkcia strtotime() (http://php.net/manual/en/datetime.formats.php)."
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "Poskytovateľ vyhľadávania"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "Poskytovateľ vyhľadávania pre získanie štatistických údajov."
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "Číselný formát"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "Formát zobrazenia čísla v: i18n, angličtina, nič."
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "Angličtina"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "Medzinárodný"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "Zavrieť"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "Vyberte štatistiku, ktorú chcete zobraziť."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "Štatistický"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "Počet príspevkov"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "Časový rámec"
|
264 |
|
801 |
msgstr "Celkom Visit"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Žiadna"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Priemerny Uzivatelske"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Dátum posledného príspevku"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "Aplikácia WP Statistics bola odstránená, prosím, vypnite a zmažte ju."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Sledovanie online používateľov nie je povolené vo WP Statistics, prosím prejdite na %s a povoľte to."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "Nastavenie stránky"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "Zber údajov GeoIP nie je aktívny, prosím prejdite na %s a aktivujte túto funkciu."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Nastavenia"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "Odkazovače"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Vyhľadávanie"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Súbor manuálu nebol nájdený."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Nemáte dostatočné oprávnenia pre prístup k tejto stránke."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WP Statistics %s inštalovaný na"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini aktualizovaný na"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Nedávni návštevníci"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Top odkazujúce stránky"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Strana"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "z"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Všetko"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Návštevy"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Ktoré sa dopĺňajú čoskoro"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Odkazujúce stránky z"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Referencie"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Dnešná mapa návštevníkov"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adresa"
|
1705 |
|
1840 |
msgstr "Gratulujeme, vaša inštalácia je už aktuálna, nič nebude vykonané."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Export"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Návštevníci"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Inštalačná rutina kompletná."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Zdroje/Informácie"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Odstraňujem"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Databáza"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Aktualizácie"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Historický"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Táto funkcia nebude ukladať IP adresy v databáze, ale namiesto toho použije jedinečné hodnoty hash. Ak je táto možnosť vybratá, nastavenie \"Uložiť celý reťazec agenta používateľa\" sa vypne. Pri tomto nastavení nebudete môcť v budúcnosti obnoviť IP adresy a získať tak informácie o polohe."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Aktívni používatelia"
|
2669 |
|
languages/wp_statistics-sr_RS.mo
CHANGED
Binary file
|
languages/wp_statistics-sr_RS.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Ukupna poseta"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Nijedan"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Prosečno komentara"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Prosečno korisnika"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Datum poslednjeg posta"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Усер Праћење у ВП Статистика није омогућен, молимо идите на %s и омогућити гаомогућена.,"
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "поставка паге"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "посетилац праћење у ВП Статистика није
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "ГеоИП збирка није молимо идите на %s и омогућите поставкуфункцију.>"
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "овустраницуГеоИП"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Podešavanja"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Pretrage"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Preuzmi HTML datoteku"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Datoteka sa uputstvom nije pronađena"
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "бровсцап већ у тренутној верзији"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "хттп://вп-статистицс.цом/"
|
@@ -1336,8 +1333,8 @@ msgstr "Prvih 10 stranica"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Nedavni posetioci"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Site-ovi sa najvećim brojem uputa"
|
@@ -1411,11 +1408,11 @@ msgstr "Statistika pretraživača"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Mapa"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Stranica"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Iz"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Svi"
|
@@ -1646,7 +1643,7 @@ msgstr "Nije pronađen naslov stranice "
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Posete"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Posete"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Uskoro će biti dodati"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Upućuje site-ove sa"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Reference"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Ovaj proizvod sadrži GeoLite2 podatke koje je kreirao MaxMind, raspolo
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Ostali"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Mapa današnjih posetilaca"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adresa"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Čestitamo! Vaša instalacija već je ažurirana, nemate šta da radite."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Izvezi"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Posetioci"
|
@@ -2211,23 +2208,23 @@ msgstr "IP adrese zamenjene hash vrednostima."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Инсталл рутинску ЦОМПЛЕТЕбровсцап..."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Izvori/Informacije"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Brisanje"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Baza podataka"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Ažuriranja"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Kad sačuvate podešavanja, obrisaćete priručnik. Jeste li sigurni?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Ова функција неће чувати ИП адресе у бази података, али уместо тога користи јединствену хасх. \"Сторе цела Прелистувач стринг \" Постављање ће бити онемогућен ако је он изабран. Нећете бити у стању да се опорави ИП адресе у будућности да се опорави информације о локацији, ако је то омогућено."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Online korisnici"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Ukupna poseta"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Nijedan"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Prosečno korisnika"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Datum poslednjeg posta"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Усер Праћење у ВП Статистика није омогућен, молимо идите на %s и омогућити гаомогућена.,"
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "поставка паге"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "ГеоИП збирка није молимо идите на %s и омогућите поставкуфункцију.>"
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Podešavanja"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Pretrage"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Datoteka sa uputstvom nije pronađena"
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "хттп://вп-статистицс.цом/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Nedavni posetioci"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Site-ovi sa najvećim brojem uputa"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Stranica"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Iz"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Svi"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Posete"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Uskoro će biti dodati"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Upućuje site-ove sa"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Reference"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Mapa današnjih posetilaca"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adresa"
|
1705 |
|
1840 |
msgstr "Čestitamo! Vaša instalacija već je ažurirana, nemate šta da radite."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Izvezi"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Posetioci"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Инсталл рутинску ЦОМПЛЕТЕбровсцап..."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Izvori/Informacije"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Brisanje"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Baza podataka"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Ažuriranja"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Ова функција неће чувати ИП адресе у бази података, али уместо тога користи јединствену хасх. \"Сторе цела Прелистувач стринг \" Постављање ће бити онемогућен ако је он изабран. Нећете бити у стању да се опорави ИП адресе у будућности да се опорави информације о локацији, ако је то омогућено."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Online korisnici"
|
2669 |
|
languages/wp_statistics-sv_SE.mo
CHANGED
Binary file
|
languages/wp_statistics-sv_SE.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s registreringar framgångsrikt bortstädade."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "Antal träffar måste vara större än eller lika med 10!"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "Sidbesök"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "Antal sidor"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "Antal kommentarer"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "Antal spam"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "Antal användare"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "Genomsnittligt antal inlägg"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "Genomsnittligt antal kommentarer"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "Genomsnittligt antal användare"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "Tidsramen för att få statistiken för strtotime () (http://php.net/manual/en/datetime.formats.php) används för beräkningen."
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "Sökleverantör"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "Sökleverantören att få statistik för."
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "Sifferformat"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "Formatet för att visa värden: i18n, engelska, inget."
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "Engelska"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "Internationell"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "Donera nu!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "Stäng"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "Välj vilken statistik du vill visa."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "Statistik"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "Antal inlägg"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "Tidsram"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Besök totalt"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Tomt"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Genomsnittligt antal kommentarer"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Genomsnittligt antal användare"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Senaste inläggsdatum"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "Din nuvarande PHP-version är"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP Statistik har tagits bort, var vänlig inaktivera och radera det."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Spårning av uppkopplad användare i WP Statistics är inte aktiverat, vänligen gå till %s för aktivering."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "inställningssidan"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Spårning av besökare i WP Statistik är inte aktiverat, vänligen gå
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP insamling är inte aktiverad, vänligen gå till %s och aktivera funktionen."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Inställningssidan > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Inställningar"
|
@@ -1181,7 +1182,7 @@ msgstr "Uppkopplingar"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "Länkreferenser"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Sökningar"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Hämta HTML-fil"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Manualfilen hittades inte."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Du har inte behörighet för åtkomst till den här sidan."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "Tilläggstabeller saknas i databasen! Vänligen repetera %s installationsrutin %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WP Statistics %s installerad på"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap har redan den senaste versionen!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Uppdatering av browscap.ini pågår"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Mest besökta sidor"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Senaste besökarna"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Länkkällornas 10 i topp"
|
@@ -1411,11 +1408,11 @@ msgstr "Webbläsarstatistik"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Karta"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Sida"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Från"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Allt"
|
@@ -1646,7 +1643,7 @@ msgstr "Sidtiteln saknas"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Besök"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Besök"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Kommer att läggas till snart"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Länkande webbplatser från"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Länkningar"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Denna produkt använder data från GeoLite2 skapat av MaxMind, tillgäng
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Annat"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Karta över dagens besökare"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adress"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Grattis, din installation är redan sjyst, ingen åtgärd behövs."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Exportera"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Obs! Om du nyligen har städat i databasen måste du ladda om denna sida
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Besökare"
|
@@ -2211,23 +2208,23 @@ msgstr "IP-adresserna har ersatts med hashade värden."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Installationen är klar."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Resurser/information"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Städning"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Databas"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Uppdateringar"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Historik"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Detta kommer att ta bort den manuella när du sparar inställningarna,
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Den här funktionen kommer inte att lagra IP-adresser i databasen utan använde en unik hash. Den "Lagra hela user agent string" inställningen inaktiveras om detta är valt. Du kommer inte att kunna återställa IP-adresserna i framtiden att återvinna platsinformation om det är aktiverat."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Uppkopplingar"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "Antal träffar måste vara större än eller lika med 10!"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "Sidbesök"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "Antal sidor"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "Antal kommentarer"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "Antal spam"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "Antal användare"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "Genomsnittligt antal inlägg"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "Genomsnittligt antal kommentarer"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "Genomsnittligt antal användare"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "Tidsramen för att få statistiken för strtotime () (http://php.net/manual/en/datetime.formats.php) används för beräkningen."
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "Sökleverantör"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "Sökleverantören att få statistik för."
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "Sifferformat"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "Formatet för att visa värden: i18n, engelska, inget."
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "Engelska"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "Internationell"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "Stäng"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "Välj vilken statistik du vill visa."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "Statistik"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "Antal inlägg"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "Tidsram"
|
264 |
|
801 |
msgstr "Besök totalt"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Tomt"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Genomsnittligt antal användare"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Senaste inläggsdatum"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP Statistik har tagits bort, var vänlig inaktivera och radera det."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Spårning av uppkopplad användare i WP Statistics är inte aktiverat, vänligen gå till %s för aktivering."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "inställningssidan"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP insamling är inte aktiverad, vänligen gå till %s och aktivera funktionen."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Inställningar"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "Länkreferenser"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Sökningar"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Manualfilen hittades inte."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Du har inte behörighet för åtkomst till den här sidan."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WP Statistics %s installerad på"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Uppdatering av browscap.ini pågår"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Senaste besökarna"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Länkkällornas 10 i topp"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Sida"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Från"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Allt"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Besök"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Kommer att läggas till snart"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Länkande webbplatser från"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Länkningar"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Karta över dagens besökare"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adress"
|
1705 |
|
1840 |
msgstr "Grattis, din installation är redan sjyst, ingen åtgärd behövs."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Exportera"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Besökare"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Installationen är klar."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Resurser/information"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Städning"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Databas"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Uppdateringar"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Historik"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Den här funktionen kommer inte att lagra IP-adresser i databasen utan använde en unik hash. Den "Lagra hela user agent string" inställningen inaktiveras om detta är valt. Du kommer inte att kunna återställa IP-adresserna i framtiden att återvinna platsinformation om det är aktiverat."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Uppkopplingar"
|
2669 |
|
languages/wp_statistics-tr_TR.mo
CHANGED
Binary file
|
languages/wp_statistics-tr_TR.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Toplam Ziyaret"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Hiçbiri"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Ortalama Yorum Sayısı"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Ortalama Kullanıcı Sayısı"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Son Posta Tarihi"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP İstatistik silinip kaldırıldı, eklentiyi pasif hale getirip siliniz."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Online kullanıcı WP Statisticsleri izleme etkin değildir, lütfen %s öğesine gidin ve etkinleştirin."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "ayar sayfası"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Ziyaretçi WP Statisticsleri izleme etkin değildir, lütfen %s öğesin
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP toplama etkin değil, lütfen %s öğesine gidin ve bu özelliği etkinleştirin."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Ayar sayfası > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Ayarlar"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Aramalar"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "HTML Dosyası indir"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Manuel Dosya bulunmadı."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Bu sayfaya girme yetkiniz yok."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "Geçerli sürüm de zaten Browscap!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr "En iyi 10 sayfaları"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Son Ziyaretciler"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Üst yönlendiren siteler"
|
@@ -1411,11 +1408,11 @@ msgstr "Tarayıcı İstatistikleri"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Harita"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Sayfa"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "/"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Hepsi"
|
@@ -1646,7 +1643,7 @@ msgstr "Sayfa Başlığı bulunmadı"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Ziyaretler"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Ziyaretler"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Yakında Eklenecekler"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Referans Verenler"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Referanslar"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Bu ürün, MaxMind, %s üzerinden kullanılabilir tarafından oluşturul
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Diğer"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Bugün Ziyaretçi Haritası"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Adres"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Tebrikler, yüklemenizin zaten tarihine kadar hiçbir durumda."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Dışarı Verme"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Not: Data temizliğini yeni yaptınız, sayfayı yenilerseniz verileri d
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Ziyaretciler"
|
@@ -2211,23 +2208,23 @@ msgstr "IP adresleri karma değerleri ile değiştirilir."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Rutin tam yükleyin."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Kaynaklar / Bilgiler"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Temizleme"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Veritabanı"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Güncelleme"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Geçmiş"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Bu ayarları kaydettiğinizde-ecek silmek belgili tanımlık elle yapıl
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Bu özellik, IP adresleri veritabanında depolamaz ancak benzersiz bir karma değeri kullanılır. \"Store tüm kullanıcı aracısı string\" ayar devre dışı bırakılır Bu seçiliyse. Gelecekte bu etkin konum bilgileri kurtarmak için IP adresleri kurtarmanız mümkün olmayacaktır."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Online kullanıcılar"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Toplam Ziyaret"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Hiçbiri"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Ortalama Kullanıcı Sayısı"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Son Posta Tarihi"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP İstatistik silinip kaldırıldı, eklentiyi pasif hale getirip siliniz."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Online kullanıcı WP Statisticsleri izleme etkin değildir, lütfen %s öğesine gidin ve etkinleştirin."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "ayar sayfası"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP toplama etkin değil, lütfen %s öğesine gidin ve bu özelliği etkinleştirin."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Ayarlar"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Aramalar"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Manuel Dosya bulunmadı."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Bu sayfaya girme yetkiniz yok."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Son Ziyaretciler"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Üst yönlendiren siteler"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Sayfa"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "/"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Hepsi"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Ziyaretler"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Yakında Eklenecekler"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Referans Verenler"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Referanslar"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Bugün Ziyaretçi Haritası"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Adres"
|
1705 |
|
1840 |
msgstr "Tebrikler, yüklemenizin zaten tarihine kadar hiçbir durumda."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Dışarı Verme"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Ziyaretciler"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Rutin tam yükleyin."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Kaynaklar / Bilgiler"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Temizleme"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Veritabanı"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Güncelleme"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Geçmiş"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Bu özellik, IP adresleri veritabanında depolamaz ancak benzersiz bir karma değeri kullanılır. \"Store tüm kullanıcı aracısı string\" ayar devre dışı bırakılır Bu seçiliyse. Gelecekte bu etkin konum bilgileri kurtarmak için IP adresleri kurtarmanız mümkün olmayacaktır."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Online kullanıcılar"
|
2669 |
|
languages/wp_statistics-uk.mo
CHANGED
Binary file
|
languages/wp_statistics-uk.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr "Конвертування пошукової таблиці завершено, %d рядків додано."
|
16 |
|
@@ -146,63 +150,63 @@ msgstr "%s записів успішно очищено."
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr "Число переглядів повинно бути більше або дорівнювати 10!"
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr "Відвідування сторінки"
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr "Кількість сторінок"
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr "Кількість коментарів"
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr "Кількість спаму"
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr "Кількість користувачів"
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr "середня кількість публікацій"
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr "середня кількість коментарів"
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr "Середня кількість користувачів"
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr "Інтервал часу для отримання статистики для, strtotime() (http://php.net/manual/en/datetime.formats.php) буде використано для його обчислення."
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr "Пошуковий провайдер"
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr "Пошуковий провайдер для отримання статистики"
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr "Числовий формат"
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr "Формат для відображення чисел в: i18n, англйська, нічого."
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr "Англійська"
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr "Міжнародна"
|
208 |
|
@@ -242,19 +246,19 @@ msgstr "Пожертвувати зараз!"
|
|
242 |
msgid "Close"
|
243 |
msgstr "Закрити"
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr "Вибрати статистику, яку хочете відображати."
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr "Статистика"
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr "Кількість публікацій"
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr "Інтервал часу"
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Всього відвідувань"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Жодного"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Середня кількість коментарів"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Середня кількість користувачів"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Останні зміни в публікації"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr "Ваша поточна версія PHP"
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr "WP Statistics видалено, будь ласка відключіть і видаліть його."
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP Statistics"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Відстеження онлайн користувача в WP Statistics не включено, перейдіть до %s і включіть його."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "Сторінка налаштувань"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Відстеження відвідувачів у WP Statistics не в
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "Набір GeoIP не активна, перейдіть до %s і включіть цю функцію."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Сторінка налаштувань > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Налаштування"
|
@@ -1181,7 +1182,7 @@ msgstr "Онлайн"
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr "Рефери"
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Пошуки"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Завантажити файл HTML "
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Інструкцію не знайдено."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "Ви не маєте достатніх прав для доступу до цієї сторінки."
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr "Таблиць плагіну не існує в базі даних! Будь ласка, повторно запустить %s звичайну установку %s."
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr "WP Statistics %s установлений на"
|
@@ -1293,9 +1290,9 @@ msgstr "browscap вже в поточній версії!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr "Browscap.ini оновлено на"
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Топ 10 сторінок"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Нещодавні відвідувачі"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Топ реферних сайтів"
|
@@ -1411,11 +1408,11 @@ msgstr "Статистика браузерів"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#хеш#"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Карта"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Сторінка"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Від"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Все"
|
@@ -1646,7 +1643,7 @@ msgstr "Не знайдено назви сторінки"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Відвідування"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Відвідування"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Скоро будуть додані"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Реферні сайти від"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Посилання"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Цей продукт містить GeoLite2 дані, створені
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Інший"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Карта сьогодняшніх відвідувачів"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Адреса"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Вітаємо, установка вже оновлена, нічого не треба робити."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Експорт"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr "Примітка: оскільки ви тільки що очистил
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Відвідувачі"
|
@@ -2211,23 +2208,23 @@ msgstr "IP-адреси замінені хеш значеннями."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Установка завершена."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Джерела/інформація"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Очищення"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "База даних"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Оновлення"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr "Історичні"
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Це видалить інструкцію при збереженні
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Ця функція не зберігатиме IP адреси в базі даних, але замість цььго, використані унікальні хеши. Налаштування \"Зберігати весь рядок агента користувача\" буде виключене, якщо ви виберете цю функцію. Ви не зможете повернути IP адреси в майбутньому для повернення деталей розташування, якщо ви активуєте цю функцію."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Користувачі онлайн"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr "Конвертування пошукової таблиці завершено, %d рядків додано."
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr "Число переглядів повинно бути більше або дорівнювати 10!"
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr "Відвідування сторінки"
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr "Кількість сторінок"
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr "Кількість коментарів"
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr "Кількість спаму"
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr "Кількість користувачів"
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr "середня кількість публікацій"
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr "середня кількість коментарів"
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr "Середня кількість користувачів"
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr "Інтервал часу для отримання статистики для, strtotime() (http://php.net/manual/en/datetime.formats.php) буде використано для його обчислення."
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr "Пошуковий провайдер"
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr "Пошуковий провайдер для отримання статистики"
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr "Числовий формат"
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr "Формат для відображення чисел в: i18n, англйська, нічого."
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr "Англійська"
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr "Міжнародна"
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr "Закрити"
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr "Вибрати статистику, яку хочете відображати."
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr "Статистика"
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr "Кількість публікацій"
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr "Інтервал часу"
|
264 |
|
801 |
msgstr "Всього відвідувань"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Жодного"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Середня кількість користувачів"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Останні зміни в публікації"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr "WP Statistics видалено, будь ласка відключіть і видаліть його."
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP Statistics"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Відстеження онлайн користувача в WP Statistics не включено, перейдіть до %s і включіть його."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "Сторінка налаштувань"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "Набір GeoIP не активна, перейдіть до %s і включіть цю функцію."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Налаштування"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr "Рефери"
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Пошуки"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Інструкцію не знайдено."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "Ви не маєте достатніх прав для доступу до цієї сторінки."
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr "WP Statistics %s установлений на"
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr "Browscap.ini оновлено на"
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Нещодавні відвідувачі"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Топ реферних сайтів"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#хеш#"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Сторінка"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Від"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Все"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Відвідування"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Скоро будуть додані"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Реферні сайти від"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Посилання"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Карта сьогодняшніх відвідувачів"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Адреса"
|
1705 |
|
1840 |
msgstr "Вітаємо, установка вже оновлена, нічого не треба робити."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Експорт"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Відвідувачі"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Установка завершена."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Джерела/інформація"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Очищення"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "База даних"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Оновлення"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr "Історичні"
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Ця функція не зберігатиме IP адреси в базі даних, але замість цььго, використані унікальні хеши. Налаштування \"Зберігати весь рядок агента користувача\" буде виключене, якщо ви виберете цю функцію. Ви не зможете повернути IP адреси в майбутньому для повернення деталей розташування, якщо ви активуєте цю функцію."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Користувачі онлайн"
|
2669 |
|
languages/wp_statistics-vi.mo
CHANGED
Binary file
|
languages/wp_statistics-vi.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "Tất cả chuyến thăm"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "Không có"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "Ý kiến trung bình"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "Người dùng trung bình"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "Cuối ngày đăng"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "Thống kê WP"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "Người dùng trực tuyến theo dõi trong WP thống kê không được kích hoạt, hãy đi đến %s và kích hoạt nó."
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "thiết lập trang"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "Số lượt truy cập theo dõi trong WP thống kê không được k
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP bộ sưu tập là không hoạt động, hãy đi đến %s và kích hoạt tính năng này."
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "Thiết lập trang > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "Cài đặt"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "Lượt tìm kiếm"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "Tải xuống tệp HTML"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "Hướng dẫn sử dụng tập tin không tìm thấy."
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr ".Bạn không có quyền truy cập trang này"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "browscap đã có tại phiên bản hiện tại!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "http://WP-Statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "Top 10 trang"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "Số người truy cập gần đây nhất"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "Trang web giới thiệu hàng đầu"
|
@@ -1411,11 +1408,11 @@ msgstr "Thống kê trình duyệt"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "Bản đồ"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "Trang"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "Từ"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "Tất cả"
|
@@ -1646,7 +1643,7 @@ msgstr "Tiêu đề trang không tìm thấy"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "Các lượt truy cập"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "Các lượt truy cập"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "Sẽ được bổ sung "
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "Nguồn từ"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "Tài liệu tham khảo"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "Sản phẩm này bao gồm dữ liệu GeoLite2 tạo bởi MaxMind, c
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "Khác"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "Hôm nay truy cập bản đồ"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "Địa chỉ"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "Xin chúc mừng, cài đặt là đã đến nay, không có gì để làm."
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "Xuất khẩu"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "Lượng người truy cập"
|
@@ -2211,23 +2208,23 @@ msgstr "Địa chỉ IP thay thế với giá trị hash."
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "Cài đặt hoàn thành thói quen."
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "Tài nguyên/thông tin"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "Lọc"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "Cơ sở dữ liệu"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "Cập Nhật"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "Điều này sẽ xóa sổ tay khi bạn lưu cài đặt, bạn có ch
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "Tính năng này sẽ không lưu trữ địa chỉ IP trong cơ sở dữ liệu nhưng thay vào đó sử dụng một băm duy nhất. \"Store người dùng toàn bộ đại lý string\" cài đặt sẽ bị vô hiệu nếu điều này được chọn. Bạn sẽ không thể phục hồi các địa chỉ IP trong tương lai để phục hồi thông tin vị trí nếu điều này được kích hoạt."
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "Người dùng trực tuyến"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "Tất cả chuyến thăm"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "Không có"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "Người dùng trung bình"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "Cuối ngày đăng"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "Thống kê WP"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "Người dùng trực tuyến theo dõi trong WP thống kê không được kích hoạt, hãy đi đến %s và kích hoạt nó."
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "thiết lập trang"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP bộ sưu tập là không hoạt động, hãy đi đến %s và kích hoạt tính năng này."
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "Cài đặt"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "Lượt tìm kiếm"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "Hướng dẫn sử dụng tập tin không tìm thấy."
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr ".Bạn không có quyền truy cập trang này"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "http://WP-Statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Số người truy cập gần đây nhất"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "Trang web giới thiệu hàng đầu"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "Trang"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "Từ"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "Tất cả"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "Các lượt truy cập"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "Sẽ được bổ sung "
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "Nguồn từ"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "Tài liệu tham khảo"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "Hôm nay truy cập bản đồ"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "Địa chỉ"
|
1705 |
|
1840 |
msgstr "Xin chúc mừng, cài đặt là đã đến nay, không có gì để làm."
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "Xuất khẩu"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "Lượng người truy cập"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "Cài đặt hoàn thành thói quen."
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "Tài nguyên/thông tin"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "Lọc"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "Cơ sở dữ liệu"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "Cập Nhật"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "Tính năng này sẽ không lưu trữ địa chỉ IP trong cơ sở dữ liệu nhưng thay vào đó sử dụng một băm duy nhất. \"Store người dùng toàn bộ đại lý string\" cài đặt sẽ bị vô hiệu nếu điều này được chọn. Bạn sẽ không thể phục hồi các địa chỉ IP trong tương lai để phục hồi thông tin vị trí nếu điều này được kích hoạt."
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "Người dùng trực tuyến"
|
2669 |
|
languages/wp_statistics-zh_CN.mo
CHANGED
Binary file
|
languages/wp_statistics-zh_CN.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "累计访问"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "没有一个"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "平均回响"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "平均用户"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "最后发表日期"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP 统计"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "在线用户跟踪 WP Statistic 中未启用,请转到 %s,并启用它。"
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "设置页面"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "访客在 WP Statistics跟踪未启用,请转到 %s,并启用它。"
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP 集合未处于活动状态,请转到 %s 并启用此功能。"
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "设置页面 > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "设定"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "搜索"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "下载 HTML 文件"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "手动文件找不到。"
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "你没有足够权限访问此页"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "已经在当前版本的 browscap!"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr ""
|
@@ -1336,8 +1333,8 @@ msgstr "前 10 页"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "最近访客"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "引用站点排名"
|
@@ -1411,11 +1408,11 @@ msgstr "浏览器统计"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "地图"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "页面"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "由"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "全部"
|
@@ -1646,7 +1643,7 @@ msgstr "发现没有页面标题"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "点击"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "点击"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "功能快将加入"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "来自网址的引用"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "引用"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "本产品包含由 MaxMind,可从 %s 创建的 GeoLite2 数据。"
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "其他"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "今天访客地图"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "网址"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "恭喜,您的安装是已经到目前为止,什么都不做。"
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "导出"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "访客"
|
@@ -2211,23 +2208,23 @@ msgstr "IP 地址替换为哈希值。"
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "安装例行完成。"
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "资源/信息"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "清除"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "数据库"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "更新"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "这将删除手册 》,当您保存设置时,你确定吗?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "此功能不会将 IP 地址存储在数据库中,但相反用唯一的哈希。\"Store 整个用户代理 string\"设置将被禁用,如果选择了此选项。你将不能恢复的 IP 地址在将来恢复位置的信息,如果启用此选项。"
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "用户在线"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "累计访问"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "没有一个"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "平均用户"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "最后发表日期"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP 统计"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "在线用户跟踪 WP Statistic 中未启用,请转到 %s,并启用它。"
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "设置页面"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP 集合未处于活动状态,请转到 %s 并启用此功能。"
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "设定"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "搜索"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "手动文件找不到。"
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "你没有足够权限访问此页"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr ""
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "最近访客"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "引用站点排名"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "页面"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "由"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "全部"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "点击"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "功能快将加入"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "来自网址的引用"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "引用"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "今天访客地图"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "网址"
|
1705 |
|
1840 |
msgstr "恭喜,您的安装是已经到目前为止,什么都不做。"
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "导出"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "访客"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "安装例行完成。"
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "资源/信息"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "清除"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "数据库"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "更新"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "此功能不会将 IP 地址存储在数据库中,但相反用唯一的哈希。\"Store 整个用户代理 string\"设置将被禁用,如果选择了此选项。你将不能恢复的 IP 地址在将来恢复位置的信息,如果启用此选项。"
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "用户在线"
|
2669 |
|
languages/wp_statistics-zh_TW.mo
CHANGED
Binary file
|
languages/wp_statistics-zh_TW.po
CHANGED
@@ -10,7 +10,11 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
14 |
msgid "Search table conversion complete, %d rows added."
|
15 |
msgstr ""
|
16 |
|
@@ -146,63 +150,63 @@ msgstr ""
|
|
146 |
msgid "Number of hits must be greater than or equal to 10!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: shortcode.php:
|
150 |
msgid "Page Visits"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: shortcode.php:
|
154 |
msgid "Page Count"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: shortcode.php:
|
158 |
msgid "Comment Count"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: shortcode.php:
|
162 |
msgid "Spam Count"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: shortcode.php:
|
166 |
msgid "User Count"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: shortcode.php:
|
170 |
msgid "Post Average"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: shortcode.php:
|
174 |
msgid "Comment Average"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: shortcode.php:
|
178 |
msgid "User Average"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: shortcode.php:
|
182 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: shortcode.php:
|
186 |
msgid "Search Provider"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: shortcode.php:
|
190 |
msgid "The search provider to get statistics on."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: shortcode.php:
|
194 |
msgid "Number Format"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: shortcode.php:
|
198 |
msgid "The format to display numbers in: i18n, english, none."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: shortcode.php:
|
202 |
msgid "English"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: shortcode.php:
|
206 |
msgid "International"
|
207 |
msgstr ""
|
208 |
|
@@ -242,19 +246,19 @@ msgstr ""
|
|
242 |
msgid "Close"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: shortcode.php:
|
246 |
msgid "Select the statistic you wish to display."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: shortcode.php:
|
250 |
msgid "Statistic"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: shortcode.php:
|
254 |
msgid "Post Count"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: shortcode.php:
|
258 |
msgid "Time Frame"
|
259 |
msgstr ""
|
260 |
|
@@ -797,7 +801,7 @@ msgid "Total Visit"
|
|
797 |
msgstr "累計點擊"
|
798 |
|
799 |
#: includes/settings/tabs/wps-overview-display.php:23
|
800 |
-
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:
|
801 |
msgid "None"
|
802 |
msgstr "沒有一個"
|
803 |
|
@@ -1069,7 +1073,7 @@ msgstr "平均迴響"
|
|
1069 |
msgid "Average Users"
|
1070 |
msgstr "平均用戶"
|
1071 |
|
1072 |
-
#: shortcode.php:
|
1073 |
msgid "Last Post Date"
|
1074 |
msgstr "上次發表日期"
|
1075 |
|
@@ -1109,13 +1113,13 @@ msgstr ""
|
|
1109 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1113 |
#. Plugin Name of the plugin/theme
|
1114 |
#: wp-statistics.php:37
|
1115 |
msgid "WP Statistics"
|
1116 |
msgstr "WP 統計"
|
1117 |
|
1118 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1119 |
#. Description of the plugin/theme
|
1120 |
#: wp-statistics.php:38
|
1121 |
msgid "Complete statistics for your WordPress site."
|
@@ -1126,6 +1130,7 @@ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and
|
|
1126 |
msgstr "線上使用者跟蹤 WP Statistic 中未啟用,請轉到 %s,並啟用它。"
|
1127 |
|
1128 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
|
|
1129 |
msgid "setting page"
|
1130 |
msgstr "設置頁面"
|
1131 |
|
@@ -1141,10 +1146,6 @@ msgstr "訪客在 WP Statistics 跟蹤未啟用,請轉到 %s,並啟用它。
|
|
1141 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1142 |
msgstr "GeoIP 集合未處於活動狀態,請轉到 %s 並啟用此功能。"
|
1143 |
|
1144 |
-
#: wp-statistics.php:146
|
1145 |
-
msgid "Setting page > GeoIP"
|
1146 |
-
msgstr "設置頁面 > GeoIP"
|
1147 |
-
|
1148 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1149 |
msgid "Settings"
|
1150 |
msgstr "設定"
|
@@ -1181,7 +1182,7 @@ msgstr ""
|
|
1181 |
msgid "Referrers"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: shortcode.php:
|
1185 |
msgid "Searches"
|
1186 |
msgstr "搜索"
|
1187 |
|
@@ -1237,14 +1238,10 @@ msgstr "下載 HTML 檔案"
|
|
1237 |
msgid "Manual file not found."
|
1238 |
msgstr "手動檔找不到。"
|
1239 |
|
1240 |
-
#: wp-statistics.php:663 wp-statistics.php:
|
1241 |
msgid "You do not have sufficient permissions to access this page."
|
1242 |
msgstr "你沒有足夠權限訪問此頁"
|
1243 |
|
1244 |
-
#: wp-statistics.php:672
|
1245 |
-
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
#: wp-statistics.php:241
|
1249 |
msgid "WP Statistics %s installed on"
|
1250 |
msgstr ""
|
@@ -1293,9 +1290,9 @@ msgstr "已經在當前版本的 browscap !"
|
|
1293 |
msgid "Browscap.ini update on"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1297 |
#. Plugin URI of the plugin/theme
|
1298 |
-
#. #-#-#-#-# plugin.pot (WP Statistics 9.
|
1299 |
#. Author URI of the plugin/theme
|
1300 |
msgid "http://wp-statistics.com/"
|
1301 |
msgstr "HTTP://wp-statistics.com/"
|
@@ -1336,8 +1333,8 @@ msgstr "前 10 頁"
|
|
1336 |
msgid "Recent Visitors"
|
1337 |
msgstr "最近訪客"
|
1338 |
|
1339 |
-
#: dashboard.php:62 includes/log/top-referring.php:
|
1340 |
-
#: includes/log/top-referring.php:
|
1341 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1342 |
msgid "Top Referring Sites"
|
1343 |
msgstr "引用網站排名"
|
@@ -1411,11 +1408,11 @@ msgstr "瀏覽器統計"
|
|
1411 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1412 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1413 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1414 |
-
#: includes/log/top-referring.php:
|
1415 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1416 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1417 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1418 |
-
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:
|
1419 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1420 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1421 |
msgid "Click to toggle"
|
@@ -1537,7 +1534,7 @@ msgid "#hash#"
|
|
1537 |
msgstr "#hash #"
|
1538 |
|
1539 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1540 |
-
#: includes/log/online.php:55 includes/log/top-referring.php:
|
1541 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1542 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1543 |
#: includes/settings/tabs/wps-overview-display.php:113
|
@@ -1546,18 +1543,18 @@ msgstr "地圖"
|
|
1546 |
|
1547 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1548 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1549 |
-
#: includes/log/top-referring.php:
|
1550 |
msgid "Page"
|
1551 |
msgstr "頁面"
|
1552 |
|
1553 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1554 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1555 |
-
#: includes/log/top-referring.php:
|
1556 |
msgid "From"
|
1557 |
msgstr "由"
|
1558 |
|
1559 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1560 |
-
#: includes/log/top-referring.php:
|
1561 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1562 |
msgid "All"
|
1563 |
msgstr "全部"
|
@@ -1646,7 +1643,7 @@ msgstr "發現沒有頁面標題"
|
|
1646 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1647 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1648 |
#: includes/settings/tabs/wps-general.php:122
|
1649 |
-
#: includes/settings/tabs/wps-general.php:127 shortcode.php:
|
1650 |
msgid "Visits"
|
1651 |
msgstr "點擊"
|
1652 |
|
@@ -1654,11 +1651,11 @@ msgstr "點擊"
|
|
1654 |
msgid "To be added soon"
|
1655 |
msgstr "功能快將加入"
|
1656 |
|
1657 |
-
#: includes/log/top-referring.php:
|
1658 |
msgid "Referring sites from"
|
1659 |
msgstr "推薦從網站"
|
1660 |
|
1661 |
-
#: includes/log/top-referring.php:
|
1662 |
msgid "References"
|
1663 |
msgstr "引用"
|
1664 |
|
@@ -1688,7 +1685,7 @@ msgstr "本產品包含由 MaxMind,可從 %s 創建的 GeoLite2 資料。"
|
|
1688 |
|
1689 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1690 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1691 |
-
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:
|
1692 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1693 |
#: includes/log/widgets/words.php:11
|
1694 |
msgid "More"
|
@@ -1702,7 +1699,7 @@ msgstr "其他"
|
|
1702 |
msgid "Today Visitors Map"
|
1703 |
msgstr "今天訪客地圖"
|
1704 |
|
1705 |
-
#: includes/log/widgets/referring.php:
|
1706 |
msgid "Address"
|
1707 |
msgstr "網址"
|
1708 |
|
@@ -1843,7 +1840,7 @@ msgid "Congratulations, your installation is already up to date, nothing to do."
|
|
1843 |
msgstr "恭喜,您的安裝是已經到目前為止,什麼都不做。"
|
1844 |
|
1845 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1846 |
-
#: includes/optimization/wps-optimization.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr "出口"
|
1849 |
|
@@ -1895,7 +1892,7 @@ msgstr ""
|
|
1895 |
|
1896 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1897 |
#: includes/settings/tabs/wps-general.php:138
|
1898 |
-
#: includes/settings/tabs/wps-general.php:143 shortcode.php:
|
1899 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1900 |
msgid "Visitors"
|
1901 |
msgstr "訪客"
|
@@ -2211,23 +2208,23 @@ msgstr "IP 位址替換為雜湊值。"
|
|
2211 |
msgid "Install routine complete."
|
2212 |
msgstr "安裝例行完成。"
|
2213 |
|
2214 |
-
#: includes/optimization/wps-optimization.php:
|
2215 |
msgid "Resources/Information"
|
2216 |
msgstr "資源/資訊"
|
2217 |
|
2218 |
-
#: includes/optimization/wps-optimization.php:
|
2219 |
msgid "Purging"
|
2220 |
msgstr "清除"
|
2221 |
|
2222 |
-
#: includes/optimization/wps-optimization.php:
|
2223 |
msgid "Database"
|
2224 |
msgstr "資料庫"
|
2225 |
|
2226 |
-
#: includes/optimization/wps-optimization.php:
|
2227 |
msgid "Updates"
|
2228 |
msgstr "更新"
|
2229 |
|
2230 |
-
#: includes/optimization/wps-optimization.php:
|
2231 |
msgid "Historical"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2666,7 +2663,7 @@ msgstr "這將刪除手冊 》,當您保存設置時,你確定嗎?"
|
|
2666 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2667 |
msgstr "此功能不會將 IP 位址存儲在資料庫中,但相反用唯一的雜湊。\"Store 整個使用者代理 string\"設置將被禁用,如果選擇了此選項。你將不能恢復的 IP 位址在將來恢復位置的資訊,如果啟用此選項。"
|
2668 |
|
2669 |
-
#: includes/settings/tabs/wps-general.php:82 shortcode.php:
|
2670 |
msgid "Users Online"
|
2671 |
msgstr "使用者線上"
|
2672 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: wp-statistics.php:690
|
14 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/optimization/wps-optimization.php:176
|
18 |
msgid "Search table conversion complete, %d rows added."
|
19 |
msgstr ""
|
20 |
|
150 |
msgid "Number of hits must be greater than or equal to 10!"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: shortcode.php:139
|
154 |
msgid "Page Visits"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: shortcode.php:142
|
158 |
msgid "Page Count"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: shortcode.php:143
|
162 |
msgid "Comment Count"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: shortcode.php:144
|
166 |
msgid "Spam Count"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: shortcode.php:145
|
170 |
msgid "User Count"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: shortcode.php:146
|
174 |
msgid "Post Average"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: shortcode.php:147
|
178 |
msgid "Comment Average"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: shortcode.php:148
|
182 |
msgid "User Average"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: shortcode.php:156
|
186 |
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: shortcode.php:160
|
190 |
msgid "Search Provider"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: shortcode.php:163
|
194 |
msgid "The search provider to get statistics on."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: shortcode.php:167
|
198 |
msgid "Number Format"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: shortcode.php:170
|
202 |
msgid "The format to display numbers in: i18n, english, none."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: shortcode.php:174
|
206 |
msgid "English"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: shortcode.php:175
|
210 |
msgid "International"
|
211 |
msgstr ""
|
212 |
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: shortcode.php:133
|
250 |
msgid "Select the statistic you wish to display."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: shortcode.php:130
|
254 |
msgid "Statistic"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: shortcode.php:141
|
258 |
msgid "Post Count"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: shortcode.php:153
|
262 |
msgid "Time Frame"
|
263 |
msgstr ""
|
264 |
|
801 |
msgstr "累計點擊"
|
802 |
|
803 |
#: includes/settings/tabs/wps-overview-display.php:23
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:173
|
805 |
msgid "None"
|
806 |
msgstr "沒有一個"
|
807 |
|
1073 |
msgid "Average Users"
|
1074 |
msgstr "平均用戶"
|
1075 |
|
1076 |
+
#: shortcode.php:149 widget.php:179 widget.php:322
|
1077 |
msgid "Last Post Date"
|
1078 |
msgstr "上次發表日期"
|
1079 |
|
1113 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1117 |
#. Plugin Name of the plugin/theme
|
1118 |
#: wp-statistics.php:37
|
1119 |
msgid "WP Statistics"
|
1120 |
msgstr "WP 統計"
|
1121 |
|
1122 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1123 |
#. Description of the plugin/theme
|
1124 |
#: wp-statistics.php:38
|
1125 |
msgid "Complete statistics for your WordPress site."
|
1130 |
msgstr "線上使用者跟蹤 WP Statistic 中未啟用,請轉到 %s,並啟用它。"
|
1131 |
|
1132 |
#: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
|
1133 |
+
#: wp-statistics.php:146
|
1134 |
msgid "setting page"
|
1135 |
msgstr "設置頁面"
|
1136 |
|
1146 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1147 |
msgstr "GeoIP 集合未處於活動狀態,請轉到 %s 並啟用此功能。"
|
1148 |
|
|
|
|
|
|
|
|
|
1149 |
#: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
|
1150 |
msgid "Settings"
|
1151 |
msgstr "設定"
|
1182 |
msgid "Referrers"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: shortcode.php:140 wp-statistics.php:357 wp-statistics.php:433
|
1186 |
msgid "Searches"
|
1187 |
msgstr "搜索"
|
1188 |
|
1238 |
msgid "Manual file not found."
|
1239 |
msgstr "手動檔找不到。"
|
1240 |
|
1241 |
+
#: wp-statistics.php:663 wp-statistics.php:788 wp-statistics.php:822
|
1242 |
msgid "You do not have sufficient permissions to access this page."
|
1243 |
msgstr "你沒有足夠權限訪問此頁"
|
1244 |
|
|
|
|
|
|
|
|
|
1245 |
#: wp-statistics.php:241
|
1246 |
msgid "WP Statistics %s installed on"
|
1247 |
msgstr ""
|
1290 |
msgid "Browscap.ini update on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1294 |
#. Plugin URI of the plugin/theme
|
1295 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.5.2) #-#-#-#-#
|
1296 |
#. Author URI of the plugin/theme
|
1297 |
msgid "http://wp-statistics.com/"
|
1298 |
msgstr "HTTP://wp-statistics.com/"
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "最近訪客"
|
1335 |
|
1336 |
+
#: dashboard.php:62 includes/log/top-referring.php:62
|
1337 |
+
#: includes/log/top-referring.php:79 includes/log/widgets/referring.php:11
|
1338 |
#: includes/settings/tabs/wps-overview-display.php:26
|
1339 |
msgid "Top Referring Sites"
|
1340 |
msgstr "引用網站排名"
|
1408 |
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1409 |
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1410 |
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1411 |
+
#: includes/log/top-referring.php:75 includes/log/widgets/about.php:7
|
1412 |
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1413 |
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1414 |
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1415 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:9
|
1416 |
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1417 |
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
1418 |
msgid "Click to toggle"
|
1534 |
msgstr "#hash #"
|
1535 |
|
1536 |
#: includes/log/last-search.php:115 includes/log/last-visitor.php:106
|
1537 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:110
|
1538 |
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
|
1539 |
#: includes/settings/tabs/wps-overview-display.php:33
|
1540 |
#: includes/settings/tabs/wps-overview-display.php:113
|
1543 |
|
1544 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1545 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1546 |
+
#: includes/log/top-referring.php:151
|
1547 |
msgid "Page"
|
1548 |
msgstr "頁面"
|
1549 |
|
1550 |
#: includes/log/last-search.php:159 includes/log/last-visitor.php:139
|
1551 |
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1552 |
+
#: includes/log/top-referring.php:151
|
1553 |
msgid "From"
|
1554 |
msgstr "由"
|
1555 |
|
1556 |
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1557 |
+
#: includes/log/top-referring.php:65 includes/log/top-referring.php:68
|
1558 |
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
1559 |
msgid "All"
|
1560 |
msgstr "全部"
|
1643 |
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1644 |
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1645 |
#: includes/settings/tabs/wps-general.php:122
|
1646 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:137
|
1647 |
msgid "Visits"
|
1648 |
msgstr "點擊"
|
1649 |
|
1651 |
msgid "To be added soon"
|
1652 |
msgstr "功能快將加入"
|
1653 |
|
1654 |
+
#: includes/log/top-referring.php:77
|
1655 |
msgid "Referring sites from"
|
1656 |
msgstr "推薦從網站"
|
1657 |
|
1658 |
+
#: includes/log/top-referring.php:135 includes/log/widgets/referring.php:59
|
1659 |
msgid "References"
|
1660 |
msgstr "引用"
|
1661 |
|
1685 |
|
1686 |
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1687 |
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1688 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:11
|
1689 |
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1690 |
#: includes/log/widgets/words.php:11
|
1691 |
msgid "More"
|
1699 |
msgid "Today Visitors Map"
|
1700 |
msgstr "今天訪客地圖"
|
1701 |
|
1702 |
+
#: includes/log/widgets/referring.php:60
|
1703 |
msgid "Address"
|
1704 |
msgstr "網址"
|
1705 |
|
1840 |
msgstr "恭喜,您的安裝是已經到目前為止,什麼都不做。"
|
1841 |
|
1842 |
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1843 |
+
#: includes/optimization/wps-optimization.php:215
|
1844 |
msgid "Export"
|
1845 |
msgstr "出口"
|
1846 |
|
1892 |
|
1893 |
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1894 |
#: includes/settings/tabs/wps-general.php:138
|
1895 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:138
|
1896 |
#: wp-statistics.php:360 wp-statistics.php:436
|
1897 |
msgid "Visitors"
|
1898 |
msgstr "訪客"
|
2208 |
msgid "Install routine complete."
|
2209 |
msgstr "安裝例行完成。"
|
2210 |
|
2211 |
+
#: includes/optimization/wps-optimization.php:214
|
2212 |
msgid "Resources/Information"
|
2213 |
msgstr "資源/資訊"
|
2214 |
|
2215 |
+
#: includes/optimization/wps-optimization.php:216
|
2216 |
msgid "Purging"
|
2217 |
msgstr "清除"
|
2218 |
|
2219 |
+
#: includes/optimization/wps-optimization.php:217
|
2220 |
msgid "Database"
|
2221 |
msgstr "資料庫"
|
2222 |
|
2223 |
+
#: includes/optimization/wps-optimization.php:218
|
2224 |
msgid "Updates"
|
2225 |
msgstr "更新"
|
2226 |
|
2227 |
+
#: includes/optimization/wps-optimization.php:219
|
2228 |
msgid "Historical"
|
2229 |
msgstr ""
|
2230 |
|
2663 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2664 |
msgstr "此功能不會將 IP 位址存儲在資料庫中,但相反用唯一的雜湊。\"Store 整個使用者代理 string\"設置將被禁用,如果選擇了此選項。你將不能恢復的 IP 位址在將來恢復位置的資訊,如果啟用此選項。"
|
2665 |
|
2666 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:136
|
2667 |
msgid "Users Online"
|
2668 |
msgstr "使用者線上"
|
2669 |
|
manual/WP Statistics Admin Manual.html
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
<head>
|
4 |
<meta http-equiv="content-type" content="text/html; charset=windows-1252"/>
|
5 |
<title></title>
|
6 |
-
<meta name="generator" content="LibreOffice
|
7 |
<meta name="created" content="2014-06-03T18:16:55.146000000"/>
|
8 |
-
<meta name="changed" content="2015-
|
9 |
<style type="text/css">
|
10 |
@page { margin: 2cm }
|
11 |
p { margin-bottom: 0.25cm; line-height: 120% }
|
@@ -701,7 +701,7 @@ appropriate database table names.</p>
|
|
701 |
<p>DROP TABLE IF EXISTS wp_statistics_useronline,
|
702 |
wp_statistics_visit, wp_statistics_visitor,
|
703 |
wp_statistics_exclusions, wp_statistics_pages,
|
704 |
-
wp_statistics_historical</p>
|
705 |
</ul>
|
706 |
<h1 class="western" style="page-break-before: always"><a name="__RefHeading__111_1031655526"></a>
|
707 |
Main Interface</h1>
|
@@ -4583,7 +4583,7 @@ the external functions can be found in:</p>
|
|
4583 |
</p>
|
4584 |
<div title="footer">
|
4585 |
<p style="margin-top: 0.5cm; margin-bottom: 0cm; line-height: 100%"> Page
|
4586 |
-
<sdfield type=PAGE subtype=RANDOM format=PAGE>
|
4587 |
</div>
|
4588 |
</body>
|
4589 |
</html>
|
3 |
<head>
|
4 |
<meta http-equiv="content-type" content="text/html; charset=windows-1252"/>
|
5 |
<title></title>
|
6 |
+
<meta name="generator" content="LibreOffice 5.0.0.5 (Windows)"/>
|
7 |
<meta name="created" content="2014-06-03T18:16:55.146000000"/>
|
8 |
+
<meta name="changed" content="2015-08-14T09:51:40.743000000"/>
|
9 |
<style type="text/css">
|
10 |
@page { margin: 2cm }
|
11 |
p { margin-bottom: 0.25cm; line-height: 120% }
|
701 |
<p>DROP TABLE IF EXISTS wp_statistics_useronline,
|
702 |
wp_statistics_visit, wp_statistics_visitor,
|
703 |
wp_statistics_exclusions, wp_statistics_pages,
|
704 |
+
wp_statistics_historical, wp_statistics_search</p>
|
705 |
</ul>
|
706 |
<h1 class="western" style="page-break-before: always"><a name="__RefHeading__111_1031655526"></a>
|
707 |
Main Interface</h1>
|
4583 |
</p>
|
4584 |
<div title="footer">
|
4585 |
<p style="margin-top: 0.5cm; margin-bottom: 0cm; line-height: 100%"> Page
|
4586 |
+
<sdfield type=PAGE subtype=RANDOM format=PAGE>71</sdfield> of <sdfield type=DOCSTAT subtype=PAGE format=PAGE>71</sdfield></p>
|
4587 |
</div>
|
4588 |
</body>
|
4589 |
</html>
|
manual/WP Statistics Admin Manual.odt
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wp-statistics.com/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 9.5.
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
@@ -234,6 +234,14 @@ We do not recommend using a caching plugin along with WP Statistics.
|
|
234 |
|
235 |
Do you have eAccelerator installed? If so this is a known issue with eAccelerator and PHP's "anonymous" functions, which are used in the user agent parsing library. As no new versions of eAccelerator have been released for over 3 years, you should look to replace it or disable it.
|
236 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
== Screenshots ==
|
238 |
1. View stats page.
|
239 |
2. View latest search words.
|
@@ -247,6 +255,9 @@ Do you have eAccelerator installed? If so this is a known issue with eAccelerat
|
|
247 |
10. View latest search engine referrers Statistics page.
|
248 |
|
249 |
== Upgrade Notice ==
|
|
|
|
|
|
|
250 |
= 9.5.2 =
|
251 |
BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. This release creates a new table for search engine/words for performance improvements, however you must convert your data to the new format via the Statistics->Optimization->Database tab.
|
252 |
|
@@ -288,6 +299,15 @@ BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure
|
|
288 |
This release updates some core code to do with timezones, hence the change to version 9.0, if you see any issues with timezones, please let us know. In addition, you may see an increase in your visits count as a race condition that dropped some visits has been resolved.
|
289 |
|
290 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
= 9.5.2 =
|
292 |
* Release Date: August 8, 2015
|
293 |
* Fixed: XSS issue with top-referrers page, thanks Swift Security (http://swiftsecurity.swte.ch/).
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 9.5.3
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
234 |
|
235 |
Do you have eAccelerator installed? If so this is a known issue with eAccelerator and PHP's "anonymous" functions, which are used in the user agent parsing library. As no new versions of eAccelerator have been released for over 3 years, you should look to replace it or disable it.
|
236 |
|
237 |
+
= I've installed WP Statistics for the first time on a site and when I go to the statistics pages I get an error saying like "The following plugin table(s) do not exist in the database" =
|
238 |
+
|
239 |
+
This is because something has gone wrong during the installation.
|
240 |
+
|
241 |
+
At the end of the message will be a list of tables that are missing, you can use the provided link to re-run the installation routine. If that does not resolve the issue and the visitors table is the only table listed, you may want to check your MySQL version. Some older versions of MySQL (in the 5.0.x series) have issues with complex compound indexes, which we use on the visitors table. If this is the case, check with your hosting provider and see if they can upgrade to a newer version of MySQL.
|
242 |
+
|
243 |
+
If you still have issues open a new thread on the support forum and we'll try and resolve it for you.
|
244 |
+
|
245 |
== Screenshots ==
|
246 |
1. View stats page.
|
247 |
2. View latest search words.
|
255 |
10. View latest search engine referrers Statistics page.
|
256 |
|
257 |
== Upgrade Notice ==
|
258 |
+
= 9.5.3 =
|
259 |
+
BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. This release creates a new table for search engine/words for performance improvements, however you must convert your data to the new format via the Statistics->Optimization->Database tab.
|
260 |
+
|
261 |
= 9.5.2 =
|
262 |
BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. This release creates a new table for search engine/words for performance improvements, however you must convert your data to the new format via the Statistics->Optimization->Database tab.
|
263 |
|
299 |
This release updates some core code to do with timezones, hence the change to version 9.0, if you see any issues with timezones, please let us know. In addition, you may see an increase in your visits count as a race condition that dropped some visits has been resolved.
|
300 |
|
301 |
== Changelog ==
|
302 |
+
= 9.5.3 =
|
303 |
+
* Release Date: August 19, 2015
|
304 |
+
* Added: More robust error reporting if a plugin table is missing.
|
305 |
+
* Added: Support to export the search table.
|
306 |
+
* Fixed: The install script for older versions of MySQL (5.0.x).
|
307 |
+
* Fixed: Export script no longer generates errors when exporting an empty table.
|
308 |
+
* Fixed: WP_Debug error on $crawler when it was an object but didn't have the right properties (aka wasn't the right object).
|
309 |
+
* Fixed: Sidebar widget works again in WordPress 4.3.
|
310 |
+
|
311 |
= 9.5.2 =
|
312 |
* Release Date: August 8, 2015
|
313 |
* Fixed: XSS issue with top-referrers page, thanks Swift Security (http://swiftsecurity.swte.ch/).
|
widget.php
CHANGED
@@ -221,6 +221,8 @@
|
|
221 |
|
222 |
$WP_Statistics->update_option('widget', $widget_options);
|
223 |
}
|
|
|
|
|
224 |
}
|
225 |
|
226 |
/**
|
221 |
|
222 |
$WP_Statistics->update_option('widget', $widget_options);
|
223 |
}
|
224 |
+
|
225 |
+
return array();
|
226 |
}
|
227 |
|
228 |
/**
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
-
Version: 9.5.
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
@@ -12,7 +12,7 @@ License: GPL2
|
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
-
define('WP_STATISTICS_VERSION', '9.5.
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|
@@ -669,7 +669,25 @@ License: GPL2
|
|
669 |
|
670 |
if( $result != 7 ) {
|
671 |
$get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/optimization&tab=database";
|
672 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
673 |
}
|
674 |
|
675 |
// Load the postbox script that provides the widget style boxes.
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
+
Version: 9.5.3
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
+
define('WP_STATISTICS_VERSION', '9.5.3');
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|
669 |
|
670 |
if( $result != 7 ) {
|
671 |
$get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/optimization&tab=database";
|
672 |
+
|
673 |
+
$missing_tables = array();
|
674 |
+
|
675 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_visitor'" );
|
676 |
+
if( $result != 1 ) { $missing_tables[] = $wpdb->prefix . 'statistics_visitor'; }
|
677 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_visit'" );
|
678 |
+
if( $result != 1 ) { $missing_tables[] = $wpdb->prefix . 'statistics_visit'; }
|
679 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_exclusions'" );
|
680 |
+
if( $result != 1 ) { $missing_tables[] = $wpdb->prefix . 'statistics_exclusions'; }
|
681 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_historical'" );
|
682 |
+
if( $result != 1 ) { $missing_tables[] = $wpdb->prefix . 'statistics_historical'; }
|
683 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_useronline'" );
|
684 |
+
if( $result != 1 ) { $missing_tables[] = $wpdb->prefix . 'statistics_useronline'; }
|
685 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_pages'" );
|
686 |
+
if( $result != 1 ) { $missing_tables[] = $wpdb->prefix . 'statistics_pages'; }
|
687 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_search'" );
|
688 |
+
if( $result != 1 ) { $missing_tables[] = $wpdb->prefix . 'statistics_search'; }
|
689 |
+
|
690 |
+
wp_die('<div class="error"><p>' . sprintf(__('The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: ', 'wp_statistics'),'<a href="' . $get_bloginfo_url . '">','</a>') . implode(', ', $missing_tables) . '</p></div>');
|
691 |
}
|
692 |
|
693 |
// Load the postbox script that provides the widget style boxes.
|
wps-install.php
CHANGED
@@ -48,6 +48,26 @@
|
|
48 |
KEY location (location)
|
49 |
) CHARSET=utf8");
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
$create_exclusion_table = ("CREATE TABLE {$wp_prefix}statistics_exclusions (
|
52 |
ID int(11) NOT NULL AUTO_INCREMENT,
|
53 |
date date NOT NULL,
|
@@ -114,7 +134,17 @@
|
|
114 |
dbDelta($create_pages_table);
|
115 |
dbDelta($create_historical_table);
|
116 |
dbDelta($create_search_table);
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
|
|
|
|
|
|
|
|
118 |
// Check to see if the date_ip index still exists, if so get rid of it.
|
119 |
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = 'date_ip'");
|
120 |
|
@@ -206,6 +236,20 @@
|
|
206 |
// However that seems VERY unlikely.
|
207 |
$exclude_admins = $WP_Statistics->get_option('exclude_administrator', '2');
|
208 |
if( $exclude_admins == '2' ) { $WP_Statistics->update_option('exclude_administrator', '1'); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
}
|
210 |
|
211 |
// If this is a first time install or an upgrade and we've added options, set some intelligent defaults.
|
48 |
KEY location (location)
|
49 |
) CHARSET=utf8");
|
50 |
|
51 |
+
$create_visitor_table_old = ("CREATE TABLE {$wp_prefix}statistics_visitor (
|
52 |
+
ID int(11) NOT NULL AUTO_INCREMENT,
|
53 |
+
last_counter date NOT NULL,
|
54 |
+
referred text NOT NULL,
|
55 |
+
agent varchar(255) NOT NULL,
|
56 |
+
platform varchar(255),
|
57 |
+
version varchar(255),
|
58 |
+
UAString varchar(255),
|
59 |
+
ip varchar(60) NOT NULL,
|
60 |
+
location varchar(10),
|
61 |
+
hits int(11),
|
62 |
+
honeypot int(11),
|
63 |
+
PRIMARY KEY (ID),
|
64 |
+
UNIQUE KEY date_ip_agent (last_counter,ip,agent (75),platform (75),version (75)),
|
65 |
+
KEY agent (agent),
|
66 |
+
KEY platform (platform),
|
67 |
+
KEY version (version),
|
68 |
+
KEY location (location)
|
69 |
+
) CHARSET=utf8");
|
70 |
+
|
71 |
$create_exclusion_table = ("CREATE TABLE {$wp_prefix}statistics_exclusions (
|
72 |
ID int(11) NOT NULL AUTO_INCREMENT,
|
73 |
date date NOT NULL,
|
134 |
dbDelta($create_pages_table);
|
135 |
dbDelta($create_historical_table);
|
136 |
dbDelta($create_search_table);
|
137 |
+
|
138 |
+
// Some old versions (in the 5.0.x line) of MySQL have issue with the compound index on the visitor table
|
139 |
+
// so let's make sure it was created, if not, use the older format to create the table manually instead of
|
140 |
+
// using the dbDelta() call.
|
141 |
+
$dbname = DB_NAME;
|
142 |
+
$result = $wpdb->query("SHOW TABLES WHERE `Tables_in_{$dbname}` = '{$wpdb->prefix}statistics_visitor'" );
|
143 |
|
144 |
+
if( $result != 1 ) {
|
145 |
+
$wpdb->query( $create_visitor_table_old );
|
146 |
+
}
|
147 |
+
|
148 |
// Check to see if the date_ip index still exists, if so get rid of it.
|
149 |
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = 'date_ip'");
|
150 |
|
236 |
// However that seems VERY unlikely.
|
237 |
$exclude_admins = $WP_Statistics->get_option('exclude_administrator', '2');
|
238 |
if( $exclude_admins == '2' ) { $WP_Statistics->update_option('exclude_administrator', '1'); }
|
239 |
+
|
240 |
+
// WordPress 4.3 broke the diplay of the sidebar widget because it no longer accepted a null value
|
241 |
+
// to be returned from the widget update function, let's look to see if we need to update any
|
242 |
+
// occurances in the options table.
|
243 |
+
$widget_options = get_option( 'widget_wpstatistics_widget' );
|
244 |
+
if( is_array( $widget_options ) ) {
|
245 |
+
foreach( $widget_options as $key => $value ) {
|
246 |
+
// We want to update all null array keys that are integers.
|
247 |
+
if( $value === null && is_int( $key ) ) { $widget_options[$key] = array(); }
|
248 |
+
}
|
249 |
+
|
250 |
+
// Store the widget options back to the database.
|
251 |
+
update_option( 'widget_wpstatistics_widget', $widget_options );
|
252 |
+
}
|
253 |
}
|
254 |
|
255 |
// If this is a first time install or an upgrade and we've added options, set some intelligent defaults.
|