Google Analytics Dashboard for WP (GADWP) - Version 4.8.1.2

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 Icon 128x128 Google Analytics Dashboard for WP (GADWP)
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 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 * 365 * 10 ) );
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.'),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&#39;s settings page', 'ga-dash') )); ?></p>
238
  </div>
239
- <?php
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&#39;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 ? esc_html( $default_metric ) : 'sessions';
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 ? esc_html( $default_dimension ) : '30daysAgo';
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['uri'];
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 16:05+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:05+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,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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
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:117 .././front/setup.php:71
530
  msgid "Today"
531
  msgstr "اليوم"
532
 
533
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
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:119
539
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
540
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
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:123 .././admin/widgets.php:124
551
  #: .././front/setup.php:77 .././front/setup.php:78
552
  #, php-format
553
  msgid "%s Year"
554
- msgstr ""
555
-
556
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
 
 
 
 
 
 
557
  msgid "One"
558
  msgstr ""
559
 
560
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
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:130 .././admin/widgets.php:830
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:131 .././front/setup.php:83
576
  msgid "Organic"
577
  msgstr "عضوي"
578
 
579
  #: .././admin/setup.php:172 .././admin/setup.php:187
580
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
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:133 .././admin/widgets.php:838
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:134 .././front/setup.php:86
592
  msgid "Location"
593
  msgstr ""
594
 
595
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
596
  #: .././tools/gapi.php:503
597
  msgid "Referrers"
598
  msgstr ""
599
 
600
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
601
  #: .././tools/gapi.php:536
602
  msgid "Searches"
603
  msgstr ""
604
 
605
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
606
  msgid "Traffic Details"
607
  msgstr ""
608
 
609
- #: .././admin/setup.php:180 .././admin/widgets.php:505
610
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
611
- #: .././admin/widgets.php:861 .././front/setup.php:92
612
  msgid "A JavaScript Error is blocking plugin resources!"
613
  msgstr ""
614
 
615
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
616
  msgid "Traffic Mediums"
617
  msgstr ""
618
 
619
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
620
  msgid "Visitor Type"
621
  msgstr ""
622
 
623
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
624
  msgid "Social Networks"
625
  msgstr ""
626
 
627
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
628
  msgid "Search Engines"
629
  msgstr ""
630
 
631
- #: .././admin/setup.php:189 .././admin/widgets.php:842
632
  #: .././front/setup.php:101
633
  msgid "Organic Search"
634
  msgstr ""
635
 
636
- #: .././admin/setup.php:190 .././admin/widgets.php:846
637
  #: .././front/setup.php:102
638
  msgid "Pages/Session"
639
  msgstr ""
640
 
641
- #: .././admin/setup.php:191 .././admin/widgets.php:517
642
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
643
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
644
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
645
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
646
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
647
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
648
- #: .././admin/widgets.php:897 .././front/setup.php:103
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:522
657
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
658
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
659
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
660
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
661
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
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:116
729
  msgid "Real-Time"
730
  msgstr "الوقت الحقيقي"
731
 
732
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
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:135 .././tools/gapi.php:471
740
  msgid "Pages"
741
  msgstr ""
742
 
743
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
744
  msgid "REFERRAL"
745
  msgstr "المصدر"
746
 
747
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
748
  msgid "ORGANIC"
749
  msgstr "عضوي"
750
 
751
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
752
- #: .././admin/widgets.php:480
753
  msgid "SOCIAL"
754
  msgstr "اجتماعي"
755
 
756
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
757
- #: .././admin/widgets.php:481
758
  msgid "CAMPAIGN"
759
  msgstr ""
760
 
761
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
762
- #: .././admin/widgets.php:484
763
  msgid "DIRECT"
764
  msgstr "مباشر"
765
 
766
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
767
  msgid "NEW"
768
  msgstr "جديد"
769
 
770
- #: .././admin/widgets.php:358
771
  msgid "REFERRALS"
772
  msgstr "المصادر"
773
 
774
- #: .././admin/widgets.php:361
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 16:06+0300\n"
8
- "PO-Revision-Date: 2015-07-05 16:06+0300\n"
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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
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:117 .././front/setup.php:71
526
  msgid "Today"
527
  msgstr "Dnes"
528
 
529
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
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:119 .././admin/widgets.php:120
535
- #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././front/setup.php:73
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:123
544
- #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
545
  #, php-format
546
  msgid "%s Year"
547
- msgstr ""
 
 
 
548
 
549
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
550
  msgid "One"
551
  msgstr ""
552
 
553
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
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:130
563
- #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
564
  #: .././tools/gapi.php:358
565
  msgid "Users"
566
  msgstr "Uživatelé"
567
 
568
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
569
  msgid "Organic"
570
  msgstr "Přírodní"
571
 
572
- #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
573
- #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
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:133
579
- #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
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:134 .././front/setup.php:86
585
  msgid "Location"
586
  msgstr "Poloha"
587
 
588
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
589
  #: .././tools/gapi.php:503
590
  msgid "Referrers"
591
  msgstr "Odkazy"
592
 
593
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
594
  #: .././tools/gapi.php:536
595
  msgid "Searches"
596
  msgstr "Vyhledávání"
597
 
598
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
599
  msgid "Traffic Details"
600
  msgstr "Detail provozu"
601
 
602
- #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
603
- #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
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:681 .././front/setup.php:93
608
  msgid "Traffic Mediums"
609
  msgstr "Dopravní Media"
610
 
611
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
612
  msgid "Visitor Type"
613
  msgstr "Druh Návštěvníka"
614
 
615
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
616
  msgid "Social Networks"
617
  msgstr "Sociální sítě"
618
 
619
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
620
  msgid "Search Engines"
621
  msgstr "Vyhledávače"
622
 
623
- #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
624
  msgid "Organic Search"
625
  msgstr "Přírodní vyhledávání"
626
 
627
- #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
628
  msgid "Pages/Session"
629
  msgstr "Stránky/Návštěvy"
630
 
631
- #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
632
- #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
633
- #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
634
- #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
635
- #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
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:522 .././admin/widgets.php:536
645
- #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
646
- #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
647
- #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
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:116
715
  msgid "Real-Time"
716
  msgstr "Živě"
717
 
718
- #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
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:135 .././tools/gapi.php:471
725
  msgid "Pages"
726
  msgstr "Stránky"
727
 
728
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
729
  msgid "REFERRAL"
730
  msgstr "POSTUPOVÁNÍ"
731
 
732
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
733
  msgid "ORGANIC"
734
  msgstr "PŘÍRODNÍ"
735
 
736
- #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
737
  msgid "SOCIAL"
738
  msgstr "SOCIÁLNÍ"
739
 
740
- #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
741
  msgid "CAMPAIGN"
742
  msgstr "KAMPAŇ"
743
 
744
- #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
745
  msgid "DIRECT"
746
  msgstr "PŘÍMÝ"
747
 
748
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
749
  msgid "NEW"
750
  msgstr "NOVÝ"
751
 
752
- #: .././admin/widgets.php:358
753
  msgid "REFERRALS"
754
  msgstr "POSTOUPENÍ"
755
 
756
- #: .././admin/widgets.php:361
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 16:07+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:07+0300\n"
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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
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:117 .././front/setup.php:71
543
  msgid "Today"
544
  msgstr "Heute"
545
 
546
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
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:119
552
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
553
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
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:123 .././admin/widgets.php:124
564
  #: .././front/setup.php:77 .././front/setup.php:78
565
  #, php-format
566
  msgid "%s Year"
567
- msgstr ""
 
 
568
 
569
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
570
  msgid "One"
571
  msgstr ""
572
 
573
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
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:130 .././admin/widgets.php:830
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:131 .././front/setup.php:83
589
  msgid "Organic"
590
  msgstr "Organisch"
591
 
592
  #: .././admin/setup.php:172 .././admin/setup.php:187
593
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
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:133 .././admin/widgets.php:838
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:134 .././front/setup.php:86
605
  msgid "Location"
606
  msgstr "Geografisch"
607
 
608
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
609
  #: .././tools/gapi.php:503
610
  msgid "Referrers"
611
  msgstr "Verweise"
612
 
613
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
614
  #: .././tools/gapi.php:536
615
  msgid "Searches"
616
  msgstr "Suchen"
617
 
618
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
619
  msgid "Traffic Details"
620
  msgstr "Traffic Details"
621
 
622
- #: .././admin/setup.php:180 .././admin/widgets.php:505
623
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
624
- #: .././admin/widgets.php:861 .././front/setup.php:92
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:681 .././front/setup.php:93
629
  msgid "Traffic Mediums"
630
  msgstr "Medium"
631
 
632
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
633
  msgid "Visitor Type"
634
  msgstr "Nutzertyp"
635
 
636
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
637
  msgid "Social Networks"
638
  msgstr "soziale Netzwerke"
639
 
640
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
641
  msgid "Search Engines"
642
  msgstr "Suchmaschinen"
643
 
644
- #: .././admin/setup.php:189 .././admin/widgets.php:842
645
  #: .././front/setup.php:101
646
  msgid "Organic Search"
647
  msgstr "Organische Suche"
648
 
649
- #: .././admin/setup.php:190 .././admin/widgets.php:846
650
  #: .././front/setup.php:102
651
  msgid "Pages/Session"
652
  msgstr "Seiten/Sitzung"
653
 
654
- #: .././admin/setup.php:191 .././admin/widgets.php:517
655
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
656
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
657
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
658
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
659
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
660
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
661
- #: .././admin/widgets.php:897 .././front/setup.php:103
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:522
671
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
672
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
673
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
674
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
675
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
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:116
744
  msgid "Real-Time"
745
  msgstr "Echtzeit"
746
 
747
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
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:135 .././tools/gapi.php:471
755
  msgid "Pages"
756
  msgstr "Seiten"
757
 
758
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
759
  msgid "REFERRAL"
760
  msgstr "VERWEISUNG"
761
 
762
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
763
  msgid "ORGANIC"
764
  msgstr "ORGANISCH"
765
 
766
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
767
- #: .././admin/widgets.php:480
768
  msgid "SOCIAL"
769
  msgstr "SOZIAL"
770
 
771
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
772
- #: .././admin/widgets.php:481
773
  msgid "CAMPAIGN"
774
  msgstr "KAMPANIE"
775
 
776
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
777
- #: .././admin/widgets.php:484
778
  msgid "DIRECT"
779
  msgstr "DIREKT"
780
 
781
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
782
  msgid "NEW"
783
  msgstr "NEUE"
784
 
785
- #: .././admin/widgets.php:358
786
  msgid "REFERRALS"
787
  msgstr "VERWEISUNGEN"
788
 
789
- #: .././admin/widgets.php:361
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 16:07+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:07+0300\n"
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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
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:117 .././front/setup.php:71
545
  msgid "Today"
546
  msgstr "Hoy"
547
 
548
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
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:119
554
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
555
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
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:123 .././admin/widgets.php:124
566
  #: .././front/setup.php:77 .././front/setup.php:78
567
  #, php-format
568
  msgid "%s Year"
569
- msgstr ""
 
 
570
 
571
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
572
  msgid "One"
573
  msgstr ""
574
 
575
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
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:130 .././admin/widgets.php:830
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:131 .././front/setup.php:83
591
  msgid "Organic"
592
  msgstr "Búsquedas orgánicas"
593
 
594
  #: .././admin/setup.php:172 .././admin/setup.php:187
595
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
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:133 .././admin/widgets.php:838
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:134 .././front/setup.php:86
607
  msgid "Location"
608
  msgstr ""
609
 
610
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
611
  #: .././tools/gapi.php:503
612
  msgid "Referrers"
613
  msgstr ""
614
 
615
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
616
  #: .././tools/gapi.php:536
617
  msgid "Searches"
618
  msgstr ""
619
 
620
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
621
  msgid "Traffic Details"
622
  msgstr ""
623
 
624
- #: .././admin/setup.php:180 .././admin/widgets.php:505
625
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
626
- #: .././admin/widgets.php:861 .././front/setup.php:92
627
  msgid "A JavaScript Error is blocking plugin resources!"
628
  msgstr ""
629
 
630
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
631
  msgid "Traffic Mediums"
632
  msgstr ""
633
 
634
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
635
  msgid "Visitor Type"
636
  msgstr ""
637
 
638
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
639
  msgid "Social Networks"
640
  msgstr ""
641
 
642
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
643
  msgid "Search Engines"
644
  msgstr ""
645
 
646
- #: .././admin/setup.php:189 .././admin/widgets.php:842
647
  #: .././front/setup.php:101
648
  msgid "Organic Search"
649
  msgstr ""
650
 
651
- #: .././admin/setup.php:190 .././admin/widgets.php:846
652
  #: .././front/setup.php:102
653
  msgid "Pages/Session"
654
  msgstr ""
655
 
656
- #: .././admin/setup.php:191 .././admin/widgets.php:517
657
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
658
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
659
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
660
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
661
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
662
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
663
- #: .././admin/widgets.php:897 .././front/setup.php:103
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:522
672
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
673
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
674
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
675
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
676
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
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:116
744
  msgid "Real-Time"
745
  msgstr "Tiempo real"
746
 
747
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
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:135 .././tools/gapi.php:471
755
  msgid "Pages"
756
  msgstr ""
757
 
758
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
759
  msgid "REFERRAL"
760
  msgstr "REFERENCIA"
761
 
762
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
763
  msgid "ORGANIC"
764
  msgstr "ORGÁNICO"
765
 
766
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
767
- #: .././admin/widgets.php:480
768
  msgid "SOCIAL"
769
  msgstr "SOCIAL"
770
 
771
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
772
- #: .././admin/widgets.php:481
773
  msgid "CAMPAIGN"
774
  msgstr ""
775
 
776
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
777
- #: .././admin/widgets.php:484
778
  msgid "DIRECT"
779
  msgstr "DIRECTO"
780
 
781
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
782
  msgid "NEW"
783
  msgstr "NUEVO"
784
 
785
- #: .././admin/widgets.php:358
786
  msgid "REFERRALS"
787
  msgstr ""
788
 
789
- #: .././admin/widgets.php:361
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 16:07+0300\n"
8
- "PO-Revision-Date: 2015-07-05 16:07+0300\n"
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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
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:117 .././front/setup.php:71
527
  msgid "Today"
528
  msgstr "Aujourd'hui"
529
 
530
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
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:119 .././admin/widgets.php:120
536
- #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././front/setup.php:73
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:123
545
- #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
546
  #, php-format
547
  msgid "%s Year"
548
- msgstr ""
 
 
549
 
550
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
551
  msgid "One"
552
  msgstr ""
553
 
554
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
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:130
564
- #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
565
  #: .././tools/gapi.php:358
566
  msgid "Users"
567
  msgstr "Utilisateurs"
568
 
569
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
570
  msgid "Organic"
571
  msgstr "Organiques"
572
 
573
- #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
574
- #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
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:133
580
- #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
581
  #: .././tools/gapi.php:364
582
  msgid "Bounce Rate"
583
  msgstr "Taux de rebond"
584
 
585
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
586
  msgid "Location"
587
  msgstr "Lieu"
588
 
589
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
590
  #: .././tools/gapi.php:503
591
  msgid "Referrers"
592
  msgstr "Référence"
593
 
594
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
595
  #: .././tools/gapi.php:536
596
  msgid "Searches"
597
  msgstr "Recherches"
598
 
599
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
600
  msgid "Traffic Details"
601
  msgstr "Détails du trafic"
602
 
603
- #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
604
- #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
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:681 .././front/setup.php:93
609
  msgid "Traffic Mediums"
610
  msgstr "Traffic Moyen"
611
 
612
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
613
  msgid "Visitor Type"
614
  msgstr "Type de visiteur"
615
 
616
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
617
  msgid "Social Networks"
618
  msgstr "Réseaux Sociaux"
619
 
620
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
621
  msgid "Search Engines"
622
  msgstr "Moteur de recherche"
623
 
624
- #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
625
  msgid "Organic Search"
626
  msgstr "Recherche Organique"
627
 
628
- #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
629
  msgid "Pages/Session"
630
  msgstr "Pages/Session"
631
 
632
- #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
633
- #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
634
- #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
635
- #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
636
- #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
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:522 .././admin/widgets.php:536
646
- #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
647
- #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
648
- #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
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:116
716
  msgid "Real-Time"
717
  msgstr "Temps réel"
718
 
719
- #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
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:135 .././tools/gapi.php:471
726
  msgid "Pages"
727
  msgstr "Pages"
728
 
729
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
730
  msgid "REFERRAL"
731
  msgstr "RÉFÉRENCE"
732
 
733
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
734
  msgid "ORGANIC"
735
  msgstr "ORGANIQUE"
736
 
737
- #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
738
  msgid "SOCIAL"
739
  msgstr "SOCIAL"
740
 
741
- #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
742
  msgid "CAMPAIGN"
743
  msgstr "CAMPAGNE"
744
 
745
- #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
746
  msgid "DIRECT"
747
  msgstr "DIRECT"
748
 
749
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
750
  msgid "NEW"
751
  msgstr "NOUVEAU"
752
 
753
- #: .././admin/widgets.php:358
754
  msgid "REFERRALS"
755
  msgstr "RÉFÉRENCES"
756
 
757
- #: .././admin/widgets.php:361
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 16:08+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:08+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,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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
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:117 .././front/setup.php:71
544
  msgid "Today"
545
  msgstr "Ma"
546
 
547
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
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:119
553
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
554
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
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:123 .././admin/widgets.php:124
565
  #: .././front/setup.php:77 .././front/setup.php:78
566
  #, php-format
567
  msgid "%s Year"
568
- msgstr ""
 
 
569
 
570
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
571
  msgid "One"
572
  msgstr ""
573
 
574
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
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:130 .././admin/widgets.php:830
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:131 .././front/setup.php:83
590
  msgid "Organic"
591
  msgstr "Organikus"
592
 
593
  #: .././admin/setup.php:172 .././admin/setup.php:187
594
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
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:133 .././admin/widgets.php:838
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:134 .././front/setup.php:86
606
  msgid "Location"
607
  msgstr "Hely"
608
 
609
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
610
  #: .././tools/gapi.php:503
611
  msgid "Referrers"
612
  msgstr "Hivatkozók"
613
 
614
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
615
  #: .././tools/gapi.php:536
616
  msgid "Searches"
617
  msgstr "Keresések"
618
 
619
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
620
  msgid "Traffic Details"
621
  msgstr "Forgalmi adatok"
622
 
623
- #: .././admin/setup.php:180 .././admin/widgets.php:505
624
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
625
- #: .././admin/widgets.php:861 .././front/setup.php:92
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:681 .././front/setup.php:93
630
  msgid "Traffic Mediums"
631
  msgstr "Forgalmi közeg"
632
 
633
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
634
  msgid "Visitor Type"
635
  msgstr "Látogató típus"
636
 
637
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
638
  msgid "Social Networks"
639
  msgstr "Közösségi hálózatok"
640
 
641
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
642
  msgid "Search Engines"
643
  msgstr "Keresőmotorok"
644
 
645
- #: .././admin/setup.php:189 .././admin/widgets.php:842
646
  #: .././front/setup.php:101
647
  msgid "Organic Search"
648
  msgstr "Organikus keresés"
649
 
650
- #: .././admin/setup.php:190 .././admin/widgets.php:846
651
  #: .././front/setup.php:102
652
  msgid "Pages/Session"
653
  msgstr "Oldal / munkamenet"
654
 
655
- #: .././admin/setup.php:191 .././admin/widgets.php:517
656
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
657
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
658
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
659
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
660
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
661
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
662
- #: .././admin/widgets.php:897 .././front/setup.php:103
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:522
671
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
672
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
673
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
674
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
675
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
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:116
745
  msgid "Real-Time"
746
  msgstr "Valós idejű"
747
 
748
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
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:135 .././tools/gapi.php:471
756
  msgid "Pages"
757
  msgstr "Oldalak"
758
 
759
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
760
  msgid "REFERRAL"
761
  msgstr "HIVATKOZÓ"
762
 
763
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
764
  msgid "ORGANIC"
765
  msgstr "ORGANIKUS"
766
 
767
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
768
- #: .././admin/widgets.php:480
769
  msgid "SOCIAL"
770
  msgstr "KÖZÖSSÉGI"
771
 
772
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
773
- #: .././admin/widgets.php:481
774
  msgid "CAMPAIGN"
775
  msgstr "KAMPÁNY"
776
 
777
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
778
- #: .././admin/widgets.php:484
779
  msgid "DIRECT"
780
  msgstr "KÖZVETLEN"
781
 
782
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
783
  msgid "NEW"
784
  msgstr "ÚJ"
785
 
786
- #: .././admin/widgets.php:358
787
  msgid "REFERRALS"
788
  msgstr "HIVATKOZÓK"
789
 
