Version Description
Download this release
Release Info
Developer | brainstormworg |
Plugin | Astra Starter Sites |
Version | 2.6.20 |
Comparing to | |
See all releases |
Code changes from version 2.6.19 to 2.6.20
- astra-sites.php +2 -2
- inc/assets/js/admin-page.js +1 -1
- inc/assets/js/dist/main.asset.php +1 -1
- inc/classes/class-astra-sites.php +61 -14
- inc/lib/gutenberg-templates/classes/class-ast-block-templates.php +1 -1
- languages/astra-sites.pot +119 -119
- readme.txt +4 -1
astra-sites.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Starter Templates
|
4 |
* Plugin URI: https://wpastra.com/
|
5 |
* Description: Starter Templates is all in one solution for complete starter sites, single page templates, blocks & images. This plugin offers the premium library of ready templates & provides quick access to beautiful Pixabay images that can be imported in your website easily.
|
6 |
-
* Version: 2.6.
|
7 |
* Author: Brainstorm Force
|
8 |
* Author URI: https://www.brainstormforce.com
|
9 |
* Text Domain: astra-sites
|
@@ -19,7 +19,7 @@ if ( ! defined( 'ASTRA_SITES_NAME' ) ) {
|
|
19 |
}
|
20 |
|
21 |
if ( ! defined( 'ASTRA_SITES_VER' ) ) {
|
22 |
-
define( 'ASTRA_SITES_VER', '2.6.
|
23 |
}
|
24 |
|
25 |
if ( ! defined( 'ASTRA_SITES_FILE' ) ) {
|
3 |
* Plugin Name: Starter Templates
|
4 |
* Plugin URI: https://wpastra.com/
|
5 |
* Description: Starter Templates is all in one solution for complete starter sites, single page templates, blocks & images. This plugin offers the premium library of ready templates & provides quick access to beautiful Pixabay images that can be imported in your website easily.
|
6 |
+
* Version: 2.6.20
|
7 |
* Author: Brainstorm Force
|
8 |
* Author URI: https://www.brainstormforce.com
|
9 |
* Text Domain: astra-sites
|
19 |
}
|
20 |
|
21 |
if ( ! defined( 'ASTRA_SITES_VER' ) ) {
|
22 |
+
define( 'ASTRA_SITES_VER', '2.6.20' );
|
23 |
}
|
24 |
|
25 |
if ( ! defined( 'ASTRA_SITES_FILE' ) ) {
|
inc/assets/js/admin-page.js
CHANGED
@@ -3332,7 +3332,7 @@ var AstraSitesAjaxQueue = (function () {
|
|
3332 |
type: 'POST',
|
3333 |
data: {
|
3334 |
action: 'astra-sites-api-request',
|
3335 |
-
url: astraSitesVars.cpt_slug + '/' + site_id + '
|
3336 |
},
|
3337 |
beforeSend: function () {
|
3338 |
console.groupCollapsed('Requesting API');
|
3332 |
type: 'POST',
|
3333 |
data: {
|
3334 |
action: 'astra-sites-api-request',
|
3335 |
+
url: astraSitesVars.cpt_slug + '/' + site_id + '/?' + decodeURIComponent($.param(AstraSitesAdmin._api_params)),
|
3336 |
},
|
3337 |
beforeSend: function () {
|
3338 |
console.groupCollapsed('Requesting API');
|
inc/assets/js/dist/main.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '7e02c98e0d124501c887638383796ce3');
|
inc/classes/class-astra-sites.php
CHANGED
@@ -82,6 +82,14 @@ if ( ! class_exists( 'Astra_Sites' ) ) :
|
|
82 |
*/
|
83 |
public $wp_upload_url = '';
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
/**
|
86 |
* Instance of Astra_Sites.
|
87 |
*
|
@@ -121,24 +129,63 @@ if ( ! class_exists( 'Astra_Sites' ) ) :
|
|
121 |
add_action( 'elementor/preview/enqueue_styles', array( $this, 'popup_styles' ) );
|
122 |
|
123 |
// AJAX.
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
|
138 |
add_action( 'delete_attachment', array( $this, 'delete_astra_images' ) );
|
139 |
add_filter( 'heartbeat_received', array( $this, 'search_push' ), 10, 2 );
|
140 |
-
add_action( 'wp_ajax_astra-sites-update-subscription', array( $this, 'update_subscription' ) );
|
141 |
add_action( 'admin_footer', array( $this, 'add_quick_links' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
}
|
143 |
|
144 |
/**
|
82 |
*/
|
83 |
public $wp_upload_url = '';
|
84 |
|
85 |
+
/**
|
86 |
+
* Ajax
|
87 |
+
*
|
88 |
+
* @since 2.6.20
|
89 |
+
* @var (Array) $ajax
|
90 |
+
*/
|
91 |
+
private $ajax = array();
|
92 |
+
|
93 |
/**
|
94 |
* Instance of Astra_Sites.
|
95 |
*
|
129 |
add_action( 'elementor/preview/enqueue_styles', array( $this, 'popup_styles' ) );
|
130 |
|
131 |
// AJAX.
|
132 |
+
$this->ajax = array(
|
133 |
+
'astra-required-plugins' => 'required_plugin',
|
134 |
+
'astra-required-plugin-activate' => 'required_plugin_activate',
|
135 |
+
'astra-sites-backup-settings' => 'backup_settings',
|
136 |
+
'astra-sites-set-reset-data' => 'get_reset_data',
|
137 |
+
'astra-sites-activate-theme' => 'activate_theme',
|
138 |
+
'astra-sites-create-page' => 'create_page',
|
139 |
+
'astra-sites-import-media' => 'import_media',
|
140 |
+
'astra-sites-create-template' => 'create_template',
|
141 |
+
'astra-sites-create-image' => 'create_image',
|
142 |
+
'astra-sites-getting-started-notice' => 'getting_started_notice',
|
143 |
+
'astra-sites-favorite' => 'add_to_favorite',
|
144 |
+
'astra-sites-api-request' => 'api_request',
|
145 |
+
'astra-page-elementor-batch-process' => 'elementor_batch_process',
|
146 |
+
'astra-sites-update-subscription' => 'update_subscription',
|
147 |
+
);
|
148 |
+
|
149 |
+
foreach ( $this->ajax as $ajax_hook => $ajax_callback ) {
|
150 |
+
add_action( 'wp_ajax_' . $ajax_hook, array( $this, $ajax_callback ) );
|
151 |
+
}
|
152 |
|
153 |
add_action( 'delete_attachment', array( $this, 'delete_astra_images' ) );
|
154 |
add_filter( 'heartbeat_received', array( $this, 'search_push' ), 10, 2 );
|
|
|
155 |
add_action( 'admin_footer', array( $this, 'add_quick_links' ) );
|
156 |
+
add_filter( 'status_header', array( $this, 'status_header' ), 10, 4 );
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* Filters an HTTP status header.
|
161 |
+
*
|
162 |
+
* @since 2.6.20
|
163 |
+
*
|
164 |
+
* @param string $status_header HTTP status header.
|
165 |
+
* @param int $code HTTP status code.
|
166 |
+
* @param string $description Description for the status code.
|
167 |
+
* @param string $protocol Server protocol.
|
168 |
+
*
|
169 |
+
* @return mixed
|
170 |
+
*/
|
171 |
+
public function status_header( $status_header, $code, $description, $protocol ) {
|
172 |
+
|
173 |
+
if ( ! isset( $_REQUEST['action'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
174 |
+
return $status_header;
|
175 |
+
}
|
176 |
+
|
177 |
+
if ( ! in_array( $_REQUEST['action'], array_keys( $this->ajax ), true ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
178 |
+
return $status_header;
|
179 |
+
}
|
180 |
+
|
181 |
+
$error = error_get_last();
|
182 |
+
if ( empty( $error ) ) {
|
183 |
+
return $status_header;
|
184 |
+
}
|
185 |
+
|
186 |
+
$message = isset( $error['message'] ) ? $error['message'] : $description;
|
187 |
+
|
188 |
+
return "$protocol $code $message";
|
189 |
}
|
190 |
|
191 |
/**
|
inc/lib/gutenberg-templates/classes/class-ast-block-templates.php
CHANGED
@@ -391,7 +391,7 @@ if ( ! class_exists( 'Ast_Block_Templates' ) ) :
|
|
391 |
'wpforms_status' => $this->get_plugin_status( 'wpforms-lite/wpforms.php' ),
|
392 |
'gutenberg_status' => $this->get_plugin_status( 'gutenberg/gutenberg.php' ),
|
393 |
'_ajax_nonce' => wp_create_nonce( 'ast-block-templates-ajax-nonce' ),
|
394 |
-
'button_text' => esc_html__( 'Starter Templates', 'ast-block-templates'
|
395 |
'display_button_logo' => true,
|
396 |
'popup_logo_uri' => AST_BLOCK_TEMPLATES_URI . 'dist/logo.svg',
|
397 |
'button_logo' => AST_BLOCK_TEMPLATES_URI . 'dist/starter-template-logo.svg',
|
391 |
'wpforms_status' => $this->get_plugin_status( 'wpforms-lite/wpforms.php' ),
|
392 |
'gutenberg_status' => $this->get_plugin_status( 'gutenberg/gutenberg.php' ),
|
393 |
'_ajax_nonce' => wp_create_nonce( 'ast-block-templates-ajax-nonce' ),
|
394 |
+
'button_text' => esc_html__( 'Starter Templates', 'ast-block-templates' ),
|
395 |
'display_button_logo' => true,
|
396 |
'popup_logo_uri' => AST_BLOCK_TEMPLATES_URI . 'dist/logo.svg',
|
397 |
'button_logo' => AST_BLOCK_TEMPLATES_URI . 'dist/starter-template-logo.svg',
|
languages/astra-sites.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Starter Templates package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Starter Templates 2.6.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/astra-sites\n"
|
7 |
-
"POT-Creation-Date: 2021-08-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -227,9 +227,9 @@ msgstr ""
|
|
227 |
#: inc/classes/class-astra-sites-importer.php:788
|
228 |
#: inc/classes/class-astra-sites-importer.php:831
|
229 |
#: inc/classes/class-astra-sites-importer.php:869
|
230 |
-
#: inc/classes/class-astra-sites.php:
|
231 |
-
#: inc/classes/class-astra-sites.php:
|
232 |
-
#: inc/classes/class-astra-sites.php:
|
233 |
msgid "You are not allowed to perform this action"
|
234 |
msgstr ""
|
235 |
|
@@ -285,8 +285,8 @@ msgid "The demo you are importing is a premium demo."
|
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/classes/class-astra-sites-page.php:402
|
288 |
-
#: inc/classes/class-astra-sites.php:
|
289 |
-
#: inc/classes/class-astra-sites.php:
|
290 |
msgid "Get Access!"
|
291 |
msgstr ""
|
292 |
|
@@ -330,7 +330,7 @@ msgstr ""
|
|
330 |
#: inc/classes/class-astra-sites-page.php:646
|
331 |
#: inc/classes/class-astra-sites-page.php:648
|
332 |
#: inc/classes/class-astra-sites-page.php:660
|
333 |
-
#: inc/classes/class-astra-sites.php:
|
334 |
#: inc/includes/templates.php:35
|
335 |
msgid "All"
|
336 |
msgstr ""
|
@@ -583,242 +583,242 @@ msgstr ""
|
|
583 |
msgid "This site category does not exist. Please try a different site category."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: inc/classes/class-astra-sites.php:
|
587 |
msgid "See Quick Links"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: inc/classes/class-astra-sites.php:
|
591 |
msgid "Upgrade to Premium"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: inc/classes/class-astra-sites.php:
|
595 |
msgid "Support & Docs"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/classes/class-astra-sites.php:
|
599 |
msgid "Join Facebook Group"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/classes/class-astra-sites.php:
|
603 |
msgid "Invalid API URL"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/classes/class-astra-sites.php:
|
607 |
msgid "Invalid Post Meta"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/classes/class-astra-sites.php:
|
611 |
msgid "Invalid Post ID or Elementor Meta"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: inc/classes/class-astra-sites.php:
|
615 |
msgid "Provided API URL is empty! Please try again!"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: inc/classes/class-astra-sites.php:
|
619 |
#. translators: %s Error Message
|
620 |
msgid "API Request could not be performed - %s"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: inc/classes/class-astra-sites.php:
|
624 |
#. translators: %s Error Message
|
625 |
msgid "API Request has failed - %s"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/classes/class-astra-sites.php:
|
629 |
msgid "Internal Server Error."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: inc/classes/class-astra-sites.php:
|
633 |
#. translators: %s IP address.
|
634 |
msgid "Client IP: %1$s </br> Error code: %2$s"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/classes/class-astra-sites.php:
|
638 |
msgid "Need to send URL of the image to be downloaded"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/classes/class-astra-sites.php:
|
642 |
msgid "Could not download the image."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: inc/classes/class-astra-sites.php:
|
646 |
msgid "Theme Activated"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: inc/classes/class-astra-sites.php:
|
650 |
msgid "User does not have permission!"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/classes/class-astra-sites.php:
|
654 |
msgid "See Library"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: inc/classes/class-astra-sites.php:
|
658 |
msgid "Animals"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/classes/class-astra-sites.php:
|
662 |
msgid "Architecture/Buildings"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc/classes/class-astra-sites.php:
|
666 |
msgid "Backgrounds/Textures"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: inc/classes/class-astra-sites.php:
|
670 |
msgid "Beauty/Fashion"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: inc/classes/class-astra-sites.php:
|
674 |
msgid "Business/Finance"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: inc/classes/class-astra-sites.php:
|
678 |
msgid "Computer/Communication"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: inc/classes/class-astra-sites.php:
|
682 |
msgid "Education"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: inc/classes/class-astra-sites.php:
|
686 |
msgid "Emotions"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: inc/classes/class-astra-sites.php:
|
690 |
msgid "Food/Drink"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: inc/classes/class-astra-sites.php:
|
694 |
msgid "Health/Medical"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: inc/classes/class-astra-sites.php:
|
698 |
msgid "Industry/Craft"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: inc/classes/class-astra-sites.php:
|
702 |
msgid "Music"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: inc/classes/class-astra-sites.php:
|
706 |
msgid "Nature/Landscapes"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: inc/classes/class-astra-sites.php:
|
710 |
msgid "People"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: inc/classes/class-astra-sites.php:
|
714 |
msgid "Places/Monuments"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: inc/classes/class-astra-sites.php:
|
718 |
msgid "Religion"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: inc/classes/class-astra-sites.php:
|
722 |
msgid "Science/Technology"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: inc/classes/class-astra-sites.php:
|
726 |
msgid "Sports"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: inc/classes/class-astra-sites.php:
|
730 |
msgid "Transportation/Traffic"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: inc/classes/class-astra-sites.php:
|
734 |
msgid "Travel/Vacation"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: inc/classes/class-astra-sites.php:
|
738 |
msgid "Popular"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: inc/classes/class-astra-sites.php:
|
742 |
msgid "Latest"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: inc/classes/class-astra-sites.php:
|
746 |
msgid "Upcoming"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: inc/classes/class-astra-sites.php:
|
750 |
msgid "Editor's Choice"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: inc/classes/class-astra-sites.php:
|
754 |
msgid "Any Orientation"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: inc/classes/class-astra-sites.php:
|
758 |
msgid "Vertical"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: inc/classes/class-astra-sites.php:
|
762 |
msgid "Horizontal"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: inc/classes/class-astra-sites.php:
|
766 |
msgid "Free Images"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: inc/classes/class-astra-sites.php:
|
770 |
msgid "Search - Ex: flowers"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: inc/classes/class-astra-sites.php:
|
774 |
msgid "Downloading..."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: inc/classes/class-astra-sites.php:
|
778 |
msgid "Validating..."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: inc/classes/class-astra-sites.php:
|
782 |
msgid "Please enter an API key."
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: inc/classes/class-astra-sites.php:
|
786 |
msgid "An error occured with code "
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: inc/classes/class-astra-sites.php:
|
790 |
msgid "Installed! Activating.."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: inc/classes/class-astra-sites.php:
|
794 |
msgid "Activating..."
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: inc/classes/class-astra-sites.php:
|
798 |
msgid "Activated!"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: inc/classes/class-astra-sites.php:
|
802 |
msgid "Installing..."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: inc/classes/class-astra-sites.php:
|
806 |
msgid "Upgrade"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: inc/classes/class-astra-sites.php:
|
810 |
msgid ""
|
811 |
"Syncing template library in the background. The process can take anywhere "
|
812 |
"between 2 to 3 minutes. We will notify you once done."
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: inc/classes/class-astra-sites.php:
|
816 |
msgid ""
|
817 |
"Some of the files required during the import process are "
|
818 |
"missing.<br/><br/>Please try again after some time."
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: inc/classes/class-astra-sites.php:
|
822 |
msgid ""
|
823 |
"<p>WordPress debug mode is currently enabled on your website. This has "
|
824 |
"interrupted the import process..</p><p>Kindly disable debug mode and try "
|
@@ -827,7 +827,7 @@ msgid ""
|
|
827 |
"mode.</p><p><code>define('WP_DEBUG', false);</code></p>"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: inc/classes/class-astra-sites.php:
|
831 |
#. translators: %s is a documentation link.
|
832 |
msgid ""
|
833 |
"<p>We are facing a temporary issue in importing this template.</p><p>Read "
|
@@ -835,7 +835,7 @@ msgid ""
|
|
835 |
"continue importing template.</p>"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: inc/classes/class-astra-sites.php:
|
839 |
#. translators: %s is a documentation link.
|
840 |
msgid ""
|
841 |
"<p>We are facing a temporary issue in installing the required plugins for "
|
@@ -843,206 +843,206 @@ msgid ""
|
|
843 |
"resolve the issue and continue importing template.</p>"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: inc/classes/class-astra-sites.php:
|
847 |
#. translators: %s are white label strings.
|
848 |
msgid ""
|
849 |
"Warning! %1$s Import process is not complete. Don't close the window until "
|
850 |
"import process complete. Do you still want to leave the window?"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: inc/classes/class-astra-sites.php:
|
854 |
msgid "Done! View Site"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: inc/classes/class-astra-sites.php:
|
858 |
#. translators: %s is a template name
|
859 |
msgid "Import \"%s\" Template"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: inc/classes/class-astra-sites.php:
|
863 |
msgid "Installing Required Plugins.."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: inc/classes/class-astra-sites.php:
|
867 |
#. translators: %s are white label strings.
|
868 |
msgid "Installing %1$s Theme.."
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: inc/classes/class-astra-sites.php:
|
872 |
msgid "Dismiss this notice."
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: inc/classes/class-astra-sites.php:
|
876 |
msgid "One Last Step.."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: inc/classes/class-astra-sites.php:
|
880 |
msgid "Your Selected Website is Being Imported."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: inc/classes/class-astra-sites.php:
|
884 |
msgid "Your Selected Template is Being Imported."
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: inc/classes/class-astra-sites.php:
|
888 |
msgid ""
|
889 |
"We have sent you a surprise gift on your email address! Please check your "
|
890 |
"inbox!"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: inc/classes/class-astra-sites.php:
|
894 |
msgid "Looks like the template you are importing is temporarily not available."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: inc/classes/class-astra-sites.php:
|
898 |
msgid ""
|
899 |
"We could not start the import process and this is the message from "
|
900 |
"WordPress:"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: inc/classes/class-astra-sites.php:
|
904 |
msgid "There was an error connecting to the Starter Templates API."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: inc/classes/class-astra-sites.php:
|
908 |
msgid "There was an error while importing the content."
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: inc/classes/class-astra-sites.php:
|
912 |
msgid ""
|
913 |
"To import content, WordPress needs to store XML file in /wp-content/ "
|
914 |
"folder. Please get in touch with your hosting provider."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: inc/classes/class-astra-sites.php:
|
918 |
msgid ""
|
919 |
"Looks like your host probably could not store XML file in /wp-content/ "
|
920 |
"folder."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/classes/class-astra-sites.php:
|
924 |
#. translators: %s HTML tags
|
925 |
msgid ""
|
926 |
"%1$sWe could not start the import process due to failed AJAX request and "
|
927 |
"this is the message from WordPress:%2$s"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: inc/classes/class-astra-sites.php:
|
931 |
#. translators: %s URL to document.
|
932 |
msgid ""
|
933 |
"%1$sRead <a href=\"%2$s\" target=\"_blank\">article</a> to resolve the "
|
934 |
"issue and continue importing template.%3$s"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: inc/classes/class-astra-sites.php:
|
938 |
#. translators: %s URL to document.
|
939 |
msgid ""
|
940 |
"%1$sWe could not complete the import process due to failed AJAX request and "
|
941 |
"this is the message:%2$s"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/classes/class-astra-sites.php:
|
945 |
#. translators: %s URL to document.
|
946 |
msgid "%1$sPlease report this <a href=\"%2$s\" target=\"_blank\">here</a>.%3$s"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: inc/classes/class-astra-sites.php:
|
950 |
msgid "XMLReader Support Missing"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: inc/classes/class-astra-sites.php:
|
954 |
#. translators: %s doc link.
|
955 |
msgid ""
|
956 |
"You're close to importing the template. To complete the process, enable "
|
957 |
"XMLReader support on your website.."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: inc/classes/class-astra-sites.php:
|
961 |
-
#: inc/classes/class-astra-sites.php:
|
962 |
-
#: inc/classes/class-astra-sites.php:
|
963 |
msgid ""
|
964 |
"Read an article <a href=\"%s\" target=\"_blank\">here</a> to resolve the "
|
965 |
"issue."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/classes/class-astra-sites.php:
|
969 |
msgid "cURL Support Missing"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/classes/class-astra-sites.php:
|
973 |
#. translators: %s doc link.
|
974 |
msgid "To run a smooth import, kindly enable cURL support on your website."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: inc/classes/class-astra-sites.php:
|
978 |
msgid "Disable Debug Mode"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: inc/classes/class-astra-sites.php:
|
982 |
#. translators: %s doc link.
|
983 |
msgid ""
|
984 |
"WordPress debug mode is currently enabled on your website. With this, any "
|
985 |
"errors from third-party plugins might affect the import process."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: inc/classes/class-astra-sites.php:
|
989 |
msgid ""
|
990 |
"Kindly disable it to continue importing the Starter Template. To do so, you "
|
991 |
"can add the following code into the wp-config.php file."
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: inc/classes/class-astra-sites.php:
|
995 |
msgid "Update Plugin"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: inc/classes/class-astra-sites.php:
|
999 |
#. translators: %s update page link.
|
1000 |
msgid "Updates are available for plugins used in this starter template."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: inc/classes/class-astra-sites.php:
|
1004 |
msgid ""
|
1005 |
"Kindly <a href=\"%s\" target=\"_blank\">update</a> them for a successful "
|
1006 |
"import. Skipping this step might break the template design/feature."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: inc/classes/class-astra-sites.php:
|
1010 |
#: inc/includes/templates.php:442
|
1011 |
msgid "Required Plugins Missing"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/classes/class-astra-sites.php:
|
1015 |
msgid ""
|
1016 |
"This starter template requires premium plugins. As these are third party "
|
1017 |
"premium plugins, you'll need to purchase, install and activate them first."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: inc/classes/class-astra-sites.php:
|
1021 |
msgid "Dynamic Page"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: inc/classes/class-astra-sites.php:
|
1025 |
msgid ""
|
1026 |
"The page template you are about to import contains a dynamic widget/module. "
|
1027 |
"Please note this dynamic data will not be available with the imported page."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: inc/classes/class-astra-sites.php:
|
1031 |
msgid "You will need to add it manually on the page."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: inc/classes/class-astra-sites.php:
|
1035 |
msgid "This dynamic content will be available when you import the entire site."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: inc/classes/class-astra-sites.php:
|
1039 |
#. translators: %s are link.
|
1040 |
msgid ""
|
1041 |
"This is a premium template available with Essential Bundle and Growth "
|
1042 |
"Bundle. you can purchase it from <a href=\"%s\" target=\"_blank\">here</a>."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: inc/classes/class-astra-sites.php:
|
1046 |
#. translators: %s are link.
|
1047 |
msgid ""
|
1048 |
"This is a premium template available with Essential Bundle and Growth "
|
@@ -1050,48 +1050,48 @@ msgid ""
|
|
1050 |
"import this template."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: inc/classes/class-astra-sites.php:
|
1054 |
msgid "Template"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: inc/classes/class-astra-sites.php:
|
1058 |
msgid "Block"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: inc/classes/class-astra-sites.php:
|
1062 |
msgid "Dismiss"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: inc/classes/class-astra-sites.php:
|
1066 |
msgid "Install Required Plugins"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: inc/classes/class-astra-sites.php:
|
1070 |
#. translators: %s are link.
|
1071 |
msgid ""
|
1072 |
"You can locate <strong>Starter Templates Settings</strong> under the "
|
1073 |
"<strong>Page Settings</strong> of the Style Tab."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: inc/classes/class-astra-sites.php:
|
1077 |
msgid "Read More →"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: inc/classes/class-astra-sites.php:
|
1081 |
msgid "Error: You don't have the required permissions to install plugins."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: inc/classes/class-astra-sites.php:
|
1085 |
msgid "Plugin Activated"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: inc/classes/class-astra-sites.php:
|
1089 |
msgid ""
|
1090 |
"Insufficient Permission. Please contact your Super Admin to allow the "
|
1091 |
"install required plugin permissions."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: inc/classes/class-astra-sites.php:
|
1095 |
msgid "Template library refreshed!"
|
1096 |
msgstr ""
|
1097 |
|
2 |
# This file is distributed under the same license as the Starter Templates package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Starter Templates 2.6.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/astra-sites\n"
|
7 |
+
"POT-Creation-Date: 2021-08-09 09:57:55+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
227 |
#: inc/classes/class-astra-sites-importer.php:788
|
228 |
#: inc/classes/class-astra-sites-importer.php:831
|
229 |
#: inc/classes/class-astra-sites-importer.php:869
|
230 |
+
#: inc/classes/class-astra-sites.php:378 inc/classes/class-astra-sites.php:593
|
231 |
+
#: inc/classes/class-astra-sites.php:697 inc/classes/class-astra-sites.php:769
|
232 |
+
#: inc/classes/class-astra-sites.php:963 inc/classes/class-astra-sites.php:982
|
233 |
msgid "You are not allowed to perform this action"
|
234 |
msgstr ""
|
235 |
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/classes/class-astra-sites-page.php:402
|
288 |
+
#: inc/classes/class-astra-sites.php:1416
|
289 |
+
#: inc/classes/class-astra-sites.php:1677 inc/includes/templates.php:302
|
290 |
msgid "Get Access!"
|
291 |
msgstr ""
|
292 |
|
330 |
#: inc/classes/class-astra-sites-page.php:646
|
331 |
#: inc/classes/class-astra-sites-page.php:648
|
332 |
#: inc/classes/class-astra-sites-page.php:660
|
333 |
+
#: inc/classes/class-astra-sites.php:1177 inc/includes/templates.php:28
|
334 |
#: inc/includes/templates.php:35
|
335 |
msgid "All"
|
336 |
msgstr ""
|
583 |
msgid "This site category does not exist. Please try a different site category."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: inc/classes/class-astra-sites.php:208
|
587 |
msgid "See Quick Links"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: inc/classes/class-astra-sites.php:213
|
591 |
msgid "Upgrade to Premium"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: inc/classes/class-astra-sites.php:219
|
595 |
msgid "Support & Docs"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: inc/classes/class-astra-sites.php:224
|
599 |
msgid "Join Facebook Group"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/classes/class-astra-sites.php:382
|
603 |
msgid "Invalid API URL"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/classes/class-astra-sites.php:394
|
607 |
msgid "Invalid Post Meta"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/classes/class-astra-sites.php:401
|
611 |
msgid "Invalid Post ID or Elementor Meta"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: inc/classes/class-astra-sites.php:423
|
615 |
msgid "Provided API URL is empty! Please try again!"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: inc/classes/class-astra-sites.php:440
|
619 |
#. translators: %s Error Message
|
620 |
msgid "API Request could not be performed - %s"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: inc/classes/class-astra-sites.php:445
|
624 |
#. translators: %s Error Message
|
625 |
msgid "API Request has failed - %s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/classes/class-astra-sites.php:474
|
629 |
msgid "Internal Server Error."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: inc/classes/class-astra-sites.php:480
|
633 |
#. translators: %s IP address.
|
634 |
msgid "Client IP: %1$s </br> Error code: %2$s"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: inc/classes/class-astra-sites.php:777
|
638 |
msgid "Need to send URL of the image to be downloaded"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: inc/classes/class-astra-sites.php:802
|
642 |
msgid "Could not download the image."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: inc/classes/class-astra-sites.php:990
|
646 |
msgid "Theme Activated"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: inc/classes/class-astra-sites.php:1036
|
650 |
msgid "User does not have permission!"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/classes/class-astra-sites.php:1113
|
654 |
msgid "See Library"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/classes/class-astra-sites.php:1178
|
658 |
msgid "Animals"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/classes/class-astra-sites.php:1179
|
662 |
msgid "Architecture/Buildings"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/classes/class-astra-sites.php:1180
|
666 |
msgid "Backgrounds/Textures"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: inc/classes/class-astra-sites.php:1181
|
670 |
msgid "Beauty/Fashion"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: inc/classes/class-astra-sites.php:1182
|
674 |
msgid "Business/Finance"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: inc/classes/class-astra-sites.php:1183
|
678 |
msgid "Computer/Communication"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: inc/classes/class-astra-sites.php:1184
|
682 |
msgid "Education"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: inc/classes/class-astra-sites.php:1185
|
686 |
msgid "Emotions"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: inc/classes/class-astra-sites.php:1186
|
690 |
msgid "Food/Drink"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: inc/classes/class-astra-sites.php:1187
|
694 |
msgid "Health/Medical"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: inc/classes/class-astra-sites.php:1188
|
698 |
msgid "Industry/Craft"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: inc/classes/class-astra-sites.php:1189
|
702 |
msgid "Music"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: inc/classes/class-astra-sites.php:1190
|
706 |
msgid "Nature/Landscapes"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: inc/classes/class-astra-sites.php:1191
|
710 |
msgid "People"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: inc/classes/class-astra-sites.php:1192
|
714 |
msgid "Places/Monuments"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: inc/classes/class-astra-sites.php:1193
|
718 |
msgid "Religion"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: inc/classes/class-astra-sites.php:1194
|
722 |
msgid "Science/Technology"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: inc/classes/class-astra-sites.php:1195
|
726 |
msgid "Sports"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: inc/classes/class-astra-sites.php:1196
|
730 |
msgid "Transportation/Traffic"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: inc/classes/class-astra-sites.php:1197
|
734 |
msgid "Travel/Vacation"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: inc/classes/class-astra-sites.php:1200
|
738 |
msgid "Popular"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: inc/classes/class-astra-sites.php:1201
|
742 |
msgid "Latest"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: inc/classes/class-astra-sites.php:1202
|
746 |
msgid "Upcoming"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: inc/classes/class-astra-sites.php:1203
|
750 |
msgid "Editor's Choice"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: inc/classes/class-astra-sites.php:1206
|
754 |
msgid "Any Orientation"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: inc/classes/class-astra-sites.php:1207
|
758 |
msgid "Vertical"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: inc/classes/class-astra-sites.php:1208
|
762 |
msgid "Horizontal"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: inc/classes/class-astra-sites.php:1210
|
766 |
msgid "Free Images"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: inc/classes/class-astra-sites.php:1211
|
770 |
msgid "Search - Ex: flowers"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: inc/classes/class-astra-sites.php:1212
|
774 |
msgid "Downloading..."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: inc/classes/class-astra-sites.php:1213
|
778 |
msgid "Validating..."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: inc/classes/class-astra-sites.php:1214
|
782 |
msgid "Please enter an API key."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: inc/classes/class-astra-sites.php:1215
|
786 |
msgid "An error occured with code "
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: inc/classes/class-astra-sites.php:1272
|
790 |
msgid "Installed! Activating.."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: inc/classes/class-astra-sites.php:1273
|
794 |
msgid "Activating..."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: inc/classes/class-astra-sites.php:1274
|
798 |
msgid "Activated!"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: inc/classes/class-astra-sites.php:1275
|
802 |
msgid "Installing..."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: inc/classes/class-astra-sites.php:1418
|
806 |
msgid "Upgrade"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: inc/classes/class-astra-sites.php:1422
|
810 |
msgid ""
|
811 |
"Syncing template library in the background. The process can take anywhere "
|
812 |
"between 2 to 3 minutes. We will notify you once done."
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: inc/classes/class-astra-sites.php:1423
|
816 |
msgid ""
|
817 |
"Some of the files required during the import process are "
|
818 |
"missing.<br/><br/>Please try again after some time."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: inc/classes/class-astra-sites.php:1424
|
822 |
msgid ""
|
823 |
"<p>WordPress debug mode is currently enabled on your website. This has "
|
824 |
"interrupted the import process..</p><p>Kindly disable debug mode and try "
|
827 |
"mode.</p><p><code>define('WP_DEBUG', false);</code></p>"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: inc/classes/class-astra-sites.php:1426
|
831 |
#. translators: %s is a documentation link.
|
832 |
msgid ""
|
833 |
"<p>We are facing a temporary issue in importing this template.</p><p>Read "
|
835 |
"continue importing template.</p>"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: inc/classes/class-astra-sites.php:1428
|
839 |
#. translators: %s is a documentation link.
|
840 |
msgid ""
|
841 |
"<p>We are facing a temporary issue in installing the required plugins for "
|
843 |
"resolve the issue and continue importing template.</p>"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: inc/classes/class-astra-sites.php:1432
|
847 |
#. translators: %s are white label strings.
|
848 |
msgid ""
|
849 |
"Warning! %1$s Import process is not complete. Don't close the window until "
|
850 |
"import process complete. Do you still want to leave the window?"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: inc/classes/class-astra-sites.php:1433
|
854 |
msgid "Done! View Site"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: inc/classes/class-astra-sites.php:1436
|
858 |
#. translators: %s is a template name
|
859 |
msgid "Import \"%s\" Template"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: inc/classes/class-astra-sites.php:1439
|
863 |
msgid "Installing Required Plugins.."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: inc/classes/class-astra-sites.php:1441
|
867 |
#. translators: %s are white label strings.
|
868 |
msgid "Installing %1$s Theme.."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: inc/classes/class-astra-sites.php:1463
|
872 |
msgid "Dismiss this notice."
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: inc/classes/class-astra-sites.php:1465 inc/includes/admin-page.php:770
|
876 |
msgid "One Last Step.."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: inc/classes/class-astra-sites.php:1466 inc/includes/admin-page.php:793
|
880 |
msgid "Your Selected Website is Being Imported."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: inc/classes/class-astra-sites.php:1467 inc/includes/admin-page.php:795
|
884 |
msgid "Your Selected Template is Being Imported."
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: inc/classes/class-astra-sites.php:1469
|
888 |
msgid ""
|
889 |
"We have sent you a surprise gift on your email address! Please check your "
|
890 |
"inbox!"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: inc/classes/class-astra-sites.php:1471
|
894 |
msgid "Looks like the template you are importing is temporarily not available."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: inc/classes/class-astra-sites.php:1472
|
898 |
msgid ""
|
899 |
"We could not start the import process and this is the message from "
|
900 |
"WordPress:"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: inc/classes/class-astra-sites.php:1473
|
904 |
msgid "There was an error connecting to the Starter Templates API."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: inc/classes/class-astra-sites.php:1474
|
908 |
msgid "There was an error while importing the content."
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: inc/classes/class-astra-sites.php:1475
|
912 |
msgid ""
|
913 |
"To import content, WordPress needs to store XML file in /wp-content/ "
|
914 |
"folder. Please get in touch with your hosting provider."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/classes/class-astra-sites.php:1476
|
918 |
msgid ""
|
919 |
"Looks like your host probably could not store XML file in /wp-content/ "
|
920 |
"folder."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: inc/classes/class-astra-sites.php:1478
|
924 |
#. translators: %s HTML tags
|
925 |
msgid ""
|
926 |
"%1$sWe could not start the import process due to failed AJAX request and "
|
927 |
"this is the message from WordPress:%2$s"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/classes/class-astra-sites.php:1480
|
931 |
#. translators: %s URL to document.
|
932 |
msgid ""
|
933 |
"%1$sRead <a href=\"%2$s\" target=\"_blank\">article</a> to resolve the "
|
934 |
"issue and continue importing template.%3$s"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: inc/classes/class-astra-sites.php:1489
|
938 |
#. translators: %s URL to document.
|
939 |
msgid ""
|
940 |
"%1$sWe could not complete the import process due to failed AJAX request and "
|
941 |
"this is the message:%2$s"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/classes/class-astra-sites.php:1491
|
945 |
#. translators: %s URL to document.
|
946 |
msgid "%1$sPlease report this <a href=\"%2$s\" target=\"_blank\">here</a>.%3$s"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: inc/classes/class-astra-sites.php:1540
|
950 |
msgid "XMLReader Support Missing"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: inc/classes/class-astra-sites.php:1542
|
954 |
#. translators: %s doc link.
|
955 |
msgid ""
|
956 |
"You're close to importing the template. To complete the process, enable "
|
957 |
"XMLReader support on your website.."
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: inc/classes/class-astra-sites.php:1542
|
961 |
+
#: inc/classes/class-astra-sites.php:1547
|
962 |
+
#: inc/classes/class-astra-sites.php:1552
|
963 |
msgid ""
|
964 |
"Read an article <a href=\"%s\" target=\"_blank\">here</a> to resolve the "
|
965 |
"issue."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: inc/classes/class-astra-sites.php:1545
|
969 |
msgid "cURL Support Missing"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: inc/classes/class-astra-sites.php:1547
|
973 |
#. translators: %s doc link.
|
974 |
msgid "To run a smooth import, kindly enable cURL support on your website."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: inc/classes/class-astra-sites.php:1550
|
978 |
msgid "Disable Debug Mode"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: inc/classes/class-astra-sites.php:1552
|
982 |
#. translators: %s doc link.
|
983 |
msgid ""
|
984 |
"WordPress debug mode is currently enabled on your website. With this, any "
|
985 |
"errors from third-party plugins might affect the import process."
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: inc/classes/class-astra-sites.php:1552
|
989 |
msgid ""
|
990 |
"Kindly disable it to continue importing the Starter Template. To do so, you "
|
991 |
"can add the following code into the wp-config.php file."
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: inc/classes/class-astra-sites.php:1555
|
995 |
msgid "Update Plugin"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: inc/classes/class-astra-sites.php:1557
|
999 |
#. translators: %s update page link.
|
1000 |
msgid "Updates are available for plugins used in this starter template."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: inc/classes/class-astra-sites.php:1557
|
1004 |
msgid ""
|
1005 |
"Kindly <a href=\"%s\" target=\"_blank\">update</a> them for a successful "
|
1006 |
"import. Skipping this step might break the template design/feature."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: inc/classes/class-astra-sites.php:1560 inc/includes/admin-page.php:491
|
1010 |
#: inc/includes/templates.php:442
|
1011 |
msgid "Required Plugins Missing"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: inc/classes/class-astra-sites.php:1561 inc/includes/admin-page.php:495
|
1015 |
msgid ""
|
1016 |
"This starter template requires premium plugins. As these are third party "
|
1017 |
"premium plugins, you'll need to purchase, install and activate them first."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: inc/classes/class-astra-sites.php:1564
|
1021 |
msgid "Dynamic Page"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: inc/classes/class-astra-sites.php:1565 inc/includes/admin-page.php:708
|
1025 |
msgid ""
|
1026 |
"The page template you are about to import contains a dynamic widget/module. "
|
1027 |
"Please note this dynamic data will not be available with the imported page."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: inc/classes/class-astra-sites.php:1565 inc/includes/admin-page.php:709
|
1031 |
msgid "You will need to add it manually on the page."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: inc/classes/class-astra-sites.php:1565 inc/includes/admin-page.php:710
|
1035 |
msgid "This dynamic content will be available when you import the entire site."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: inc/classes/class-astra-sites.php:1651
|
1039 |
#. translators: %s are link.
|
1040 |
msgid ""
|
1041 |
"This is a premium template available with Essential Bundle and Growth "
|
1042 |
"Bundle. you can purchase it from <a href=\"%s\" target=\"_blank\">here</a>."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: inc/classes/class-astra-sites.php:1655
|
1046 |
#. translators: %s are link.
|
1047 |
msgid ""
|
1048 |
"This is a premium template available with Essential Bundle and Growth "
|
1050 |
"import this template."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: inc/classes/class-astra-sites.php:1681
|
1054 |
msgid "Template"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: inc/classes/class-astra-sites.php:1682
|
1058 |
msgid "Block"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: inc/classes/class-astra-sites.php:1683 inc/includes/templates.php:59
|
1062 |
msgid "Dismiss"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: inc/classes/class-astra-sites.php:1684 inc/includes/admin-page.php:855
|
1066 |
msgid "Install Required Plugins"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: inc/classes/class-astra-sites.php:1688
|
1070 |
#. translators: %s are link.
|
1071 |
msgid ""
|
1072 |
"You can locate <strong>Starter Templates Settings</strong> under the "
|
1073 |
"<strong>Page Settings</strong> of the Style Tab."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: inc/classes/class-astra-sites.php:1690
|
1077 |
msgid "Read More →"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: inc/classes/class-astra-sites.php:1807
|
1081 |
msgid "Error: You don't have the required permissions to install plugins."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: inc/classes/class-astra-sites.php:1843
|
1085 |
msgid "Plugin Activated"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: inc/classes/class-astra-sites.php:1967
|
1089 |
msgid ""
|
1090 |
"Insufficient Permission. Please contact your Super Admin to allow the "
|
1091 |
"install required plugin permissions."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: inc/classes/class-astra-sites.php:2159
|
1095 |
msgid "Template library refreshed!"
|
1096 |
msgstr ""
|
1097 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: Elementor,Beaver Builder,Templates,Gutenberg,Astra Starter Sites
|
|
5 |
Requires at least: 4.4
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 5.8
|
8 |
-
Stable tag: 2.6.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -149,6 +149,9 @@ We are open to suggestions and would love to work on topics that our users are l
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
152 |
v2.6.19 - 2-August-2021
|
153 |
- Fix: Fixed the "Customizer data is empty!" AJAX failed request while importing.
|
154 |
- Fix: The Pixabay image library not visible for the multiple image instances.
|
5 |
Requires at least: 4.4
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 5.8
|
8 |
+
Stable tag: 2.6.20
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
v2.6.20 - 8-August-2021
|
153 |
+
Improvement: Better handling of 500 errors on the import screen.
|
154 |
+
|
155 |
v2.6.19 - 2-August-2021
|
156 |
- Fix: Fixed the "Customizer data is empty!" AJAX failed request while importing.
|
157 |
- Fix: The Pixabay image library not visible for the multiple image instances.
|