Google Analytics - Version 3.3.4

Version Description

  • 7-Sep-2022
  • Update : Google OAuth 2.0 redirect_uri
Download this release

Release Info

Developer amribrahim
Plugin Icon 128x128 Google Analytics
Version 3.3.4
Comparing to
See all releases

Code changes from version 3.3.3 to 3.3.4

core/GoogleAnalyticsAPI.class.php CHANGED
@@ -15,6 +15,7 @@ class GoogleAnalyticsAPI{
15
 
16
  const TOKEN_URL = 'https://accounts.google.com/o/oauth2/token';
17
  const AUTH_URL = 'https://accounts.google.com/o/oauth2/auth';
 
18
  const SCOPE_URL = 'https://www.googleapis.com/auth/analytics.readonly';
19
  const ACCOUNTS_SUMMARY_URL = "https://www.googleapis.com/analytics/v3/management/accountSummaries";
20
  const PROFILES_SUMMARY_URL = "https://www.googleapis.com/analytics/v3/management/accounts/~all/webproperties/~all/profiles";
@@ -37,7 +38,7 @@ class GoogleAnalyticsAPI{
37
 
38
  public function __construct(){
39
  $this->httpRequest = new CallURL();
40
- $this->redirect_uri = 'urn:ietf:wg:oauth:2.0:oob';
41
  $this->start_date = date('Y-m-d', strtotime('-1 month'));
42
  $this->end_date = date('Y-m-d');
43
  $this->errorMessages['missingWebmasterSiteUrl'] = __('Missing Search Console Property URL - Please use the <b>Settings</b> tab to choose a valid <b>Search Console Property URL</b>.', 'lara-google-analytics');
@@ -98,6 +99,7 @@ class GoogleAnalyticsAPI{
98
  }
99
 
100
  private function httpRequest ($url, $query, $method){
 
101
  $doCall = $this->httpRequest->doQuickCall($url, $query, $method);
102
  $response = json_decode($doCall['Response'], true);
103
  if ($doCall['HTTP_Status_Code'] === 200){
15
 
16
  const TOKEN_URL = 'https://accounts.google.com/o/oauth2/token';
17
  const AUTH_URL = 'https://accounts.google.com/o/oauth2/auth';
18
+ const REDIRECT_URI = lrgawidget_plugin_redirect_uri;
19
  const SCOPE_URL = 'https://www.googleapis.com/auth/analytics.readonly';
20
  const ACCOUNTS_SUMMARY_URL = "https://www.googleapis.com/analytics/v3/management/accountSummaries";
21
  const PROFILES_SUMMARY_URL = "https://www.googleapis.com/analytics/v3/management/accounts/~all/webproperties/~all/profiles";
38
 
39
  public function __construct(){
40
  $this->httpRequest = new CallURL();
41
+ $this->redirect_uri = self::REDIRECT_URI;
42
  $this->start_date = date('Y-m-d', strtotime('-1 month'));
43
  $this->end_date = date('Y-m-d');
44
  $this->errorMessages['missingWebmasterSiteUrl'] = __('Missing Search Console Property URL - Please use the <b>Settings</b> tab to choose a valid <b>Search Console Property URL</b>.', 'lara-google-analytics');
99
  }
100
 
101
  private function httpRequest ($url, $query, $method){
102
+ if (defined("_CURRENT_QUOTAUSER_")){ $query["quotaUser"] = _CURRENT_QUOTAUSER_;}
103
  $doCall = $this->httpRequest->doQuickCall($url, $query, $method);
104
  $response = json_decode($doCall['Response'], true);
105
  if ($doCall['HTTP_Status_Code'] === 200){
core/callURL.class.php CHANGED
@@ -72,7 +72,7 @@ class CallURL{
72
  $this->callOptions[CURLOPT_POST] = true;
73
  if ($this->jsonPost === true){
74
  $this->callOptions[CURLOPT_HTTPHEADER] = array("Content-Type: application/json; charset=UTF-8");
75
- $this->callOptions[CURLOPT_POSTFIELDS] = $this->query;
76
  }else{
77
  $this->callOptions[CURLOPT_POSTFIELDS] = http_build_query($this->query, '', '&');
78
  }
72
  $this->callOptions[CURLOPT_POST] = true;
73
  if ($this->jsonPost === true){
74
  $this->callOptions[CURLOPT_HTTPHEADER] = array("Content-Type: application/json; charset=UTF-8");
75
+ $this->callOptions[CURLOPT_POSTFIELDS] = json_encode($this->query, true);
76
  }else{
77
  $this->callOptions[CURLOPT_POSTFIELDS] = http_build_query($this->query, '', '&');
78
  }
core/review.notice.php CHANGED
@@ -36,8 +36,8 @@ class ReviewNotice {
36
 
37
  public static function review_notice(){
38
 
39
- $message = __('Thank you for using <b>Lara Google Analytics</b> - WordPress plugin. We hope it has saved your valuable time and efforts!', 'lara-google-analytics');
40
- $message .= "<br><br>".__('If you have a free moment, and want to help us spread the word and boost our motivation, please do us a BIG favour and give us 5 Stars rating on wordpress .. The more reviews we get, the more cool features we will add to the plugin :)', 'lara-google-analytics');
41
 
42
  $btns = '<a href="https://wordpress.org/support/plugin/lara-google-analytics/reviews/" target="_blank"><button class="btn" id="rating" type="button">';
43
  $btns .= '<span><i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i></span>&nbsp;&nbsp;';
36
 
37
  public static function review_notice(){
38
 
39
+ $message = __('Thank you for using <b>Lara Google Analytics</b> - widget. We hope it has saved your valuable time and efforts!', 'lara-google-analytics');
40
+ $message .= "<br><br>".__('If you have a free moment, and want to help us spread the word and boost our motivation, please do us a BIG favour and give us 5 Stars rating .. The more reviews we get, the more cool features we will add to the plugin :)', 'lara-google-analytics');
41
 
42
  $btns = '<a href="https://wordpress.org/support/plugin/lara-google-analytics/reviews/" target="_blank"><button class="btn" id="rating" type="button">';
43
  $btns .= '<span><i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i> <i class="fas fa-star fa-fw"></i></span>&nbsp;&nbsp;';
core/system/wordpress/system.bootstrap.class.php CHANGED
@@ -11,8 +11,9 @@ namespace Lara\Widgets\GoogleAnalytics;
11
  if (!defined("ABSPATH"))
12
  die("This file cannot be accessed directly");
13
 
14
- define ('lrgawidget_plugin_client_id', "789117741534-frb075bn85jk68ufpjg56s08hf85r007.apps.googleusercontent.com");
15
- define ('lrgawidget_plugin_client_secret', "ZkJpBFuNFwv65e36C6mwnihQ");
 
16
 
17
  define ("lrgawidget_system_bootstrap_loaded", true);
18
 
11
  if (!defined("ABSPATH"))
12
  die("This file cannot be accessed directly");
13
 
14
+ define ('lrgawidget_plugin_client_id', "789117741534-0n8ad88vo7jepbi04nr3bhvp8b4lj3re.apps.googleusercontent.com");
15
+ define ('lrgawidget_plugin_client_secret', "2d2gTzTdXcp8Hg1NAcql7MRf");
16
+ define ('lrgawidget_plugin_redirect_uri', "https://auth.xtraorbit.com");
17
 
18
  define ("lrgawidget_system_bootstrap_loaded", true);
19
 
dist/js/lrgalite-main.js CHANGED
@@ -472,6 +472,7 @@ function populateViews(){
472
  if (webProperty.id == webPropertyID){
473
  $("#lrgawidget-propname").html(webProperty.name);
474
  $("#lrgawidget-propurl").html(webProperty.websiteUrl+ " - [ " + webProperty.id + " ] ");
 
475
  webPropertyUrl = webProperty.websiteUrl;
476
  if (webProperty.profiles){
477
  $.each(webProperty.profiles, function( index, profile ) {
472
  if (webProperty.id == webPropertyID){
473
  $("#lrgawidget-propname").html(webProperty.name);
474
  $("#lrgawidget-propurl").html(webProperty.websiteUrl+ " - [ " + webProperty.id + " ] ");
475
+ $("#lrgawidget-propid").html(webProperty.id);
476
  webPropertyUrl = webProperty.websiteUrl;
477
  if (webProperty.profiles){
478
  $.each(webProperty.profiles, function( index, profile ) {
dist/js/lrgawidget.js CHANGED
@@ -174,6 +174,7 @@ function populateViews(){
174
  if (webProperty.id == webPropertyID){
175
  $("#lrgawidget-propname").html(webProperty.name);
176
  $("#lrgawidget-propurl").html(webProperty.websiteUrl+ " - [ " + webProperty.id + " ] ");
 
177
  webPropertyUrl = webProperty.websiteUrl;
178
  if (webProperty.profiles){
179
  $.each(webProperty.profiles, function( index, profile ) {
174
  if (webProperty.id == webPropertyID){
175
  $("#lrgawidget-propname").html(webProperty.name);
176
  $("#lrgawidget-propurl").html(webProperty.websiteUrl+ " - [ " + webProperty.id + " ] ");
177
+ $("#lrgawidget-propid").html(webProperty.id);
178
  webPropertyUrl = webProperty.websiteUrl;
179
  if (webProperty.profiles){
180
  $.each(webProperty.profiles, function( index, profile ) {
languages/lara-google-analytics.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Lara Google Analytics\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2021-01-18 20:21+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -13,38 +13,38 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/\n"
16
- "X-Loco-Version: 2.5.0; wp-5.7-alpha-49973\n"
17
  "X-Domain: lara-google-analytics"
18
 
19
- #: core/lrgawidget.class.php:93 widgets/lrgawidget.php:529
20
  msgid "% New Sessions"
21
  msgstr ""
22
 
23
- #: widgets/lrgawidget.php:1022
24
  msgid "(filtered from _MAX_ total entries)"
25
  msgstr ""
26
 
27
- #: widgets/lrgawidget.php:176
28
  msgid "1"
29
  msgstr ""
30
 
31
- #: widgets/lrgawidget.php:910
32
  msgid "12 Months of Free Updates and Support"
33
  msgstr ""
34
 
35
- #: widgets/lrgawidget.php:177
36
  msgid "2"
37
  msgstr ""
38
 
39
- #: widgets/lrgawidget.php:178
40
  msgid "3"
41
  msgstr ""
42
 
43
- #: widgets/lrgawidget.php:1037
44
  msgid ": activate to sort column ascending"
45
  msgstr ""
46
 
47
- #: widgets/lrgawidget.php:1038
48
  msgid ": activate to sort column descending"
49
  msgstr ""
50
 
@@ -56,7 +56,7 @@ msgstr ""
56
  msgid "<b>Mac/Apple:</b> Apple + R <u>or</u> Command + R"
57
  msgstr ""
58
 
59
- #: widgets/lrgawidget.php:712
60
  msgid ""
61
  "<b>Position</b> is the average ranking of your website URLs for that query "
62
  "or keyword, on Google search results."
@@ -66,38 +66,38 @@ msgstr ""
66
  msgid "<b>Windows:</b> Ctrl + F5 <u>or</u> SHIFT + Reload for firefox"
67
  msgstr ""
68
 
69
- #: widgets/lrgawidget.php:951
70
  msgid ""
71
  "<b>XtraOrbit</b> has been providing a wide range of services <b>since "
72
  "2002</b>, including <b>Web Hosting</b>, <b>Domain Names</b> & <b>Web "
73
  "Development</b>."
74
  msgstr ""
75
 
76
- #: widgets/lrgawidget.php:222 widgets/lrgawidget.php:311
77
  msgid "Access Code"
78
  msgstr ""
79
 
80
- #: widgets/lrgawidget.php:350
81
  msgid "Account"
82
  msgstr ""
83
 
84
- #: widgets/lrgawidget.php:402
85
  msgid "Account Name"
86
  msgstr ""
87
 
88
- #: widgets/lrgawidget.php:575
89
  msgid "Active Page"
90
  msgstr ""
91
 
92
- #: widgets/lrgawidget.php:575
93
  msgid "Active Users"
94
  msgstr ""
95
 
96
- #: widgets/lrgawidget.php:565
97
  msgid "active users on site"
98
  msgstr ""
99
 
100
- #: widgets/lrgawidget.php:381
101
  msgid "Add <b>Google Universal Analytics</b> tracking code to all pages."
102
  msgstr ""
103
 
@@ -105,11 +105,11 @@ msgstr ""
105
  msgid "Administrator [Change Settings]"
106
  msgstr ""
107
 
108
- #: widgets/lrgawidget.php:244
109
  msgid "Advanced Setup"
110
  msgstr ""
111
 
112
- #: widgets/lrgawidget.php:437
113
  msgid ""
114
  "After adding your website to <b>Google Search Console</b> and verifying "
115
  "ownership, clich <b>Reload</b>, to reload the <b>Search Console Property "
@@ -121,36 +121,36 @@ msgstr ""
121
  msgid "All Orders"
122
  msgstr ""
123
 
124
- #: widgets/lrgawidget.php:1041
125
  msgid ""
126
  "All saved authentication data will be removed. Do you want to continue ?!"
127
  msgstr ""
128
 
129
- #: widgets/lrgawidget.php:1058
130
  msgid "Apply"
131
  msgstr ""
132
 
133
- #: widgets/lrgawidget.php:1077
134
  msgid "April"
135
  msgstr ""
136
 
137
- #: widgets/lrgawidget.php:1081
138
  msgid "August"
139
  msgstr ""
140
 
141
- #: widgets/lrgawidget.php:177
142
  msgid "Authorize APP"
143
  msgstr ""
144
 
145
- #: widgets/lrgawidget.php:324
146
  msgid "Authorize App"
147
  msgstr ""
148
 
149
- #: core/lrgawidget.class.php:95 widgets/lrgawidget.php:515
150
  msgid "Avg. Session Duration"
151
  msgstr ""
152
 
153
- #: widgets/lrgawidget.php:330
154
  msgid ""
155
  "Be sure to use the same email account that is linked to your <b>Google "
156
  "Analytics</b> and <b>Google Search Console</b> (formerly, Google Webmaster "
@@ -161,11 +161,11 @@ msgstr ""
161
  msgid "beta"
162
  msgstr ""
163
 
164
- #: core/lrgawidget.class.php:94 widgets/lrgawidget.php:522
165
  msgid "Bounce Rate"
166
  msgstr ""
167
 
168
- #: widgets/lrgawidget.php:609
169
  msgid "Browser"
170
  msgstr ""
171
 
@@ -173,30 +173,30 @@ msgstr ""
173
  msgid "Browsers"
174
  msgstr ""
175
 
176
- #: widgets/lrgawidget.php:894
177
  msgid "Browsers versions (IE 6, IE 7 .. etc.)."
178
  msgstr ""
179
 
180
- #: widgets/lrgawidget.php:930
181
  msgid "Buy Now"
182
  msgstr ""
183
 
184
- #: widgets/lrgawidget.php:868
185
  msgid "Buy the Premium version and get access to these amazing features"
186
  msgstr ""
187
 
188
- #: widgets/lrgawidget.php:247
189
  msgid ""
190
  "By clicking on <b>Start Advanced Setup</b> button below, The setup wizard "
191
  "will guide you through creating and/or configuring your own Google "
192
  "Application."
193
  msgstr ""
194
 
195
- #: widgets/lrgawidget.php:1049
196
  msgid "cached"
197
  msgstr ""
198
 
199
- #: widgets/lrgawidget.php:1059
200
  msgid "Cancel"
201
  msgstr ""
202
 
@@ -204,7 +204,7 @@ msgstr ""
204
  msgid "Cancelled"
205
  msgstr ""
206
 
207
- #: widgets/lrgawidget.php:421
208
  msgid "Cannot find your Google Analytics property ?"
209
  msgstr ""
210
 
@@ -216,50 +216,50 @@ msgstr ""
216
  msgid "Change Date Range"
217
  msgstr ""
218
 
219
- #: widgets/lrgawidget.php:904
220
  msgid "Check any Date Range, not just the last 30 days"
221
  msgstr ""
222
 
223
- #: widgets/lrgawidget.php:917
224
  msgid ""
225
  "Check the<strong> Demo</strong> to see exactly how the premium version looks "
226
  "like, and what you will get from it without leaving your wordpress dashboard"
227
  msgstr ""
228
 
229
- #: widgets/lrgawidget.php:209 widgets/lrgawidget.php:331
230
  msgid ""
231
  "Click <b>Allow</b>, then copy and paste the access code here, and click <b>"
232
  "Submit</b>."
233
  msgstr ""
234
 
235
- #: widgets/lrgawidget.php:287
236
  msgid ""
237
  "Click on <b>CREATE PROJECT</b>, choose a <b>Project name</b>, then click <b>"
238
  "CREATE</b>."
239
  msgstr ""
240
 
241
- #: widgets/lrgawidget.php:204
242
  msgid ""
243
  "Click on <b>Sign in with Google</b> button below, and a pop-up window will "
244
  "open, asking you to allow <b>Lara Analytics Widget</b> to access the "
245
  "following:"
246
  msgstr ""
247
 
248
- #: widgets/lrgawidget.php:325
249
  msgid ""
250
  "Click on <b>Sign in with Google</b> button below, and a pop-up window will "
251
  "open, asking you to allow the <b>app you just created</b> to :"
252
  msgstr ""
253
 
254
- #: widgets/lrgawidget.php:706
255
  msgid "Clicks"
256
  msgstr ""
257
 
258
- #: widgets/lrgawidget.php:261
259
  msgid "Client ID"
260
  msgstr ""
261
 
262
- #: widgets/lrgawidget.php:269
263
  msgid "Client Secret"
264
  msgstr ""
265
 
@@ -267,7 +267,7 @@ msgstr ""
267
  msgid "Close"
268
  msgstr ""
269
 
270
- #: widgets/lrgawidget.php:954
271
  msgid "Come, check us out!"
272
  msgstr ""
273
 
@@ -289,11 +289,11 @@ msgstr ""
289
  msgid "Countries"
290
  msgstr ""
291
 
292
- #: widgets/lrgawidget.php:590
293
  msgid "Country"
294
  msgstr ""
295
 
296
- #: widgets/lrgawidget.php:176 widgets/lrgawidget.php:282
297
  msgid "Create Google APP"
298
  msgstr ""
299
 
@@ -301,7 +301,7 @@ msgstr ""
301
  msgid "Created"
302
  msgstr ""
303
 
304
- #: widgets/lrgawidget.php:706
305
  msgid "CTR"
306
  msgstr ""
307
 
@@ -312,26 +312,26 @@ msgid ""
312
  "cURL extension for PHP."
313
  msgstr ""
314
 
315
- #: widgets/lrgawidget.php:1062
316
  msgid "Custom Range"
317
  msgstr ""
318
 
319
- #: core/system/wordpress/system.bootstrap.class.php:66
320
- #: core/system/wordpress/system.bootstrap.class.php:80
321
- #: core/system/wordpress/system.bootstrap.class.php:83
322
- #: core/system/wordpress/system.bootstrap.class.php:86
323
  msgid "DataBase Error .. please contact an administrator"
324
  msgstr ""
325
 
326
- #: widgets/lrgawidget.php:1085
327
  msgid "December"
328
  msgstr ""
329
 
330
- #: widgets/lrgawidget.php:668
331
  msgid "Device Type"
332
  msgstr ""
333
 
334
- #: widgets/lrgawidget.php:896
335
  msgid "Device Types and brands (Samsung, Apple .. etc.)."
336
  msgstr ""
337
 
@@ -347,7 +347,7 @@ msgstr ""
347
  msgid "eCommerce Graphs"
348
  msgstr ""
349
 
350
- #: widgets/lrgawidget.php:880
351
  msgid ""
352
  "eCommerce graphs : </b>Highly customized earnings graphs, for popular "
353
  "WordPress eCommerce plugins, like WooCommerce."
@@ -361,11 +361,11 @@ msgstr ""
361
  msgid "Empty Series"
362
  msgstr ""
363
 
364
- #: widgets/lrgawidget.php:385
365
  msgid "Enable eCommerce graphs."
366
  msgstr ""
367
 
368
- #: widgets/lrgawidget.php:201
369
  msgid "Express Setup"
370
  msgstr ""
371
 
@@ -378,36 +378,36 @@ msgstr ""
378
  #: core/lrgawidget.handler.php:38 core/lrgawidget.handler.php:103
379
  #: core/lrgawidget.handler.php:106 core/lrgawidget.permissions.php:106
380
  #: widgets/lrgawidget.php:29 widgets/lrgawidget.php:50
381
- #: core/system/wordpress/system.bootstrap.class.php:66
382
- #: core/system/wordpress/system.bootstrap.class.php:80
383
- #: core/system/wordpress/system.bootstrap.class.php:83
384
- #: core/system/wordpress/system.bootstrap.class.php:86
385
  msgid "Fatal Error"
386
  msgstr ""
387
 
388
- #: widgets/lrgawidget.php:1075
389
  msgid "February"
390
  msgstr ""
391
 
392
- #: widgets/lrgawidget.php:1031
393
  msgid "First"
394
  msgstr ""
395
 
396
- #: widgets/lrgawidget.php:1070
397
  msgid "Fr"
398
  msgstr ""
399
 
400
- #: widgets/lrgawidget.php:1060
401
  msgid "From"
402
  msgstr ""
403
 
404
- #: widgets/lrgawidget.php:293
405
  msgid ""
406
  "From the side menu, click on <b>Credentials</b>, then click on <b>CREATE "
407
  "CREDENTIALS</b>, and select <b>OAuth client ID</b>."
408
  msgstr ""
409
 
410
- #: widgets/lrgawidget.php:288
411
  msgid ""
412
  "From the top <b>Search for APIs and Services</b> box, search for <b>Google "
413
  "Analytics API</b>, select it, then click <b>ENABLE</b>."
@@ -419,11 +419,11 @@ msgid ""
419
  "which also inserts latest Google Analytics tracking code to your pages."
420
  msgstr ""
421
 
422
- #: widgets/lrgawidget.php:188
423
  msgid "Go Back to Express Setup"
424
  msgstr ""
425
 
426
- #: widgets/lrgawidget.php:150 widgets/lrgawidget.php:867
427
  msgid "Go Premium !"
428
  msgstr ""
429
 
@@ -432,7 +432,7 @@ msgstr ""
432
  msgid "Google Analytics"
433
  msgstr ""
434
 
435
- #: core/GoogleAnalyticsAPI.class.php:85 core/GoogleAnalyticsAPI.class.php:97
436
  msgid ""
437
  "Google Replied with unexpected replay, enable debugging to check the reply"
438
  msgstr ""
@@ -441,7 +441,7 @@ msgstr ""
441
  msgid "Graph Options"
442
  msgstr ""
443
 
444
- #: widgets/lrgawidget.php:974
445
  msgid "Help & Support"
446
  msgstr ""
447
 
@@ -462,11 +462,11 @@ msgstr ""
462
  msgid "I already rated it"
463
  msgstr ""
464
 
465
- #: widgets/lrgawidget.php:545 widgets/lrgawidget.php:575
466
- #: widgets/lrgawidget.php:609 widgets/lrgawidget.php:629
467
- #: widgets/lrgawidget.php:649 widgets/lrgawidget.php:668
468
- #: widgets/lrgawidget.php:687 widgets/lrgawidget.php:706
469
- #: widgets/lrgawidget.php:731
470
  msgid "ID"
471
  msgstr ""
472
 
@@ -478,7 +478,7 @@ msgid ""
478
  "it."
479
  msgstr ""
480
 
481
- #: widgets/lrgawidget.php:975
482
  msgid ""
483
  "If you are facing any issues, need support or have a new feature request, "
484
  "visit the official plugin support forum, where you will be able to submit a "
@@ -491,20 +491,27 @@ msgid ""
491
  "<b>clear the cache memory of your browser</b>."
492
  msgstr ""
493
 
494
- #: widgets/lrgawidget.php:211
495
  msgid ""
496
  "If you are using the <b>premium</b> version of the plugin, that email "
497
  "account should also be linked to your <b>Google Search Console</b>."
498
  msgstr ""
499
 
500
- #: widgets/lrgawidget.php:436
501
  msgid ""
502
  "If you cannot find your website, please go to <a href=\"https://www.google."
503
  "com/webmasters/tools/\" target=\"_blank\">Google Search Console</a> and "
504
  "click on <b>Add a property</b>, to add your website."
505
  msgstr ""
506
 
507
- #: core/review.notice.php:40 widgets/lrgawidget.php:965
 
 
 
 
 
 
 
508
  msgid ""
509
  "If you have a free moment, and want to help us spread the word and boost our "
510
  "motivation, please do us a BIG favour and give us 5 Stars rating on "
@@ -512,7 +519,7 @@ msgid ""
512
  "the plugin :)"
513
  msgstr ""
514
 
515
- #: widgets/lrgawidget.php:422
516
  msgid ""
517
  "If you have recently created a new property, you might not see it here, as "
518
  "the new Google API for <b>GA4</b> properties is still in <u><a href=\"https:"
@@ -520,23 +527,23 @@ msgid ""
520
  "target=\"_blank\">beta</a></u>."
521
  msgstr ""
522
 
523
- #: widgets/lrgawidget.php:248
524
  msgid ""
525
  "If you want a quick start, or just trying the widget, use the <b>Express "
526
  "Setup</b> on the left."
527
  msgstr ""
528
 
529
- #: widgets/lrgawidget.php:210
530
  msgid ""
531
  "If you were asked to login, be sure to use the same email account that is "
532
  "linked to your <b>Google Analytics</b>."
533
  msgstr ""
534
 
535
- #: widgets/lrgawidget.php:706
536
  msgid "Impressions"
537
  msgstr ""
538
 
539
- #: widgets/lrgawidget.php:1051
540
  msgid "inactive"
541
  msgstr ""
542
 
@@ -544,7 +551,7 @@ msgstr ""
544
  msgid "Income"
545
  msgstr ""
546
 
547
- #: widgets/lrgawidget.php:1042
548
  msgid ""
549
  "Initial Setup Required! - Please contact an administratior to complete the "
550
  "widget setup."
@@ -556,27 +563,27 @@ msgstr ""
556
  msgid "Invalid Call"
557
  msgstr ""
558
 
559
- #: core/GoogleAnalyticsAPI.class.php:130
560
  msgid "Invalid Property"
561
  msgstr ""
562
 
563
- #: core/GoogleAnalyticsAPI.class.php:85 core/GoogleAnalyticsAPI.class.php:97
564
  msgid "Invalid Reply"
565
  msgstr ""
566
 
567
- #: widgets/lrgawidget.php:1074
568
  msgid "January"
569
  msgstr ""
570
 
571
- #: widgets/lrgawidget.php:1080
572
  msgid "July"
573
  msgstr ""
574
 
575
- #: widgets/lrgawidget.php:1079
576
  msgid "June"
577
  msgstr ""
578
 
579
- #: widgets/lrgawidget.php:706
580
  msgid "Keyword"
581
  msgstr ""
582
 
@@ -584,11 +591,11 @@ msgstr ""
584
  msgid "Keywords"
585
  msgstr ""
586
 
587
- #: widgets/lrgawidget.php:886
588
  msgid "Keywords ( provided by Google Search Console)."
589
  msgstr ""
590
 
591
- #: widgets/lrgawidget.php:629
592
  msgid "Language"
593
  msgstr ""
594
 
@@ -600,27 +607,27 @@ msgstr ""
600
  msgid "Lara's Google Analytics"
601
  msgstr ""
602
 
603
- #: widgets/lrgawidget.php:1032
604
  msgid "Last"
605
  msgstr ""
606
 
607
- #: widgets/lrgawidget.php:1046
608
  msgid "Last 30 Days"
609
  msgstr ""
610
 
611
- #: widgets/lrgawidget.php:1045
612
  msgid "Last 7 Days"
613
  msgstr ""
614
 
615
- #: widgets/lrgawidget.php:1048
616
  msgid "Last Month"
617
  msgstr ""
618
 
619
- #: widgets/lrgawidget.php:920
620
  msgid "Launch Demo"
621
  msgstr ""
622
 
623
- #: core/review.notice.php:44 widgets/lrgawidget.php:967
624
  msgid "Let's do it, You deserve it"
625
  msgstr ""
626
 
@@ -628,39 +635,39 @@ msgstr ""
628
  msgid "Loading data, please wait !"
629
  msgstr ""
630
 
631
- #: widgets/lrgawidget.php:1026
632
  msgid "Loading..."
633
  msgstr ""
634
 
635
- #: widgets/lrgawidget.php:391
636
  msgid "Lock settings"
637
  msgstr ""
638
 
639
- #: widgets/lrgawidget.php:879
640
  msgid ""
641
  "Lock Settings : </b>Prevent users from changing the widget settings or "
642
  "viewing other Google analytics profiles."
643
  msgstr ""
644
 
645
- #: widgets/lrgawidget.php:166
646
  msgid "Make sure that your group has proper permissions to access the widget."
647
  msgstr ""
648
 
649
- #: widgets/lrgawidget.php:1076
650
  msgid "March"
651
  msgstr ""
652
 
653
- #: widgets/lrgawidget.php:1078
654
  msgid "May"
655
  msgstr ""
656
 
657
- #: core/GoogleAnalyticsAPI.class.php:43
658
  msgid ""
659
  "Missing Search Console Property URL - Please use the <b>Settings</b> tab to "
660
  "choose a valid <b>Search Console Property URL</b>."
661
  msgstr ""
662
 
663
- #: widgets/lrgawidget.php:1066
664
  msgid "Mo"
665
  msgstr ""
666
 
@@ -668,25 +675,25 @@ msgstr ""
668
  msgid "Modified"
669
  msgstr ""
670
 
671
- #: widgets/lrgawidget.php:877
672
  msgid ""
673
  "Multisite Multi-Network enabled : </b>Every blog/site in your network can "
674
  "has its own analytics tracking code and dashboard widget."
675
  msgstr ""
676
 
677
- #: widgets/lrgawidget.php:1033
678
  msgid "Next"
679
  msgstr ""
680
 
681
- #: widgets/lrgawidget.php:1053
682
  msgid "No active users"
683
  msgstr ""
684
 
685
- #: widgets/lrgawidget.php:1019
686
  msgid "No data available in table"
687
  msgstr ""
688
 
689
- #: widgets/lrgawidget.php:1044
690
  msgid ""
691
  "No data available in table. <span class='pull-left'><ul><li>Did you <a "
692
  "href='https://support.google.com/webmasters/answer/34592?hl=en' "
@@ -697,7 +704,7 @@ msgid ""
697
  "appear.</li></ul></span>"
698
  msgstr ""
699
 
700
- #: widgets/lrgawidget.php:1029
701
  msgid "No matching records found"
702
  msgstr ""
703
 
@@ -705,11 +712,11 @@ msgstr ""
705
  msgid "Not Interested"
706
  msgstr ""
707
 
708
- #: widgets/lrgawidget.php:1084
709
  msgid "November"
710
  msgstr ""
711
 
712
- #: widgets/lrgawidget.php:1083
713
  msgid "October"
714
  msgstr ""
715
 
@@ -717,26 +724,26 @@ msgstr ""
717
  msgid "On Hold"
718
  msgstr ""
719
 
720
- #: widgets/lrgawidget.php:292
721
  msgid ""
722
  "On the next screen, choose an <b>Application name</b>, then click <b>Save</b>"
723
  "."
724
  msgstr ""
725
 
726
- #: widgets/lrgawidget.php:290
727
  msgid ""
728
  "Open <b>Google Developers Console</b> menu, by clicking on <i class=\"fas fa-"
729
  "bars fa-fw\"></i> and select <b>APIs & Services</b> <i class=\"fas fa-caret-"
730
  "right fa-fw\"></i> <b>OAuth consent screen</b>."
731
  msgstr ""
732
 
733
- #: widgets/lrgawidget.php:286
734
  msgid ""
735
  "Open the <a target=\"_blank\" href=\"//console.developers.google."
736
  "com/apis/credentials?project=_\">Google Developers Console</a>."
737
  msgstr ""
738
 
739
- #: widgets/lrgawidget.php:649
740
  msgid "Operating System"
741
  msgstr ""
742
 
@@ -744,7 +751,7 @@ msgstr ""
744
  msgid "Operating Systems"
745
  msgstr ""
746
 
747
- #: widgets/lrgawidget.php:895
748
  msgid "Operating Systems versions (Windows 7, Windows 8 .. etc.)."
749
  msgstr ""
750
 
@@ -760,7 +767,7 @@ msgstr ""
760
  msgid "Orders"
761
  msgstr ""
762
 
763
- #: widgets/lrgawidget.php:545
764
  msgid "Page"
765
  msgstr ""
766
 
@@ -768,12 +775,12 @@ msgstr ""
768
  msgid "Pages"
769
  msgstr ""
770
 
771
- #: core/lrgawidget.class.php:96 widgets/lrgawidget.php:508
772
  msgid "Pages / Session"
773
  msgstr ""
774
 
775
- #: core/lrgawidget.class.php:92 widgets/lrgawidget.php:501
776
- #: widgets/lrgawidget.php:545
777
  msgid "Pageviews"
778
  msgstr ""
779
 
@@ -785,11 +792,11 @@ msgstr ""
785
  msgid "Pending"
786
  msgstr ""
787
 
788
- #: widgets/lrgawidget.php:545 widgets/lrgawidget.php:575
789
- #: widgets/lrgawidget.php:590 widgets/lrgawidget.php:609
790
- #: widgets/lrgawidget.php:629 widgets/lrgawidget.php:649
791
- #: widgets/lrgawidget.php:668 widgets/lrgawidget.php:687
792
- #: widgets/lrgawidget.php:731
793
  msgid "Percentage"
794
  msgstr ""
795
 
@@ -797,27 +804,27 @@ msgstr ""
797
  msgid "Permissions"
798
  msgstr ""
799
 
800
- #: widgets/lrgawidget.php:878
801
  msgid ""
802
  "Permissions : </b>Easily control which data is viwed by your blog admins and "
803
  "users (also compatible with Multisite Multi-Network)."
804
  msgstr ""
805
 
806
- #: widgets/lrgawidget.php:433
807
  msgid ""
808
  "Please choose a valid <b>Search Console Property URL</b>, or the widget will "
809
  "not be able to get keywords data for your website."
810
  msgstr ""
811
 
812
- #: widgets/lrgawidget.php:706
813
  msgid "Position"
814
  msgstr ""
815
 
816
- #: widgets/lrgawidget.php:388
817
  msgid "Premium Settings"
818
  msgstr ""
819
 
820
- #: widgets/lrgawidget.php:1034
821
  msgid "Previous"
822
  msgstr ""
823
 
@@ -825,7 +832,7 @@ msgstr ""
825
  msgid "Processing"
826
  msgstr ""
827
 
828
- #: widgets/lrgawidget.php:1027
829
  msgid "Processing..."
830
  msgstr ""
831
 
@@ -833,36 +840,36 @@ msgstr ""
833
  msgid "Products"
834
  msgstr ""
835
 
836
- #: widgets/lrgawidget.php:401
837
  msgid "Profile Details"
838
  msgstr ""
839
 
840
- #: widgets/lrgawidget.php:355
841
  msgid "Property"
842
  msgstr ""
843
 
844
- #: widgets/lrgawidget.php:403
845
  msgid "Property Name"
846
  msgstr ""
847
 
848
- #: widgets/lrgawidget.php:430
849
  msgid "Property Url"
850
  msgstr ""
851
 
852
- #: widgets/lrgawidget.php:404
853
  msgid "Property WebsiteUrl"
854
  msgstr ""
855
 
856
- #: widgets/lrgawidget.php:964
857
  msgid "Rate Us"
858
  msgstr ""
859
 
860
  #: core/lrgawidget.permissions.php:40 widgets/lrgawidget.php:123
861
- #: widgets/lrgawidget.php:1050
862
  msgid "Real Time"
863
  msgstr ""
864
 
865
- #: widgets/lrgawidget.php:887
866
  msgid "Real Time site visitors"
867
  msgstr ""
868
 
@@ -870,34 +877,34 @@ msgstr ""
870
  msgid "Refunded"
871
  msgstr ""
872
 
873
- #: widgets/lrgawidget.php:439
874
  msgid "Reload"
875
  msgstr ""
876
 
877
- #: widgets/lrgawidget.php:289
878
  msgid ""
879
  "Repeat the above step to enable <b>Google Analytics Reporting API</b> and <b>"
880
  "Google Search Console API</b>."
881
  msgstr ""
882
 
883
- #: widgets/lrgawidget.php:185
884
  msgid "Reset all data and start over"
885
  msgstr ""
886
 
887
- #: widgets/lrgawidget.php:563
888
  msgid "Right now"
889
  msgstr ""
890
 
891
- #: widgets/lrgawidget.php:1071
892
  msgid "Sa"
893
  msgstr ""
894
 
895
- #: widgets/lrgawidget.php:95 widgets/lrgawidget.php:395
896
- #: widgets/lrgawidget.php:466
897
  msgid "Save"
898
  msgstr ""
899
 
900
- #: widgets/lrgawidget.php:141 widgets/lrgawidget.php:687
901
  msgid "Screen Resolution"
902
  msgstr ""
903
 
@@ -905,37 +912,37 @@ msgstr ""
905
  msgid "Screen Resolutions"
906
  msgstr ""
907
 
908
- #: widgets/lrgawidget.php:429
909
  msgid "Search Console Property"
910
  msgstr ""
911
 
912
- #: widgets/lrgawidget.php:1028
913
  msgid "Search:"
914
  msgstr ""
915
 
916
- #: widgets/lrgawidget.php:291
917
  msgid ""
918
  "Select <b>External</b> as the <b>User Type</b>, then click <b>CREATE</b>."
919
  msgstr ""
920
 
921
- #: widgets/lrgawidget.php:178
922
  msgid "Select Analytics Profile"
923
  msgstr ""
924
 
925
- #: widgets/lrgawidget.php:1043
926
  msgid "Select Property URL"
927
  msgstr ""
928
 
929
- #: widgets/lrgawidget.php:1082
930
  msgid "September"
931
  msgstr ""
932
 
933
  #: core/lrgawidget.class.php:90 core/lrgawidget.permissions.php:39
934
- #: widgets/lrgawidget.php:117 widgets/lrgawidget.php:487
935
- #: widgets/lrgawidget.php:590 widgets/lrgawidget.php:609
936
- #: widgets/lrgawidget.php:629 widgets/lrgawidget.php:649
937
- #: widgets/lrgawidget.php:668 widgets/lrgawidget.php:687
938
- #: widgets/lrgawidget.php:731
939
  msgid "Sessions"
940
  msgstr ""
941
 
@@ -948,19 +955,19 @@ msgstr ""
948
  msgid "Show"
949
  msgstr ""
950
 
951
- #: widgets/lrgawidget.php:1025
952
  msgid "Show _MENU_ entries"
953
  msgstr ""
954
 
955
- #: widgets/lrgawidget.php:1021
956
  msgid "Showing 0 to 0 of 0 entries"
957
  msgstr ""
958
 
959
- #: widgets/lrgawidget.php:1020
960
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
961
  msgstr ""
962
 
963
- #: widgets/lrgawidget.php:334
964
  msgid ""
965
  "Since your newly created app was not verified by Google, you will see <b>"
966
  "This app is not verified</b> warning. To continue, click on <b>Advanced</b>, "
@@ -971,7 +978,7 @@ msgstr ""
971
  msgid "Something went wrong .. please contact an administrator"
972
  msgstr ""
973
 
974
- #: widgets/lrgawidget.php:147 widgets/lrgawidget.php:731
975
  msgid "Source"
976
  msgstr ""
977
 
@@ -979,16 +986,16 @@ msgstr ""
979
  msgid "Sources"
980
  msgstr ""
981
 
982
- #: widgets/lrgawidget.php:249
983
  msgid "Start Advanced Setup"
984
  msgstr ""
985
 
986
- #: widgets/lrgawidget.php:1065
987
  msgid "Su"
988
  msgstr ""
989
 
990
- #: widgets/lrgawidget.php:229 widgets/lrgawidget.php:277
991
- #: widgets/lrgawidget.php:319
992
  msgid "Submit"
993
  msgstr ""
994
 
@@ -996,7 +1003,7 @@ msgstr ""
996
  msgid "Super Administrator [Change Permissions]"
997
  msgstr ""
998
 
999
- #: widgets/lrgawidget.php:977
1000
  msgid "Support Center"
1001
  msgstr ""
1002
 
@@ -1004,23 +1011,23 @@ msgstr ""
1004
  msgid "Tabs"
1005
  msgstr ""
1006
 
1007
- #: widgets/lrgawidget.php:295
1008
  msgid ""
1009
  "Take note of the <b>client ID</b> & <b>client secret</b> then click <b>OK</b>"
1010
  "."
1011
  msgstr ""
1012
 
1013
- #: widgets/lrgawidget.php:1069
1014
  msgid "Th"
1015
  msgstr ""
1016
 
1017
  #: core/review.notice.php:39
1018
  msgid ""
1019
- "Thank you for using <b>Lara Google Analytics</b> - WordPress plugin. We hope "
1020
- "it has saved your valuable time and efforts!"
1021
  msgstr ""
1022
 
1023
- #: widgets/lrgawidget.php:410
1024
  msgid ""
1025
  "The selected view is using a different timezone than your server's time zone,"
1026
  " which <u>may</u> cause inaccurate dates/values."
@@ -1034,19 +1041,19 @@ msgid ""
1034
  "the widget from loading required files."
1035
  msgstr ""
1036
 
1037
- #: widgets/lrgawidget.php:1047
1038
  msgid "This Month"
1039
  msgstr ""
1040
 
1041
- #: widgets/lrgawidget.php:424
1042
  msgid "This will allow the widget to access your newly created property."
1043
  msgstr ""
1044
 
1045
- #: widgets/lrgawidget.php:413
1046
  msgid "Time Zone"
1047
  msgstr ""
1048
 
1049
- #: widgets/lrgawidget.php:1061
1050
  msgid "To"
1051
  msgstr ""
1052
 
@@ -1054,30 +1061,30 @@ msgstr ""
1054
  msgid "To clear the cache memory of your browser :"
1055
  msgstr ""
1056
 
1057
- #: widgets/lrgawidget.php:423
1058
  msgid ""
1059
  "To overcome this limitation, when you create a <b>new</b> Google Analytics "
1060
  "property, click on <b>Show Advanced Options</b> and then click on <b>Create "
1061
  "a Universal Analytics Property</b>."
1062
  msgstr ""
1063
 
1064
- #: widgets/lrgawidget.php:391
1065
  msgid ""
1066
  "To unlock after saving, you will need to <b>reset all data</b> and re-"
1067
  "authorize with Google Analytics"
1068
  msgstr ""
1069
 
1070
- #: widgets/lrgawidget.php:283
1071
  msgid ""
1072
  "To use the <b>Google Analytics</b> widget, you will need to create a <b>"
1073
  "Google App</b> as follows :"
1074
  msgstr ""
1075
 
1076
- #: widgets/lrgawidget.php:573
1077
  msgid "Top Active Pages"
1078
  msgstr ""
1079
 
1080
- #: widgets/lrgawidget.php:1052
1081
  msgid "Total"
1082
  msgstr ""
1083
 
@@ -1085,11 +1092,11 @@ msgstr ""
1085
  msgid "Totals"
1086
  msgstr ""
1087
 
1088
- #: widgets/lrgawidget.php:888
1089
  msgid "Traffic sources."
1090
  msgstr ""
1091
 
1092
- #: widgets/lrgawidget.php:1067
1093
  msgid "Tu"
1094
  msgstr ""
1095
 
@@ -1097,69 +1104,74 @@ msgstr ""
1097
  msgid "Types"
1098
  msgstr ""
1099
 
1100
- #: widgets/lrgawidget.php:294
 
 
 
 
 
1101
  msgid ""
1102
- "Under <b>Application type</b>, select <b>Desktop app</b>, choose a name, "
1103
- "then click <b>CREATE</b>."
1104
  msgstr ""
1105
 
1106
- #: core/lrgawidget.class.php:91 widgets/lrgawidget.php:494
1107
  msgid "Users"
1108
  msgstr ""
1109
 
1110
- #: widgets/lrgawidget.php:360
1111
  msgid "View"
1112
  msgstr ""
1113
 
1114
- #: widgets/lrgawidget.php:933
1115
  msgid "View all premuim features details"
1116
  msgstr ""
1117
 
1118
- #: widgets/lrgawidget.php:405
1119
  msgid "View Name"
1120
  msgstr ""
1121
 
1122
- #: widgets/lrgawidget.php:207 widgets/lrgawidget.php:328
1123
  msgid "View Search Console data for your verified sites"
1124
  msgstr ""
1125
 
1126
- #: widgets/lrgawidget.php:407 widgets/lrgawidget.php:412
1127
  msgid "View Time Zone"
1128
  msgstr ""
1129
 
1130
- #: widgets/lrgawidget.php:406
1131
  msgid "View Type"
1132
  msgstr ""
1133
 
1134
- #: widgets/lrgawidget.php:206 widgets/lrgawidget.php:327
1135
  msgid "View your Google Analytics data"
1136
  msgstr ""
1137
 
1138
- #: widgets/lrgawidget.php:889
1139
  msgid "Visitors Countries"
1140
  msgstr ""
1141
 
1142
- #: widgets/lrgawidget.php:1063
1143
  msgid "W"
1144
  msgstr ""
1145
 
1146
- #: widgets/lrgawidget.php:1068
1147
  msgid "We"
1148
  msgstr ""
1149
 
1150
- #: widgets/lrgawidget.php:952
1151
  msgid ""
1152
  "We mix creativity with imagination, responsibility with passion, and "
1153
  "resourcefulness with fun. That is what we do everyday within our company."
1154
  msgstr ""
1155
 
1156
- #: widgets/lrgawidget.php:297
1157
  msgid ""
1158
  "When done, paste the <b>client ID</b> & <b>client secret</b> here and click "
1159
  "<b>Submit</b>."
1160
  msgstr ""
1161
 
1162
- #: widgets/lrgawidget.php:950
1163
  msgid "Who we are & What we do"
1164
  msgstr ""
1165
 
@@ -1168,7 +1180,7 @@ msgstr ""
1168
  msgid "WooCommerce"
1169
  msgstr ""
1170
 
1171
- #: widgets/lrgawidget.php:388
1172
  msgid "Works in the Pro version only"
1173
  msgstr ""
1174
 
@@ -1190,6 +1202,6 @@ msgstr ""
1190
  msgid "You do not have permission to access this tab!"
1191
  msgstr ""
1192
 
1193
- #: widgets/lrgawidget.php:165
1194
  msgid "You do not have permission to view any tab!"
1195
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: Lara Google Analytics\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2022-09-07 16:00+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/\n"
16
+ "X-Loco-Version: 2.6.2; wp-6.1-alpha-54090\n"
17
  "X-Domain: lara-google-analytics"
18
 
19
+ #: core/lrgawidget.class.php:93 widgets/lrgawidget.php:536
20
  msgid "% New Sessions"
21
  msgstr ""
22
 
23
+ #: widgets/lrgawidget.php:1029
24
  msgid "(filtered from _MAX_ total entries)"
25
  msgstr ""
26
 
27
+ #: widgets/lrgawidget.php:181
28
  msgid "1"
29
  msgstr ""
30
 
31
+ #: widgets/lrgawidget.php:917
32
  msgid "12 Months of Free Updates and Support"
33
  msgstr ""
34
 
35
+ #: widgets/lrgawidget.php:182
36
  msgid "2"
37
  msgstr ""
38
 
39
+ #: widgets/lrgawidget.php:183
40
  msgid "3"
41
  msgstr ""
42
 
43
+ #: widgets/lrgawidget.php:1044
44
  msgid ": activate to sort column ascending"
45
  msgstr ""
46
 
47
+ #: widgets/lrgawidget.php:1045
48
  msgid ": activate to sort column descending"
49
  msgstr ""
50
 
56
  msgid "<b>Mac/Apple:</b> Apple + R <u>or</u> Command + R"
57
  msgstr ""
58
 
59
+ #: widgets/lrgawidget.php:719
60
  msgid ""
61
  "<b>Position</b> is the average ranking of your website URLs for that query "
62
  "or keyword, on Google search results."
66
  msgid "<b>Windows:</b> Ctrl + F5 <u>or</u> SHIFT + Reload for firefox"
67
  msgstr ""
68
 
69
+ #: widgets/lrgawidget.php:958
70
  msgid ""
71
  "<b>XtraOrbit</b> has been providing a wide range of services <b>since "
72
  "2002</b>, including <b>Web Hosting</b>, <b>Domain Names</b> & <b>Web "
73
  "Development</b>."
74
  msgstr ""
75
 
76
+ #: widgets/lrgawidget.php:227 widgets/lrgawidget.php:317
77
  msgid "Access Code"
78
  msgstr ""
79
 
80
+ #: widgets/lrgawidget.php:356
81
  msgid "Account"
82
  msgstr ""
83
 
84
+ #: widgets/lrgawidget.php:409
85
  msgid "Account Name"
86
  msgstr ""
87
 
88
+ #: widgets/lrgawidget.php:582
89
  msgid "Active Page"
90
  msgstr ""
91
 
92
+ #: widgets/lrgawidget.php:582
93
  msgid "Active Users"
94
  msgstr ""
95
 
96
+ #: widgets/lrgawidget.php:572
97
  msgid "active users on site"
98
  msgstr ""
99
 
100
+ #: widgets/lrgawidget.php:388
101
  msgid "Add <b>Google Universal Analytics</b> tracking code to all pages."
102
  msgstr ""
103
 
105
  msgid "Administrator [Change Settings]"
106
  msgstr ""
107
 
108
+ #: widgets/lrgawidget.php:249
109
  msgid "Advanced Setup"
110
  msgstr ""
111
 
112
+ #: widgets/lrgawidget.php:444
113
  msgid ""
114
  "After adding your website to <b>Google Search Console</b> and verifying "
115
  "ownership, clich <b>Reload</b>, to reload the <b>Search Console Property "
121
  msgid "All Orders"
122
  msgstr ""
123
 
124
+ #: widgets/lrgawidget.php:1048
125
  msgid ""
126
  "All saved authentication data will be removed. Do you want to continue ?!"
127
  msgstr ""
128
 
129
+ #: widgets/lrgawidget.php:1065
130
  msgid "Apply"
131
  msgstr ""
132
 
133
+ #: widgets/lrgawidget.php:1084
134
  msgid "April"
135
  msgstr ""
136
 
137
+ #: widgets/lrgawidget.php:1088
138
  msgid "August"
139
  msgstr ""
140
 
141
+ #: widgets/lrgawidget.php:182
142
  msgid "Authorize APP"
143
  msgstr ""
144
 
145
+ #: widgets/lrgawidget.php:330
146
  msgid "Authorize App"
147
  msgstr ""
148
 
149
+ #: core/lrgawidget.class.php:95 widgets/lrgawidget.php:522
150
  msgid "Avg. Session Duration"
151
  msgstr ""
152
 
153
+ #: widgets/lrgawidget.php:336
154
  msgid ""
155
  "Be sure to use the same email account that is linked to your <b>Google "
156
  "Analytics</b> and <b>Google Search Console</b> (formerly, Google Webmaster "
161
  msgid "beta"
162
  msgstr ""
163
 
164
+ #: core/lrgawidget.class.php:94 widgets/lrgawidget.php:529
165
  msgid "Bounce Rate"
166
  msgstr ""
167
 
168
+ #: widgets/lrgawidget.php:616
169
  msgid "Browser"
170
  msgstr ""
171
 
173
  msgid "Browsers"
174
  msgstr ""
175
 
176
+ #: widgets/lrgawidget.php:901
177
  msgid "Browsers versions (IE 6, IE 7 .. etc.)."
178
  msgstr ""
179
 
180
+ #: widgets/lrgawidget.php:937
181
  msgid "Buy Now"
182
  msgstr ""
183
 
184
+ #: widgets/lrgawidget.php:875
185
  msgid "Buy the Premium version and get access to these amazing features"
186
  msgstr ""
187
 
188
+ #: widgets/lrgawidget.php:252
189
  msgid ""
190
  "By clicking on <b>Start Advanced Setup</b> button below, The setup wizard "
191
  "will guide you through creating and/or configuring your own Google "
192
  "Application."
193
  msgstr ""
194
 
195
+ #: widgets/lrgawidget.php:1056
196
  msgid "cached"
197
  msgstr ""
198
 
199
+ #: widgets/lrgawidget.php:1066
200
  msgid "Cancel"
201
  msgstr ""
202
 
204
  msgid "Cancelled"
205
  msgstr ""
206
 
207
+ #: widgets/lrgawidget.php:428
208
  msgid "Cannot find your Google Analytics property ?"
209
  msgstr ""
210
 
216
  msgid "Change Date Range"
217
  msgstr ""
218
 
219
+ #: widgets/lrgawidget.php:911
220
  msgid "Check any Date Range, not just the last 30 days"
221
  msgstr ""
222
 
223
+ #: widgets/lrgawidget.php:924
224
  msgid ""
225
  "Check the<strong> Demo</strong> to see exactly how the premium version looks "
226
  "like, and what you will get from it without leaving your wordpress dashboard"
227
  msgstr ""
228
 
229
+ #: widgets/lrgawidget.php:214 widgets/lrgawidget.php:337
230
  msgid ""
231
  "Click <b>Allow</b>, then copy and paste the access code here, and click <b>"
232
  "Submit</b>."
233
  msgstr ""
234
 
235
+ #: widgets/lrgawidget.php:292
236
  msgid ""
237
  "Click on <b>CREATE PROJECT</b>, choose a <b>Project name</b>, then click <b>"
238
  "CREATE</b>."
239
  msgstr ""
240
 
241
+ #: widgets/lrgawidget.php:209
242
  msgid ""
243
  "Click on <b>Sign in with Google</b> button below, and a pop-up window will "
244
  "open, asking you to allow <b>Lara Analytics Widget</b> to access the "
245
  "following:"
246
  msgstr ""
247
 
248
+ #: widgets/lrgawidget.php:331
249
  msgid ""
250
  "Click on <b>Sign in with Google</b> button below, and a pop-up window will "
251
  "open, asking you to allow the <b>app you just created</b> to :"
252
  msgstr ""
253
 
254
+ #: widgets/lrgawidget.php:713
255
  msgid "Clicks"
256
  msgstr ""
257
 
258
+ #: widgets/lrgawidget.php:266
259
  msgid "Client ID"
260
  msgstr ""
261
 
262
+ #: widgets/lrgawidget.php:274
263
  msgid "Client Secret"
264
  msgstr ""
265
 
267
  msgid "Close"
268
  msgstr ""
269
 
270
+ #: widgets/lrgawidget.php:961
271
  msgid "Come, check us out!"
272
  msgstr ""
273
 
289
  msgid "Countries"
290
  msgstr ""
291
 
292
+ #: widgets/lrgawidget.php:597
293
  msgid "Country"
294
  msgstr ""
295
 
296
+ #: widgets/lrgawidget.php:181 widgets/lrgawidget.php:287
297
  msgid "Create Google APP"
298
  msgstr ""
299
 
301
  msgid "Created"
302
  msgstr ""
303
 
304
+ #: widgets/lrgawidget.php:713
305
  msgid "CTR"
306
  msgstr ""
307
 
312
  "cURL extension for PHP."
313
  msgstr ""
314
 
315
+ #: widgets/lrgawidget.php:1069
316
  msgid "Custom Range"
317
  msgstr ""
318
 
319
+ #: core/system/wordpress/system.bootstrap.class.php:67
320
+ #: core/system/wordpress/system.bootstrap.class.php:81
321
+ #: core/system/wordpress/system.bootstrap.class.php:84
322
+ #: core/system/wordpress/system.bootstrap.class.php:87
323
  msgid "DataBase Error .. please contact an administrator"
324
  msgstr ""
325
 
326
+ #: widgets/lrgawidget.php:1092
327
  msgid "December"
328
  msgstr ""
329
 
330
+ #: widgets/lrgawidget.php:675
331
  msgid "Device Type"
332
  msgstr ""
333
 
334
+ #: widgets/lrgawidget.php:903
335
  msgid "Device Types and brands (Samsung, Apple .. etc.)."
336
  msgstr ""
337
 
347
  msgid "eCommerce Graphs"
348
  msgstr ""
349
 
350
+ #: widgets/lrgawidget.php:887
351
  msgid ""
352
  "eCommerce graphs : </b>Highly customized earnings graphs, for popular "
353
  "WordPress eCommerce plugins, like WooCommerce."
361
  msgid "Empty Series"
362
  msgstr ""
363
 
364
+ #: widgets/lrgawidget.php:392
365
  msgid "Enable eCommerce graphs."
366
  msgstr ""
367
 
368
+ #: widgets/lrgawidget.php:206
369
  msgid "Express Setup"
370
  msgstr ""
371
 
378
  #: core/lrgawidget.handler.php:38 core/lrgawidget.handler.php:103
379
  #: core/lrgawidget.handler.php:106 core/lrgawidget.permissions.php:106
380
  #: widgets/lrgawidget.php:29 widgets/lrgawidget.php:50
381
+ #: core/system/wordpress/system.bootstrap.class.php:67
382
+ #: core/system/wordpress/system.bootstrap.class.php:81
383
+ #: core/system/wordpress/system.bootstrap.class.php:84
384
+ #: core/system/wordpress/system.bootstrap.class.php:87
385
  msgid "Fatal Error"
386
  msgstr ""
387
 
388
+ #: widgets/lrgawidget.php:1082
389
  msgid "February"
390
  msgstr ""
391
 
392
+ #: widgets/lrgawidget.php:1038
393
  msgid "First"
394
  msgstr ""
395
 
396
+ #: widgets/lrgawidget.php:1077
397
  msgid "Fr"
398
  msgstr ""
399
 
400
+ #: widgets/lrgawidget.php:1067
401
  msgid "From"
402
  msgstr ""
403
 
404
+ #: widgets/lrgawidget.php:298
405
  msgid ""
406
  "From the side menu, click on <b>Credentials</b>, then click on <b>CREATE "
407
  "CREDENTIALS</b>, and select <b>OAuth client ID</b>."
408
  msgstr ""
409
 
410
+ #: widgets/lrgawidget.php:293
411
  msgid ""
412
  "From the top <b>Search for APIs and Services</b> box, search for <b>Google "
413
  "Analytics API</b>, select it, then click <b>ENABLE</b>."
419
  "which also inserts latest Google Analytics tracking code to your pages."
420
  msgstr ""
421
 
422
+ #: widgets/lrgawidget.php:193
423
  msgid "Go Back to Express Setup"
424
  msgstr ""
425
 
426
+ #: widgets/lrgawidget.php:150 widgets/lrgawidget.php:874
427
  msgid "Go Premium !"
428
  msgstr ""
429
 
432
  msgid "Google Analytics"
433
  msgstr ""
434
 
435
+ #: core/GoogleAnalyticsAPI.class.php:86 core/GoogleAnalyticsAPI.class.php:98
436
  msgid ""
437
  "Google Replied with unexpected replay, enable debugging to check the reply"
438
  msgstr ""
441
  msgid "Graph Options"
442
  msgstr ""
443
 
444
+ #: widgets/lrgawidget.php:981
445
  msgid "Help & Support"
446
  msgstr ""
447
 
462
  msgid "I already rated it"
463
  msgstr ""
464
 
465
+ #: widgets/lrgawidget.php:552 widgets/lrgawidget.php:582
466
+ #: widgets/lrgawidget.php:616 widgets/lrgawidget.php:636
467
+ #: widgets/lrgawidget.php:656 widgets/lrgawidget.php:675
468
+ #: widgets/lrgawidget.php:694 widgets/lrgawidget.php:713
469
+ #: widgets/lrgawidget.php:738
470
  msgid "ID"
471
  msgstr ""
472
 
478
  "it."
479
  msgstr ""
480
 
481
+ #: widgets/lrgawidget.php:982
482
  msgid ""
483
  "If you are facing any issues, need support or have a new feature request, "
484
  "visit the official plugin support forum, where you will be able to submit a "
491
  "<b>clear the cache memory of your browser</b>."
492
  msgstr ""
493
 
494
+ #: widgets/lrgawidget.php:216
495
  msgid ""
496
  "If you are using the <b>premium</b> version of the plugin, that email "
497
  "account should also be linked to your <b>Google Search Console</b>."
498
  msgstr ""
499
 
500
+ #: widgets/lrgawidget.php:443
501
  msgid ""
502
  "If you cannot find your website, please go to <a href=\"https://www.google."
503
  "com/webmasters/tools/\" target=\"_blank\">Google Search Console</a> and "
504
  "click on <b>Add a property</b>, to add your website."
505
  msgstr ""
506
 
507
+ #: core/review.notice.php:40
508
+ msgid ""
509
+ "If you have a free moment, and want to help us spread the word and boost our "
510
+ "motivation, please do us a BIG favour and give us 5 Stars rating .. The more "
511
+ "reviews we get, the more cool features we will add to the plugin :)"
512
+ msgstr ""
513
+
514
+ #: widgets/lrgawidget.php:972
515
  msgid ""
516
  "If you have a free moment, and want to help us spread the word and boost our "
517
  "motivation, please do us a BIG favour and give us 5 Stars rating on "
519
  "the plugin :)"
520
  msgstr ""
521
 
522
+ #: widgets/lrgawidget.php:429
523
  msgid ""
524
  "If you have recently created a new property, you might not see it here, as "
525
  "the new Google API for <b>GA4</b> properties is still in <u><a href=\"https:"
527
  "target=\"_blank\">beta</a></u>."
528
  msgstr ""
529
 
530
+ #: widgets/lrgawidget.php:253
531
  msgid ""
532
  "If you want a quick start, or just trying the widget, use the <b>Express "
533
  "Setup</b> on the left."
534
  msgstr ""
535
 
536
+ #: widgets/lrgawidget.php:215
537
  msgid ""
538
  "If you were asked to login, be sure to use the same email account that is "
539
  "linked to your <b>Google Analytics</b>."
540
  msgstr ""
541
 
542
+ #: widgets/lrgawidget.php:713
543
  msgid "Impressions"
544
  msgstr ""
545
 
546
+ #: widgets/lrgawidget.php:1058
547
  msgid "inactive"
548
  msgstr ""
549
 
551
  msgid "Income"
552
  msgstr ""
553
 
554
+ #: widgets/lrgawidget.php:1049
555
  msgid ""
556
  "Initial Setup Required! - Please contact an administratior to complete the "
557
  "widget setup."
563
  msgid "Invalid Call"
564
  msgstr ""
565
 
566
+ #: core/GoogleAnalyticsAPI.class.php:132
567
  msgid "Invalid Property"
568
  msgstr ""
569
 
570
+ #: core/GoogleAnalyticsAPI.class.php:86 core/GoogleAnalyticsAPI.class.php:98
571
  msgid "Invalid Reply"
572
  msgstr ""
573
 
574
+ #: widgets/lrgawidget.php:1081
575
  msgid "January"
576
  msgstr ""
577
 
578
+ #: widgets/lrgawidget.php:1087
579
  msgid "July"
580
  msgstr ""
581
 
582
+ #: widgets/lrgawidget.php:1086
583
  msgid "June"
584
  msgstr ""
585
 
586
+ #: widgets/lrgawidget.php:713
587
  msgid "Keyword"
588
  msgstr ""
589
 
591
  msgid "Keywords"
592
  msgstr ""
593
 
594
+ #: widgets/lrgawidget.php:893
595
  msgid "Keywords ( provided by Google Search Console)."
596
  msgstr ""
597
 
598
+ #: widgets/lrgawidget.php:636
599
  msgid "Language"
600
  msgstr ""
601
 
607
  msgid "Lara's Google Analytics"
608
  msgstr ""
609
 
610
+ #: widgets/lrgawidget.php:1039
611
  msgid "Last"
612
  msgstr ""
613
 
614
+ #: widgets/lrgawidget.php:1053
615
  msgid "Last 30 Days"
616
  msgstr ""
617
 
618
+ #: widgets/lrgawidget.php:1052
619
  msgid "Last 7 Days"
620
  msgstr ""
621
 
622
+ #: widgets/lrgawidget.php:1055
623
  msgid "Last Month"
624
  msgstr ""
625
 
626
+ #: widgets/lrgawidget.php:927
627
  msgid "Launch Demo"
628
  msgstr ""
629
 
630
+ #: core/review.notice.php:44 widgets/lrgawidget.php:974
631
  msgid "Let's do it, You deserve it"
632
  msgstr ""
633
 
635
  msgid "Loading data, please wait !"
636
  msgstr ""
637
 
638
+ #: widgets/lrgawidget.php:1033
639
  msgid "Loading..."
640
  msgstr ""
641
 
642
+ #: widgets/lrgawidget.php:398
643
  msgid "Lock settings"
644
  msgstr ""
645
 
646
+ #: widgets/lrgawidget.php:886
647
  msgid ""
648
  "Lock Settings : </b>Prevent users from changing the widget settings or "
649
  "viewing other Google analytics profiles."
650
  msgstr ""
651
 
652
+ #: widgets/lrgawidget.php:171
653
  msgid "Make sure that your group has proper permissions to access the widget."
654
  msgstr ""
655
 
656
+ #: widgets/lrgawidget.php:1083
657
  msgid "March"
658
  msgstr ""
659
 
660
+ #: widgets/lrgawidget.php:1085
661
  msgid "May"
662
  msgstr ""
663
 
664
+ #: core/GoogleAnalyticsAPI.class.php:44
665
  msgid ""
666
  "Missing Search Console Property URL - Please use the <b>Settings</b> tab to "
667
  "choose a valid <b>Search Console Property URL</b>."
668
  msgstr ""
669
 
670
+ #: widgets/lrgawidget.php:1073
671
  msgid "Mo"
672
  msgstr ""
673
 
675
  msgid "Modified"
676
  msgstr ""
677
 
678
+ #: widgets/lrgawidget.php:884
679
  msgid ""
680
  "Multisite Multi-Network enabled : </b>Every blog/site in your network can "
681
  "has its own analytics tracking code and dashboard widget."
682
  msgstr ""
683
 
684
+ #: widgets/lrgawidget.php:1040
685
  msgid "Next"
686
  msgstr ""
687
 
688
+ #: widgets/lrgawidget.php:1060
689
  msgid "No active users"
690
  msgstr ""
691
 
692
+ #: widgets/lrgawidget.php:1026
693
  msgid "No data available in table"
694
  msgstr ""
695
 
696
+ #: widgets/lrgawidget.php:1051
697
  msgid ""
698
  "No data available in table. <span class='pull-left'><ul><li>Did you <a "
699
  "href='https://support.google.com/webmasters/answer/34592?hl=en' "
704
  "appear.</li></ul></span>"
705
  msgstr ""
706
 
707
+ #: widgets/lrgawidget.php:1036
708
  msgid "No matching records found"
709
  msgstr ""
710
 
712
  msgid "Not Interested"
713
  msgstr ""
714
 
715
+ #: widgets/lrgawidget.php:1091
716
  msgid "November"
717
  msgstr ""
718
 
719
+ #: widgets/lrgawidget.php:1090
720
  msgid "October"
721
  msgstr ""
722
 
724
  msgid "On Hold"
725
  msgstr ""
726
 
727
+ #: widgets/lrgawidget.php:297
728
  msgid ""
729
  "On the next screen, choose an <b>Application name</b>, then click <b>Save</b>"
730
  "."
731
  msgstr ""
732
 
733
+ #: widgets/lrgawidget.php:295
734
  msgid ""
735
  "Open <b>Google Developers Console</b> menu, by clicking on <i class=\"fas fa-"
736
  "bars fa-fw\"></i> and select <b>APIs & Services</b> <i class=\"fas fa-caret-"
737
  "right fa-fw\"></i> <b>OAuth consent screen</b>."
738
  msgstr ""
739
 
740
+ #: widgets/lrgawidget.php:291
741
  msgid ""
742
  "Open the <a target=\"_blank\" href=\"//console.developers.google."
743
  "com/apis/credentials?project=_\">Google Developers Console</a>."
744
  msgstr ""
745
 
746
+ #: widgets/lrgawidget.php:656
747
  msgid "Operating System"
748
  msgstr ""
749
 
751
  msgid "Operating Systems"
752
  msgstr ""
753
 
754
+ #: widgets/lrgawidget.php:902
755
  msgid "Operating Systems versions (Windows 7, Windows 8 .. etc.)."
756
  msgstr ""
757
 
767
  msgid "Orders"
768
  msgstr ""
769
 
770
+ #: widgets/lrgawidget.php:552
771
  msgid "Page"
772
  msgstr ""
773
 
775
  msgid "Pages"
776
  msgstr ""
777
 
778
+ #: core/lrgawidget.class.php:96 widgets/lrgawidget.php:515
779
  msgid "Pages / Session"
780
  msgstr ""
781
 
782
+ #: core/lrgawidget.class.php:92 widgets/lrgawidget.php:508
783
+ #: widgets/lrgawidget.php:552
784
  msgid "Pageviews"
785
  msgstr ""
786
 
792
  msgid "Pending"
793
  msgstr ""
794
 
795
+ #: widgets/lrgawidget.php:552 widgets/lrgawidget.php:582
796
+ #: widgets/lrgawidget.php:597 widgets/lrgawidget.php:616
797
+ #: widgets/lrgawidget.php:636 widgets/lrgawidget.php:656
798
+ #: widgets/lrgawidget.php:675 widgets/lrgawidget.php:694
799
+ #: widgets/lrgawidget.php:738
800
  msgid "Percentage"
801
  msgstr ""
802
 
804
  msgid "Permissions"
805
  msgstr ""
806
 
807
+ #: widgets/lrgawidget.php:885
808
  msgid ""
809
  "Permissions : </b>Easily control which data is viwed by your blog admins and "
810
  "users (also compatible with Multisite Multi-Network)."
811
  msgstr ""
812
 
813
+ #: widgets/lrgawidget.php:440
814
  msgid ""
815
  "Please choose a valid <b>Search Console Property URL</b>, or the widget will "
816
  "not be able to get keywords data for your website."
817
  msgstr ""
818
 
819
+ #: widgets/lrgawidget.php:713
820
  msgid "Position"
821
  msgstr ""
822
 
823
+ #: widgets/lrgawidget.php:395
824
  msgid "Premium Settings"
825
  msgstr ""
826
 
827
+ #: widgets/lrgawidget.php:1041
828
  msgid "Previous"
829
  msgstr ""
830
 
832
  msgid "Processing"
833
  msgstr ""
834
 
835
+ #: widgets/lrgawidget.php:1034
836
  msgid "Processing..."
837
  msgstr ""
838
 
840
  msgid "Products"
841
  msgstr ""
842
 
843
+ #: widgets/lrgawidget.php:408
844
  msgid "Profile Details"
845
  msgstr ""
846
 
847
+ #: widgets/lrgawidget.php:361
848
  msgid "Property"
849
  msgstr ""
850
 
851
+ #: widgets/lrgawidget.php:410
852
  msgid "Property Name"
853
  msgstr ""
854
 
855
+ #: widgets/lrgawidget.php:437
856
  msgid "Property Url"
857
  msgstr ""
858
 
859
+ #: widgets/lrgawidget.php:411
860
  msgid "Property WebsiteUrl"
861
  msgstr ""
862
 
863
+ #: widgets/lrgawidget.php:971
864
  msgid "Rate Us"
865
  msgstr ""
866
 
867
  #: core/lrgawidget.permissions.php:40 widgets/lrgawidget.php:123
868
+ #: widgets/lrgawidget.php:1057
869
  msgid "Real Time"
870
  msgstr ""
871
 
872
+ #: widgets/lrgawidget.php:894
873
  msgid "Real Time site visitors"
874
  msgstr ""
875
 
877
  msgid "Refunded"
878
  msgstr ""
879
 
880
+ #: widgets/lrgawidget.php:446
881
  msgid "Reload"
882
  msgstr ""
883
 
884
+ #: widgets/lrgawidget.php:294
885
  msgid ""
886
  "Repeat the above step to enable <b>Google Analytics Reporting API</b> and <b>"
887
  "Google Search Console API</b>."
888
  msgstr ""
889
 
890
+ #: widgets/lrgawidget.php:190
891
  msgid "Reset all data and start over"
892
  msgstr ""
893
 
894
+ #: widgets/lrgawidget.php:570
895
  msgid "Right now"
896
  msgstr ""
897
 
898
+ #: widgets/lrgawidget.php:1078
899
  msgid "Sa"
900
  msgstr ""
901
 
902
+ #: widgets/lrgawidget.php:95 widgets/lrgawidget.php:402
903
+ #: widgets/lrgawidget.php:473
904
  msgid "Save"
905
  msgstr ""
906
 
907
+ #: widgets/lrgawidget.php:141 widgets/lrgawidget.php:694
908
  msgid "Screen Resolution"
909
  msgstr ""
910
 
912
  msgid "Screen Resolutions"
913
  msgstr ""
914
 
915
+ #: widgets/lrgawidget.php:436
916
  msgid "Search Console Property"
917
  msgstr ""
918
 
919
+ #: widgets/lrgawidget.php:1035
920
  msgid "Search:"
921
  msgstr ""
922
 
923
+ #: widgets/lrgawidget.php:296
924
  msgid ""
925
  "Select <b>External</b> as the <b>User Type</b>, then click <b>CREATE</b>."
926
  msgstr ""
927
 
928
+ #: widgets/lrgawidget.php:183
929
  msgid "Select Analytics Profile"
930
  msgstr ""
931
 
932
+ #: widgets/lrgawidget.php:1050
933
  msgid "Select Property URL"
934
  msgstr ""
935
 
936
+ #: widgets/lrgawidget.php:1089
937
  msgid "September"
938
  msgstr ""
939
 
940
  #: core/lrgawidget.class.php:90 core/lrgawidget.permissions.php:39
941
+ #: widgets/lrgawidget.php:117 widgets/lrgawidget.php:494
942
+ #: widgets/lrgawidget.php:597 widgets/lrgawidget.php:616
943
+ #: widgets/lrgawidget.php:636 widgets/lrgawidget.php:656
944
+ #: widgets/lrgawidget.php:675 widgets/lrgawidget.php:694
945
+ #: widgets/lrgawidget.php:738
946
  msgid "Sessions"
947
  msgstr ""
948
 
955
  msgid "Show"
956
  msgstr ""
957
 
958
+ #: widgets/lrgawidget.php:1032
959
  msgid "Show _MENU_ entries"
960
  msgstr ""
961
 
962
+ #: widgets/lrgawidget.php:1028
963
  msgid "Showing 0 to 0 of 0 entries"
964
  msgstr ""
965
 
966
+ #: widgets/lrgawidget.php:1027
967
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
968
  msgstr ""
969
 
970
+ #: widgets/lrgawidget.php:340
971
  msgid ""
972
  "Since your newly created app was not verified by Google, you will see <b>"
973
  "This app is not verified</b> warning. To continue, click on <b>Advanced</b>, "
978
  msgid "Something went wrong .. please contact an administrator"
979
  msgstr ""
980
 
981
+ #: widgets/lrgawidget.php:147 widgets/lrgawidget.php:738
982
  msgid "Source"
983
  msgstr ""
984
 
986
  msgid "Sources"
987
  msgstr ""
988
 
989
+ #: widgets/lrgawidget.php:254
990
  msgid "Start Advanced Setup"
991
  msgstr ""
992
 
993
+ #: widgets/lrgawidget.php:1072
994
  msgid "Su"
995
  msgstr ""
996
 
997
+ #: widgets/lrgawidget.php:234 widgets/lrgawidget.php:282
998
+ #: widgets/lrgawidget.php:325
999
  msgid "Submit"
1000
  msgstr ""
1001
 
1003
  msgid "Super Administrator [Change Permissions]"
1004
  msgstr ""
1005
 
1006
+ #: widgets/lrgawidget.php:984
1007
  msgid "Support Center"
1008
  msgstr ""
1009
 
1011
  msgid "Tabs"
1012
  msgstr ""
1013
 
1014
+ #: widgets/lrgawidget.php:301
1015
  msgid ""
1016
  "Take note of the <b>client ID</b> & <b>client secret</b> then click <b>OK</b>"
1017
  "."
1018
  msgstr ""
1019
 
1020
+ #: widgets/lrgawidget.php:1076
1021
  msgid "Th"
1022
  msgstr ""
1023
 
1024
  #: core/review.notice.php:39
1025
  msgid ""
1026
+ "Thank you for using <b>Lara Google Analytics</b> - widget. We hope it has "
1027
+ "saved your valuable time and efforts!"
1028
  msgstr ""
1029
 
1030
+ #: widgets/lrgawidget.php:417
1031
  msgid ""
1032
  "The selected view is using a different timezone than your server's time zone,"
1033
  " which <u>may</u> cause inaccurate dates/values."
1041
  "the widget from loading required files."
1042
  msgstr ""
1043
 
1044
+ #: widgets/lrgawidget.php:1054
1045
  msgid "This Month"
1046
  msgstr ""
1047
 
1048
+ #: widgets/lrgawidget.php:431
1049
  msgid "This will allow the widget to access your newly created property."
1050
  msgstr ""
1051
 
1052
+ #: widgets/lrgawidget.php:420
1053
  msgid "Time Zone"
1054
  msgstr ""
1055
 
1056
+ #: widgets/lrgawidget.php:1068
1057
  msgid "To"
1058
  msgstr ""
1059
 
1061
  msgid "To clear the cache memory of your browser :"
1062
  msgstr ""
1063
 
1064
+ #: widgets/lrgawidget.php:430
1065
  msgid ""
1066
  "To overcome this limitation, when you create a <b>new</b> Google Analytics "
1067
  "property, click on <b>Show Advanced Options</b> and then click on <b>Create "
1068
  "a Universal Analytics Property</b>."
1069
  msgstr ""
1070
 
1071
+ #: widgets/lrgawidget.php:398
1072
  msgid ""
1073
  "To unlock after saving, you will need to <b>reset all data</b> and re-"
1074
  "authorize with Google Analytics"
1075
  msgstr ""
1076
 
1077
+ #: widgets/lrgawidget.php:288
1078
  msgid ""
1079
  "To use the <b>Google Analytics</b> widget, you will need to create a <b>"
1080
  "Google App</b> as follows :"
1081
  msgstr ""
1082
 
1083
+ #: widgets/lrgawidget.php:580
1084
  msgid "Top Active Pages"
1085
  msgstr ""
1086
 
1087
+ #: widgets/lrgawidget.php:1059
1088
  msgid "Total"
1089
  msgstr ""
1090
 
1092
  msgid "Totals"
1093
  msgstr ""
1094
 
1095
+ #: widgets/lrgawidget.php:895
1096
  msgid "Traffic sources."
1097
  msgstr ""
1098
 
1099
+ #: widgets/lrgawidget.php:1074
1100
  msgid "Tu"
1101
  msgstr ""
1102
 
1104
  msgid "Types"
1105
  msgstr ""
1106
 
1107
+ #: widgets/lrgawidget.php:299
1108
+ msgid ""
1109
+ "Under <b>Application type</b>, select <b>Web application</b>, choose a name."
1110
+ msgstr ""
1111
+
1112
+ #: widgets/lrgawidget.php:300
1113
  msgid ""
1114
+ "Under <b>Authorized redirect URIs</b>, click <b>+ ADD URI</b>, and enter <b>"
1115
+ "https://auth.xtraorbit.com</b>, then click <b>CREATE</b>."
1116
  msgstr ""
1117
 
1118
+ #: core/lrgawidget.class.php:91 widgets/lrgawidget.php:501
1119
  msgid "Users"
1120
  msgstr ""
1121
 
1122
+ #: widgets/lrgawidget.php:366
1123
  msgid "View"
1124
  msgstr ""
1125
 
1126
+ #: widgets/lrgawidget.php:940
1127
  msgid "View all premuim features details"
1128
  msgstr ""
1129
 
1130
+ #: widgets/lrgawidget.php:412
1131
  msgid "View Name"
1132
  msgstr ""
1133
 
1134
+ #: widgets/lrgawidget.php:212 widgets/lrgawidget.php:334
1135
  msgid "View Search Console data for your verified sites"
1136
  msgstr ""
1137
 
1138
+ #: widgets/lrgawidget.php:414 widgets/lrgawidget.php:419
1139
  msgid "View Time Zone"
1140
  msgstr ""
1141
 
1142
+ #: widgets/lrgawidget.php:413
1143
  msgid "View Type"
1144
  msgstr ""
1145
 
1146
+ #: widgets/lrgawidget.php:211 widgets/lrgawidget.php:333
1147
  msgid "View your Google Analytics data"
1148
  msgstr ""
1149
 
1150
+ #: widgets/lrgawidget.php:896
1151
  msgid "Visitors Countries"
1152
  msgstr ""
1153
 
1154
+ #: widgets/lrgawidget.php:1070
1155
  msgid "W"
1156
  msgstr ""
1157
 
1158
+ #: widgets/lrgawidget.php:1075
1159
  msgid "We"
1160
  msgstr ""
1161
 
1162
+ #: widgets/lrgawidget.php:959
1163
  msgid ""
1164
  "We mix creativity with imagination, responsibility with passion, and "
1165
  "resourcefulness with fun. That is what we do everyday within our company."
1166
  msgstr ""
1167
 
1168
+ #: widgets/lrgawidget.php:303
1169
  msgid ""
1170
  "When done, paste the <b>client ID</b> & <b>client secret</b> here and click "
1171
  "<b>Submit</b>."
1172
  msgstr ""
1173
 
1174
+ #: widgets/lrgawidget.php:957
1175
  msgid "Who we are & What we do"
1176
  msgstr ""
1177
 
1180
  msgid "WooCommerce"
1181
  msgstr ""
1182
 
1183
+ #: widgets/lrgawidget.php:395
1184
  msgid "Works in the Pro version only"
1185
  msgstr ""
1186
 
1202
  msgid "You do not have permission to access this tab!"
1203
  msgstr ""
1204
 
1205
+ #: widgets/lrgawidget.php:170
1206
  msgid "You do not have permission to view any tab!"
1207
  msgstr ""
lara-google-analytics.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Lara's Google Analytics
5
  Plugin URI: https://www.xtraorbit.com/wordpress-google-analytics-dashboard-widget/
6
  Description: Full width Google Analytics dashboard widget for Wordpress admin interface, which also inserts latest Google Analytics tracking code to your pages.
7
- Version: 3.3.3
8
  Author: XtraOrbit Web Development SRL
9
  Author URI: https://www.xtraorbit.com/
10
  License: GPL2
4
  Plugin Name: Lara's Google Analytics
5
  Plugin URI: https://www.xtraorbit.com/wordpress-google-analytics-dashboard-widget/
6
  Description: Full width Google Analytics dashboard widget for Wordpress admin interface, which also inserts latest Google Analytics tracking code to your pages.
7
+ Version: 3.3.4
8
  Author: XtraOrbit Web Development SRL
9
  Author URI: https://www.xtraorbit.com/
10
  License: GPL2
readme.txt CHANGED
@@ -3,8 +3,8 @@ Tags: analytics,google analytics,google analytics dashboard,google analytics plu
3
  Contributors: amribrahim, laragoogleanalytics
4
  Requires PHP: 5.6.0
5
  Requires at least: 4.7.0
6
- Tested up to: 6.0
7
- Stable tag: 3.3.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -40,6 +40,10 @@ Adds a full width Google Analytics dashboard widget for WordPress admin interfac
40
  12. Google Analytics - Pro Version Only - Traffic Sources, showing who is sending you visitors.
41
 
42
  == Changelog ==
 
 
 
 
43
  = 3.3.3 =
44
  * 18-Jan-2021
45
  * Fix : Several small tweaks.
3
  Contributors: amribrahim, laragoogleanalytics
4
  Requires PHP: 5.6.0
5
  Requires at least: 4.7.0
6
+ Tested up to: 6.1.0
7
+ Stable tag: 3.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
40
  12. Google Analytics - Pro Version Only - Traffic Sources, showing who is sending you visitors.
41
 
42
  == Changelog ==
43
+ = 3.3.4 =
44
+ * 7-Sep-2022
45
+ * Update : Google OAuth 2.0 redirect_uri
46
+
47
  = 3.3.3 =
48
  * 18-Jan-2021
49
  * Fix : Several small tweaks.
widgets/lrgawidget.php CHANGED
@@ -156,7 +156,12 @@ if (!empty(DataStore::$RUNTIME["askforreview"])){
156
  <?php if (in_array("perm",DataStore::$RUNTIME["permissions"])){ ?>
157
  <li class="pull-right"><a data-toggle="tab" data-target="#lrgawidget_permissions_tab" href="#lrgawidget_permissions_tab"><i class="fas fa-user-lock fa-fw"></i></a></li>
158
  <?php } ?>
 
 
 
 
159
  </ul>
 
160
  <div class="tab-content">
161
  <div class="alert alert-danger hidden" id="lrgawidget_error"></div>
162
 
@@ -210,7 +215,7 @@ if (!empty(DataStore::$RUNTIME["askforreview"])){
210
  <br><br><?php _e('If you were asked to login, be sure to use the same email account that is linked to your <b>Google Analytics</b>.', 'lara-google-analytics'); ?>
211
  <br><?php _e('If you are using the <b>premium</b> version of the plugin, that email account should also be linked to your <b>Google Search Console</b>.', 'lara-google-analytics'); ?>
212
 
213
- <br><br><a href="javascript:gauthWindow('https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=<?php echo lrgawidget_plugin_client_id;?>&redirect_uri=urn:ietf:wg:oauth:2.0:oob&scope=https://www.googleapis.com/auth/analytics.readonly&access_type=offline&approval_prompt=force');" ><img src="<?php echo lrgawidget_plugin_dist_url.'/img/signin_dark_normal_web.png'; ?>"></a>
214
 
215
  </p>
216
 
@@ -291,7 +296,8 @@ if (!empty(DataStore::$RUNTIME["askforreview"])){
291
  <li><?php _e('Select <b>External</b> as the <b>User Type</b>, then click <b>CREATE</b>.', 'lara-google-analytics'); ?></li>
292
  <li><?php _e('On the next screen, choose an <b>Application name</b>, then click <b>Save</b>.', 'lara-google-analytics'); ?></li>
293
  <li><?php _e('From the side menu, click on <b>Credentials</b>, then click on <b>CREATE CREDENTIALS</b>, and select <b>OAuth client ID</b>.', 'lara-google-analytics'); ?></li>
294
- <li><?php _e('Under <b>Application type</b>, select <b>Desktop app</b>, choose a name, then click <b>CREATE</b>.', 'lara-google-analytics'); ?></li>
 
295
  <li><?php _e('Take note of the <b>client ID</b> & <b>client secret</b> then click <b>OK</b>.', 'lara-google-analytics'); ?></li>
296
  </ol>
297
  <p><?php _e('When done, paste the <b>client ID</b> & <b>client secret</b> here and click <b>Submit</b>.', 'lara-google-analytics'); ?></p>
@@ -376,6 +382,7 @@ if ($enable_ecommerce_graph !== "off"){
376
  }
377
 
378
  ?>
 
379
  <div class="lrgawidget-settings-checkbox">
380
  <input name="enable_universal_tracking" id="enable_universal_tracking" <?php echo $traching_enabled ?> type="checkbox" value="on">
381
  <label for="enable_universal_tracking"><?php _e('Add <b>Google Universal Analytics</b> tracking code to all pages.', 'lara-google-analytics'); ?></label>
156
  <?php if (in_array("perm",DataStore::$RUNTIME["permissions"])){ ?>
157
  <li class="pull-right"><a data-toggle="tab" data-target="#lrgawidget_permissions_tab" href="#lrgawidget_permissions_tab"><i class="fas fa-user-lock fa-fw"></i></a></li>
158
  <?php } ?>
159
+
160
+ <?php if (!empty(DataStore::$RUNTIME["showhelp"])){ ?>
161
+ <li class="pull-right"><a href="https://clients.xtraorbit.com/submitticket.php?step=2&deptid=2&subject=Shopify_Widget_Help" target="_blank"><i class="fas fa-question-circle fa-fw"></i></a></li>
162
+ <?php } ?>
163
  </ul>
164
+
165
  <div class="tab-content">
166
  <div class="alert alert-danger hidden" id="lrgawidget_error"></div>
167
 
215
  <br><br><?php _e('If you were asked to login, be sure to use the same email account that is linked to your <b>Google Analytics</b>.', 'lara-google-analytics'); ?>
216
  <br><?php _e('If you are using the <b>premium</b> version of the plugin, that email account should also be linked to your <b>Google Search Console</b>.', 'lara-google-analytics'); ?>
217
 
218
+ <br><br><a href="javascript:gauthWindow('https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=<?php echo lrgawidget_plugin_client_id;?>&redirect_uri=<?php echo lrgawidget_plugin_redirect_uri;?>&scope=https://www.googleapis.com/auth/analytics.readonly&access_type=offline&approval_prompt=force');" ><img src="<?php echo lrgawidget_plugin_dist_url.'/img/signin_dark_normal_web.png'; ?>"></a>
219
 
220
  </p>
221
 
296
  <li><?php _e('Select <b>External</b> as the <b>User Type</b>, then click <b>CREATE</b>.', 'lara-google-analytics'); ?></li>
297
  <li><?php _e('On the next screen, choose an <b>Application name</b>, then click <b>Save</b>.', 'lara-google-analytics'); ?></li>
298
  <li><?php _e('From the side menu, click on <b>Credentials</b>, then click on <b>CREATE CREDENTIALS</b>, and select <b>OAuth client ID</b>.', 'lara-google-analytics'); ?></li>
299
+ <li><?php _e('Under <b>Application type</b>, select <b>Web application</b>, choose a name.', 'lara-google-analytics'); ?></li>
300
+ <li><?php _e('Under <b>Authorized redirect URIs</b>, click <b>+ ADD URI</b>, and enter <b>https://auth.xtraorbit.com</b>, then click <b>CREATE</b>.', 'lara-google-analytics'); ?></li>
301
  <li><?php _e('Take note of the <b>client ID</b> & <b>client secret</b> then click <b>OK</b>.', 'lara-google-analytics'); ?></li>
302
  </ol>
303
  <p><?php _e('When done, paste the <b>client ID</b> & <b>client secret</b> here and click <b>Submit</b>.', 'lara-google-analytics'); ?></p>
382
  }
383
 
384
  ?>
385
+
386
  <div class="lrgawidget-settings-checkbox">
387
  <input name="enable_universal_tracking" id="enable_universal_tracking" <?php echo $traching_enabled ?> type="checkbox" value="on">
388
  <label for="enable_universal_tracking"><?php _e('Add <b>Google Universal Analytics</b> tracking code to all pages.', 'lara-google-analytics'); ?></label>