Google Analytics Dashboard for WP (GADWP) - Version 4.7.1

Version Description

  • Enhancement: Italian translation updated
  • Bug Fix: use url-encoding for API filters to avoid generating invalid parameters
  • Bug Fix: cache reports for pages and posts with queries in URI
  • Bug Fix: avoid double encoding while doing API requests
Download this release

Release Info

Developer deconf
Plugin Icon 128x128 Google Analytics Dashboard for WP (GADWP)
Version 4.7.1
Comparing to
See all releases

Code changes from version 4.7 to 4.7.1

admin/ajax-actions.php CHANGED
@@ -82,8 +82,12 @@ if (! class_exists('GADWP_Backend_Ajax')) {
82
  wp_die(- 25);
83
  }
84
 
85
- // allow URI correction before sending an API request
86
  $filter = apply_filters('gadwp_backenditem_uri', $uri);
 
 
 
 
87
  $this->gadwp->gapi_controller->get($projectId, $query, $from, $to, $filter);
88
  }
89
 
82
  wp_die(- 25);
83
  }
84
 
85
+ // allow URL correction before sending an API request
86
  $filter = apply_filters('gadwp_backenditem_uri', $uri);
87
+
88
+ //Encode URL
89
+ $filter = rawurlencode($filter);
90
+
91
  $this->gadwp->gapi_controller->get($projectId, $query, $from, $to, $filter);
92
  }
93
 