790
- #: .././admin/widgets.php:361
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.7\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 16:08+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:08+0300\n"
8
- "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
- "Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
10
- "Language: it\n"
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.8.2\n"
15
- "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
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 &egrave; 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&agrave; 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 &egrave; disabilitato. &Egrave; 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&apos;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"
293
- msgstr "Nessuno"
294
-
295
- #: .././admin/settings.php:676
296
- msgid "Error Details"
297
- msgstr "Dettagli errore"
298
-
299
- #: .././admin/settings.php:696
300
- msgid "Plugin Configuration"
301
- msgstr "Configurazione plugin"
302
-
303
- #: .././admin/settings.php:717 .././admin/settings.php:980
304
- msgid ""
305
- "Loading the required libraries. If this results in a blank screen or a fatal "
306
- "error, try this solution:"
307
- msgstr ""
308
- "Caricamento delle librerie richieste. Se viene restituita una schermata "
309
- "vuota o si verifica un errore fatale, provare questa soluzione:"
310
-
311
- #: .././admin/settings.php:717
312
- msgid "Library conflicts between WordPress plugins"
313
- msgstr "Conflitti tra le librerie dei plugins di WordPress"
314
-
315
- #: .././admin/settings.php:732 .././admin/settings.php:997
316
- msgid "Plugin authorization succeeded."
317
- msgstr "Autorizzazione plugin riuscita."
318
-
319
- #: .././admin/settings.php:747 .././admin/settings.php:1020
320
- msgid ""
321
- "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
322
- "(UA-XXXXX-X). Try again, and use the red link to get your access code"
323
- msgstr ""
324
- "Il codice di accesso <strong>NON</strong> &egrave; il <strong>Tracking ID</"
325
- "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
326
- "il codice di accesso"
327
-
328
- #: .././admin/settings.php:770 .././admin/settings.php:1052
329
- msgid "Cleared Cache."
330
- msgstr "Cache eliminata."
331
-
332
- #: .././admin/settings.php:779 .././admin/settings.php:1061
333
- msgid "Token Reseted and Revoked."
334
- msgstr "Token azzerato e revocato."
335
-
336
- #: .././admin/settings.php:789
337
- msgid "All errors reseted."
338
- msgstr "Tutti gli errori azzerati."
339
-
340
- #: .././admin/settings.php:802 .././admin/settings.php:1075
341
- msgid "All other domains/properties were removed."
342
- msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
343
-
344
- #: .././admin/settings.php:813 .././admin/settings.php:1086
345
- msgid "Google Analytics Settings"
346
- msgstr "Impostazioni di Google Analytics"
347
-
348
- #: .././admin/settings.php:828 .././admin/settings.php:1100
349
- msgid "Use the red link (see below) to generate and get your access code!"
350
- msgstr ""
351
- "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
352
- "di accesso!"
353
-
354
- #: .././admin/settings.php:839 .././admin/settings.php:1128
355
- msgid "Plugin Authorization"
356
- msgstr "Autorizzazione plugin"
357
-
358
- #: .././admin/settings.php:844 .././admin/settings.php:1132
359
- #, php-format
360
- msgid ""
361
- "You should watch the %1$s and read this %2$s before proceeding to "
362
- "authorization. This plugin requires a properly configured Google Analytics "
363
- "account!"
364
- msgstr ""
365
- "Dovresti guardare %1$s e leggere questo %2$s prima di procedere con l&#39;"
366
- "autorizzazione. Questo plugin richiede un account di Google Analytics "
367
- "correttamente configurato!"
368
-
369
- #: .././admin/settings.php:844 .././admin/settings.php:1132
370
- msgid "video"
371
- msgstr "video"
372
-
373
- #: .././admin/settings.php:844 .././admin/settings.php:1132
374
- msgid "tutorial"
375
- msgstr "guida"
376
-
377
- #: .././admin/settings.php:849 .././admin/settings.php:1139
378
- msgid "use your own API Project credentials"
379
- msgstr "utilizza le tue credenziali API"
380
-
381
- #: .././admin/settings.php:854 .././admin/settings.php:1147
382
- msgid "API Key:"
383
- msgstr "Chiave API:"
384
-
385
- #: .././admin/settings.php:858 .././admin/settings.php:1151
386
- msgid "Client ID:"
387
- msgstr "ID Cliente:"
388
-
389
- #: .././admin/settings.php:862 .././admin/settings.php:1155
390
- msgid "Client Secret:"
391
- msgstr "Client Secret:"
392
-
393
- #: .././admin/settings.php:872 .././admin/settings.php:1165
394
- msgid "Clear Authorization"
395
- msgstr "Revoca autorizzazione"
396
-
397
- #: .././admin/settings.php:872 .././admin/settings.php:950
398
- #: .././admin/settings.php:1165 .././admin/settings.php:1241
399
- msgid "Clear Cache"
400
- msgstr "Elimina cache"
401
-
402
- #: .././admin/settings.php:872
403
- msgid "Reset Errors"
404
- msgstr "Azzera errori."
405
-
406
- #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
407
- msgid "General Settings"
408
- msgstr "Impostazioni generali"
409
-
410
- #: .././admin/settings.php:881
411
- msgid "Select View:"
412
- msgstr "Seleziona vista:"
413
-
414
- #: .././admin/settings.php:892 .././admin/settings.php:1192
415
- msgid "Property not found"
416
- msgstr "Propriet&agrave; non trovata"
417
-
418
- #: .././admin/settings.php:898
419
- msgid "Lock Selection"
420
- msgstr "Blocca selezione"
421
-
422
- #: .././admin/settings.php:917
423
- msgid "Theme Color:"
424
- msgstr "Colore tema:"
425
-
426
- #: .././admin/settings.php:925 .././admin/settings.php:1201
427
- msgid "Automatic Updates"
428
- msgstr "Aggiornamenti automatici"
429
-
430
- #: .././admin/settings.php:935 .././admin/settings.php:1211
431
- msgid ""
432
- "automatic updates for minor versions (security and maintenance releases only)"
433
- msgstr ""
434
- "aggiornamenti automatici per le release minori (solo di manutenzione e "
435
- "sicurezza)"
436
-
437
- #: .././admin/settings.php:950 .././admin/settings.php:1241
438
- #: .././admin/widgets.php:32
439
- msgid "Authorize Plugin"
440
- msgstr "Autorizza plugin"
441
-
442
- #: .././admin/settings.php:1026
443
- msgid "Properties refreshed."
444
- msgstr "Propriet&agrave; aggiornate."
445
-
446
- #: .././admin/settings.php:1110
447
- msgid "Network Setup"
448
- msgstr "Configurazione della rete"
449
-
450
- #: .././admin/settings.php:1120
451
- msgid "use a single Google Analytics account for the entire network"
452
- msgstr "utilizza un unico account di Google Analytics per tutta la rete"
453
-
454
- #: .././admin/settings.php:1165
455
- msgid "Refresh Properties"
456
- msgstr "Aggiorna propriet&agrave;"
457
-
458
- #: .././admin/settings.php:1171
459
- msgid "Properties/Views Settings"
460
- msgstr "Propriet&agrave;/Mostra impostazioni"
461
-
462
- #: .././admin/settings.php:1225
463
- msgid "exclude Super Admin tracking for the entire network"
464
- msgstr "escludi il monitoraggio dell&apos;amministratore su tutta la rete"
465
-
466
- #: .././admin/settings.php:1273
467
- msgid "Setup Tutorial & Demo"
468
- msgstr "Guida all&apos;installazione & Demo"
469
-
470
- #: .././admin/settings.php:1281
471
- msgid "Follow & Review"
472
- msgstr ""
473
-
474
- #: .././admin/settings.php:1307
475
- #, php-format
476
- msgid "Your feedback and review are both important, %s!"
477
- msgstr "Il tuo feedback e la tua recensione sono entrambi importanti, %s!"
478
-
479
- #: .././admin/settings.php:1307
480
- msgid "rate this plugin"
481
- msgstr "vota questo plugin"
482
-
483
- #: .././admin/settings.php:1313
484
- msgid "Further Reading"
485
- msgstr "Approfondimenti"
486
-
487
- #: .././admin/settings.php:1320
488
- #, php-format
489
- msgid "%s by moving your website to HTTPS/SSL."
490
- msgstr "%s spostando il sito web a HTTPS/SSL."
491
-
492
- #: .././admin/settings.php:1320
493
- msgid "Improve search rankings"
494
- msgstr "Migliorare le classifiche di ricerca"
495
-
496
- #: .././admin/settings.php:1327
497
- #, php-format
498
- msgid "Other %s written by the same author"
499
- msgstr "Altri %s scritti dallo stesso autore"
500
-
501
- #: .././admin/settings.php:1327
502
- msgid "WordPress Plugins"
503
- msgstr "plugins per WordPress "
504
-
505
- #: .././admin/settings.php:1333
506
- msgid "Other Services"
507
- msgstr "Altri servizi"
508
-
509
- #: .././admin/settings.php:1340
510
- #, php-format
511
- msgid "Speed up your website and plug into a whole %s"
512
- msgstr "Accellera il tuo sito web ad un %s"
513
-
514
- #: .././admin/settings.php:1340
515
- msgid "new level of site speed"
516
- msgstr "nuovo livello di velocit&agrave;"
517
-
518
- #: .././admin/settings.php:1347
519
- #, php-format
520
- msgid "%s service with users tracking at IP level."
521
- msgstr "%s servizio con tracciamento degli utenti a livello IP."
522
-
523
- #: .././admin/settings.php:1347
524
- msgid "Web Analytics"
525
- msgstr "Web Analytics"
526
-
527
- #: .././admin/setup.php:41 .././admin/setup.php:57
528
- msgid "Google Analytics"
529
- msgstr "Google Analytics"
530
-
531
- #: .././admin/setup.php:43
532
- msgid "Backend Settings"
533
- msgstr "Impostazioni backend"
534
-
535
- #: .././admin/setup.php:44
536
- msgid "Frontend Settings"
537
- msgstr "Impostazioni frontend"
538
-
539
- #: .././admin/setup.php:45
540
- msgid "Tracking Code"
541
- msgstr "Monitoraggio"
542
-
543
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
544
- msgid "Today"
545
- msgstr "Oggi"
546
-
547
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
548
- msgid "Yesterday"
549
- msgstr "Ieri"
550
-
551
- #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
552
- #: .././admin/setup.php:164 .././admin/widgets.php:119
553
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
554
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
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
558
- #: .././front/widgets.php:160
559
- #, php-format
560
- msgid "Last %d Days"
561
- msgstr "Ultimi %d giorni"
562
-
563
- #: .././admin/setup.php:165 .././admin/setup.php:166
564
- #: .././admin/widgets.php:123 .././admin/widgets.php:124
565
- #: .././front/setup.php:77 .././front/setup.php:78
566
- #, php-format
567
- msgid "%s Year"
568
- msgstr ""
569
-
570
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
571
- msgid "One"
572
- msgstr ""
573
-
574
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
575
- msgid "Three"
576
- msgstr ""
577
-
578
- #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
579
- #: .././front/setup.php:97
580
- msgid "Unique Views"
581
- msgstr "Visualizzazioni singole"
582
-
583
- #: .././admin/setup.php:170 .././admin/setup.php:186
584
- #: .././admin/widgets.php:130 .././admin/widgets.php:830
585
- #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
586
- msgid "Users"
587
- msgstr "Utenti"
588
-
589
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
590
- msgid "Organic"
591
- msgstr "Traffico da motorI di ricerca"
592
-
593
- #: .././admin/setup.php:172 .././admin/setup.php:187
594
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
595
- #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
596
- msgid "Page Views"
597
- msgstr "Pagine viste"
598
-
599
- #: .././admin/setup.php:173 .././admin/setup.php:188
600
- #: .././admin/widgets.php:133 .././admin/widgets.php:838
601
- #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
602
- msgid "Bounce Rate"
603
- msgstr "Frequenza di rimbalzo"
604
-
605
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
606
- msgid "Location"
607
- msgstr "Posizione geografica"
608
-
609
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
610
- #: .././tools/gapi.php:503
611
- msgid "Referrers"
612
- msgstr "Siti di origine del traffico"
613
-
614
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
615
- #: .././tools/gapi.php:536
616
- msgid "Searches"
617
- msgstr "Ricerche"
618
-
619
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
620
- msgid "Traffic Details"
621
- msgstr "Dettagli traffico"
622
-
623
- #: .././admin/setup.php:180 .././admin/widgets.php:505
624
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
625
- #: .././admin/widgets.php:861 .././front/setup.php:92
626
- msgid "A JavaScript Error is blocking plugin resources!"
627
- msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
628
-
629
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
630
- msgid "Traffic Mediums"
631
- msgstr "Origine del traffico in %"
632
-
633
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
634
- msgid "Visitor Type"
635
- msgstr "Tipo di visitatore"
636
-
637
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
638
- msgid "Social Networks"
639
- msgstr "Social Networks"
640
-
641
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
642
- msgid "Search Engines"
643
- msgstr "Motori di ricerca"
644
-
645
- #: .././admin/setup.php:189 .././admin/widgets.php:842
646
- #: .././front/setup.php:101
647
- msgid "Organic Search"
648
- msgstr "Ricerca organica"
649
-
650
- #: .././admin/setup.php:190 .././admin/widgets.php:846
651
- #: .././front/setup.php:102
652
- msgid "Pages/Session"
653
- msgstr "Pagine per sessione"
654
-
655
- #: .././admin/setup.php:191 .././admin/widgets.php:517
656
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
657
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
658
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
659
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
660
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
661
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
662
- #: .././admin/widgets.php:897 .././front/setup.php:103
663
- msgid "Invalid response, more details in JavaScript Console (F12)."
664
- msgstr ""
665
- "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
666
-
667
- #: .././admin/setup.php:192 .././front/setup.php:104
668
- msgid "Not enough data collected"
669
- msgstr "Dati raccolti insufficienti"
670
-
671
- #: .././admin/setup.php:193 .././admin/widgets.php:522
672
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
673
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
674
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
675
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
676
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
677
- #: .././front/setup.php:105 .././front/widgets.php:100
678
- msgid "This report is unavailable"
679
- msgstr "Questo rapporto non &egrave; disponibile"
680
-
681
- #: .././admin/setup.php:194 .././front/setup.php:106
682
- msgid "report generated by"
683
- msgstr "rapporto generato da"
684
-
685
- #: .././admin/setup.php:225
686
- msgid "Settings"
687
- msgstr "Impostazioni"
688
-
689
- #: .././admin/setup.php:237
690
- #, php-format
691
- msgid "Google Analytics Dashboard for WP has been updated to version %s."
692
- msgstr ""
693
-
694
- #: .././admin/setup.php:237
695
- #, php-format
696
- msgid "For details, check out %1$s and %2$s."
697
- msgstr ""
698
-
699
- #: .././admin/setup.php:237
700
- msgid "the documentation page"
701
- msgstr ""
702
-
703
- #: .././admin/setup.php:237
704
- msgid "the plugin&#39;s settings page"
705
- msgstr ""
706
-
707
- #: .././admin/widgets.php:27 .././front/widgets.php:21
708
- msgid "Google Analytics Dashboard"
709
- msgstr "Bacheca di Google Analytics"
710
-
711
- #: .././admin/widgets.php:32
712
- msgid "This plugin needs an authorization:"
713
- msgstr "Questo plugin necessita di un&#39;autorizzazione:"
714
-
715
- #: .././admin/widgets.php:66
716
- msgid "Something went wrong while retrieving profiles list."
717
- msgstr ""
718
- "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
719
-
720
- #: .././admin/widgets.php:66
721
- msgid "More details"
722
- msgstr "Altri dettagli"
723
-
724
- #: .././admin/widgets.php:79 .././admin/widgets.php:90
725
- msgid "An admin should asign a default Google Analytics Profile."
726
- msgstr ""
727
- "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
728
-
729
- #: .././admin/widgets.php:79 .././admin/widgets.php:90
730
- msgid "Select Domain"
731
- msgstr "Seleziona dominio"
732
-
733
- #: .././admin/widgets.php:95
734
- msgid ""
735
- "Something went wrong while retrieving property data. You need to create and "
736
- "properly configure a Google Analytics account:"
737
- msgstr ""
738
- "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
739
- "necessario creare e configurare correttamente un account di Google Analytics:"
740
-
741
- #: .././admin/widgets.php:95
742
- msgid "Find out more!"
743
- msgstr "Per saperne di pi&ugrave;!"
744
-
745
- #: .././admin/widgets.php:116
746
- msgid "Real-Time"
747
- msgstr "In tempo reale"
748
-
749
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
750
- #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
751
- #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
752
- #: .././tools/gapi.php:695
753
- msgid "Sessions"
754
- msgstr "Sessioni"
755
-
756
- #: .././admin/widgets.php:135 .././tools/gapi.php:471
757
- msgid "Pages"
758
- msgstr "Pagine"
759
-
760
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
761
- msgid "REFERRAL"
762
- msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
763
-
764
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
765
- msgid "ORGANIC"
766
- msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
767
-
768
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
769
- #: .././admin/widgets.php:480
770
- msgid "SOCIAL"
771
- msgstr "TRAFFICO DAI SOCIAL NETWORK"
772
-
773
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
774
- #: .././admin/widgets.php:481
775
- msgid "CAMPAIGN"
776
- msgstr "CAMPAGNA"
777
-
778
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
779
- #: .././admin/widgets.php:484
780
- msgid "DIRECT"
781
- msgstr "TRAFFICO DIRETTO"
782
-
783
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
784
- msgid "NEW"
785
- msgstr "VISITATORI NUOVI"
786
-
787
- #: .././admin/widgets.php:358
788
- msgid "REFERRALS"
789
- msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
790
-
791
- #: .././admin/widgets.php:361
792
- msgid "KEYWORDS"
793
- msgstr "KEYWORDS"
794
-
795
- #: .././front/widgets.php:21
796
- msgid "Will display your google analytics stats in a widget"
797
- msgstr "Visualizza le statistiche di Google Analytics in un widget"
798
-
799
- #: .././front/widgets.php:36 .././tools/gapi.php:695
800
- msgid "trend"
801
- msgstr "tendenza"
802
-
803
- #: .././front/widgets.php:123
804
- msgid "Period:"
805
- msgstr "Periodo:"
806
-
807
- #: .././front/widgets.php:123
808
- msgid "Sessions:"
809
- msgstr "Sessioni:"
810
-
811
- #: .././front/widgets.php:127
812
- msgid "generated by"
813
- msgstr "generato da"
814
-
815
- #: .././front/widgets.php:136
816
- msgid "Google Analytics Stats"
817
- msgstr "Statistiche di Google Analytics"
818
-
819
- #: .././front/widgets.php:144
820
- msgid "Title:"
821
- msgstr "Titolo:"
822
-
823
- #: .././front/widgets.php:147
824
- msgid "Display:"
825
- msgstr "Mostra:"
826
-
827
- #: .././front/widgets.php:148
828
- msgid "Chart & Totals"
829
- msgstr "Grafico & Totali"
830
-
831
- #: .././front/widgets.php:149
832
- msgid "Chart"
833
- msgstr "Grafico"
834
-
835
- #: .././front/widgets.php:150
836
- msgid "Totals"
837
- msgstr "Totali"
838
-
839
- #: .././front/widgets.php:154
840
- msgid "Anonymize stats:"
841
- msgstr "Anonimizza le statistiche:"
842
-
843
- #: .././front/widgets.php:157
844
- msgid "Stats for:"
845
- msgstr "Statistiche per:"
846
-
847
- #: .././front/widgets.php:164
848
- msgid "Give credits:"
849
- msgstr "Crediti:"
850
-
851
- #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
852
- msgid "This is not allowed, read the documentation!"
853
- msgstr "Questo non &egrave; permesso, leggi la documentazione"
854
-
855
- #: .././tools/gapi.php:128
856
- msgid "Use this link to get your access code:"
857
- msgstr "Utilizza questo link per ottenere il codice di accesso:"
858
-
859
- #: .././tools/gapi.php:128
860
- msgid "Get Access Code"
861
- msgstr "Ottieni codice di accesso"
862
-
863
- #: .././tools/gapi.php:132 .././tools/gapi.php:133
864
- msgid "Use the red link to get your access code!"
865
- msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
866
-
867
- #: .././tools/gapi.php:132
868
- msgid "Access Code:"
869
- msgstr "Codice di accesso:"
870
-
871
- #: .././tools/gapi.php:139
872
- msgid "Save Access Code"
873
- msgstr "Salva codice di accesso"
874
-
875
- #: .././tools/gapi.php:367
876
- msgid "Organic Searches"
877
- msgstr "Ricerche organiche"
878
-
879
- #: .././tools/gapi.php:370
880
- msgid "Unique Page Views"
881
- msgstr "Visualizzazioni pagine singole"
882
-
883
- #: .././tools/gapi.php:378
884
- msgid "Hour"
885
- msgstr "Ora"
886
-
887
- #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
888
- msgid "Date"
889
- msgstr "Data"
890
-
891
- #: .././tools/gapi.php:471
892
- msgid "Views"
893
- msgstr "Visualizzazioni"
894
-
895
- #: .././tools/gapi.php:557
896
- msgid "Countries"
897
- msgstr "Paesi"
898
-
899
- #: .././tools/gapi.php:567
900
- msgid "Cities from"
901
- msgstr "Paese: "
902
-
903
- #: .././tools/gapi.php:620
904
- msgid "Channels"
905
- msgstr "Canali"
906
-
907
- #: .././tools/gapi.php:666
908
- msgid "Type"
909
- msgstr "Tipo"
910
-
911
- #~ msgid "Last 7 Days"
912
- #~ msgstr "Ultimi 7 giorni"
913
-
914
- #~ msgid "Last 14 Days"
915
- #~ msgstr "Ultimi 14 giorni"
916
-
917
- #~ msgid "Last 30 Days"
918
- #~ msgstr "Ultimi 30 giorni"
919
-
920
- #~ msgid "Last 90 Days"
921
- #~ msgstr "Ultimi 90 giorni"
922
-
923
- #~ msgid "show page sessions and users in frontend (after each article)"
924
- #~ msgstr ""
925
- #~ "mostra la pagina delle sessioni e degli utenti nel frontend (dopo ogni "
926
- #~ "articolo)"
927
-
928
- #~ msgid "show page searches (after each article)"
929
- #~ msgstr "mostra la pagina delle ricerche (dopo ogni articolo)"
930
-
931
- #~ msgid "Support & Reviews"
932
- #~ msgstr "Supporto & Recensioni"
933
-
934
- #~ msgid "Plugin documentation and support on %s"
935
- #~ msgstr "Documentazione del plugin e supporto su %s"
936
-
937
- #~ msgid "Views vs UniqueViews"
938
- #~ msgstr "Visualizzazioni vs Visualizzazioni singole"
939
-
940
- #~ msgid "Google Analytics Reports"
941
- #~ msgstr "Rapporti di Google Analytics"
942
-
943
- #~ msgid "UniqueViews"
944
- #~ msgstr "Visualizzazioni uniche"
945
-
946
- #~ msgid "Read %s for more information about Frontend Features and Options."
947
- #~ msgstr ""
948
- #~ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalit&agrave; "
949
- #~ "del frontend."
950
-
951
- #~ msgid "this documentation page"
952
- #~ msgstr "la pagina della documentazione del plugin"
953
-
954
- #~ msgid "Read %s for more information about Backend Features and Options."
955
- #~ msgstr ""
956
- #~ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalit&agrave; "
957
- #~ "del backend."
958
-
959
- #~ msgid "For more information about Tracking Options read %s."
960
- #~ msgstr "Per ulteriori informazioni sulle opzioni di monitoraggio leggi %s."
961
-
962
- #~ msgid "For errors and/or other issues check %s and related resources."
963
- #~ msgstr "Per errori e/o altri problemi controlla %s e le risorse relative."
964
-
965
- #~ msgid "enable Switch Profile/View functionality"
966
- #~ msgstr "abilita Cambia profilo/Mostra funzionalit&agrave;"
967
-
968
- #~ msgid ""
969
- #~ "For errors and/or other issues please check %s and related tutorials."
970
- #~ msgstr ""
971
- #~ "Per errori e/o altri problemi controlla %s e leggi la guida relativa."
972
-
973
- #~ msgid "Select Domain:"
974
- #~ msgstr "Seleziona dominio:"
975
-
976
- #~ msgid "and/or hide all other domains"
977
- #~ msgstr "e/o nasconde tutti gli altri domini"
978
-
979
- #~ msgid "Hide Now"
980
- #~ msgstr "Nascondi ora"
981
-
982
- #~ msgid "find out more %s"
983
- #~ msgstr "per saperne di pi&ugrave; su %s"
984
-
985
- #~ msgid "about this feature"
986
- #~ msgstr "su questa funzionalit&agrave;"
987
-
988
- #~ msgid " show page sessions and users in frontend (after each article)"
989
- #~ msgstr ""
990
- #~ "mostra le sessioni della pagina e gli utenti nel frontend (dopo ogni "
991
- #~ "articolo)"
992
-
993
- #~ msgid " show page searches (after each article)"
994
- #~ msgstr " mostra le ricerche della pagina (dopo ogni articolo)"
995
-
996
- #~ msgid " anonymize IPs while tracking"
997
- #~ msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
998
-
999
- #~ msgid " enable remarketing, demographics and interests reports"
1000
- #~ msgstr " abilita remarketing e rapporti demografici e sugli interessi"
1001
-
1002
- #~ msgid " track downloads, mailto and outbound links"
1003
- #~ msgstr "monitora downloads, mailto e link in uscita"
1004
-
1005
- #~ msgid " track affiliate links matching this regex"
1006
- #~ msgstr ""
1007
- #~ " monitora collegamenti associati corrispondenti a queste abbreviazioni"
1008
-
1009
- #~ msgid " track fragment identifiers, hashmarks (#) in URI links"
1010
- #~ msgstr ""
1011
- #~ " monitora gli identificatori di frammentoe gli hashmarks (#) nei "
1012
- #~ "collegamenti URI"
1013
-
1014
- #~ msgid " exclude events from bounce-rate calculation"
1015
- #~ msgstr " escludi gli eventi dal calcolo del bounce-rate"
1016
-
1017
- #~ msgid " enable enhanced link attribution"
1018
- #~ msgstr "utilizza l&#39;attribuzione avanzata dei link"
1019
-
1020
- #~ msgid " enable AdSense account linking"
1021
- #~ msgstr " abilita AdSense account linking"
1022
-
1023
- #~ msgid " enable cross domain tracking"
1024
- #~ msgstr " abilita cross domanin tracking"
1025
-
1026
- #~ msgid " use your own API Project credentials"
1027
- #~ msgstr "utilizza le proprie credenziali API"
1028
-
1029
- #~ msgid " use a single Google Analytics account for the entire network"
1030
- #~ msgstr " utilizza un unico account Google Analytics per l&#39;intera rete"
1031
-
1032
- #~ msgid " exclude Super Admin tracking for the entire network"
1033
- #~ msgstr " esclude il monitoraggio del Super Amministratore per tutta la rete"
1034
-
1035
- #~ msgid "or"
1036
- #~ msgstr "o"
1037
-
1038
- #~ msgid "Tracking Options"
1039
- #~ msgstr "Opzioni di monitoraggio"
1040
-
1041
- #~ msgid "to"
1042
- #~ msgstr "a"
1043
-
1044
- #~ msgid "and related tutorials"
1045
- #~ msgstr "ed i tutorial relativi"
1046
-
1047
- #~ msgid "You should watch the"
1048
- #~ msgstr "Dovresti guardare il"
1049
-
1050
- #~ msgid "and read this"
1051
- #~ msgstr "e leggere questa"
1052
-
1053
- #~ msgid "Other"
1054
- #~ msgstr "Altri"
1055
-
1056
- #~ msgid ""
1057
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1058
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1059
- #~ msgstr ""
1060
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1061
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1062
-
1063
- #~ msgid "Google Analytics Dashboard Settings"
1064
- #~ msgstr "Impostazioni Backend di Google Analytics"
1065
-
1066
- #~ msgid "A new frontend widget is available! To enable it, go to"
1067
- #~ msgstr ""
1068
- #~ "&Egrave; disponibile un nuovo widget per il frontend. Per attivarlo, vai "
1069
- #~ "a"
1070
-
1071
- #~ msgid "Appearance -> Widgets"
1072
- #~ msgstr "Aspetto -> Widgets"
1073
-
1074
- #~ msgid "and look for Google Analytics Dashboard."
1075
- #~ msgstr "e cerca Bacheca di Google Analytics."
1076
-
1077
- #~ msgid "Something went wrong, you need to"
1078
- #~ msgstr "Qualcosa &egrave; andato male, devi"
1079
-
1080
- #~ msgid "or properly configure your"
1081
- #~ msgstr "o configura correttamente il tuo"
1082
-
1083
- #~ msgid "Google Analytics account"
1084
- #~ msgstr "Account di Google Analytics"
1085
-
1086
- #~ msgid "(find out more"
1087
- #~ msgstr "(per saperne di pi&ugrave;"
1088
-
1089
- #~ msgid ")"
1090
- #~ msgstr ")"
1091
-
1092
- #~ msgid "Additional Stats & Charts"
1093
- #~ msgstr "Ulteriori statistiche e grafici"
1094
-
1095
- #~ msgid " show Geo Map chart for sessions"
1096
- #~ msgstr "mostra il grafico per le sessioni"
1097
-
1098
- #~ msgid "Target Geo Map to region:"
1099
- #~ msgstr "Cartina delle visite per il paese:"
1100
-
1101
- #~ msgid "and render top"
1102
- #~ msgstr "con"
1103
-
1104
- #~ msgid "cities (find out more"
1105
- #~ msgstr "citt&agrave; (per saperne di più"
1106
-
1107
- #~ msgid " show traffic overview"
1108
- #~ msgstr " mostra la panoramica sul traffico"
1109
-
1110
- #~ msgid " show top pages"
1111
- #~ msgstr " mostra le principali pagine attive"
1112
-
1113
- #~ msgid " show top referrers"
1114
- #~ msgstr " mostra i siti principali di origine del traffico"
1115
-
1116
- #~ msgid " show top searches"
1117
- #~ msgstr " mostra le ricerche principali"
1118
-
1119
- #~ msgid "Dumping log data."
1120
- #~ msgstr "Dumping dati di log."
1121
-
1122
- #~ msgid ""
1123
- #~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
1124
- #~ "CURL!"
1125
- #~ msgstr ""
1126
- #~ "PHP CURL &egrave; necessario. Chiedete al vostro fornitore di hosting per "
1127
- #~ "installare/attivare PHP CURL!"
1128
-
1129
- #~ msgid ""
1130
- #~ "Something went wrong. Please check the Debugging Data section for "
1131
- #~ "possible errors"
1132
- #~ msgstr ""
1133
- #~ "Qualcosa &egrave; andato male. Controlla la sezione dati di debug per "
1134
- #~ "possibili errori"
1135
-
1136
- #~ msgid "Debugging Data"
1137
- #~ msgstr "Debug dei dati"
1138
-
1139
- #~ msgid "Anonimize chart&#39;s stats:"
1140
- #~ msgstr "Rendi anonimo il grafico delle statistiche:"
1141
-
1142
- #~ msgid "Top Searches"
1143
- #~ msgstr "Ricerche principali"
1144
-
1145
- #~ msgid "Error Log"
1146
- #~ msgstr "Log errori"
1147
-
1148
- #~ msgid ""
1149
- #~ "No stats available. Please check the Debugging Data section for possible "
1150
- #~ "errors"
1151
- #~ msgstr ""
1152
- #~ "Nessuna statistica disponibile. Controlla la sezione dati di debug per "
1153
- #~ "possibili errori"
1154
-
1155
- #~ msgid "Country/City"
1156
- #~ msgstr "Paese/Citt&agrave;"
1157
-
1158
- #~ msgid "Source"
1159
- #~ msgstr "Sorgente"
1160
-
1161
- #~ msgid "Traffic Sources"
1162
- #~ msgstr "Sorgenti di traffico"
1163
-
1164
- #~ msgid "New vs. Returning"
1165
- #~ msgstr "Visitatori nuovi contro Visitatori di ritorno"
1166
-
1167
- #~ msgid "Top Pages"
1168
- #~ msgstr "Principali pagine attive"
1169
-
1170
- #~ msgid "Top Referrers"
1171
- #~ msgstr "Referral principali"
1172
-
1173
- #~ msgid ""
1174
- #~ "This is a beta feature and is only available when using my Developer Key! "
1175
- #~ "("
1176
- #~ msgstr ""
1177
- #~ "Questa &egrave; una caratteristica beta ed &egrave; disponibile solo "
1178
- #~ "quando si utilizza il Developer Key! ("
1179
-
1180
- #~ msgid "more about this feature"
1181
- #~ msgstr "pi&ugrave; informazioni su questa funzione"
1182
-
1183
- #~ msgid "RETURN"
1184
- #~ msgstr "VISITATORI DI RITORNO"
1185
-
1186
- #~ msgid "Sessions from "
1187
- #~ msgstr "Sessioni da: "
1188
-
1189
- #~ msgid "Sessions by Country"
1190
- #~ msgstr "Sessioni per paese"
1191
-
1192
- #~ msgid "Traffic Overview"
1193
- #~ msgstr "Panoramica traffico"
1194
-
1195
- #~ msgid "Visits"
1196
- #~ msgstr "Visite"
1197
-
1198
- #~ msgid "Visitors"
1199
- #~ msgstr "Visitatori"
1200
-
1201
- #~ msgid "Visits:"
1202
- #~ msgstr "Visite:"
1203
-
1204
- #~ msgid "Visitors:"
1205
- #~ msgstr "Visitatori:"
1206
-
1207
- #~ msgid "Page Views:"
1208
- #~ msgstr "Pagine viste:"
1209
-
1210
- #~ msgid "Bounce Rate:"
1211
- #~ msgstr "Frequenza di rimbalzo:"
1212
-
1213
- #~ msgid "Organic Search:"
1214
- #~ msgstr "Ricerca organica:"
1215
-
1216
- #~ msgid "Pages per Visit:"
1217
- #~ msgstr "Pagine per visita:"
1218
-
1219
- #~ msgid "Visits from "
1220
- #~ msgstr "Visite da "
1221
-
1222
- #~ msgid "Visits by Country"
1223
- #~ msgstr "Visite per paese"
1224
-
1225
- #~ msgid " show page visits and visitors in frontend (after each article)"
1226
- #~ msgstr ""
1227
- #~ " mostra le pagine visitate e visitatori nel frontend (dopo ogni articolo)"
1228
-
1229
- #~ msgid " show Geo Map chart for visits"
1230
- #~ msgstr " mostra la cartina geografica delle visite"
1231
-
1232
- #~ msgid "You can find support on"
1233
- #~ msgstr "Puoi trovare supporto su"
1234
-
1235
- #~ msgid "DeConf.com"
1236
- #~ msgstr "DeConf.com"
1237
-
1238
- #~ msgid "service with visitors tracking at IP level."
1239
- #~ msgstr "servizio con monitoraggio dei visitatori a livello IP."
1240
-
1241
- #~ msgid "Total Visits:"
1242
- #~ msgstr "Totale visite:"
1243
-
1244
- #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1245
- #~ msgstr "CURL è necessaria. Si prega di installare/abilitare CURL!"
1246
-
1247
- #~ msgid "Options saved."
1248
- #~ msgstr "Opzioni salvate."
1249
-
1250
- #~ msgid "Show stats to: "
1251
- #~ msgstr "Mostra statistiche:"
1252
-
1253
- #~ msgid "Update Options"
1254
- #~ msgstr "Aggiorna opzioni"
1255
-
1256
- #~ msgid "Tracking Options: "
1257
- #~ msgstr "Opzioni monitoraggio: "
1258
-
1259
- #~ msgid "Tracking Type: "
1260
- #~ msgstr "Tipo di monitoraggio:"
1261
-
1262
- #, fuzzy
1263
- #~ msgid "User Type: "
1264
- #~ msgstr "Tipo di monitoraggio:"
1265
-
1266
- #~ msgid "Exclude tracking for: "
1267
- #~ msgstr "Escludi monitoraggio per:"
1268
-
1269
- #~ msgid "Select Domain: "
1270
- #~ msgstr "Seleziona dominio:"
1271
-
1272
- #~ msgid "Theme Color: "
1273
- #~ msgstr "Colote tema:"
1274
-
1275
- #~ msgid "&#39; trend"
1276
- #~ msgstr "&#39; tendenza"
1277
-
1278
- #~ msgid "DeConf Help Center"
1279
- #~ msgstr "DeConf Help Center"
1280
-
1281
- #~ msgid "Custom Code"
1282
- #~ msgstr "Codice personalizzato"
1283
-
1284
- #~ msgid "Your Tracking Code:"
1285
- #~ msgstr "Il tuo codice di monitoraggio:"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Google Analytics Dashboard for WP 4.8.1.1\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:36+0300\n"
7
+ "PO-Revision-Date: 2015-07-06 15:33+0100\n"
8
+ "Last-Translator: Leo The Strategist <leoxleox73@gmail.com>\n"
9
+ "Language-Team: LTS <leoxleox73@gmail.com>\n"
10
+ "Language: it_IT\n"
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.5.4\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
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 &egrave; 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 "abilita i rapporti sulle pagine web nel frontend"
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&agrave; 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 &egrave; disabilitato. &Egrave; 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&apos;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"
293
+ msgstr "Nessuno"
294
+
295
+ #: .././admin/settings.php:676
296
+ msgid "Error Details"
297
+ msgstr "Dettagli errore"
298
+
299
+ #: .././admin/settings.php:696
300
+ msgid "Plugin Configuration"
301
+ msgstr "Configurazione plugin"
302
+
303
+ #: .././admin/settings.php:717 .././admin/settings.php:980
304
+ msgid ""
305
+ "Loading the required libraries. If this results in a blank screen or a fatal "
306
+ "error, try this solution:"
307
+ msgstr ""
308
+ "Caricamento delle librerie richieste. Se viene restituita una schermata "
309
+ "vuota o si verifica un errore fatale, provare questa soluzione:"
310
+
311
+ #: .././admin/settings.php:717
312
+ msgid "Library conflicts between WordPress plugins"
313
+ msgstr "Conflitti tra le librerie dei plugins di WordPress"
314
+
315
+ #: .././admin/settings.php:732 .././admin/settings.php:997
316
+ msgid "Plugin authorization succeeded."
317
+ msgstr "Autorizzazione plugin riuscita."
318
+
319
+ #: .././admin/settings.php:747 .././admin/settings.php:1020
320
+ msgid ""
321
+ "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
322
+ "(UA-XXXXX-X). Try again, and use the red link to get your access code"
323
+ msgstr ""
324
+ "Il codice di accesso <strong>NON</strong> &egrave; il <strong>Tracking ID</"
325
+ "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
326
+ "il codice di accesso"
327
+
328
+ #: .././admin/settings.php:770 .././admin/settings.php:1052
329
+ msgid "Cleared Cache."
330
+ msgstr "Cache eliminata."
331
+
332
+ #: .././admin/settings.php:779 .././admin/settings.php:1061
333
+ msgid "Token Reseted and Revoked."
334
+ msgstr "Token azzerato e revocato."
335
+
336
+ #: .././admin/settings.php:789
337
+ msgid "All errors reseted."
338
+ msgstr "Tutti gli errori azzerati."
339
+
340
+ #: .././admin/settings.php:802 .././admin/settings.php:1075
341
+ msgid "All other domains/properties were removed."
342
+ msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
343
+
344
+ #: .././admin/settings.php:813 .././admin/settings.php:1086
345
+ msgid "Google Analytics Settings"
346
+ msgstr "Impostazioni di Google Analytics"
347
+
348
+ #: .././admin/settings.php:828 .././admin/settings.php:1100
349
+ msgid "Use the red link (see below) to generate and get your access code!"
350
+ msgstr ""
351
+ "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
352
+ "di accesso!"
353
+
354
+ #: .././admin/settings.php:839 .././admin/settings.php:1128
355
+ msgid "Plugin Authorization"
356
+ msgstr "Autorizzazione plugin"
357
+
358
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
359
+ #, php-format
360
+ msgid ""
361
+ "You should watch the %1$s and read this %2$s before proceeding to "
362
+ "authorization. This plugin requires a properly configured Google Analytics "
363
+ "account!"
364
+ msgstr ""
365
+ "Dovresti guardare %1$s e leggere questo %2$s prima di procedere con l&#39;"
366
+ "autorizzazione. Questo plugin richiede un account di Google Analytics "
367
+ "correttamente configurato!"
368
+
369
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
370
+ msgid "video"
371
+ msgstr "video"
372
+
373
+ #: .././admin/settings.php:844 .././admin/settings.php:1132
374
+ msgid "tutorial"
375
+ msgstr "guida"
376
+
377
+ #: .././admin/settings.php:849 .././admin/settings.php:1139
378
+ msgid "use your own API Project credentials"
379
+ msgstr "utilizza le tue credenziali API"
380
+
381
+ #: .././admin/settings.php:854 .././admin/settings.php:1147
382
+ msgid "API Key:"
383
+ msgstr "Chiave API:"
384
+
385
+ #: .././admin/settings.php:858 .././admin/settings.php:1151
386
+ msgid "Client ID:"
387
+ msgstr "ID Cliente:"
388
+
389
+ #: .././admin/settings.php:862 .././admin/settings.php:1155
390
+ msgid "Client Secret:"
391
+ msgstr "Client Secret:"
392
+
393
+ #: .././admin/settings.php:872 .././admin/settings.php:1165
394
+ msgid "Clear Authorization"
395
+ msgstr "Revoca autorizzazione"
396
+
397
+ #: .././admin/settings.php:872 .././admin/settings.php:950
398
+ #: .././admin/settings.php:1165 .././admin/settings.php:1241
399
+ msgid "Clear Cache"
400
+ msgstr "Elimina cache"
401
+
402
+ #: .././admin/settings.php:872
403
+ msgid "Reset Errors"
404
+ msgstr "Azzera errori."
405
+
406
+ #: .././admin/settings.php:878 .././admin/setup.php:42 .././admin/setup.php:58
407
+ msgid "General Settings"
408
+ msgstr "Impostazioni generali"
409
+
410
+ #: .././admin/settings.php:881
411
+ msgid "Select View:"
412
+ msgstr "Seleziona vista:"
413
+
414
+ #: .././admin/settings.php:892 .././admin/settings.php:1192
415
+ msgid "Property not found"
416
+ msgstr "Propriet&agrave; non trovata"
417
+
418
+ #: .././admin/settings.php:898
419
+ msgid "Lock Selection"
420
+ msgstr "Blocca selezione"
421
+
422
+ #: .././admin/settings.php:917
423
+ msgid "Theme Color:"
424
+ msgstr "Colore tema:"
425
+
426
+ #: .././admin/settings.php:925 .././admin/settings.php:1201
427
+ msgid "Automatic Updates"
428
+ msgstr "Aggiornamenti automatici"
429
+
430
+ #: .././admin/settings.php:935 .././admin/settings.php:1211
431
+ msgid ""
432
+ "automatic updates for minor versions (security and maintenance releases only)"
433
+ msgstr ""
434
+ "aggiornamenti automatici per le release minori (solo di manutenzione e "
435
+ "sicurezza)"
436
+
437
+ #: .././admin/settings.php:950 .././admin/settings.php:1241
438
+ #: .././admin/widgets.php:32
439
+ msgid "Authorize Plugin"
440
+ msgstr "Autorizza plugin"
441
+
442
+ #: .././admin/settings.php:1026
443
+ msgid "Properties refreshed."
444
+ msgstr "Propriet&agrave; aggiornate."
445
+
446
+ #: .././admin/settings.php:1110
447
+ msgid "Network Setup"
448
+ msgstr "Configurazione della rete"
449
+
450
+ #: .././admin/settings.php:1120
451
+ msgid "use a single Google Analytics account for the entire network"
452
+ msgstr "utilizza un unico account di Google Analytics per tutta la rete"
453
+
454
+ #: .././admin/settings.php:1165
455
+ msgid "Refresh Properties"
456
+ msgstr "Aggiorna propriet&agrave;"
457
+
458
+ #: .././admin/settings.php:1171
459
+ msgid "Properties/Views Settings"
460
+ msgstr "Propriet&agrave;/Mostra impostazioni"
461
+
462
+ #: .././admin/settings.php:1225
463
+ msgid "exclude Super Admin tracking for the entire network"
464
+ msgstr "escludi il monitoraggio dell&apos;amministratore su tutta la rete"
465
+
466
+ #: .././admin/settings.php:1273
467
+ msgid "Setup Tutorial & Demo"
468
+ msgstr "Guida all&apos;installazione & Demo"
469
+
470
+ #: .././admin/settings.php:1281
471
+ msgid "Follow & Review"
472
+ msgstr "Supporto & Recensioni"
473
+
474
+ #: .././admin/settings.php:1307
475
+ #, php-format
476
+ msgid "Your feedback and review are both important, %s!"
477
+ msgstr "Il tuo feedback e la tua recensione sono entrambi importanti, %s!"
478
+
479
+ #: .././admin/settings.php:1307
480
+ msgid "rate this plugin"
481
+ msgstr "vota questo plugin"
482
+
483
+ #: .././admin/settings.php:1313
484
+ msgid "Further Reading"
485
+ msgstr "Approfondimenti"
486
+
487
+ #: .././admin/settings.php:1320
488
+ #, php-format
489
+ msgid "%s by moving your website to HTTPS/SSL."
490
+ msgstr "%s spostando il sito web a HTTPS/SSL."
491
+
492
+ #: .././admin/settings.php:1320
493
+ msgid "Improve search rankings"
494
+ msgstr "Migliorare le classifiche di ricerca"
495
+
496
+ #: .././admin/settings.php:1327
497
+ #, php-format
498
+ msgid "Other %s written by the same author"
499
+ msgstr "Altri %s scritti dallo stesso autore"
500
+
501
+ #: .././admin/settings.php:1327
502
+ msgid "WordPress Plugins"
503
+ msgstr "plugins per WordPress "
504
+
505
+ #: .././admin/settings.php:1333
506
+ msgid "Other Services"
507
+ msgstr "Altri servizi"
508
+
509
+ #: .././admin/settings.php:1340
510
+ #, php-format
511
+ msgid "Speed up your website and plug into a whole %s"
512
+ msgstr "Accellera il tuo sito web ad un %s"
513
+
514
+ #: .././admin/settings.php:1340
515
+ msgid "new level of site speed"
516
+ msgstr "nuovo livello di velocit&agrave;"
517
+
518
+ #: .././admin/settings.php:1347
519
+ #, php-format
520
+ msgid "%s service with users tracking at IP level."
521
+ msgstr "%s servizio con tracciamento degli utenti a livello IP."
522
+
523
+ #: .././admin/settings.php:1347
524
+ msgid "Web Analytics"
525
+ msgstr "Web Analytics"
526
+
527
+ #: .././admin/setup.php:41 .././admin/setup.php:57
528
+ msgid "Google Analytics"
529
+ msgstr "Google Analytics"
530
+
531
+ #: .././admin/setup.php:43
532
+ msgid "Backend Settings"
533
+ msgstr "Impostazioni backend"
534
+
535
+ #: .././admin/setup.php:44
536
+ msgid "Frontend Settings"
537
+ msgstr "Impostazioni frontend"
538
+
539
+ #: .././admin/setup.php:45
540
+ msgid "Tracking Code"
541
+ msgstr "Monitoraggio"
542
+
543
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
544
+ msgid "Today"
545
+ msgstr "Oggi"
546
+
547
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
548
+ msgid "Yesterday"
549
+ msgstr "Ieri"
550
+
551
+ #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
552
+ #: .././admin/setup.php:164 .././admin/widgets.php:115
553
+ #: .././admin/widgets.php:116 .././admin/widgets.php:117
554
+ #: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
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
558
+ #: .././front/widgets.php:160
559
+ #, php-format
560
+ msgid "Last %d Days"
561
+ msgstr "Ultimi %d giorni"
562
+
563
+ #: .././admin/setup.php:165 .././admin/setup.php:166
564
+ #: .././admin/widgets.php:119 .././admin/widgets.php:120
565
+ #: .././front/setup.php:77 .././front/setup.php:78
566
+ #, php-format
567
+ msgid "%s Year"
568
+ msgid_plural "%s Years"
569
+ msgstr[0] "%s anno"
570
+ msgstr[1] "%s anni"
571
+
572
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
573
+ msgid "One"
574
+ msgstr "Uno"
575
+
576
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
577
+ msgid "Three"
578
+ msgstr "Tre"
579
+
580
+ #: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
581
+ #: .././front/setup.php:97
582
+ msgid "Unique Views"
583
+ msgstr "Visualizzazioni singole"
584
+
585
+ #: .././admin/setup.php:170 .././admin/setup.php:186
586
+ #: .././admin/widgets.php:126 .././admin/widgets.php:826
587
+ #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
588
+ msgid "Users"
589
+ msgstr "Utenti"
590
+
591
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
592
+ msgid "Organic"
593
+ msgstr "Traffico da motorI di ricerca"
594
+
595
+ #: .././admin/setup.php:172 .././admin/setup.php:187
596
+ #: .././admin/widgets.php:128 .././admin/widgets.php:830
597
+ #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
598
+ msgid "Page Views"
599
+ msgstr "Pagine viste"
600
+
601
+ #: .././admin/setup.php:173 .././admin/setup.php:188
602
+ #: .././admin/widgets.php:129 .././admin/widgets.php:834
603
+ #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
604
+ msgid "Bounce Rate"
605
+ msgstr "Frequenza di rimbalzo"
606
+
607
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
608
+ msgid "Location"
609
+ msgstr "Posizione geografica"
610
+
611
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
612
+ #: .././tools/gapi.php:503
613
+ msgid "Referrers"
614
+ msgstr "Siti di origine del traffico"
615
+
616
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
617
+ #: .././tools/gapi.php:536
618
+ msgid "Searches"
619
+ msgstr "Ricerche"
620
+
621
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
622
+ msgid "Traffic Details"
623
+ msgstr "Dettagli traffico"
624
+
625
+ #: .././admin/setup.php:180 .././admin/widgets.php:501
626
+ #: .././admin/widgets.php:586 .././admin/widgets.php:753
627
+ #: .././admin/widgets.php:857 .././front/setup.php:92
628
+ msgid "A JavaScript Error is blocking plugin resources!"
629
+ msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
630
+
631
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
632
+ msgid "Traffic Mediums"
633
+ msgstr "Origine del traffico in %"
634
+
635
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
636
+ msgid "Visitor Type"
637
+ msgstr "Tipo di visitatore"
638
+
639
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
640
+ msgid "Social Networks"
641
+ msgstr "Social Networks"
642
+
643
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
644
+ msgid "Search Engines"
645
+ msgstr "Motori di ricerca"
646
+
647
+ #: .././admin/setup.php:189 .././admin/widgets.php:838
648
+ #: .././front/setup.php:101
649
+ msgid "Organic Search"
650
+ msgstr "Ricerca organica"
651
+
652
+ #: .././admin/setup.php:190 .././admin/widgets.php:842
653
+ #: .././front/setup.php:102
654
+ msgid "Pages/Session"
655
+ msgstr "Pagine per sessione"
656
+
657
+ #: .././admin/setup.php:191 .././admin/widgets.php:513
658
+ #: .././admin/widgets.php:527 .././admin/widgets.php:537
659
+ #: .././admin/widgets.php:598 .././admin/widgets.php:612
660
+ #: .././admin/widgets.php:626 .././admin/widgets.php:640
661
+ #: .././admin/widgets.php:654 .././admin/widgets.php:664
662
+ #: .././admin/widgets.php:766 .././admin/widgets.php:778
663
+ #: .././admin/widgets.php:869 .././admin/widgets.php:883
664
+ #: .././admin/widgets.php:893 .././front/setup.php:103
665
+ msgid "Invalid response, more details in JavaScript Console (F12)."
666
+ msgstr ""
667
+ "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
668
+
669
+ #: .././admin/setup.php:192 .././front/setup.php:104
670
+ msgid "Not enough data collected"
671
+ msgstr "Dati raccolti insufficienti"
672
+
673
+ #: .././admin/setup.php:193 .././admin/widgets.php:518
674
+ #: .././admin/widgets.php:532 .././admin/widgets.php:603
675
+ #: .././admin/widgets.php:617 .././admin/widgets.php:631
676
+ #: .././admin/widgets.php:645 .././admin/widgets.php:659
677
+ #: .././admin/widgets.php:771 .././admin/widgets.php:773
678
+ #: .././admin/widgets.php:874 .././admin/widgets.php:888
679
+ #: .././front/setup.php:105 .././front/widgets.php:100
680
+ msgid "This report is unavailable"
681
+ msgstr "Questo rapporto non &egrave; disponibile"
682
+
683
+ #: .././admin/setup.php:194 .././front/setup.php:106
684
+ msgid "report generated by"
685
+ msgstr "rapporto generato da"
686
+
687
+ #: .././admin/setup.php:225
688
+ msgid "Settings"
689
+ msgstr "Impostazioni"
690
+
691
+ #: .././admin/setup.php:237
692
+ #, php-format
693
+ msgid "Google Analytics Dashboard for WP has been updated to version %s."
694
+ msgstr "Google Analytics Dashboard for Wp è stato aggiornato alla versione %s."
695
+
696
+ #: .././admin/setup.php:237
697
+ #, php-format
698
+ msgid "For details, check out %1$s and %2$s."
699
+ msgstr "Per dettagli, guarda %1$s e %2$s."
700
+
701
+ #: .././admin/setup.php:237
702
+ msgid "the documentation page"
703
+ msgstr "la pagina della documentazione del plugin"
704
+
705
+ #: .././admin/setup.php:237
706
+ msgid "the plugin&#39;s settings page"
707
+ msgstr "La pagina delle impostazioni del plugin"
708
+
709
+ #: .././admin/widgets.php:27 .././front/widgets.php:21
710
+ msgid "Google Analytics Dashboard"
711
+ msgstr "Bacheca di Google Analytics"
712
+
713
+ #: .././admin/widgets.php:32
714
+ msgid "This plugin needs an authorization:"
715
+ msgstr "Questo plugin necessita di un&#39;autorizzazione:"
716
+
717
+ #: .././admin/widgets.php:66
718
+ msgid "Something went wrong while retrieving profiles list."
719
+ msgstr ""
720
+ "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
721
+
722
+ #: .././admin/widgets.php:66
723
+ msgid "More details"
724
+ msgstr "Altri dettagli"
725
+
726
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
727
+ msgid "An admin should asign a default Google Analytics Profile."
728
+ msgstr ""
729
+ "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
730
+
731
+ #: .././admin/widgets.php:79 .././admin/widgets.php:90
732
+ msgid "Select Domain"
733
+ msgstr "Seleziona dominio"
734
+
735
+ #: .././admin/widgets.php:95
736
+ msgid ""
737
+ "Something went wrong while retrieving property data. You need to create and "
738
+ "properly configure a Google Analytics account:"
739
+ msgstr ""
740
+ "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
741
+ "necessario creare e configurare correttamente un account di Google Analytics:"
742
+
743
+ #: .././admin/widgets.php:95
744
+ msgid "Find out more!"
745
+ msgstr "Per saperne di pi&ugrave;!"
746
+
747
+ #: .././admin/widgets.php:112
748
+ msgid "Real-Time"
749
+ msgstr "In tempo reale"
750
+
751
+ #: .././admin/widgets.php:125 .././admin/widgets.php:822
752
+ #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
753
+ #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
754
+ #: .././tools/gapi.php:695
755
+ msgid "Sessions"
756
+ msgstr "Sessioni"
757
+
758
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
759
+ msgid "Pages"
760
+ msgstr "Pagine"
761
+
762
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
763
+ msgid "REFERRAL"
764
+ msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
765
+
766
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
767
+ msgid "ORGANIC"
768
+ msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
769
+
770
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360
771
+ #: .././admin/widgets.php:476
772
+ msgid "SOCIAL"
773
+ msgstr "TRAFFICO DAI SOCIAL NETWORK"
774
+
775
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363
776
+ #: .././admin/widgets.php:477
777
+ msgid "CAMPAIGN"
778
+ msgstr "CAMPAGNA"
779
+
780
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366
781
+ #: .././admin/widgets.php:480
782
+ msgid "DIRECT"
783
+ msgstr "TRAFFICO DIRETTO"
784
+
785
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
786
+ msgid "NEW"
787
+ msgstr "VISITATORI NUOVI"
788
+
789
+ #: .././admin/widgets.php:354
790
+ msgid "REFERRALS"
791
+ msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
792
+
793
+ #: .././admin/widgets.php:357
794
+ msgid "KEYWORDS"
795
+ msgstr "KEYWORDS"
796
+
797
+ #: .././front/widgets.php:21
798
+ msgid "Will display your google analytics stats in a widget"
799
+ msgstr "Visualizza le statistiche di Google Analytics in un widget"
800
+
801
+ #: .././front/widgets.php:36 .././tools/gapi.php:695
802
+ msgid "trend"
803
+ msgstr "tendenza"
804
+
805
+ #: .././front/widgets.php:123
806
+ msgid "Period:"
807
+ msgstr "Periodo:"
808
+
809
+ #: .././front/widgets.php:123
810
+ msgid "Sessions:"
811
+ msgstr "Sessioni:"
812
+
813
+ #: .././front/widgets.php:127
814
+ msgid "generated by"
815
+ msgstr "generato da"
816
+
817
+ #: .././front/widgets.php:136
818
+ msgid "Google Analytics Stats"
819
+ msgstr "Statistiche di Google Analytics"
820
+
821
+ #: .././front/widgets.php:144
822
+ msgid "Title:"
823
+ msgstr "Titolo:"
824
+
825
+ #: .././front/widgets.php:147
826
+ msgid "Display:"
827
+ msgstr "Mostra:"
828
+
829
+ #: .././front/widgets.php:148
830
+ msgid "Chart & Totals"
831
+ msgstr "Grafico & Totali"
832
+
833
+ #: .././front/widgets.php:149
834
+ msgid "Chart"
835
+ msgstr "Grafico"
836
+
837
+ #: .././front/widgets.php:150
838
+ msgid "Totals"
839
+ msgstr "Totali"
840
+
841
+ #: .././front/widgets.php:154
842
+ msgid "Anonymize stats:"
843
+ msgstr "Anonimizza le statistiche:"
844
+
845
+ #: .././front/widgets.php:157
846
+ msgid "Stats for:"
847
+ msgstr "Statistiche per:"
848
+
849
+ #: .././front/widgets.php:164
850
+ msgid "Give credits:"
851
+ msgstr "Crediti:"
852
+
853
+ #: .././gadwp.php:46 .././gadwp.php:54 .././gadwp.php:61
854
+ msgid "This is not allowed, read the documentation!"
855
+ msgstr "Questo non &egrave; permesso, leggi la documentazione"
856
+
857
+ #: .././tools/gapi.php:128
858
+ msgid "Use this link to get your access code:"
859
+ msgstr "Utilizza questo link per ottenere il codice di accesso:"
860
+
861
+ #: .././tools/gapi.php:128
862
+ msgid "Get Access Code"
863
+ msgstr "Ottieni codice di accesso"
864
+
865
+ #: .././tools/gapi.php:132 .././tools/gapi.php:133
866
+ msgid "Use the red link to get your access code!"
867
+ msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
868
+
869
+ #: .././tools/gapi.php:132
870
+ msgid "Access Code:"
871
+ msgstr "Codice di accesso:"
872
+
873
+ #: .././tools/gapi.php:139
874
+ msgid "Save Access Code"
875
+ msgstr "Salva codice di accesso"
876
+
877
+ #: .././tools/gapi.php:367
878
+ msgid "Organic Searches"
879
+ msgstr "Ricerche organiche"
880
+
881
+ #: .././tools/gapi.php:370
882
+ msgid "Unique Page Views"
883
+ msgstr "Visualizzazioni pagine singole"
884
+
885
+ #: .././tools/gapi.php:378
886
+ msgid "Hour"
887
+ msgstr "Ora"
888
+
889
+ #: .././tools/gapi.php:382 .././tools/gapi.php:385 .././tools/gapi.php:695
890
+ msgid "Date"
891
+ msgstr "Data"
892
+
893
+ #: .././tools/gapi.php:471
894
+ msgid "Views"
895
+ msgstr "Visualizzazioni"
896
+
897
+ #: .././tools/gapi.php:557
898
+ msgid "Countries"
899
+ msgstr "Paesi"
900
+
901
+ #: .././tools/gapi.php:567
902
+ msgid "Cities from"
903
+ msgstr "Paese: "
904
+
905
+ #: .././tools/gapi.php:620
906
+ msgid "Channels"
907
+ msgstr "Canali"
908
+
909
+ #: .././tools/gapi.php:666
910
+ msgid "Type"
911
+ msgstr "Tipo"
912
+
913
+ #~ msgid "Read %s for more information about Frontend Features and Options."
914
+ #~ msgstr ""
915
+ #~ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalit&agrave; "
916
+ #~ "del frontend."
917
+
918
+ #~ msgid "show page sessions and users in frontend (after each article)"
919
+ #~ msgstr ""
920
+ #~ "mostra la pagina delle sessioni e degli utenti nel frontend (dopo ogni "
921
+ #~ "articolo)"
922
+
923
+ #~ msgid "show page searches (after each article)"
924
+ #~ msgstr "mostra la pagina delle ricerche (dopo ogni articolo)"
925
+
926
+ #~ msgid "Read %s for more information about Backend Features and Options."
927
+ #~ msgstr ""
928
+ #~ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalit&agrave; "
929
+ #~ "del backend."
930
+
931
+ #~ msgid "For more information about Tracking Options read %s."
932
+ #~ msgstr "Per ulteriori informazioni sulle opzioni di monitoraggio leggi %s."
933
+
934
+ #~ msgid "For errors and/or other issues check %s and related resources."
935
+ #~ msgstr "Per errori e/o altri problemi controlla %s e le risorse relative."
936
+
937
+ #~ msgid "Plugin documentation and support on %s"
938
+ #~ msgstr "Documentazione del plugin e supporto su %s"
939
+
940
+ #~ msgid "Last 30 Days"
941
+ #~ msgstr "Ultimi 30 giorni"
942
+
943
+ #~ msgid "Last 90 Days"
944
+ #~ msgstr "Ultimi 90 giorni"
945
+
946
+ #~ msgid "Last 14 Days"
947
+ #~ msgstr "Ultimi 14 giorni"
948
+
949
+ #~ msgid "Views vs UniqueViews"
950
+ #~ msgstr "Visualizzazioni vs Visualizzazioni singole"
951
+
952
+ #~ msgid "Google Analytics Reports"
953
+ #~ msgstr "Rapporti di Google Analytics"
954
+
955
+ #~ msgid "UniqueViews"
956
+ #~ msgstr "Visualizzazioni uniche"
957
+
958
+ #~ msgid "enable Switch Profile/View functionality"
959
+ #~ msgstr "abilita Cambia profilo/Mostra funzionalit&agrave;"
960
+
961
+ #~ msgid ""
962
+ #~ "For errors and/or other issues please check %s and related tutorials."
963
+ #~ msgstr ""
964
+ #~ "Per errori e/o altri problemi controlla %s e leggi la guida relativa."
965
+
966
+ #~ msgid "Select Domain:"
967
+ #~ msgstr "Seleziona dominio:"
968
+
969
+ #~ msgid "and/or hide all other domains"
970
+ #~ msgstr "e/o nasconde tutti gli altri domini"
971
+
972
+ #~ msgid "Hide Now"
973
+ #~ msgstr "Nascondi ora"
974
+
975
+ #~ msgid "find out more %s"
976
+ #~ msgstr "per saperne di pi&ugrave; su %s"
977
+
978
+ #~ msgid "about this feature"
979
+ #~ msgstr "su questa funzionalit&agrave;"
980
+
981
+ #~ msgid " show page sessions and users in frontend (after each article)"
982
+ #~ msgstr ""
983
+ #~ "mostra le sessioni della pagina e gli utenti nel frontend (dopo ogni "
984
+ #~ "articolo)"
985
+
986
+ #~ msgid " show page searches (after each article)"
987
+ #~ msgstr " mostra le ricerche della pagina (dopo ogni articolo)"
988
+
989
+ #~ msgid " anonymize IPs while tracking"
990
+ #~ msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
991
+
992
+ #~ msgid " enable remarketing, demographics and interests reports"
993
+ #~ msgstr " abilita remarketing e rapporti demografici e sugli interessi"
994
+
995
+ #~ msgid " track downloads, mailto and outbound links"
996
+ #~ msgstr "monitora downloads, mailto e link in uscita"
997
+
998
+ #~ msgid " track affiliate links matching this regex"
999
+ #~ msgstr ""
1000
+ #~ " monitora collegamenti associati corrispondenti a queste abbreviazioni"
1001
+
1002
+ #~ msgid " track fragment identifiers, hashmarks (#) in URI links"
1003
+ #~ msgstr ""
1004
+ #~ " monitora gli identificatori di frammentoe gli hashmarks (#) nei "
1005
+ #~ "collegamenti URI"
1006
+
1007
+ #~ msgid " exclude events from bounce-rate calculation"
1008
+ #~ msgstr " escludi gli eventi dal calcolo del bounce-rate"
1009
+
1010
+ #~ msgid " enable enhanced link attribution"
1011
+ #~ msgstr "utilizza l&#39;attribuzione avanzata dei link"
1012
+
1013
+ #~ msgid " enable AdSense account linking"
1014
+ #~ msgstr " abilita AdSense account linking"
1015
+
1016
+ #~ msgid " enable cross domain tracking"
1017
+ #~ msgstr " abilita cross domanin tracking"
1018
+
1019
+ #~ msgid " use your own API Project credentials"
1020
+ #~ msgstr "utilizza le proprie credenziali API"
1021
+
1022
+ #~ msgid " use a single Google Analytics account for the entire network"
1023
+ #~ msgstr " utilizza un unico account Google Analytics per l&#39;intera rete"
1024
+
1025
+ #~ msgid " exclude Super Admin tracking for the entire network"
1026
+ #~ msgstr " esclude il monitoraggio del Super Amministratore per tutta la rete"
1027
+
1028
+ #~ msgid "or"
1029
+ #~ msgstr "o"
1030
+
1031
+ #~ msgid "Tracking Options"
1032
+ #~ msgstr "Opzioni di monitoraggio"
1033
+
1034
+ #~ msgid "to"
1035
+ #~ msgstr "a"
1036
+
1037
+ #~ msgid "and related tutorials"
1038
+ #~ msgstr "ed i tutorial relativi"
1039
+
1040
+ #~ msgid "You should watch the"
1041
+ #~ msgstr "Dovresti guardare il"
1042
+
1043
+ #~ msgid "and read this"
1044
+ #~ msgstr "e leggere questa"
1045
+
1046
+ #~ msgid "Other"
1047
+ #~ msgstr "Altri"
1048
+
1049
+ #~ msgid ""
1050
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1051
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1052
+ #~ msgstr ""
1053
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1054
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1055
+
1056
+ #~ msgid "A new frontend widget is available! To enable it, go to"
1057
+ #~ msgstr ""
1058
+ #~ "&Egrave; disponibile un nuovo widget per il frontend. Per attivarlo, vai "
1059
+ #~ "a"
1060
+
1061
+ #~ msgid "Appearance -> Widgets"
1062
+ #~ msgstr "Aspetto -> Widgets"
1063
+
1064
+ #~ msgid "and look for Google Analytics Dashboard."
1065
+ #~ msgstr "e cerca Bacheca di Google Analytics."
1066
+
1067
+ #~ msgid "Something went wrong, you need to"
1068
+ #~ msgstr "Qualcosa &egrave; andato male, devi"
1069
+
1070
+ #~ msgid "or properly configure your"
1071
+ #~ msgstr "o configura correttamente il tuo"
1072
+
1073
+ #~ msgid "Google Analytics account"
1074
+ #~ msgstr "Account di Google Analytics"
1075
+
1076
+ #~ msgid "(find out more"
1077
+ #~ msgstr "(per saperne di pi&ugrave;"
1078
+
1079
+ #~ msgid ")"
1080
+ #~ msgstr ")"
1081
+
1082
+ #~ msgid "Additional Stats & Charts"
1083
+ #~ msgstr "Ulteriori statistiche e grafici"
1084
+
1085
+ #~ msgid " show Geo Map chart for sessions"
1086
+ #~ msgstr "mostra il grafico per le sessioni"
1087
+
1088
+ #~ msgid "Target Geo Map to region:"
1089
+ #~ msgstr "Cartina delle visite per il paese:"
1090
+
1091
+ #~ msgid "and render top"
1092
+ #~ msgstr "con"
1093
+
1094
+ #~ msgid "cities (find out more"
1095
+ #~ msgstr "citt&agrave; (per saperne di più"
1096
+
1097
+ #~ msgid " show traffic overview"
1098
+ #~ msgstr " mostra la panoramica sul traffico"
1099
+
1100
+ #~ msgid " show top pages"
1101
+ #~ msgstr " mostra le principali pagine attive"
1102
+
1103
+ #~ msgid " show top referrers"
1104
+ #~ msgstr " mostra i siti principali di origine del traffico"
1105
+
1106
+ #~ msgid " show top searches"
1107
+ #~ msgstr " mostra le ricerche principali"
1108
+
1109
+ #~ msgid "Dumping log data."
1110
+ #~ msgstr "Dumping dati di log."
1111
+
1112
+ #~ msgid ""
1113
+ #~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
1114
+ #~ "CURL!"
1115
+ #~ msgstr ""
1116
+ #~ "PHP CURL &egrave; necessario. Chiedete al vostro fornitore di hosting per "
1117
+ #~ "installare/attivare PHP CURL!"
1118
+
1119
+ #~ msgid ""
1120
+ #~ "Something went wrong. Please check the Debugging Data section for "
1121
+ #~ "possible errors"
1122
+ #~ msgstr ""
1123
+ #~ "Qualcosa &egrave; andato male. Controlla la sezione dati di debug per "
1124
+ #~ "possibili errori"
1125
+
1126
+ #~ msgid "Debugging Data"
1127
+ #~ msgstr "Debug dei dati"
1128
+
1129
+ #~ msgid "Anonimize chart&#39;s stats:"
1130
+ #~ msgstr "Rendi anonimo il grafico delle statistiche:"
1131
+
1132
+ #~ msgid "Top Searches"
1133
+ #~ msgstr "Ricerche principali"
1134
+
1135
+ #~ msgid "Error Log"
1136
+ #~ msgstr "Log errori"
1137
+
1138
+ #~ msgid ""
1139
+ #~ "No stats available. Please check the Debugging Data section for possible "
1140
+ #~ "errors"
1141
+ #~ msgstr ""
1142
+ #~ "Nessuna statistica disponibile. Controlla la sezione dati di debug per "
1143
+ #~ "possibili errori"
1144
+
1145
+ #~ msgid "Country/City"
1146
+ #~ msgstr "Paese/Citt&agrave;"
1147
+
1148
+ #~ msgid "Source"
1149
+ #~ msgstr "Sorgente"
1150
+
1151
+ #~ msgid "Traffic Sources"
1152
+ #~ msgstr "Sorgenti di traffico"
1153
+
1154
+ #~ msgid "New vs. Returning"
1155
+ #~ msgstr "Visitatori nuovi contro Visitatori di ritorno"
1156
+
1157
+ #~ msgid "Top Pages"
1158
+ #~ msgstr "Principali pagine attive"
1159
+
1160
+ #~ msgid "Top Referrers"
1161
+ #~ msgstr "Referral principali"
1162
+
1163
+ #~ msgid ""
1164
+ #~ "This is a beta feature and is only available when using my Developer Key! "
1165
+ #~ "("
1166
+ #~ msgstr ""
1167
+ #~ "Questa &egrave; una caratteristica beta ed &egrave; disponibile solo "
1168
+ #~ "quando si utilizza il Developer Key! ("
1169
+
1170
+ #~ msgid "more about this feature"
1171
+ #~ msgstr "pi&ugrave; informazioni su questa funzione"
1172
+
1173
+ #~ msgid "RETURN"
1174
+ #~ msgstr "VISITATORI DI RITORNO"
1175
+
1176
+ #~ msgid "Sessions from "
1177
+ #~ msgstr "Sessioni da: "
1178
+
1179
+ #~ msgid "Sessions by Country"
1180
+ #~ msgstr "Sessioni per paese"
1181
+
1182
+ #~ msgid "Traffic Overview"
1183
+ #~ msgstr "Panoramica traffico"
1184
+
1185
+ #~ msgid "Visits"
1186
+ #~ msgstr "Visite"
1187
+
1188
+ #~ msgid "Visitors"
1189
+ #~ msgstr "Visitatori"
1190
+
1191
+ #~ msgid "Visits:"
1192
+ #~ msgstr "Visite:"
1193
+
1194
+ #~ msgid "Visitors:"
1195
+ #~ msgstr "Visitatori:"
1196
+
1197
+ #~ msgid "Page Views:"
1198
+ #~ msgstr "Pagine viste:"
1199
+
1200
+ #~ msgid "Bounce Rate:"
1201
+ #~ msgstr "Frequenza di rimbalzo:"
1202
+
1203
+ #~ msgid "Organic Search:"
1204
+ #~ msgstr "Ricerca organica:"
1205
+
1206
+ #~ msgid "Pages per Visit:"
1207
+ #~ msgstr "Pagine per visita:"
1208
+
1209
+ #~ msgid "Visits from "
1210
+ #~ msgstr "Visite da "
1211
+
1212
+ #~ msgid "Visits by Country"
1213
+ #~ msgstr "Visite per paese"
1214
+
1215
+ #~ msgid " show page visits and visitors in frontend (after each article)"
1216
+ #~ msgstr ""
1217
+ #~ " mostra le pagine visitate e visitatori nel frontend (dopo ogni articolo)"
1218
+
1219
+ #~ msgid " show Geo Map chart for visits"
1220
+ #~ msgstr " mostra la cartina geografica delle visite"
1221
+
1222
+ #~ msgid "You can find support on"
1223
+ #~ msgstr "Puoi trovare supporto su"
1224
+
1225
+ #~ msgid "DeConf.com"
1226
+ #~ msgstr "DeConf.com"
1227
+
1228
+ #~ msgid "service with visitors tracking at IP level."
1229
+ #~ msgstr "servizio con monitoraggio dei visitatori a livello IP."
1230
+
1231
+ #~ msgid "Total Visits:"
1232
+ #~ msgstr "Totale visite:"
1233
+
1234
+ #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1235
+ #~ msgstr "CURL è necessaria. Si prega di installare/abilitare CURL!"
1236
+
1237
+ #~ msgid "Options saved."
1238
+ #~ msgstr "Opzioni salvate."
1239
+
1240
+ #~ msgid "Show stats to: "
1241
+ #~ msgstr "Mostra statistiche:"
1242
+
1243
+ #~ msgid "Update Options"
1244
+ #~ msgstr "Aggiorna opzioni"
1245
+
1246
+ #~ msgid "Tracking Options: "
1247
+ #~ msgstr "Opzioni monitoraggio: "
1248
+
1249
+ #~ msgid "Tracking Type: "
1250
+ #~ msgstr "Tipo di monitoraggio:"
1251
+
1252
+ #, fuzzy
1253
+ #~ msgid "User Type: "
1254
+ #~ msgstr "Tipo di monitoraggio:"
1255
+
1256
+ #~ msgid "Exclude tracking for: "
1257
+ #~ msgstr "Escludi monitoraggio per:"
1258
+
1259
+ #~ msgid "Select Domain: "
1260
+ #~ msgstr "Seleziona dominio:"
1261
+
1262
+ #~ msgid "Theme Color: "
1263
+ #~ msgstr "Colote tema:"
1264
+
1265
+ #~ msgid "&#39; trend"
1266
+ #~ msgstr "&#39; tendenza"
1267
+
1268
+ #~ msgid "DeConf Help Center"
1269
+ #~ msgstr "DeConf Help Center"
1270
+
1271
+ #~ msgid "Custom Code"
1272
+ #~ msgstr "Codice personalizzato"
1273
+
1274
+ #~ msgid "Your Tracking Code:"
1275
+ #~ msgstr "Il tuo codice di monitoraggio:"
 
 
 
 
 
 
 
 
 
 
languages/ga-dash-ja.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: \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 16:08+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:08+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: heysister721 <tk197709141545@gmail.com>\n"
10
  "Language: ja\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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -533,18 +537,18 @@ msgstr "フロントエンド設定"
