Version Description
- Bug Fix: fixes automatic update switched on after each update
- Bug Fix: add missing domain to an i18n string
- Bug Fix: small CSS fix in item-reports.css
- Bug Fix: using PHP to get web pages URIs instead of JavaScript
- Enhancement: Italian translation updated
- Enhancement: set the cookies to expire in 7 days
Download this release
Release Info
Developer | deconf |
Plugin | ![]() |
Version | 4.8.1.2 |
Comparing to | |
See all releases |
Code changes from version 4.8.1 to 4.8.1.2
- admin/css/item-reports.css +0 -4
- admin/js/item-reports.js +1 -1
- admin/setup.php +4 -4
- admin/widgets.php +3 -6
- config.php +18 -1
- front/ajax-actions.php +1 -1
- front/css/item-reports.css +0 -4
- front/js/item-reports.js +1 -1
- front/setup.php +1 -0
- gadwp.php +2 -2
- languages/ga-dash-ar.po +68 -58
- languages/ga-dash-cs_CZ.po +57 -51
- languages/ga-dash-de_DE.po +63 -57
- languages/ga-dash-es_ES.po +64 -57
- languages/ga-dash-fr_FR.po +56 -51
- languages/ga-dash-hu_HU.po +63 -57
- languages/ga-dash-it_IT.mo +0 -0
- languages/ga-dash-it_IT.po +1275 -1285
- languages/ga-dash-ja.po +63 -57
- languages/ga-dash-nl_NL.po +63 -57
- languages/ga-dash-pl_PL.po +63 -57
- languages/ga-dash-pt_BR.po +63 -57
- languages/ga-dash-ro_RO.mo +0 -0
- languages/ga-dash-ro_RO.po +60 -57
- languages/ga-dash-ru_RU.po +57 -52
- languages/ga-dash.pot +55 -50
- readme.txt +14 -2
- tools/tools.php +1 -1
admin/css/item-reports.css
CHANGED
@@ -11,10 +11,6 @@
|
|
11 |
color: #2ea2cc;
|
12 |
}
|
13 |
|
14 |
-
.gadwp-icon:selected {
|
15 |
-
color: #0074a2;
|
16 |
-
}
|
17 |
-
|
18 |
.gadwp-icon-oldwp {
|
19 |
padding-top: 5px;
|
20 |
}
|
11 |
color: #2ea2cc;
|
12 |
}
|
13 |
|
|
|
|
|
|
|
|
|
14 |
.gadwp-icon-oldwp {
|
15 |
padding-top: 5px;
|
16 |
}
|
admin/js/item-reports.js
CHANGED
@@ -70,7 +70,7 @@ jQuery.fn.extend( {
|
|
70 |
var tools = {
|
71 |
set_cookie : function ( name, value ) {
|
72 |
var date_item = new Date();
|
73 |
-
date_item.setTime( date_item.getTime() + ( 24 * 60 * 60 * 1000 *
|
74 |
var expires = "expires=" + date_item.toUTCString();
|
75 |
document.cookie = "gadwp_ir_" + name + "=" + value + "; " + expires + "; path=/";
|
76 |
},
|
70 |
var tools = {
|
71 |
set_cookie : function ( name, value ) {
|
72 |
var date_item = new Date();
|
73 |
+
date_item.setTime( date_item.getTime() + ( 24 * 60 * 60 * 1000 * 7 ) );
|
74 |
var expires = "expires=" + date_item.toUTCString();
|
75 |
document.cookie = "gadwp_ir_" + name + "=" + value + "; " + expires + "; path=/";
|
76 |
},
|
admin/setup.php
CHANGED
@@ -86,7 +86,7 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
86 |
|
87 |
if ( get_transient( 'ga_dash_gapi_errors' ) ) {
|
88 |
$ed_bubble = '!';
|
89 |
-
}else{
|
90 |
$ed_bubble = '';
|
91 |
}
|
92 |
|
@@ -232,11 +232,11 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
232 |
*/
|
233 |
function admin_notice() {
|
234 |
if ( get_option( 'gadwp_got_updated' ) ) :
|
235 |
-
|
236 |
<div id="gadwp-notice" class="notice is-dismissible">
|
237 |
-
<p><?php echo sprintf( __('Google Analytics Dashboard for WP has been updated to version %s.', 'ga-dash' ), GADWP_CURRENT_VERSION).' '.sprintf(__('For details, check out %1$s and %2$s
|
238 |
</div>
|
239 |
-
|
240 |
endif;
|
241 |
}
|
242 |
}
|
86 |
|
87 |
if ( get_transient( 'ga_dash_gapi_errors' ) ) {
|
88 |
$ed_bubble = '!';
|
89 |
+
} else {
|
90 |
$ed_bubble = '';
|
91 |
}
|
92 |
|
232 |
*/
|
233 |
function admin_notice() {
|
234 |
if ( get_option( 'gadwp_got_updated' ) ) :
|
235 |
+
?>
|
236 |
<div id="gadwp-notice" class="notice is-dismissible">
|
237 |
+
<p><?php echo sprintf( __('Google Analytics Dashboard for WP has been updated to version %s.', 'ga-dash' ), GADWP_CURRENT_VERSION).' '.sprintf( __('For details, check out %1$s and %2$s.', 'ga-dash' ), sprintf(' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_notice&utm_medium=link&utm_content=release_notice&utm_campaign=gadwp">%s</a> ', __('the documentation page', 'ga-dash') ), sprintf(' <a href="%1$s">%2$s</a>', esc_url( get_admin_url( null, 'admin.php?page=gadash_settings' ) ), __('the plugin's settings page', 'ga-dash') ) ); ?></p>
|
238 |
</div>
|
239 |
+
<?php
|
240 |
endif;
|
241 |
}
|
242 |
}
|
admin/widgets.php
CHANGED
@@ -97,20 +97,17 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
97 |
}
|
98 |
if ( isset( $_REQUEST['query'] ) ) {
|
99 |
$query = $_REQUEST['query'];
|
100 |
-
GADWP_Tools::set_cookie( 'default_metric', $query );
|
101 |
-
$this->gadwp->config->set_plugin_options();
|
102 |
} else {
|
103 |
$default_metric = GADWP_Tools::get_cookie( 'default_metric' );
|
104 |
-
$query = $default_metric ?
|
105 |
}
|
106 |
if ( isset( $_REQUEST['period'] ) ) {
|
107 |
$period = $_REQUEST['period'];
|
108 |
-
GADWP_Tools::set_cookie( 'default_dimension', $period );
|
109 |
-
$this->gadwp->config->set_plugin_options();
|
110 |
} else {
|
111 |
$default_dimension = GADWP_Tools::get_cookie( 'default_dimension' );
|
112 |
-
$period = $default_dimension ?
|
113 |
}
|
|
|
114 |
?>
|
115 |
<select id="ga_dash_period" name="period" onchange="this.form.submit()">
|
116 |
<option value="realtime" <?php selected ( "realtime", $period, true ); ?>><?php _e("Real-Time",'ga-dash'); ?></option>
|
97 |
}
|
98 |
if ( isset( $_REQUEST['query'] ) ) {
|
99 |
$query = $_REQUEST['query'];
|
|
|
|
|
100 |
} else {
|
101 |
$default_metric = GADWP_Tools::get_cookie( 'default_metric' );
|
102 |
+
$query = $default_metric ? $default_metric : 'sessions';
|
103 |
}
|
104 |
if ( isset( $_REQUEST['period'] ) ) {
|
105 |
$period = $_REQUEST['period'];
|
|
|
|
|
106 |
} else {
|
107 |
$default_dimension = GADWP_Tools::get_cookie( 'default_dimension' );
|
108 |
+
$period = $default_dimension ? $default_dimension : '30daysAgo';
|
109 |
}
|
110 |
+
|
111 |
?>
|
112 |
<select id="ga_dash_period" name="period" onchange="this.form.submit()">
|
113 |
<option value="realtime" <?php selected ( "realtime", $period, true ); ?>><?php _e("Real-Time",'ga-dash'); ?></option>
|
config.php
CHANGED
@@ -27,6 +27,7 @@ if (! class_exists('GADWP_Config')) {
|
|
27 |
{
|
28 |
// get plugin options
|
29 |
$this->get_plugin_options();
|
|
|
30 |
$this->access = array_map(array(
|
31 |
$this,
|
32 |
'map'
|
@@ -37,6 +38,23 @@ if (! class_exists('GADWP_Config')) {
|
|
37 |
), 10, 2);
|
38 |
}
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
public function get_major_version($version)
|
41 |
{
|
42 |
$exploded_version = explode('.', $version);
|
@@ -203,7 +221,6 @@ if (! class_exists('GADWP_Config')) {
|
|
203 |
if (GADWP_CURRENT_VERSION != get_option('gadwp_version')) {
|
204 |
GADWP_Tools::clear_cache();
|
205 |
$flag = true;
|
206 |
-
$this->options['automatic_updates_minorversion'] = 1;
|
207 |
delete_transient('ga_dash_lasterror');
|
208 |
update_option('gadwp_version', GADWP_CURRENT_VERSION);
|
209 |
update_option('gadwp_got_updated', true);
|
27 |
{
|
28 |
// get plugin options
|
29 |
$this->get_plugin_options();
|
30 |
+
$this->last_requested_report();
|
31 |
$this->access = array_map(array(
|
32 |
$this,
|
33 |
'map'
|
38 |
), 10, 2);
|
39 |
}
|
40 |
|
41 |
+
/*
|
42 |
+
* Stores the last requested dimension and metric in cookies
|
43 |
+
*/
|
44 |
+
private function last_requested_report(){
|
45 |
+
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { //Don't store queries while doing ajax
|
46 |
+
return;
|
47 |
+
}
|
48 |
+
|
49 |
+
if ( isset( $_REQUEST['period'] ) ) {
|
50 |
+
GADWP_Tools::set_cookie( 'default_dimension', $_REQUEST['period'] );
|
51 |
+
}
|
52 |
+
|
53 |
+
if ( isset( $_REQUEST['query'] ) ) {
|
54 |
+
GADWP_Tools::set_cookie( 'default_metric', $_REQUEST['query'] );
|
55 |
+
}
|
56 |
+
}
|
57 |
+
|
58 |
public function get_major_version($version)
|
59 |
{
|
60 |
$exploded_version = explode('.', $version);
|
221 |
if (GADWP_CURRENT_VERSION != get_option('gadwp_version')) {
|
222 |
GADWP_Tools::clear_cache();
|
223 |
$flag = true;
|
|
|
224 |
delete_transient('ga_dash_lasterror');
|
225 |
update_option('gadwp_version', GADWP_CURRENT_VERSION);
|
226 |
update_option('gadwp_got_updated', true);
|
front/ajax-actions.php
CHANGED
@@ -43,7 +43,7 @@ if ( ! class_exists( 'GADWP_Frontend_Ajax' ) ) {
|
|
43 |
$from = $_REQUEST['from'];
|
44 |
$to = $_REQUEST['to'];
|
45 |
$query = $_REQUEST['query'];
|
46 |
-
$uri = $_REQUEST['
|
47 |
|
48 |
$uri = '/' . ltrim($uri,'/');
|
49 |
|
43 |
$from = $_REQUEST['from'];
|
44 |
$to = $_REQUEST['to'];
|
45 |
$query = $_REQUEST['query'];
|
46 |
+
$uri = $_REQUEST['filter'];
|
47 |
|
48 |
$uri = '/' . ltrim($uri,'/');
|
49 |
|
front/css/item-reports.css
CHANGED
@@ -11,10 +11,6 @@
|
|
11 |
color: #2ea2cc;
|
12 |
}
|
13 |
|
14 |
-
.gadwp-icon:selected {
|
15 |
-
color: #0074a2;
|
16 |
-
}
|
17 |
-
|
18 |
.gadwp-icon-oldwp {
|
19 |
padding-top: 5px;
|
20 |
}
|
11 |
color: #2ea2cc;
|
12 |
}
|
13 |
|
|
|
|
|
|
|
|
|
14 |
.gadwp-icon-oldwp {
|
15 |
padding-top: 5px;
|
16 |
}
|
front/js/item-reports.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
"use strict";
|
1 |
+
"use strict";
|
front/setup.php
CHANGED
@@ -107,6 +107,7 @@ if ( ! class_exists( 'GADWP_Frontend_Setup' ) ) {
|
|
107 |
),
|
108 |
'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
|
109 |
'region' => $region,
|
|
|
110 |
)
|
111 |
);
|
112 |
/* @formatter:on */
|
107 |
),
|
108 |
'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
|
109 |
'region' => $region,
|
110 |
+
'filter' => $_SERVER["REQUEST_URI"]
|
111 |
)
|
112 |
);
|
113 |
/* @formatter:on */
|
gadwp.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://deconf.com
|
5 |
* Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
|
6 |
* Author: Alin Marcu
|
7 |
-
* Version: 4.8.1
|
8 |
* Author URI: https://deconf.com
|
9 |
*/
|
10 |
|
@@ -82,7 +82,7 @@ if ( ! class_exists( 'GADWP_Manager' ) ) {
|
|
82 |
|
83 |
// Plugin Version
|
84 |
if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
|
85 |
-
define( 'GADWP_CURRENT_VERSION', '4.8.1' );
|
86 |
}
|
87 |
|
88 |
// Plugin Path
|
4 |
* Plugin URI: https://deconf.com
|
5 |
* Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
|
6 |
* Author: Alin Marcu
|
7 |
+
* Version: 4.8.1.2
|
8 |
* Author URI: https://deconf.com
|
9 |
*/
|
10 |
|
82 |
|
83 |
// Plugin Version
|
84 |
if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
|
85 |
+
define( 'GADWP_CURRENT_VERSION', '4.8.1.2' );
|
86 |
}
|
87 |
|
88 |
// Plugin Path
|
languages/ga-dash-ar.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-07-05
|
7 |
-
"PO-Revision-Date: 2015-07-05
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
|
10 |
"Language: ar\n"
|
@@ -12,7 +12,11 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
-
"X-Poedit-KeywordsList:
|
|
|
|
|
|
|
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
@@ -526,18 +530,18 @@ msgstr "اعدادات الظهور"
|
|
526 |
msgid "Tracking Code"
|
527 |
msgstr "كود التعقب"
|
528 |
|
529 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
530 |
msgid "Today"
|
531 |
msgstr "اليوم"
|
532 |
|
533 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
534 |
msgid "Yesterday"
|
535 |
msgstr "البارحة"
|
536 |
|
537 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
538 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
539 |
-
#: .././admin/widgets.php:
|
540 |
-
#: .././admin/widgets.php:
|
541 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
542 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
543 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -547,17 +551,23 @@ msgid "Last %d Days"
|
|
547 |
msgstr ""
|
548 |
|
549 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
550 |
-
#: .././admin/widgets.php:
|
551 |
#: .././front/setup.php:77 .././front/setup.php:78
|
552 |
#, php-format
|
553 |
msgid "%s Year"
|
554 |
-
|
555 |
-
|
556 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
msgid "One"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
561 |
msgid "Three"
|
562 |
msgstr ""
|
563 |
|
@@ -567,85 +577,85 @@ msgid "Unique Views"
|
|
567 |
msgstr ""
|
568 |
|
569 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
570 |
-
#: .././admin/widgets.php:
|
571 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
572 |
msgid "Users"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
576 |
msgid "Organic"
|
577 |
msgstr "عضوي"
|
578 |
|
579 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
580 |
-
#: .././admin/widgets.php:
|
581 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
582 |
msgid "Page Views"
|
583 |
msgstr "مشاهدات الصفحة"
|
584 |
|
585 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
586 |
-
#: .././admin/widgets.php:
|
587 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
588 |
msgid "Bounce Rate"
|
589 |
msgstr "نسبة القفز"
|
590 |
|
591 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
592 |
msgid "Location"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
596 |
#: .././tools/gapi.php:503
|
597 |
msgid "Referrers"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
601 |
#: .././tools/gapi.php:536
|
602 |
msgid "Searches"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
606 |
msgid "Traffic Details"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
610 |
-
#: .././admin/widgets.php:
|
611 |
-
#: .././admin/widgets.php:
|
612 |
msgid "A JavaScript Error is blocking plugin resources!"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
616 |
msgid "Traffic Mediums"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
620 |
msgid "Visitor Type"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
624 |
msgid "Social Networks"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
628 |
msgid "Search Engines"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
632 |
#: .././front/setup.php:101
|
633 |
msgid "Organic Search"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
637 |
#: .././front/setup.php:102
|
638 |
msgid "Pages/Session"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
642 |
-
#: .././admin/widgets.php:
|
643 |
-
#: .././admin/widgets.php:
|
644 |
-
#: .././admin/widgets.php:
|
645 |
-
#: .././admin/widgets.php:
|
646 |
-
#: .././admin/widgets.php:
|
647 |
-
#: .././admin/widgets.php:
|
648 |
-
#: .././admin/widgets.php:
|
649 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
650 |
msgstr ""
|
651 |
|
@@ -653,12 +663,12 @@ msgstr ""
|
|
653 |
msgid "Not enough data collected"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
657 |
-
#: .././admin/widgets.php:
|
658 |
-
#: .././admin/widgets.php:
|
659 |
-
#: .././admin/widgets.php:
|
660 |
-
#: .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
663 |
msgid "This report is unavailable"
|
664 |
msgstr ""
|
@@ -725,53 +735,53 @@ msgstr ""
|
|
725 |
msgid "Find out more!"
|
726 |
msgstr "اعرف أكثر!"
|
727 |
|
728 |
-
#: .././admin/widgets.php:
|
729 |
msgid "Real-Time"
|
730 |
msgstr "الوقت الحقيقي"
|
731 |
|
732 |
-
#: .././admin/widgets.php:
|
733 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
734 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
735 |
#: .././tools/gapi.php:695
|
736 |
msgid "Sessions"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: .././admin/widgets.php:
|
740 |
msgid "Pages"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: .././admin/widgets.php:
|
744 |
msgid "REFERRAL"
|
745 |
msgstr "المصدر"
|
746 |
|
747 |
-
#: .././admin/widgets.php:
|
748 |
msgid "ORGANIC"
|
749 |
msgstr "عضوي"
|
750 |
|
751 |
-
#: .././admin/widgets.php:
|
752 |
-
#: .././admin/widgets.php:
|
753 |
msgid "SOCIAL"
|
754 |
msgstr "اجتماعي"
|
755 |
|
756 |
-
#: .././admin/widgets.php:
|
757 |
-
#: .././admin/widgets.php:
|
758 |
msgid "CAMPAIGN"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: .././admin/widgets.php:
|
762 |
-
#: .././admin/widgets.php:
|
763 |
msgid "DIRECT"
|
764 |
msgstr "مباشر"
|
765 |
|
766 |
-
#: .././admin/widgets.php:
|
767 |
msgid "NEW"
|
768 |
msgstr "جديد"
|
769 |
|
770 |
-
#: .././admin/widgets.php:
|
771 |
msgid "REFERRALS"
|
772 |
msgstr "المصادر"
|
773 |
|
774 |
-
#: .././admin/widgets.php:
|
775 |
msgid "KEYWORDS"
|
776 |
msgstr "الكلمات المفتاحية"
|
777 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-07-05 18:35+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-07-05 18:35+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
|
10 |
"Language: ar\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
18 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
19 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
530 |
msgid "Tracking Code"
|
531 |
msgstr "كود التعقب"
|
532 |
|
533 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
|
534 |
msgid "Today"
|
535 |
msgstr "اليوم"
|
536 |
|
537 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
|
538 |
msgid "Yesterday"
|
539 |
msgstr "البارحة"
|
540 |
|
541 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
542 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:115
|
543 |
+
#: .././admin/widgets.php:116 .././admin/widgets.php:117
|
544 |
+
#: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
|
545 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
546 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
547 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
551 |
msgstr ""
|
552 |
|
553 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
554 |
+
#: .././admin/widgets.php:119 .././admin/widgets.php:120
|
555 |
#: .././front/setup.php:77 .././front/setup.php:78
|
556 |
#, php-format
|
557 |
msgid "%s Year"
|
558 |
+
msgid_plural "%s Years"
|
559 |
+
msgstr[0] ""
|
560 |
+
msgstr[1] ""
|
561 |
+
msgstr[2] ""
|
562 |
+
msgstr[3] ""
|
563 |
+
msgstr[4] ""
|
564 |
+
msgstr[5] ""
|
565 |
+
|
566 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
|
567 |
msgid "One"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
|
571 |
msgid "Three"
|
572 |
msgstr ""
|
573 |
|
577 |
msgstr ""
|
578 |
|
579 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
580 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:826
|
581 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
582 |
msgid "Users"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
|
586 |
msgid "Organic"
|
587 |
msgstr "عضوي"
|
588 |
|
589 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
590 |
+
#: .././admin/widgets.php:128 .././admin/widgets.php:830
|
591 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
592 |
msgid "Page Views"
|
593 |
msgstr "مشاهدات الصفحة"
|
594 |
|
595 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
596 |
+
#: .././admin/widgets.php:129 .././admin/widgets.php:834
|
597 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
598 |
msgid "Bounce Rate"
|
599 |
msgstr "نسبة القفز"
|
600 |
|
601 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
|
602 |
msgid "Location"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
|
606 |
#: .././tools/gapi.php:503
|
607 |
msgid "Referrers"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
|
611 |
#: .././tools/gapi.php:536
|
612 |
msgid "Searches"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
|
616 |
msgid "Traffic Details"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:501
|
620 |
+
#: .././admin/widgets.php:586 .././admin/widgets.php:753
|
621 |
+
#: .././admin/widgets.php:857 .././front/setup.php:92
|
622 |
msgid "A JavaScript Error is blocking plugin resources!"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
|
626 |
msgid "Traffic Mediums"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
|
630 |
msgid "Visitor Type"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
|
634 |
msgid "Social Networks"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
|
638 |
msgid "Search Engines"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:838
|
642 |
#: .././front/setup.php:101
|
643 |
msgid "Organic Search"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:842
|
647 |
#: .././front/setup.php:102
|
648 |
msgid "Pages/Session"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:513
|
652 |
+
#: .././admin/widgets.php:527 .././admin/widgets.php:537
|
653 |
+
#: .././admin/widgets.php:598 .././admin/widgets.php:612
|
654 |
+
#: .././admin/widgets.php:626 .././admin/widgets.php:640
|
655 |
+
#: .././admin/widgets.php:654 .././admin/widgets.php:664
|
656 |
+
#: .././admin/widgets.php:766 .././admin/widgets.php:778
|
657 |
+
#: .././admin/widgets.php:869 .././admin/widgets.php:883
|
658 |
+
#: .././admin/widgets.php:893 .././front/setup.php:103
|
659 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
660 |
msgstr ""
|
661 |
|
663 |
msgid "Not enough data collected"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:518
|
667 |
+
#: .././admin/widgets.php:532 .././admin/widgets.php:603
|
668 |
+
#: .././admin/widgets.php:617 .././admin/widgets.php:631
|
669 |
+
#: .././admin/widgets.php:645 .././admin/widgets.php:659
|
670 |
+
#: .././admin/widgets.php:771 .././admin/widgets.php:773
|
671 |
+
#: .././admin/widgets.php:874 .././admin/widgets.php:888
|
672 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
673 |
msgid "This report is unavailable"
|
674 |
msgstr ""
|
735 |
msgid "Find out more!"
|
736 |
msgstr "اعرف أكثر!"
|
737 |
|
738 |
+
#: .././admin/widgets.php:112
|
739 |
msgid "Real-Time"
|
740 |
msgstr "الوقت الحقيقي"
|
741 |
|
742 |
+
#: .././admin/widgets.php:125 .././admin/widgets.php:822
|
743 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
744 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
745 |
#: .././tools/gapi.php:695
|
746 |
msgid "Sessions"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: .././admin/widgets.php:131 .././tools/gapi.php:471
|
750 |
msgid "Pages"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: .././admin/widgets.php:232 .././admin/widgets.php:474
|
754 |
msgid "REFERRAL"
|
755 |
msgstr "المصدر"
|
756 |
|
757 |
+
#: .././admin/widgets.php:236 .././admin/widgets.php:475
|
758 |
msgid "ORGANIC"
|
759 |
msgstr "عضوي"
|
760 |
|
761 |
+
#: .././admin/widgets.php:240 .././admin/widgets.php:360
|
762 |
+
#: .././admin/widgets.php:476
|
763 |
msgid "SOCIAL"
|
764 |
msgstr "اجتماعي"
|
765 |
|
766 |
+
#: .././admin/widgets.php:244 .././admin/widgets.php:363
|
767 |
+
#: .././admin/widgets.php:477
|
768 |
msgid "CAMPAIGN"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: .././admin/widgets.php:248 .././admin/widgets.php:366
|
772 |
+
#: .././admin/widgets.php:480
|
773 |
msgid "DIRECT"
|
774 |
msgstr "مباشر"
|
775 |
|
776 |
+
#: .././admin/widgets.php:252 .././admin/widgets.php:481
|
777 |
msgid "NEW"
|
778 |
msgstr "جديد"
|
779 |
|
780 |
+
#: .././admin/widgets.php:354
|
781 |
msgid "REFERRALS"
|
782 |
msgstr "المصادر"
|
783 |
|
784 |
+
#: .././admin/widgets.php:357
|
785 |
msgid "KEYWORDS"
|
786 |
msgstr "الكلمات المفتاحية"
|
787 |
|
languages/ga-dash-cs_CZ.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
-
"POT-Creation-Date: 2015-07-05
|
8 |
-
"PO-Revision-Date: 2015-07-05
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: cs_CZ\n"
|
@@ -15,7 +15,10 @@ msgstr ""
|
|
15 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
16 |
"X-Generator: Poedit 1.8.2\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList:
|
|
|
|
|
|
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"X-Poedit-SearchPath-0: ../.\n"
|
21 |
|
@@ -522,17 +525,17 @@ msgstr "Nastavení Popředí"
|
|
522 |
msgid "Tracking Code"
|
523 |
msgstr "Sledovací kód"
|
524 |
|
525 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
526 |
msgid "Today"
|
527 |
msgstr "Dnes"
|
528 |
|
529 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
530 |
msgid "Yesterday"
|
531 |
msgstr "Včera"
|
532 |
|
533 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
534 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
535 |
-
#: .././admin/widgets.php:
|
536 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
537 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
538 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
@@ -540,17 +543,20 @@ msgstr "Včera"
|
|
540 |
msgid "Last %d Days"
|
541 |
msgstr "Posledních %d dní"
|
542 |
|
543 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:
|
544 |
-
#: .././admin/widgets.php:
|
545 |
#, php-format
|
546 |
msgid "%s Year"
|
547 |
-
|
|
|
|
|
|
|
548 |
|
549 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
550 |
msgid "One"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
554 |
msgid "Three"
|
555 |
msgstr ""
|
556 |
|
@@ -559,80 +565,80 @@ msgstr ""
|
|
559 |
msgid "Unique Views"
|
560 |
msgstr "Unikátní shlédnutí"
|
561 |
|
562 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:
|
563 |
-
#: .././admin/widgets.php:
|
564 |
#: .././tools/gapi.php:358
|
565 |
msgid "Users"
|
566 |
msgstr "Uživatelé"
|
567 |
|
568 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
569 |
msgid "Organic"
|
570 |
msgstr "Přírodní"
|
571 |
|
572 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:
|
573 |
-
#: .././admin/widgets.php:
|
574 |
#: .././tools/gapi.php:361
|
575 |
msgid "Page Views"
|
576 |
msgstr "Zobrazení Stránek"
|
577 |
|
578 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:
|
579 |
-
#: .././admin/widgets.php:
|
580 |
#: .././tools/gapi.php:364
|
581 |
msgid "Bounce Rate"
|
582 |
msgstr "Míra opuštění"
|
583 |
|
584 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
585 |
msgid "Location"
|
586 |
msgstr "Poloha"
|
587 |
|
588 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
589 |
#: .././tools/gapi.php:503
|
590 |
msgid "Referrers"
|
591 |
msgstr "Odkazy"
|
592 |
|
593 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
594 |
#: .././tools/gapi.php:536
|
595 |
msgid "Searches"
|
596 |
msgstr "Vyhledávání"
|
597 |
|
598 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
599 |
msgid "Traffic Details"
|
600 |
msgstr "Detail provozu"
|
601 |
|
602 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
603 |
-
#: .././admin/widgets.php:
|
604 |
msgid "A JavaScript Error is blocking plugin resources!"
|
605 |
msgstr "Chyva JavaScriptu blokuje zdroje modulu."
|
606 |
|
607 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
608 |
msgid "Traffic Mediums"
|
609 |
msgstr "Dopravní Media"
|
610 |
|
611 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
612 |
msgid "Visitor Type"
|
613 |
msgstr "Druh Návštěvníka"
|
614 |
|
615 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
616 |
msgid "Social Networks"
|
617 |
msgstr "Sociální sítě"
|
618 |
|
619 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
620 |
msgid "Search Engines"
|
621 |
msgstr "Vyhledávače"
|
622 |
|
623 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
624 |
msgid "Organic Search"
|
625 |
msgstr "Přírodní vyhledávání"
|
626 |
|
627 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
628 |
msgid "Pages/Session"
|
629 |
msgstr "Stránky/Návštěvy"
|
630 |
|
631 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
632 |
-
#: .././admin/widgets.php:
|
633 |
-
#: .././admin/widgets.php:
|
634 |
-
#: .././admin/widgets.php:
|
635 |
-
#: .././admin/widgets.php:
|
636 |
#: .././front/setup.php:103
|
637 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
638 |
msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
|
@@ -641,10 +647,10 @@ msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
|
|
641 |
msgid "Not enough data collected"
|
642 |
msgstr "Nedostatečné množství dat"
|
643 |
|
644 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
645 |
-
#: .././admin/widgets.php:
|
646 |
-
#: .././admin/widgets.php:
|
647 |
-
#: .././admin/widgets.php:
|
648 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
649 |
msgid "This report is unavailable"
|
650 |
msgstr "Toto hlášení není dostupné"
|
@@ -711,49 +717,49 @@ msgstr ""
|
|
711 |
msgid "Find out more!"
|
712 |
msgstr "Chcete vědět víc?"
|
713 |
|
714 |
-
#: .././admin/widgets.php:
|
715 |
msgid "Real-Time"
|
716 |
msgstr "Živě"
|
717 |
|
718 |
-
#: .././admin/widgets.php:
|
719 |
#: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
|
720 |
#: .././tools/gapi.php:666 .././tools/gapi.php:695
|
721 |
msgid "Sessions"
|
722 |
msgstr "Návštěvy"
|
723 |
|
724 |
-
#: .././admin/widgets.php:
|
725 |
msgid "Pages"
|
726 |
msgstr "Stránky"
|
727 |
|
728 |
-
#: .././admin/widgets.php:
|
729 |
msgid "REFERRAL"
|
730 |
msgstr "POSTUPOVÁNÍ"
|
731 |
|
732 |
-
#: .././admin/widgets.php:
|
733 |
msgid "ORGANIC"
|
734 |
msgstr "PŘÍRODNÍ"
|
735 |
|
736 |
-
#: .././admin/widgets.php:
|
737 |
msgid "SOCIAL"
|
738 |
msgstr "SOCIÁLNÍ"
|
739 |
|
740 |
-
#: .././admin/widgets.php:
|
741 |
msgid "CAMPAIGN"
|
742 |
msgstr "KAMPAŇ"
|
743 |
|
744 |
-
#: .././admin/widgets.php:
|
745 |
msgid "DIRECT"
|
746 |
msgstr "PŘÍMÝ"
|
747 |
|
748 |
-
#: .././admin/widgets.php:
|
749 |
msgid "NEW"
|
750 |
msgstr "NOVÝ"
|
751 |
|
752 |
-
#: .././admin/widgets.php:
|
753 |
msgid "REFERRALS"
|
754 |
msgstr "POSTOUPENÍ"
|
755 |
|
756 |
-
#: .././admin/widgets.php:
|
757 |
msgid "KEYWORDS"
|
758 |
msgstr "KLÍČOVÁ SLOVA"
|
759 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
+
"POT-Creation-Date: 2015-07-05 18:35+0300\n"
|
8 |
+
"PO-Revision-Date: 2015-07-05 18:35+0300\n"
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: cs_CZ\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
16 |
"X-Generator: Poedit 1.8.2\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
19 |
+
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
20 |
+
"_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;"
|
21 |
+
"esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
"X-Poedit-Basepath: .\n"
|
23 |
"X-Poedit-SearchPath-0: ../.\n"
|
24 |
|
525 |
msgid "Tracking Code"
|
526 |
msgstr "Sledovací kód"
|
527 |
|
528 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
|
529 |
msgid "Today"
|
530 |
msgstr "Dnes"
|
531 |
|
532 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
|
533 |
msgid "Yesterday"
|
534 |
msgstr "Včera"
|
535 |
|
536 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
537 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:115 .././admin/widgets.php:116
|
538 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118 .././front/setup.php:73
|
539 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
540 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
541 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
543 |
msgid "Last %d Days"
|
544 |
msgstr "Posledních %d dní"
|
545 |
|
546 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:119
|
547 |
+
#: .././admin/widgets.php:120 .././front/setup.php:77 .././front/setup.php:78
|
548 |
#, php-format
|
549 |
msgid "%s Year"
|
550 |
+
msgid_plural "%s Years"
|
551 |
+
msgstr[0] ""
|
552 |
+
msgstr[1] ""
|
553 |
+
msgstr[2] ""
|
554 |
|
555 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
|
556 |
msgid "One"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
|
560 |
msgid "Three"
|
561 |
msgstr ""
|
562 |
|
565 |
msgid "Unique Views"
|
566 |
msgstr "Unikátní shlédnutí"
|
567 |
|
568 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:126
|
569 |
+
#: .././admin/widgets.php:826 .././front/setup.php:82 .././front/setup.php:98
|
570 |
#: .././tools/gapi.php:358
|
571 |
msgid "Users"
|
572 |
msgstr "Uživatelé"
|
573 |
|
574 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
|
575 |
msgid "Organic"
|
576 |
msgstr "Přírodní"
|
577 |
|
578 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:128
|
579 |
+
#: .././admin/widgets.php:830 .././front/setup.php:84 .././front/setup.php:99
|
580 |
#: .././tools/gapi.php:361
|
581 |
msgid "Page Views"
|
582 |
msgstr "Zobrazení Stránek"
|
583 |
|
584 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:129
|
585 |
+
#: .././admin/widgets.php:834 .././front/setup.php:85 .././front/setup.php:100
|
586 |
#: .././tools/gapi.php:364
|
587 |
msgid "Bounce Rate"
|
588 |
msgstr "Míra opuštění"
|
589 |
|
590 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
|
591 |
msgid "Location"
|
592 |
msgstr "Poloha"
|
593 |
|
594 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
|
595 |
#: .././tools/gapi.php:503
|
596 |
msgid "Referrers"
|
597 |
msgstr "Odkazy"
|
598 |
|
599 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
|
600 |
#: .././tools/gapi.php:536
|
601 |
msgid "Searches"
|
602 |
msgstr "Vyhledávání"
|
603 |
|
604 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
|
605 |
msgid "Traffic Details"
|
606 |
msgstr "Detail provozu"
|
607 |
|
608 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:501 .././admin/widgets.php:586
|
609 |
+
#: .././admin/widgets.php:753 .././admin/widgets.php:857 .././front/setup.php:92
|
610 |
msgid "A JavaScript Error is blocking plugin resources!"
|
611 |
msgstr "Chyva JavaScriptu blokuje zdroje modulu."
|
612 |
|
613 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
|
614 |
msgid "Traffic Mediums"
|
615 |
msgstr "Dopravní Media"
|
616 |
|
617 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
|
618 |
msgid "Visitor Type"
|
619 |
msgstr "Druh Návštěvníka"
|
620 |
|
621 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
|
622 |
msgid "Social Networks"
|
623 |
msgstr "Sociální sítě"
|
624 |
|
625 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
|
626 |
msgid "Search Engines"
|
627 |
msgstr "Vyhledávače"
|
628 |
|
629 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:838 .././front/setup.php:101
|
630 |
msgid "Organic Search"
|
631 |
msgstr "Přírodní vyhledávání"
|
632 |
|
633 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:842 .././front/setup.php:102
|
634 |
msgid "Pages/Session"
|
635 |
msgstr "Stránky/Návštěvy"
|
636 |
|
637 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:513 .././admin/widgets.php:527
|
638 |
+
#: .././admin/widgets.php:537 .././admin/widgets.php:598 .././admin/widgets.php:612
|
639 |
+
#: .././admin/widgets.php:626 .././admin/widgets.php:640 .././admin/widgets.php:654
|
640 |
+
#: .././admin/widgets.php:664 .././admin/widgets.php:766 .././admin/widgets.php:778
|
641 |
+
#: .././admin/widgets.php:869 .././admin/widgets.php:883 .././admin/widgets.php:893
|
642 |
#: .././front/setup.php:103
|
643 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
644 |
msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
|
647 |
msgid "Not enough data collected"
|
648 |
msgstr "Nedostatečné množství dat"
|
649 |
|
650 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:518 .././admin/widgets.php:532
|
651 |
+
#: .././admin/widgets.php:603 .././admin/widgets.php:617 .././admin/widgets.php:631
|
652 |
+
#: .././admin/widgets.php:645 .././admin/widgets.php:659 .././admin/widgets.php:771
|
653 |
+
#: .././admin/widgets.php:773 .././admin/widgets.php:874 .././admin/widgets.php:888
|
654 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
655 |
msgid "This report is unavailable"
|
656 |
msgstr "Toto hlášení není dostupné"
|
717 |
msgid "Find out more!"
|
718 |
msgstr "Chcete vědět víc?"
|
719 |
|
720 |
+
#: .././admin/widgets.php:112
|
721 |
msgid "Real-Time"
|
722 |
msgstr "Živě"
|
723 |
|
724 |
+
#: .././admin/widgets.php:125 .././admin/widgets.php:822 .././front/widgets.php:36
|
725 |
#: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
|
726 |
#: .././tools/gapi.php:666 .././tools/gapi.php:695
|
727 |
msgid "Sessions"
|
728 |
msgstr "Návštěvy"
|
729 |
|
730 |
+
#: .././admin/widgets.php:131 .././tools/gapi.php:471
|
731 |
msgid "Pages"
|
732 |
msgstr "Stránky"
|
733 |
|
734 |
+
#: .././admin/widgets.php:232 .././admin/widgets.php:474
|
735 |
msgid "REFERRAL"
|
736 |
msgstr "POSTUPOVÁNÍ"
|
737 |
|
738 |
+
#: .././admin/widgets.php:236 .././admin/widgets.php:475
|
739 |
msgid "ORGANIC"
|
740 |
msgstr "PŘÍRODNÍ"
|
741 |
|
742 |
+
#: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:476
|
743 |
msgid "SOCIAL"
|
744 |
msgstr "SOCIÁLNÍ"
|
745 |
|
746 |
+
#: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:477
|
747 |
msgid "CAMPAIGN"
|
748 |
msgstr "KAMPAŇ"
|
749 |
|
750 |
+
#: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:480
|
751 |
msgid "DIRECT"
|
752 |
msgstr "PŘÍMÝ"
|
753 |
|
754 |
+
#: .././admin/widgets.php:252 .././admin/widgets.php:481
|
755 |
msgid "NEW"
|
756 |
msgstr "NOVÝ"
|
757 |
|
758 |
+
#: .././admin/widgets.php:354
|
759 |
msgid "REFERRALS"
|
760 |
msgstr "POSTOUPENÍ"
|
761 |
|
762 |
+
#: .././admin/widgets.php:357
|
763 |
msgid "KEYWORDS"
|
764 |
msgstr "KLÍČOVÁ SLOVA"
|
765 |
|
languages/ga-dash-de_DE.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-07-05
|
7 |
-
"PO-Revision-Date: 2015-07-05
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Alin Marcu\n"
|
10 |
"Language: de\n"
|
@@ -12,7 +12,11 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
-
"X-Poedit-KeywordsList:
|
|
|
|
|
|
|
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
@@ -539,18 +543,18 @@ msgstr "Frontend Einstellungen"
|
|
539 |
msgid "Tracking Code"
|
540 |
msgstr "Tracking Code"
|
541 |
|
542 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
543 |
msgid "Today"
|
544 |
msgstr "Heute"
|
545 |
|
546 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
547 |
msgid "Yesterday"
|
548 |
msgstr "Gestern"
|
549 |
|
550 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
551 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
552 |
-
#: .././admin/widgets.php:
|
553 |
-
#: .././admin/widgets.php:
|
554 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
555 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
556 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -560,17 +564,19 @@ msgid "Last %d Days"
|
|
560 |
msgstr "Letzte %d Tage"
|
561 |
|
562 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
563 |
-
#: .././admin/widgets.php:
|
564 |
#: .././front/setup.php:77 .././front/setup.php:78
|
565 |
#, php-format
|
566 |
msgid "%s Year"
|
567 |
-
|
|
|
|
|
568 |
|
569 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
570 |
msgid "One"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
574 |
msgid "Three"
|
575 |
msgstr ""
|
576 |
|
@@ -580,85 +586,85 @@ msgid "Unique Views"
|
|
580 |
msgstr "Einmalige Aufrufe"
|
581 |
|
582 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
583 |
-
#: .././admin/widgets.php:
|
584 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
585 |
msgid "Users"
|
586 |
msgstr "Nutzer"
|
587 |
|
588 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
589 |
msgid "Organic"
|
590 |
msgstr "Organisch"
|
591 |
|
592 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
593 |
-
#: .././admin/widgets.php:
|
594 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
595 |
msgid "Page Views"
|
596 |
msgstr "Seitenaufrufe"
|
597 |
|
598 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
599 |
-
#: .././admin/widgets.php:
|
600 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
601 |
msgid "Bounce Rate"
|
602 |
msgstr "Absprungrate"
|
603 |
|
604 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
605 |
msgid "Location"
|
606 |
msgstr "Geografisch"
|
607 |
|
608 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
609 |
#: .././tools/gapi.php:503
|
610 |
msgid "Referrers"
|
611 |
msgstr "Verweise"
|
612 |
|
613 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
614 |
#: .././tools/gapi.php:536
|
615 |
msgid "Searches"
|
616 |
msgstr "Suchen"
|
617 |
|
618 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
619 |
msgid "Traffic Details"
|
620 |
msgstr "Traffic Details"
|
621 |
|
622 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
623 |
-
#: .././admin/widgets.php:
|
624 |
-
#: .././admin/widgets.php:
|
625 |
msgid "A JavaScript Error is blocking plugin resources!"
|
626 |
msgstr "Ein JavaScript-Fehler blockiert die Plugin-Ressourcen!"
|
627 |
|
628 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
629 |
msgid "Traffic Mediums"
|
630 |
msgstr "Medium"
|
631 |
|
632 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
633 |
msgid "Visitor Type"
|
634 |
msgstr "Nutzertyp"
|
635 |
|
636 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
637 |
msgid "Social Networks"
|
638 |
msgstr "soziale Netzwerke"
|
639 |
|
640 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
641 |
msgid "Search Engines"
|
642 |
msgstr "Suchmaschinen"
|
643 |
|
644 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
645 |
#: .././front/setup.php:101
|
646 |
msgid "Organic Search"
|
647 |
msgstr "Organische Suche"
|
648 |
|
649 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
650 |
#: .././front/setup.php:102
|
651 |
msgid "Pages/Session"
|
652 |
msgstr "Seiten/Sitzung"
|
653 |
|
654 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
655 |
-
#: .././admin/widgets.php:
|
656 |
-
#: .././admin/widgets.php:
|
657 |
-
#: .././admin/widgets.php:
|
658 |
-
#: .././admin/widgets.php:
|
659 |
-
#: .././admin/widgets.php:
|
660 |
-
#: .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
663 |
msgstr ""
|
664 |
"ungültige Antwort. Weitere Details finden Sie in der JavaScript-Konsole (F12)"
|
@@ -667,12 +673,12 @@ msgstr ""
|
|
667 |
msgid "Not enough data collected"
|
668 |
msgstr "Nicht genug Daten vorhanden"
|
669 |
|
670 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
671 |
-
#: .././admin/widgets.php:
|
672 |
-
#: .././admin/widgets.php:
|
673 |
-
#: .././admin/widgets.php:
|
674 |
-
#: .././admin/widgets.php:
|
675 |
-
#: .././admin/widgets.php:
|
676 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
677 |
msgid "This report is unavailable"
|
678 |
msgstr "Der Bericht ist nicht verfügbar"
|
@@ -740,53 +746,53 @@ msgstr ""
|
|
740 |
msgid "Find out more!"
|
741 |
msgstr "Erfahre mehr!"
|
742 |
|
743 |
-
#: .././admin/widgets.php:
|
744 |
msgid "Real-Time"
|
745 |
msgstr "Echtzeit"
|
746 |
|
747 |
-
#: .././admin/widgets.php:
|
748 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
749 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
750 |
#: .././tools/gapi.php:695
|
751 |
msgid "Sessions"
|
752 |
msgstr "Sitzungen"
|
753 |
|
754 |
-
#: .././admin/widgets.php:
|
755 |
msgid "Pages"
|
756 |
msgstr "Seiten"
|
757 |
|
758 |
-
#: .././admin/widgets.php:
|
759 |
msgid "REFERRAL"
|
760 |
msgstr "VERWEISUNG"
|
761 |
|
762 |
-
#: .././admin/widgets.php:
|
763 |
msgid "ORGANIC"
|
764 |
msgstr "ORGANISCH"
|
765 |
|
766 |
-
#: .././admin/widgets.php:
|
767 |
-
#: .././admin/widgets.php:
|
768 |
msgid "SOCIAL"
|
769 |
msgstr "SOZIAL"
|
770 |
|
771 |
-
#: .././admin/widgets.php:
|
772 |
-
#: .././admin/widgets.php:
|
773 |
msgid "CAMPAIGN"
|
774 |
msgstr "KAMPANIE"
|
775 |
|
776 |
-
#: .././admin/widgets.php:
|
777 |
-
#: .././admin/widgets.php:
|
778 |
msgid "DIRECT"
|
779 |
msgstr "DIREKT"
|
780 |
|
781 |
-
#: .././admin/widgets.php:
|
782 |
msgid "NEW"
|
783 |
msgstr "NEUE"
|
784 |
|
785 |
-
#: .././admin/widgets.php:
|
786 |
msgid "REFERRALS"
|
787 |
msgstr "VERWEISUNGEN"
|
788 |
|
789 |
-
#: .././admin/widgets.php:
|
790 |
msgid "KEYWORDS"
|
791 |
msgstr "STICHWORTE"
|
792 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-07-05 18:35+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-07-05 18:35+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Alin Marcu\n"
|
10 |
"Language: de\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
18 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
19 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
543 |
msgid "Tracking Code"
|
544 |
msgstr "Tracking Code"
|
545 |
|
546 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
|
547 |
msgid "Today"
|
548 |
msgstr "Heute"
|
549 |
|
550 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
|
551 |
msgid "Yesterday"
|
552 |
msgstr "Gestern"
|
553 |
|
554 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
555 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:115
|
556 |
+
#: .././admin/widgets.php:116 .././admin/widgets.php:117
|
557 |
+
#: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
|
558 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
559 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
560 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
564 |
msgstr "Letzte %d Tage"
|
565 |
|
566 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
567 |
+
#: .././admin/widgets.php:119 .././admin/widgets.php:120
|
568 |
#: .././front/setup.php:77 .././front/setup.php:78
|
569 |
#, php-format
|
570 |
msgid "%s Year"
|
571 |
+
msgid_plural "%s Years"
|
572 |
+
msgstr[0] ""
|
573 |
+
msgstr[1] ""
|
574 |
|
575 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
|
576 |
msgid "One"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
|
580 |
msgid "Three"
|
581 |
msgstr ""
|
582 |
|
586 |
msgstr "Einmalige Aufrufe"
|
587 |
|
588 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
589 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:826
|
590 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
591 |
msgid "Users"
|
592 |
msgstr "Nutzer"
|
593 |
|
594 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
|
595 |
msgid "Organic"
|
596 |
msgstr "Organisch"
|
597 |
|
598 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
599 |
+
#: .././admin/widgets.php:128 .././admin/widgets.php:830
|
600 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
601 |
msgid "Page Views"
|
602 |
msgstr "Seitenaufrufe"
|
603 |
|
604 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
605 |
+
#: .././admin/widgets.php:129 .././admin/widgets.php:834
|
606 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
607 |
msgid "Bounce Rate"
|
608 |
msgstr "Absprungrate"
|
609 |
|
610 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
|
611 |
msgid "Location"
|
612 |
msgstr "Geografisch"
|
613 |
|
614 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
|
615 |
#: .././tools/gapi.php:503
|
616 |
msgid "Referrers"
|
617 |
msgstr "Verweise"
|
618 |
|
619 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
|
620 |
#: .././tools/gapi.php:536
|
621 |
msgid "Searches"
|
622 |
msgstr "Suchen"
|
623 |
|
624 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
|
625 |
msgid "Traffic Details"
|
626 |
msgstr "Traffic Details"
|
627 |
|
628 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:501
|
629 |
+
#: .././admin/widgets.php:586 .././admin/widgets.php:753
|
630 |
+
#: .././admin/widgets.php:857 .././front/setup.php:92
|
631 |
msgid "A JavaScript Error is blocking plugin resources!"
|
632 |
msgstr "Ein JavaScript-Fehler blockiert die Plugin-Ressourcen!"
|
633 |
|
634 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
|
635 |
msgid "Traffic Mediums"
|
636 |
msgstr "Medium"
|
637 |
|
638 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
|
639 |
msgid "Visitor Type"
|
640 |
msgstr "Nutzertyp"
|
641 |
|
642 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
|
643 |
msgid "Social Networks"
|
644 |
msgstr "soziale Netzwerke"
|
645 |
|
646 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
|
647 |
msgid "Search Engines"
|
648 |
msgstr "Suchmaschinen"
|
649 |
|
650 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:838
|
651 |
#: .././front/setup.php:101
|
652 |
msgid "Organic Search"
|
653 |
msgstr "Organische Suche"
|
654 |
|
655 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:842
|
656 |
#: .././front/setup.php:102
|
657 |
msgid "Pages/Session"
|
658 |
msgstr "Seiten/Sitzung"
|
659 |
|
660 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:513
|
661 |
+
#: .././admin/widgets.php:527 .././admin/widgets.php:537
|
662 |
+
#: .././admin/widgets.php:598 .././admin/widgets.php:612
|
663 |
+
#: .././admin/widgets.php:626 .././admin/widgets.php:640
|
664 |
+
#: .././admin/widgets.php:654 .././admin/widgets.php:664
|
665 |
+
#: .././admin/widgets.php:766 .././admin/widgets.php:778
|
666 |
+
#: .././admin/widgets.php:869 .././admin/widgets.php:883
|
667 |
+
#: .././admin/widgets.php:893 .././front/setup.php:103
|
668 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
669 |
msgstr ""
|
670 |
"ungültige Antwort. Weitere Details finden Sie in der JavaScript-Konsole (F12)"
|
673 |
msgid "Not enough data collected"
|
674 |
msgstr "Nicht genug Daten vorhanden"
|
675 |
|
676 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:518
|
677 |
+
#: .././admin/widgets.php:532 .././admin/widgets.php:603
|
678 |
+
#: .././admin/widgets.php:617 .././admin/widgets.php:631
|
679 |
+
#: .././admin/widgets.php:645 .././admin/widgets.php:659
|
680 |
+
#: .././admin/widgets.php:771 .././admin/widgets.php:773
|
681 |
+
#: .././admin/widgets.php:874 .././admin/widgets.php:888
|
682 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
683 |
msgid "This report is unavailable"
|
684 |
msgstr "Der Bericht ist nicht verfügbar"
|
746 |
msgid "Find out more!"
|
747 |
msgstr "Erfahre mehr!"
|
748 |
|
749 |
+
#: .././admin/widgets.php:112
|
750 |
msgid "Real-Time"
|
751 |
msgstr "Echtzeit"
|
752 |
|
753 |
+
#: .././admin/widgets.php:125 .././admin/widgets.php:822
|
754 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
755 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
756 |
#: .././tools/gapi.php:695
|
757 |
msgid "Sessions"
|
758 |
msgstr "Sitzungen"
|
759 |
|
760 |
+
#: .././admin/widgets.php:131 .././tools/gapi.php:471
|
761 |
msgid "Pages"
|
762 |
msgstr "Seiten"
|
763 |
|
764 |
+
#: .././admin/widgets.php:232 .././admin/widgets.php:474
|
765 |
msgid "REFERRAL"
|
766 |
msgstr "VERWEISUNG"
|
767 |
|
768 |
+
#: .././admin/widgets.php:236 .././admin/widgets.php:475
|
769 |
msgid "ORGANIC"
|
770 |
msgstr "ORGANISCH"
|
771 |
|
772 |
+
#: .././admin/widgets.php:240 .././admin/widgets.php:360
|
773 |
+
#: .././admin/widgets.php:476
|
774 |
msgid "SOCIAL"
|
775 |
msgstr "SOZIAL"
|
776 |
|
777 |
+
#: .././admin/widgets.php:244 .././admin/widgets.php:363
|
778 |
+
#: .././admin/widgets.php:477
|
779 |
msgid "CAMPAIGN"
|
780 |
msgstr "KAMPANIE"
|
781 |
|
782 |
+
#: .././admin/widgets.php:248 .././admin/widgets.php:366
|
783 |
+
#: .././admin/widgets.php:480
|
784 |
msgid "DIRECT"
|
785 |
msgstr "DIREKT"
|
786 |
|
787 |
+
#: .././admin/widgets.php:252 .././admin/widgets.php:481
|
788 |
msgid "NEW"
|
789 |
msgstr "NEUE"
|
790 |
|
791 |
+
#: .././admin/widgets.php:354
|
792 |
msgid "REFERRALS"
|
793 |
msgstr "VERWEISUNGEN"
|
794 |
|
795 |
+
#: .././admin/widgets.php:357
|
796 |
msgid "KEYWORDS"
|
797 |
msgstr "STICHWORTE"
|
798 |
|
languages/ga-dash-es_ES.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-07-05
|
7 |
-
"PO-Revision-Date: 2015-07-05
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Alin Marcu\n"
|
10 |
"Language: es_ES\n"
|
@@ -12,9 +12,14 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
-
"X-Poedit-KeywordsList:
|
|
|
|
|
|
|
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: ../.\n"
|
19 |
|
20 |
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
@@ -541,18 +546,18 @@ msgstr "Configuración del frontend"
|
|
541 |
msgid "Tracking Code"
|
542 |
msgstr "Tipo de seguimiento:"
|
543 |
|
544 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
545 |
msgid "Today"
|
546 |
msgstr "Hoy"
|
547 |
|
548 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
549 |
msgid "Yesterday"
|
550 |
msgstr "Ayer"
|
551 |
|
552 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
553 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
554 |
-
#: .././admin/widgets.php:
|
555 |
-
#: .././admin/widgets.php:
|
556 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
557 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
558 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -562,17 +567,19 @@ msgid "Last %d Days"
|
|
562 |
msgstr "Últimos %d días"
|
563 |
|
564 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
565 |
-
#: .././admin/widgets.php:
|
566 |
#: .././front/setup.php:77 .././front/setup.php:78
|
567 |
#, php-format
|
568 |
msgid "%s Year"
|
569 |
-
|
|
|
|
|
570 |
|
571 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
572 |
msgid "One"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
576 |
msgid "Three"
|
577 |
msgstr ""
|
578 |
|
@@ -582,85 +589,85 @@ msgid "Unique Views"
|
|
582 |
msgstr ""
|
583 |
|
584 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
585 |
-
#: .././admin/widgets.php:
|
586 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
587 |
msgid "Users"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
591 |
msgid "Organic"
|
592 |
msgstr "Búsquedas orgánicas"
|
593 |
|
594 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
595 |
-
#: .././admin/widgets.php:
|
596 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
597 |
msgid "Page Views"
|
598 |
msgstr "Páginas vistas"
|
599 |
|
600 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
601 |
-
#: .././admin/widgets.php:
|
602 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
603 |
msgid "Bounce Rate"
|
604 |
msgstr "Porcenaje de rebote"
|
605 |
|
606 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
607 |
msgid "Location"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
611 |
#: .././tools/gapi.php:503
|
612 |
msgid "Referrers"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
616 |
#: .././tools/gapi.php:536
|
617 |
msgid "Searches"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
621 |
msgid "Traffic Details"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
625 |
-
#: .././admin/widgets.php:
|
626 |
-
#: .././admin/widgets.php:
|
627 |
msgid "A JavaScript Error is blocking plugin resources!"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
631 |
msgid "Traffic Mediums"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
635 |
msgid "Visitor Type"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
639 |
msgid "Social Networks"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
643 |
msgid "Search Engines"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
647 |
#: .././front/setup.php:101
|
648 |
msgid "Organic Search"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
652 |
#: .././front/setup.php:102
|
653 |
msgid "Pages/Session"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
657 |
-
#: .././admin/widgets.php:
|
658 |
-
#: .././admin/widgets.php:
|
659 |
-
#: .././admin/widgets.php:
|
660 |
-
#: .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
665 |
msgstr ""
|
666 |
|
@@ -668,12 +675,12 @@ msgstr ""
|
|
668 |
msgid "Not enough data collected"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
672 |
-
#: .././admin/widgets.php:
|
673 |
-
#: .././admin/widgets.php:
|
674 |
-
#: .././admin/widgets.php:
|
675 |
-
#: .././admin/widgets.php:
|
676 |
-
#: .././admin/widgets.php:
|
677 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
678 |
msgid "This report is unavailable"
|
679 |
msgstr ""
|
@@ -740,53 +747,53 @@ msgstr ""
|
|
740 |
msgid "Find out more!"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: .././admin/widgets.php:
|
744 |
msgid "Real-Time"
|
745 |
msgstr "Tiempo real"
|
746 |
|
747 |
-
#: .././admin/widgets.php:
|
748 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
749 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
750 |
#: .././tools/gapi.php:695
|
751 |
msgid "Sessions"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: .././admin/widgets.php:
|
755 |
msgid "Pages"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: .././admin/widgets.php:
|
759 |
msgid "REFERRAL"
|
760 |
msgstr "REFERENCIA"
|
761 |
|
762 |
-
#: .././admin/widgets.php:
|
763 |
msgid "ORGANIC"
|
764 |
msgstr "ORGÁNICO"
|
765 |
|
766 |
-
#: .././admin/widgets.php:
|
767 |
-
#: .././admin/widgets.php:
|
768 |
msgid "SOCIAL"
|
769 |
msgstr "SOCIAL"
|
770 |
|
771 |
-
#: .././admin/widgets.php:
|
772 |
-
#: .././admin/widgets.php:
|
773 |
msgid "CAMPAIGN"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: .././admin/widgets.php:
|
777 |
-
#: .././admin/widgets.php:
|
778 |
msgid "DIRECT"
|
779 |
msgstr "DIRECTO"
|
780 |
|
781 |
-
#: .././admin/widgets.php:
|
782 |
msgid "NEW"
|
783 |
msgstr "NUEVO"
|
784 |
|
785 |
-
#: .././admin/widgets.php:
|
786 |
msgid "REFERRALS"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: .././admin/widgets.php:
|
790 |
msgid "KEYWORDS"
|
791 |
msgstr ""
|
792 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-07-05 18:34+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-07-05 18:34+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Alin Marcu\n"
|
10 |
"Language: es_ES\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
18 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
19 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
23 |
"X-Poedit-SearchPath-0: ../.\n"
|
24 |
|
25 |
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
546 |
msgid "Tracking Code"
|
547 |
msgstr "Tipo de seguimiento:"
|
548 |
|
549 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
|
550 |
msgid "Today"
|
551 |
msgstr "Hoy"
|
552 |
|
553 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
|
554 |
msgid "Yesterday"
|
555 |
msgstr "Ayer"
|
556 |
|
557 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
558 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:115
|
559 |
+
#: .././admin/widgets.php:116 .././admin/widgets.php:117
|
560 |
+
#: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
|
561 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
562 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
563 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
567 |
msgstr "Últimos %d días"
|
568 |
|
569 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
570 |
+
#: .././admin/widgets.php:119 .././admin/widgets.php:120
|
571 |
#: .././front/setup.php:77 .././front/setup.php:78
|
572 |
#, php-format
|
573 |
msgid "%s Year"
|
574 |
+
msgid_plural "%s Years"
|
575 |
+
msgstr[0] ""
|
576 |
+
msgstr[1] ""
|
577 |
|
578 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
|
579 |
msgid "One"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
|
583 |
msgid "Three"
|
584 |
msgstr ""
|
585 |
|
589 |
msgstr ""
|
590 |
|
591 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
592 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:826
|
593 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
594 |
msgid "Users"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
|
598 |
msgid "Organic"
|
599 |
msgstr "Búsquedas orgánicas"
|
600 |
|
601 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
602 |
+
#: .././admin/widgets.php:128 .././admin/widgets.php:830
|
603 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
604 |
msgid "Page Views"
|
605 |
msgstr "Páginas vistas"
|
606 |
|
607 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
608 |
+
#: .././admin/widgets.php:129 .././admin/widgets.php:834
|
609 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
610 |
msgid "Bounce Rate"
|
611 |
msgstr "Porcenaje de rebote"
|
612 |
|
613 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
|
614 |
msgid "Location"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
|
618 |
#: .././tools/gapi.php:503
|
619 |
msgid "Referrers"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
|
623 |
#: .././tools/gapi.php:536
|
624 |
msgid "Searches"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
|
628 |
msgid "Traffic Details"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:501
|
632 |
+
#: .././admin/widgets.php:586 .././admin/widgets.php:753
|
633 |
+
#: .././admin/widgets.php:857 .././front/setup.php:92
|
634 |
msgid "A JavaScript Error is blocking plugin resources!"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
|
638 |
msgid "Traffic Mediums"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
|
642 |
msgid "Visitor Type"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
|
646 |
msgid "Social Networks"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
|
650 |
msgid "Search Engines"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:838
|
654 |
#: .././front/setup.php:101
|
655 |
msgid "Organic Search"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:842
|
659 |
#: .././front/setup.php:102
|
660 |
msgid "Pages/Session"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:513
|
664 |
+
#: .././admin/widgets.php:527 .././admin/widgets.php:537
|
665 |
+
#: .././admin/widgets.php:598 .././admin/widgets.php:612
|
666 |
+
#: .././admin/widgets.php:626 .././admin/widgets.php:640
|
667 |
+
#: .././admin/widgets.php:654 .././admin/widgets.php:664
|
668 |
+
#: .././admin/widgets.php:766 .././admin/widgets.php:778
|
669 |
+
#: .././admin/widgets.php:869 .././admin/widgets.php:883
|
670 |
+
#: .././admin/widgets.php:893 .././front/setup.php:103
|
671 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
672 |
msgstr ""
|
673 |
|
675 |
msgid "Not enough data collected"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:518
|
679 |
+
#: .././admin/widgets.php:532 .././admin/widgets.php:603
|
680 |
+
#: .././admin/widgets.php:617 .././admin/widgets.php:631
|
681 |
+
#: .././admin/widgets.php:645 .././admin/widgets.php:659
|
682 |
+
#: .././admin/widgets.php:771 .././admin/widgets.php:773
|
683 |
+
#: .././admin/widgets.php:874 .././admin/widgets.php:888
|
684 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
685 |
msgid "This report is unavailable"
|
686 |
msgstr ""
|
747 |
msgid "Find out more!"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: .././admin/widgets.php:112
|
751 |
msgid "Real-Time"
|
752 |
msgstr "Tiempo real"
|
753 |
|
754 |
+
#: .././admin/widgets.php:125 .././admin/widgets.php:822
|
755 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
756 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
757 |
#: .././tools/gapi.php:695
|
758 |
msgid "Sessions"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: .././admin/widgets.php:131 .././tools/gapi.php:471
|
762 |
msgid "Pages"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: .././admin/widgets.php:232 .././admin/widgets.php:474
|
766 |
msgid "REFERRAL"
|
767 |
msgstr "REFERENCIA"
|
768 |
|
769 |
+
#: .././admin/widgets.php:236 .././admin/widgets.php:475
|
770 |
msgid "ORGANIC"
|
771 |
msgstr "ORGÁNICO"
|
772 |
|
773 |
+
#: .././admin/widgets.php:240 .././admin/widgets.php:360
|
774 |
+
#: .././admin/widgets.php:476
|
775 |
msgid "SOCIAL"
|
776 |
msgstr "SOCIAL"
|
777 |
|
778 |
+
#: .././admin/widgets.php:244 .././admin/widgets.php:363
|
779 |
+
#: .././admin/widgets.php:477
|
780 |
msgid "CAMPAIGN"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: .././admin/widgets.php:248 .././admin/widgets.php:366
|
784 |
+
#: .././admin/widgets.php:480
|
785 |
msgid "DIRECT"
|
786 |
msgstr "DIRECTO"
|
787 |
|
788 |
+
#: .././admin/widgets.php:252 .././admin/widgets.php:481
|
789 |
msgid "NEW"
|
790 |
msgstr "NUEVO"
|
791 |
|
792 |
+
#: .././admin/widgets.php:354
|
793 |
msgid "REFERRALS"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: .././admin/widgets.php:357
|
797 |
msgid "KEYWORDS"
|
798 |
msgstr ""
|
799 |
|
languages/ga-dash-fr_FR.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
-
"POT-Creation-Date: 2015-07-05
|
8 |
-
"PO-Revision-Date: 2015-07-05
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: fr_FR\n"
|
@@ -15,7 +15,10 @@ msgstr ""
|
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
16 |
"X-Generator: Poedit 1.8.2\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList:
|
|
|
|
|
|
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"X-Poedit-SearchPath-0: ../.\n"
|
21 |
|
@@ -523,17 +526,17 @@ msgstr "Paramètres du frontend"
|
|
523 |
msgid "Tracking Code"
|
524 |
msgstr "Code de suivi"
|
525 |
|
526 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
527 |
msgid "Today"
|
528 |
msgstr "Aujourd'hui"
|
529 |
|
530 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
531 |
msgid "Yesterday"
|
532 |
msgstr "Hier"
|
533 |
|
534 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
535 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
536 |
-
#: .././admin/widgets.php:
|
537 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
538 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
539 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
@@ -541,17 +544,19 @@ msgstr "Hier"
|
|
541 |
msgid "Last %d Days"
|
542 |
msgstr "%d derniers jours"
|
543 |
|
544 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:
|
545 |
-
#: .././admin/widgets.php:
|
546 |
#, php-format
|
547 |
msgid "%s Year"
|
548 |
-
|
|
|
|
|
549 |
|
550 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
551 |
msgid "One"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
555 |
msgid "Three"
|
556 |
msgstr ""
|
557 |
|
@@ -560,80 +565,80 @@ msgstr ""
|
|
560 |
msgid "Unique Views"
|
561 |
msgstr "Vues unique"
|
562 |
|
563 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:
|
564 |
-
#: .././admin/widgets.php:
|
565 |
#: .././tools/gapi.php:358
|
566 |
msgid "Users"
|
567 |
msgstr "Utilisateurs"
|
568 |
|
569 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
570 |
msgid "Organic"
|
571 |
msgstr "Organiques"
|
572 |
|
573 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:
|
574 |
-
#: .././admin/widgets.php:
|
575 |
#: .././tools/gapi.php:361
|
576 |
msgid "Page Views"
|
577 |
msgstr "Pages vues"
|
578 |
|
579 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:
|
580 |
-
#: .././admin/widgets.php:
|
581 |
#: .././tools/gapi.php:364
|
582 |
msgid "Bounce Rate"
|
583 |
msgstr "Taux de rebond"
|
584 |
|
585 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
586 |
msgid "Location"
|
587 |
msgstr "Lieu"
|
588 |
|
589 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
590 |
#: .././tools/gapi.php:503
|
591 |
msgid "Referrers"
|
592 |
msgstr "Référence"
|
593 |
|
594 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
595 |
#: .././tools/gapi.php:536
|
596 |
msgid "Searches"
|
597 |
msgstr "Recherches"
|
598 |
|
599 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
600 |
msgid "Traffic Details"
|
601 |
msgstr "Détails du trafic"
|
602 |
|
603 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
604 |
-
#: .././admin/widgets.php:
|
605 |
msgid "A JavaScript Error is blocking plugin resources!"
|
606 |
msgstr "Une erreur JavaScript bloque les ressources du plugin !"
|
607 |
|
608 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
609 |
msgid "Traffic Mediums"
|
610 |
msgstr "Traffic Moyen"
|
611 |
|
612 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
613 |
msgid "Visitor Type"
|
614 |
msgstr "Type de visiteur"
|
615 |
|
616 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
617 |
msgid "Social Networks"
|
618 |
msgstr "Réseaux Sociaux"
|
619 |
|
620 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
621 |
msgid "Search Engines"
|
622 |
msgstr "Moteur de recherche"
|
623 |
|
624 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
625 |
msgid "Organic Search"
|
626 |
msgstr "Recherche Organique"
|
627 |
|
628 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
629 |
msgid "Pages/Session"
|
630 |
msgstr "Pages/Session"
|
631 |
|
632 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
633 |
-
#: .././admin/widgets.php:
|
634 |
-
#: .././admin/widgets.php:
|
635 |
-
#: .././admin/widgets.php:
|
636 |
-
#: .././admin/widgets.php:
|
637 |
#: .././front/setup.php:103
|
638 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
639 |
msgstr "Réponse non valide, plus de détails dans la Console JavaScript (F12)."
|
@@ -642,10 +647,10 @@ msgstr "Réponse non valide, plus de détails dans la Console JavaScript (F12)."
|
|
642 |
msgid "Not enough data collected"
|
643 |
msgstr "Pas assez de données collectées"
|
644 |
|
645 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
646 |
-
#: .././admin/widgets.php:
|
647 |
-
#: .././admin/widgets.php:
|
648 |
-
#: .././admin/widgets.php:
|
649 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
650 |
msgid "This report is unavailable"
|
651 |
msgstr "Ce rapport n'est pas disponible"
|
@@ -712,49 +717,49 @@ msgstr ""
|
|
712 |
msgid "Find out more!"
|
713 |
msgstr "Plus d'informations!"
|
714 |
|
715 |
-
#: .././admin/widgets.php:
|
716 |
msgid "Real-Time"
|
717 |
msgstr "Temps réel"
|
718 |
|
719 |
-
#: .././admin/widgets.php:
|
720 |
#: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
|
721 |
#: .././tools/gapi.php:666 .././tools/gapi.php:695
|
722 |
msgid "Sessions"
|
723 |
msgstr "Sessions"
|
724 |
|
725 |
-
#: .././admin/widgets.php:
|
726 |
msgid "Pages"
|
727 |
msgstr "Pages"
|
728 |
|
729 |
-
#: .././admin/widgets.php:
|
730 |
msgid "REFERRAL"
|
731 |
msgstr "RÉFÉRENCE"
|
732 |
|
733 |
-
#: .././admin/widgets.php:
|
734 |
msgid "ORGANIC"
|
735 |
msgstr "ORGANIQUE"
|
736 |
|
737 |
-
#: .././admin/widgets.php:
|
738 |
msgid "SOCIAL"
|
739 |
msgstr "SOCIAL"
|
740 |
|
741 |
-
#: .././admin/widgets.php:
|
742 |
msgid "CAMPAIGN"
|
743 |
msgstr "CAMPAGNE"
|
744 |
|
745 |
-
#: .././admin/widgets.php:
|
746 |
msgid "DIRECT"
|
747 |
msgstr "DIRECT"
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
msgid "NEW"
|
751 |
msgstr "NOUVEAU"
|
752 |
|
753 |
-
#: .././admin/widgets.php:
|
754 |
msgid "REFERRALS"
|
755 |
msgstr "RÉFÉRENCES"
|
756 |
|
757 |
-
#: .././admin/widgets.php:
|
758 |
msgid "KEYWORDS"
|
759 |
msgstr "MOTS-CLÉS"
|
760 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
+
"POT-Creation-Date: 2015-07-05 18:34+0300\n"
|
8 |
+
"PO-Revision-Date: 2015-07-05 18:34+0300\n"
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: fr_FR\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
16 |
"X-Generator: Poedit 1.8.2\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
19 |
+
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
20 |
+
"_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;"
|
21 |
+
"esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
"X-Poedit-Basepath: .\n"
|
23 |
"X-Poedit-SearchPath-0: ../.\n"
|
24 |
|
526 |
msgid "Tracking Code"
|
527 |
msgstr "Code de suivi"
|
528 |
|
529 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
|
530 |
msgid "Today"
|
531 |
msgstr "Aujourd'hui"
|
532 |
|
533 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
|
534 |
msgid "Yesterday"
|
535 |
msgstr "Hier"
|
536 |
|
537 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
538 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:115 .././admin/widgets.php:116
|
539 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118 .././front/setup.php:73
|
540 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
541 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
542 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
544 |
msgid "Last %d Days"
|
545 |
msgstr "%d derniers jours"
|
546 |
|
547 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:119
|
548 |
+
#: .././admin/widgets.php:120 .././front/setup.php:77 .././front/setup.php:78
|
549 |
#, php-format
|
550 |
msgid "%s Year"
|
551 |
+
msgid_plural "%s Years"
|
552 |
+
msgstr[0] ""
|
553 |
+
msgstr[1] ""
|
554 |
|
555 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
|
556 |
msgid "One"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
|
560 |
msgid "Three"
|
561 |
msgstr ""
|
562 |
|
565 |
msgid "Unique Views"
|
566 |
msgstr "Vues unique"
|
567 |
|
568 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:126
|
569 |
+
#: .././admin/widgets.php:826 .././front/setup.php:82 .././front/setup.php:98
|
570 |
#: .././tools/gapi.php:358
|
571 |
msgid "Users"
|
572 |
msgstr "Utilisateurs"
|
573 |
|
574 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
|
575 |
msgid "Organic"
|
576 |
msgstr "Organiques"
|
577 |
|
578 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:128
|
579 |
+
#: .././admin/widgets.php:830 .././front/setup.php:84 .././front/setup.php:99
|
580 |
#: .././tools/gapi.php:361
|
581 |
msgid "Page Views"
|
582 |
msgstr "Pages vues"
|
583 |
|
584 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:129
|
585 |
+
#: .././admin/widgets.php:834 .././front/setup.php:85 .././front/setup.php:100
|
586 |
#: .././tools/gapi.php:364
|
587 |
msgid "Bounce Rate"
|
588 |
msgstr "Taux de rebond"
|
589 |
|
590 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
|
591 |
msgid "Location"
|
592 |
msgstr "Lieu"
|
593 |
|
594 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
|
595 |
#: .././tools/gapi.php:503
|
596 |
msgid "Referrers"
|
597 |
msgstr "Référence"
|
598 |
|
599 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
|
600 |
#: .././tools/gapi.php:536
|
601 |
msgid "Searches"
|
602 |
msgstr "Recherches"
|
603 |
|
604 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
|
605 |
msgid "Traffic Details"
|
606 |
msgstr "Détails du trafic"
|
607 |
|
608 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:501 .././admin/widgets.php:586
|
609 |
+
#: .././admin/widgets.php:753 .././admin/widgets.php:857 .././front/setup.php:92
|
610 |
msgid "A JavaScript Error is blocking plugin resources!"
|
611 |
msgstr "Une erreur JavaScript bloque les ressources du plugin !"
|
612 |
|
613 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
|
614 |
msgid "Traffic Mediums"
|
615 |
msgstr "Traffic Moyen"
|
616 |
|
617 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
|
618 |
msgid "Visitor Type"
|
619 |
msgstr "Type de visiteur"
|
620 |
|
621 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
|
622 |
msgid "Social Networks"
|
623 |
msgstr "Réseaux Sociaux"
|
624 |
|
625 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
|
626 |
msgid "Search Engines"
|
627 |
msgstr "Moteur de recherche"
|
628 |
|
629 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:838 .././front/setup.php:101
|
630 |
msgid "Organic Search"
|
631 |
msgstr "Recherche Organique"
|
632 |
|
633 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:842 .././front/setup.php:102
|
634 |
msgid "Pages/Session"
|
635 |
msgstr "Pages/Session"
|
636 |
|
637 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:513 .././admin/widgets.php:527
|
638 |
+
#: .././admin/widgets.php:537 .././admin/widgets.php:598 .././admin/widgets.php:612
|
639 |
+
#: .././admin/widgets.php:626 .././admin/widgets.php:640 .././admin/widgets.php:654
|
640 |
+
#: .././admin/widgets.php:664 .././admin/widgets.php:766 .././admin/widgets.php:778
|
641 |
+
#: .././admin/widgets.php:869 .././admin/widgets.php:883 .././admin/widgets.php:893
|
642 |
#: .././front/setup.php:103
|
643 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
644 |
msgstr "Réponse non valide, plus de détails dans la Console JavaScript (F12)."
|
647 |
msgid "Not enough data collected"
|
648 |
msgstr "Pas assez de données collectées"
|
649 |
|
650 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:518 .././admin/widgets.php:532
|
651 |
+
#: .././admin/widgets.php:603 .././admin/widgets.php:617 .././admin/widgets.php:631
|
652 |
+
#: .././admin/widgets.php:645 .././admin/widgets.php:659 .././admin/widgets.php:771
|
653 |
+
#: .././admin/widgets.php:773 .././admin/widgets.php:874 .././admin/widgets.php:888
|
654 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
655 |
msgid "This report is unavailable"
|
656 |
msgstr "Ce rapport n'est pas disponible"
|
717 |
msgid "Find out more!"
|
718 |
msgstr "Plus d'informations!"
|
719 |
|
720 |
+
#: .././admin/widgets.php:112
|
721 |
msgid "Real-Time"
|
722 |
msgstr "Temps réel"
|
723 |
|
724 |
+
#: .././admin/widgets.php:125 .././admin/widgets.php:822 .././front/widgets.php:36
|
725 |
#: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
|
726 |
#: .././tools/gapi.php:666 .././tools/gapi.php:695
|
727 |
msgid "Sessions"
|
728 |
msgstr "Sessions"
|
729 |
|
730 |
+
#: .././admin/widgets.php:131 .././tools/gapi.php:471
|
731 |
msgid "Pages"
|
732 |
msgstr "Pages"
|
733 |
|
734 |
+
#: .././admin/widgets.php:232 .././admin/widgets.php:474
|
735 |
msgid "REFERRAL"
|
736 |
msgstr "RÉFÉRENCE"
|
737 |
|
738 |
+
#: .././admin/widgets.php:236 .././admin/widgets.php:475
|
739 |
msgid "ORGANIC"
|
740 |
msgstr "ORGANIQUE"
|
741 |
|
742 |
+
#: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:476
|
743 |
msgid "SOCIAL"
|
744 |
msgstr "SOCIAL"
|
745 |
|
746 |
+
#: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:477
|
747 |
msgid "CAMPAIGN"
|
748 |
msgstr "CAMPAGNE"
|
749 |
|
750 |
+
#: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:480
|
751 |
msgid "DIRECT"
|
752 |
msgstr "DIRECT"
|
753 |
|
754 |
+
#: .././admin/widgets.php:252 .././admin/widgets.php:481
|
755 |
msgid "NEW"
|
756 |
msgstr "NOUVEAU"
|
757 |
|
758 |
+
#: .././admin/widgets.php:354
|
759 |
msgid "REFERRALS"
|
760 |
msgstr "RÉFÉRENCES"
|
761 |
|
762 |
+
#: .././admin/widgets.php:357
|
763 |
msgid "KEYWORDS"
|
764 |
msgstr "MOTS-CLÉS"
|
765 |
|
languages/ga-dash-hu_HU.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP 4.7.2\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-07-05
|
7 |
-
"PO-Revision-Date: 2015-07-05
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: I love WordPress <info@ilovewp.net>\n"
|
10 |
"Language: hu_HU\n"
|
@@ -12,7 +12,11 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
-
"X-Poedit-KeywordsList:
|
|
|
|
|
|
|
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
@@ -540,18 +544,18 @@ msgstr "Weblap beállítások"
|
|
540 |
msgid "Tracking Code"
|
541 |
msgstr "Követőkód"
|
542 |
|
543 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
544 |
msgid "Today"
|
545 |
msgstr "Ma"
|
546 |
|
547 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
548 |
msgid "Yesterday"
|
549 |
msgstr "Tegnap"
|
550 |
|
551 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
552 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
553 |
-
#: .././admin/widgets.php:
|
554 |
-
#: .././admin/widgets.php:
|
555 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
556 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
557 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -561,17 +565,19 @@ msgid "Last %d Days"
|
|
561 |
msgstr "Elmúlt %d nap"
|
562 |
|
563 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
564 |
-
#: .././admin/widgets.php:
|
565 |
#: .././front/setup.php:77 .././front/setup.php:78
|
566 |
#, php-format
|
567 |
msgid "%s Year"
|
568 |
-
|
|
|
|
|
569 |
|
570 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
571 |
msgid "One"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
575 |
msgid "Three"
|
576 |
msgstr ""
|
577 |
|
@@ -581,85 +587,85 @@ msgid "Unique Views"
|
|
581 |
msgstr "Egyedi megtekintések"
|
582 |
|
583 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
584 |
-
#: .././admin/widgets.php:
|
585 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
586 |
msgid "Users"
|
587 |
msgstr "Felhasználók"
|
588 |
|
589 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
590 |
msgid "Organic"
|
591 |
msgstr "Organikus"
|
592 |
|
593 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
594 |
-
#: .././admin/widgets.php:
|
595 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
596 |
msgid "Page Views"
|
597 |
msgstr "Oldal megtekintések"
|
598 |
|
599 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
600 |
-
#: .././admin/widgets.php:
|
601 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
602 |
msgid "Bounce Rate"
|
603 |
msgstr "Visszafordulási arány"
|
604 |
|
605 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
606 |
msgid "Location"
|
607 |
msgstr "Hely"
|
608 |
|
609 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
610 |
#: .././tools/gapi.php:503
|
611 |
msgid "Referrers"
|
612 |
msgstr "Hivatkozók"
|
613 |
|
614 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
615 |
#: .././tools/gapi.php:536
|
616 |
msgid "Searches"
|
617 |
msgstr "Keresések"
|
618 |
|
619 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
620 |
msgid "Traffic Details"
|
621 |
msgstr "Forgalmi adatok"
|
622 |
|
623 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
624 |
-
#: .././admin/widgets.php:
|
625 |
-
#: .././admin/widgets.php:
|
626 |
msgid "A JavaScript Error is blocking plugin resources!"
|
627 |
msgstr "Egy JavaScript hiba blokkolja a bővítmény forrásait!"
|
628 |
|
629 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
630 |
msgid "Traffic Mediums"
|
631 |
msgstr "Forgalmi közeg"
|
632 |
|
633 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
634 |
msgid "Visitor Type"
|
635 |
msgstr "Látogató típus"
|
636 |
|
637 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
638 |
msgid "Social Networks"
|
639 |
msgstr "Közösségi hálózatok"
|
640 |
|
641 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
642 |
msgid "Search Engines"
|
643 |
msgstr "Keresőmotorok"
|
644 |
|
645 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
646 |
#: .././front/setup.php:101
|
647 |
msgid "Organic Search"
|
648 |
msgstr "Organikus keresés"
|
649 |
|
650 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
651 |
#: .././front/setup.php:102
|
652 |
msgid "Pages/Session"
|
653 |
msgstr "Oldal / munkamenet"
|
654 |
|
655 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
656 |
-
#: .././admin/widgets.php:
|
657 |
-
#: .././admin/widgets.php:
|
658 |
-
#: .././admin/widgets.php:
|
659 |
-
#: .././admin/widgets.php:
|
660 |
-
#: .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
664 |
msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12)."
|
665 |
|
@@ -667,12 +673,12 @@ msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12).
|
|
667 |
msgid "Not enough data collected"
|
668 |
msgstr "Nincs elegendő összegyűjtött adat"
|
669 |
|
670 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
671 |
-
#: .././admin/widgets.php:
|
672 |
-
#: .././admin/widgets.php:
|
673 |
-
#: .././admin/widgets.php:
|
674 |
-
#: .././admin/widgets.php:
|
675 |
-
#: .././admin/widgets.php:
|
676 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
677 |
msgid "This report is unavailable"
|
678 |
msgstr "Ez a jelentés nem elérhető"
|
@@ -741,53 +747,53 @@ msgstr ""
|
|
741 |
msgid "Find out more!"
|
742 |
msgstr "Tudjon meg többet!"
|
743 |
|
744 |
-
#: .././admin/widgets.php:
|
745 |
msgid "Real-Time"
|
746 |
msgstr "Valós idejű"
|
747 |
|
748 |
-
#: .././admin/widgets.php:
|
749 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
750 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
751 |
#: .././tools/gapi.php:695
|
752 |
msgid "Sessions"
|
753 |
msgstr "Munkamenetek"
|
754 |
|
755 |
-
#: .././admin/widgets.php:
|
756 |
msgid "Pages"
|
757 |
msgstr "Oldalak"
|
758 |
|
759 |
-
#: .././admin/widgets.php:
|
760 |
msgid "REFERRAL"
|
761 |
msgstr "HIVATKOZÓ"
|
762 |
|
763 |
-
#: .././admin/widgets.php:
|
764 |
msgid "ORGANIC"
|
765 |
msgstr "ORGANIKUS"
|
766 |
|
767 |
-
#: .././admin/widgets.php:
|
768 |
-
#: .././admin/widgets.php:
|
769 |
msgid "SOCIAL"
|
770 |
msgstr "KÖZÖSSÉGI"
|
771 |
|
772 |
-
#: .././admin/widgets.php:
|
773 |
-
#: .././admin/widgets.php:
|
774 |
msgid "CAMPAIGN"
|
775 |
msgstr "KAMPÁNY"
|
776 |
|
777 |
-
#: .././admin/widgets.php:
|
778 |
-
#: .././admin/widgets.php:
|
779 |
msgid "DIRECT"
|
780 |
msgstr "KÖZVETLEN"
|
781 |
|
782 |
-
#: .././admin/widgets.php:
|
783 |
msgid "NEW"
|
784 |
msgstr "ÚJ"
|
785 |
|
786 |
-
#: .././admin/widgets.php:
|
787 |
msgid "REFERRALS"
|
788 |
msgstr "HIVATKOZÓK"
|
789 |
|
790 |
-
#: .././admin/widgets.php:
|
791 |
msgid "KEYWORDS"
|
792 |
msgstr "KULCSSZAVAK"
|
793 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP 4.7.2\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-07-05 18:34+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-07-05 18:34+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: I love WordPress <info@ilovewp.net>\n"
|
10 |
"Language: hu_HU\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Generator: Poedit 1.8.2\n"
|
15 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
18 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
19 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
544 |
msgid "Tracking Code"
|
545 |
msgstr "Követőkód"
|
546 |
|
547 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
|
548 |
msgid "Today"
|
549 |
msgstr "Ma"
|
550 |
|
551 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
|
552 |
msgid "Yesterday"
|
553 |
msgstr "Tegnap"
|
554 |
|
555 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
556 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:115
|
557 |
+
#: .././admin/widgets.php:116 .././admin/widgets.php:117
|
558 |
+
#: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
|
559 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
560 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
561 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
565 |
msgstr "Elmúlt %d nap"
|
566 |
|
567 |
#: .././admin/setup.php:165 .././admin/setup.php:166
|
568 |
+
#: .././admin/widgets.php:119 .././admin/widgets.php:120
|
569 |
#: .././front/setup.php:77 .././front/setup.php:78
|
570 |
#, php-format
|
571 |
msgid "%s Year"
|
572 |
+
msgid_plural "%s Years"
|
573 |
+
msgstr[0] ""
|
574 |
+
msgstr[1] ""
|
575 |
|
576 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
|
577 |
msgid "One"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
|
581 |
msgid "Three"
|
582 |
msgstr ""
|
583 |
|
587 |
msgstr "Egyedi megtekintések"
|
588 |
|
589 |
#: .././admin/setup.php:170 .././admin/setup.php:186
|
590 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:826
|
591 |
#: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
|
592 |
msgid "Users"
|
593 |
msgstr "Felhasználók"
|
594 |
|
595 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
|
596 |
msgid "Organic"
|
597 |
msgstr "Organikus"
|
598 |
|
599 |
#: .././admin/setup.php:172 .././admin/setup.php:187
|
600 |
+
#: .././admin/widgets.php:128 .././admin/widgets.php:830
|
601 |
#: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
|
602 |
msgid "Page Views"
|
603 |
msgstr "Oldal megtekintések"
|
604 |
|
605 |
#: .././admin/setup.php:173 .././admin/setup.php:188
|
606 |
+
#: .././admin/widgets.php:129 .././admin/widgets.php:834
|
607 |
#: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
|
608 |
msgid "Bounce Rate"
|
609 |
msgstr "Visszafordulási arány"
|
610 |
|
611 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
|
612 |
msgid "Location"
|
613 |
msgstr "Hely"
|
614 |
|
615 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
|
616 |
#: .././tools/gapi.php:503
|
617 |
msgid "Referrers"
|
618 |
msgstr "Hivatkozók"
|
619 |
|
620 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
|
621 |
#: .././tools/gapi.php:536
|
622 |
msgid "Searches"
|
623 |
msgstr "Keresések"
|
624 |
|
625 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
|
626 |
msgid "Traffic Details"
|
627 |
msgstr "Forgalmi adatok"
|
628 |
|
629 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:501
|
630 |
+
#: .././admin/widgets.php:586 .././admin/widgets.php:753
|
631 |
+
#: .././admin/widgets.php:857 .././front/setup.php:92
|
632 |
msgid "A JavaScript Error is blocking plugin resources!"
|
633 |
msgstr "Egy JavaScript hiba blokkolja a bővítmény forrásait!"
|
634 |
|
635 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
|
636 |
msgid "Traffic Mediums"
|
637 |
msgstr "Forgalmi közeg"
|
638 |
|
639 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
|
640 |
msgid "Visitor Type"
|
641 |
msgstr "Látogató típus"
|
642 |
|
643 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
|
644 |
msgid "Social Networks"
|
645 |
msgstr "Közösségi hálózatok"
|
646 |
|
647 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
|
648 |
msgid "Search Engines"
|
649 |
msgstr "Keresőmotorok"
|
650 |
|
651 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:838
|
652 |
#: .././front/setup.php:101
|
653 |
msgid "Organic Search"
|
654 |
msgstr "Organikus keresés"
|
655 |
|
656 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:842
|
657 |
#: .././front/setup.php:102
|
658 |
msgid "Pages/Session"
|
659 |
msgstr "Oldal / munkamenet"
|
660 |
|
661 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:513
|
662 |
+
#: .././admin/widgets.php:527 .././admin/widgets.php:537
|
663 |
+
#: .././admin/widgets.php:598 .././admin/widgets.php:612
|
664 |
+
#: .././admin/widgets.php:626 .././admin/widgets.php:640
|
665 |
+
#: .././admin/widgets.php:654 .././admin/widgets.php:664
|
666 |
+
#: .././admin/widgets.php:766 .././admin/widgets.php:778
|
667 |
+
#: .././admin/widgets.php:869 .././admin/widgets.php:883
|
668 |
+
#: .././admin/widgets.php:893 .././front/setup.php:103
|
669 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
670 |
msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12)."
|
671 |
|
673 |
msgid "Not enough data collected"
|
674 |
msgstr "Nincs elegendő összegyűjtött adat"
|
675 |
|
676 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:518
|
677 |
+
#: .././admin/widgets.php:532 .././admin/widgets.php:603
|
678 |
+
#: .././admin/widgets.php:617 .././admin/widgets.php:631
|
679 |
+
#: .././admin/widgets.php:645 .././admin/widgets.php:659
|
680 |
+
#: .././admin/widgets.php:771 .././admin/widgets.php:773
|
681 |
+
#: .././admin/widgets.php:874 .././admin/widgets.php:888
|
682 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
683 |
msgid "This report is unavailable"
|
684 |
msgstr "Ez a jelentés nem elérhető"
|
747 |
msgid "Find out more!"
|
748 |
msgstr "Tudjon meg többet!"
|
749 |
|
750 |
+
#: .././admin/widgets.php:112
|
751 |
msgid "Real-Time"
|
752 |
msgstr "Valós idejű"
|
753 |
|
754 |
+
#: .././admin/widgets.php:125 .././admin/widgets.php:822
|
755 |
#: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
|
756 |
#: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
|
757 |
#: .././tools/gapi.php:695
|
758 |
msgid "Sessions"
|
759 |
msgstr "Munkamenetek"
|
760 |
|
761 |
+
#: .././admin/widgets.php:131 .././tools/gapi.php:471
|
762 |
msgid "Pages"
|
763 |
msgstr "Oldalak"
|
764 |
|
765 |
+
#: .././admin/widgets.php:232 .././admin/widgets.php:474
|
766 |
msgid "REFERRAL"
|
767 |
msgstr "HIVATKOZÓ"
|
768 |
|
769 |
+
#: .././admin/widgets.php:236 .././admin/widgets.php:475
|
770 |
msgid "ORGANIC"
|
771 |
msgstr "ORGANIKUS"
|
772 |
|
773 |
+
#: .././admin/widgets.php:240 .././admin/widgets.php:360
|
774 |
+
#: .././admin/widgets.php:476
|
775 |
msgid "SOCIAL"
|
776 |
msgstr "KÖZÖSSÉGI"
|
777 |
|
778 |
+
#: .././admin/widgets.php:244 .././admin/widgets.php:363
|
779 |
+
#: .././admin/widgets.php:477
|
780 |
msgid "CAMPAIGN"
|
781 |
msgstr "KAMPÁNY"
|
782 |
|
783 |
+
#: .././admin/widgets.php:248 .././admin/widgets.php:366
|
784 |
+
#: .././admin/widgets.php:480
|
785 |
msgid "DIRECT"
|
786 |
msgstr "KÖZVETLEN"
|
787 |
|
788 |
+
#: .././admin/widgets.php:252 .././admin/widgets.php:481
|
789 |
msgid "NEW"
|
790 |
msgstr "ÚJ"
|
791 |
|
792 |
+
#: .././admin/widgets.php:354
|
793 |
msgid "REFERRALS"
|
794 |
msgstr "HIVATKOZÓK"
|
795 |
|
796 |
+
#: .././admin/widgets.php:357
|
797 |
msgid "KEYWORDS"
|
798 |
msgstr "KULCSSZAVAK"
|
799 |
|
languages/ga-dash-it_IT.mo
CHANGED
Binary file
|
languages/ga-dash-it_IT.po
CHANGED
@@ -1,1285 +1,1275 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Google Analytics Dashboard for WP 4.
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
-
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-07-05
|
7 |
-
"PO-Revision-Date: 2015-07-
|
8 |
-
"Last-Translator:
|
9 |
-
"Language-Team:
|
10 |
-
"Language:
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.
|
15 |
-
"X-Poedit-KeywordsList:
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"X-Poedit-SearchPath-0: ../.\n"
|
20 |
-
|
21 |
-
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
22 |
-
msgid "Analytics"
|
23 |
-
msgstr "Analytics"
|
24 |
-
|
25 |
-
#: .././admin/settings.php:89 .././admin/settings.php:184
|
26 |
-
#: .././admin/settings.php:318 .././admin/settings.php:795
|
27 |
-
#: .././admin/settings.php:1068
|
28 |
-
msgid "Settings saved."
|
29 |
-
msgstr "Impostazioni salvate."
|
30 |
-
|
31 |
-
#: .././admin/settings.php:91 .././admin/settings.php:186
|
32 |
-
#: .././admin/settings.php:320 .././admin/settings.php:772
|
33 |
-
#: .././admin/settings.php:782 .././admin/settings.php:791
|
34 |
-
#: .././admin/settings.php:797 .././admin/settings.php:808
|
35 |
-
#: .././admin/settings.php:1029 .././admin/settings.php:1054
|
36 |
-
#: .././admin/settings.php:1064 .././admin/settings.php:1070
|
37 |
-
#: .././admin/settings.php:1081
|
38 |
-
msgid "Cheating Huh?"
|
39 |
-
msgstr "Tentativo di frode?"
|
40 |
-
|
41 |
-
#: .././admin/settings.php:95 .././admin/settings.php:190
|
42 |
-
#: .././admin/settings.php:324 .././admin/settings.php:641
|
43 |
-
#: .././admin/settings.php:823 .././admin/settings.php:1095
|
44 |
-
#, php-format
|
45 |
-
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
-
msgstr "Qualcosa è andato male, controlla %1$s o %2$s."
|
47 |
-
|
48 |
-
#: .././admin/settings.php:95 .././admin/settings.php:190
|
49 |
-
#: .././admin/settings.php:324 .././admin/settings.php:641
|
50 |
-
#: .././admin/settings.php:823 .././admin/settings.php:1095
|
51 |
-
#: .././admin/setup.php:46 .././admin/setup.php:59
|
52 |
-
msgid "Errors & Debug"
|
53 |
-
msgstr "Errori & Debug"
|
54 |
-
|
55 |
-
#: .././admin/settings.php:95 .././admin/settings.php:190
|
56 |
-
#: .././admin/settings.php:324 .././admin/settings.php:641
|
57 |
-
#: .././admin/settings.php:823 .././admin/settings.php:1095
|
58 |
-
msgid "authorize the plugin"
|
59 |
-
msgstr "autorizza il plugin"
|
60 |
-
|
61 |
-
#: .././admin/settings.php:100
|
62 |
-
msgid "Google Analytics Frontend Settings"
|
63 |
-
msgstr "Impostazioni Frontend di Google Analytics "
|
64 |
-
|
65 |
-
#: .././admin/settings.php:110 .././admin/settings.php:205
|
66 |
-
msgid "Permissions"
|
67 |
-
msgstr "Permessi"
|
68 |
-
|
69 |
-
#: .././admin/settings.php:113 .././admin/settings.php:208
|
70 |
-
msgid "Show stats to:"
|
71 |
-
msgstr "Mostra statistiche a:"
|
72 |
-
|
73 |
-
#: .././admin/settings.php:154
|
74 |
-
msgid "enable web page reports on frontend"
|
75 |
-
msgstr
|
76 |
-
|
77 |
-
#: .././admin/settings.php:161 .././admin/settings.php:297
|
78 |
-
#: .././admin/settings.php:598 .././admin/settings.php:943
|
79 |
-
#: .././admin/settings.php:1232
|
80 |
-
msgid "Save Changes"
|
81 |
-
msgstr "Salva le modifiche"
|
82 |
-
|
83 |
-
#: .././admin/settings.php:195
|
84 |
-
msgid "Google Analytics Backend Settings"
|
85 |
-
msgstr "Impostazioni Backend di Google Analytics"
|
86 |
-
|
87 |
-
#: .././admin/settings.php:251
|
88 |
-
msgid "enable Switch View functionality"
|
89 |
-
msgstr "abilita la funzionalità Visualizza"
|
90 |
-
|
91 |
-
#: .././admin/settings.php:262
|
92 |
-
msgid "enable reports on Posts List and Pages List"
|
93 |
-
msgstr "abilita rapporti nella lista pagine e post"
|
94 |
-
|
95 |
-
#: .././admin/settings.php:273
|
96 |
-
msgid "enable the main Dashboard Widget"
|
97 |
-
msgstr "abilita il widget principale nella bacheca"
|
98 |
-
|
99 |
-
#: .././admin/settings.php:277
|
100 |
-
msgid "Real-Time Settings"
|
101 |
-
msgstr "Impostazioni In tempo reale"
|
102 |
-
|
103 |
-
#: .././admin/settings.php:280
|
104 |
-
msgid "Maximum number of pages to display on real-time tab:"
|
105 |
-
msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
|
106 |
-
|
107 |
-
#: .././admin/settings.php:285
|
108 |
-
msgid "Location Settings"
|
109 |
-
msgstr "Impostazioni posizione geografica"
|
110 |
-
|
111 |
-
#: .././admin/settings.php:289
|
112 |
-
msgid "Target Geo Map to country:"
|
113 |
-
msgstr "Cartina geografica per il paese:"
|
114 |
-
|
115 |
-
#: .././admin/settings.php:327
|
116 |
-
msgid ""
|
117 |
-
"The tracking component is disabled. You should set <strong>Tracking Options</"
|
118 |
-
"strong> to <strong>Enabled</strong>"
|
119 |
-
msgstr ""
|
120 |
-
"Il componente di monitoraggio è disabilitato. È necessario "
|
121 |
-
"impostare il <strong>Monitoraggio</strong> su <strong>Abilitato</strong>"
|
122 |
-
|
123 |
-
#: .././admin/settings.php:332
|
124 |
-
msgid "Google Analytics Tracking Code"
|
125 |
-
msgstr "Impostazioni Monitoraggio di Google Analytics "
|
126 |
-
|
127 |
-
#: .././admin/settings.php:341
|
128 |
-
msgid "Basic Settings"
|
129 |
-
msgstr "Impostazioni di base"
|
130 |
-
|
131 |
-
#: .././admin/settings.php:342 .././admin/settings.php:408
|
132 |
-
msgid "Events Tracking"
|
133 |
-
msgstr "Impostazioni eventi"
|
134 |
-
|
135 |
-
#: .././admin/settings.php:343 .././admin/settings.php:456
|
136 |
-
msgid "Custom Definitions"
|
137 |
-
msgstr "Impostazioni definizioni personalizzate"
|
138 |
-
|
139 |
-
#: .././admin/settings.php:344 .././admin/settings.php:554
|
140 |
-
#: .././admin/settings.php:1215
|
141 |
-
msgid "Exclude Tracking"
|
142 |
-
msgstr "Escludi monitoraggio"
|
143 |
-
|
144 |
-
#: .././admin/settings.php:345
|
145 |
-
msgid "Advanced Settings"
|
146 |
-
msgstr "Impostazioni avanzate"
|
147 |
-
|
148 |
-
#: .././admin/settings.php:353
|
149 |
-
msgid "Tracking Settings"
|
150 |
-
msgstr "Stato del monitoraggio"
|
151 |
-
|
152 |
-
#: .././admin/settings.php:356
|
153 |
-
msgid "Tracking Options:"
|
154 |
-
msgstr "Monitoraggio:"
|
155 |
-
|
156 |
-
#: .././admin/settings.php:358
|
157 |
-
msgid "Disabled"
|
158 |
-
msgstr "Disabilitato"
|
159 |
-
|
160 |
-
#: .././admin/settings.php:359
|
161 |
-
msgid "Enabled"
|
162 |
-
msgstr "Abilitato"
|
163 |
-
|
164 |
-
#: .././admin/settings.php:367 .././admin/settings.php:888
|
165 |
-
#: .././admin/settings.php:910 .././admin/settings.php:1188
|
166 |
-
#: .././admin/widgets.php:61
|
167 |
-
msgid "View Name:"
|
168 |
-
msgstr "Mostra nome:"
|
169 |
-
|
170 |
-
#: .././admin/settings.php:367 .././admin/settings.php:910
|
171 |
-
msgid "Tracking ID:"
|
172 |
-
msgstr "ID monitoraggio:"
|
173 |
-
|
174 |
-
#: .././admin/settings.php:367 .././admin/settings.php:910
|
175 |
-
msgid "Default URL:"
|
176 |
-
msgstr "URL predefinito:"
|
177 |
-
|
178 |
-
#: .././admin/settings.php:367 .././admin/settings.php:910
|
179 |
-
msgid "Time Zone:"
|
180 |
-
msgstr "Fuso orario:"
|
181 |
-
|
182 |
-
#: .././admin/settings.php:372
|
183 |
-
msgid "Basic Tracking"
|
184 |
-
msgstr "Impostazioni di base"
|
185 |
-
|
186 |
-
#: .././admin/settings.php:375
|
187 |
-
msgid "Tracking Type:"
|
188 |
-
msgstr "Tipo:"
|
189 |
-
|
190 |
-
#: .././admin/settings.php:377
|
191 |
-
msgid "Classic Analytics"
|
192 |
-
msgstr "Classic Analytics"
|
193 |
-
|
194 |
-
#: .././admin/settings.php:378
|
195 |
-
msgid "Universal Analytics"
|
196 |
-
msgstr "Universal Analytics"
|
197 |
-
|
198 |
-
#: .././admin/settings.php:389
|
199 |
-
msgid "anonymize IPs while tracking"
|
200 |
-
msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
|
201 |
-
|
202 |
-
#: .././admin/settings.php:400
|
203 |
-
msgid "enable remarketing, demographics and interests reports"
|
204 |
-
msgstr "abilita il remarketing e i rapporti demografici e sugli interessi."
|
205 |
-
|
206 |
-
#: .././admin/settings.php:418
|
207 |
-
msgid "track downloads, mailto and outbound links"
|
208 |
-
msgstr "monitora i download, le e-mail e i link in uscita"
|
209 |
-
|
210 |
-
#: .././admin/settings.php:422
|
211 |
-
msgid "Downloads Regex:"
|
212 |
-
msgstr "Abbreviazioni downloads:"
|
213 |
-
|
214 |
-
#: .././admin/settings.php:433
|
215 |
-
msgid "track affiliate links matching this regex"
|
216 |
-
msgstr "monitora i link di affiliazione corrispondenti a aquesto regex"
|
217 |
-
|
218 |
-
#: .././admin/settings.php:437
|
219 |
-
msgid "Affiliates Regex:"
|
220 |
-
msgstr "Abbreviazioni associate:"
|
221 |
-
|
222 |
-
#: .././admin/settings.php:448
|
223 |
-
msgid "track fragment identifiers, hashmarks (#) in URI links"
|
224 |
-
msgstr ""
|
225 |
-
"monitora gli identificatori di frammento, hashmarks (#) nei collegamenti URI"
|
226 |
-
|
227 |
-
#: .././admin/settings.php:459
|
228 |
-
msgid "Authors:"
|
229 |
-
msgstr "Autori:"
|
230 |
-
|
231 |
-
#: .././admin/settings.php:467
|
232 |
-
msgid "Publication Year:"
|
233 |
-
msgstr "Anno di pubblicazione:"
|
234 |
-
|
235 |
-
#: .././admin/settings.php:475
|
236 |
-
msgid "Categories:"
|
237 |
-
msgstr "Categorie:"
|
238 |
-
|
239 |
-
#: .././admin/settings.php:483
|
240 |
-
msgid "User Type:"
|
241 |
-
msgstr "Tipo di utente:"
|
242 |
-
|
243 |
-
#: .././admin/settings.php:495
|
244 |
-
msgid "Advanced Tracking"
|
245 |
-
msgstr "Impostazioni avanzate"
|
246 |
-
|
247 |
-
#: .././admin/settings.php:498
|
248 |
-
msgid "Page Speed SR:"
|
249 |
-
msgstr "Page Speed Sample Rate:"
|
250 |
-
|
251 |
-
#: .././admin/settings.php:509
|
252 |
-
msgid "exclude events from bounce-rate calculation"
|
253 |
-
msgstr "escludi gli eventi nel calcolo della frequenza di rimbalzo"
|
254 |
-
|
255 |
-
#: .././admin/settings.php:520
|
256 |
-
msgid "enable enhanced link attribution"
|
257 |
-
msgstr "abilita l'attribuzione avanzata dei link"
|
258 |
-
|
259 |
-
#: .././admin/settings.php:531
|
260 |
-
msgid "enable AdSense account linking"
|
261 |
-
msgstr "abilita AdSense account linking"
|
262 |
-
|
263 |
-
#: .././admin/settings.php:542
|
264 |
-
msgid "enable cross domain tracking"
|
265 |
-
msgstr "abilita il monitoraggio cross domain"
|
266 |
-
|
267 |
-
#: .././admin/settings.php:546
|
268 |
-
msgid "Cross Domains:"
|
269 |
-
msgstr " Cross Domains:"
|
270 |
-
|
271 |
-
#: .././admin/settings.php:557
|
272 |
-
msgid "Exclude tracking for:"
|
273 |
-
msgstr "Escludi per:"
|
274 |
-
|
275 |
-
#: .././admin/settings.php:645
|
276 |
-
msgid "Google Analytics Errors & Debugging"
|
277 |
-
msgstr "Errori & Debugging di Google Analytics"
|
278 |
-
|
279 |
-
#: .././admin/settings.php:655
|
280 |
-
msgid "Errors & Details"
|
281 |
-
msgstr "Errori & Dettagli"
|
282 |
-
|
283 |
-
#: .././admin/settings.php:656
|
284 |
-
msgid "Plugin Settings"
|
285 |
-
msgstr "Impostazioni plugin"
|
286 |
-
|
287 |
-
#: .././admin/settings.php:663
|
288 |
-
msgid "Last Error detected"
|
289 |
-
msgstr "Ultimo errore rilevato"
|
290 |
-
|
291 |
-
#: .././admin/settings.php:669 .././admin/settings.php:682
|
292 |
-
msgid "None"
|