Google Analytics Dashboard for WP (GADWP) - Version 4.7.2

Version Description

  • Enhancement: Czech translation
  • Bug Fix: apply tooltips only on GADWP widget
  • Bug Fix: use a custom data attribute instead of title to attach the tooltip
Download this release

Release Info

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

Code changes from version 4.7.1 to 4.7.2

admin/widgets.php CHANGED
@@ -271,7 +271,7 @@ if (! class_exists('GADWP_Backend_Widgets')) {
271
  });
272
 
273
  jQuery(function() {
274
- jQuery( document ).tooltip();
275
  });
276
 
277
  function onlyUniqueValues(value, index, self) {
@@ -435,7 +435,7 @@ if (! class_exists('GADWP_Backend_Widgets')) {
435
  var pgstatstable = "";
436
  for ( var i = 0; i < upagepathstats.length; i = i + 1 ) {
437
  if (i < <?php echo $this->gadwp->config->options['ga_realtime_pages']; ?>){
438
- pgstatstable += '<div class="gadash-pline"><div class="gadash-pleft"><a href="#" title="'+gadash_pagedetails(data, upagepathstats[i].pagepath)+'">'+upagepathstats[i].pagepath.substring(0,70)+'</a></div><div class="gadash-pright">'+upagepathstats[i].count+'</div></div>';
439
  }
440
  }
441
  document.getElementById("gadash-pages").innerHTML='<br /><div class="gadash-pg">'+pgstatstable+'</div>';
@@ -469,10 +469,10 @@ if (! class_exists('GADWP_Backend_Widgets')) {
469
  ucustomstats.sort( function(a,b){ return b.count - a.count } );
470
 
471
  var uvisittype = ["REFERRAL","ORGANIC","SOCIAL","CUSTOM"];
472
- document.getElementById("gadash-tdo-right").innerHTML = '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(ureferralsstats)+'"><div class="gadash-bleft">'+'<?php _e("REFERRAL", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[0])+'</div></div>';
473
- document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(ukeywordsstats)+'"><div class="gadash-bleft">'+'<?php _e("ORGANIC", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[1])+'</div></div>';
474
- document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(usocialstats)+'"><div class="gadash-bleft">'+'<?php _e("SOCIAL", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[2])+'</div></div>';
475
- document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(ucustomstats)+'"><div class="gadash-bleft">'+'<?php _e("CAMPAIGN", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[3])+'</div></div>';
476
 
477
  var uvisitortype = ["DIRECT","NEW"];
478
  document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php _e("DIRECT", 'ga-dash');?>'+'</div><div class="gadash-bright">'+countsessions(data,uvisitortype[0])+'</div></div>';
271
  });
272
 
273
  jQuery(function() {
274
+ jQuery('#gadash-widget *').tooltip();
275
  });
276
 
277
  function onlyUniqueValues(value, index, self) {
435
  var pgstatstable = "";
436
  for ( var i = 0; i < upagepathstats.length; i = i + 1 ) {
437
  if (i < <?php echo $this->gadwp->config->options['ga_realtime_pages']; ?>){
438
+ pgstatstable += '<div class="gadash-pline"><div class="gadash-pleft"><a href="#" data-tooltip="'+gadash_pagedetails(data, upagepathstats[i].pagepath)+'">'+upagepathstats[i].pagepath.substring(0,70)+'</a></div><div class="gadash-pright">'+upagepathstats[i].count+'</div></div>';
439
  }
440
  }
441
  document.getElementById("gadash-pages").innerHTML='<br /><div class="gadash-pg">'+pgstatstable+'</div>';
469
  ucustomstats.sort( function(a,b){ return b.count - a.count } );
470
 
471
  var uvisittype = ["REFERRAL","ORGANIC","SOCIAL","CUSTOM"];
472
+ document.getElementById("gadash-tdo-right").innerHTML = '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ureferralsstats)+'"><div class="gadash-bleft">'+'<?php _e("REFERRAL", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[0])+'</div></div>';
473
+ document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ukeywordsstats)+'"><div class="gadash-bleft">'+'<?php _e("ORGANIC", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[1])+'</div></div>';
474
+ document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(usocialstats)+'"><div class="gadash-bleft">'+'<?php _e("SOCIAL", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[2])+'</div></div>';
475
+ document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ucustomstats)+'"><div class="gadash-bleft">'+'<?php _e("CAMPAIGN", 'ga-dash');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[3])+'</div></div>';
476
 
477
  var uvisitortype = ["DIRECT","NEW"];
478
  document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php _e("DIRECT", 'ga-dash');?>'+'</div><div class="gadash-bright">'+countsessions(data,uvisitortype[0])+'</div></div>';
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.1
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.1');
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.2
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.2');
90
  }
91
 
92
  // Plugin Path