533
  msgid "Tracking Code"
534
  msgstr "トラッキングコード"
535
 
536
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
537
  msgid "Today"
538
  msgstr "今日"
539
 
540
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
541
  msgid "Yesterday"
542
  msgstr "昨日"
543
 
544
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
545
- #: .././admin/setup.php:164 .././admin/widgets.php:119
546
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
547
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
548
  #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
549
  #: .././front/widgets.php:67 .././front/widgets.php:70
550
  #: .././front/widgets.php:158 .././front/widgets.php:159
@@ -554,17 +558,19 @@ msgid "Last %d Days"
554
  msgstr "%d日間"
555
 
556
  #: .././admin/setup.php:165 .././admin/setup.php:166
557
- #: .././admin/widgets.php:123 .././admin/widgets.php:124
558
  #: .././front/setup.php:77 .././front/setup.php:78
559
  #, php-format
560
  msgid "%s Year"
561
- msgstr ""
 
 
562
 
563
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
564
  msgid "One"
565
  msgstr ""
566
 
567
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
568
  msgid "Three"
569
  msgstr ""
570
 
@@ -574,87 +580,87 @@ msgid "Unique Views"
574
  msgstr "ユニークPV"
575
 
576
  #: .././admin/setup.php:170 .././admin/setup.php:186
