Responsive Add Ons - Version 2.1.0

Version Description

  • 27th November 2019 =
  • Fix - Fatal Error when Analytics SDK is included in more than two plugins installed on same instance
Download this release

Release Info

Developer cyberchimps
Plugin Icon 128x128 Responsive Add Ons
Version 2.1.0
Comparing to
See all releases

Code changes from version 2.0.9 to 2.1.0

admin/js/responsive-ready-sites-admin.js CHANGED
@@ -1009,7 +1009,7 @@ var ResponsiveSitesAjaxQueue = (function() {
1009
 
1010
  // 1. Fail - Request Site Import.
1011
  if ( false === demo_data.success ) {
1012
-
1013
  } else {
1014
 
1015
  ResponsiveSitesAdmin.xml_path = encodeURI( demo_data.data['xml_path'] ) || '';
1009
 
1010
  // 1. Fail - Request Site Import.
1011
  if ( false === demo_data.success ) {
1012
+ ResponsiveSitesAdmin._log_error( 'There was an error while processing import. Please try again.', true );
1013
  } else {
1014
 
1015
  ResponsiveSitesAdmin.xml_path = encodeURI( demo_data.data['xml_path'] ) || '';
analytics/start.php CHANGED
@@ -25,39 +25,40 @@ if ( ! class_exists( 'Analytics' ) ) {
25
  if ( ! defined( 'WP_STAT__SDK_VERSION' ) ) {
26
  define( 'WP_STAT__SDK_VERSION', $this_sdk_version );
27
  }
28
- }
29
- // Load SDK files.
30
- require_once dirname( __FILE__ ) . '/require.php';
31
 
32
- /**
33
- * Dynamic Init.
34
- *
35
- * @param array <string,string> $module Plugin or Theme details.
36
- *
37
- * @return Analytics
38
- */
39
- function ras_dynamic_init( $module ) {
40
- if ( ! isset( $module['plugin_basename'] ) ) {
41
- $plugin_basename = '';
42
- } else {
43
- $plugin_basename = $module['plugin_basename'];
44
- }
45
- $ra = Analytics::instance( $module['id'], $module['slug'], $module['product_name'], $module['version'], $module['module_type'], $plugin_basename );
46
- $ra->dynamic_init( $module );
47
 
48
- return $ra;
49
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
- /**
52
- * Quick shortcut to get Analytics for specified plugin.
53
- * Used by various templates.
54
- *
55
- * @param number $module_id Module Id.
56
- * @param string $slug Slug.
57
- * @param string $product_name Product Name.
58
- * @param string $version Product Version.
59
- * @param string $module_type Module type.
60
- */
61
- function analytics( $module_id, $slug, $product_name, $version, $module_type ) {
62
- return Analytics::instance( $module_id, $slug, $product_name, $version, $module_type );
 
 
 
 
63
  }
25
  if ( ! defined( 'WP_STAT__SDK_VERSION' ) ) {
26
  define( 'WP_STAT__SDK_VERSION', $this_sdk_version );
27
  }
 
 
 
28
 
29
+ // Load SDK files.
30
+ require_once dirname( __FILE__ ) . '/require.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
+ /**
33
+ * Dynamic Init.
34
+ *
35
+ * @param array <string,string> $module Plugin or Theme details.
36
+ *
37
+ * @return Analytics
38
+ */
39
+ function ras_dynamic_init( $module ) {
40
+ if ( ! isset( $module['plugin_basename'] ) ) {
41
+ $plugin_basename = '';
42
+ } else {
43
+ $plugin_basename = $module['plugin_basename'];
44
+ }
45
+ $ra = Analytics::instance( $module['id'], $module['slug'], $module['product_name'], $module['version'], $module['module_type'], $plugin_basename );
46
+ $ra->dynamic_init( $module );
47
 
48
+ return $ra;
49
+ }
50
+
51
+ /**
52
+ * Quick shortcut to get Analytics for specified plugin.
53
+ * Used by various templates.
54
+ *
55
+ * @param number $module_id Module Id.
56
+ * @param string $slug Slug.
57
+ * @param string $product_name Product Name.
58
+ * @param string $version Product Version.
59
+ * @param string $module_type Module type.
60
+ */
61
+ function analytics( $module_id, $slug, $product_name, $version, $module_type ) {
62
+ return Analytics::instance( $module_id, $slug, $product_name, $version, $module_type );
63
+ }
64
  }
includes/importers/class-responsive-ready-sites-importer.php CHANGED
@@ -159,6 +159,9 @@ if ( ! class_exists( 'Responsive_Ready_Sites_Importer' ) ) :
159
  if ( ! empty( $demo_api_uri ) ) {
160
 
161
  $demo_data = self::get_responsive_single_demo( $demo_api_uri );
 
 
 
162
 
163
  update_option( 'responsive_ready_sites_import_data', $demo_data );
164
 
@@ -511,6 +514,7 @@ if ( ! class_exists( 'Responsive_Ready_Sites_Importer' ) ) :
511
  $request_params = apply_filters(
512
  'responsive_sites_api_params',
513
  array(
 
514
  'site_url' => site_url(),
515
  )
516
  );
@@ -524,10 +528,13 @@ if ( ! class_exists( 'Responsive_Ready_Sites_Importer' ) ) :
524
  if ( isset( $response->status ) ) {
525
  $data = json_decode( $response, true );
526
  } else {
527
- return new WP_Error( 'api_invalid_response_code', $response->get_error_message() );
528
  }
529
  } else {
530
  $data = json_decode( wp_remote_retrieve_body( $response ), true );
 
 
 
531
  }
532
 
533
  if ( ! isset( $data['code'] ) ) {
159
  if ( ! empty( $demo_api_uri ) ) {
160
 
161
  $demo_data = self::get_responsive_single_demo( $demo_api_uri );
162
+ if ( ! $demo_data ) {
163
+ wp_send_json_error( __( 'Request site API URL is empty. Try again!', 'responsive-addons' ) );
164
+ }
165
 
166
  update_option( 'responsive_ready_sites_import_data', $demo_data );
167
 
514
  $request_params = apply_filters(
515
  'responsive_sites_api_params',
516
  array(
517
+ 'api_key' => '',
518
  'site_url' => site_url(),
519
  )
520
  );
528
  if ( isset( $response->status ) ) {
529
  $data = json_decode( $response, true );
530
  } else {
531
+ return false;
532
  }
533
  } else {
534
  $data = json_decode( wp_remote_retrieve_body( $response ), true );
535
+ if ( ! $data['success'] ) {
536
+ return false;
537
+ }
538
  }
539
 
540
  if ( ! isset( $data['code'] ) ) {
languages/responsive-addons.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Responsive Add Ons 2.0.4\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/responsive-add-ons\n"
8
- "POT-Creation-Date: 2019-08-29 09:24:57+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -25,95 +25,145 @@ msgstr ""
25
  "X-Poedit-Bookmarks: \n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
- #: admin/partials/responsive-ready-sites-admin-display.php:70
29
- #: admin/partials/responsive-ready-sites-admin-display.php:130
30
  msgid "Preview"
31
  msgstr ""
32
 
33
- #: admin/partials/responsive-ready-sites-admin-display.php:79
34
  msgid "No Demos found"
35
  msgstr ""
36
 
37
- #: admin/partials/responsive-ready-sites-admin-display.php:83
38
  #. translators: %1$s External Link
39
  msgid "No More Sites"
40
  msgstr ""
41
 
42
- #: admin/partials/responsive-ready-sites-admin-display.php:93
43
  #. translators: %1$s External Link
44
  msgid ""
45
  "Can't find a Responsive Ready Site that suits your purpose ?<br><a "
46
  "target=\"_blank\" href=\"%1$s\">Suggest A Site</a>"
47
  msgstr ""
48
 
49
- #: admin/partials/responsive-ready-sites-admin-display.php:119
50
- #: admin/partials/responsive-ready-sites-admin-display.php:212
51
  msgid "Import Site"
52
  msgstr ""
53
 
54
- #: admin/partials/responsive-ready-sites-admin-display.php:123
55
  msgid "Buy Responsive Pro"
56
  msgstr ""
57
 
58
- #: admin/partials/responsive-ready-sites-admin-display.php:126
59
- #: admin/partials/responsive-ready-sites-admin-display.php:153
60
  msgid "Close"
61
  msgstr ""
62
 
63
- #: admin/partials/responsive-ready-sites-admin-display.php:169
64
  msgid "Install Required Plugins"
65
  msgstr ""
66
 
67
- #: admin/partials/responsive-ready-sites-admin-display.php:181
68
  msgid ""
69
  "Deletes previous import including customizer settings and content. Plugins "
70
  "are not deleted."
71
  msgstr ""
72
 
73
- #: admin/partials/responsive-ready-sites-admin-display.php:190
74
  msgid ""
75
  "Imports sample pages, posts, images and menus. Depending on your internet "
76
  "speed this may take 2-10 minutes."
77
  msgstr ""
78
 
79
- #: admin/partials/responsive-ready-sites-admin-display.php:202
80
  msgid ""
81
  "Imports sample customizer settings including site identity, typography, "
82
  "colors and other theme options."
83
  msgstr ""
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  #: includes/importers/batch-processing/helpers/class-wp-background-process.php:435
86
  msgid "Every %d Minutes"
87
  msgstr ""
88
 
89
- #: includes/importers/class-responsive-ready-sites-importer.php:178
90
  msgid "Request site API URL is empty. Try again!"
91
  msgstr ""
92
 
93
- #: includes/importers/class-responsive-ready-sites-importer.php:194
94
  msgid ""
95
  "If XMLReader is not available, it imports all other settings and only skips "
96
  "XML import. This creates an incomplete website. We should bail early and "
97
  "not import anything if this is not present."
98
  msgstr ""
99
 
100
- #: includes/importers/class-responsive-ready-sites-importer.php:210
101
  msgid "There was an error downloading the XML file."
102
  msgstr ""
103
 
104
- #: includes/importers/class-responsive-ready-sites-importer.php:216
105
  msgid "Invalid site XML file!"
106
  msgstr ""
107
 
108
- #: includes/importers/class-responsive-ready-sites-importer.php:327
109
  msgid "Customizer data is empty!"
110
  msgstr ""
111
 
112
- #: includes/importers/class-responsive-ready-sites-importer.php:356
113
  msgid "Widget data is empty!"
114
  msgstr ""
115
 
116
- #: includes/importers/class-responsive-ready-sites-importer.php:383
117
  msgid "Site options are empty!"
118
  msgstr ""
119
 
@@ -125,23 +175,23 @@ msgstr ""
125
  msgid "Widget area does not exist in theme (using Inactive)"
126
  msgstr ""
127
 
128
- #: includes/importers/class-responsive-ready-sites-widgets-importer.php:156
129
  msgid "Site does not support widget"
130
  msgstr ""
131
 
132
- #: includes/importers/class-responsive-ready-sites-widgets-importer.php:192
133
  msgid "Widget already exists"
134
  msgstr ""
135
 
136
- #: includes/importers/class-responsive-ready-sites-widgets-importer.php:261
137
  msgid "Imported"
138
  msgstr ""
139
 
140
- #: includes/importers/class-responsive-ready-sites-widgets-importer.php:264
141
  msgid "Imported to Inactive"
142
  msgstr ""
143
 
144
- #: includes/importers/class-responsive-ready-sites-widgets-importer.php:270
145
  msgid "No Title"
146
  msgstr ""
147
 
@@ -296,107 +346,126 @@ msgstr ""
296
  msgid "Could not update comment #%d with mapped data"
297
  msgstr ""
298
 
299
- #: responsive-add-ons.php:159
300
  msgid "Theme Activated"
301
  msgstr ""
302
 
303
- #: responsive-add-ons.php:304 responsive-add-ons.php:305
304
- #: responsive-add-ons.php:314
305
- msgid "Responsive Add-Ons"
306
- msgstr ""
307
-
308
- #: responsive-add-ons.php:315
309
- msgid "Ready Websites"
310
- msgstr ""
311
-
312
- #: responsive-add-ons.php:333
313
  msgid "You do not have sufficient permissions to access this page."
314
  msgstr ""
315
 
316
- #: responsive-add-ons.php:358 responsive-add-ons.php:439
317
  msgid "Webmaster Tools"
318
  msgstr ""
319
 
320
- #: responsive-add-ons.php:376 responsive-add-ons.php:442
321
  #: templates/settings.php:35
322
  msgid "Google Site Verification"
323
  msgstr ""
324
 
325
- #: responsive-add-ons.php:381 responsive-add-ons.php:447
326
  #: templates/settings.php:38
327
  msgid "Enter your Google ID number only"
328
  msgstr ""
329
 
330
- #: responsive-add-ons.php:385 responsive-add-ons.php:453
331
  #: templates/settings.php:42
332
  msgid "Bing Site Verification"
333
  msgstr ""
334
 
335
- #: responsive-add-ons.php:390 responsive-add-ons.php:458
336
  #: templates/settings.php:45
337
  msgid "Enter your Bing ID number only"
338
  msgstr ""
339
 
340
- #: responsive-add-ons.php:394 responsive-add-ons.php:464
341
  #: templates/settings.php:49
342
  msgid "Yahoo Site Verification"
343
  msgstr ""
344
 
345
- #: responsive-add-ons.php:399 responsive-add-ons.php:469
346
  #: templates/settings.php:52
347
  msgid "Enter your Yahoo ID number only"
348
  msgstr ""
349
 
350
- #: responsive-add-ons.php:403 responsive-add-ons.php:475
351
  #: templates/settings.php:57
352
  msgid "Site Statistics Tracker"
353
  msgstr ""
354
 
355
- #: responsive-add-ons.php:404 responsive-add-ons.php:476
356
  msgid "Leave blank if plugin handles your webmaster tools"
357
  msgstr ""
358
 
359
- #: responsive-add-ons.php:404 responsive-add-ons.php:476
360
  msgid "Guide"
361
  msgstr ""
362
 
363
- #: responsive-add-ons.php:409 responsive-add-ons.php:481
364
  #: templates/settings.php:63
365
  msgid "Google Analytics, StatCounter, any other or all of them."
366
  msgstr ""
367
 
368
- #: responsive-add-ons.php:555 responsive-add-ons.php:557
369
  msgid "Settings"
370
  msgstr ""
371
 
372
- #: responsive-add-ons.php:570
373
  msgid "Responsive Ready Sites"
374
  msgstr ""
375
 
376
- #: responsive-add-ons.php:611
377
  msgid "Installed! Activating.."
378
  msgstr ""
379
 
380
- #: responsive-add-ons.php:612
381
  msgid "Activating.."
382
  msgstr ""
383
 
384
- #: responsive-add-ons.php:613
385
  msgid "Activated! Reloading.."
386
  msgstr ""
387
 
388
- #: responsive-add-ons.php:614
389
  msgid "Installing.."
390
  msgstr ""
391
 
392
- #: responsive-add-ons.php:793
393
  msgid "No plugin specified"
394
  msgstr ""
395
 
396
- #: responsive-add-ons.php:815
397
  msgid "Plugin Activated"
398
  msgstr ""
399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  #: templates/getting-started.php:12
401
  msgid "Responsive Gutenberg Block Add-ons"
402
  msgstr ""
@@ -541,16 +610,14 @@ msgstr ""
541
  msgid "Webmaster Settings"
542
  msgstr ""
543
 
544
- #. Plugin Name of the plugin/theme
545
- msgid "Responsive Add Ons"
546
- msgstr ""
547
-
548
  #. Plugin URI of the plugin/theme
549
  msgid "http://wordpress.org/plugins/responsive-add-ons/"
550
  msgstr ""
551
 
552
  #. Description of the plugin/theme
553
- msgid "Added functionality for the responsive theme"
 
 
554
  msgstr ""
555
 
556
  #. Author of the plugin/theme
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Responsive Ready Sites Importer 2.0.8\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/responsive-add-ons\n"
8
+ "POT-Creation-Date: 2019-09-24 11:19:43+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
25
  "X-Poedit-Bookmarks: \n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
+ #: admin/partials/responsive-ready-sites-admin-display.php:78
29
+ #: admin/partials/responsive-ready-sites-admin-display.php:143
30
  msgid "Preview"
31
  msgstr ""
32
 
33
+ #: admin/partials/responsive-ready-sites-admin-display.php:86
34
  msgid "No Demos found"
35
  msgstr ""
36
 
37
+ #: admin/partials/responsive-ready-sites-admin-display.php:90
38
  #. translators: %1$s External Link
39
  msgid "No More Sites"
40
  msgstr ""
41
 
42
+ #: admin/partials/responsive-ready-sites-admin-display.php:105
43
  #. translators: %1$s External Link
44
  msgid ""
45
  "Can't find a Responsive Ready Site that suits your purpose ?<br><a "
46
  "target=\"_blank\" href=\"%1$s\">Suggest A Site</a>"
47
  msgstr ""
48
 
49
+ #: admin/partials/responsive-ready-sites-admin-display.php:132
50
+ #: admin/partials/responsive-ready-sites-admin-display.php:226
51
  msgid "Import Site"
52
  msgstr ""
53
 
54
+ #: admin/partials/responsive-ready-sites-admin-display.php:136
55
  msgid "Buy Responsive Pro"
56
  msgstr ""
57
 
58
+ #: admin/partials/responsive-ready-sites-admin-display.php:139
59
+ #: admin/partials/responsive-ready-sites-admin-display.php:167
60
  msgid "Close"
61
  msgstr ""
62
 
63
+ #: admin/partials/responsive-ready-sites-admin-display.php:183
64
  msgid "Install Required Plugins"
65
  msgstr ""
66
 
67
+ #: admin/partials/responsive-ready-sites-admin-display.php:195
68
  msgid ""
69
  "Deletes previous import including customizer settings and content. Plugins "
70
  "are not deleted."
71
  msgstr ""
72
 
73
+ #: admin/partials/responsive-ready-sites-admin-display.php:204
74
  msgid ""
75
  "Imports sample pages, posts, images and menus. Depending on your internet "
76
  "speed this may take 2-10 minutes."
77
  msgstr ""
78
 
79
+ #: admin/partials/responsive-ready-sites-admin-display.php:216
80
  msgid ""
81
  "Imports sample customizer settings including site identity, typography, "
82
  "colors and other theme options."
83
  msgstr ""
84
 
85
+ #: admin/templates/responsive-addons-go-pro.php:12
86
+ msgid "Get Responsive Ready Sites Importer Pro"
87
+ msgstr ""
88
+
89
+ #: admin/templates/responsive-addons-go-pro.php:13
90
+ msgid ""
91
+ "Upgrade to Responsive Ready Sites Importer Pro and get Pro Ready sites, "
92
+ "more customizer options & premium support."
93
+ msgstr ""
94
+
95
+ #: admin/templates/responsive-addons-go-pro.php:14
96
+ msgid "Upgrade To Pro"
97
+ msgstr ""
98
+
99
+ #: admin/templates/responsive-addons-support.php:12
100
+ msgid "Community Support"
101
+ msgstr ""
102
+
103
+ #: admin/templates/responsive-addons-support.php:13
104
+ #: admin/templates/responsive-addons-support.php:18
105
+ #: admin/templates/responsive-addons-support.php:27
106
+ msgid ""
107
+ "Free Responsive user? Use the WordPress.org support forums to get help from "
108
+ "our experts and other Responsive users."
109
+ msgstr ""
110
+
111
+ #: admin/templates/responsive-addons-support.php:14
112
+ msgid "WordPress.org Support"
113
+ msgstr ""
114
+
115
+ #: admin/templates/responsive-addons-support.php:17
116
+ msgid "Premium Support"
117
+ msgstr ""
118
+
119
+ #: admin/templates/responsive-addons-support.php:20
120
+ msgid "Request Support"
121
+ msgstr ""
122
+
123
+ #: admin/templates/responsive-addons-support.php:22
124
+ msgid "Upgrade To Responsive Pro"
125
+ msgstr ""
126
+
127
+ #: admin/templates/responsive-addons-support.php:26
128
+ msgid "Documentation"
129
+ msgstr ""
130
+
131
+ #: admin/templates/responsive-addons-support.php:28
132
+ msgid "See Documentation"
133
+ msgstr ""
134
+
135
  #: includes/importers/batch-processing/helpers/class-wp-background-process.php:435
136
  msgid "Every %d Minutes"
137
  msgstr ""
138
 
139
+ #: includes/importers/class-responsive-ready-sites-importer.php:174
140
  msgid "Request site API URL is empty. Try again!"
141
  msgstr ""
142
 
143
+ #: includes/importers/class-responsive-ready-sites-importer.php:189
144
  msgid ""
145
  "If XMLReader is not available, it imports all other settings and only skips "
146
  "XML import. This creates an incomplete website. We should bail early and "
147
  "not import anything if this is not present."
148
  msgstr ""
149
 
150
+ #: includes/importers/class-responsive-ready-sites-importer.php:205
151
  msgid "There was an error downloading the XML file."
152
  msgstr ""
153
 
154
+ #: includes/importers/class-responsive-ready-sites-importer.php:211
155
  msgid "Invalid site XML file!"
156
  msgstr ""
157
 
158
+ #: includes/importers/class-responsive-ready-sites-importer.php:319
159
  msgid "Customizer data is empty!"
160
  msgstr ""
161
 
162
+ #: includes/importers/class-responsive-ready-sites-importer.php:347
163
  msgid "Widget data is empty!"
164
  msgstr ""
165
 
166
+ #: includes/importers/class-responsive-ready-sites-importer.php:373
167
  msgid "Site options are empty!"
168
  msgstr ""
169
 
175
  msgid "Widget area does not exist in theme (using Inactive)"
176
  msgstr ""
177
 
178
+ #: includes/importers/class-responsive-ready-sites-widgets-importer.php:155
179
  msgid "Site does not support widget"
180
  msgstr ""
181
 
182
+ #: includes/importers/class-responsive-ready-sites-widgets-importer.php:191
183
  msgid "Widget already exists"
184
  msgstr ""
185
 
186
+ #: includes/importers/class-responsive-ready-sites-widgets-importer.php:260
187
  msgid "Imported"
188
  msgstr ""
189
 
190
+ #: includes/importers/class-responsive-ready-sites-widgets-importer.php:263
191
  msgid "Imported to Inactive"
192
  msgstr ""
193
 
194
+ #: includes/importers/class-responsive-ready-sites-widgets-importer.php:269
195
  msgid "No Title"
196
  msgstr ""
197
 
346
  msgid "Could not update comment #%d with mapped data"
347
  msgstr ""
348
 
349
+ #: responsive-add-ons.php:184
350
  msgid "Theme Activated"
351
  msgstr ""
352
 
353
+ #: responsive-add-ons.php:306
 
 
 
 
 
 
 
 
 
354
  msgid "You do not have sufficient permissions to access this page."
355
  msgstr ""
356
 
357
+ #: responsive-add-ons.php:331 responsive-add-ons.php:412
358
  msgid "Webmaster Tools"
359
  msgstr ""
360
 
361
+ #: responsive-add-ons.php:349 responsive-add-ons.php:415
362
  #: templates/settings.php:35
363
  msgid "Google Site Verification"
364
  msgstr ""
365
 
366
+ #: responsive-add-ons.php:354 responsive-add-ons.php:420
367
  #: templates/settings.php:38
368
  msgid "Enter your Google ID number only"
369
  msgstr ""
370
 
371
+ #: responsive-add-ons.php:358 responsive-add-ons.php:426
372
  #: templates/settings.php:42
373
  msgid "Bing Site Verification"
374
  msgstr ""
375
 
376
+ #: responsive-add-ons.php:363 responsive-add-ons.php:431
377
  #: templates/settings.php:45
378
  msgid "Enter your Bing ID number only"
379
  msgstr ""
380
 
381
+ #: responsive-add-ons.php:367 responsive-add-ons.php:437
382
  #: templates/settings.php:49
383
  msgid "Yahoo Site Verification"
384
  msgstr ""
385
 
386
+ #: responsive-add-ons.php:372 responsive-add-ons.php:442
387
  #: templates/settings.php:52
388
  msgid "Enter your Yahoo ID number only"
389
  msgstr ""
390
 
391
+ #: responsive-add-ons.php:376 responsive-add-ons.php:448
392
  #: templates/settings.php:57
393
  msgid "Site Statistics Tracker"
394
  msgstr ""
395
 
396
+ #: responsive-add-ons.php:377 responsive-add-ons.php:449
397
  msgid "Leave blank if plugin handles your webmaster tools"
398
  msgstr ""
399
 
400
+ #: responsive-add-ons.php:377 responsive-add-ons.php:449
401
  msgid "Guide"
402
  msgstr ""
403
 
404
+ #: responsive-add-ons.php:382 responsive-add-ons.php:454
405
  #: templates/settings.php:63
406
  msgid "Google Analytics, StatCounter, any other or all of them."
407
  msgstr ""
408
 
409
+ #: responsive-add-ons.php:527
410
  msgid "Settings"
411
  msgstr ""
412
 
413
+ #: responsive-add-ons.php:539
414
  msgid "Responsive Ready Sites"
415
  msgstr ""
416
 
417
+ #: responsive-add-ons.php:580
418
  msgid "Installed! Activating.."
419
  msgstr ""
420
 
421
+ #: responsive-add-ons.php:581
422
  msgid "Activating.."
423
  msgstr ""
424
 
425
+ #: responsive-add-ons.php:582
426
  msgid "Activated! Reloading.."
427
  msgstr ""
428
 
429
+ #: responsive-add-ons.php:583
430
  msgid "Installing.."
431
  msgstr ""
432
 
433
+ #: responsive-add-ons.php:760
434
  msgid "No plugin specified"
435
  msgstr ""
436
 
437
+ #: responsive-add-ons.php:782
438
  msgid "Plugin Activated"
439
  msgstr ""
440
 
441
+ #. Plugin Name of the plugin/theme
442
+ msgid "Responsive Ready Sites Importer"
443
+ msgstr ""
444
+
445
+ #: responsive-add-ons.php:877
446
+ msgid "Ready Sites Importer"
447
+ msgstr ""
448
+
449
+ #: responsive-add-ons.php:881
450
+ msgid "Go Pro"
451
+ msgstr ""
452
+
453
+ #: responsive-add-ons.php:884
454
+ msgid "Support"
455
+ msgstr ""
456
+
457
+ #: responsive-add-ons.php:940
458
+ #. translators: %s: Link to 5 star rating
459
+ msgid ""
460
+ "If you like the <strong>Responsive Ready Sites Importer</strong> plugin "
461
+ "please leave us a %s rating. It takes a minute and helps a lot. Thanks in "
462
+ "advance!"
463
+ msgstr ""
464
+
465
+ #: responsive-add-ons.php:941
466
+ msgid "Thanks :)"
467
+ msgstr ""
468
+
469
  #: templates/getting-started.php:12
470
  msgid "Responsive Gutenberg Block Add-ons"
471
  msgstr ""
610
  msgid "Webmaster Settings"
611
  msgstr ""
612
 
 
 
 
 
613
  #. Plugin URI of the plugin/theme
614
  msgid "http://wordpress.org/plugins/responsive-add-ons/"
615
  msgstr ""
616
 
617
  #. Description of the plugin/theme
618
+ msgid ""
619
+ "Import Responsive Ready Sites that help you launch your website quickly. "
620
+ "Just import, update & hit the launch button."
621
  msgstr ""
622
 
623
  #. Author of the plugin/theme
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Elementor, Demo Importer, Templates, Starter Sites, Ready Websites
5
  Requires at least: 5.0
6
  Tested up to: 5.3
7
  Requires PHP: 5.3
8
- Stable tag: 2.0.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -61,6 +61,9 @@ Absolutely not! Once you install the plugin, it will take care of all other depe
61
  4. Your website is ready
62
 
63
  == Changelog ==
 
 
 
64
  = 2.0.9 - 15th November 2019 =
65
  * Added - Feedback form on plugin deactivation
66
 
5
  Requires at least: 5.0
6
  Tested up to: 5.3
7
  Requires PHP: 5.3
8
+ Stable tag: 2.1.10
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
61
  4. Your website is ready
62
 
63
  == Changelog ==
64
+ = 2.1.0 - 27th November 2019 =
65
+ * Fix - Fatal Error when Analytics SDK is included in more than two plugins installed on same instance
66
+
67
  = 2.0.9 - 15th November 2019 =
68
  * Added - Feedback form on plugin deactivation
69
 
responsive-add-ons.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Responsive Ready Sites Importer
4
  Plugin URI: http://wordpress.org/plugins/responsive-add-ons/
5
  Description: Import Responsive Ready Sites that help you launch your website quickly. Just import, update & hit the launch button.
6
- Version: 2.0.9
7
  Author: CyberChimps
8
  Author URI: http://www.cyberchimps.com
9
  License: GPL2
@@ -52,7 +52,7 @@ if ( ! function_exists( 'ra_fs' ) ) {
52
  'slug' => 'responsive-add-ons',
53
  'product_name' => 'Responsive Ready Sites Importer',
54
  'module_type' => 'plugin',
55
- 'version' => '2.0.9',
56
  'plugin_basename' => 'responsive-add-ons/responsive-add-ons.php',
57
  ) );
58
  }
3
  Plugin Name: Responsive Ready Sites Importer
4
  Plugin URI: http://wordpress.org/plugins/responsive-add-ons/
5
  Description: Import Responsive Ready Sites that help you launch your website quickly. Just import, update & hit the launch button.
6
+ Version: 2.1.0
7
  Author: CyberChimps
8
  Author URI: http://www.cyberchimps.com
9
  License: GPL2
52
  'slug' => 'responsive-add-ons',
53
  'product_name' => 'Responsive Ready Sites Importer',
54
  'module_type' => 'plugin',
55
+ 'version' => '2.1.0',
56
  'plugin_basename' => 'responsive-add-ons/responsive-add-ons.php',
57
  ) );
58
  }