admin/js/item-reports.js CHANGED
@@ -580,10 +580,7 @@ jQuery.fn.extend({
580
 
581
  try {
582
  NProgress.configure({
583
- parent : "#gadwp-progressbar" + slug
584
- });
585
- NProgress.configure({
586
- showSpinner : false
587
  });
588
  NProgress.start();
589
  } catch (e) {
580
 
581
  try {
582
  NProgress.configure({
583
+ parent : "#gadwp-progressbar" + slug, showSpinner : false
 
 
 
584
  });
585
  NProgress.start();
586
  } catch (e) {
front/ajax-actions.php CHANGED
@@ -50,8 +50,8 @@ if (! class_exists('GADWP_Frontend_Ajax')) {
50
  if (! isset($_REQUEST['gadash_security_pagereports']) || ! wp_verify_nonce($_REQUEST['gadash_security_pagereports'], 'gadash_get_frontend_pagereports')) {
51
  wp_die(- 30);
52
  }
53
- $page_url = esc_url($_REQUEST['gadash_pageurl']);
54
- $post_id = (int) $_REQUEST['gadash_postid'];
55
  $query = $_REQUEST['query'];
56
  if (ob_get_length()) {
57
  ob_clean();
@@ -80,10 +80,10 @@ if (! class_exists('GADWP_Frontend_Ajax')) {
80
  }
81
  switch ($query) {
82
  case 'pageviews':
83
- wp_send_json($this->gadwp->gapi_controller->frontend_afterpost_pageviews($projectId, $page_url, $post_id));
84
  break;
85
  default:
86
- wp_send_json($this->gadwp->gapi_controller->frontend_afterpost_searches($projectId, $page_url, $post_id));
87
  break;
88
  }
89
  }
50
  if (! isset($_REQUEST['gadash_security_pagereports']) || ! wp_verify_nonce($_REQUEST['gadash_security_pagereports'], 'gadash_get_frontend_pagereports')) {
51
  wp_die(- 30);
52
  }
53
+ $page_url = $_REQUEST['gadash_pageurl'];
54
+
55
  $query = $_REQUEST['query'];
56
  if (ob_get_length()) {
57
  ob_clean();
80
  }
81
  switch ($query) {
82
  case 'pageviews':
83
+ wp_send_json($this->gadwp->gapi_controller->frontend_afterpost_pageviews($projectId, $page_url));
84
  break;
85
  default:
86
+ wp_send_json($this->gadwp->gapi_controller->frontend_afterpost_searches($projectId, $page_url));
87
  break;
88
  }
89
  }
front/item-reports.php CHANGED
@@ -49,7 +49,6 @@ if (! class_exists('GADWP_Frontend_Item_Reports')) {
49
 
50
  public function add_content($content)
51
  {
52
- global $post;
53
 
54
  if (! GADWP_Tools::check_roles($this->gadwp->config->options['ga_dash_access_front']) || ! ($this->gadwp->config->options['ga_dash_frontend_stats'] || $this->gadwp->config->options['ga_dash_frontend_keywords'])) {
55
  return $content;
@@ -62,8 +61,12 @@ if (! class_exists('GADWP_Frontend_Item_Reports')) {
62
  }
63
 
64
  if ((is_page() || is_single()) && ! is_preview()) {
65
- $page_url = $_SERVER["REQUEST_URI"]; // str_replace(site_url(), "", get_permalink());
66
- $post_id = $post->ID;
 
 
 
 
67
  $content .= '<script type="text/javascript">
68
 
69
  gadash_firstclick = true;
@@ -95,7 +98,7 @@ if (! class_exists('GADWP_Frontend_Item_Reports')) {
95
  }
96
 
97
  if(typeof ga_dash_drawpagesessions == "function"){
98
- jQuery.post("' . admin_url('admin-ajax.php') . '", {action: "gadash_get_frontend_pagereports",gadash_pageurl: "' . $page_url . '",gadash_postid: "' . $post_id . '",query: "pageviews",gadash_security_pagereports: "' . wp_create_nonce('gadash_get_frontend_pagereports') . '"}, function(response){
99
  if (!jQuery.isNumeric(response)){
100
  if (jQuery.isArray(response)){
101
  gadash_pagesessions = response;
@@ -114,7 +117,7 @@ if (! class_exists('GADWP_Frontend_Item_Reports')) {
114
  });
115
  }
116
  if(typeof ga_dash_drawpagesearches == "function"){
117
- jQuery.post("' . admin_url('admin-ajax.php') . '", {action: "gadash_get_frontend_pagereports",gadash_pageurl: "' . $page_url . '",gadash_postid: "' . $post_id . '",query: "searches",gadash_security_pagereports: "' . wp_create_nonce('gadash_get_frontend_pagereports') . '"}, function(response){
118
  if (!jQuery.isNumeric(response)){
119
  if (jQuery.isArray(response)){
120
  gadash_pagesearches = response;
49
 
50
  public function add_content($content)
51
  {
 
52
 
53
  if (! GADWP_Tools::check_roles($this->gadwp->config->options['ga_dash_access_front']) || ! ($this->gadwp->config->options['ga_dash_frontend_stats'] || $this->gadwp->config->options['ga_dash_frontend_keywords'])) {
54
  return $content;
61
  }
62
 
63
  if ((is_page() || is_single()) && ! is_preview()) {
64
+
65
+ $page_url = $_SERVER["REQUEST_URI"];
66
+
67
+ //Encode URL
68
+ $page_url = rawurlencode($page_url);
69
+
70
  $content .= '<script type="text/javascript">
71
 
72
  gadash_firstclick = true;
98
  }
99
 
100
  if(typeof ga_dash_drawpagesessions == "function"){
101
+ jQuery.post("' . admin_url('admin-ajax.php') . '", {action: "gadash_get_frontend_pagereports",gadash_pageurl: "' . $page_url . '",query: "pageviews",gadash_security_pagereports: "' . wp_create_nonce('gadash_get_frontend_pagereports') . '"}, function(response){
102
  if (!jQuery.isNumeric(response)){
103
  if (jQuery.isArray(response)){
104
  gadash_pagesessions = response;
117
  });
118
  }
119
  if(typeof ga_dash_drawpagesearches == "function"){
120
+ jQuery.post("' . admin_url('admin-ajax.php') . '", {action: "gadash_get_frontend_pagereports",gadash_pageurl: "' . $page_url . '",query: "searches",gadash_security_pagereports: "' . wp_create_nonce('gadash_get_frontend_pagereports') . '"}, function(response){
121
  if (!jQuery.isNumeric(response)){
122
  if (jQuery.isArray(response)){
123
  gadash_pagesearches = response;
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.7
8
  * Author URI: https://deconf.com
9
  */
10
 
@@ -86,7 +86,7 @@ if (! class_exists('GADWP_Manager')) {
86
 
87
  // Plugin Version
88
  if (! defined('GADWP_CURRENT_VERSION')) {
89
- define('GADWP_CURRENT_VERSION', '4.7');
90
  }
91
 
92
  // 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.7.1
8
  * Author URI: https://deconf.com
9
  */
10
 
86
 
87
  // Plugin Version
88
  if (! defined('GADWP_CURRENT_VERSION')) {
89
+ define('GADWP_CURRENT_VERSION', '4.7.1');
90
  }
91
 
92
  // Plugin Path
languages/ga-dash-it_IT.mo CHANGED
Binary file
languages/ga-dash-it_IT.po CHANGED
@@ -1,1247 +1,1254 @@
1
- msgid ""
2
- 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-04-27 19:25+0200\n"
7
- "PO-Revision-Date: 2015-04-27 19:25+0200\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.7.6\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:67
22
- msgid "Analytics"
23
- msgstr "Analytics"
24
-
25
- #: .././admin/settings.php:94 .././admin/settings.php:202
26
- #: .././admin/settings.php:338 .././admin/settings.php:820
27
- #: .././admin/settings.php:1089
28
- msgid "Settings saved."
29
- msgstr "Impostazioni salvate."
30
-
31
- #: .././admin/settings.php:96 .././admin/settings.php:204
32
- #: .././admin/settings.php:340 .././admin/settings.php:797
33
- #: .././admin/settings.php:807 .././admin/settings.php:816
34
- #: .././admin/settings.php:822 .././admin/settings.php:834
35
- #: .././admin/settings.php:1050 .././admin/settings.php:1075
36
- #: .././admin/settings.php:1085 .././admin/settings.php:1091
37
- #: .././admin/settings.php:1103
38
- msgid "Cheating Huh?"
39
- msgstr "Tentativo di frode?"
40
-
41
- #: .././admin/settings.php:100 .././admin/settings.php:208
42
- #: .././admin/settings.php:344 .././admin/settings.php:659
43
- #: .././admin/settings.php:848 .././admin/settings.php:1116
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:100 .././admin/settings.php:208
49
- #: .././admin/settings.php:344 .././admin/settings.php:659
50
- #: .././admin/settings.php:848 .././admin/settings.php:1116
51
- #: .././admin/setup.php:96 .././admin/setup.php:119
52
- msgid "Errors & Debug"
53
- msgstr "Errori & Debug"
54
-
55
- #: .././admin/settings.php:100 .././admin/settings.php:208
56
- #: .././admin/settings.php:344 .././admin/settings.php:659
57
- #: .././admin/settings.php:848 .././admin/settings.php:1116
58
- msgid "authorize the plugin"
59
- msgstr "autorizza il plugin"
60
-
61
- #: .././admin/settings.php:105
62
- msgid "Google Analytics Frontend Settings"
63
- msgstr "Impostazioni Frontend di Google Analytics "
64
-
65
- #: .././admin/settings.php:116
66
- #, php-format
67
- msgid "Read %s for more information about Frontend Features and Options."
68
- msgstr ""
69
-
70
- #: .././admin/settings.php:116 .././admin/settings.php:224
71
- #: .././admin/settings.php:369 .././admin/settings.php:682
72
- msgid "this documentation page"
73
- msgstr "la pagina della documentazione del plugin"
74
-
75
- #: .././admin/settings.php:120 .././admin/settings.php:228
76
- msgid "Permissions"
77
- msgstr "Permessi"
78
-
79
- #: .././admin/settings.php:123 .././admin/settings.php:231
80
- msgid "Show stats to:"
81
- msgstr "Mostra statistiche a:"
82
-
83
- #: .././admin/settings.php:162
84
- msgid "show page sessions and users in frontend (after each article)"
85
- msgstr ""
86
-
87
- #: .././admin/settings.php:173
88
- msgid "show page searches (after each article)"
89
- msgstr ""
90
-
91
- #: .././admin/settings.php:180 .././admin/settings.php:318
92
- #: .././admin/settings.php:617 .././admin/settings.php:965
93
- #: .././admin/settings.php:1253
94
- msgid "Save Changes"
95
- msgstr "Salva le modifiche"
96
-
97
- #: .././admin/settings.php:213
98
- msgid "Google Analytics Backend Settings"
99
- msgstr "Impostazioni Backend di Google Analytics"
100
-
101
- #: .././admin/settings.php:224
102
- #, php-format
103
- msgid "Read %s for more information about Backend Features and Options."
104
- msgstr ""
105
-
106
- #: .././admin/settings.php:272
107
- msgid "enable Switch View functionality"
108
- msgstr ""
109
-
110
- #: .././admin/settings.php:283
111
- msgid "enable reports on Posts List and Pages List"
112
- msgstr "abilita rapporti nella lista pagine e post"
113
-
114
- #: .././admin/settings.php:294
115
- msgid "enable the main Dashboard Widget"
116
- msgstr "abilita il widget principale nella bacheca"
117
-
118
- #: .././admin/settings.php:298
119
- msgid "Real-Time Settings"
120
- msgstr "Impostazioni In tempo reale"
121
-
122
- #: .././admin/settings.php:301
123
- msgid "Maximum number of pages to display on real-time tab:"
124
- msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
125
-
126
- #: .././admin/settings.php:306
127
- msgid "Location Settings"
128
- msgstr "Impostazioni posizione geografica"
129
-
130
- #: .././admin/settings.php:310
131
- msgid "Target Geo Map to country:"
132
- msgstr "Cartina geografica per il paese:"
133
-
134
- #: .././admin/settings.php:347
135
- msgid ""
136
- "The tracking component is disabled. You should set <strong>Tracking Options</"
137
- "strong> to <strong>Enabled</strong>"
138
- msgstr ""
139
- "Il componente di monitoraggio &egrave; disabilitato. &Egrave; necessario "
140
- "impostare il <strong>Monitoraggio</strong> su <strong>Abilitato</strong>"
141
-
142
- #: .././admin/settings.php:352
143
- msgid "Google Analytics Tracking Code"
144
- msgstr "Impostazioni Monitoraggio di Google Analytics "
145
-
146
- #: .././admin/settings.php:361
147
- msgid "Basic Settings"
148
- msgstr "Impostazioni di base"
149
-
150
- #: .././admin/settings.php:362 .././admin/settings.php:429
151
- msgid "Events Tracking"
152
- msgstr "Impostazioni eventi"
153
-
154
- #: .././admin/settings.php:363 .././admin/settings.php:477
155
- msgid "Custom Definitions"
156
- msgstr "Impostazioni definizioni personalizzate"
157
-
158
- #: .././admin/settings.php:364 .././admin/settings.php:575
159
- #: .././admin/settings.php:1236
160
- msgid "Exclude Tracking"
161
- msgstr "Escludi monitoraggio"
162
-
163
- #: .././admin/settings.php:365
164
- msgid "Advanced Settings"
165
- msgstr "Impostazioni avanzate"
166
-
167
- #: .././admin/settings.php:369
168
- #, php-format
169
- msgid "For more information about Tracking Options read %s."
170
- msgstr ""
171
-
172
- #: .././admin/settings.php:374
173
- msgid "Tracking Settings"
174
- msgstr "Stato del monitoraggio"
175
-
176
- #: .././admin/settings.php:377
177
- msgid "Tracking Options:"
178
- msgstr "Monitoraggio:"
179
-
180
- #: .././admin/settings.php:379
181
- msgid "Disabled"
182
- msgstr "Disabilitato"
183
-
184
- #: .././admin/settings.php:380
185
- msgid "Enabled"
186
- msgstr "Abilitato"
187
-
188
- #: .././admin/settings.php:388 .././admin/settings.php:912
189
- #: .././admin/settings.php:933 .././admin/settings.php:1209
190
- #: .././admin/widgets.php:71
191
- msgid "View Name:"
192
- msgstr "Mostra nome:"
193
-
194
- #: .././admin/settings.php:388 .././admin/settings.php:933
195
- msgid "Tracking ID:"
196
- msgstr "ID monitoraggio:"
197
-
198
- #: .././admin/settings.php:388 .././admin/settings.php:933
199
- msgid "Default URL:"
200
- msgstr "URL predefinito:"
201
-
202
- #: .././admin/settings.php:388 .././admin/settings.php:933
203
- msgid "Time Zone:"
204
- msgstr "Fuso orario:"
205
-
206
- #: .././admin/settings.php:393
207
- msgid "Basic Tracking"
208
- msgstr "Impostazioni di base"
209
-
210
- #: .././admin/settings.php:396
211
- msgid "Tracking Type:"
212
- msgstr "Tipo:"
213
-
214
- #: .././admin/settings.php:398
215
- msgid "Classic Analytics"
216
- msgstr "Classic Analytics"
217
-
218
- #: .././admin/settings.php:399
219
- msgid "Universal Analytics"
220
- msgstr "Universal Analytics"
221
-
222
- #: .././admin/settings.php:410
223
- msgid "anonymize IPs while tracking"
224
- msgstr ""
225
-
226
- #: .././admin/settings.php:421
227
- msgid "enable remarketing, demographics and interests reports"
228
- msgstr ""
229
-
230
- #: .././admin/settings.php:439
231
- msgid "track downloads, mailto and outbound links"
232
- msgstr ""
233
-
234
- #: .././admin/settings.php:443
235
- msgid "Downloads Regex:"
236
- msgstr "Abbreviazioni downloads:"
237
-
238
- #: .././admin/settings.php:454
239
- msgid "track affiliate links matching this regex"
240
- msgstr ""
241
-
242
- #: .././admin/settings.php:458
243
- msgid "Affiliates Regex:"
244
- msgstr "Abbreviazioni associate:"
245
-
246
- #: .././admin/settings.php:469
247
- msgid "track fragment identifiers, hashmarks (#) in URI links"
248
- msgstr ""
249
-
250
- #: .././admin/settings.php:480
251
- msgid "Authors:"
252
- msgstr "Autori:"
253
-
254
- #: .././admin/settings.php:488
255
- msgid "Publication Year:"
256
- msgstr "Anno di pubblicazione:"
257
-
258
- #: .././admin/settings.php:496
259
- msgid "Categories:"
260
- msgstr "Categorie:"
261
-
262
- #: .././admin/settings.php:504
263
- msgid "User Type:"
264
- msgstr "Tipo di utente:"
265
-
266
- #: .././admin/settings.php:516
267
- msgid "Advanced Tracking"
268
- msgstr "Impostazioni avanzate"
269
-
270
- #: .././admin/settings.php:519
271
- msgid "Page Speed SR:"
272
- msgstr "Page Speed Sample Rate:"
273
-
274
- #: .././admin/settings.php:530
275
- msgid "exclude events from bounce-rate calculation"
276
- msgstr ""
277
-
278
- #: .././admin/settings.php:541
279
- msgid "enable enhanced link attribution"
280
- msgstr ""
281
-
282
- #: .././admin/settings.php:552
283
- msgid "enable AdSense account linking"
284
- msgstr ""
285
-
286
- #: .././admin/settings.php:563
287
- msgid "enable cross domain tracking"
288
- msgstr ""
289
-
290
- #: .././admin/settings.php:567
291
- msgid "Cross Domains:"
292
- msgstr " Cross Domains:"
293
-
294
- #: .././admin/settings.php:578
295
- msgid "Exclude tracking for:"
296
- msgstr "Escludi per:"
297
-
298
- #: .././admin/settings.php:663
299
- msgid "Google Analytics Errors & Debugging"
300
- msgstr "Errori & Debugging di Google Analytics"
301
-
302
- #: .././admin/settings.php:673
303
- msgid "Errors & Details"
304
- msgstr "Errori & Dettagli"
305
-
306
- #: .././admin/settings.php:674
307
- msgid "Plugin Settings"
308
- msgstr "Impostazioni plugin"
309
-
310
- #: .././admin/settings.php:682
311
- #, php-format
312
- msgid "For errors and/or other issues check %s and related resources."
313
- msgstr ""
314
-
315
- #: .././admin/settings.php:687
316
- msgid "Last Error detected"
317
- msgstr "Ultimo errore rilevato"
318
-
319
- #: .././admin/settings.php:693 .././admin/settings.php:706
320
- msgid "None"
321
- msgstr "Nessuno"
322
-
323
- #: .././admin/settings.php:700
324
- msgid "Error Details"
325
- msgstr "Dettagli errore"
326
-
327
- #: .././admin/settings.php:720
328
- msgid "Plugin Configuration"
329
- msgstr "Configurazione plugin"
330
-
331
- #: .././admin/settings.php:742 .././admin/settings.php:1000
332
- msgid ""
333
- "Loading the required libraries. If this results in a blank screen or a fatal "
334
- "error, try this solution:"
335
- msgstr ""
336
- "Caricamento delle librerie richieste. Se viene restituita una schermata "
337
- "vuota o si verifica un errore fatale, provare questa soluzione:"
338
-
339
- #: .././admin/settings.php:742
340
- msgid "Library conflicts between WordPress plugins"
341
- msgstr "Conflitti tra le librerie dei plugins di WordPress"
342
-
343
- #: .././admin/settings.php:757 .././admin/settings.php:1017
344
- msgid "Plugin authorization succeeded."
345
- msgstr "Autorizzazione plugin riuscita."
346
-
347
- #: .././admin/settings.php:772 .././admin/settings.php:1041
348
- msgid ""
349
- "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
350
- "(UA-XXXXX-X). Try again, and use the red link to get your access code"
351
- msgstr ""
352
- "Il codice di accesso <strong>NON</strong> &egrave; il <strong>Tracking ID</"
353
- "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
354
- "il codice di accesso"
355
-
356
- #: .././admin/settings.php:795 .././admin/settings.php:1073
357
- msgid "Cleared Cache."
358
- msgstr "Cache eliminata."
359
-
360
- #: .././admin/settings.php:804 .././admin/settings.php:1082
361
- msgid "Token Reseted and Revoked."
362
- msgstr "Token azzerato e revocato."
363
-
364
- #: .././admin/settings.php:814
365
- msgid "All errors reseted."
366
- msgstr "Tutti gli errori azzerati."
367
-
368
- #: .././admin/settings.php:827 .././admin/settings.php:1096
369
- msgid "All other domains/properties were removed."
370
- msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
371
-
372
- #: .././admin/settings.php:839 .././admin/settings.php:1108
373
- msgid "Google Analytics Settings"
374
- msgstr "Impostazioni di Google Analytics"
375
-
376
- #: .././admin/settings.php:853 .././admin/settings.php:1121
377
- msgid "Use the red link (see below) to generate and get your access code!"
378
- msgstr ""
379
- "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
380
- "di accesso!"
381
-
382
- #: .././admin/settings.php:864 .././admin/settings.php:1149
383
- msgid "Plugin Authorization"
384
- msgstr "Autorizzazione plugin"
385
-
386
- #: .././admin/settings.php:869 .././admin/settings.php:1153
387
- #, php-format
388
- msgid ""
389
- "You should watch the %1$s and read this %2$s before proceeding to "
390
- "authorization. This plugin requires a properly configured Google Analytics "
391
- "account!"
392
- msgstr ""
393
- "Dovresti guardare %1$s e leggere questo %2$s prima di procedere con l&#39;"
394
- "autorizzazione. Questo plugin richiede un account di Google Analytics "
395
- "correttamente configurato!"
396
-
397
- #: .././admin/settings.php:869 .././admin/settings.php:1153
398
- msgid "video"
399
- msgstr "video"
400
-
401
- #: .././admin/settings.php:869 .././admin/settings.php:1153
402
- msgid "tutorial"
403
- msgstr "guida"
404
-
405
- #: .././admin/settings.php:874 .././admin/settings.php:1160
406
- msgid "use your own API Project credentials"
407
- msgstr ""
408
-
409
- #: .././admin/settings.php:878 .././admin/settings.php:1167
410
- msgid "API Key:"
411
- msgstr "Chiave API:"
412
-
413
- #: .././admin/settings.php:882 .././admin/settings.php:1171
414
- msgid "Client ID:"
415
- msgstr "ID Cliente:"
416
-
417
- #: .././admin/settings.php:886 .././admin/settings.php:1175
418
- msgid "Client Secret:"
419
- msgstr "Client Secret:"
420
-
421
- #: .././admin/settings.php:896 .././admin/settings.php:1185
422
- msgid "Clear Authorization"
423
- msgstr "Revoca autorizzazione"
424
-
425
- #: .././admin/settings.php:896 .././admin/settings.php:971
426
- #: .././admin/settings.php:1185 .././admin/settings.php:1260
427
- msgid "Clear Cache"
428
- msgstr "Elimina cache"
429
-
430
- #: .././admin/settings.php:896
431
- msgid "Reset Errors"
432
- msgstr "Azzera errori."
433
-
434
- #: .././admin/settings.php:902 .././admin/setup.php:80
435
- #: .././admin/setup.php:115
436
- msgid "General Settings"
437
- msgstr "Impostazioni generali"
438
-
439
- #: .././admin/settings.php:905
440
- msgid "Select View:"
441
- msgstr ""
442
-
443
- #: .././admin/settings.php:916 .././admin/settings.php:1213
444
- msgid "Property not found"
445
- msgstr "Propriet&agrave; non trovata"
446
-
447
- #: .././admin/settings.php:921
448
- msgid "Lock Selection"
449
- msgstr ""
450
-
451
- #: .././admin/settings.php:939
452
- msgid "Theme Color:"
453
- msgstr "Colore tema:"
454
-
455
- #: .././admin/settings.php:947 .././admin/settings.php:1222
456
- msgid "Automatic Updates"
457
- msgstr "Aggiornamenti automatici"
458
-
459
- #: .././admin/settings.php:957 .././admin/settings.php:1232
460
- msgid ""
461
- "automatic updates for minor versions (security and maintenance releases only)"
462
- msgstr ""
463
- "aggiornamenti automatici per le release minori (solo di manutenzione e "
464
- "sicurezza)"
465
-
466
- #: .././admin/settings.php:971 .././admin/settings.php:1260
467
- #: .././admin/widgets.php:42
468
- msgid "Authorize Plugin"
469
- msgstr "Autorizza plugin"
470
-
471
- #: .././admin/settings.php:1047
472
- msgid "Properties refreshed."
473
- msgstr "Propriet&agrave; aggiornate."
474
-
475
- #: .././admin/settings.php:1131
476
- msgid "Network Setup"
477
- msgstr "Configurazione della rete"
478
-
479
- #: .././admin/settings.php:1141
480
- msgid "use a single Google Analytics account for the entire network"
481
- msgstr ""
482
-
483
- #: .././admin/settings.php:1185
484
- msgid "Refresh Properties"
485
- msgstr "Aggiorna propriet&agrave;"
486
-
487
- #: .././admin/settings.php:1191
488
- msgid "Properties/Views Settings"
489
- msgstr "Propriet&agrave;/Mostra impostazioni"
490
-
491
- #: .././admin/settings.php:1246
492
- msgid "exclude Super Admin tracking for the entire network"
493
- msgstr ""
494
-
495
- #: .././admin/settings.php:1291
496
- msgid "Setup Tutorial & Demo"
497
- msgstr "Guida all&apos;installazione & Demo"
498
-
499
- #: .././admin/settings.php:1299
500
- msgid "Support & Reviews"
501
- msgstr "Supporto & Recensioni"
502
-
503
- #: .././admin/settings.php:1306
504
- #, php-format
505
- msgid "Plugin documentation and support on %s"
506
- msgstr "Documentazione del plugin e supporto su %s"
507
-
508
- #: .././admin/settings.php:1313
509
- #, php-format
510
- msgid "Your feedback and review are both important, %s!"
511
- msgstr "Il tuo feedback e la tua recensione sono entrambi importanti, %s!"
512
-
513
- #: .././admin/settings.php:1313
514
- msgid "rate this plugin"
515
- msgstr "vota questo plugin"
516
-
517
- #: .././admin/settings.php:1319
518
- msgid "Further Reading"
519
- msgstr "Approfondimenti"
520
-
521
- #: .././admin/settings.php:1326
522
- #, php-format
523
- msgid "%s by moving your website to HTTPS/SSL."
524
- msgstr "%s spostando il sito web a HTTPS/SSL."
525
-
526
- #: .././admin/settings.php:1326
527
- msgid "Improve search rankings"
528
- msgstr "Migliorare le classifiche di ricerca"
529
-
530
- #: .././admin/settings.php:1333
531
- #, php-format
532
- msgid "Other %s written by the same author"
533
- msgstr "Altri %s scritti dallo stesso autore"
534
-
535
- #: .././admin/settings.php:1333
536
- msgid "WordPress Plugins"
537
- msgstr "plugins per WordPress "
538
-
539
- #: .././admin/settings.php:1339
540
- msgid "Other Services"
541
- msgstr "Altri servizi"
542
-
543
- #: .././admin/settings.php:1346
544
- #, php-format
545
- msgid "Speed up your website and plug into a whole %s"
546
- msgstr "Accellera il tuo sito web ad un %s"
547
-
548
- #: .././admin/settings.php:1346
549
- msgid "new level of site speed"
550
- msgstr "nuovo livello di velocit&agrave;"
551
-
552
- #: .././admin/settings.php:1353
553
- #, php-format
554
- msgid "%s service with users tracking at IP level."
555
- msgstr "%s servizio con tracciamento degli utenti a livello IP."
556
-
557
- #: .././admin/settings.php:1353
558
- msgid "Web Analytics"
559
- msgstr "Web Analytics"
560
-
561
- #: .././admin/setup.php:76 .././admin/setup.php:111
562
- msgid "Google Analytics"
563
- msgstr "Google Analytics"
564
-
565
- #: .././admin/setup.php:84
566
- msgid "Backend Settings"
567
- msgstr "Impostazioni backend"
568
-
569
- #: .././admin/setup.php:88
570
- msgid "Frontend Settings"
571
- msgstr "Impostazioni frontend"
572
-
573
- #: .././admin/setup.php:92
574
- msgid "Tracking Code"
575
- msgstr "Monitoraggio"
576
-
577
- #: .././admin/setup.php:195 .././admin/widgets.php:126
578
- msgid "Today"
579
- msgstr "Oggi"
580
-
581
- #: .././admin/setup.php:196 .././admin/widgets.php:127
582
- msgid "Yesterday"
583
- msgstr "Ieri"
584
-
585
- #: .././admin/setup.php:197 .././admin/widgets.php:128
586
- #: .././front/widgets.php:74 .././front/widgets.php:182
587
- msgid "Last 7 Days"
588
- msgstr "Ultimi 7 giorni"
589
-
590
- #: .././admin/setup.php:198 .././admin/widgets.php:130
591
- #: .././front/widgets.php:80 .././front/widgets.php:184
592
- msgid "Last 30 Days"
593
- msgstr "Ultimi 30 giorni"
594
-
595
- #: .././admin/setup.php:199 .././admin/widgets.php:131
596
- msgid "Last 90 Days"
597
- msgstr "Ultimi 90 giorni"
598
-
599
- #: .././admin/setup.php:202 .././admin/setup.php:218
600
- msgid "Unique Views"
601
- msgstr "Visualizzazioni singole"
602
-
603
- #: .././admin/setup.php:203 .././admin/setup.php:219
604
- #: .././admin/widgets.php:136 .././admin/widgets.php:875
605
- #: .././tools/gapi.php:391
606
- msgid "Users"
607
- msgstr "Utenti"
608
-
609
- #: .././admin/setup.php:204 .././admin/widgets.php:137
610
- msgid "Organic"
611
- msgstr "Traffico da motorI di ricerca"
612
-
613
- #: .././admin/setup.php:205 .././admin/setup.php:220
614
- #: .././admin/widgets.php:138 .././admin/widgets.php:879
615
- #: .././tools/gapi.php:394
616
- msgid "Page Views"
617
- msgstr "Pagine viste"
618
-
619
- #: .././admin/setup.php:206 .././admin/setup.php:221
620
- #: .././admin/widgets.php:139 .././admin/widgets.php:883
621
- #: .././tools/gapi.php:397
622
- msgid "Bounce Rate"
623
- msgstr "Frequenza di rimbalzo"
624
-
625
- #: .././admin/setup.php:207 .././admin/widgets.php:140
626
- msgid "Location"
627
- msgstr "Posizione geografica"
628
-
629
- #: .././admin/setup.php:208 .././admin/widgets.php:142 .././tools/gapi.php:566
630
- msgid "Referrers"
631
- msgstr "Siti di origine del traffico"
632
-
633
- #: .././admin/setup.php:209 .././admin/widgets.php:143 .././tools/gapi.php:612
634
- #: .././tools/gapi.php:922
635
- msgid "Searches"
636
- msgstr "Ricerche"
637
-
638
- #: .././admin/setup.php:210 .././admin/widgets.php:144
639
- msgid "Traffic Details"
640
- msgstr "Dettagli traffico"
641
-
642
- #: .././admin/setup.php:213 .././admin/widgets.php:510
643
- #: .././admin/widgets.php:607 .././admin/widgets.php:805
644
- #: .././admin/widgets.php:917 .././front/item-reports.php:94
645
- msgid "A JavaScript Error is blocking plugin resources!"
646
- msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
647
-
648
- #: .././admin/setup.php:214 .././admin/widgets.php:713
649
- msgid "Traffic Mediums"
650
- msgstr "Origine del traffico in %"
651
-
652
- #: .././admin/setup.php:215 .././admin/widgets.php:729
653
- msgid "Visitor Type"
654
- msgstr "Tipo di visitatore"
655
-
656
- #: .././admin/setup.php:216 .././admin/widgets.php:745
657
- msgid "Social Networks"
658
- msgstr "Social Networks"
659
-
660
- #: .././admin/setup.php:217 .././admin/widgets.php:761
661
- msgid "Search Engines"
662
- msgstr "Motori di ricerca"
663
-
664
- #: .././admin/setup.php:222 .././admin/widgets.php:887
665
- msgid "Organic Search"
666
- msgstr "Ricerca organica"
667
-
668
- #: .././admin/setup.php:223 .././admin/widgets.php:891
669
- msgid "Pages/Session"
670
- msgstr "Pagine per sessione"
671
-
672
- #: .././admin/setup.php:224 .././admin/widgets.php:523
673
- #: .././admin/widgets.php:541 .././admin/widgets.php:620
674
- #: .././admin/widgets.php:638 .././admin/widgets.php:657
675
- #: .././admin/widgets.php:676 .././admin/widgets.php:696
676
- #: .././admin/widgets.php:819 .././admin/widgets.php:930
677
- #: .././admin/widgets.php:949 .././front/item-reports.php:106
678
- #: .././front/item-reports.php:125
679
- msgid "Invalid response, more details in JavaScript Console (F12)."
680
- msgstr ""
681
- "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
682
-
683
- #: .././admin/setup.php:225
684
- msgid "Not enough data collected"
685
- msgstr "Dati raccolti insufficienti"
686
-
687
- #: .././admin/setup.php:226 .././admin/widgets.php:528
688
- #: .././admin/widgets.php:546 .././admin/widgets.php:625
689
- #: .././admin/widgets.php:643 .././admin/widgets.php:662
690
- #: .././admin/widgets.php:681 .././admin/widgets.php:701
691
- #: .././admin/widgets.php:824 .././admin/widgets.php:827
692
- #: .././admin/widgets.php:935 .././admin/widgets.php:954
693
- #: .././front/item-reports.php:111 .././front/item-reports.php:130
694
- #: .././front/widgets.php:110
695
- msgid "This report is unavailable"
696
- msgstr "Questo rapporto non &egrave; disponibile"
697
-
698
- #: .././admin/setup.php:227
699
- msgid "report generated by"
700
- msgstr "rapporto generato da"
701
-
702
- #: .././admin/setup.php:267
703
- msgid "Settings"
704
- msgstr "Impostazioni"
705
-
706
- #: .././admin/widgets.php:33 .././front/widgets.php:22
707
- msgid "Google Analytics Dashboard"
708
- msgstr "Bacheca di Google Analytics"
709
-
710
- #: .././admin/widgets.php:42
711
- msgid "This plugin needs an authorization:"
712
- msgstr "Questo plugin necessita di un&#39;autorizzazione:"
713
-
714
- #: .././admin/widgets.php:76
715
- msgid "Something went wrong while retrieving profiles list."
716
- msgstr ""
717
- "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
718
-
719
- #: .././admin/widgets.php:76
720
- msgid "More details"
721
- msgstr "Altri dettagli"
722
-
723
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
724
- msgid "An admin should asign a default Google Analytics Profile."
725
- msgstr ""
726
- "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
727
-
728
- #: .././admin/widgets.php:89 .././admin/widgets.php:100
729
- msgid "Select Domain"
730
- msgstr "Seleziona dominio"
731
-
732
- #: .././admin/widgets.php:105
733
- msgid ""
734
- "Something went wrong while retrieving property data. You need to create and "
735
- "properly configure a Google Analytics account:"
736
- msgstr ""
737
- "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
738
- "necessario creare e configurare correttamente un account di Google Analytics:"
739
-
740
- #: .././admin/widgets.php:105
741
- msgid "Find out more!"
742
- msgstr "Per saperne di pi&ugrave;!"
743
-
744
- #: .././admin/widgets.php:125
745
- msgid "Real-Time"
746
- msgstr "In tempo reale"
747
-
748
- #: .././admin/widgets.php:129 .././front/widgets.php:77
749
- #: .././front/widgets.php:183
750
- msgid "Last 14 Days"
751
- msgstr "Ultimi 14 giorni"
752
-
753
- #: .././admin/widgets.php:135 .././admin/widgets.php:871
754
- #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
755
- #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
756
- #: .././tools/gapi.php:827 .././tools/gapi.php:923
757
- msgid "Sessions"
758
- msgstr "Sessioni"
759
-
760
- #: .././admin/widgets.php:141 .././tools/gapi.php:521
761
- msgid "Pages"
762
- msgstr "Pagine"
763
-
764
- #: .././admin/widgets.php:232 .././admin/widgets.php:472
765
- msgid "REFERRAL"
766
- msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
767
-
768
- #: .././admin/widgets.php:236 .././admin/widgets.php:473
769
- msgid "ORGANIC"
770
- msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
771
-
772
- #: .././admin/widgets.php:240 .././admin/widgets.php:360
773
- #: .././admin/widgets.php:474
774
- msgid "SOCIAL"
775
- msgstr "TRAFFICO DAI SOCIAL NETWORK"
776
-
777
- #: .././admin/widgets.php:244 .././admin/widgets.php:363
778
- #: .././admin/widgets.php:475
779
- msgid "CAMPAIGN"
780
- msgstr "CAMPAGNA"
781
-
782
- #: .././admin/widgets.php:248 .././admin/widgets.php:366
783
- #: .././admin/widgets.php:478
784
- msgid "DIRECT"
785
- msgstr "TRAFFICO DIRETTO"
786
-
787
- #: .././admin/widgets.php:252 .././admin/widgets.php:479
788
- msgid "NEW"
789
- msgstr "VISITATORI NUOVI"
790
-
791
- #: .././admin/widgets.php:354
792
- msgid "REFERRALS"
793
- msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
794
-
795
- #: .././admin/widgets.php:357
796
- msgid "KEYWORDS"
797
- msgstr "KEYWORDS"
798
-
799
- #: .././front/item-reports.php:140
800
- msgid "Views vs UniqueViews"
801
- msgstr "Visualizzazioni vs Visualizzazioni singole"
802
-
803
- #: .././front/item-reports.php:190
804
- msgid "Google Analytics Reports"
805
- msgstr "Rapporti di Google Analytics"
806
-
807
- #: .././front/widgets.php:23
808
- msgid "Will display your google analytics stats in a widget"
809
- msgstr "Visualizza le statistiche di Google Analytics in un widget"
810
-
811
- #: .././front/widgets.php:46 .././tools/gapi.php:827
812
- msgid "trend"
813
- msgstr "tendenza"
814
-
815
- #: .././front/widgets.php:133
816
- msgid "Period:"
817
- msgstr "Periodo:"
818
-
819
- #: .././front/widgets.php:133
820
- msgid "Sessions:"
821
- msgstr "Sessioni:"
822
-
823
- #: .././front/widgets.php:137
824
- msgid "generated by"
825
- msgstr "generato da"
826
-
827
- #: .././front/widgets.php:147
828
- msgid "Google Analytics Stats"
829
- msgstr "Statistiche di Google Analytics"
830
-
831
- #: .././front/widgets.php:154
832
- msgid "Title:"
833
- msgstr "Titolo:"
834
-
835
- #: .././front/widgets.php:161
836
- msgid "Display:"
837
- msgstr "Mostra:"
838
-
839
- #: .././front/widgets.php:165
840
- msgid "Chart & Totals"
841
- msgstr "Grafico & Totali"
842
-
843
- #: .././front/widgets.php:166
844
- msgid "Chart"
845
- msgstr "Grafico"
846
-
847
- #: .././front/widgets.php:167
848
- msgid "Totals"
849
- msgstr "Totali"
850
-
851
- #: .././front/widgets.php:171
852
- msgid "Anonymize stats:"
853
- msgstr "Anonimizza le statistiche:"
854
-
855
- #: .././front/widgets.php:178
856
- msgid "Stats for:"
857
- msgstr "Statistiche per:"
858
-
859
- #: .././front/widgets.php:188
860
- msgid "Give credits:"
861
- msgstr "Crediti:"
862
-
863
- #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
864
- msgid "This is not allowed, read the documentation!"
865
- msgstr ""
866
-
867
- #: .././tools/gapi.php:134
868
- msgid "Use this link to get your access code:"
869
- msgstr "Utilizza questo link per ottenere il codice di accesso:"
870
-
871
- #: .././tools/gapi.php:134
872
- msgid "Get Access Code"
873
- msgstr "Ottieni codice di accesso"
874
-
875
- #: .././tools/gapi.php:138 .././tools/gapi.php:139
876
- msgid "Use the red link to get your access code!"
877
- msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
878
-
879
- #: .././tools/gapi.php:138
880
- msgid "Access Code:"
881
- msgstr "Codice di accesso:"
882
-
883
- #: .././tools/gapi.php:145
884
- msgid "Save Access Code"
885
- msgstr "Salva codice di accesso"
886
-
887
- #: .././tools/gapi.php:400
888
- msgid "Organic Searches"
889
- msgstr "Ricerche organiche"
890
-
891
- #: .././tools/gapi.php:403
892
- msgid "Unique Page Views"
893
- msgstr "Visualizzazioni pagine singole"
894
-
895
- #: .././tools/gapi.php:411
896
- msgid "Hour"
897
- msgstr "Ora"
898
-
899
- #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:878
900
- msgid "Date"
901
- msgstr "Data"
902
-
903
- #: .././tools/gapi.php:522 .././tools/gapi.php:879
904
- msgid "Views"
905
- msgstr "Visualizzazioni"
906
-
907
- #: .././tools/gapi.php:640
908
- msgid "Countries"
909
- msgstr "Paesi"
910
-
911
- #: .././tools/gapi.php:650
912
- msgid "Cities from"
913
- msgstr "Paese: "
914
-
915
- #: .././tools/gapi.php:722
916
- msgid "Channels"
917
- msgstr "Canali"
918
-
919
- #: .././tools/gapi.php:785
920
- msgid "Type"
921
- msgstr "Tipo"
922
-
923
- #: .././tools/gapi.php:880
924
- msgid "UniqueViews"
925
- msgstr "Visualizzazioni uniche"
926
-
927
- #~ msgid "enable Switch Profile/View functionality"
928
- #~ msgstr "abilita Cambia profilo/Mostra funzionalit&agrave;"
929
-
930
- #~ msgid ""
931
- #~ "For errors and/or other issues please check %s and related tutorials."
932
- #~ msgstr ""
933
- #~ "Per errori e/o altri problemi controlla %s e leggi la guida relativa."
934
-
935
- #~ msgid "Select Domain:"
936
- #~ msgstr "Seleziona dominio:"
937
-
938
- #~ msgid "and/or hide all other domains"
939
- #~ msgstr "e/o nasconde tutti gli altri domini"
940
-
941
- #~ msgid "Hide Now"
942
- #~ msgstr "Nascondi ora"
943
-
944
- #~ msgid "find out more %s"
945
- #~ msgstr "per saperne di pi&ugrave; su %s"
946
-
947
- #~ msgid "about this feature"
948
- #~ msgstr "su questa funzionalit&agrave;"
949
-
950
- #~ msgid " show page sessions and users in frontend (after each article)"
951
- #~ msgstr ""
952
- #~ "mostra le sessioni della pagina e gli utenti nel frontend (dopo ogni "
953
- #~ "articolo)"
954
-
955
- #~ msgid " show page searches (after each article)"
956
- #~ msgstr " mostra le ricerche della pagina (dopo ogni articolo)"
957
-
958
- #~ msgid " anonymize IPs while tracking"
959
- #~ msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
960
-
961
- #~ msgid " enable remarketing, demographics and interests reports"
962
- #~ msgstr " abilita remarketing e rapporti demografici e sugli interessi"
963
-
964
- #~ msgid " track downloads, mailto and outbound links"
965
- #~ msgstr "monitora downloads, mailto e link in uscita"
966
-
967
- #~ msgid " track affiliate links matching this regex"
968
- #~ msgstr ""
969
- #~ " monitora collegamenti associati corrispondenti a queste abbreviazioni"
970
-
971
- #~ msgid " track fragment identifiers, hashmarks (#) in URI links"
972
- #~ msgstr ""
973
- #~ " monitora gli identificatori di frammentoe gli hashmarks (#) nei "
974
- #~ "collegamenti URI"
975
-
976
- #~ msgid " exclude events from bounce-rate calculation"
977
- #~ msgstr " escludi gli eventi dal calcolo del bounce-rate"
978
-
979
- #~ msgid " enable enhanced link attribution"
980
- #~ msgstr "utilizza l&#39;attribuzione avanzata dei link"
981
-
982
- #~ msgid " enable AdSense account linking"
983
- #~ msgstr " abilita AdSense account linking"
984
-
985
- #~ msgid " enable cross domain tracking"
986
- #~ msgstr " abilita cross domanin tracking"
987
-
988
- #~ msgid " use your own API Project credentials"
989
- #~ msgstr "utilizza le proprie credenziali API"
990
-
991
- #~ msgid " use a single Google Analytics account for the entire network"
992
- #~ msgstr " utilizza un unico account Google Analytics per l&#39;intera rete"
993
-
994
- #~ msgid " exclude Super Admin tracking for the entire network"
995
- #~ msgstr " esclude il monitoraggio del Super Amministratore per tutta la rete"
996
-
997
- #~ msgid "or"
998
- #~ msgstr "o"
999
-
1000
- #~ msgid "Tracking Options"
1001
- #~ msgstr "Opzioni di monitoraggio"
1002
-
1003
- #~ msgid "to"
1004
- #~ msgstr "a"
1005
-
1006
- #~ msgid "and related tutorials"
1007
- #~ msgstr "ed i tutorial relativi"
1008
-
1009
- #~ msgid "You should watch the"
1010
- #~ msgstr "Dovresti guardare il"
1011
-
1012
- #~ msgid "and read this"
1013
- #~ msgstr "e leggere questa"
1014
-
1015
- #~ msgid "Other"
1016
- #~ msgstr "Altri"
1017
-
1018
- #~ msgid ""
1019
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1020
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1021
- #~ msgstr ""
1022
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1023
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1024
-
1025
- #~ msgid "Google Analytics Dashboard Settings"
1026
- #~ msgstr "Impostazioni Backend di Google Analytics"
1027
-
1028
- #~ msgid "A new frontend widget is available! To enable it, go to"
1029
- #~ msgstr ""
1030
- #~ "&Egrave; disponibile un nuovo widget per il frontend. Per attivarlo, vai "
1031
- #~ "a"
1032
-
1033
- #~ msgid "Appearance -> Widgets"
1034
- #~ msgstr "Aspetto -> Widgets"
1035
-
1036
- #~ msgid "and look for Google Analytics Dashboard."
1037
- #~ msgstr "e cerca Bacheca di Google Analytics."
1038
-
1039
- #~ msgid "Something went wrong, you need to"
1040
- #~ msgstr "Qualcosa &egrave; andato male, devi"
1041
-
1042
- #~ msgid "or properly configure your"
1043
- #~ msgstr "o configura correttamente il tuo"
1044
-
1045
- #~ msgid "Google Analytics account"
1046
- #~ msgstr "Account di Google Analytics"
1047
-
1048
- #~ msgid "(find out more"
1049
- #~ msgstr "(per saperne di pi&ugrave;"
1050
-
1051
- #~ msgid ")"
1052
- #~ msgstr ")"
1053
-
1054
- #~ msgid "Additional Stats & Charts"
1055
- #~ msgstr "Ulteriori statistiche e grafici"
1056
-
1057
- #~ msgid " show Geo Map chart for sessions"
1058
- #~ msgstr "mostra il grafico per le sessioni"
1059
-
1060
- #~ msgid "Target Geo Map to region:"
1061
- #~ msgstr "Cartina delle visite per il paese:"
1062
-
1063
- #~ msgid "and render top"
1064
- #~ msgstr "con"
1065
-
1066
- #~ msgid "cities (find out more"
1067
- #~ msgstr "citt&agrave; (per saperne di più"
1068
-
1069
- #~ msgid " show traffic overview"
1070
- #~ msgstr " mostra la panoramica sul traffico"
1071
-
1072
- #~ msgid " show top pages"
1073
- #~ msgstr " mostra le principali pagine attive"
1074
-
1075
- #~ msgid " show top referrers"
1076
- #~ msgstr " mostra i siti principali di origine del traffico"
1077
-
1078
- #~ msgid " show top searches"
1079
- #~ msgstr " mostra le ricerche principali"
1080
-
1081
- #~ msgid "Dumping log data."
1082
- #~ msgstr "Dumping dati di log."
1083
-
1084
- #~ msgid ""
1085
- #~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
1086
- #~ "CURL!"
1087
- #~ msgstr ""
1088
- #~ "PHP CURL &egrave; necessario. Chiedete al vostro fornitore di hosting per "
1089
- #~ "installare/attivare PHP CURL!"
1090
-
1091
- #~ msgid ""
1092
- #~ "Something went wrong. Please check the Debugging Data section for "
1093
- #~ "possible errors"
1094
- #~ msgstr ""
1095
- #~ "Qualcosa &egrave; andato male. Controlla la sezione dati di debug per "
1096
- #~ "possibili errori"
1097
-
1098
- #~ msgid "Debugging Data"
1099
- #~ msgstr "Debug dei dati"
1100
-
1101
- #~ msgid "Anonimize chart&#39;s stats:"
1102
- #~ msgstr "Rendi anonimo il grafico delle statistiche:"
1103
-
1104
- #~ msgid "Top Searches"
1105
- #~ msgstr "Ricerche principali"
1106
-
1107
- #~ msgid "Error Log"
1108
- #~ msgstr "Log errori"
1109
-
1110
- #~ msgid ""
1111
- #~ "No stats available. Please check the Debugging Data section for possible "
1112
- #~ "errors"
1113
- #~ msgstr ""
1114
- #~ "Nessuna statistica disponibile. Controlla la sezione dati di debug per "
1115
- #~ "possibili errori"
1116
-
1117
- #~ msgid "Country/City"
1118
- #~ msgstr "Paese/Citt&agrave;"
1119
-
1120
- #~ msgid "Source"
1121
- #~ msgstr "Sorgente"
1122
-
1123
- #~ msgid "Traffic Sources"
1124
- #~ msgstr "Sorgenti di traffico"
1125
-
1126
- #~ msgid "New vs. Returning"
1127
- #~ msgstr "Visitatori nuovi contro Visitatori di ritorno"
1128
-
1129
- #~ msgid "Top Pages"
1130
- #~ msgstr "Principali pagine attive"
1131
-
1132
- #~ msgid "Top Referrers"
1133
- #~ msgstr "Referral principali"
1134
-
1135
- #~ msgid ""
1136
- #~ "This is a beta feature and is only available when using my Developer Key! "
1137
- #~ "("
1138
- #~ msgstr ""
1139
- #~ "Questa &egrave; una caratteristica beta ed &egrave; disponibile solo "
1140
- #~ "quando si utilizza il Developer Key! ("
1141
-
1142
- #~ msgid "more about this feature"
1143
- #~ msgstr "pi&ugrave; informazioni su questa funzione"
1144
-
1145
- #~ msgid "RETURN"
1146
- #~ msgstr "VISITATORI DI RITORNO"
1147
-
1148
- #~ msgid "Sessions from "
1149
- #~ msgstr "Sessioni da: "
1150
-
1151
- #~ msgid "Sessions by Country"
1152
- #~ msgstr "Sessioni per paese"
1153
-
1154
- #~ msgid "Traffic Overview"
1155
- #~ msgstr "Panoramica traffico"
1156
-
1157
- #~ msgid "Visits"
1158
- #~ msgstr "Visite"
1159
-
1160
- #~ msgid "Visitors"
1161
- #~ msgstr "Visitatori"
1162
-
1163
- #~ msgid "Visits:"
1164
- #~ msgstr "Visite:"
1165
-
1166
- #~ msgid "Visitors:"
1167
- #~ msgstr "Visitatori:"
1168
-
1169
- #~ msgid "Page Views:"
1170
- #~ msgstr "Pagine viste:"
1171
-
1172
- #~ msgid "Bounce Rate:"
1173
- #~ msgstr "Frequenza di rimbalzo:"
1174
-
1175
- #~ msgid "Organic Search:"
1176
- #~ msgstr "Ricerca organica:"
1177
-
1178
- #~ msgid "Pages per Visit:"
1179
- #~ msgstr "Pagine per visita:"
1180
-
1181
- #~ msgid "Visits from "
1182
- #~ msgstr "Visite da "
1183
-
1184
- #~ msgid "Visits by Country"
1185
- #~ msgstr "Visite per paese"
1186
-
1187
- #~ msgid " show page visits and visitors in frontend (after each article)"
1188
- #~ msgstr ""
1189
- #~ " mostra le pagine visitate e visitatori nel frontend (dopo ogni articolo)"
1190
-
1191
- #~ msgid " show Geo Map chart for visits"
1192
- #~ msgstr " mostra la cartina geografica delle visite"
1193
-
1194
- #~ msgid "You can find support on"
1195
- #~ msgstr "Puoi trovare supporto su"
1196
-
1197
- #~ msgid "DeConf.com"
1198
- #~ msgstr "DeConf.com"
1199
-
1200
- #~ msgid "service with visitors tracking at IP level."
1201
- #~ msgstr "servizio con monitoraggio dei visitatori a livello IP."
1202
-
1203
- #~ msgid "Total Visits:"
1204
- #~ msgstr "Totale visite:"
1205
-
1206
- #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1207
- #~ msgstr "CURL è necessaria. Si prega di installare/abilitare CURL!"
1208
-
1209
- #~ msgid "Options saved."
1210
- #~ msgstr "Opzioni salvate."
1211
-
1212
- #~ msgid "Show stats to: "
1213
- #~ msgstr "Mostra statistiche:"
1214
-
1215
- #~ msgid "Update Options"
1216
- #~ msgstr "Aggiorna opzioni"
1217
-
1218
- #~ msgid "Tracking Options: "
1219
- #~ msgstr "Opzioni monitoraggio: "
1220
-
1221
- #~ msgid "Tracking Type: "
1222
- #~ msgstr "Tipo di monitoraggio:"
1223
-
1224
- #, fuzzy
1225
- #~ msgid "User Type: "
1226
- #~ msgstr "Tipo di monitoraggio:"
1227
-
1228
- #~ msgid "Exclude tracking for: "
1229
- #~ msgstr "Escludi monitoraggio per:"
1230
-
1231
- #~ msgid "Select Domain: "
1232
- #~ msgstr "Seleziona dominio:"
1233
-
1234
- #~ msgid "Theme Color: "
1235
- #~ msgstr "Colote tema:"
1236
-
1237
- #~ msgid "&#39; trend"
1238
- #~ msgstr "&#39; tendenza"
1239
-
1240
- #~ msgid "DeConf Help Center"
1241
- #~ msgstr "DeConf Help Center"
1242
-
1243
- #~ msgid "Custom Code"
1244
- #~ msgstr "Codice personalizzato"
1245
-
1246
- #~ msgid "Your Tracking Code:"
1247
- #~ msgstr "Il tuo codice di monitoraggio:"
 
 
 
 
 
 
 
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-04-27 19:26+0200\n"
7
+ "PO-Revision-Date: 2015-04-28 10:09+0100\n"
8
+ "Last-Translator: Leo The Strategist <leoxleox73@gmail.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.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:67
22
+ msgid "Analytics"
23
+ msgstr "Analytics"
24
+
25
+ #: .././admin/settings.php:94 .././admin/settings.php:202
26
+ #: .././admin/settings.php:338 .././admin/settings.php:820
27
+ #: .././admin/settings.php:1089
28
+ msgid "Settings saved."
29
+ msgstr "Impostazioni salvate."
30
+
31
+ #: .././admin/settings.php:96 .././admin/settings.php:204
32
+ #: .././admin/settings.php:340 .././admin/settings.php:797
33
+ #: .././admin/settings.php:807 .././admin/settings.php:816
34
+ #: .././admin/settings.php:822 .././admin/settings.php:834
35
+ #: .././admin/settings.php:1050 .././admin/settings.php:1075
36
+ #: .././admin/settings.php:1085 .././admin/settings.php:1091
37
+ #: .././admin/settings.php:1103
38
+ msgid "Cheating Huh?"
39
+ msgstr "Tentativo di frode?"
40
+
41
+ #: .././admin/settings.php:100 .././admin/settings.php:208
42
+ #: .././admin/settings.php:344 .././admin/settings.php:659
43
+ #: .././admin/settings.php:848 .././admin/settings.php:1116
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:100 .././admin/settings.php:208
49
+ #: .././admin/settings.php:344 .././admin/settings.php:659
50
+ #: .././admin/settings.php:848 .././admin/settings.php:1116
51
+ #: .././admin/setup.php:96 .././admin/setup.php:119
52
+ msgid "Errors & Debug"
53
+ msgstr "Errori & Debug"
54
+
55
+ #: .././admin/settings.php:100 .././admin/settings.php:208
56
+ #: .././admin/settings.php:344 .././admin/settings.php:659
57
+ #: .././admin/settings.php:848 .././admin/settings.php:1116
58
+ msgid "authorize the plugin"
59
+ msgstr "autorizza il plugin"
60
+
61
+ #: .././admin/settings.php:105
62
+ msgid "Google Analytics Frontend Settings"
63
+ msgstr "Impostazioni Frontend di Google Analytics "
64
+
65
+ #: .././admin/settings.php:116
66
+ #, php-format
67
+ msgid "Read %s for more information about Frontend Features and Options."
68
+ msgstr ""
69
+ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalit&agrave; del "
70
+ "frontend."
71
+
72
+ #: .././admin/settings.php:116 .././admin/settings.php:224
73
+ #: .././admin/settings.php:369 .././admin/settings.php:682
74
+ msgid "this documentation page"
75
+ msgstr "la pagina della documentazione del plugin"
76
+
77
+ #: .././admin/settings.php:120 .././admin/settings.php:228
78
+ msgid "Permissions"
79
+ msgstr "Permessi"
80
+
81
+ #: .././admin/settings.php:123 .././admin/settings.php:231
82
+ msgid "Show stats to:"
83
+ msgstr "Mostra statistiche a:"
84
+
85
+ #: .././admin/settings.php:162
86
+ msgid "show page sessions and users in frontend (after each article)"
87
+ msgstr ""
88
+ "mostra la pagina delle sessioni e degli utenti nel frontend (dopo ogni "
89
+ "articolo)"
90
+
91
+ #: .././admin/settings.php:173
92
+ msgid "show page searches (after each article)"
93
+ msgstr "mostra la pagina delle ricerche (dopo ogni articolo)"
94
+
95
+ #: .././admin/settings.php:180 .././admin/settings.php:318
96
+ #: .././admin/settings.php:617 .././admin/settings.php:965
97
+ #: .././admin/settings.php:1253
98
+ msgid "Save Changes"
99
+ msgstr "Salva le modifiche"
100
+
101
+ #: .././admin/settings.php:213
102
+ msgid "Google Analytics Backend Settings"
103
+ msgstr "Impostazioni Backend di Google Analytics"
104
+
105
+ #: .././admin/settings.php:224
106
+ #, php-format
107
+ msgid "Read %s for more information about Backend Features and Options."
108
+ msgstr ""
109
+ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalit&agrave; del "
110
+ "backend."
111
+
112
+ #: .././admin/settings.php:272
113
+ msgid "enable Switch View functionality"
114
+ msgstr "abilita la funzionalit&agrave; Visualizza"
115
+
116
+ #: .././admin/settings.php:283
117
+ msgid "enable reports on Posts List and Pages List"
118
+ msgstr "abilita rapporti nella lista pagine e post"
119
+
120
+ #: .././admin/settings.php:294
121
+ msgid "enable the main Dashboard Widget"
122
+ msgstr "abilita il widget principale nella bacheca"
123
+
124
+ #: .././admin/settings.php:298
125
+ msgid "Real-Time Settings"
126
+ msgstr "Impostazioni In tempo reale"
127
+
128
+ #: .././admin/settings.php:301
129
+ msgid "Maximum number of pages to display on real-time tab:"
130
+ msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
131
+
132
+ #: .././admin/settings.php:306
133
+ msgid "Location Settings"
134
+ msgstr "Impostazioni posizione geografica"
135
+
136
+ #: .././admin/settings.php:310
137
+ msgid "Target Geo Map to country:"
138
+ msgstr "Cartina geografica per il paese:"
139
+
140
+ #: .././admin/settings.php:347
141
+ msgid ""
142
+ "The tracking component is disabled. You should set <strong>Tracking Options</"
143
+ "strong> to <strong>Enabled</strong>"
144
+ msgstr ""
145
+ "Il componente di monitoraggio &egrave; disabilitato. &Egrave; necessario "
146
+ "impostare il <strong>Monitoraggio</strong> su <strong>Abilitato</strong>"
147
+
148
+ #: .././admin/settings.php:352
149
+ msgid "Google Analytics Tracking Code"
150
+ msgstr "Impostazioni Monitoraggio di Google Analytics "
151
+
152
+ #: .././admin/settings.php:361
153
+ msgid "Basic Settings"
154
+ msgstr "Impostazioni di base"
155
+
156
+ #: .././admin/settings.php:362 .././admin/settings.php:429
157
+ msgid "Events Tracking"
158
+ msgstr "Impostazioni eventi"
159
+
160
+ #: .././admin/settings.php:363 .././admin/settings.php:477
161
+ msgid "Custom Definitions"
162
+ msgstr "Impostazioni definizioni personalizzate"
163
+
164
+ #: .././admin/settings.php:364 .././admin/settings.php:575
165
+ #: .././admin/settings.php:1236
166
+ msgid "Exclude Tracking"
167
+ msgstr "Escludi monitoraggio"
168
+
169
+ #: .././admin/settings.php:365
170
+ msgid "Advanced Settings"
171
+ msgstr "Impostazioni avanzate"
172
+
173
+ #: .././admin/settings.php:369
174
+ #, php-format
175
+ msgid "For more information about Tracking Options read %s."
176
+ msgstr "Per ulteriori informazioni sulle opzioni di monitoraggio leggi %s."
177
+
178
+ #: .././admin/settings.php:374
179
+ msgid "Tracking Settings"
180
+ msgstr "Stato del monitoraggio"
181
+
182
+ #: .././admin/settings.php:377
183
+ msgid "Tracking Options:"
184
+ msgstr "Monitoraggio:"
185
+
186
+ #: .././admin/settings.php:379
187
+ msgid "Disabled"
188
+ msgstr "Disabilitato"
189
+
190
+ #: .././admin/settings.php:380
191
+ msgid "Enabled"
192
+ msgstr "Abilitato"
193
+
194
+ #: .././admin/settings.php:388 .././admin/settings.php:912
195
+ #: .././admin/settings.php:933 .././admin/settings.php:1209
196
+ #: .././admin/widgets.php:71
197
+ msgid "View Name:"
198
+ msgstr "Mostra nome:"
199
+
200
+ #: .././admin/settings.php:388 .././admin/settings.php:933
201
+ msgid "Tracking ID:"
202
+ msgstr "ID monitoraggio:"
203
+
204
+ #: .././admin/settings.php:388 .././admin/settings.php:933
205
+ msgid "Default URL:"
206
+ msgstr "URL predefinito:"
207
+
208
+ #: .././admin/settings.php:388 .././admin/settings.php:933
209
+ msgid "Time Zone:"
210
+ msgstr "Fuso orario:"
211
+
212
+ #: .././admin/settings.php:393
213
+ msgid "Basic Tracking"
214
+ msgstr "Impostazioni di base"
215
+
216
+ #: .././admin/settings.php:396
217
+ msgid "Tracking Type:"
218
+ msgstr "Tipo:"
219
+
220
+ #: .././admin/settings.php:398
221
+ msgid "Classic Analytics"
222
+ msgstr "Classic Analytics"
223
+
224
+ #: .././admin/settings.php:399
225
+ msgid "Universal Analytics"
226
+ msgstr "Universal Analytics"
227
+
228
+ #: .././admin/settings.php:410
229
+ msgid "anonymize IPs while tracking"
230
+ msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
231
+
232
+ #: .././admin/settings.php:421
233
+ msgid "enable remarketing, demographics and interests reports"
234
+ msgstr "abilita il remarketing e i rapporti demografici e sugli interessi."
235
+
236
+ #: .././admin/settings.php:439
237
+ msgid "track downloads, mailto and outbound links"
238
+ msgstr "monitora i download, le e-mail e i link in uscita"
239
+
240
+ #: .././admin/settings.php:443
241
+ msgid "Downloads Regex:"
242
+ msgstr "Abbreviazioni downloads:"
243
+
244
+ #: .././admin/settings.php:454
245
+ msgid "track affiliate links matching this regex"
246
+ msgstr "monitora i link di affiliazione corrispondenti a aquesto regex"
247
+
248
+ #: .././admin/settings.php:458
249
+ msgid "Affiliates Regex:"
250
+ msgstr "Abbreviazioni associate:"
251
+
252
+ #: .././admin/settings.php:469
253
+ msgid "track fragment identifiers, hashmarks (#) in URI links"
254
+ msgstr ""
255
+ "monitora gli identificatori di frammento, hashmarks (#) nei collegamenti URI"
256
+
257
+ #: .././admin/settings.php:480
258
+ msgid "Authors:"
259
+ msgstr "Autori:"
260
+
261
+ #: .././admin/settings.php:488
262
+ msgid "Publication Year:"
263
+ msgstr "Anno di pubblicazione:"
264
+
265
+ #: .././admin/settings.php:496
266
+ msgid "Categories:"
267
+ msgstr "Categorie:"
268
+
269
+ #: .././admin/settings.php:504
270
+ msgid "User Type:"
271
+ msgstr "Tipo di utente:"
272
+
273
+ #: .././admin/settings.php:516
274
+ msgid "Advanced Tracking"
275
+ msgstr "Impostazioni avanzate"
276
+
277
+ #: .././admin/settings.php:519
278
+ msgid "Page Speed SR:"
279
+ msgstr "Page Speed Sample Rate:"
280
+
281
+ #: .././admin/settings.php:530
282
+ msgid "exclude events from bounce-rate calculation"
283
+ msgstr "escludi gli eventi nel calcolo della frequenza di rimbalzo"
284
+
285
+ #: .././admin/settings.php:541
286
+ msgid "enable enhanced link attribution"
287
+ msgstr "abilita l&apos;attribuzione avanzata dei link"
288
+
289
+ #: .././admin/settings.php:552
290
+ msgid "enable AdSense account linking"
291
+ msgstr "abilita AdSense account linking"
292
+
293
+ #: .././admin/settings.php:563
294
+ msgid "enable cross domain tracking"
295
+ msgstr "abilita il monitoraggio cross domain"
296
+
297
+ #: .././admin/settings.php:567
298
+ msgid "Cross Domains:"
299
+ msgstr " Cross Domains:"
300
+
301
+ #: .././admin/settings.php:578
302
+ msgid "Exclude tracking for:"
303
+ msgstr "Escludi per:"
304
+
305
+ #: .././admin/settings.php:663
306
+ msgid "Google Analytics Errors & Debugging"
307
+ msgstr "Errori & Debugging di Google Analytics"
308
+
309
+ #: .././admin/settings.php:673
310
+ msgid "Errors & Details"
311
+ msgstr "Errori & Dettagli"
312
+
313
+ #: .././admin/settings.php:674
314
+ msgid "Plugin Settings"
315
+ msgstr "Impostazioni plugin"
316
+
317
+ #: .././admin/settings.php:682
318
+ #, php-format
319
+ msgid "For errors and/or other issues check %s and related resources."
320
+ msgstr "Per errori e/o altri problemi controlla %s e le risorse relative."
321
+
322
+ #: .././admin/settings.php:687
323
+ msgid "Last Error detected"
324
+ msgstr "Ultimo errore rilevato"
325
+
326
+ #: .././admin/settings.php:693 .././admin/settings.php:706
327
+ msgid "None"
328
+ msgstr "Nessuno"
329
+
330
+ #: .././admin/settings.php:700
331
+ msgid "Error Details"
332
+ msgstr "Dettagli errore"
333
+
334
+ #: .././admin/settings.php:720
335
+ msgid "Plugin Configuration"
336
+ msgstr "Configurazione plugin"
337
+
338
+ #: .././admin/settings.php:742 .././admin/settings.php:1000
339
+ msgid ""
340
+ "Loading the required libraries. If this results in a blank screen or a fatal "
341
+ "error, try this solution:"
342
+ msgstr ""
343
+ "Caricamento delle librerie richieste. Se viene restituita una schermata "
344
+ "vuota o si verifica un errore fatale, provare questa soluzione:"
345
+
346
+ #: .././admin/settings.php:742
347
+ msgid "Library conflicts between WordPress plugins"
348
+ msgstr "Conflitti tra le librerie dei plugins di WordPress"
349
+
350
+ #: .././admin/settings.php:757 .././admin/settings.php:1017
351
+ msgid "Plugin authorization succeeded."
352
+ msgstr "Autorizzazione plugin riuscita."
353
+
354
+ #: .././admin/settings.php:772 .././admin/settings.php:1041
355
+ msgid ""
356
+ "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
357
+ "(UA-XXXXX-X). Try again, and use the red link to get your access code"
358
+ msgstr ""
359
+ "Il codice di accesso <strong>NON</strong> &egrave; il <strong>Tracking ID</"
360
+ "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
361
+ "il codice di accesso"
362
+
363
+ #: .././admin/settings.php:795 .././admin/settings.php:1073
364
+ msgid "Cleared Cache."
365
+ msgstr "Cache eliminata."
366
+
367
+ #: .././admin/settings.php:804 .././admin/settings.php:1082
368
+ msgid "Token Reseted and Revoked."
369
+ msgstr "Token azzerato e revocato."
370
+
371
+ #: .././admin/settings.php:814
372
+ msgid "All errors reseted."
373
+ msgstr "Tutti gli errori azzerati."
374
+
375
+ #: .././admin/settings.php:827 .././admin/settings.php:1096
376
+ msgid "All other domains/properties were removed."
377
+ msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
378
+
379
+ #: .././admin/settings.php:839 .././admin/settings.php:1108
380
+ msgid "Google Analytics Settings"
381
+ msgstr "Impostazioni di Google Analytics"
382
+
383
+ #: .././admin/settings.php:853 .././admin/settings.php:1121
384
+ msgid "Use the red link (see below) to generate and get your access code!"
385
+ msgstr ""
386
+ "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
387
+ "di accesso!"
388
+
389
+ #: .././admin/settings.php:864 .././admin/settings.php:1149
390
+ msgid "Plugin Authorization"
391
+ msgstr "Autorizzazione plugin"
392
+
393
+ #: .././admin/settings.php:869 .././admin/settings.php:1153
394
+ #, php-format
395
+ msgid ""
396
+ "You should watch the %1$s and read this %2$s before proceeding to "
397
+ "authorization. This plugin requires a properly configured Google Analytics "
398
+ "account!"
399
+ msgstr ""
400
+ "Dovresti guardare %1$s e leggere questo %2$s prima di procedere con l&#39;"
401
+ "autorizzazione. Questo plugin richiede un account di Google Analytics "
402
+ "correttamente configurato!"
403
+
404
+ #: .././admin/settings.php:869 .././admin/settings.php:1153
405
+ msgid "video"
406
+ msgstr "video"
407
+
408
+ #: .././admin/settings.php:869 .././admin/settings.php:1153
409
+ msgid "tutorial"
410
+ msgstr "guida"
411
+
412
+ #: .././admin/settings.php:874 .././admin/settings.php:1160
413
+ msgid "use your own API Project credentials"
414
+ msgstr "utilizza le tue credenziali API"
415
+
416
+ #: .././admin/settings.php:878 .././admin/settings.php:1167
417
+ msgid "API Key:"
418
+ msgstr "Chiave API:"
419
+
420
+ #: .././admin/settings.php:882 .././admin/settings.php:1171
421
+ msgid "Client ID:"
422
+ msgstr "ID Cliente:"
423
+
424
+ #: .././admin/settings.php:886 .././admin/settings.php:1175
425
+ msgid "Client Secret:"
426
+ msgstr "Client Secret:"
427
+
428
+ #: .././admin/settings.php:896 .././admin/settings.php:1185
429
+ msgid "Clear Authorization"
430
+ msgstr "Revoca autorizzazione"
431
+
432
+ #: .././admin/settings.php:896 .././admin/settings.php:971
433
+ #: .././admin/settings.php:1185 .././admin/settings.php:1260
434
+ msgid "Clear Cache"
435
+ msgstr "Elimina cache"
436
+
437
+ #: .././admin/settings.php:896
438
+ msgid "Reset Errors"
439
+ msgstr "Azzera errori."
440
+
441
+ #: .././admin/settings.php:902 .././admin/setup.php:80
442
+ #: .././admin/setup.php:115
443
+ msgid "General Settings"
444
+ msgstr "Impostazioni generali"
445
+
446
+ #: .././admin/settings.php:905
447
+ msgid "Select View:"
448
+ msgstr "Seleziona vista:"
449
+
450
+ #: .././admin/settings.php:916 .././admin/settings.php:1213
451
+ msgid "Property not found"
452
+ msgstr "Propriet&agrave; non trovata"
453
+
454
+ #: .././admin/settings.php:921
455
+ msgid "Lock Selection"
456
+ msgstr "Blocca selezione"
457
+
458
+ #: .././admin/settings.php:939
459
+ msgid "Theme Color:"
460
+ msgstr "Colore tema:"
461
+
462
+ #: .././admin/settings.php:947 .././admin/settings.php:1222
463
+ msgid "Automatic Updates"
464
+ msgstr "Aggiornamenti automatici"
465
+
466
+ #: .././admin/settings.php:957 .././admin/settings.php:1232
467
+ msgid ""
468
+ "automatic updates for minor versions (security and maintenance releases only)"
469
+ msgstr ""
470
+ "aggiornamenti automatici per le release minori (solo di manutenzione e "
471
+ "sicurezza)"
472
+
473
+ #: .././admin/settings.php:971 .././admin/settings.php:1260
474
+ #: .././admin/widgets.php:42
475
+ msgid "Authorize Plugin"
476
+ msgstr "Autorizza plugin"
477
+
478
+ #: .././admin/settings.php:1047
479
+ msgid "Properties refreshed."
480
+ msgstr "Propriet&agrave; aggiornate."
481
+
482
+ #: .././admin/settings.php:1131
483
+ msgid "Network Setup"
484
+ msgstr "Configurazione della rete"
485
+
486
+ #: .././admin/settings.php:1141
487
+ msgid "use a single Google Analytics account for the entire network"
488
+ msgstr "utilizza un unico account di Google Analytics per tutta la rete"
489
+
490
+ #: .././admin/settings.php:1185
491
+ msgid "Refresh Properties"
492
+ msgstr "Aggiorna propriet&agrave;"
493
+
494
+ #: .././admin/settings.php:1191
495
+ msgid "Properties/Views Settings"
496
+ msgstr "Propriet&agrave;/Mostra impostazioni"
497
+
498
+ #: .././admin/settings.php:1246
499
+ msgid "exclude Super Admin tracking for the entire network"
500
+ msgstr "escludi il monitoraggio dell&apos;amministratore su tutta la rete"
501
+
502
+ #: .././admin/settings.php:1291
503
+ msgid "Setup Tutorial & Demo"
504
+ msgstr "Guida all&apos;installazione & Demo"
505
+
506
+ #: .././admin/settings.php:1299
507
+ msgid "Support & Reviews"
508
+ msgstr "Supporto & Recensioni"
509
+
510
+ #: .././admin/settings.php:1306
511
+ #, php-format
512
+ msgid "Plugin documentation and support on %s"
513
+ msgstr "Documentazione del plugin e supporto su %s"
514
+
515
+ #: .././admin/settings.php:1313
516
+ #, php-format
517
+ msgid "Your feedback and review are both important, %s!"
518
+ msgstr "Il tuo feedback e la tua recensione sono entrambi importanti, %s!"
519
+
520
+ #: .././admin/settings.php:1313
521
+ msgid "rate this plugin"
522
+ msgstr "vota questo plugin"
523
+
524
+ #: .././admin/settings.php:1319
525
+ msgid "Further Reading"
526
+ msgstr "Approfondimenti"
527
+
528
+ #: .././admin/settings.php:1326
529
+ #, php-format
530
+ msgid "%s by moving your website to HTTPS/SSL."
531
+ msgstr "%s spostando il sito web a HTTPS/SSL."
532
+
533
+ #: .././admin/settings.php:1326
534
+ msgid "Improve search rankings"
535
+ msgstr "Migliorare le classifiche di ricerca"
536
+
537
+ #: .././admin/settings.php:1333
538
+ #, php-format
539
+ msgid "Other %s written by the same author"
540
+ msgstr "Altri %s scritti dallo stesso autore"
541
+
542
+ #: .././admin/settings.php:1333
543
+ msgid "WordPress Plugins"
544
+ msgstr "plugins per WordPress "
545
+
546
+ #: .././admin/settings.php:1339
547
+ msgid "Other Services"
548
+ msgstr "Altri servizi"
549
+
550
+ #: .././admin/settings.php:1346
551
+ #, php-format
552
+ msgid "Speed up your website and plug into a whole %s"
553
+ msgstr "Accellera il tuo sito web ad un %s"
554
+
555
+ #: .././admin/settings.php:1346
556
+ msgid "new level of site speed"
557
+ msgstr "nuovo livello di velocit&agrave;"
558
+
559
+ #: .././admin/settings.php:1353
560
+ #, php-format
561
+ msgid "%s service with users tracking at IP level."
562
+ msgstr "%s servizio con tracciamento degli utenti a livello IP."
563
+
564
+ #: .././admin/settings.php:1353
565
+ msgid "Web Analytics"
566
+ msgstr "Web Analytics"
567
+
568
+ #: .././admin/setup.php:76 .././admin/setup.php:111
569
+ msgid "Google Analytics"
570
+ msgstr "Google Analytics"
571
+
572
+ #: .././admin/setup.php:84
573
+ msgid "Backend Settings"
574
+ msgstr "Impostazioni backend"
575
+
576
+ #: .././admin/setup.php:88
577
+ msgid "Frontend Settings"
578
+ msgstr "Impostazioni frontend"
579
+
580
+ #: .././admin/setup.php:92
581
+ msgid "Tracking Code"
582
+ msgstr "Monitoraggio"
583
+
584
+ #: .././admin/setup.php:195 .././admin/widgets.php:126
585
+ msgid "Today"
586
+ msgstr "Oggi"
587
+
588
+ #: .././admin/setup.php:196 .././admin/widgets.php:127
589
+ msgid "Yesterday"
590
+ msgstr "Ieri"
591
+
592
+ #: .././admin/setup.php:197 .././admin/widgets.php:128
593
+ #: .././front/widgets.php:74 .././front/widgets.php:182
594
+ msgid "Last 7 Days"
595
+ msgstr "Ultimi 7 giorni"
596
+
597
+ #: .././admin/setup.php:198 .././admin/widgets.php:130
598
+ #: .././front/widgets.php:80 .././front/widgets.php:184
599
+ msgid "Last 30 Days"
600
+ msgstr "Ultimi 30 giorni"
601
+
602
+ #: .././admin/setup.php:199 .././admin/widgets.php:131
603
+ msgid "Last 90 Days"
604
+ msgstr "Ultimi 90 giorni"
605
+
606
+ #: .././admin/setup.php:202 .././admin/setup.php:218
607
+ msgid "Unique Views"
608
+ msgstr "Visualizzazioni singole"
609
+
610
+ #: .././admin/setup.php:203 .././admin/setup.php:219
611
+ #: .././admin/widgets.php:136 .././admin/widgets.php:875
612
+ #: .././tools/gapi.php:391
613
+ msgid "Users"
614
+ msgstr "Utenti"
615
+
616
+ #: .././admin/setup.php:204 .././admin/widgets.php:137
617
+ msgid "Organic"
618
+ msgstr "Traffico da motorI di ricerca"
619
+
620
+ #: .././admin/setup.php:205 .././admin/setup.php:220
621
+ #: .././admin/widgets.php:138 .././admin/widgets.php:879
622
+ #: .././tools/gapi.php:394
623
+ msgid "Page Views"
624
+ msgstr "Pagine viste"
625
+
626
+ #: .././admin/setup.php:206 .././admin/setup.php:221
627
+ #: .././admin/widgets.php:139 .././admin/widgets.php:883
628
+ #: .././tools/gapi.php:397
629
+ msgid "Bounce Rate"
630
+ msgstr "Frequenza di rimbalzo"
631
+
632
+ #: .././admin/setup.php:207 .././admin/widgets.php:140
633
+ msgid "Location"
634
+ msgstr "Posizione geografica"
635
+
636
+ #: .././admin/setup.php:208 .././admin/widgets.php:142 .././tools/gapi.php:566
637
+ msgid "Referrers"
638
+ msgstr "Siti di origine del traffico"
639
+
640
+ #: .././admin/setup.php:209 .././admin/widgets.php:143 .././tools/gapi.php:612
641
+ #: .././tools/gapi.php:922
642
+ msgid "Searches"
643
+ msgstr "Ricerche"
644
+
645
+ #: .././admin/setup.php:210 .././admin/widgets.php:144
646
+ msgid "Traffic Details"
647
+ msgstr "Dettagli traffico"
648
+
649
+ #: .././admin/setup.php:213 .././admin/widgets.php:510
650
+ #: .././admin/widgets.php:607 .././admin/widgets.php:805
651
+ #: .././admin/widgets.php:917 .././front/item-reports.php:94
652
+ msgid "A JavaScript Error is blocking plugin resources!"
653
+ msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
654
+
655
+ #: .././admin/setup.php:214 .././admin/widgets.php:713
656
+ msgid "Traffic Mediums"
657
+ msgstr "Origine del traffico in %"
658
+
659
+ #: .././admin/setup.php:215 .././admin/widgets.php:729
660
+ msgid "Visitor Type"
661
+ msgstr "Tipo di visitatore"
662
+
663
+ #: .././admin/setup.php:216 .././admin/widgets.php:745
664
+ msgid "Social Networks"
665
+ msgstr "Social Networks"
666
+
667
+ #: .././admin/setup.php:217 .././admin/widgets.php:761
668
+ msgid "Search Engines"
669
+ msgstr "Motori di ricerca"
670
+
671
+ #: .././admin/setup.php:222 .././admin/widgets.php:887
672
+ msgid "Organic Search"
673
+ msgstr "Ricerca organica"
674
+
675
+ #: .././admin/setup.php:223 .././admin/widgets.php:891
676
+ msgid "Pages/Session"
677
+ msgstr "Pagine per sessione"
678
+
679
+ #: .././admin/setup.php:224 .././admin/widgets.php:523
680
+ #: .././admin/widgets.php:541 .././admin/widgets.php:620
681
+ #: .././admin/widgets.php:638 .././admin/widgets.php:657
682
+ #: .././admin/widgets.php:676 .././admin/widgets.php:696
683
+ #: .././admin/widgets.php:819 .././admin/widgets.php:930
684
+ #: .././admin/widgets.php:949 .././front/item-reports.php:106
685
+ #: .././front/item-reports.php:125
686
+ msgid "Invalid response, more details in JavaScript Console (F12)."
687
+ msgstr ""
688
+ "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
689
+
690
+ #: .././admin/setup.php:225
691
+ msgid "Not enough data collected"
692
+ msgstr "Dati raccolti insufficienti"
693
+
694
+ #: .././admin/setup.php:226 .././admin/widgets.php:528
695
+ #: .././admin/widgets.php:546 .././admin/widgets.php:625
696
+ #: .././admin/widgets.php:643 .././admin/widgets.php:662
697
+ #: .././admin/widgets.php:681 .././admin/widgets.php:701
698
+ #: .././admin/widgets.php:824 .././admin/widgets.php:827
699
+ #: .././admin/widgets.php:935 .././admin/widgets.php:954
700
+ #: .././front/item-reports.php:111 .././front/item-reports.php:130
701
+ #: .././front/widgets.php:110
702
+ msgid "This report is unavailable"
703
+ msgstr "Questo rapporto non &egrave; disponibile"
704
+
705
+ #: .././admin/setup.php:227
706
+ msgid "report generated by"
707
+ msgstr "rapporto generato da"
708
+
709
+ #: .././admin/setup.php:267
710
+ msgid "Settings"
711
+ msgstr "Impostazioni"
712
+
713
+ #: .././admin/widgets.php:33 .././front/widgets.php:22
714
+ msgid "Google Analytics Dashboard"
715
+ msgstr "Bacheca di Google Analytics"
716
+
717
+ #: .././admin/widgets.php:42
718
+ msgid "This plugin needs an authorization:"
719
+ msgstr "Questo plugin necessita di un&#39;autorizzazione:"
720
+
721
+ #: .././admin/widgets.php:76
722
+ msgid "Something went wrong while retrieving profiles list."
723
+ msgstr ""
724
+ "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
725
+
726
+ #: .././admin/widgets.php:76
727
+ msgid "More details"
728
+ msgstr "Altri dettagli"
729
+
730
+ #: .././admin/widgets.php:89 .././admin/widgets.php:100
731
+ msgid "An admin should asign a default Google Analytics Profile."
732
+ msgstr ""
733
+ "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
734
+
735
+ #: .././admin/widgets.php:89 .././admin/widgets.php:100
736
+ msgid "Select Domain"
737
+ msgstr "Seleziona dominio"
738
+
739
+ #: .././admin/widgets.php:105
740
+ msgid ""
741
+ "Something went wrong while retrieving property data. You need to create and "
742
+ "properly configure a Google Analytics account:"
743
+ msgstr ""
744
+ "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
745
+ "necessario creare e configurare correttamente un account di Google Analytics:"
746
+
747
+ #: .././admin/widgets.php:105
748
+ msgid "Find out more!"
749
+ msgstr "Per saperne di pi&ugrave;!"
750
+
751
+ #: .././admin/widgets.php:125
752
+ msgid "Real-Time"
753
+ msgstr "In tempo reale"
754
+
755
+ #: .././admin/widgets.php:129 .././front/widgets.php:77
756
+ #: .././front/widgets.php:183
757
+ msgid "Last 14 Days"
758
+ msgstr "Ultimi 14 giorni"
759
+
760
+ #: .././admin/widgets.php:135 .././admin/widgets.php:871
761
+ #: .././front/widgets.php:46 .././tools/gapi.php:406 .././tools/gapi.php:567
762
+ #: .././tools/gapi.php:613 .././tools/gapi.php:676 .././tools/gapi.php:786
763
+ #: .././tools/gapi.php:827 .././tools/gapi.php:923
764
+ msgid "Sessions"
765
+ msgstr "Sessioni"
766
+
767
+ #: .././admin/widgets.php:141 .././tools/gapi.php:521
768
+ msgid "Pages"
769
+ msgstr "Pagine"
770
+
771
+ #: .././admin/widgets.php:232 .././admin/widgets.php:472
772
+ msgid "REFERRAL"
773
+ msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
774
+
775
+ #: .././admin/widgets.php:236 .././admin/widgets.php:473
776
+ msgid "ORGANIC"
777
+ msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
778
+
779
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360
780
+ #: .././admin/widgets.php:474
781
+ msgid "SOCIAL"
782
+ msgstr "TRAFFICO DAI SOCIAL NETWORK"
783
+
784
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363
785
+ #: .././admin/widgets.php:475
786
+ msgid "CAMPAIGN"
787
+ msgstr "CAMPAGNA"
788
+
789
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366
790
+ #: .././admin/widgets.php:478
791
+ msgid "DIRECT"
792
+ msgstr "TRAFFICO DIRETTO"
793
+
794
+ #: .././admin/widgets.php:252 .././admin/widgets.php:479
795
+ msgid "NEW"
796
+ msgstr "VISITATORI NUOVI"
797
+
798
+ #: .././admin/widgets.php:354
799
+ msgid "REFERRALS"
800
+ msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
801
+
802
+ #: .././admin/widgets.php:357
803
+ msgid "KEYWORDS"
804
+ msgstr "KEYWORDS"
805
+
806
+ #: .././front/item-reports.php:140
807
+ msgid "Views vs UniqueViews"
808
+ msgstr "Visualizzazioni vs Visualizzazioni singole"
809
+
810
+ #: .././front/item-reports.php:190
811
+ msgid "Google Analytics Reports"
812
+ msgstr "Rapporti di Google Analytics"
813
+
814
+ #: .././front/widgets.php:23
815
+ msgid "Will display your google analytics stats in a widget"
816
+ msgstr "Visualizza le statistiche di Google Analytics in un widget"
817
+
818
+ #: .././front/widgets.php:46 .././tools/gapi.php:827
819
+ msgid "trend"
820
+ msgstr "tendenza"
821
+
822
+ #: .././front/widgets.php:133
823
+ msgid "Period:"
824
+ msgstr "Periodo:"
825
+
826
+ #: .././front/widgets.php:133
827
+ msgid "Sessions:"
828
+ msgstr "Sessioni:"
829
+
830
+ #: .././front/widgets.php:137
831
+ msgid "generated by"
832
+ msgstr "generato da"
833
+
834
+ #: .././front/widgets.php:147
835
+ msgid "Google Analytics Stats"
836
+ msgstr "Statistiche di Google Analytics"
837
+
838
+ #: .././front/widgets.php:154
839
+ msgid "Title:"
840
+ msgstr "Titolo:"
841
+
842
+ #: .././front/widgets.php:161
843
+ msgid "Display:"
844
+ msgstr "Mostra:"
845
+
846
+ #: .././front/widgets.php:165
847
+ msgid "Chart & Totals"
848
+ msgstr "Grafico & Totali"
849
+
850
+ #: .././front/widgets.php:166
851
+ msgid "Chart"
852
+ msgstr "Grafico"
853
+
854
+ #: .././front/widgets.php:167
855
+ msgid "Totals"
856
+ msgstr "Totali"
857
+
858
+ #: .././front/widgets.php:171
859
+ msgid "Anonymize stats:"
860
+ msgstr "Anonimizza le statistiche:"
861
+
862
+ #: .././front/widgets.php:178
863
+ msgid "Stats for:"
864
+ msgstr "Statistiche per:"
865
+
866
+ #: .././front/widgets.php:188
867
+ msgid "Give credits:"
868
+ msgstr "Crediti:"
869
+
870
+ #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
871
+ msgid "This is not allowed, read the documentation!"
872
+ msgstr "Questo non &egrave; permesso, leggi la documentazione"
873
+
874
+ #: .././tools/gapi.php:134
875
+ msgid "Use this link to get your access code:"
876
+ msgstr "Utilizza questo link per ottenere il codice di accesso:"
877
+
878
+ #: .././tools/gapi.php:134
879
+ msgid "Get Access Code"
880
+ msgstr "Ottieni codice di accesso"
881
+
882
+ #: .././tools/gapi.php:138 .././tools/gapi.php:139
883
+ msgid "Use the red link to get your access code!"
884
+ msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
885
+
886
+ #: .././tools/gapi.php:138
887
+ msgid "Access Code:"
888
+ msgstr "Codice di accesso:"
889
+
890
+ #: .././tools/gapi.php:145
891
+ msgid "Save Access Code"
892
+ msgstr "Salva codice di accesso"
893
+
894
+ #: .././tools/gapi.php:400
895
+ msgid "Organic Searches"
896
+ msgstr "Ricerche organiche"
897
+
898
+ #: .././tools/gapi.php:403
899
+ msgid "Unique Page Views"
900
+ msgstr "Visualizzazioni pagine singole"
901
+
902
+ #: .././tools/gapi.php:411
903
+ msgid "Hour"
904
+ msgstr "Ora"
905
+
906
+ #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:878
907
+ msgid "Date"
908
+ msgstr "Data"
909
+
910
+ #: .././tools/gapi.php:522 .././tools/gapi.php:879
911
+ msgid "Views"
912
+ msgstr "Visualizzazioni"
913
+
914
+ #: .././tools/gapi.php:640
915
+ msgid "Countries"
916
+ msgstr "Paesi"
917
+
918
+ #: .././tools/gapi.php:650
919
+ msgid "Cities from"
920
+ msgstr "Paese: "
921
+
922
+ #: .././tools/gapi.php:722
923
+ msgid "Channels"
924
+ msgstr "Canali"
925
+
926
+ #: .././tools/gapi.php:785
927
+ msgid "Type"
928
+ msgstr "Tipo"
929
+
930
+ #: .././tools/gapi.php:880
931
+ msgid "UniqueViews"
932
+ msgstr "Visualizzazioni uniche"
933
+
934
+ #~ msgid "enable Switch Profile/View functionality"
935
+ #~ msgstr "abilita Cambia profilo/Mostra funzionalit&agrave;"
936
+
937
+ #~ msgid ""
938
+ #~ "For errors and/or other issues please check %s and related tutorials."
939
+ #~ msgstr ""
940
+ #~ "Per errori e/o altri problemi controlla %s e leggi la guida relativa."
941
+
942
+ #~ msgid "Select Domain:"
943
+ #~ msgstr "Seleziona dominio:"
944
+
945
+ #~ msgid "and/or hide all other domains"
946
+ #~ msgstr "e/o nasconde tutti gli altri domini"
947
+
948
+ #~ msgid "Hide Now"
949
+ #~ msgstr "Nascondi ora"
950
+
951
+ #~ msgid "find out more %s"
952
+ #~ msgstr "per saperne di pi&ugrave; su %s"
953
+
954
+ #~ msgid "about this feature"
955
+ #~ msgstr "su questa funzionalit&agrave;"
956
+
957
+ #~ msgid " show page sessions and users in frontend (after each article)"
958
+ #~ msgstr ""
959
+ #~ "mostra le sessioni della pagina e gli utenti nel frontend (dopo ogni "
960
+ #~ "articolo)"
961
+
962
+ #~ msgid " show page searches (after each article)"
963
+ #~ msgstr " mostra le ricerche della pagina (dopo ogni articolo)"
964
+
965
+ #~ msgid " anonymize IPs while tracking"
966
+ #~ msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
967
+
968
+ #~ msgid " enable remarketing, demographics and interests reports"
969
+ #~ msgstr " abilita remarketing e rapporti demografici e sugli interessi"
970
+
971
+ #~ msgid " track downloads, mailto and outbound links"
972
+ #~ msgstr "monitora downloads, mailto e link in uscita"
973
+
974
+ #~ msgid " track affiliate links matching this regex"
975
+ #~ msgstr ""
976
+ #~ " monitora collegamenti associati corrispondenti a queste abbreviazioni"
977
+
978
+ #~ msgid " track fragment identifiers, hashmarks (#) in URI links"
979
+ #~ msgstr ""
980
+ #~ " monitora gli identificatori di frammentoe gli hashmarks (#) nei "
981
+ #~ "collegamenti URI"
982
+
983
+ #~ msgid " exclude events from bounce-rate calculation"
984
+ #~ msgstr " escludi gli eventi dal calcolo del bounce-rate"
985
+
986
+ #~ msgid " enable enhanced link attribution"
987
+ #~ msgstr "utilizza l&#39;attribuzione avanzata dei link"
988
+
989
+ #~ msgid " enable AdSense account linking"
990
+ #~ msgstr " abilita AdSense account linking"
991
+
992
+ #~ msgid " enable cross domain tracking"
993
+ #~ msgstr " abilita cross domanin tracking"
994
+
995
+ #~ msgid " use your own API Project credentials"
996
+ #~ msgstr "utilizza le proprie credenziali API"
997
+
998
+ #~ msgid " use a single Google Analytics account for the entire network"
999
+ #~ msgstr " utilizza un unico account Google Analytics per l&#39;intera rete"
1000
+
1001
+ #~ msgid " exclude Super Admin tracking for the entire network"
1002
+ #~ msgstr " esclude il monitoraggio del Super Amministratore per tutta la rete"
1003
+
1004
+ #~ msgid "or"
1005
+ #~ msgstr "o"
1006
+
1007
+ #~ msgid "Tracking Options"
1008
+ #~ msgstr "Opzioni di monitoraggio"
1009
+
1010
+ #~ msgid "to"
1011
+ #~ msgstr "a"
1012
+
1013
+ #~ msgid "and related tutorials"
1014
+ #~ msgstr "ed i tutorial relativi"
1015
+
1016
+ #~ msgid "You should watch the"
1017
+ #~ msgstr "Dovresti guardare il"
1018
+
1019
+ #~ msgid "and read this"
1020
+ #~ msgstr "e leggere questa"
1021
+
1022
+ #~ msgid "Other"
1023
+ #~ msgstr "Altri"
1024
+
1025
+ #~ msgid ""
1026
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1027
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1028
+ #~ msgstr ""
1029
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1030
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1031
+
1032
+ #~ msgid "Google Analytics Dashboard Settings"
1033
+ #~ msgstr "Impostazioni Backend di Google Analytics"
1034
+
1035
+ #~ msgid "A new frontend widget is available! To enable it, go to"
1036
+ #~ msgstr ""
1037
+ #~ "&Egrave; disponibile un nuovo widget per il frontend. Per attivarlo, vai "
1038
+ #~ "a"
1039
+
1040
+ #~ msgid "Appearance -> Widgets"
1041
+ #~ msgstr "Aspetto -> Widgets"
1042
+
1043
+ #~ msgid "and look for Google Analytics Dashboard."
1044
+ #~ msgstr "e cerca Bacheca di Google Analytics."
1045
+
1046
+ #~ msgid "Something went wrong, you need to"
1047
+ #~ msgstr "Qualcosa &egrave; andato male, devi"
1048
+
1049
+ #~ msgid "or properly configure your"
1050
+ #~ msgstr "o configura correttamente il tuo"
1051
+
1052
+ #~ msgid "Google Analytics account"
1053
+ #~ msgstr "Account di Google Analytics"
1054
+
1055
+ #~ msgid "(find out more"
1056
+ #~ msgstr "(per saperne di pi&ugrave;"
1057
+
1058
+ #~ msgid ")"
1059
+ #~ msgstr ")"
1060
+
1061
+ #~ msgid "Additional Stats & Charts"
1062
+ #~ msgstr "Ulteriori statistiche e grafici"
1063
+
1064
+ #~ msgid " show Geo Map chart for sessions"
1065
+ #~ msgstr "mostra il grafico per le sessioni"
1066
+
1067
+ #~ msgid "Target Geo Map to region:"
1068
+ #~ msgstr "Cartina delle visite per il paese:"
1069
+
1070
+ #~ msgid "and render top"
1071
+ #~ msgstr "con"
1072
+
1073
+ #~ msgid "cities (find out more"
1074
+ #~ msgstr "citt&agrave; (per saperne di più"
1075
+
1076
+ #~ msgid " show traffic overview"
1077
+ #~ msgstr " mostra la panoramica sul traffico"
1078
+
1079
+ #~ msgid " show top pages"
1080
+ #~ msgstr " mostra le principali pagine attive"
1081
+
1082
+ #~ msgid " show top referrers"
1083
+ #~ msgstr " mostra i siti principali di origine del traffico"
1084
+
1085
+ #~ msgid " show top searches"
1086
+ #~ msgstr " mostra le ricerche principali"
1087
+
1088
+ #~ msgid "Dumping log data."
1089
+ #~ msgstr "Dumping dati di log."
1090
+
1091
+ #~ msgid ""
1092
+ #~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
1093
+ #~ "CURL!"
1094
+ #~ msgstr ""
1095
+ #~ "PHP CURL &egrave; necessario. Chiedete al vostro fornitore di hosting per "
1096
+ #~ "installare/attivare PHP CURL!"
1097
+
1098
+ #~ msgid ""
1099
+ #~ "Something went wrong. Please check the Debugging Data section for "
1100
+ #~ "possible errors"
1101
+ #~ msgstr ""
1102
+ #~ "Qualcosa &egrave; andato male. Controlla la sezione dati di debug per "
1103
+ #~ "possibili errori"
1104
+
1105
+ #~ msgid "Debugging Data"
1106
+ #~ msgstr "Debug dei dati"
1107
+
1108
+ #~ msgid "Anonimize chart&#39;s stats:"
1109
+ #~ msgstr "Rendi anonimo il grafico delle statistiche:"
1110
+
1111
+ #~ msgid "Top Searches"
1112
+ #~ msgstr "Ricerche principali"
1113
+
1114
+ #~ msgid "Error Log"
1115
+ #~ msgstr "Log errori"
1116
+
1117
+ #~ msgid ""
1118
+ #~ "No stats available. Please check the Debugging Data section for possible "
1119
+ #~ "errors"
1120
+ #~ msgstr ""
1121
+ #~ "Nessuna statistica disponibile. Controlla la sezione dati di debug per "
1122
+ #~ "possibili errori"
1123
+
1124
+ #~ msgid "Country/City"
1125
+ #~ msgstr "Paese/Citt&agrave;"
1126
+
1127
+ #~ msgid "Source"
1128
+ #~ msgstr "Sorgente"
1129
+
1130
+ #~ msgid "Traffic Sources"
1131
+ #~ msgstr "Sorgenti di traffico"
1132
+
1133
+ #~ msgid "New vs. Returning"
1134
+ #~ msgstr "Visitatori nuovi contro Visitatori di ritorno"
1135
+
1136
+ #~ msgid "Top Pages"
1137
+ #~ msgstr "Principali pagine attive"
1138
+
1139
+ #~ msgid "Top Referrers"
1140
+ #~ msgstr "Referral principali"
1141
+
1142
+ #~ msgid ""
1143
+ #~ "This is a beta feature and is only available when using my Developer Key! "
1144
+ #~ "("
1145
+ #~ msgstr ""
1146
+ #~ "Questa &egrave; una caratteristica beta ed &egrave; disponibile solo "
1147
+ #~ "quando si utilizza il Developer Key! ("
1148
+
1149
+ #~ msgid "more about this feature"
1150
+ #~ msgstr "pi&ugrave; informazioni su questa funzione"
1151
+
1152
+ #~ msgid "RETURN"
1153
+ #~ msgstr "VISITATORI DI RITORNO"
1154
+
1155
+ #~ msgid "Sessions from "
1156
+ #~ msgstr "Sessioni da: "
1157
+
1158
+ #~ msgid "Sessions by Country"
1159
+ #~ msgstr "Sessioni per paese"
1160
+
1161
+ #~ msgid "Traffic Overview"
1162
+ #~ msgstr "Panoramica traffico"
1163
+
1164
+ #~ msgid "Visits"
1165
+ #~ msgstr "Visite"
1166
+
1167
+ #~ msgid "Visitors"
1168
+ #~ msgstr "Visitatori"
1169
+
1170
+ #~ msgid "Visits:"
1171
+ #~ msgstr "Visite:"
1172
+
1173
+ #~ msgid "Visitors:"
1174
+ #~ msgstr "Visitatori:"
1175
+
1176
+ #~ msgid "Page Views:"
1177
+ #~ msgstr "Pagine viste:"
1178
+
1179
+ #~ msgid "Bounce Rate:"
1180
+ #~ msgstr "Frequenza di rimbalzo:"
1181
+
1182
+ #~ msgid "Organic Search:"
1183
+ #~ msgstr "Ricerca organica:"
1184
+
1185
+ #~ msgid "Pages per Visit:"
1186
+ #~ msgstr "Pagine per visita:"
1187
+
1188
+ #~ msgid "Visits from "
1189
+ #~ msgstr "Visite da "
1190
+
1191
+ #~ msgid "Visits by Country"
1192
+ #~ msgstr "Visite per paese"
1193
+
1194
+ #~ msgid " show page visits and visitors in frontend (after each article)"
1195
+ #~ msgstr ""
1196
+ #~ " mostra le pagine visitate e visitatori nel frontend (dopo ogni articolo)"
1197
+
1198
+ #~ msgid " show Geo Map chart for visits"
1199
+ #~ msgstr " mostra la cartina geografica delle visite"
1200
+
1201
+ #~ msgid "You can find support on"
1202
+ #~ msgstr "Puoi trovare supporto su"
1203
+
1204
+ #~ msgid "DeConf.com"
1205
+ #~ msgstr "DeConf.com"
1206
+
1207
+ #~ msgid "service with visitors tracking at IP level."
1208
+ #~ msgstr "servizio con monitoraggio dei visitatori a livello IP."
1209
+
1210
+ #~ msgid "Total Visits:"
1211
+ #~ msgstr "Totale visite:"
1212
+
1213
+ #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1214
+ #~ msgstr "CURL è necessaria. Si prega di installare/abilitare CURL!"
1215
+
1216
+ #~ msgid "Options saved."
1217
+ #~ msgstr "Opzioni salvate."
1218
+
1219
+ #~ msgid "Show stats to: "
1220
+ #~ msgstr "Mostra statistiche:"
1221
+
1222
+ #~ msgid "Update Options"
1223
+ #~ msgstr "Aggiorna opzioni"
1224
+
1225
+ #~ msgid "Tracking Options: "
1226
+ #~ msgstr "Opzioni monitoraggio: "
1227
+
1228
+ #~ msgid "Tracking Type: "
1229
+ #~ msgstr "Tipo di monitoraggio:"
1230
+
1231
+ #, fuzzy
1232
+ #~ msgid "User Type: "
1233
+ #~ msgstr "Tipo di monitoraggio:"
1234
+
1235
+ #~ msgid "Exclude tracking for: "
1236
+ #~ msgstr "Escludi monitoraggio per:"
1237
+
1238
+ #~ msgid "Select Domain: "
1239
+ #~ msgstr "Seleziona dominio:"
1240
+
1241
+ #~ msgid "Theme Color: "
1242
+ #~ msgstr "Colote tema:"
1243
+
1244
+ #~ msgid "&#39; trend"
1245
+ #~ msgstr "&#39; tendenza"
1246
+
1247
+ #~ msgid "DeConf Help Center"
1248
+ #~ msgstr "DeConf Help Center"
1249
+
1250
+ #~ msgid "Custom Code"
1251
+ #~ msgstr "Codice personalizzato"
1252
+
1253
+ #~ msgid "Your Tracking Code:"
1254
+ #~ msgstr "Il tuo codice di monitoraggio:"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: deconf
3
  Donate link: https://deconf.com/donate/
4
  Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics widget,tracking,realtime,wpmu,multisite
5
  Requires at least: 3.5
6
- Tested up to: 4.2
7
- Stable tag: 4.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -13,6 +13,8 @@ Displays Google Analytics reports and real-time statistics in your WordPress Das
13
  == Description ==
14
  Using a widget, [Google Analytics Dashboard](https://deconf.com/google-analytics-dashboard-wordpress/) displays detailed analytics data and reports about: number of sessions, number of visitors (users), page views, bounce rates, organic searches, pages per visit directly on your WordPress Dashboard.
15
 
 
 
16
  This plugin also inserts the latest version of the Google Analytics tracking code in every page of your site. The tracking code is fully customizable through options and hooks.
17
 
18
  > <strong>Google Analytics Dashboard on GitHub</strong><br>
@@ -132,8 +134,14 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
132
 
133
  == Changelog ==
134
 
 
 
 
 
 
 
135
  = 4.7 =
136
- - Enhancement: Dutch translation
137
  - Enhancement: using wp_get_current_user() to check users' roles
138
  - Enhancement: fit longer titles in backend item reports widget
139
  - Enhancement: disable the drop-down select list while a single View is available
@@ -141,9 +149,9 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
141
  - Bug Fix: unable to add new widgets on frontend
142
 
143
  = 4.6 =
144
- - Enhancement: Italian translation
145
- - Enhancement: Japanese translation
146
- - Enhancement: Portuguese (Brazil) translation
147
  - Enhancement: introducing a manager class to keep track of all instances and their references
148
  - Enhancement: push the tracking code at the end of head section
149
  - Enhancement: better support for remove_action and wp_dequeue_script
@@ -169,7 +177,7 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
169
  - Enhancement: gadwp_backenditem_uri allows URI corrections for backend item reports
170
  - Enhancement: option to enable/disable the custom dashboard widget
171
  - Enhancement: Japanese translation
172
- - Enhancement: Dutch translation
173
  - Enhancement: Portuguese (Brazil) translation
174
  - Enhancement: UI improvements, props by [Paal Joachim Romdahl](https://github.com/paaljoachim)
175
  - Bug Fix: Arabic translation not loading properly
3
  Donate link: https://deconf.com/donate/
4
  Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics widget,tracking,realtime,wpmu,multisite
5
  Requires at least: 3.5
6
+ Tested up to: 4.2.1
7
+ Stable tag: 4.7.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
13
  == Description ==
14
  Using a widget, [Google Analytics Dashboard](https://deconf.com/google-analytics-dashboard-wordpress/) displays detailed analytics data and reports about: number of sessions, number of visitors (users), page views, bounce rates, organic searches, pages per visit directly on your WordPress Dashboard.
15
 
16
+ In addition, in-depth Page reports and in-depth Post reports allow further segmentation of your analytics data, providing performance details for each post or page from your website.
17
+
18
  This plugin also inserts the latest version of the Google Analytics tracking code in every page of your site. The tracking code is fully customizable through options and hooks.
19
 
20
  > <strong>Google Analytics Dashboard on GitHub</strong><br>
134
 
135
  == Changelog ==
136
 
137
+ = 4.7.1 =
138
+ - Enhancement: Italian translation updated
139
+ - Bug Fix: use url-encoding for API filters to avoid generating invalid parameters
140
+ - Bug Fix: cache reports for pages and posts with queries in URI
141
+ - Bug Fix: avoid double encoding while doing API requests
142
+
143
  = 4.7 =
144
+ - Enhancement: Dutch translation updated
145
  - Enhancement: using wp_get_current_user() to check users' roles
146
  - Enhancement: fit longer titles in backend item reports widget
147
  - Enhancement: disable the drop-down select list while a single View is available
149
  - Bug Fix: unable to add new widgets on frontend
150
 
151
  = 4.6 =
152
+ - Enhancement: Italian translation updated
153
+ - Enhancement: Japanese translation updated
154
+ - Enhancement: Portuguese (Brazil) translation updated
155
  - Enhancement: introducing a manager class to keep track of all instances and their references
156
  - Enhancement: push the tracking code at the end of head section
157
  - Enhancement: better support for remove_action and wp_dequeue_script
177
  - Enhancement: gadwp_backenditem_uri allows URI corrections for backend item reports
178
  - Enhancement: option to enable/disable the custom dashboard widget
179
  - Enhancement: Japanese translation
180
+ - Enhancement: Dutch translation updated
181
  - Enhancement: Portuguese (Brazil) translation
182
  - Enhancement: UI improvements, props by [Paal Joachim Romdahl](https://github.com/paaljoachim)
183
  - Bug Fix: Arabic translation not loading properly
tools/gapi.php CHANGED
@@ -854,17 +854,15 @@ if (! class_exists('GADWP_GAPI_Controller')) {
854
  * $projectId
855
  * @param
856
  * $page_url
857
- * @param
858
- * $post_id
859
  * @return array|int
860
  */
861
- public function frontend_afterpost_pageviews($projectId, $page_url, $post_id)
862
  {
863
  $from = '30daysAgo';
864
  $to = 'yesterday';
865
  $metrics = 'ga:pageviews,ga:uniquePageviews';
866
  $dimensions = 'ga:date,ga:dayOfWeekName';
867
- $serial = 'gadash_qr21_' . $this->get_serial($post_id . 'stats');
868
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
869
  'dimensions' => $dimensions,
870
  'filters' => 'ga:pagePath==' . $page_url,
@@ -897,17 +895,15 @@ if (! class_exists('GADWP_GAPI_Controller')) {
897
  * $projectId
898
  * @param
899
  * $page_url
900
- * @param
901
- * $post_id
902
  * @return array|int
903
  */
904
- public function frontend_afterpost_searches($projectId, $page_url, $post_id)
905
  {
906
  $from = '30daysAgo';
907
  $to = 'yesterday';
908
  $metrics = 'ga:sessions';
909
  $dimensions = 'ga:keyword';
910
- $serial = 'gadash_qr22_' . $this->get_serial($post_id . 'search');
911
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
912
  'dimensions' => $dimensions,
913
  'sort' => '-ga:sessions',
854
  * $projectId
855
  * @param
856
  * $page_url
 
 
857
  * @return array|int
858
  */
859
+ public function frontend_afterpost_pageviews($projectId, $page_url)
860
  {
861
  $from = '30daysAgo';
862
  $to = 'yesterday';
863
  $metrics = 'ga:pageviews,ga:uniquePageviews';
864
  $dimensions = 'ga:date,ga:dayOfWeekName';
865
+ $serial = 'gadash_qr21_' . $this->get_serial($page_url . 'stats');
866
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
867
  'dimensions' => $dimensions,
868
  'filters' => 'ga:pagePath==' . $page_url,
895
  * $projectId
896
  * @param
897
  * $page_url
 
 
898
  * @return array|int
899
  */
900
+ public function frontend_afterpost_searches($projectId, $page_url)
901
  {
902
  $from = '30daysAgo';
903
  $to = 'yesterday';
904
  $metrics = 'ga:sessions';
905
  $dimensions = 'ga:keyword';
906
+ $serial = 'gadash_qr22_' . $this->get_serial($page_url . 'search');
907
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
908
  'dimensions' => $dimensions,
909
  'sort' => '-ga:sessions',
tools/src/Google/Http/REST.php CHANGED
@@ -124,10 +124,10 @@ class Google_Http_REST
124
  if ($paramSpec['location'] == 'query') {
125
  if (isset($paramSpec['repeated']) && is_array($paramSpec['value'])) {
126
  foreach ($paramSpec['value'] as $value) {
127
- $queryVars[] = $paramName . '=' . rawurlencode($value);
128
  }
129
  } else {
130
- $queryVars[] = $paramName . '=' . rawurlencode($paramSpec['value']);
131
  }
132
  }
133
  }
124
  if ($paramSpec['location'] == 'query') {
125
  if (isset($paramSpec['repeated']) && is_array($paramSpec['value'])) {
126
  foreach ($paramSpec['value'] as $value) {
127
+ $queryVars[] = $paramName . '=' . rawurlencode(rawurldecode($value));
128
  }
129
  } else {
130
+ $queryVars[] = $paramName . '=' . rawurlencode(rawurldecode($paramSpec['value']));
131
  }
132
  }
133
  }