577
- #: .././admin/widgets.php:130 .././admin/widgets.php:830
578
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
579
  msgid "Users"
580
  msgstr "ユーザー"
581
 
582
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
583
  msgid "Organic"
584
  msgstr "オーガニック検索"
585
 
586
  #: .././admin/setup.php:172 .././admin/setup.php:187
587
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
588
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
589
  msgid "Page Views"
590
  msgstr "PV"
591
 
592
  #: .././admin/setup.php:173 .././admin/setup.php:188
593
- #: .././admin/widgets.php:133 .././admin/widgets.php:838
594
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
595
  msgid "Bounce Rate"
596
  msgstr "直帰率"
597
 
598
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
599
  msgid "Location"
600
  msgstr "地域"
601
 
602
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
603
  #: .././tools/gapi.php:503
604
  msgid "Referrers"
605
  msgstr "リファラー"
606
 
607
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
608
  #: .././tools/gapi.php:536
609
  msgid "Searches"
610
  msgstr "検索結果"
611
 
612
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
613
  msgid "Traffic Details"
614
  msgstr "トラフィック詳細"
615
 
616
- #: .././admin/setup.php:180 .././admin/widgets.php:505
617
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
618
- #: .././admin/widgets.php:861 .././front/setup.php:92
619
  msgid "A JavaScript Error is blocking plugin resources!"