languages/ga-dash-cs_CZ.mo ADDED
Binary file
languages/ga-dash-cs_CZ.po ADDED
@@ -0,0 +1,890 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Google Analytics Dashboard for WP
2
+ # This file is distributed under the same license as the Google Analytics Dashboard for WP package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Google Analytics Dashboard for WP\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
+ "POT-Creation-Date: 2015-04-27 19:26+0200\n"
8
+ "PO-Revision-Date: 2015-05-03 10:25+0100\n"
9
+ "Last-Translator: Marek Anýž\n"
10
+ "Language-Team: Alin Marcu\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
+ "X-Generator: Poedit 1.8beta1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "Language: cs_CZ\n"
20
+ "X-Poedit-SearchPath-0: ../.\n"
21
+
22
+ #: .././admin/item-reports.php:67
23
+ msgid "Analytics"
24
+ msgstr "Analýza"
25
+
26
+ #: .././admin/settings.php:94 .././admin/settings.php:202 .././admin/settings.php:338
27
+ #: .././admin/settings.php:820 .././admin/settings.php:1089
28
+ msgid "Settings saved."
29
+ msgstr "Nastavení uloženo"
30
+
31
+ #: .././admin/settings.php:96 .././admin/settings.php:204 .././admin/settings.php:340
32
+ #: .././admin/settings.php:797 .././admin/settings.php:807 .././admin/settings.php:816
33
+ #: .././admin/settings.php:822 .././admin/settings.php:834 .././admin/settings.php:1050
34
+ #: .././admin/settings.php:1075 .././admin/settings.php:1085 .././admin/settings.php:1091
35
+ #: .././admin/settings.php:1103
36
+ msgid "Cheating Huh?"
37
+ msgstr "Podvádět jo?"
38
+
39
+ #: .././admin/settings.php:100 .././admin/settings.php:208 .././admin/settings.php:344
40
+ #: .././admin/settings.php:659 .././admin/settings.php:848 .././admin/settings.php:1116
41
+ #, php-format
42
+ msgid "Something went wrong, check %1$s or %2$s."
43
+ msgstr "Něco je špatně, zkontroluj %1$s nebo %2$s."
44
+
45
+ #: .././admin/settings.php:100 .././admin/settings.php:208 .././admin/settings.php:344
46
+ #: .././admin/settings.php:659 .././admin/settings.php:848 .././admin/settings.php:1116
47
+ #: .././admin/setup.php:96 .././admin/setup.php:119
48
+ msgid "Errors & Debug"
49
+ msgstr "Chyby a ladění"
50
+
51
+ #: .././admin/settings.php:100 .././admin/settings.php:208 .././admin/settings.php:344
52
+ #: .././admin/settings.php:659 .././admin/settings.php:848 .././admin/settings.php:1116
53
+ msgid "authorize the plugin"
54
+ msgstr "autorizovat modul"
55
+
56
+ #: .././admin/settings.php:105
57
+ msgid "Google Analytics Frontend Settings"
58
+ msgstr "Nastavení Google Analytics pro veřejnou část"
59
+
60
+ #: .././admin/settings.php:116
61
+ #, php-format
62
+ msgid "Read %s for more information about Frontend Features and Options."
63
+ msgstr "Přečti si %s pro více informací o Možnostech veřejné části webu a možnostech."
64
+
65
+ #: .././admin/settings.php:116 .././admin/settings.php:224 .././admin/settings.php:369
66
+ #: .././admin/settings.php:682
67
+ msgid "this documentation page"
68
+ msgstr "tuto stránka dokumentace"
69
+
70
+ #: .././admin/settings.php:120 .././admin/settings.php:228
71
+ msgid "Permissions"
72
+ msgstr "Oprávnění"
73
+
74
+ #: .././admin/settings.php:123 .././admin/settings.php:231
75
+ msgid "Show stats to:"
76
+ msgstr "Zobrazit statistiky pro:"
77
+
78
+ #: .././admin/settings.php:162
79
+ msgid "show page sessions and users in frontend (after each article)"
80
+ msgstr "zobrazit stránku návštěv a uživatelů na veřejné části webu (za každým příspěvkem)"
81
+
82
+ #: .././admin/settings.php:173
83
+ msgid "show page searches (after each article)"
84
+ msgstr "zobraz vyhledávané termíny pro danou stránku (za každým příspěvkem)"
85
+
86
+ #: .././admin/settings.php:180 .././admin/settings.php:318 .././admin/settings.php:617
87
+ #: .././admin/settings.php:965 .././admin/settings.php:1253
88
+ msgid "Save Changes"
89
+ msgstr "Uložit změny"
90
+
91
+ #: .././admin/settings.php:213
92
+ msgid "Google Analytics Backend Settings"
93
+ msgstr "Nastavení pozadí Google Analytics"
94
+
95
+ #: .././admin/settings.php:224
96
+ #, php-format
97
+ msgid "Read %s for more information about Backend Features and Options."
98
+ msgstr "Přečti si %s pro více informací o možnostech pozadí webu a nastavení."
99
+
100
+ #: .././admin/settings.php:272
101
+ msgid "enable Switch View functionality"
102
+ msgstr "povol funkci Přepni Náhled"
103
+
104
+ #: .././admin/settings.php:283
105
+ msgid "enable reports on Posts List and Pages List"
106
+ msgstr "povolit report na seznamu příspěvků a seznamu stránek"
107
+
108
+ #: .././admin/settings.php:294
109
+ msgid "enable the main Dashboard Widget"
110
+ msgstr "povolit hlavní widget na nástěnce"
111
+
112
+ #: .././admin/settings.php:298
113
+ msgid "Real-Time Settings"
114
+ msgstr "Nastavení v reálném čase"
115
+
116
+ #: .././admin/settings.php:301
117
+ msgid "Maximum number of pages to display on real-time tab:"
118
+ msgstr "Maximální počet stránek zobrazených na záložce reálného času"
119
+
120
+ #: .././admin/settings.php:306
121
+ msgid "Location Settings"
122
+ msgstr "Nastavení Umístění"
123
+
124
+ #: .././admin/settings.php:310
125
+ msgid "Target Geo Map to country:"
126
+ msgstr "Cíl Geo Map k zemi"
127
+
128
+ #: .././admin/settings.php:347
129
+ msgid ""
130
+ "The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
131
+ "<strong>Enabled</strong>"
132
+ msgstr ""
133
+ "Komponenta sledování je zakázána. Měli byste nastavit <strong> Možnosti sledování </ strong> na "
134
+ "<strong> Povoleno </ strong>"
135
+
136
+ #: .././admin/settings.php:352
137
+ msgid "Google Analytics Tracking Code"
138
+ msgstr "Sledovací kód Google Analytics"
139
+
140
+ #: .././admin/settings.php:361
141
+ msgid "Basic Settings"
142
+ msgstr "Základní nastavení"
143
+
144
+ #: .././admin/settings.php:362 .././admin/settings.php:429
145
+ msgid "Events Tracking"
146
+ msgstr "Sledování událostí"
147
+
148
+ #: .././admin/settings.php:363 .././admin/settings.php:477
149
+ msgid "Custom Definitions"
150
+ msgstr "Vlastní definice"
151
+
152
+ #: .././admin/settings.php:364 .././admin/settings.php:575 .././admin/settings.php:1236
153
+ msgid "Exclude Tracking"
154
+ msgstr "Vyloučit ze sledování"
155
+
156
+ #: .././admin/settings.php:365
157
+ msgid "Advanced Settings"
158
+ msgstr "Pokročilá nastavení"
159
+
160
+ #: .././admin/settings.php:369
161
+ #, php-format
162
+ msgid "For more information about Tracking Options read %s."
163
+ msgstr "Pro více informací o Možnostech Sledování si přečtěte %s."
164
+
165
+ #: .././admin/settings.php:374
166
+ msgid "Tracking Settings"
167
+ msgstr "Nastavení sledování"
168
+
169
+ #: .././admin/settings.php:377
170
+ msgid "Tracking Options:"
171
+ msgstr "Možnosti sledování"
172
+
173
+ #: .././admin/settings.php:379
174
+ msgid "Disabled"
175
+ msgstr "Zakázat"
176
+
177
+ #: .././admin/settings.php:380
178
+ msgid "Enabled"
179
+ msgstr "Povolit"
180
+
181
+ #: .././admin/settings.php:388 .././admin/settings.php:912 .././admin/settings.php:933
182
+ #: .././admin/settings.php:1209 .././admin/widgets.php:71
183
+ msgid "View Name:"
184
+ msgstr "Zobrazované Jméno:"
185
+
186
+ #: .././admin/settings.php:388 .././admin/settings.php:933
187
+ msgid "Tracking ID:"
188
+ msgstr "Sledovací ID:"
189
+
190
+ #: .././admin/settings.php:388 .././admin/settings.php:933
191
+ msgid "Default URL:"
192
+ msgstr "Zákaldní URL:"
193
+
194
+ #: .././admin/settings.php:388 .././admin/settings.php:933
195
+ msgid "Time Zone:"
196
+ msgstr "Časová Zóna:"
197
+
198
+ #: .././admin/settings.php:393
199
+ msgid "Basic Tracking"
200
+ msgstr "Základní sledování"
201
+
202
+ #: .././admin/settings.php:396
203
+ msgid "Tracking Type:"
204
+ msgstr "Druh sledování"
205
+
206
+ #: .././admin/settings.php:398
207
+ msgid "Classic Analytics"
208
+ msgstr "Klasické Analytics"
209
+
210
+ #: .././admin/settings.php:399
211
+ msgid "Universal Analytics"
212
+ msgstr "Univerzální Analytics"
213
+
214
+ #: .././admin/settings.php:410
215
+ msgid "anonymize IPs while tracking"
216
+ msgstr "anonymizovat IP při sledování"
217
+
218
+ #: .././admin/settings.php:421
219
+ msgid "enable remarketing, demographics and interests reports"
220
+ msgstr "umožnit remarketing (rentabilita?), demografii a zprávy zájmů"
221
+
222
+ #: .././admin/settings.php:439
223
+ msgid "track downloads, mailto and outbound links"
224
+ msgstr "sledovat stahování, odkazy mail to (odeslat mail) a odchozí odkazy"
225
+
226
+ #: .././admin/settings.php:443
227
+ msgid "Downloads Regex:"
228
+ msgstr "Stažené Regex:"
229
+
230
+ #: .././admin/settings.php:454
231
+ msgid "track affiliate links matching this regex"
232
+ msgstr "sledovat odkazy, které sedí na tento Regex"
233
+
234
+ #: .././admin/settings.php:458
235
+ msgid "Affiliates Regex:"
236
+ msgstr "Členy Regexu"
237
+
238
+ #: .././admin/settings.php:469
239
+ msgid "track fragment identifiers, hashmarks (#) in URI links"
240
+ msgstr "sledování identifikátorů, hashmarks (#) v URI odkazech"
241
+
242
+ #: .././admin/settings.php:480
243
+ msgid "Authors:"
244
+ msgstr "Autoři:"
245
+
246
+ #: .././admin/settings.php:488
247
+ msgid "Publication Year:"
248
+ msgstr "Rok Zveřejnění:"
249
+
250
+ #: .././admin/settings.php:496
251
+ msgid "Categories:"
252
+ msgstr "Kategorie:"
253
+
254
+ #: .././admin/settings.php:504
255
+ msgid "User Type:"
256
+ msgstr "Uživatelké typ:"
257
+
258
+ #: .././admin/settings.php:516
259
+ msgid "Advanced Tracking"
260
+ msgstr "Pokročilé sledování"
261
+
262
+ #: .././admin/settings.php:519
263
+ msgid "Page Speed SR:"
264
+ msgstr "Rychlost stránky SR:"
265
+
266
+ #: .././admin/settings.php:530
267
+ msgid "exclude events from bounce-rate calculation"
268
+ msgstr "vyloučit události z výpočtů míry opuštění"
269
+
270
+ #: .././admin/settings.php:541
271
+ msgid "enable enhanced link attribution"
272
+ msgstr "povolit vylepšné vlastnosti odkazů"
273
+
274
+ #: .././admin/settings.php:552
275
+ msgid "enable AdSense account linking"
276
+ msgstr "povolit prolinkování účtu AdSense"
277
+
278
+ #: .././admin/settings.php:563
279
+ msgid "enable cross domain tracking"
280
+ msgstr "povolit sledování cross domain"
281
+
282
+ #: .././admin/settings.php:567
283
+ msgid "Cross Domains:"
284
+ msgstr "Cross Domains:"
285
+
286
+ #: .././admin/settings.php:578
287
+ msgid "Exclude tracking for:"
288
+ msgstr "Vynechat sledování pro:"
289
+
290
+ #: .././admin/settings.php:663
291
+ msgid "Google Analytics Errors & Debugging"
292
+ msgstr "Chyby a Ladění Google Analytics"
293
+
294
+ #: .././admin/settings.php:673
295
+ msgid "Errors & Details"
296
+ msgstr "Chyby a popisy"
297
+
298
+ #: .././admin/settings.php:674
299
+ msgid "Plugin Settings"
300
+ msgstr "Nastavení modulu:"
301
+
302
+ #: .././admin/settings.php:682
303
+ #, php-format
304
+ msgid "For errors and/or other issues check %s and related resources."
305
+ msgstr "Pro chyby a/nebo ostatní problémy zkontroluj %s a podobné zdroje."
306
+
307
+ #: .././admin/settings.php:687
308
+ msgid "Last Error detected"
309
+ msgstr "Detekovaná poslední chyba"
310
+
311
+ #: .././admin/settings.php:693 .././admin/settings.php:706
312
+ msgid "None"
313
+ msgstr "Nic"
314
+
315
+ #: .././admin/settings.php:700
316
+ msgid "Error Details"
317
+ msgstr "Detail chyby"
318
+
319
+ #: .././admin/settings.php:720
320
+ msgid "Plugin Configuration"
321
+ msgstr "Nastavení modulu"
322
+
323
+ #: .././admin/settings.php:742 .././admin/settings.php:1000
324
+ msgid ""
325
+ "Loading the required libraries. If this results in a blank screen or a fatal error, try this "
326
+ "solution:"
327
+ msgstr ""
328
+ "Nahrávání požadovaných knihoven. Pokud to má za následek prázdnou obrazovku nebo fatální chybu, "
329
+ "zkuste toto řešení:"
330
+
331
+ #: .././admin/settings.php:742
332
+ msgid "Library conflicts between WordPress plugins"
333
+ msgstr "Knihovna koliduje mezi moduly WordPressu"
334
+
335
+ #: .././admin/settings.php:757 .././admin/settings.php:1017
336
+ msgid "Plugin authorization succeeded."
337
+ msgstr "Modul byl autorizován."
338
+
339
+ #: .././admin/settings.php:772 .././admin/settings.php:1041
340
+ msgid ""
341
+ "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
342
+ "again, and use the red link to get your access code"
343
+ msgstr ""
344
+ "Přístupový kód <strong>NENÍ</strong> Vaše <strong>Sledovací ID</strong> (UA-XXXXX-X). Zkuste "
345
+ "to znovu a použijte červený odkaz pro získání přístupového kódu."
346
+
347
+ #: .././admin/settings.php:795 .././admin/settings.php:1073
348
+ msgid "Cleared Cache."
349
+ msgstr "Vyčištěná dočasná paměť (cache)."
350
+
351
+ #: .././admin/settings.php:804 .././admin/settings.php:1082
352
+ msgid "Token Reseted and Revoked."
353
+ msgstr "Token Resetován a Zrušen."
354
+
355
+ #: .././admin/settings.php:814
356
+ msgid "All errors reseted."
357
+ msgstr "Všechny chyby vymazány. (reseted)"
358
+
359
+ #: .././admin/settings.php:827 .././admin/settings.php:1096
360
+ msgid "All other domains/properties were removed."
361
+ msgstr "Všechny ostatní domény/nastavení byly odstraněny."
362
+
363
+ #: .././admin/settings.php:839 .././admin/settings.php:1108
364
+ msgid "Google Analytics Settings"
365
+ msgstr "Nastavení Google Analytics"
366
+
367
+ #: .././admin/settings.php:853 .././admin/settings.php:1121
368
+ msgid "Use the red link (see below) to generate and get your access code!"
369
+ msgstr "Použijte červený odkaz níže pro vygenerování a získání Vašeho přístupového kódu!"
370
+
371
+ #: .././admin/settings.php:864 .././admin/settings.php:1149
372
+ msgid "Plugin Authorization"
373
+ msgstr "Autorizace modulu"
374
+
375
+ #: .././admin/settings.php:869 .././admin/settings.php:1153
376
+ #, php-format
377
+ msgid ""
378
+ "You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
379
+ "requires a properly configured Google Analytics account!"
380
+ msgstr ""
381
+ "Měli byste shlédnout %1$s a přečíst si toto %2$s, než přikročíte k povolení. Tento modul "
382
+ "vyžaduje správně nakonfigurovaný účet Google Analytics!"
383
+
384
+ #: .././admin/settings.php:869 .././admin/settings.php:1153
385
+ msgid "video"
386
+ msgstr "video"
387
+
388
+ #: .././admin/settings.php:869 .././admin/settings.php:1153
389
+ msgid "tutorial"
390
+ msgstr "cvičení"
391
+
392
+ #: .././admin/settings.php:874 .././admin/settings.php:1160
393
+ msgid "use your own API Project credentials"
394
+ msgstr "použijte Vaše vlastní přístupové údaje projektového API"
395
+
396
+ #: .././admin/settings.php:878 .././admin/settings.php:1167
397
+ msgid "API Key:"
398
+ msgstr "Klíč API:"
399
+
400
+ #: .././admin/settings.php:882 .././admin/settings.php:1171
401
+ msgid "Client ID:"
402
+ msgstr "Klientské ID:"
403
+
404
+ #: .././admin/settings.php:886 .././admin/settings.php:1175
405
+ msgid "Client Secret:"
406
+ msgstr "Klientský klíč:"
407
+
408
+ #: .././admin/settings.php:896 .././admin/settings.php:1185
409
+ msgid "Clear Authorization"
410
+ msgstr "Smazat autorizaci."
411
+
412
+ #: .././admin/settings.php:896 .././admin/settings.php:971 .././admin/settings.php:1185
413
+ #: .././admin/settings.php:1260
414
+ msgid "Clear Cache"
415
+ msgstr "Smazat dočasnou paměť (cache)."
416
+
417
+ #: .././admin/settings.php:896
418
+ msgid "Reset Errors"
419
+ msgstr "Smazat chyby"
420
+
421
+ #: .././admin/settings.php:902 .././admin/setup.php:80 .././admin/setup.php:115
422
+ msgid "General Settings"
423
+ msgstr "Hlavní Nastavení"
424
+
425
+ #: .././admin/settings.php:905
426
+ msgid "Select View:"
427
+ msgstr "Zvolte pohled:"
428
+
429
+ #: .././admin/settings.php:916 .././admin/settings.php:1213
430
+ msgid "Property not found"
431
+ msgstr "Možnost nenalezena:"
432
+
433
+ #: .././admin/settings.php:921
434
+ msgid "Lock Selection"
435
+ msgstr "Uzamknout tvolené"
436
+
437
+ #: .././admin/settings.php:939
438
+ msgid "Theme Color:"
439
+ msgstr "Barva téma:"
440
+
441
+ #: .././admin/settings.php:947 .././admin/settings.php:1222
442
+ msgid "Automatic Updates"
443
+ msgstr "Automatické aktualizace"
444
+
445
+ #: .././admin/settings.php:957 .././admin/settings.php:1232
446
+ msgid "automatic updates for minor versions (security and maintenance releases only)"
447
+ msgstr "automatické aktualizace pro nedůležité aktualizace (jen bezpečnostní a údržbové)"
448
+
449
+ #: .././admin/settings.php:971 .././admin/settings.php:1260 .././admin/widgets.php:42
450
+ msgid "Authorize Plugin"
451
+ msgstr "Autorizovat modul"
452
+
453
+ #: .././admin/settings.php:1047
454
+ msgid "Properties refreshed."
455
+ msgstr "Možnosti obnoveny"
456
+
457
+ #: .././admin/settings.php:1131
458
+ msgid "Network Setup"
459
+ msgstr "Nastavení sítě"
460
+
461
+ #: .././admin/settings.php:1141
462
+ msgid "use a single Google Analytics account for the entire network"
463
+ msgstr "použít jeden účet Google Analytics pro celou síť"
464
+
465
+ #: .././admin/settings.php:1185
466
+ msgid "Refresh Properties"
467
+ msgstr "Obnovit možnosti"
468
+
469
+ #: .././admin/settings.php:1191
470
+ msgid "Properties/Views Settings"
471
+ msgstr "Možnosti/Zobrazení nastavení"
472
+
473
+ #: .././admin/settings.php:1246
474
+ msgid "exclude Super Admin tracking for the entire network"
475
+ msgstr "vypnout sledování Adminů pro celou síť"
476
+
477
+ #: .././admin/settings.php:1291
478
+ msgid "Setup Tutorial & Demo"
479
+ msgstr "Průvodce nastavení a ukázky"
480
+
481
+ #: .././admin/settings.php:1299
482
+ msgid "Support & Reviews"
483
+ msgstr "Podpora a hodnocení"
484
+
485
+ #: .././admin/settings.php:1306
486
+ #, php-format
487
+ msgid "Plugin documentation and support on %s"
488
+ msgstr "Dokumentace modulu a podpora na %s"
489
+
490
+ #: .././admin/settings.php:1313
491
+ #, php-format
492
+ msgid "Your feedback and review are both important, %s!"
493
+ msgstr "Vaše odezva a hodnocení jsou pro nás důležité, %s!"
494
+
495
+ #: .././admin/settings.php:1313
496
+ msgid "rate this plugin"
497
+ msgstr "ohodnoťte tento modul"
498
+
499
+ #: .././admin/settings.php:1319
500
+ msgid "Further Reading"
501
+ msgstr "Další čtení"
502
+
503
+ #: .././admin/settings.php:1326
504
+ #, php-format
505
+ msgid "%s by moving your website to HTTPS/SSL."
506
+ msgstr "%s přesunutím vaší sítě na HTTPS/SSL."
507
+
508
+ #: .././admin/settings.php:1326
509
+ msgid "Improve search rankings"
510
+ msgstr "Zlepšení vyhledávání žebříčku"
511
+
512
+ #: .././admin/settings.php:1333
513
+ #, php-format
514
+ msgid "Other %s written by the same author"
515
+ msgstr "Ostatní %s vytvořené stejným autorem"
516
+
517
+ #: .././admin/settings.php:1333
518
+ msgid "WordPress Plugins"
519
+ msgstr "moduly WordPressu"
520
+
521
+ #: .././admin/settings.php:1339
522
+ msgid "Other Services"
523
+ msgstr "Ostatní služby"
524
+
525
+ #: .././admin/settings.php:1346
526
+ #, php-format
527
+ msgid "Speed up your website and plug into a whole %s"
528
+ msgstr "Zrychlete své webové stránky a zapojte do celku %s"
529
+
530
+ #: .././admin/settings.php:1346
531
+ msgid "new level of site speed"
532
+ msgstr "nová úroveň rychlosti sítě"
533
+
534
+ #: .././admin/settings.php:1353
535
+ #, php-format
536
+ msgid "%s service with users tracking at IP level."
537
+ msgstr "Služba %s se sledováním uživatelů na úrovni IP."
538
+
539
+ #: .././admin/settings.php:1353
540
+ msgid "Web Analytics"
541
+ msgstr "Web Analýza"
542
+
543
+ #: .././admin/setup.php:76 .././admin/setup.php:111
544
+ msgid "Google Analytics"
545
+ msgstr "Google Analytics"
546
+
547
+ #: .././admin/setup.php:84
548
+ msgid "Backend Settings"
549
+ msgstr "Nastavení Pozadí"
550
+
551
+ #: .././admin/setup.php:88
552
+ msgid "Frontend Settings"
553
+ msgstr "Nastavení Popředí"
554
+
555
+ #: .././admin/setup.php:92
556
+ msgid "Tracking Code"
557
+ msgstr "Sledovací kód"
558
+
559
+ #: .././admin/setup.php:195 .././admin/widgets.php:126
560
+ msgid "Today"
561
+ msgstr "Dnes"
562
+
563
+ #: .././admin/setup.php:196 .././admin/widgets.php:127
564
+ msgid "Yesterday"
565
+ msgstr "Včera"
566
+
567
+ #: .././admin/setup.php:197 .././admin/widgets.php:128 .././front/widgets.php:74
568
+ #: .././front/widgets.php:182
569
+ msgid "Last 7 Days"
570
+ msgstr "Posledních 7 dní"
571
+
572
+ #: .././admin/setup.php:198 .././admin/widgets.php:130 .././front/widgets.php:80
573
+ #: .././front/widgets.php:184
574
+ msgid "Last 30 Days"
575
+ msgstr "Posledních 30 dní"
576
+
577
+ #: .././admin/setup.php:199 .././admin/widgets.php:131
578
+ msgid "Last 90 Days"
579
+ msgstr "Posledních 90 dní"
580
+
581
+ #: .././admin/setup.php:202 .././admin/setup.php:218
582
+ msgid "Unique Views"
583
+ msgstr "Unikátní shlédnutí"
584
+
585
+ #: .././admin/setup.php:203 .././admin/setup.php:219 .././admin/widgets.php:136
586
+ #: .././admin/widgets.php:875 .././tools/gapi.php:391
587
+ msgid "Users"
588
+ msgstr "Uživatelé"
589
+
590
+ #: .././admin/setup.php:204 .././admin/widgets.php:137
591
+ msgid "Organic"
592
+ msgstr "Přírodní"
593
+
594
+ #: .././admin/setup.php:205 .././admin/setup.php:220 .././admin/widgets.php:138
595
+ #: .././admin/widgets.php:879 .././tools/gapi.php:394
596
+ msgid "Page Views"
597
+ msgstr "Zobrazení Stránek"
598
+
599
+ #: .././admin/setup.php:206 .././admin/setup.php:221 .././admin/widgets.php:139
600
+ #: .././admin/widgets.php:883 .././tools/gapi.php:397
601
+ msgid "Bounce Rate"
602
+ msgstr "Míra opuštění"
603
+
604
+ #: .././admin/setup.php:207 .././admin/widgets.php:140
605
+ msgid "Location"
606
+ msgstr "Poloha"
607
+
608
+ #: .././admin/setup.php:208 .././admin/widgets.php:142 .././tools/gapi.php:566
609
+ msgid "Referrers"
610
+ msgstr "Odkazy"
611
+
612
+ #: .././admin/setup.php:209 .././admin/widgets.php:143 .././tools/gapi.php:612
613
+ #: .././tools/gapi.php:922
614
+ msgid "Searches"
615
+ msgstr "Vyhledávání"
616
+
617
+ #: .././admin/setup.php:210 .././admin/widgets.php:144
618
+ msgid "Traffic Details"
619
+ msgstr "Detail provozu"
620
+
621
+ #: .././admin/setup.php:213 .././admin/widgets.php:510 .././admin/widgets.php:607
622
+ #: .././admin/widgets.php:805 .././admin/widgets.php:917 .././front/item-reports.php:94
623
+ msgid "A JavaScript Error is blocking plugin resources!"
624
+ msgstr "Chyva JavaScriptu blokuje zdroje modulu."
625
+
626
+ #: .././admin/setup.php:214 .././admin/widgets.php:713
627
+ msgid "Traffic Mediums"
628
+ msgstr "Dopravní Media"
629
+
630
+ #: .././admin/setup.php:215 .././admin/widgets.php:729
631
+ msgid "Visitor Type"
632
+ msgstr "Druh Návštěvníka"
633
+
634
+ #: .././admin/setup.php:216 .././admin/widgets.php:745
635
+ msgid "Social Networks"
636
+ msgstr "Sociální sítě"
637
+
638
+ #: .././admin/setup.php:217 .././admin/widgets.php:761
639
+ msgid "Search Engines"
640
+ msgstr "Vyhledávače"
641
+
642
+ #: .././admin/setup.php:222 .././admin/widgets.php:887
643
+ msgid "Organic Search"
644
+ msgstr "Přírodní vyhledávání"
645
+
646
+ #: .././admin/setup.php:223 .././admin/widgets.php:891
647
+ msgid "Pages/Session"
648
+ msgstr "Stránky/Návštěvy"
649
+
650
+ #: .././admin/setup.php:224 .././admin/widgets.php:523 .././admin/widgets.php:541
651
+ #: .././admin/widgets.php:620 .././admin/widgets.php:638 .././admin/widgets.php:657
652
+ #: .././admin/widgets.php:676 .././admin/widgets.php:696 .././admin/widgets.php:819
653
+ #: .././admin/widgets.php:930 .././admin/widgets.php:949 .././front/item-reports.php:106
654
+ #: .././front/item-reports.php:125
655
+ msgid "Invalid response, more details in JavaScript Console (F12)."
656
+ msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
657
+
658
+ #: .././admin/setup.php:225
659
+ msgid "Not enough data collected"
660
+ msgstr "Nedostatečné množství dat"
661
+
662
+ #: .././admin/setup.php:226 .././admin/widgets.php:528 .././admin/widgets.php:546
663
+ #: .././admin/widgets.php:625 .././admin/widgets.php:643 .././admin/widgets.php:662
664
+ #: .././admin/widgets.php:681 .././admin/widgets.php:701 .././admin/widgets.php:824
665
+ #: .././admin/widgets.php:827 .././admin/widgets.php:935 .././admin/widgets.php:954
666
+ #: .././front/item-reports.php:111 .././front/item-reports.php:130 .././front/widgets.php:110
667
+ msgid "This report is unavailable"
668
+ msgstr "Toto hlášení není dostupné"
669
+
670
+ #: .././admin/setup.php:227
671
+ msgid "report generated by"
672
+ msgstr "hlášení vytvořené s pomocí"
673
+
674
+ #: .././admin/setup.php:267
675
+ msgid "Settings"
676
+ msgstr "Nastavení"
677
+
678
+ #: .././admin/widgets.php:33 .././front/widgets.php:22
679
+ msgid "Google Analytics Dashboard"
680
+ msgstr "Nástěnka Google Analytics"
681
+
682
+ #: .././admin/widgets.php:42
683
+ msgid "This plugin needs an authorization:"
684
+ msgstr "Tento modul potřebuje autorizovat."
685
+
686
+ #: .././admin/widgets.php:76
687
+ msgid "Something went wrong while retrieving profiles list."
688
+ msgstr "Něco se nepovedlo při načítání seznamu profilů."
689
+
690
+ #: .././admin/widgets.php:76
691
+ msgid "More details"
692
+ msgstr "Více detailů"
693
+
694
+ #: .././admin/widgets.php:89 .././admin/widgets.php:100
695
+ msgid "An admin should asign a default Google Analytics Profile."
696
+ msgstr "Admin by měl přiřadit základní profil Google Analytics."
697
+
698
+ #: .././admin/widgets.php:89 .././admin/widgets.php:100
699
+ msgid "Select Domain"
700
+ msgstr "Zvolte Doménu"
701
+
702
+ #: .././admin/widgets.php:105
703
+ msgid ""
704
+ "Something went wrong while retrieving property data. You need to create and properly configure a "
705
+ "Google Analytics account:"
706
+ msgstr ""
707
+ "Něco se nepovedlo při načítání dat vlastností. Musíte vytvořil platné nastavení pro účet Google "
708
+ "Analytics:"
709
+
710
+ #: .././admin/widgets.php:105
711
+ msgid "Find out more!"
712
+ msgstr "Chcete vědět víc?"
713
+
714
+ #: .././admin/widgets.php:125
715
+ msgid "Real-Time"
716
+ msgstr "Živě"
717
+
718
+ #: .././admin/widgets.php:129 .././front/widgets.php:77 .././front/widgets.php:183
719
+ msgid "Last 14 Days"
720
+ msgstr "Posledních 14 dní"
721
+
722
+ #: .././admin/widgets.php:135 .././admin/widgets.php:871 .././front/widgets.php:46
723
+ #: .././tools/gapi.php:406 .././tools/gapi.php:567 .././tools/gapi.php:613 .././tools/gapi.php:676
724
+ #: .././tools/gapi.php:786 .././tools/gapi.php:827 .././tools/gapi.php:923
725
+ msgid "Sessions"
726
+ msgstr "Návštěvy"
727
+
728
+ #: .././admin/widgets.php:141 .././tools/gapi.php:521
729
+ msgid "Pages"
730
+ msgstr "Stránky"
731
+
732
+ #: .././admin/widgets.php:232 .././admin/widgets.php:472
733
+ msgid "REFERRAL"
734
+ msgstr "POSTUPOVÁNÍ"
735
+
736
+ #: .././admin/widgets.php:236 .././admin/widgets.php:473
737
+ msgid "ORGANIC"
738
+ msgstr "PŘÍRODNÍ"
739
+
740
+ #: .././admin/widgets.php:240 .././admin/widgets.php:360 .././admin/widgets.php:474
741
+ msgid "SOCIAL"
742
+ msgstr "SOCIÁLNÍ"
743
+
744
+ #: .././admin/widgets.php:244 .././admin/widgets.php:363 .././admin/widgets.php:475
745
+ msgid "CAMPAIGN"
746
+ msgstr "KAMPAŇ"
747
+
748
+ #: .././admin/widgets.php:248 .././admin/widgets.php:366 .././admin/widgets.php:478
749
+ msgid "DIRECT"
750
+ msgstr "PŘÍMÝ"
751
+
752
+ #: .././admin/widgets.php:252 .././admin/widgets.php:479
753
+ msgid "NEW"
754
+ msgstr "NOVÝ"
755
+
756
+ #: .././admin/widgets.php:354
757
+ msgid "REFERRALS"
758
+ msgstr "POSTOUPENÍ"
759
+
760
+ #: .././admin/widgets.php:357
761
+ msgid "KEYWORDS"
762
+ msgstr "KLÍČOVÁ SLOVA"
763
+
764
+ #: .././front/item-reports.php:140
765
+ msgid "Views vs UniqueViews"
766
+ msgstr "Shlédnutí X Unikátní Shlédnutí"
767
+
768
+ #: .././front/item-reports.php:190
769
+ msgid "Google Analytics Reports"
770
+ msgstr "Hlášení Google Analytics"
771
+
772
+ #: .././front/widgets.php:23
773
+ msgid "Will display your google analytics stats in a widget"
774
+ msgstr "Zobrazí statistiky z Google Analytics ve widgetu"
775
+
776
+ #: .././front/widgets.php:46 .././tools/gapi.php:827
777
+ msgid "trend"
778
+ msgstr "trend"
779
+
780
+ #: .././front/widgets.php:133
781
+ msgid "Period:"
782
+ msgstr "Období:"
783
+
784
+ #: .././front/widgets.php:133
785
+ msgid "Sessions:"
786
+ msgstr "Návštěvy:"
787
+
788
+ #: .././front/widgets.php:137
789
+ msgid "generated by"
790
+ msgstr "vyrobil"
791
+
792
+ #: .././front/widgets.php:147
793
+ msgid "Google Analytics Stats"
794
+ msgstr "Statistiky Google Analytics"
795
+
796
+ #: .././front/widgets.php:154
797
+ msgid "Title:"
798
+ msgstr "Nadpis:"
799
+
800
+ #: .././front/widgets.php:161
801
+ msgid "Display:"
802
+ msgstr "Zobrazení:"
803
+
804
+ #: .././front/widgets.php:165
805
+ msgid "Chart & Totals"
806
+ msgstr "Graf a Celkové hodnoty"
807
+
808
+ #: .././front/widgets.php:166
809
+ msgid "Chart"
810
+ msgstr "Grafy"
811
+
812
+ #: .././front/widgets.php:167
813
+ msgid "Totals"
814
+ msgstr "Celkové hodnoty"
815
+
816
+ #: .././front/widgets.php:171
817
+ msgid "Anonymize stats:"
818
+ msgstr "Anonimizovat statistiky:"
819
+
820
+ #: .././front/widgets.php:178
821
+ msgid "Stats for:"
822
+ msgstr "Statistika pro:"
823
+
824
+ #: .././front/widgets.php:188
825
+ msgid "Give credits:"
826
+ msgstr "Ukaž vydavatele:"
827
+
828
+ #: .././gadwp.php:46 .././gadwp.php:55 .././gadwp.php:63
829
+ msgid "This is not allowed, read the documentation!"
830
+ msgstr "Toto není povoleno, přečtěte si dokumentaci."
831
+
832
+ #: .././tools/gapi.php:134
833
+ msgid "Use this link to get your access code:"
834
+ msgstr "Použijte tento link pro získání přístupového kódu."
835
+
836
+ #: .././tools/gapi.php:134
837
+ msgid "Get Access Code"
838
+ msgstr "Získat Přístupový Kód"
839
+
840
+ #: .././tools/gapi.php:138 .././tools/gapi.php:139
841
+ msgid "Use the red link to get your access code!"
842
+ msgstr "Použijte červený link pro získání přístupového kódu."
843
+
844
+ #: .././tools/gapi.php:138
845
+ msgid "Access Code:"
846
+ msgstr "Přístupový kód:"
847
+
848
+ #: .././tools/gapi.php:145
849
+ msgid "Save Access Code"
850
+ msgstr "Uložit přístupový kód"
851
+
852
+ #: .././tools/gapi.php:400
853
+ msgid "Organic Searches"
854
+ msgstr "Přírodní vyhledávání"
855
+
856
+ #: .././tools/gapi.php:403
857
+ msgid "Unique Page Views"
858
+ msgstr "Unikátní zobrazení stránky"
859
+
860
+ #: .././tools/gapi.php:411
861
+ msgid "Hour"
862
+ msgstr "Hodina"
863
+
864
+ #: .././tools/gapi.php:414 .././tools/gapi.php:826 .././tools/gapi.php:878
865
+ msgid "Date"
866
+ msgstr "Datum"
867
+
868
+ #: .././tools/gapi.php:522 .././tools/gapi.php:879
869
+ msgid "Views"
870
+ msgstr "Zobrazení"
871
+
872
+ #: .././tools/gapi.php:640
873
+ msgid "Countries"
874
+ msgstr "Státy"
875
+
876
+ #: .././tools/gapi.php:650
877
+ msgid "Cities from"
878
+ msgstr "Města z"
879
+
880
+ #: .././tools/gapi.php:722
881
+ msgid "Channels"
882
+ msgstr "Kanály"
883
+
884
+ #: .././tools/gapi.php:785
885
+ msgid "Type"
886
+ msgstr "Typ"
887
+
888
+ #: .././tools/gapi.php:880
889
+ msgid "UniqueViews"
890
+ msgstr "Unikátní shlédnutí"
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.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
 