620
  msgstr ""
621
  "JavaScriptのエラーが、プラグインのリソースをブロックしている可能性がありま"
622
  "す。"
623
 
624
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
625
  msgid "Traffic Mediums"
626
  msgstr "トラフィック平均"
627
 
628
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
629
  msgid "Visitor Type"
630
  msgstr "訪問者"
631
 
632
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
633
  msgid "Social Networks"
634
  msgstr "SNS"
635
 
636
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
637
  msgid "Search Engines"
638
  msgstr "検索エンジン"
639
 
640
- #: .././admin/setup.php:189 .././admin/widgets.php:842
641
  #: .././front/setup.php:101
642
  msgid "Organic Search"
643
  msgstr "オーガニック検索"
644
 
645
- #: .././admin/setup.php:190 .././admin/widgets.php:846
646
  #: .././front/setup.php:102
647
  msgid "Pages/Session"
648
  msgstr "ページ/セッション"
649
 
650
- #: .././admin/setup.php:191 .././admin/widgets.php:517
651
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
652
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
653
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
654
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
655
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
656
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
657
- #: .././admin/widgets.php:897 .././front/setup.php:103
658
  msgid "Invalid response, more details in JavaScript Console (F12)."
659
  msgstr ""
660
  "応答がありません。JavaScriptコンソールでの詳細(F12)をご確認ください。"
@@ -663,12 +669,12 @@ msgstr ""
663
  msgid "Not enough data collected"
664
  msgstr "充分なデータがありません"
665
 
666
- #: .././admin/setup.php:193 .././admin/widgets.php:522
667
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
668
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
669
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
670
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
671
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
672
  #: .././front/setup.php:105 .././front/widgets.php:100
673
  msgid "This report is unavailable"
674
  msgstr "このレポートは使用できません。"
@@ -736,53 +742,53 @@ msgstr ""
736
  msgid "Find out more!"
737
  msgstr "詳細はこちら"
738
 
739
- #: .././admin/widgets.php:116
740
  msgid "Real-Time"
741
  msgstr "リアルタイム"
742
 
743
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
744
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
745
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
746
  #: .././tools/gapi.php:695
747
  msgid "Sessions"
748
  msgstr "セッション"
749
 
750
- #: .././admin/widgets.php:135 .././tools/gapi.php:471
751
  msgid "Pages"
752
  msgstr "ページ"
753
 
754
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
755
  msgid "REFERRAL"
756
  msgstr "リファラー"
757
 
758
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
759
  msgid "ORGANIC"
760
  msgstr "キーワード検索"
761
 
762
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
763
- #: .././admin/widgets.php:480
764
  msgid "SOCIAL"
765
  msgstr "ソーシャル"
766
 
767
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
768
- #: .././admin/widgets.php:481
769
  msgid "CAMPAIGN"
770
  msgstr "キャンペーン"
771
 
772
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
773
- #: .././admin/widgets.php:484
774
  msgid "DIRECT"
775
  msgstr "直リンク"
776
 
777
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
778
  msgid "NEW"
779
  msgstr "NEW"
780
 
781
- #: .././admin/widgets.php:358
782
  msgid "REFERRALS"
783
  msgstr "リファラー"
784
 
785
- #: .././admin/widgets.php:361
786
  msgid "KEYWORDS"
787
  msgstr "キーワード"
788
 
3
  "Project-Id-Version: \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: heysister721 <tk197709141545@gmail.com>\n"
10
  "Language: ja\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"
537
  msgid "Tracking Code"
538
  msgstr "トラッキングコード"
539
 
540
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
541
  msgid "Today"
542
  msgstr "今日"
543
 
544
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
545
  msgid "Yesterday"
546
  msgstr "昨日"
547
 
548
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
549
+ #: .././admin/setup.php:164 .././admin/widgets.php:115
550
+ #: .././admin/widgets.php:116 .././admin/widgets.php:117
551
+ #: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
552
  #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
553
  #: .././front/widgets.php:67 .././front/widgets.php:70
554
  #: .././front/widgets.php:158 .././front/widgets.php:159
558
  msgstr "%d日間"
559
 
560
  #: .././admin/setup.php:165 .././admin/setup.php:166
561
+ #: .././admin/widgets.php:119 .././admin/widgets.php:120
562
  #: .././front/setup.php:77 .././front/setup.php:78
563
  #, php-format
564
  msgid "%s Year"
565
+ msgid_plural "%s Years"
566
+ msgstr[0] ""
567
+ msgstr[1] ""
568
 
569
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
570
  msgid "One"
571
  msgstr ""
572
 
573
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
574
  msgid "Three"
575
  msgstr ""
576
 
580
  msgstr "ユニークPV"
581
 
582
  #: .././admin/setup.php:170 .././admin/setup.php:186
583
+ #: .././admin/widgets.php:126 .././admin/widgets.php:826
584
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
585
  msgid "Users"
586
  msgstr "ユーザー"
587
 
588
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
589
  msgid "Organic"
590
  msgstr "オーガニック検索"
591
 
592
  #: .././admin/setup.php:172 .././admin/setup.php:187
593
+ #: .././admin/widgets.php:128 .././admin/widgets.php:830
594
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
595
  msgid "Page Views"
596
  msgstr "PV"
597
 
598
  #: .././admin/setup.php:173 .././admin/setup.php:188
599
+ #: .././admin/widgets.php:129 .././admin/widgets.php:834
600
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
601
  msgid "Bounce Rate"
602
  msgstr "直帰率"
603
 
604
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
605
  msgid "Location"
606
  msgstr "地域"
607
 
608
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
609
  #: .././tools/gapi.php:503
610
  msgid "Referrers"
611
  msgstr "リファラー"
612
 
613
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
614
  #: .././tools/gapi.php:536
615
  msgid "Searches"
616
  msgstr "検索結果"
617
 
618
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
619
  msgid "Traffic Details"
620
  msgstr "トラフィック詳細"
621
 
622
+ #: .././admin/setup.php:180 .././admin/widgets.php:501
623
+ #: .././admin/widgets.php:586 .././admin/widgets.php:753
624
+ #: .././admin/widgets.php:857 .././front/setup.php:92
625
  msgid "A JavaScript Error is blocking plugin resources!"
626
  msgstr ""
627
  "JavaScriptのエラーが、プラグインのリソースをブロックしている可能性がありま"
628
  "す。"
629
 
630
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
631
  msgid "Traffic Mediums"
632
  msgstr "トラフィック平均"
633
 
634
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
635
  msgid "Visitor Type"
636
  msgstr "訪問者"
637
 
638
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
639
  msgid "Social Networks"
640
  msgstr "SNS"
641
 
642
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
643
  msgid "Search Engines"
644
  msgstr "検索エンジン"
645
 
646
+ #: .././admin/setup.php:189 .././admin/widgets.php:838
647
  #: .././front/setup.php:101
648
  msgid "Organic Search"
649
  msgstr "オーガニック検索"
650
 
651
+ #: .././admin/setup.php:190 .././admin/widgets.php:842
652
  #: .././front/setup.php:102
653
  msgid "Pages/Session"
654
  msgstr "ページ/セッション"
655
 
656
+ #: .././admin/setup.php:191 .././admin/widgets.php:513
657
+ #: .././admin/widgets.php:527 .././admin/widgets.php:537
658
+ #: .././admin/widgets.php:598 .././admin/widgets.php:612
659
+ #: .././admin/widgets.php:626 .././admin/widgets.php:640
660
+ #: .././admin/widgets.php:654 .././admin/widgets.php:664
661
+ #: .././admin/widgets.php:766 .././admin/widgets.php:778
662
+ #: .././admin/widgets.php:869 .././admin/widgets.php:883
663
+ #: .././admin/widgets.php:893 .././front/setup.php:103
664
  msgid "Invalid response, more details in JavaScript Console (F12)."
665
  msgstr ""
666
  "応答がありません。JavaScriptコンソールでの詳細(F12)をご確認ください。"
669
  msgid "Not enough data collected"
670
  msgstr "充分なデータがありません"
671
 
672
+ #: .././admin/setup.php:193 .././admin/widgets.php:518
673
+ #: .././admin/widgets.php:532 .././admin/widgets.php:603
674
+ #: .././admin/widgets.php:617 .././admin/widgets.php:631
675
+ #: .././admin/widgets.php:645 .././admin/widgets.php:659
676
+ #: .././admin/widgets.php:771 .././admin/widgets.php:773
677
+ #: .././admin/widgets.php:874 .././admin/widgets.php:888
678
  #: .././front/setup.php:105 .././front/widgets.php:100
679
  msgid "This report is unavailable"
680
  msgstr "このレポートは使用できません。"
742
  msgid "Find out more!"
743
  msgstr "詳細はこちら"
744
 
745
+ #: .././admin/widgets.php:112
746
  msgid "Real-Time"
747
  msgstr "リアルタイム"
748
 
749
+ #: .././admin/widgets.php:125 .././admin/widgets.php:822
750
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
751
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
752
  #: .././tools/gapi.php:695
753
  msgid "Sessions"
754
  msgstr "セッション"
755
 
756
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
757
  msgid "Pages"
758
  msgstr "ページ"
759
 
760
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
761
  msgid "REFERRAL"
762
  msgstr "リファラー"
763
 
764
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
765
  msgid "ORGANIC"
766
  msgstr "キーワード検索"
767
 
768
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360
769
+ #: .././admin/widgets.php:476
770
  msgid "SOCIAL"
771
  msgstr "ソーシャル"
772
 
773
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363
774
+ #: .././admin/widgets.php:477
775
  msgid "CAMPAIGN"
776
  msgstr "キャンペーン"
777
 
778
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366
779
+ #: .././admin/widgets.php:480
780
  msgid "DIRECT"
781
  msgstr "直リンク"
782
 
783
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
784
  msgid "NEW"
785
  msgstr "NEW"
786
 
787
+ #: .././admin/widgets.php:354
788
  msgid "REFERRALS"
789
  msgstr "リファラー"
790
 
791
+ #: .././admin/widgets.php:357
792
  msgid "KEYWORDS"
793
  msgstr "キーワード"
794
 
languages/ga-dash-nl_NL.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 16:08+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:08+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Willem-Jan Meerkerk <info@bs-webdevelopment.nl>\n"
10
  "Language: nl_NL\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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -538,18 +542,18 @@ msgstr "Frontend instellingen"
538
  msgid "Tracking Code"
539
  msgstr "Trackingcode"
540
 
541
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
542
  msgid "Today"
543
  msgstr "Vandaag"
544
 
545
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
546
  msgid "Yesterday"
547
  msgstr "Gisteren"
548
 
549
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
550
- #: .././admin/setup.php:164 .././admin/widgets.php:119
551
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
552
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
553
  #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
554
  #: .././front/widgets.php:67 .././front/widgets.php:70
555
  #: .././front/widgets.php:158 .././front/widgets.php:159
@@ -559,17 +563,19 @@ msgid "Last %d Days"
559
  msgstr "Afgelopen %d dagen"
560
 
561
  #: .././admin/setup.php:165 .././admin/setup.php:166
562
- #: .././admin/widgets.php:123 .././admin/widgets.php:124
563
  #: .././front/setup.php:77 .././front/setup.php:78
564
  #, php-format
565
  msgid "%s Year"
566
- msgstr ""
 
 
567
 
568
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
569
  msgid "One"
570
  msgstr ""
571
 
572
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
573
  msgid "Three"
574
  msgstr ""
575
 
@@ -579,85 +585,85 @@ msgid "Unique Views"
579
  msgstr "Unieke weergaven"
580
 
581
  #: .././admin/setup.php:170 .././admin/setup.php:186
582
- #: .././admin/widgets.php:130 .././admin/widgets.php:830
583
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
584
  msgid "Users"
585
  msgstr "Bezoekers"
586
 
587
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
588
  msgid "Organic"
589
  msgstr "Via zoekmachines"
590
 
591
  #: .././admin/setup.php:172 .././admin/setup.php:187
592
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
593
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
594
  msgid "Page Views"
595
  msgstr "Paginaweergaven"
596
 
597
  #: .././admin/setup.php:173 .././admin/setup.php:188
598
- #: .././admin/widgets.php:133 .././admin/widgets.php:838
599
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
600
  msgid "Bounce Rate"
601
  msgstr "Bouncepercentage"
602
 
603
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
604
  msgid "Location"
605
  msgstr "Locaties"
606
 
607
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
608
  #: .././tools/gapi.php:503
609
  msgid "Referrers"
610
  msgstr "Beste verwijzingen"
611
 
612
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
613
  #: .././tools/gapi.php:536
614
  msgid "Searches"
615
  msgstr "Beste zoekopdrachten"
616
 
617
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
618
  msgid "Traffic Details"
619
  msgstr "Verkeer"
620
 
621
- #: .././admin/setup.php:180 .././admin/widgets.php:505
622
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
623
- #: .././admin/widgets.php:861 .././front/setup.php:92
624
  msgid "A JavaScript Error is blocking plugin resources!"
625
  msgstr "Een Javascript fout blokkeert plugin bestanden!"
626
 
627
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
628
  msgid "Traffic Mediums"
629
  msgstr "Verkeersbronnen"
630
 
631
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
632
  msgid "Visitor Type"
633
  msgstr "Nieuw vs. terugkerend"
634
 
635
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
636
  msgid "Social Networks"
637
  msgstr "Sociale netwerken"
638
 
639
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
640
  msgid "Search Engines"
641
  msgstr "Zoekmachines"
642
 
643
- #: .././admin/setup.php:189 .././admin/widgets.php:842
644
  #: .././front/setup.php:101
645
  msgid "Organic Search"
646
  msgstr "Zoekopdrachten"
647
 
648
- #: .././admin/setup.php:190 .././admin/widgets.php:846
649
  #: .././front/setup.php:102
650
  msgid "Pages/Session"
651
  msgstr "Pagina's/bezoek"
652
 
653
- #: .././admin/setup.php:191 .././admin/widgets.php:517
654
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
655
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
656
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
657
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
658
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
659
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
660
- #: .././admin/widgets.php:897 .././front/setup.php:103
661
  msgid "Invalid response, more details in JavaScript Console (F12)."
662
  msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
663
 
@@ -665,12 +671,12 @@ msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
665
  msgid "Not enough data collected"
666
  msgstr "Niet voldoende data verzameld"
667
 
668
- #: .././admin/setup.php:193 .././admin/widgets.php:522
669
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
670
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
671
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
672
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
673
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
674
  #: .././front/setup.php:105 .././front/widgets.php:100
675
  msgid "This report is unavailable"
676
  msgstr "Dit rapport is niet beschikbaar"
@@ -738,53 +744,53 @@ msgstr ""
738
  msgid "Find out more!"
739
  msgstr "Lees meer..."
740
 
741
- #: .././admin/widgets.php:116
742
  msgid "Real-Time"
743
  msgstr "Realtime"
744
 
745
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
746
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
747
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
748
  #: .././tools/gapi.php:695
749
  msgid "Sessions"
750
  msgstr "Bezoeken"
751
 
752
- #: .././admin/widgets.php:135 .././tools/gapi.php:471
753
  msgid "Pages"
754
  msgstr "Meest bezochte pagina's"
755
 
756
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
757
  msgid "REFERRAL"
758
  msgstr "Verwijzend"
759
 
760
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
761
  msgid "ORGANIC"
762
  msgstr "Zoekmachines"
763
 
764
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
765
- #: .././admin/widgets.php:480
766
  msgid "SOCIAL"
767
  msgstr "Sociale media"
768
 
769
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
770
- #: .././admin/widgets.php:481
771
  msgid "CAMPAIGN"
772
  msgstr "Campagne"
773
 
774
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
775
- #: .././admin/widgets.php:484
776
  msgid "DIRECT"
777
  msgstr "Direct"
778
 
779
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
780
  msgid "NEW"
781
  msgstr "Nieuw"
782
 
783
- #: .././admin/widgets.php:358
784
  msgid "REFERRALS"
785
  msgstr "Verwijzingen"
786
 
787
- #: .././admin/widgets.php:361
788
  msgid "KEYWORDS"
789
  msgstr "Zoekwoorden"
790
 
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: Willem-Jan Meerkerk <info@bs-webdevelopment.nl>\n"
10
  "Language: nl_NL\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"
542
  msgid "Tracking Code"
543
  msgstr "Trackingcode"
544
 
545
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
546
  msgid "Today"
547
  msgstr "Vandaag"
548
 
549
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
550
  msgid "Yesterday"
551
  msgstr "Gisteren"
552
 
553
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
554
+ #: .././admin/setup.php:164 .././admin/widgets.php:115
555
+ #: .././admin/widgets.php:116 .././admin/widgets.php:117
556
+ #: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
557
  #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
558
  #: .././front/widgets.php:67 .././front/widgets.php:70
559
  #: .././front/widgets.php:158 .././front/widgets.php:159
563
  msgstr "Afgelopen %d dagen"
564
 
565
  #: .././admin/setup.php:165 .././admin/setup.php:166
566
+ #: .././admin/widgets.php:119 .././admin/widgets.php:120
567
  #: .././front/setup.php:77 .././front/setup.php:78
568
  #, php-format
569
  msgid "%s Year"
570
+ msgid_plural "%s Years"
571
+ msgstr[0] ""
572
+ msgstr[1] ""
573
 
574
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
575
  msgid "One"
576
  msgstr ""
577
 
578
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
579
  msgid "Three"
580
  msgstr ""
581
 
585
  msgstr "Unieke weergaven"
586
 
587
  #: .././admin/setup.php:170 .././admin/setup.php:186
588
+ #: .././admin/widgets.php:126 .././admin/widgets.php:826
589
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
590
  msgid "Users"
591
  msgstr "Bezoekers"
592
 
593
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
594
  msgid "Organic"
595
  msgstr "Via zoekmachines"
596
 
597
  #: .././admin/setup.php:172 .././admin/setup.php:187
598
+ #: .././admin/widgets.php:128 .././admin/widgets.php:830
599
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
600
  msgid "Page Views"
601
  msgstr "Paginaweergaven"
602
 
603
  #: .././admin/setup.php:173 .././admin/setup.php:188
604
+ #: .././admin/widgets.php:129 .././admin/widgets.php:834
605
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
606
  msgid "Bounce Rate"
607
  msgstr "Bouncepercentage"
608
 
609
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
610
  msgid "Location"
611
  msgstr "Locaties"
612
 
613
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
614
  #: .././tools/gapi.php:503
615
  msgid "Referrers"
616
  msgstr "Beste verwijzingen"
617
 
618
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
619
  #: .././tools/gapi.php:536
620
  msgid "Searches"
621
  msgstr "Beste zoekopdrachten"
622
 
623
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
624
  msgid "Traffic Details"
625
  msgstr "Verkeer"
626
 
627
+ #: .././admin/setup.php:180 .././admin/widgets.php:501
628
+ #: .././admin/widgets.php:586 .././admin/widgets.php:753
629
+ #: .././admin/widgets.php:857 .././front/setup.php:92
630
  msgid "A JavaScript Error is blocking plugin resources!"
631
  msgstr "Een Javascript fout blokkeert plugin bestanden!"
632
 
633
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
634
  msgid "Traffic Mediums"
635
  msgstr "Verkeersbronnen"
636
 
637
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
638
  msgid "Visitor Type"
639
  msgstr "Nieuw vs. terugkerend"
640
 
641
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
642
  msgid "Social Networks"
643
  msgstr "Sociale netwerken"
644
 
645
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
646
  msgid "Search Engines"
647
  msgstr "Zoekmachines"
648
 
649
+ #: .././admin/setup.php:189 .././admin/widgets.php:838
650
  #: .././front/setup.php:101
651
  msgid "Organic Search"
652
  msgstr "Zoekopdrachten"
653
 
654
+ #: .././admin/setup.php:190 .././admin/widgets.php:842
655
  #: .././front/setup.php:102
656
  msgid "Pages/Session"
657
  msgstr "Pagina's/bezoek"
658
 
659
+ #: .././admin/setup.php:191 .././admin/widgets.php:513
660
+ #: .././admin/widgets.php:527 .././admin/widgets.php:537
661
+ #: .././admin/widgets.php:598 .././admin/widgets.php:612
662
+ #: .././admin/widgets.php:626 .././admin/widgets.php:640
663
+ #: .././admin/widgets.php:654 .././admin/widgets.php:664
664
+ #: .././admin/widgets.php:766 .././admin/widgets.php:778
665
+ #: .././admin/widgets.php:869 .././admin/widgets.php:883
666
+ #: .././admin/widgets.php:893 .././front/setup.php:103
667
  msgid "Invalid response, more details in JavaScript Console (F12)."
668
  msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
669
 
671
  msgid "Not enough data collected"
672
  msgstr "Niet voldoende data verzameld"
673
 
674
+ #: .././admin/setup.php:193 .././admin/widgets.php:518
675
+ #: .././admin/widgets.php:532 .././admin/widgets.php:603
676
+ #: .././admin/widgets.php:617 .././admin/widgets.php:631
677
+ #: .././admin/widgets.php:645 .././admin/widgets.php:659
678
+ #: .././admin/widgets.php:771 .././admin/widgets.php:773
679
+ #: .././admin/widgets.php:874 .././admin/widgets.php:888
680
  #: .././front/setup.php:105 .././front/widgets.php:100
681
  msgid "This report is unavailable"
682
  msgstr "Dit rapport is niet beschikbaar"
744
  msgid "Find out more!"
745
  msgstr "Lees meer..."
746
 
747
+ #: .././admin/widgets.php:112
748
  msgid "Real-Time"
749
  msgstr "Realtime"
750
 
751
+ #: .././admin/widgets.php:125 .././admin/widgets.php:822
752
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
753
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
754
  #: .././tools/gapi.php:695
755
  msgid "Sessions"
756
  msgstr "Bezoeken"
757
 
758
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
759
  msgid "Pages"
760
  msgstr "Meest bezochte pagina's"
761
 
762
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
763
  msgid "REFERRAL"
764
  msgstr "Verwijzend"
765
 
766
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
767
  msgid "ORGANIC"
768
  msgstr "Zoekmachines"
769
 
770
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360
771
+ #: .././admin/widgets.php:476
772
  msgid "SOCIAL"
773
  msgstr "Sociale media"
774
 
775
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363
776
+ #: .././admin/widgets.php:477
777
  msgid "CAMPAIGN"
778
  msgstr "Campagne"
779
 
780
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366
781
+ #: .././admin/widgets.php:480
782
  msgid "DIRECT"
783
  msgstr "Direct"
784
 
785
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
786
  msgid "NEW"
787
  msgstr "Nieuw"
788
 
789
+ #: .././admin/widgets.php:354
790
  msgid "REFERRALS"
791
  msgstr "Verwijzingen"
792
 
793
+ #: .././admin/widgets.php:357
794
  msgid "KEYWORDS"
795
  msgstr "Zoekwoorden"
796
 
languages/ga-dash-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-07-05 16:09+0300\n"
5
- "PO-Revision-Date: 2015-07-05 16:09+0300\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Alin Marcu\n"
8
  "Language: pl\n"
@@ -10,7 +10,11 @@ msgstr ""
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 1.8.2\n"
13
- "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -526,18 +530,18 @@ msgstr "Ustawienia Frontendu"
526
  msgid "Tracking Code"
527
  msgstr "Kod śledzenia"
528
 
529
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
530
  msgid "Today"
531
  msgstr "Dzisiaj"
532
 
533
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
534
  msgid "Yesterday"
535
  msgstr "Wczoraj"
536
 
537
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
538
- #: .././admin/setup.php:164 .././admin/widgets.php:119
539
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
540
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
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,19 @@ msgid "Last %d Days"
547
  msgstr "Ostatnie %d dni"
548
 
549
  #: .././admin/setup.php:165 .././admin/setup.php:166
550
- #: .././admin/widgets.php:123 .././admin/widgets.php:124
551
  #: .././front/setup.php:77 .././front/setup.php:78
552
  #, php-format
553
  msgid "%s Year"
554
- msgstr ""
 
 
555
 
556
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
557
  msgid "One"
558
  msgstr ""
559
 
560
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
561
  msgid "Three"
562
  msgstr ""
563
 
@@ -567,85 +573,85 @@ msgid "Unique Views"
567
  msgstr ""
568
 
569
  #: .././admin/setup.php:170 .././admin/setup.php:186
570
- #: .././admin/widgets.php:130 .././admin/widgets.php:830
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:131 .././front/setup.php:83
576
  msgid "Organic"
577
  msgstr "Organiczne"
578
 
579
  #: .././admin/setup.php:172 .././admin/setup.php:187
580
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
581
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
582
  msgid "Page Views"
583
  msgstr "Wyświetleń strony"
584
 
585
  #: .././admin/setup.php:173 .././admin/setup.php:188
586
- #: .././admin/widgets.php:133 .././admin/widgets.php:838
587
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
588
  msgid "Bounce Rate"
589
  msgstr "Współczynnik odrzuceń"
590
 
591
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
592
  msgid "Location"
593
  msgstr ""
594
 
595
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
596
  #: .././tools/gapi.php:503
597
  msgid "Referrers"
598
  msgstr ""
599
 
600
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
601
  #: .././tools/gapi.php:536
602
  msgid "Searches"
603
  msgstr ""
604
 
605
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
606
  msgid "Traffic Details"
607
  msgstr ""
608
 
609
- #: .././admin/setup.php:180 .././admin/widgets.php:505
610
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
611
- #: .././admin/widgets.php:861 .././front/setup.php:92
612
  msgid "A JavaScript Error is blocking plugin resources!"
613
  msgstr ""
614
 
615
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
616
  msgid "Traffic Mediums"
617
  msgstr ""
618
 
619
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
620
  msgid "Visitor Type"
621
  msgstr ""
622
 
623
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
624
  msgid "Social Networks"
625
  msgstr ""
626
 
627
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
628
  msgid "Search Engines"
629
  msgstr ""
630
 
631
- #: .././admin/setup.php:189 .././admin/widgets.php:842
632
  #: .././front/setup.php:101
633
  msgid "Organic Search"
634
  msgstr ""
635
 
636
- #: .././admin/setup.php:190 .././admin/widgets.php:846
637
  #: .././front/setup.php:102
638
  msgid "Pages/Session"
639
  msgstr ""
640
 
641
- #: .././admin/setup.php:191 .././admin/widgets.php:517
642
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
643
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
644
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
645
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
646
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
647
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
648
- #: .././admin/widgets.php:897 .././front/setup.php:103
649
  msgid "Invalid response, more details in JavaScript Console (F12)."
650
  msgstr ""
651
 
@@ -653,12 +659,12 @@ msgstr ""
653
  msgid "Not enough data collected"
654
  msgstr ""
655
 
656
- #: .././admin/setup.php:193 .././admin/widgets.php:522
657
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
658
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
659
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
660
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
661
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
662
  #: .././front/setup.php:105 .././front/widgets.php:100
663
  msgid "This report is unavailable"
664
  msgstr ""
@@ -725,53 +731,53 @@ msgstr ""
725
  msgid "Find out more!"
726
  msgstr "Dowiedz sie więcej!"
727
 
728
- #: .././admin/widgets.php:116
729
  msgid "Real-Time"
730
  msgstr "Czas rzeczywisty"
731
 
732
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
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:135 .././tools/gapi.php:471
740
  msgid "Pages"
741
  msgstr ""
742
 
743
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
744
  msgid "REFERRAL"
745
  msgstr "REFERUJĄCY"
746
 
747
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
748
  msgid "ORGANIC"
749
  msgstr "ORGANICZNE"
750
 
751
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
752
- #: .././admin/widgets.php:480
753
  msgid "SOCIAL"
754
  msgstr "SPOŁECZNE"
755
 
756
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
757
- #: .././admin/widgets.php:481
758
  msgid "CAMPAIGN"
759
  msgstr ""
760
 
761
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
762
- #: .././admin/widgets.php:484
763
  msgid "DIRECT"
764
  msgstr "BEZPOŚREDNIE"
765
 
766
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
767
  msgid "NEW"
768
  msgstr "NOWE"
769
 
770
- #: .././admin/widgets.php:358
771
  msgid "REFERRALS"
772
  msgstr "REFERUJĄCY"
773
 
774
- #: .././admin/widgets.php:361
775
  msgid "KEYWORDS"
776
  msgstr "SŁOWA KLUCZOWE"
777
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-07-05 18:34+0300\n"
5
+ "PO-Revision-Date: 2015-07-05 18:34+0300\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Alin Marcu\n"
8
  "Language: pl\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 1.8.2\n"
13
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
14
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
15
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
16
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
17
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
530
  msgid "Tracking Code"
531
  msgstr "Kod śledzenia"
532
 
533
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
534
  msgid "Today"
535
  msgstr "Dzisiaj"
536
 
537
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
538
  msgid "Yesterday"
539
  msgstr "Wczoraj"
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 "Ostatnie %d dni"
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
 
562
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
563
  msgid "One"
564
  msgstr ""
565
 
566
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
567
  msgid "Three"
568
  msgstr ""
569
 
573
  msgstr ""
574
 
575
  #: .././admin/setup.php:170 .././admin/setup.php:186
576
+ #: .././admin/widgets.php:126 .././admin/widgets.php:826
577
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
578
  msgid "Users"
579
  msgstr ""
580
 
581
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
582
  msgid "Organic"
583
  msgstr "Organiczne"
584
 
585
  #: .././admin/setup.php:172 .././admin/setup.php:187
586
+ #: .././admin/widgets.php:128 .././admin/widgets.php:830
587
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
588
  msgid "Page Views"
589
  msgstr "Wyświetleń strony"
590
 
591
  #: .././admin/setup.php:173 .././admin/setup.php:188
592
+ #: .././admin/widgets.php:129 .././admin/widgets.php:834
593
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
594
  msgid "Bounce Rate"
595
  msgstr "Współczynnik odrzuceń"
596
 
597
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
598
  msgid "Location"
599
  msgstr ""
600
 
601
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
602
  #: .././tools/gapi.php:503
603
  msgid "Referrers"
604
  msgstr ""
605
 
606
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
607
  #: .././tools/gapi.php:536
608
  msgid "Searches"
609
  msgstr ""
610
 
611
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
612
  msgid "Traffic Details"
613
  msgstr ""
614
 
615
+ #: .././admin/setup.php:180 .././admin/widgets.php:501
616
+ #: .././admin/widgets.php:586 .././admin/widgets.php:753
617
+ #: .././admin/widgets.php:857 .././front/setup.php:92
618
  msgid "A JavaScript Error is blocking plugin resources!"
619
  msgstr ""
620
 
621
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
622
  msgid "Traffic Mediums"
623
  msgstr ""
624
 
625
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
626
  msgid "Visitor Type"
627
  msgstr ""
628
 
629
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
630
  msgid "Social Networks"
631
  msgstr ""
632
 
633
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
634
  msgid "Search Engines"
635
  msgstr ""
636
 
637
+ #: .././admin/setup.php:189 .././admin/widgets.php:838
638
  #: .././front/setup.php:101
639
  msgid "Organic Search"
640
  msgstr ""
641
 
642
+ #: .././admin/setup.php:190 .././admin/widgets.php:842
643
  #: .././front/setup.php:102
644
  msgid "Pages/Session"
645
  msgstr ""
646
 
647
+ #: .././admin/setup.php:191 .././admin/widgets.php:513
648
+ #: .././admin/widgets.php:527 .././admin/widgets.php:537
649
+ #: .././admin/widgets.php:598 .././admin/widgets.php:612
650
+ #: .././admin/widgets.php:626 .././admin/widgets.php:640
651
+ #: .././admin/widgets.php:654 .././admin/widgets.php:664
652
+ #: .././admin/widgets.php:766 .././admin/widgets.php:778
653
+ #: .././admin/widgets.php:869 .././admin/widgets.php:883
654
+ #: .././admin/widgets.php:893 .././front/setup.php:103
655
  msgid "Invalid response, more details in JavaScript Console (F12)."
656
  msgstr ""
657
 
659
  msgid "Not enough data collected"
660
  msgstr ""
661
 
662
+ #: .././admin/setup.php:193 .././admin/widgets.php:518
663
+ #: .././admin/widgets.php:532 .././admin/widgets.php:603
664
+ #: .././admin/widgets.php:617 .././admin/widgets.php:631
665
+ #: .././admin/widgets.php:645 .././admin/widgets.php:659
666
+ #: .././admin/widgets.php:771 .././admin/widgets.php:773
667
+ #: .././admin/widgets.php:874 .././admin/widgets.php:888
668
  #: .././front/setup.php:105 .././front/widgets.php:100
669
  msgid "This report is unavailable"
670
  msgstr ""
731
  msgid "Find out more!"
732
  msgstr "Dowiedz sie więcej!"
733
 
734
+ #: .././admin/widgets.php:112
735
  msgid "Real-Time"
736
  msgstr "Czas rzeczywisty"
737
 
738
+ #: .././admin/widgets.php:125 .././admin/widgets.php:822
739
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
740
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
741
  #: .././tools/gapi.php:695
742
  msgid "Sessions"
743
  msgstr ""
744
 
745
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
746
  msgid "Pages"
747
  msgstr ""
748
 
749
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
750
  msgid "REFERRAL"
751
  msgstr "REFERUJĄCY"
752
 
753
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
754
  msgid "ORGANIC"
755
  msgstr "ORGANICZNE"
756
 
757
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360
758
+ #: .././admin/widgets.php:476
759
  msgid "SOCIAL"
760
  msgstr "SPOŁECZNE"
761
 
762
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363
763
+ #: .././admin/widgets.php:477
764
  msgid "CAMPAIGN"
765
  msgstr ""
766
 
767
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366
768
+ #: .././admin/widgets.php:480
769
  msgid "DIRECT"
770
  msgstr "BEZPOŚREDNIE"
771
 
772
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
773
  msgid "NEW"
774
  msgstr "NOWE"
775
 
776
+ #: .././admin/widgets.php:354
777
  msgid "REFERRALS"
778
  msgstr "REFERUJĄCY"
779
 
780
+ #: .././admin/widgets.php:357
781
  msgid "KEYWORDS"
782
  msgstr "SŁOWA KLUCZOWE"
783
 
languages/ga-dash-pt_BR.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.6\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 16:09+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:09+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Treedbox.com <treedbox@gmail.com>\n"
10
  "Language: pt_BR\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: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
 
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -537,18 +541,18 @@ msgstr "Configurações Externas"
537
  msgid "Tracking Code"
538
  msgstr "Código de Rastreio"
539
 
540
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
541
  msgid "Today"
542
  msgstr "Hoje"
543
 
544
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
545
  msgid "Yesterday"
546
  msgstr "Ontem"
547
 
548
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
549
- #: .././admin/setup.php:164 .././admin/widgets.php:119
550
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
551
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
552
  #: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
553
  #: .././front/widgets.php:67 .././front/widgets.php:70
554
  #: .././front/widgets.php:158 .././front/widgets.php:159
@@ -558,17 +562,19 @@ msgid "Last %d Days"
558
  msgstr "Últimos %d dias"
559
 
560
  #: .././admin/setup.php:165 .././admin/setup.php:166
561
- #: .././admin/widgets.php:123 .././admin/widgets.php:124
562
  #: .././front/setup.php:77 .././front/setup.php:78
563
  #, php-format
564
  msgid "%s Year"
565
- msgstr ""
 
 
566
 
567
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
568
  msgid "One"
569
  msgstr ""
570
 
571
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
572
  msgid "Three"
573
  msgstr ""
574
 
@@ -578,85 +584,85 @@ msgid "Unique Views"
578
  msgstr "Visão Única"
579
 
580
  #: .././admin/setup.php:170 .././admin/setup.php:186
581
- #: .././admin/widgets.php:130 .././admin/widgets.php:830
582
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
583
  msgid "Users"
584
  msgstr "Usuários"
585
 
586
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
587
  msgid "Organic"
588
  msgstr "Orgânica"
589
 
590
  #: .././admin/setup.php:172 .././admin/setup.php:187
591
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
592
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
593
  msgid "Page Views"
594
  msgstr "Visualizações de Páginas"
595
 
596
  #: .././admin/setup.php:173 .././admin/setup.php:188
597
- #: .././admin/widgets.php:133 .././admin/widgets.php:838
598
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
599
  msgid "Bounce Rate"
600
  msgstr "Taxa de Rejeição"
601
 
602
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
603
  msgid "Location"
604
  msgstr "Localização"
605
 
606
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
607
  #: .././tools/gapi.php:503
608
  msgid "Referrers"
609
  msgstr "Referências"
610
 
611
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
612
  #: .././tools/gapi.php:536
613
  msgid "Searches"
614
  msgstr "Pesquisas"
615
 
616
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
617
  msgid "Traffic Details"
618
  msgstr "Detalhe do Tráfego"
619
 
620
- #: .././admin/setup.php:180 .././admin/widgets.php:505
621
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
622
- #: .././admin/widgets.php:861 .././front/setup.php:92
623
  msgid "A JavaScript Error is blocking plugin resources!"
624
  msgstr "Um JavaScript está bloqueando os recursos do plugin!"
625
 
626
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
627
  msgid "Traffic Mediums"
628
  msgstr "Média de Tráfego"
629
 
630
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
631
  msgid "Visitor Type"
632
  msgstr "Tipo de Visitantes"
633
 
634
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
635
  msgid "Social Networks"
636
  msgstr "Rede Social"
637
 
638
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
639
  msgid "Search Engines"
640
  msgstr "Mecanismos de Busca"
641
 
642
- #: .././admin/setup.php:189 .././admin/widgets.php:842
643
  #: .././front/setup.php:101
644
  msgid "Organic Search"
645
  msgstr "Pesquisa Orgânica"
646
 
647
- #: .././admin/setup.php:190 .././admin/widgets.php:846
648
  #: .././front/setup.php:102
649
  msgid "Pages/Session"
650
  msgstr "Página/Sessão"
651
 
652
- #: .././admin/setup.php:191 .././admin/widgets.php:517
653
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
654
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
655
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
656
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
657
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
658
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
659
- #: .././admin/widgets.php:897 .././front/setup.php:103
660
  msgid "Invalid response, more details in JavaScript Console (F12)."
661
  msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
662
 
@@ -664,12 +670,12 @@ msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
664
  msgid "Not enough data collected"
665
  msgstr "Dados coletados insuficientes"
666
 
667
- #: .././admin/setup.php:193 .././admin/widgets.php:522
668
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
669
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
670
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
671
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
672
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
673
  #: .././front/setup.php:105 .././front/widgets.php:100
674
  msgid "This report is unavailable"
675
  msgstr "Este Relatório não está disponível"
@@ -736,53 +742,53 @@ msgstr ""
736
  msgid "Find out more!"
737
  msgstr "Saber mais!"
738
 
739
- #: .././admin/widgets.php:116
740
  msgid "Real-Time"
741
  msgstr "Tempo Real"
742
 
743
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
744
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
745
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
746
  #: .././tools/gapi.php:695
747
  msgid "Sessions"
748
  msgstr "Sessão"
749
 
750
- #: .././admin/widgets.php:135 .././tools/gapi.php:471
751
  msgid "Pages"
752
  msgstr "Páginas"
753
 
754
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
755
  msgid "REFERRAL"
756
  msgstr "REFERÊNCIA"
757
 
758
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
759
  msgid "ORGANIC"
760
  msgstr "ORGÂNICO"
761
 
762
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
763
- #: .././admin/widgets.php:480
764
  msgid "SOCIAL"
765
  msgstr "SOCIAL"
766
 
767
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
768
- #: .././admin/widgets.php:481
769
  msgid "CAMPAIGN"
770
  msgstr "CAMPANHA"
771
 
772
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
773
- #: .././admin/widgets.php:484
774
  msgid "DIRECT"
775
  msgstr "DIRETO"
776
 
777
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
778
  msgid "NEW"
779
  msgstr "NOVO"
780
 
781
- #: .././admin/widgets.php:358
782
  msgid "REFERRALS"
783
  msgstr "REFERÊNCIAS"
784
 
785
- #: .././admin/widgets.php:361
786
  msgid "KEYWORDS"
787
  msgstr "PALAVRAS-CHAVE"
788
 
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.6\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:33+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 18:33+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Treedbox.com <treedbox@gmail.com>\n"
10
  "Language: pt_BR\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"
541
  msgid "Tracking Code"
542
  msgstr "Código de Rastreio"
543
 
544
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
545
  msgid "Today"
546
  msgstr "Hoje"
547
 
548
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
549
  msgid "Yesterday"
550
  msgstr "Ontem"
551
 
552
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
553
+ #: .././admin/setup.php:164 .././admin/widgets.php:115
554
+ #: .././admin/widgets.php:116 .././admin/widgets.php:117
555
+ #: .././admin/widgets.php:118 .././front/setup.php:73 .././front/setup.php:74
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
  msgstr "Últimos %d dias"
563
 
564
  #: .././admin/setup.php:165 .././admin/setup.php:166
565
+ #: .././admin/widgets.php:119 .././admin/widgets.php:120
566
  #: .././front/setup.php:77 .././front/setup.php:78
567
  #, php-format
568
  msgid "%s Year"
569
+ msgid_plural "%s Years"
570
+ msgstr[0] ""
571
+ msgstr[1] ""
572
 
573
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
574
  msgid "One"
575
  msgstr ""
576
 
577
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
578
  msgid "Three"
579
  msgstr ""
580
 
584
  msgstr "Visão Única"
585
 
586
  #: .././admin/setup.php:170 .././admin/setup.php:186
587
+ #: .././admin/widgets.php:126 .././admin/widgets.php:826
588
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
589
  msgid "Users"
590
  msgstr "Usuários"
591
 
592
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
593
  msgid "Organic"
594
  msgstr "Orgânica"
595
 
596
  #: .././admin/setup.php:172 .././admin/setup.php:187
597
+ #: .././admin/widgets.php:128 .././admin/widgets.php:830
598
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
599
  msgid "Page Views"
600
  msgstr "Visualizações de Páginas"
601
 
602
  #: .././admin/setup.php:173 .././admin/setup.php:188
603
+ #: .././admin/widgets.php:129 .././admin/widgets.php:834
604
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
605
  msgid "Bounce Rate"