@@ -79,7 +79,7 @@ Install the Google Analytics tracking code in less than a minute and customize i
79
 
80
  = Translations =
81
 
82
- Google Analytics Dashboard has been translated into the following languages: Arabic, Dutch, English, French, German, Hungarian, Italian, Japanese, Polish, Portuguese, and Spanish.
83
 
84
  = Further reading and info =
85
 
@@ -134,6 +134,11 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
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
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.2
7
+ Stable tag: 4.7.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
79
 
80
  = Translations =
81
 
82
+ Google Analytics Dashboard has been translated into the following languages: Arabic, Czech, Dutch, French, German, Hungarian, Italian, Japanese, Polish, Portuguese, and Spanish.
83
 
84
  = Further reading and info =
85
 
134
 
135
  == Changelog ==
136
 
137
+ = 4.7.2 =
138
+ - Enhancement: Czech translation
139
+ - Bug Fix: apply tooltips only on GADWP widget
140
+ - Bug Fix: use a custom data attribute instead of title to attach the tooltip
141
+
142
  = 4.7.1 =
143
  - Enhancement: Italian translation updated
144
  - Bug Fix: use url-encoding for API filters to avoid generating invalid parameters
realtime/jquery/jquery.ui.tooltip.html.js CHANGED
@@ -1,7 +1,8 @@
1
  jQuery(function () {
2
- jQuery(document).tooltip({
 
3
  content: function () {
4
- return jQuery(this).prop('title');
5
  }
6
  });
7
  });
1
  jQuery(function () {
2
+ jQuery('#gadash-widget *').tooltip({
3
+ items: "[data-tooltip]",
4
  content: function () {
5
+ return jQuery(this).attr("data-tooltip");
6
  }
7
  });
8
  });