606
  msgstr "Taxa de Rejeição"
607
 
608
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
609
  msgid "Location"
610
  msgstr "Localização"
611
 
612
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
613
  #: .././tools/gapi.php:503
614
  msgid "Referrers"
615
  msgstr "Referências"
616
 
617
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
618
  #: .././tools/gapi.php:536
619
  msgid "Searches"
620
  msgstr "Pesquisas"
621
 
622
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
623
  msgid "Traffic Details"
624
  msgstr "Detalhe do Tráfego"
625
 
626
+ #: .././admin/setup.php:180 .././admin/widgets.php:501
627
+ #: .././admin/widgets.php:586 .././admin/widgets.php:753
628
+ #: .././admin/widgets.php:857 .././front/setup.php:92
629
  msgid "A JavaScript Error is blocking plugin resources!"
630
  msgstr "Um JavaScript está bloqueando os recursos do plugin!"
631
 
632
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
633
  msgid "Traffic Mediums"
634
  msgstr "Média de Tráfego"
635
 
636
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
637
  msgid "Visitor Type"
638
  msgstr "Tipo de Visitantes"
639
 
640
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
641
  msgid "Social Networks"
642
  msgstr "Rede Social"
643
 
644
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
645
  msgid "Search Engines"
646
  msgstr "Mecanismos de Busca"
647
 
648
+ #: .././admin/setup.php:189 .././admin/widgets.php:838
649
  #: .././front/setup.php:101
650
  msgid "Organic Search"
651
  msgstr "Pesquisa Orgânica"
652
 
653
+ #: .././admin/setup.php:190 .././admin/widgets.php:842
654
  #: .././front/setup.php:102
655
  msgid "Pages/Session"
656
  msgstr "Página/Sessão"
657
 
658
+ #: .././admin/setup.php:191 .././admin/widgets.php:513
659
+ #: .././admin/widgets.php:527 .././admin/widgets.php:537
660
+ #: .././admin/widgets.php:598 .././admin/widgets.php:612
661
+ #: .././admin/widgets.php:626 .././admin/widgets.php:640
662
+ #: .././admin/widgets.php:654 .././admin/widgets.php:664
663
+ #: .././admin/widgets.php:766 .././admin/widgets.php:778
664
+ #: .././admin/widgets.php:869 .././admin/widgets.php:883
665
+ #: .././admin/widgets.php:893 .././front/setup.php:103
666
  msgid "Invalid response, more details in JavaScript Console (F12)."
667
  msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
668
 
670
  msgid "Not enough data collected"
671
  msgstr "Dados coletados insuficientes"
672
 
673
+ #: .././admin/setup.php:193 .././admin/widgets.php:518
674
+ #: .././admin/widgets.php:532 .././admin/widgets.php:603
675
+ #: .././admin/widgets.php:617 .././admin/widgets.php:631
676
+ #: .././admin/widgets.php:645 .././admin/widgets.php:659
677
+ #: .././admin/widgets.php:771 .././admin/widgets.php:773
678
+ #: .././admin/widgets.php:874 .././admin/widgets.php:888
679
  #: .././front/setup.php:105 .././front/widgets.php:100
680
  msgid "This report is unavailable"
681
  msgstr "Este Relatório não está disponível"
742
  msgid "Find out more!"
743
  msgstr "Saber mais!"
744
 
745
+ #: .././admin/widgets.php:112
746
  msgid "Real-Time"
747
  msgstr "Tempo Real"
748
 
749
+ #: .././admin/widgets.php:125 .././admin/widgets.php:822
750
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
751
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
752
  #: .././tools/gapi.php:695
753
  msgid "Sessions"
754
  msgstr "Sessão"
755
 
756
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
757
  msgid "Pages"
758
  msgstr "Páginas"
759
 
760
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
761
  msgid "REFERRAL"
762
  msgstr "REFERÊNCIA"
763
 
764
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
765
  msgid "ORGANIC"
766
  msgstr "ORGÂNICO"
767
 
768
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360
769
+ #: .././admin/widgets.php:476
770
  msgid "SOCIAL"
771
  msgstr "SOCIAL"
772
 
773
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363
774
+ #: .././admin/widgets.php:477
775
  msgid "CAMPAIGN"
776
  msgstr "CAMPANHA"
777
 
778
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366
779
+ #: .././admin/widgets.php:480
780
  msgid "DIRECT"
781
  msgstr "DIRETO"
782
 
783
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
784
  msgid "NEW"
785
  msgstr "NOVO"
786
 
787
+ #: .././admin/widgets.php:354
788
  msgid "REFERRALS"
789
  msgstr "REFERÊNCIAS"
790
 
791
+ #: .././admin/widgets.php:357
792
  msgid "KEYWORDS"
793
  msgstr "PALAVRAS-CHAVE"
794
 
languages/ga-dash-ro_RO.mo CHANGED
Binary file
languages/ga-dash-ro_RO.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 16:02+0300\n"
7
- "PO-Revision-Date: 2015-07-05 16:16+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Nicolae Sfetcu\n"
10
  "Language: ro\n"
@@ -15,8 +15,11 @@ msgstr ""
15
  "2:1));\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Generator: Poedit 1.8.2\n"
18
- "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
19
- "esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
20
  "X-Poedit-Basepath: .\n"
21
  "X-Loco-Target-Locale: ro_RO\n"
22
  "X-Poedit-SearchPath-0: ../.\n"
@@ -540,18 +543,18 @@ msgstr "Setări în față"
540
  msgid "Tracking Code"
541
  msgstr "Cod urmărire"
542
 
543
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
544
  msgid "Today"
545
  msgstr "Azi"
546
 
547
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
548
  msgid "Yesterday"
549
  msgstr "Ieri"
550
 
551
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
552
- #: .././admin/setup.php:164 .././admin/widgets.php:119
553
- #: .././admin/widgets.php:120 .././admin/widgets.php:121
554
- #: .././admin/widgets.php:122 .././front/setup.php:73 .././front/setup.php:74
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,7 +564,7 @@ msgid "Last %d Days"
561
  msgstr "Ultimele %d zile"
562
 
563
  #: .././admin/setup.php:165 .././admin/setup.php:166
564
- #: .././admin/widgets.php:123 .././admin/widgets.php:124
565
  #: .././front/setup.php:77 .././front/setup.php:78
566
  #, php-format
567
  msgid "%s Year"
@@ -570,11 +573,11 @@ msgstr[0] "%s an"
570
  msgstr[1] "%s ani"
571
  msgstr[2] "%s de ani"
572
 
573
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
574
  msgid "One"
575
  msgstr "Un"
576
 
577
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
578
  msgid "Three"
579
  msgstr "Trei"
580
 
@@ -584,85 +587,85 @@ msgid "Unique Views"
584
  msgstr "Afișări unice"
585
 
586
  #: .././admin/setup.php:170 .././admin/setup.php:186
587
- #: .././admin/widgets.php:130 .././admin/widgets.php:830
588
  #: .././front/setup.php:82 .././front/setup.php:98 .././tools/gapi.php:358
589
  msgid "Users"
590
  msgstr "Utilizatori"
591
 
592
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
593
  msgid "Organic"
594
  msgstr "Organic"
595
 
596
  #: .././admin/setup.php:172 .././admin/setup.php:187
597
- #: .././admin/widgets.php:132 .././admin/widgets.php:834
598
  #: .././front/setup.php:84 .././front/setup.php:99 .././tools/gapi.php:361
599
  msgid "Page Views"
600
  msgstr "Afișări pagină"
601
 
602
  #: .././admin/setup.php:173 .././admin/setup.php:188
603
- #: .././admin/widgets.php:133 .././admin/widgets.php:838
604
  #: .././front/setup.php:85 .././front/setup.php:100 .././tools/gapi.php:364
605
  msgid "Bounce Rate"
606
  msgstr "Rata de respingere"
607
 
608
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
609
  msgid "Location"
610
  msgstr "Locație"
611
 
612
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
613
  #: .././tools/gapi.php:503
614
  msgid "Referrers"
615
  msgstr "Referenți"
616
 
617
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
618
  #: .././tools/gapi.php:536
619
  msgid "Searches"
620
  msgstr "Căutări"
621
 
622
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
623
  msgid "Traffic Details"
624
  msgstr "Detalii trafic"
625
 
626
- #: .././admin/setup.php:180 .././admin/widgets.php:505
627
- #: .././admin/widgets.php:590 .././admin/widgets.php:757
628
- #: .././admin/widgets.php:861 .././front/setup.php:92
629
  msgid "A JavaScript Error is blocking plugin resources!"
630
  msgstr "O eroare JavaScript blochează resursele modulului!"
631
 
632
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
633
  msgid "Traffic Mediums"
634
  msgstr "Medii trafic"
635
 
636
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
637
  msgid "Visitor Type"
638
  msgstr "Tip vizitator"
639
 
640
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
641
  msgid "Social Networks"
642
  msgstr "Rețele sociale"
643
 
644
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
645
  msgid "Search Engines"
646
  msgstr "Motoare de căutare"
647
 
648
- #: .././admin/setup.php:189 .././admin/widgets.php:842
649
  #: .././front/setup.php:101
650
  msgid "Organic Search"
651
  msgstr "Căutare organică"
652
 
653
- #: .././admin/setup.php:190 .././admin/widgets.php:846
654
  #: .././front/setup.php:102
655
  msgid "Pages/Session"
656
  msgstr "Pagini/Sesiune"
657
 
658
- #: .././admin/setup.php:191 .././admin/widgets.php:517
659
- #: .././admin/widgets.php:531 .././admin/widgets.php:541
660
- #: .././admin/widgets.php:602 .././admin/widgets.php:616
661
- #: .././admin/widgets.php:630 .././admin/widgets.php:644
662
- #: .././admin/widgets.php:658 .././admin/widgets.php:668
663
- #: .././admin/widgets.php:770 .././admin/widgets.php:782
664
- #: .././admin/widgets.php:873 .././admin/widgets.php:887
665
- #: .././admin/widgets.php:897 .././front/setup.php:103
666
  msgid "Invalid response, more details in JavaScript Console (F12)."
667
  msgstr "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
668
 
@@ -670,12 +673,12 @@ msgstr "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
670
  msgid "Not enough data collected"
671
  msgstr "Insuficiente date colectate"
672
 
673
- #: .././admin/setup.php:193 .././admin/widgets.php:522
674
- #: .././admin/widgets.php:536 .././admin/widgets.php:607
675
- #: .././admin/widgets.php:621 .././admin/widgets.php:635
676
- #: .././admin/widgets.php:649 .././admin/widgets.php:663
677
- #: .././admin/widgets.php:775 .././admin/widgets.php:777
678
- #: .././admin/widgets.php:878 .././admin/widgets.php:892
679
  #: .././front/setup.php:105 .././front/widgets.php:100
680
  msgid "This report is unavailable"
681
  msgstr "Acest raport nu este disponibil"
@@ -743,53 +746,53 @@ msgstr ""
743
  msgid "Find out more!"
744
  msgstr "Află mai multe!"
745
 
746
- #: .././admin/widgets.php:116
747
  msgid "Real-Time"
748
  msgstr "Timp-real"
749
 
750
- #: .././admin/widgets.php:129 .././admin/widgets.php:826
751
  #: .././front/widgets.php:36 .././tools/gapi.php:373 .././tools/gapi.php:503
752
  #: .././tools/gapi.php:536 .././tools/gapi.php:586 .././tools/gapi.php:666
753
  #: .././tools/gapi.php:695
754
  msgid "Sessions"
755
  msgstr "Sesiuni"
756
 
757
- #: .././admin/widgets.php:135 .././tools/gapi.php:471
758
  msgid "Pages"
759
  msgstr "Pagini"
760
 
761
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
762
  msgid "REFERRAL"
763
  msgstr "REFERIRE"
764
 
765
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
766
  msgid "ORGANIC"
767
  msgstr "ORGANIC"
768
 
769
- #: .././admin/widgets.php:244 .././admin/widgets.php:364
770
- #: .././admin/widgets.php:480
771
  msgid "SOCIAL"
772
  msgstr "SOCIAL"
773
 
774
- #: .././admin/widgets.php:248 .././admin/widgets.php:367
775
- #: .././admin/widgets.php:481
776
  msgid "CAMPAIGN"
777
  msgstr "CAMPANIE"
778
 
779
- #: .././admin/widgets.php:252 .././admin/widgets.php:370
780
- #: .././admin/widgets.php:484
781
  msgid "DIRECT"
782
  msgstr "DIRECT"
783
 
784
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
785
  msgid "NEW"
786
  msgstr "NOU"
787
 
788
- #: .././admin/widgets.php:358
789
  msgid "REFERRALS"
790
  msgstr "REFERIRI"
791
 
792
- #: .././admin/widgets.php:361
793
  msgid "KEYWORDS"
794
  msgstr "CUVINTE"
795
 
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:31+0300\n"
7
+ "PO-Revision-Date: 2015-07-05 18:32+0300\n"
8
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
9
  "Language-Team: Nicolae Sfetcu\n"
10
  "Language: ro\n"
15
  "2:1));\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Generator: Poedit 1.8.2\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Poedit-Basepath: .\n"
24
  "X-Loco-Target-Locale: ro_RO\n"
25
  "X-Poedit-SearchPath-0: ../.\n"
543
  msgid "Tracking Code"
544
  msgstr "Cod urmărire"
545
 
546
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
547
  msgid "Today"
548
  msgstr "Azi"
549
 
550
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
551
  msgid "Yesterday"
552
  msgstr "Ieri"
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 "Ultimele %d zile"
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"
573
  msgstr[1] "%s ani"
574
  msgstr[2] "%s de ani"
575
 
576
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
577
  msgid "One"
578
  msgstr "Un"
579
 
580
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
581
  msgid "Three"
582
  msgstr "Trei"
583
 
587
  msgstr "Afișări unice"
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 "Utilizatori"
594
 
595
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
596
  msgid "Organic"
597
  msgstr "Organic"
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 "Afișări pagină"
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 "Rata de respingere"
610
 
611
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
612
  msgid "Location"
613
  msgstr "Locație"
614
 
615
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
616
  #: .././tools/gapi.php:503
617
  msgid "Referrers"
618
  msgstr "Referenți"
619
 
620
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
621
  #: .././tools/gapi.php:536
622
  msgid "Searches"
623
  msgstr "Căutări"
624
 
625
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
626
  msgid "Traffic Details"
627
  msgstr "Detalii trafic"
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 "O eroare JavaScript blochează resursele modulului!"
634
 
635
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
636
  msgid "Traffic Mediums"
637
  msgstr "Medii trafic"
638
 
639
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
640
  msgid "Visitor Type"
641
  msgstr "Tip vizitator"
642
 
643
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
644
  msgid "Social Networks"
645
  msgstr "Rețele sociale"
646
 
647
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
648
  msgid "Search Engines"
649
  msgstr "Motoare de căutare"
650
 
651
+ #: .././admin/setup.php:189 .././admin/widgets.php:838
652
  #: .././front/setup.php:101
653
  msgid "Organic Search"
654
  msgstr "Căutare organică"
655
 
656
+ #: .././admin/setup.php:190 .././admin/widgets.php:842
657
  #: .././front/setup.php:102
658
  msgid "Pages/Session"
659
  msgstr "Pagini/Sesiune"
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 "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
671
 
673
  msgid "Not enough data collected"
674
  msgstr "Insuficiente date colectate"
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 "Acest raport nu este disponibil"
746
  msgid "Find out more!"
747
  msgstr "Află mai multe!"
748
 
749
+ #: .././admin/widgets.php:112
750
  msgid "Real-Time"
751
  msgstr "Timp-real"
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 "Sesiuni"
759
 
760
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
761
  msgid "Pages"
762
  msgstr "Pagini"
763
 
764
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
765
  msgid "REFERRAL"
766
  msgstr "REFERIRE"
767
 
768
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
769
  msgid "ORGANIC"
770
  msgstr "ORGANIC"
771
 
772
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360
773
+ #: .././admin/widgets.php:476
774
  msgid "SOCIAL"
775
  msgstr "SOCIAL"
776
 
777
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363
778
+ #: .././admin/widgets.php:477
779
  msgid "CAMPAIGN"
780
  msgstr "CAMPANIE"
781
 
782
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366
783
+ #: .././admin/widgets.php:480
784
  msgid "DIRECT"
785
  msgstr "DIRECT"
786
 
787
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
788
  msgid "NEW"
789
  msgstr "NOU"
790
 
791
+ #: .././admin/widgets.php:354
792
  msgid "REFERRALS"
793
  msgstr "REFERIRI"
794
 
795
+ #: .././admin/widgets.php:357
796
  msgid "KEYWORDS"
797
  msgstr "CUVINTE"
798
 
languages/ga-dash-ru_RU.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 16:16+0300\n"
8
- "PO-Revision-Date: 2015-07-05 16:16+0300\n"
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: SebWeo.com\n"
11
  "Language: ru_RU\n"
@@ -16,8 +16,10 @@ msgstr ""
16
  "%100>=20) ? 1 : 2);\n"
17
  "X-Generator: Poedit 1.8.2\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
- "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;"
20
- "esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
21
  "X-Poedit-Basepath: .\n"
22
  "X-Poedit-SearchPath-0: ../.\n"
23
 
@@ -526,17 +528,17 @@ msgstr "Настройки фронтэнда"
526
  msgid "Tracking Code"
527
  msgstr "Код отслеживания"
528
 
529
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
530
  msgid "Today"
531
  msgstr "Сегодня"
532
 
533
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
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:119 .././admin/widgets.php:120
539
- #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././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,17 +546,20 @@ msgstr "Вчера"
544
  msgid "Last %d Days"
545
  msgstr "Последние %d дней"
546
 
547
- #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:123
548
- #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
549
  #, php-format
550
  msgid "%s Year"
551
- msgstr ""
 
 
 
552
 
553
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
554
  msgid "One"
555
  msgstr ""
556
 
557
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
558
  msgid "Three"
559
  msgstr ""
560
 
@@ -563,80 +568,80 @@ msgstr ""
563
  msgid "Unique Views"
564
  msgstr "Уникальные просмотры"
565
 
566
- #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:130
567
- #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
568
  #: .././tools/gapi.php:358
569
  msgid "Users"
570
  msgstr "Пользователи"
571
 
572
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
573
  msgid "Organic"
574
  msgstr "Органический"
575
 
576
- #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
577
- #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
578
  #: .././tools/gapi.php:361
579
  msgid "Page Views"
580
  msgstr "Просмотры страницы"
581
 
582
- #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:133
583
- #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
584
  #: .././tools/gapi.php:364
585
  msgid "Bounce Rate"
586
  msgstr "Показатель отказов"
587
 
588
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
589
  msgid "Location"
590
  msgstr "Расположение"
591
 
592
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
593
  #: .././tools/gapi.php:503
594
  msgid "Referrers"
595
  msgstr "Реферальные"
596
 
597
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
598
  #: .././tools/gapi.php:536
599
  msgid "Searches"
600
  msgstr "Поисковые"
601
 
602
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
603
  msgid "Traffic Details"
604
  msgstr "Детали трафика"
605
 
606
- #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
607
- #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
608
  msgid "A JavaScript Error is blocking plugin resources!"
609
  msgstr "Ошибки JavaScript блокируют ресурсы плагина!"
610
 
611
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
612
  msgid "Traffic Mediums"
613
  msgstr "Среднее по трафику"
614
 
615
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
616
  msgid "Visitor Type"
617
  msgstr "Тип посетителей"
618
 
619
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
620
  msgid "Social Networks"
621
  msgstr "Социальные сети"
622
 
623
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
624
  msgid "Search Engines"
625
  msgstr "Поисковые системы"
626
 
627
- #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
628
  msgid "Organic Search"
629
  msgstr "Органический поиск"
630
 
631
- #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
632
  msgid "Pages/Session"
633
  msgstr "Страниц/Сессию"
634
 
635
- #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
636
- #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
637
- #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
638
- #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
639
- #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
640
  #: .././front/setup.php:103
641
  msgid "Invalid response, more details in JavaScript Console (F12)."
642
  msgstr "Неверный ответ, подробнее в консоли JavaScript (F12)."
@@ -645,10 +650,10 @@ msgstr "Неверный ответ, подробнее в консоли JavaSc
645
  msgid "Not enough data collected"
646
  msgstr "Недостаточно данных собрано"
647
 
648
- #: .././admin/setup.php:193 .././admin/widgets.php:522 .././admin/widgets.php:536
649
- #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
650
- #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
651
- #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
652
  #: .././front/setup.php:105 .././front/widgets.php:100
653
  msgid "This report is unavailable"
654
  msgstr "Этот отчет недоступен"
@@ -715,49 +720,49 @@ msgstr ""
715
  msgid "Find out more!"
716
  msgstr "Узнать больше!"
717
 
718
- #: .././admin/widgets.php:116
719
  msgid "Real-Time"
720
  msgstr "В реальном времени"
721
 
722
- #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
723
  #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
724
  #: .././tools/gapi.php:666 .././tools/gapi.php:695
725
  msgid "Sessions"
726
  msgstr "Сессии"
727
 
728
- #: .././admin/widgets.php:135 .././tools/gapi.php:471
729
  msgid "Pages"
730
  msgstr "Страницы"
731
 
732
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
733
  msgid "REFERRAL"
734
  msgstr "РЕФЕРАЛЬНЫЙ"
735
 
736
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
737
  msgid "ORGANIC"
738
  msgstr "ОРГАНИЧЕСКИЙ"
739
 
740
- #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
741
  msgid "SOCIAL"
742
  msgstr "СОЦИАЛЬНЫЙ"
743
 
744
- #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
745
  msgid "CAMPAIGN"
746
  msgstr "КАМПАНИЯ"
747
 
748
- #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
749
  msgid "DIRECT"
750
  msgstr "ПРЯМОЙ"
751
 
752
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
753
  msgid "NEW"
754
  msgstr "НОВЫЙ"
755
 
756
- #: .././admin/widgets.php:358
757
  msgid "REFERRALS"
758
  msgstr "РЕФЕРАЛЫ"
759
 
760
- #: .././admin/widgets.php:361
761
  msgid "KEYWORDS"
762
  msgstr "КЛЮЧЕВЫЕ СЛОВА"
763
 
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:33+0300\n"
8
+ "PO-Revision-Date: 2015-07-05 18:33+0300\n"
9
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
10
  "Language-Team: SebWeo.com\n"
11
  "Language: ru_RU\n"
16
  "%100>=20) ? 1 : 2);\n"
17
  "X-Generator: Poedit 1.8.2\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
20
+ "_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
21
+ "_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;"
22
+ "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"
23
  "X-Poedit-Basepath: .\n"
24
  "X-Poedit-SearchPath-0: ../.\n"
25
 
528
  msgid "Tracking Code"
529
  msgstr "Код отслеживания"
530
 
531
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
532
  msgid "Today"
533
  msgstr "Сегодня"
534
 
535
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
536
  msgid "Yesterday"
537
  msgstr "Вчера"
538
 
539
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
540
+ #: .././admin/setup.php:164 .././admin/widgets.php:115 .././admin/widgets.php:116
541
+ #: .././admin/widgets.php:117 .././admin/widgets.php:118 .././front/setup.php:73
542
  #: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
543
  #: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
544
  #: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
546
  msgid "Last %d Days"
547
  msgstr "Последние %d дней"
548
 
549
+ #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:119
550
+ #: .././admin/widgets.php:120 .././front/setup.php:77 .././front/setup.php:78
551
  #, php-format
552
  msgid "%s Year"
553
+ msgid_plural "%s Years"
554
+ msgstr[0] ""
555
+ msgstr[1] ""
556
+ msgstr[2] ""
557
 
558
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
559
  msgid "One"
560
  msgstr ""
561
 
562
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
563
  msgid "Three"
564
  msgstr ""
565
 
568
  msgid "Unique Views"
569
  msgstr "Уникальные просмотры"
570
 
571
+ #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:126
572
+ #: .././admin/widgets.php:826 .././front/setup.php:82 .././front/setup.php:98
573
  #: .././tools/gapi.php:358
574
  msgid "Users"
575
  msgstr "Пользователи"
576
 
577
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
578
  msgid "Organic"
579
  msgstr "Органический"
580
 
581
+ #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:128
582
+ #: .././admin/widgets.php:830 .././front/setup.php:84 .././front/setup.php:99
583
  #: .././tools/gapi.php:361
584
  msgid "Page Views"
585
  msgstr "Просмотры страницы"
586
 
587
+ #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:129
588
+ #: .././admin/widgets.php:834 .././front/setup.php:85 .././front/setup.php:100
589
  #: .././tools/gapi.php:364
590
  msgid "Bounce Rate"
591
  msgstr "Показатель отказов"
592
 
593
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
594
  msgid "Location"
595
  msgstr "Расположение"
596
 
597
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
598
  #: .././tools/gapi.php:503
599
  msgid "Referrers"
600
  msgstr "Реферальные"
601
 
602
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
603
  #: .././tools/gapi.php:536
604
  msgid "Searches"
605
  msgstr "Поисковые"
606
 
607
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
608
  msgid "Traffic Details"
609
  msgstr "Детали трафика"
610
 
611
+ #: .././admin/setup.php:180 .././admin/widgets.php:501 .././admin/widgets.php:586
612
+ #: .././admin/widgets.php:753 .././admin/widgets.php:857 .././front/setup.php:92
613
  msgid "A JavaScript Error is blocking plugin resources!"
614
  msgstr "Ошибки JavaScript блокируют ресурсы плагина!"
615
 
616
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
617
  msgid "Traffic Mediums"
618
  msgstr "Среднее по трафику"
619
 
620
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
621
  msgid "Visitor Type"
622
  msgstr "Тип посетителей"
623
 
624
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
625
  msgid "Social Networks"
626
  msgstr "Социальные сети"
627
 
628
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
629
  msgid "Search Engines"
630
  msgstr "Поисковые системы"
631
 
632
+ #: .././admin/setup.php:189 .././admin/widgets.php:838 .././front/setup.php:101
633
  msgid "Organic Search"
634
  msgstr "Органический поиск"
635
 
636
+ #: .././admin/setup.php:190 .././admin/widgets.php:842 .././front/setup.php:102
637
  msgid "Pages/Session"
638
  msgstr "Страниц/Сессию"
639
 
640
+ #: .././admin/setup.php:191 .././admin/widgets.php:513 .././admin/widgets.php:527
641
+ #: .././admin/widgets.php:537 .././admin/widgets.php:598 .././admin/widgets.php:612
642
+ #: .././admin/widgets.php:626 .././admin/widgets.php:640 .././admin/widgets.php:654
643
+ #: .././admin/widgets.php:664 .././admin/widgets.php:766 .././admin/widgets.php:778
644
+ #: .././admin/widgets.php:869 .././admin/widgets.php:883 .././admin/widgets.php:893
645
  #: .././front/setup.php:103
646
  msgid "Invalid response, more details in JavaScript Console (F12)."
647
  msgstr "Неверный ответ, подробнее в консоли JavaScript (F12)."
650
  msgid "Not enough data collected"
651
  msgstr "Недостаточно данных собрано"
652
 
653
+ #: .././admin/setup.php:193 .././admin/widgets.php:518 .././admin/widgets.php:532
654
+ #: .././admin/widgets.php:603 .././admin/widgets.php:617 .././admin/widgets.php:631
655
+ #: .././admin/widgets.php:645 .././admin/widgets.php:659 .././admin/widgets.php:771
656
+ #: .././admin/widgets.php:773 .././admin/widgets.php:874 .././admin/widgets.php:888
657
  #: .././front/setup.php:105 .././front/widgets.php:100
658
  msgid "This report is unavailable"
659
  msgstr "Этот отчет недоступен"
720
  msgid "Find out more!"
721
  msgstr "Узнать больше!"
722
 
723
+ #: .././admin/widgets.php:112
724
  msgid "Real-Time"
725
  msgstr "В реальном времени"
726
 
727
+ #: .././admin/widgets.php:125 .././admin/widgets.php:822 .././front/widgets.php:36
728
  #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
729
  #: .././tools/gapi.php:666 .././tools/gapi.php:695
730
  msgid "Sessions"
731
  msgstr "Сессии"
732
 
733
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
734
  msgid "Pages"
735
  msgstr "Страницы"
736
 
737
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
738
  msgid "REFERRAL"
739
  msgstr "РЕФЕРАЛЬНЫЙ"
740
 
741
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
742
  msgid "ORGANIC"
743
  msgstr "ОРГАНИЧЕСКИЙ"
744
 
745
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:476
746
  msgid "SOCIAL"
747
  msgstr "СОЦИАЛЬНЫЙ"
748
 
749
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:477
750
  msgid "CAMPAIGN"
751
  msgstr "КАМПАНИЯ"
752
 
753
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:480
754
  msgid "DIRECT"
755
  msgstr "ПРЯМОЙ"
756
 
757
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
758
  msgid "NEW"
759
  msgstr "НОВЫЙ"
760
 
761
+ #: .././admin/widgets.php:354
762
  msgid "REFERRALS"
763
  msgstr "РЕФЕРАЛЫ"
764
 
765
+ #: .././admin/widgets.php:357
766
  msgid "KEYWORDS"
767
  msgstr "КЛЮЧЕВЫЕ СЛОВА"
768
 
languages/ga-dash.pot CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
8
- "POT-Creation-Date: 2015-07-05 16:11+0300\n"
9
  "PO-Revision-Date: 2015-04-27 19:26+0200\n"
10
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
11
  "Language-Team: Alin Marcu\n"
@@ -16,7 +16,10 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Generator: Poedit 1.8.2\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
- "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
 
 
 
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-SearchPath-0: ../.\n"
22
 
@@ -515,17 +518,17 @@ msgstr ""
515
  msgid "Tracking Code"
516
  msgstr ""
517
 
518
- #: .././admin/setup.php:159 .././admin/widgets.php:117 .././front/setup.php:71
519
  msgid "Today"
520
  msgstr ""
521
 
522
- #: .././admin/setup.php:160 .././admin/widgets.php:118 .././front/setup.php:72
523
  msgid "Yesterday"
524
  msgstr ""
525
 
526
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
527
- #: .././admin/setup.php:164 .././admin/widgets.php:119 .././admin/widgets.php:120
528
- #: .././admin/widgets.php:121 .././admin/widgets.php:122 .././front/setup.php:73
529
  #: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
530
  #: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
531
  #: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
@@ -533,17 +536,19 @@ msgstr ""
533
  msgid "Last %d Days"
534
  msgstr ""
535
 
536
- #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:123
537
- #: .././admin/widgets.php:124 .././front/setup.php:77 .././front/setup.php:78
538
  #, php-format
539
  msgid "%s Year"
540
- msgstr ""
 
 
541
 
542
- #: .././admin/setup.php:165 .././admin/widgets.php:123 .././front/setup.php:77
543
  msgid "One"
544
  msgstr ""
545
 
546
- #: .././admin/setup.php:166 .././admin/widgets.php:124 .././front/setup.php:78
547
  msgid "Three"
548
  msgstr ""
549
 
@@ -552,80 +557,80 @@ msgstr ""
552
  msgid "Unique Views"
553
  msgstr ""
554
 
555
- #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:130
556
- #: .././admin/widgets.php:830 .././front/setup.php:82 .././front/setup.php:98
557
  #: .././tools/gapi.php:358
558
  msgid "Users"
559
  msgstr ""
560
 
561
- #: .././admin/setup.php:171 .././admin/widgets.php:131 .././front/setup.php:83
562
  msgid "Organic"
563
  msgstr ""
564
 
565
- #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:132
566
- #: .././admin/widgets.php:834 .././front/setup.php:84 .././front/setup.php:99
567
  #: .././tools/gapi.php:361
568
  msgid "Page Views"
569
  msgstr ""
570
 
571
- #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:133
572
- #: .././admin/widgets.php:838 .././front/setup.php:85 .././front/setup.php:100
573
  #: .././tools/gapi.php:364
574
  msgid "Bounce Rate"
575
  msgstr ""
576
 
577
- #: .././admin/setup.php:174 .././admin/widgets.php:134 .././front/setup.php:86
578
  msgid "Location"
579
  msgstr ""
580
 
581
- #: .././admin/setup.php:175 .././admin/widgets.php:136 .././front/setup.php:87
582
  #: .././tools/gapi.php:503
583
  msgid "Referrers"
584
  msgstr ""
585
 
586
- #: .././admin/setup.php:176 .././admin/widgets.php:137 .././front/setup.php:88
587
  #: .././tools/gapi.php:536
588
  msgid "Searches"
589
  msgstr ""
590
 
591
- #: .././admin/setup.php:177 .././admin/widgets.php:138 .././front/setup.php:89
592
  msgid "Traffic Details"
593
  msgstr ""
594
 
595
- #: .././admin/setup.php:180 .././admin/widgets.php:505 .././admin/widgets.php:590
596
- #: .././admin/widgets.php:757 .././admin/widgets.php:861 .././front/setup.php:92
597
  msgid "A JavaScript Error is blocking plugin resources!"
598
  msgstr ""
599
 
600
- #: .././admin/setup.php:181 .././admin/widgets.php:681 .././front/setup.php:93
601
  msgid "Traffic Mediums"
602
  msgstr ""
603
 
604
- #: .././admin/setup.php:182 .././admin/widgets.php:696 .././front/setup.php:94
605
  msgid "Visitor Type"
606
  msgstr ""
607
 
608
- #: .././admin/setup.php:183 .././admin/widgets.php:711 .././front/setup.php:95
609
  msgid "Social Networks"
610
  msgstr ""
611
 
612
- #: .././admin/setup.php:184 .././admin/widgets.php:726 .././front/setup.php:96
613
  msgid "Search Engines"
614
  msgstr ""
615
 
616
- #: .././admin/setup.php:189 .././admin/widgets.php:842 .././front/setup.php:101
617
  msgid "Organic Search"
618
  msgstr ""
619
 
620
- #: .././admin/setup.php:190 .././admin/widgets.php:846 .././front/setup.php:102
621
  msgid "Pages/Session"
622
  msgstr ""
623
 
624
- #: .././admin/setup.php:191 .././admin/widgets.php:517 .././admin/widgets.php:531
625
- #: .././admin/widgets.php:541 .././admin/widgets.php:602 .././admin/widgets.php:616
626
- #: .././admin/widgets.php:630 .././admin/widgets.php:644 .././admin/widgets.php:658
627
- #: .././admin/widgets.php:668 .././admin/widgets.php:770 .././admin/widgets.php:782
628
- #: .././admin/widgets.php:873 .././admin/widgets.php:887 .././admin/widgets.php:897
629
  #: .././front/setup.php:103
630
  msgid "Invalid response, more details in JavaScript Console (F12)."
631
  msgstr ""
@@ -634,10 +639,10 @@ msgstr ""
634
  msgid "Not enough data collected"
635
  msgstr ""
636
 
637
- #: .././admin/setup.php:193 .././admin/widgets.php:522 .././admin/widgets.php:536
638
- #: .././admin/widgets.php:607 .././admin/widgets.php:621 .././admin/widgets.php:635
639
- #: .././admin/widgets.php:649 .././admin/widgets.php:663 .././admin/widgets.php:775
640
- #: .././admin/widgets.php:777 .././admin/widgets.php:878 .././admin/widgets.php:892
641
  #: .././front/setup.php:105 .././front/widgets.php:100
642
  msgid "This report is unavailable"
643
  msgstr ""
@@ -702,49 +707,49 @@ msgstr ""
702
  msgid "Find out more!"
703
  msgstr ""
704
 
705
- #: .././admin/widgets.php:116
706
  msgid "Real-Time"
707
  msgstr ""
708
 
709
- #: .././admin/widgets.php:129 .././admin/widgets.php:826 .././front/widgets.php:36
710
  #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
711
  #: .././tools/gapi.php:666 .././tools/gapi.php:695
712
  msgid "Sessions"
713
  msgstr ""
714
 
715
- #: .././admin/widgets.php:135 .././tools/gapi.php:471
716
  msgid "Pages"
717
  msgstr ""
718
 
719
- #: .././admin/widgets.php:236 .././admin/widgets.php:478
720
  msgid "REFERRAL"
721
  msgstr ""
722
 
723
- #: .././admin/widgets.php:240 .././admin/widgets.php:479
724
  msgid "ORGANIC"
725
  msgstr ""
726
 
727
- #: .././admin/widgets.php:244 .././admin/widgets.php:364 .././admin/widgets.php:480
728
  msgid "SOCIAL"
729
  msgstr ""
730
 
731
- #: .././admin/widgets.php:248 .././admin/widgets.php:367 .././admin/widgets.php:481
732
  msgid "CAMPAIGN"
733
  msgstr ""
734
 
735
- #: .././admin/widgets.php:252 .././admin/widgets.php:370 .././admin/widgets.php:484
736
  msgid "DIRECT"
737
  msgstr ""
738
 
739
- #: .././admin/widgets.php:256 .././admin/widgets.php:485
740
  msgid "NEW"
741
  msgstr ""
742
 
743
- #: .././admin/widgets.php:358
744
  msgid "REFERRALS"
745
  msgstr ""
746
 
747
- #: .././admin/widgets.php:361
748
  msgid "KEYWORDS"
749
  msgstr ""
750
 
5
  msgstr ""
6
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
8
+ "POT-Creation-Date: 2015-07-05 18:36+0300\n"
9
  "PO-Revision-Date: 2015-04-27 19:26+0200\n"
10
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
11
  "Language-Team: Alin Marcu\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Generator: Poedit 1.8.2\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
20
+ "_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
21
+ "_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;"
22
+ "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"
23
  "X-Poedit-Basepath: .\n"
24
  "X-Poedit-SearchPath-0: ../.\n"
25
 
518
  msgid "Tracking Code"
519
  msgstr ""
520
 
521
+ #: .././admin/setup.php:159 .././admin/widgets.php:113 .././front/setup.php:71
522
  msgid "Today"
523
  msgstr ""
524
 
525
+ #: .././admin/setup.php:160 .././admin/widgets.php:114 .././front/setup.php:72
526
  msgid "Yesterday"
527
  msgstr ""
528
 
529
  #: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
530
+ #: .././admin/setup.php:164 .././admin/widgets.php:115 .././admin/widgets.php:116
531
+ #: .././admin/widgets.php:117 .././admin/widgets.php:118 .././front/setup.php:73
532
  #: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
533
  #: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
534
  #: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
536
  msgid "Last %d Days"
537
  msgstr ""
538
 
539
+ #: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:119
540
+ #: .././admin/widgets.php:120 .././front/setup.php:77 .././front/setup.php:78
541
  #, php-format
542
  msgid "%s Year"
543
+ msgid_plural "%s Years"
544
+ msgstr[0] ""
545
+ msgstr[1] ""
546
 
547
+ #: .././admin/setup.php:165 .././admin/widgets.php:119 .././front/setup.php:77
548
  msgid "One"
549
  msgstr ""
550
 
551
+ #: .././admin/setup.php:166 .././admin/widgets.php:120 .././front/setup.php:78
552
  msgid "Three"
553
  msgstr ""
554
 
557
  msgid "Unique Views"
558
  msgstr ""
559
 
560
+ #: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:126
561
+ #: .././admin/widgets.php:826 .././front/setup.php:82 .././front/setup.php:98
562
  #: .././tools/gapi.php:358
563
  msgid "Users"
564
  msgstr ""
565
 
566
+ #: .././admin/setup.php:171 .././admin/widgets.php:127 .././front/setup.php:83
567
  msgid "Organic"
568
  msgstr ""
569
 
570
+ #: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:128
571
+ #: .././admin/widgets.php:830 .././front/setup.php:84 .././front/setup.php:99
572
  #: .././tools/gapi.php:361
573
  msgid "Page Views"
574
  msgstr ""
575
 
576
+ #: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:129
577
+ #: .././admin/widgets.php:834 .././front/setup.php:85 .././front/setup.php:100
578
  #: .././tools/gapi.php:364
579
  msgid "Bounce Rate"
580
  msgstr ""
581
 
582
+ #: .././admin/setup.php:174 .././admin/widgets.php:130 .././front/setup.php:86
583
  msgid "Location"
584
  msgstr ""
585
 
586
+ #: .././admin/setup.php:175 .././admin/widgets.php:132 .././front/setup.php:87
587
  #: .././tools/gapi.php:503
588
  msgid "Referrers"
589
  msgstr ""
590
 
591
+ #: .././admin/setup.php:176 .././admin/widgets.php:133 .././front/setup.php:88
592
  #: .././tools/gapi.php:536
593
  msgid "Searches"
594
  msgstr ""
595
 
596
+ #: .././admin/setup.php:177 .././admin/widgets.php:134 .././front/setup.php:89
597
  msgid "Traffic Details"
598
  msgstr ""
599
 
600
+ #: .././admin/setup.php:180 .././admin/widgets.php:501 .././admin/widgets.php:586
601
+ #: .././admin/widgets.php:753 .././admin/widgets.php:857 .././front/setup.php:92
602
  msgid "A JavaScript Error is blocking plugin resources!"
603
  msgstr ""
604
 
605
+ #: .././admin/setup.php:181 .././admin/widgets.php:677 .././front/setup.php:93
606
  msgid "Traffic Mediums"
607
  msgstr ""
608
 
609
+ #: .././admin/setup.php:182 .././admin/widgets.php:692 .././front/setup.php:94
610
  msgid "Visitor Type"
611
  msgstr ""
612
 
613
+ #: .././admin/setup.php:183 .././admin/widgets.php:707 .././front/setup.php:95
614
  msgid "Social Networks"
615
  msgstr ""
616
 
617
+ #: .././admin/setup.php:184 .././admin/widgets.php:722 .././front/setup.php:96
618
  msgid "Search Engines"
619
  msgstr ""
620
 
621
+ #: .././admin/setup.php:189 .././admin/widgets.php:838 .././front/setup.php:101
622
  msgid "Organic Search"
623
  msgstr ""
624
 
625
+ #: .././admin/setup.php:190 .././admin/widgets.php:842 .././front/setup.php:102
626
  msgid "Pages/Session"
627
  msgstr ""
628
 
629
+ #: .././admin/setup.php:191 .././admin/widgets.php:513 .././admin/widgets.php:527
630
+ #: .././admin/widgets.php:537 .././admin/widgets.php:598 .././admin/widgets.php:612
631
+ #: .././admin/widgets.php:626 .././admin/widgets.php:640 .././admin/widgets.php:654
632
+ #: .././admin/widgets.php:664 .././admin/widgets.php:766 .././admin/widgets.php:778
633
+ #: .././admin/widgets.php:869 .././admin/widgets.php:883 .././admin/widgets.php:893
634
  #: .././front/setup.php:103
635
  msgid "Invalid response, more details in JavaScript Console (F12)."
636
  msgstr ""
639
  msgid "Not enough data collected"
640
  msgstr ""
641
 
642
+ #: .././admin/setup.php:193 .././admin/widgets.php:518 .././admin/widgets.php:532
643
+ #: .././admin/widgets.php:603 .././admin/widgets.php:617 .././admin/widgets.php:631
644
+ #: .././admin/widgets.php:645 .././admin/widgets.php:659 .././admin/widgets.php:771
645
+ #: .././admin/widgets.php:773 .././admin/widgets.php:874 .././admin/widgets.php:888
646
  #: .././front/setup.php:105 .././front/widgets.php:100
647
  msgid "This report is unavailable"
648
  msgstr ""
707
  msgid "Find out more!"
708
  msgstr ""
709
 
710
+ #: .././admin/widgets.php:112
711
  msgid "Real-Time"
712
  msgstr ""
713
 
714
+ #: .././admin/widgets.php:125 .././admin/widgets.php:822 .././front/widgets.php:36
715
  #: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
716
  #: .././tools/gapi.php:666 .././tools/gapi.php:695
717
  msgid "Sessions"
718
  msgstr ""
719
 
720
+ #: .././admin/widgets.php:131 .././tools/gapi.php:471
721
  msgid "Pages"
722
  msgstr ""
723
 
724
+ #: .././admin/widgets.php:232 .././admin/widgets.php:474
725
  msgid "REFERRAL"
726
  msgstr ""
727
 
728
+ #: .././admin/widgets.php:236 .././admin/widgets.php:475
729
  msgid "ORGANIC"
730
  msgstr ""
731
 
732
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:476
733
  msgid "SOCIAL"
734
  msgstr ""
735
 
736
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:477
737
  msgid "CAMPAIGN"
738
  msgstr ""
739
 
740
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:480
741
  msgid "DIRECT"
742
  msgstr ""
743
 
744
+ #: .././admin/widgets.php:252 .././admin/widgets.php:481
745
  msgid "NEW"
746
  msgstr ""
747
 
748
+ #: .././admin/widgets.php:354
749
  msgid "REFERRALS"
750
  msgstr ""
751
 
752
+ #: .././admin/widgets.php:357
753
  msgid "KEYWORDS"
754
  msgstr ""
755
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Google Analytics Dashboard for WP ===
2
  Contributors: deconf
3
  Donate link: https://deconf.com/donate/
4
- Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,universal analytics,realtime,multisite,gadwp
5
  Requires at least: 3.5
6
  Tested up to: 4.2.2
7
- Stable tag: 4.8.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -128,6 +128,18 @@ Google Analytics Dashboard for WP it's released under the GPLv2, you can use it
128
 
129
  == Changelog ==
130
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  = 4.8.1 =
132
  - Bug Fix: add % suffix to bouncerate item reports
133
  - Bug Fix: add query string support to frontend item reports
1
  === Google Analytics Dashboard for WP ===
2
  Contributors: deconf
3
  Donate link: https://deconf.com/donate/
4
+ Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,universal google analytics,realtime,multisite,gadwp
5
  Requires at least: 3.5
6
  Tested up to: 4.2.2
7
+ Stable tag: 4.8.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
128
 
129
  == Changelog ==
130
 
131
+ = 4.8.1.2 =
132
+ - Bug Fix: fixes automatic update switched on after each update
133
+ - Bug Fix: add missing domain to an i18n string
134
+ - Bug Fix: small CSS fix in item-reports.css
135
+ - Bug Fix: using PHP to get web pages URIs instead of JavaScript
136
+ - Enhancement: Italian translation updated
137
+ - Enhancement: set the cookies to expire in 7 days
138
+
139
+ = 4.8.1.1 =
140
+ - Bug Fix: headers already sent warning on main dashboard widget
141
+ - Bug Fix: plural form fix for a string in translation PO files
142
+
143
  = 4.8.1 =
144
  - Bug Fix: add % suffix to bouncerate item reports
145
  - Bug Fix: add query string support to frontend item reports
tools/tools.php CHANGED
@@ -111,7 +111,7 @@ if ( ! class_exists( 'GADWP_Tools' ) ) {
111
 
112
  public static function set_cookie( $name, $value ) {
113
  $name = 'gadwp_' . $name;
114
- setcookie( $name, $value, time() + 60 * 60 * 24 * 365 * 10, '/', COOKIE_DOMAIN, false );
115
  }
116
 
117
  public static function get_cookie( $name ) {
111
 
112
  public static function set_cookie( $name, $value ) {
113
  $name = 'gadwp_' . $name;
114
+ setcookie( $name, $value, time() + 60 * 60 * 24 * 7, '/');
115
  }
116
 
117
  public static function get_cookie( $name ) {