Version Description
- 14 December 2018 =
- Add setting to use Classic Editor for new posts of types selected in Page Builder settings.
- Prevent showing the 'Add New' dropdown for SO custom post types.
- Display notice indicating how to disable Classic Editor for new Page Builder post types.
Download this release
Release Info
Developer | gpriday |
Plugin | Page Builder by SiteOrigin |
Version | 2.9.7 |
Comparing to | |
See all releases |
Code changes from version 2.9.6 to 2.9.7
- inc/admin.php +42 -29
- inc/settings.php +13 -2
- js/{siteorigin-panels-296.js → siteorigin-panels-297.js} +0 -0
- js/{siteorigin-panels-296.min.js → siteorigin-panels-297.min.js} +0 -0
- js/{styling-296.js → styling-297.js} +0 -0
- js/{styling-296.min.js → styling-297.min.js} +0 -0
- lang/siteorigin-panels.pot +152 -142
- readme.txt +7 -2
- siteorigin-panels.php +3 -3
inc/admin.php
CHANGED
@@ -76,10 +76,7 @@ class SiteOrigin_Panels_Admin {
|
|
76 |
add_action( 'admin_notices', array( $this, 'admin_notices' ) );
|
77 |
add_filter( 'gutenberg_can_edit_post_type', array( $this, 'show_classic_editor_for_panels' ), 10, 2 );
|
78 |
add_filter( 'use_block_editor_for_post_type', array( $this, 'show_classic_editor_for_panels' ), 10, 2 );
|
79 |
-
|
80 |
-
if ( ! function_exists( 'gutenberg_init' ) ) {
|
81 |
-
add_action( 'admin_print_scripts-edit.php', array( $this, 'add_panels_add_new_button' ) );
|
82 |
-
}
|
83 |
add_filter( 'display_post_states', array( $this, 'add_panels_post_state' ), 10, 2 );
|
84 |
}
|
85 |
}
|
@@ -116,7 +113,9 @@ class SiteOrigin_Panels_Admin {
|
|
116 |
*/
|
117 |
static function is_admin() {
|
118 |
$screen = get_current_screen();
|
119 |
-
$is_panels_page = ( $screen->base == 'post' && in_array( $screen->id, siteorigin_panels_setting( 'post-types' ) ) ) ||
|
|
|
|
|
120 |
|
121 |
return apply_filters( 'siteorigin_panels_is_admin_page', $is_panels_page );
|
122 |
}
|
@@ -1149,7 +1148,8 @@ class SiteOrigin_Panels_Admin {
|
|
1149 |
|
1150 |
$panels_data = get_post_meta( $post_id, 'panels_data', true );
|
1151 |
if( ! empty( $panels_data['widgets'] ) ) {
|
1152 |
-
|
|
|
1153 |
}
|
1154 |
else {
|
1155 |
echo '—';
|
@@ -1214,20 +1214,20 @@ class SiteOrigin_Panels_Admin {
|
|
1214 |
}
|
1215 |
|
1216 |
public function admin_notices() {
|
1217 |
-
$
|
|
|
|
|
|
|
|
|
1218 |
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
}
|
1226 |
-
if ( $is_block_editor && ! empty( $panels_data ) ) {
|
1227 |
-
$install_url = self_admin_url( 'plugin-install.php?tab=featured' );
|
1228 |
-
$notice = sprintf( __( 'This page contains SiteOrigin Page Builder layout data. Please <a href="%s" class="components-notice__action is-link">install the Classic Editor plugin</a> to continue editing this layout.' ), $install_url );
|
1229 |
?>
|
1230 |
-
<div id="siteorigin-panels-notice" class="notice notice-
|
1231 |
<?php
|
1232 |
}
|
1233 |
}
|
@@ -1252,21 +1252,21 @@ class SiteOrigin_Panels_Admin {
|
|
1252 |
// If the `$post_type` is set to be used by Page Builder.
|
1253 |
$post_types = siteorigin_panels_setting( 'post-types' );
|
1254 |
$is_panels_type = in_array( $post_type, $post_types );
|
1255 |
-
|
1256 |
// For existing posts.
|
1257 |
global $post;
|
1258 |
if ( ! empty( $post ) ) {
|
1259 |
// If the post has blocks just allow `$use_block_editor` to decide.
|
1260 |
if ( ! has_blocks( $post ) ) {
|
1261 |
$panels_data = get_post_meta( $post->ID, 'panels_data', true );
|
1262 |
-
|
|
|
|
|
1263 |
$use_block_editor = false;
|
1264 |
}
|
1265 |
}
|
1266 |
-
} else {
|
1267 |
-
|
1268 |
-
$use_block_editor = false;
|
1269 |
-
}
|
1270 |
}
|
1271 |
|
1272 |
return $use_block_editor;
|
@@ -1275,8 +1275,6 @@ class SiteOrigin_Panels_Admin {
|
|
1275 |
/**
|
1276 |
* This was copied from Gutenberg and slightly modified as a quick way to allow users to create new Page Builder pages
|
1277 |
* in the classic editor without requiring the classic editor plugin be installed.
|
1278 |
-
*
|
1279 |
-
*
|
1280 |
*/
|
1281 |
function add_panels_add_new_button() {
|
1282 |
global $typenow;
|
@@ -1291,9 +1289,7 @@ class SiteOrigin_Panels_Admin {
|
|
1291 |
<?php
|
1292 |
}
|
1293 |
|
1294 |
-
if ( !
|
1295 |
-
// WooCommerce product type doesn't support block editor...
|
1296 |
-
( class_exists( 'WooCommerce' ) && $typenow == 'product' ) ) {
|
1297 |
return;
|
1298 |
}
|
1299 |
|
@@ -1422,6 +1418,23 @@ class SiteOrigin_Panels_Admin {
|
|
1422 |
<?php
|
1423 |
}
|
1424 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1425 |
public function add_panels_post_state( $post_states, $post ) {
|
1426 |
$panels_data = get_post_meta( $post->ID, 'panels_data', true );
|
1427 |
|
76 |
add_action( 'admin_notices', array( $this, 'admin_notices' ) );
|
77 |
add_filter( 'gutenberg_can_edit_post_type', array( $this, 'show_classic_editor_for_panels' ), 10, 2 );
|
78 |
add_filter( 'use_block_editor_for_post_type', array( $this, 'show_classic_editor_for_panels' ), 10, 2 );
|
79 |
+
add_action( 'admin_print_scripts-edit.php', array( $this, 'add_panels_add_new_button' ) );
|
|
|
|
|
|
|
80 |
add_filter( 'display_post_states', array( $this, 'add_panels_post_state' ), 10, 2 );
|
81 |
}
|
82 |
}
|
113 |
*/
|
114 |
static function is_admin() {
|
115 |
$screen = get_current_screen();
|
116 |
+
$is_panels_page = ( $screen->base == 'post' && in_array( $screen->id, siteorigin_panels_setting( 'post-types' ) ) ) ||
|
117 |
+
in_array( $screen->base, array( 'appearance_page_so_panels_home_page', 'widgets', 'customize' ) ) ||
|
118 |
+
$screen->is_block_editor;
|
119 |
|
120 |
return apply_filters( 'siteorigin_panels_is_admin_page', $is_panels_page );
|
121 |
}
|
1148 |
|
1149 |
$panels_data = get_post_meta( $post_id, 'panels_data', true );
|
1150 |
if( ! empty( $panels_data['widgets'] ) ) {
|
1151 |
+
$widgets_count = count( $panels_data['widgets'] );
|
1152 |
+
printf( _n( '%s Widget', '%s Widgets', $widgets_count, 'siteorigin-panels' ), $widgets_count );
|
1153 |
}
|
1154 |
else {
|
1155 |
echo '—';
|
1214 |
}
|
1215 |
|
1216 |
public function admin_notices() {
|
1217 |
+
global $typenow, $pagenow;
|
1218 |
+
$is_new = $pagenow == 'post-new.php';
|
1219 |
+
$post_types = siteorigin_panels_setting( 'post-types' );
|
1220 |
+
$is_panels_type = in_array( $typenow, $post_types );
|
1221 |
+
$use_classic = siteorigin_panels_setting( 'use-classic' );
|
1222 |
|
1223 |
+
if ( $is_new && $is_panels_type && $use_classic ) {
|
1224 |
+
$settings_url = self_admin_url( 'options-general.php?page=siteorigin_panels' );
|
1225 |
+
$notice = sprintf(
|
1226 |
+
__( 'This post type is set to use the Classic Editor by default for new posts. If you’d like to change this to the block editor, please go to <a href="%s" class="components-notice__action is-link">Page Builder Settings</a> and uncheck <strong>Use Classic Editor for new posts</strong>' ),
|
1227 |
+
$settings_url
|
1228 |
+
);
|
|
|
|
|
|
|
|
|
1229 |
?>
|
1230 |
+
<div id="siteorigin-panels-use-classic-notice" class="notice notice-info"><p id="use-classic-notice"><?php echo $notice ?></p></div>
|
1231 |
<?php
|
1232 |
}
|
1233 |
}
|
1252 |
// If the `$post_type` is set to be used by Page Builder.
|
1253 |
$post_types = siteorigin_panels_setting( 'post-types' );
|
1254 |
$is_panels_type = in_array( $post_type, $post_types );
|
1255 |
+
$use_classic = siteorigin_panels_setting( 'use-classic' );
|
1256 |
// For existing posts.
|
1257 |
global $post;
|
1258 |
if ( ! empty( $post ) ) {
|
1259 |
// If the post has blocks just allow `$use_block_editor` to decide.
|
1260 |
if ( ! has_blocks( $post ) ) {
|
1261 |
$panels_data = get_post_meta( $post->ID, 'panels_data', true );
|
1262 |
+
global $pagenow;
|
1263 |
+
$is_new = $pagenow == 'post-new.php';
|
1264 |
+
if ( ! empty( $panels_data ) || ( $use_classic && $is_new && $is_panels_type ) ) {
|
1265 |
$use_block_editor = false;
|
1266 |
}
|
1267 |
}
|
1268 |
+
} else if ( $is_panels_type ) {
|
1269 |
+
$use_block_editor = false;
|
|
|
|
|
1270 |
}
|
1271 |
|
1272 |
return $use_block_editor;
|
1275 |
/**
|
1276 |
* This was copied from Gutenberg and slightly modified as a quick way to allow users to create new Page Builder pages
|
1277 |
* in the classic editor without requiring the classic editor plugin be installed.
|
|
|
|
|
1278 |
*/
|
1279 |
function add_panels_add_new_button() {
|
1280 |
global $typenow;
|
1289 |
<?php
|
1290 |
}
|
1291 |
|
1292 |
+
if ( ! $this->show_add_new_dropdown_for_type( $typenow ) ) {
|
|
|
|
|
1293 |
return;
|
1294 |
}
|
1295 |
|
1418 |
<?php
|
1419 |
}
|
1420 |
|
1421 |
+
private function show_add_new_dropdown_for_type( $post_type ) {
|
1422 |
+
|
1423 |
+
$show = in_array( $post_type, siteorigin_panels_setting( 'post-types' ) );
|
1424 |
+
|
1425 |
+
// WooCommerce product type doesn't support block editor...
|
1426 |
+
$show = $show && ! ( class_exists( 'WooCommerce' ) && $post_type == 'product' );
|
1427 |
+
|
1428 |
+
if ( class_exists( 'SiteOrigin_Premium_Plugin_Cpt_Builder' ) ) {
|
1429 |
+
$show = $show && $post_type != SiteOrigin_Premium_Plugin_Cpt_Builder::POST_TYPE;
|
1430 |
+
$cpt_builder = SiteOrigin_Premium_Plugin_Cpt_Builder::single();
|
1431 |
+
$so_custom_types = $cpt_builder->get_post_types();
|
1432 |
+
$show = $show && ! isset( $so_custom_types[ $post_type ] );
|
1433 |
+
}
|
1434 |
+
|
1435 |
+
return $show;
|
1436 |
+
}
|
1437 |
+
|
1438 |
public function add_panels_post_state( $post_states, $post ) {
|
1439 |
$panels_data = get_post_meta( $post->ID, 'panels_data', true );
|
1440 |
|
inc/settings.php
CHANGED
@@ -114,6 +114,7 @@ class SiteOrigin_Panels_Settings {
|
|
114 |
$defaults['display-teaser'] = true;
|
115 |
$defaults['display-learn'] = true;
|
116 |
$defaults['load-on-attach'] = false;
|
|
|
117 |
|
118 |
// The general fields
|
119 |
$defaults['post-types'] = array( 'page', 'post' );
|
@@ -244,7 +245,13 @@ class SiteOrigin_Panels_Settings {
|
|
244 |
'type' => 'select_multi',
|
245 |
'label' => __( 'Post Types', 'siteorigin-panels' ),
|
246 |
'options' => $this->get_post_types(),
|
247 |
-
'description' => __( 'The post types to use Page Builder
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
);
|
249 |
|
250 |
$fields['general']['fields']['live-editor-quick-link'] = array(
|
@@ -284,7 +291,11 @@ class SiteOrigin_Panels_Settings {
|
|
284 |
$fields['general']['fields']['load-on-attach'] = array(
|
285 |
'type' => 'checkbox',
|
286 |
'label' => __( 'Default To Page Builder Interface', 'siteorigin-panels' ),
|
287 |
-
'description' =>
|
|
|
|
|
|
|
|
|
288 |
);
|
289 |
|
290 |
// The widgets fields
|
114 |
$defaults['display-teaser'] = true;
|
115 |
$defaults['display-learn'] = true;
|
116 |
$defaults['load-on-attach'] = false;
|
117 |
+
$defaults['use-classic'] = true;
|
118 |
|
119 |
// The general fields
|
120 |
$defaults['post-types'] = array( 'page', 'post' );
|
245 |
'type' => 'select_multi',
|
246 |
'label' => __( 'Post Types', 'siteorigin-panels' ),
|
247 |
'options' => $this->get_post_types(),
|
248 |
+
'description' => __( 'The post types on which to use Page Builder.', 'siteorigin-panels' ),
|
249 |
+
);
|
250 |
+
|
251 |
+
$fields['general']['fields']['use-classic'] = array(
|
252 |
+
'type' => 'checkbox',
|
253 |
+
'label' => __( 'Use Classic Editor for new posts', 'siteorigin-panels' ),
|
254 |
+
'description' => __( 'New posts of the above Post Types will be created using the Classic Editor.', 'siteorigin-panels' )
|
255 |
);
|
256 |
|
257 |
$fields['general']['fields']['live-editor-quick-link'] = array(
|
291 |
$fields['general']['fields']['load-on-attach'] = array(
|
292 |
'type' => 'checkbox',
|
293 |
'label' => __( 'Default To Page Builder Interface', 'siteorigin-panels' ),
|
294 |
+
'description' => sprintf(
|
295 |
+
__( 'New Classic Editor posts/pages that you create will start with the Page Builder loaded. The %s"Use Classic Editor for new posts"%s setting must be enabled.', 'siteorigin-panels' ),
|
296 |
+
'<strong>',
|
297 |
+
'</strong>'
|
298 |
+
)
|
299 |
);
|
300 |
|
301 |
// The widgets fields
|
js/{siteorigin-panels-296.js → siteorigin-panels-297.js}
RENAMED
File without changes
|
js/{siteorigin-panels-296.min.js → siteorigin-panels-297.min.js}
RENAMED
File without changes
|
js/{styling-296.js → styling-297.js}
RENAMED
File without changes
|
js/{styling-296.min.js → styling-297.min.js}
RENAMED
File without changes
|
lang/siteorigin-panels.pot
CHANGED
@@ -44,7 +44,7 @@ msgstr ""
|
|
44 |
msgid "(email SiteOrigin support)"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: inc/admin-dashboard.php:95, inc/admin.php:
|
48 |
msgid "Support Forum"
|
49 |
msgstr ""
|
50 |
|
@@ -109,7 +109,7 @@ msgstr ""
|
|
109 |
msgid "WordPress Widgets"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: inc/admin-widget-dialog.php:185, inc/settings.php:
|
113 |
msgid "Recommended Widgets"
|
114 |
msgstr ""
|
115 |
|
@@ -121,347 +121,349 @@ msgstr ""
|
|
121 |
msgid "Installing %s"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: inc/admin.php:
|
125 |
msgid "Addons"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/admin.php:
|
129 |
msgid "Page Builder"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/admin.php:
|
133 |
msgid "All Widgets"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/admin.php:
|
137 |
msgid "Missing Widget"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/admin.php:
|
141 |
msgid "Page Builder doesn't know about this widget."
|
142 |
msgstr ""
|
143 |
|
144 |
#. translators: Number of seconds since
|
145 |
-
#: inc/admin.php:
|
146 |
msgid "%d seconds"
|
147 |
msgstr ""
|
148 |
|
149 |
#. translators: Number of minutes since
|
150 |
-
#: inc/admin.php:
|
151 |
msgid "%d minutes"
|
152 |
msgstr ""
|
153 |
|
154 |
#. translators: Number of hours since
|
155 |
-
#: inc/admin.php:
|
156 |
msgid "%d hours"
|
157 |
msgstr ""
|
158 |
|
159 |
#. translators: A single second since
|
160 |
-
#: inc/admin.php:
|
161 |
msgid "%d second"
|
162 |
msgstr ""
|
163 |
|
164 |
#. translators: A single minute since
|
165 |
-
#: inc/admin.php:
|
166 |
msgid "%d minute"
|
167 |
msgstr ""
|
168 |
|
169 |
#. translators: A single hour since
|
170 |
-
#: inc/admin.php:
|
171 |
msgid "%d hour"
|
172 |
msgstr ""
|
173 |
|
174 |
#. translators: Time ago - eg. "1 minute before".
|
175 |
-
#: inc/admin.php:
|
176 |
msgid "%s before"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/admin.php:
|
180 |
msgid "Now"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/admin.php:
|
184 |
msgid "Current"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/admin.php:
|
188 |
msgid "Original"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/admin.php:
|
192 |
msgid "Version restored"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/admin.php:
|
196 |
msgid "Converted to editor"
|
197 |
msgstr ""
|
198 |
|
199 |
#. translators: Message displayed in the history when a widget is deleted
|
200 |
-
#: inc/admin.php:
|
201 |
msgid "Widget deleted"
|
202 |
msgstr ""
|
203 |
|
204 |
#. translators: Message displayed in the history when a widget is added
|
205 |
-
#: inc/admin.php:
|
206 |
msgid "Widget added"
|
207 |
msgstr ""
|
208 |
|
209 |
#. translators: Message displayed in the history when a widget is edited
|
210 |
-
#: inc/admin.php:
|
211 |
msgid "Widget edited"
|
212 |
msgstr ""
|
213 |
|
214 |
#. translators: Message displayed in the history when a widget is duplicated
|
215 |
-
#: inc/admin.php:
|
216 |
msgid "Widget duplicated"
|
217 |
msgstr ""
|
218 |
|
219 |
#. translators: Message displayed in the history when a widget position is changed
|
220 |
-
#: inc/admin.php:
|
221 |
msgid "Widget moved"
|
222 |
msgstr ""
|
223 |
|
224 |
#. translators: Message displayed in the history when a row is deleted
|
225 |
-
#: inc/admin.php:
|
226 |
msgid "Row deleted"
|
227 |
msgstr ""
|
228 |
|
229 |
#. translators: Message displayed in the history when a row is added
|
230 |
-
#: inc/admin.php:
|
231 |
msgid "Row added"
|
232 |
msgstr ""
|
233 |
|
234 |
#. translators: Message displayed in the history when a row is edited
|
235 |
-
#: inc/admin.php:
|
236 |
msgid "Row edited"
|
237 |
msgstr ""
|
238 |
|
239 |
#. translators: Message displayed in the history when a row position is changed
|
240 |
-
#: inc/admin.php:
|
241 |
msgid "Row moved"
|
242 |
msgstr ""
|
243 |
|
244 |
#. translators: Message displayed in the history when a row is duplicated
|
245 |
-
#: inc/admin.php:
|
246 |
msgid "Row duplicated"
|
247 |
msgstr ""
|
248 |
|
249 |
#. translators: Message displayed in the history when a row is pasted
|
250 |
-
#: inc/admin.php:
|
251 |
msgid "Row pasted"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: inc/admin.php:
|
255 |
msgid "Cell resized"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: inc/admin.php:
|
259 |
msgid "Prebuilt layout loaded"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/admin.php:
|
263 |
msgid "Loading prebuilt layout"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/admin.php:
|
267 |
msgid "Would you like to copy this editor's existing content to Page Builder?"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/admin.php:
|
271 |
msgid "Would you like to clear your Page Builder content and revert to using the standard visual editor?"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: This is the title for a widget called "Layout Builder"
|
275 |
-
#: inc/admin.php:
|
276 |
msgid "Layout Builder Widget"
|
277 |
msgstr ""
|
278 |
|
279 |
#. translators: A standard confirmation message
|
280 |
-
#: inc/admin.php:
|
281 |
msgid "Are you sure?"
|
282 |
msgstr ""
|
283 |
|
284 |
#. translators: When a layout file is ready to be inserted. %s is the filename.
|
285 |
-
#: inc/admin.php:
|
286 |
msgid "%s is ready to insert."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: inc/admin.php:
|
290 |
msgid "Add Widget Below"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: inc/admin.php:
|
294 |
msgid "Add Widget to Cell"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/admin.php:
|
298 |
msgid "Search Widgets"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/admin.php:
|
302 |
msgid "Add Row"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/admin.php:
|
306 |
msgid "Column"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/admin.php:
|
310 |
msgid "Cell Actions"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/admin.php:
|
314 |
msgid "Paste Widget"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/admin.php:
|
318 |
msgid "Widget Actions"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/admin.php:
|
322 |
msgid "Edit Widget"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/admin.php:
|
326 |
msgid "Duplicate Widget"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/admin.php:
|
330 |
msgid "Delete Widget"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/admin.php:
|
334 |
msgid "Copy Widget"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: inc/admin.php:
|
338 |
msgid "Paste Widget Below"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: inc/admin.php:
|
342 |
msgid "Row Actions"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/admin.php:
|
346 |
msgid "Edit Row"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/admin.php:
|
350 |
msgid "Duplicate Row"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/admin.php:
|
354 |
msgid "Delete Row"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: inc/admin.php:
|
358 |
msgid "Copy Row"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: inc/admin.php:
|
362 |
msgid "Paste Row"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: inc/admin.php:
|
366 |
msgid "Draft"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/admin.php:
|
370 |
msgid "Untitled"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/admin.php:
|
374 |
msgid "New Row"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/admin.php:
|
378 |
msgid "Row"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/admin.php:
|
382 |
msgid "Hmmm... Adding layout elements is not enabled. Please check if Page Builder has been configured to allow adding elements."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: inc/admin.php:
|
386 |
msgid "Add a {{%= items[0] %}} to get started."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: inc/admin.php:
|
390 |
msgid "Add a {{%= items[0] %}} or {{%= items[1] %}} to get started."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/admin.php:
|
394 |
msgid "Add a {{%= items[0] %}}, {{%= items[1] %}} or {{%= items[2] %}} to get started."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: inc/admin.php:
|
398 |
msgid "Widget"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: inc/admin.php:
|
402 |
msgid "Prebuilt Layout"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: inc/admin.php:
|
406 |
msgid "Read our %s if you need help."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: inc/admin.php:
|
410 |
msgid "documentation"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: inc/admin.php:
|
414 |
msgid "Page Builder layouts"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: inc/admin.php:
|
418 |
msgid "Error uploading or importing file."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: inc/admin.php:
|
422 |
msgid "Unknown error. Failed to load the form. Please check your internet connection, contact your web site administrator, or try again later."
|
423 |
msgstr ""
|
424 |
|
425 |
#. translators: This is the default name given to a user's home page
|
426 |
-
#: inc/admin.php:
|
427 |
msgid "Home Page"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: inc/admin.php:
|
431 |
msgid "Untitled Widget"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: inc/admin.php:
|
435 |
msgid "You need to install 1{%1$s} to use the widget 2{%2$s}."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: inc/admin.php:
|
439 |
msgid "Save and reload this page to start using the widget after you've installed it."
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: inc/admin.php:
|
443 |
msgid "The widget 1{%1$s} is not available. Please try locate and install the missing plugin. Post on the 2{support forums} if you need help."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: inc/admin.php:
|
447 |
msgid "The supplied nonce is invalid."
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: inc/admin.php:
|
451 |
msgid "Invalid nonce."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: inc/admin.php:
|
455 |
msgid "Please specify the type of widget form to be rendered."
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: inc/admin.php:
|
459 |
msgid "Missing widget type."
|
460 |
msgstr ""
|
461 |
|
462 |
#: inc/admin.php:1152
|
463 |
-
msgid "%s
|
464 |
-
|
|
|
|
|
465 |
|
466 |
#: inc/admin.php:1195
|
467 |
msgid "Get a lightbox addon for SiteOrigin widgets"
|
@@ -475,15 +477,15 @@ msgstr ""
|
|
475 |
msgid "Get premium email support for SiteOrigin Page Builder"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: inc/admin.php:
|
479 |
msgid "Toggle editor selection menu"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: inc/admin.php:
|
483 |
msgid "SiteOrigin Page Builder"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: inc/admin.php:
|
487 |
msgid "Block Editor"
|
488 |
msgstr ""
|
489 |
|
@@ -543,219 +545,227 @@ msgstr ""
|
|
543 |
msgid "Page Builder Content"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/settings.php:
|
547 |
msgid "Page Builder Settings"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/settings.php:
|
551 |
msgid "General"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/settings.php:
|
555 |
msgid "Post Types"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/settings.php:
|
559 |
-
msgid "The post types to use Page Builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: inc/settings.php:
|
563 |
msgid "Live Editor Quick Link"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/settings.php:
|
567 |
msgid "Display a Live Editor button in the admin bar."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/settings.php:
|
571 |
msgid "Display Widget Count"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/settings.php:
|
575 |
msgid "Display a widget count in the admin lists of posts/pages where you're using Page Builder."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/settings.php:
|
579 |
msgid "Limit Parallax Motion"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/settings.php:
|
583 |
msgid "How many pixels of scrolling result in a single pixel of parallax motion. 0 means automatic. Lower values give more noticeable effect."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: inc/settings.php:
|
587 |
msgid "Sidebars Emulator"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: inc/settings.php:
|
591 |
msgid "Page Builder will create an emulated sidebar, that contains all widgets in the page."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: inc/settings.php:
|
595 |
msgid "Upgrade Teaser"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/settings.php:
|
599 |
msgid "Display the %sSiteOrigin Premium%s upgrade teaser in the Page Builder toolbar."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/settings.php:
|
603 |
msgid "Default To Page Builder Interface"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/settings.php:
|
607 |
-
msgid "New posts/pages that you create will start with the Page Builder loaded."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/settings.php:
|
611 |
msgid "Widgets"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: inc/settings.php:
|
615 |
msgid "Widget Title HTML"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: inc/settings.php:
|
619 |
msgid "The HTML used for widget titles. {{title}} is replaced with the widget title."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/settings.php:
|
623 |
msgid "Add Widget Class"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: inc/settings.php:
|
627 |
msgid "Add the widget class to Page Builder widgets. Disable this if you're experiencing conflicts."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/settings.php:
|
631 |
msgid "Legacy Bundled Widgets"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/settings.php:
|
635 |
msgid "Load legacy widgets from Page Builder 1."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/settings.php:
|
639 |
msgid "Display recommend widgets in Page Builder add widget dialog."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/settings.php:
|
643 |
msgid "Instant Open Widgets"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/settings.php:
|
647 |
msgid "Open a widget form as soon as its added to a page."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/settings.php:
|
651 |
msgid "Layout"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc/settings.php:
|
655 |
msgid "Responsive Layout"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/settings.php:
|
659 |
msgid "Collapse widgets, rows and columns on mobile devices."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/settings.php:
|
663 |
msgid "Use Tablet Layout"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/settings.php:
|
667 |
msgid "Collapses columns differently on tablet devices."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/settings.php:
|
671 |
msgid "Detect older browsers"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: inc/settings.php:
|
675 |
msgid "Never"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: inc/settings.php:
|
679 |
msgid "Always"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/settings.php:
|
683 |
msgid "Use Legacy Layout Engine"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: inc/settings.php:
|
687 |
msgid "The CSS and HTML uses floats instead of flexbox for compatibility with very old browsers."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: inc/settings.php:
|
691 |
msgid "Tablet Width"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: inc/settings.php:
|
695 |
msgid "Device width, in pixels, to collapse into a tablet view ."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: inc/settings.php:
|
699 |
msgid "Mobile Width"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/settings.php:
|
703 |
msgid "Device width, in pixels, to collapse into a mobile view ."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/settings.php:
|
707 |
msgid "Row/Widget Bottom Margin"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: inc/settings.php:
|
711 |
msgid "Default margin below rows and widgets."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: inc/settings.php:
|
715 |
msgid "Last Row With Margin"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: inc/settings.php:
|
719 |
msgid "Allow margin in last row."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/settings.php:
|
723 |
msgid "Row Gutter"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/settings.php:
|
727 |
msgid "Default spacing between columns in each row."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/settings.php:
|
731 |
msgid "Full Width Container"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc/settings.php:
|
735 |
msgid "The container used for the full width layout."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/settings.php:
|
739 |
msgid "Content"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc/settings.php:
|
743 |
msgid "Copy Content"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: inc/settings.php:
|
747 |
msgid "Copy content from Page Builder to post content."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: inc/settings.php:
|
751 |
msgid "Copy Styles"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: inc/settings.php:
|
755 |
msgid "Include styles into your Post Content. This keeps page layouts, even when Page Builder is deactivated."
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: inc/settings.php:
|
759 |
msgid "Enabled"
|
760 |
msgstr ""
|
761 |
|
44 |
msgid "(email SiteOrigin support)"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: inc/admin-dashboard.php:95, inc/admin.php:136
|
48 |
msgid "Support Forum"
|
49 |
msgstr ""
|
50 |
|
109 |
msgid "WordPress Widgets"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/admin-widget-dialog.php:185, inc/settings.php:328
|
113 |
msgid "Recommended Widgets"
|
114 |
msgstr ""
|
115 |
|
121 |
msgid "Installing %s"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/admin.php:139, tpl/js-templates.php:44
|
125 |
msgid "Addons"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/admin.php:153, inc/admin.php:549, inc/admin.php:1134, inc/admin.php:1139, inc/settings.php:197, tpl/js-templates.php:193
|
129 |
msgid "Page Builder"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/admin.php:305
|
133 |
msgid "All Widgets"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/admin.php:332
|
137 |
msgid "Missing Widget"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: inc/admin.php:333
|
141 |
msgid "Page Builder doesn't know about this widget."
|
142 |
msgstr ""
|
143 |
|
144 |
#. translators: Number of seconds since
|
145 |
+
#: inc/admin.php:337
|
146 |
msgid "%d seconds"
|
147 |
msgstr ""
|
148 |
|
149 |
#. translators: Number of minutes since
|
150 |
+
#: inc/admin.php:339
|
151 |
msgid "%d minutes"
|
152 |
msgstr ""
|
153 |
|
154 |
#. translators: Number of hours since
|
155 |
+
#: inc/admin.php:341
|
156 |
msgid "%d hours"
|
157 |
msgstr ""
|
158 |
|
159 |
#. translators: A single second since
|
160 |
+
#: inc/admin.php:344
|
161 |
msgid "%d second"
|
162 |
msgstr ""
|
163 |
|
164 |
#. translators: A single minute since
|
165 |
+
#: inc/admin.php:346
|
166 |
msgid "%d minute"
|
167 |
msgstr ""
|
168 |
|
169 |
#. translators: A single hour since
|
170 |
+
#: inc/admin.php:348
|
171 |
msgid "%d hour"
|
172 |
msgstr ""
|
173 |
|
174 |
#. translators: Time ago - eg. "1 minute before".
|
175 |
+
#: inc/admin.php:351
|
176 |
msgid "%s before"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: inc/admin.php:352
|
180 |
msgid "Now"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: inc/admin.php:356
|
184 |
msgid "Current"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: inc/admin.php:357
|
188 |
msgid "Original"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: inc/admin.php:358
|
192 |
msgid "Version restored"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: inc/admin.php:359
|
196 |
msgid "Converted to editor"
|
197 |
msgstr ""
|
198 |
|
199 |
#. translators: Message displayed in the history when a widget is deleted
|
200 |
+
#: inc/admin.php:363
|
201 |
msgid "Widget deleted"
|
202 |
msgstr ""
|
203 |
|
204 |
#. translators: Message displayed in the history when a widget is added
|
205 |
+
#: inc/admin.php:365
|
206 |
msgid "Widget added"
|
207 |
msgstr ""
|
208 |
|
209 |
#. translators: Message displayed in the history when a widget is edited
|
210 |
+
#: inc/admin.php:367
|
211 |
msgid "Widget edited"
|
212 |
msgstr ""
|
213 |
|
214 |
#. translators: Message displayed in the history when a widget is duplicated
|
215 |
+
#: inc/admin.php:369
|
216 |
msgid "Widget duplicated"
|
217 |
msgstr ""
|
218 |
|
219 |
#. translators: Message displayed in the history when a widget position is changed
|
220 |
+
#: inc/admin.php:371
|
221 |
msgid "Widget moved"
|
222 |
msgstr ""
|
223 |
|
224 |
#. translators: Message displayed in the history when a row is deleted
|
225 |
+
#: inc/admin.php:375
|
226 |
msgid "Row deleted"
|
227 |
msgstr ""
|
228 |
|
229 |
#. translators: Message displayed in the history when a row is added
|
230 |
+
#: inc/admin.php:377
|
231 |
msgid "Row added"
|
232 |
msgstr ""
|
233 |
|
234 |
#. translators: Message displayed in the history when a row is edited
|
235 |
+
#: inc/admin.php:379
|
236 |
msgid "Row edited"
|
237 |
msgstr ""
|
238 |
|
239 |
#. translators: Message displayed in the history when a row position is changed
|
240 |
+
#: inc/admin.php:381
|
241 |
msgid "Row moved"
|
242 |
msgstr ""
|
243 |
|
244 |
#. translators: Message displayed in the history when a row is duplicated
|
245 |
+
#: inc/admin.php:383
|
246 |
msgid "Row duplicated"
|
247 |
msgstr ""
|
248 |
|
249 |
#. translators: Message displayed in the history when a row is pasted
|
250 |
+
#: inc/admin.php:385
|
251 |
msgid "Row pasted"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/admin.php:388
|
255 |
msgid "Cell resized"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/admin.php:391
|
259 |
msgid "Prebuilt layout loaded"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/admin.php:395
|
263 |
msgid "Loading prebuilt layout"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/admin.php:396
|
267 |
msgid "Would you like to copy this editor's existing content to Page Builder?"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/admin.php:397
|
271 |
msgid "Would you like to clear your Page Builder content and revert to using the standard visual editor?"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: This is the title for a widget called "Layout Builder"
|
275 |
+
#: inc/admin.php:399
|
276 |
msgid "Layout Builder Widget"
|
277 |
msgstr ""
|
278 |
|
279 |
#. translators: A standard confirmation message
|
280 |
+
#: inc/admin.php:401, tpl/js-templates.php:97, tpl/js-templates.php:418
|
281 |
msgid "Are you sure?"
|
282 |
msgstr ""
|
283 |
|
284 |
#. translators: When a layout file is ready to be inserted. %s is the filename.
|
285 |
+
#: inc/admin.php:403
|
286 |
msgid "%s is ready to insert."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: inc/admin.php:407
|
290 |
msgid "Add Widget Below"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: inc/admin.php:408
|
294 |
msgid "Add Widget to Cell"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/admin.php:409, tpl/js-templates.php:220
|
298 |
msgid "Search Widgets"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/admin.php:411, tpl/js-templates.php:17, tpl/js-templates.php:19
|
302 |
msgid "Add Row"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/admin.php:412
|
306 |
msgid "Column"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/admin.php:414
|
310 |
msgid "Cell Actions"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: inc/admin.php:415
|
314 |
msgid "Paste Widget"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/admin.php:417
|
318 |
msgid "Widget Actions"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/admin.php:418
|
322 |
msgid "Edit Widget"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/admin.php:419
|
326 |
msgid "Duplicate Widget"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/admin.php:420
|
330 |
msgid "Delete Widget"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/admin.php:421
|
334 |
msgid "Copy Widget"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: inc/admin.php:422
|
338 |
msgid "Paste Widget Below"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: inc/admin.php:424
|
342 |
msgid "Row Actions"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: inc/admin.php:425, tpl/js-templates.php:95
|
346 |
msgid "Edit Row"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/admin.php:426, tpl/js-templates.php:96
|
350 |
msgid "Duplicate Row"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/admin.php:427, tpl/js-templates.php:97
|
354 |
msgid "Delete Row"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: inc/admin.php:428
|
358 |
msgid "Copy Row"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: inc/admin.php:429
|
362 |
msgid "Paste Row"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: inc/admin.php:431
|
366 |
msgid "Draft"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: inc/admin.php:432
|
370 |
msgid "Untitled"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: inc/admin.php:434
|
374 |
msgid "New Row"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: inc/admin.php:435, inc/admin.php:443, inc/styles.php:184, tpl/js-templates.php:62
|
378 |
msgid "Row"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: inc/admin.php:438
|
382 |
msgid "Hmmm... Adding layout elements is not enabled. Please check if Page Builder has been configured to allow adding elements."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: inc/admin.php:439
|
386 |
msgid "Add a {{%= items[0] %}} to get started."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: inc/admin.php:440
|
390 |
msgid "Add a {{%= items[0] %}} or {{%= items[1] %}} to get started."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: inc/admin.php:441
|
394 |
msgid "Add a {{%= items[0] %}}, {{%= items[1] %}} or {{%= items[2] %}} to get started."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: inc/admin.php:442, inc/styles.php:318, tpl/js-templates.php:61
|
398 |
msgid "Widget"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: inc/admin.php:444, tpl/js-templates.php:63
|
402 |
msgid "Prebuilt Layout"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: inc/admin.php:446
|
406 |
msgid "Read our %s if you need help."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: inc/admin.php:447, tpl/js-templates.php:64
|
410 |
msgid "documentation"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: inc/admin.php:456
|
414 |
msgid "Page Builder layouts"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: inc/admin.php:457
|
418 |
msgid "Error uploading or importing file."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: inc/admin.php:464
|
422 |
msgid "Unknown error. Failed to load the form. Please check your internet connection, contact your web site administrator, or try again later."
|
423 |
msgstr ""
|
424 |
|
425 |
#. translators: This is the default name given to a user's home page
|
426 |
+
#: inc/admin.php:632, inc/home.php:26
|
427 |
msgid "Home Page"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/admin.php:732
|
431 |
msgid "Untitled Widget"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/admin.php:913
|
435 |
msgid "You need to install 1{%1$s} to use the widget 2{%2$s}."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/admin.php:919
|
439 |
msgid "Save and reload this page to start using the widget after you've installed it."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: inc/admin.php:935
|
443 |
msgid "The widget 1{%1$s} is not available. Please try locate and install the missing plugin. Post on the 2{support forums} if you need help."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: inc/admin.php:1050, inc/styles-admin.php:23
|
447 |
msgid "The supplied nonce is invalid."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/admin.php:1051, inc/styles-admin.php:24
|
451 |
msgid "Invalid nonce."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/admin.php:1057
|
455 |
msgid "Please specify the type of widget form to be rendered."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/admin.php:1058
|
459 |
msgid "Missing widget type."
|
460 |
msgstr ""
|
461 |
|
462 |
#: inc/admin.php:1152
|
463 |
+
msgid "%s Widget"
|
464 |
+
msgid_plural "%s Widgets"
|
465 |
+
msgstr[0] ""
|
466 |
+
msgstr[1] ""
|
467 |
|
468 |
#: inc/admin.php:1195
|
469 |
msgid "Get a lightbox addon for SiteOrigin widgets"
|
477 |
msgid "Get premium email support for SiteOrigin Page Builder"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: inc/admin.php:1394
|
481 |
msgid "Toggle editor selection menu"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: inc/admin.php:1395, inc/admin.php:1442, inc/settings.php:197, settings/tpl/settings.php:9
|
485 |
msgid "SiteOrigin Page Builder"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: inc/admin.php:1396
|
489 |
msgid "Block Editor"
|
490 |
msgstr ""
|
491 |
|
545 |
msgid "Page Builder Content"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/settings.php:224
|
549 |
msgid "Page Builder Settings"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: inc/settings.php:240
|
553 |
msgid "General"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: inc/settings.php:246
|
557 |
msgid "Post Types"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: inc/settings.php:248
|
561 |
+
msgid "The post types on which to use Page Builder."
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: inc/settings.php:253
|
565 |
+
msgid "Use Classic Editor for new posts"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: inc/settings.php:254
|
569 |
+
msgid "New posts of the above Post Types will be created using the Classic Editor."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: inc/settings.php:259
|
573 |
msgid "Live Editor Quick Link"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/settings.php:260
|
577 |
msgid "Display a Live Editor button in the admin bar."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/settings.php:265
|
581 |
msgid "Display Widget Count"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/settings.php:266
|
585 |
msgid "Display a widget count in the admin lists of posts/pages where you're using Page Builder."
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: inc/settings.php:271
|
589 |
msgid "Limit Parallax Motion"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: inc/settings.php:272
|
593 |
msgid "How many pixels of scrolling result in a single pixel of parallax motion. 0 means automatic. Lower values give more noticeable effect."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: inc/settings.php:277
|
597 |
msgid "Sidebars Emulator"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: inc/settings.php:278
|
601 |
msgid "Page Builder will create an emulated sidebar, that contains all widgets in the page."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: inc/settings.php:283
|
605 |
msgid "Upgrade Teaser"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: inc/settings.php:285
|
609 |
msgid "Display the %sSiteOrigin Premium%s upgrade teaser in the Page Builder toolbar."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: inc/settings.php:293
|
613 |
msgid "Default To Page Builder Interface"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: inc/settings.php:295
|
617 |
+
msgid "New Classic Editor posts/pages that you create will start with the Page Builder loaded. The %s\"Use Classic Editor for new posts\"%s setting must be enabled."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: inc/settings.php:304
|
621 |
msgid "Widgets"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: inc/settings.php:310
|
625 |
msgid "Widget Title HTML"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/settings.php:311
|
629 |
msgid "The HTML used for widget titles. {{title}} is replaced with the widget title."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: inc/settings.php:316
|
633 |
msgid "Add Widget Class"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: inc/settings.php:317
|
637 |
msgid "Add the widget class to Page Builder widgets. Disable this if you're experiencing conflicts."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: inc/settings.php:322
|
641 |
msgid "Legacy Bundled Widgets"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/settings.php:323
|
645 |
msgid "Load legacy widgets from Page Builder 1."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: inc/settings.php:329
|
649 |
msgid "Display recommend widgets in Page Builder add widget dialog."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: inc/settings.php:334
|
653 |
msgid "Instant Open Widgets"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: inc/settings.php:335
|
657 |
msgid "Open a widget form as soon as its added to a page."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: inc/settings.php:341, inc/styles-admin.php:88
|
661 |
msgid "Layout"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: inc/settings.php:349
|
665 |
msgid "Responsive Layout"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: inc/settings.php:350
|
669 |
msgid "Collapse widgets, rows and columns on mobile devices."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: inc/settings.php:355
|
673 |
msgid "Use Tablet Layout"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: inc/settings.php:356
|
677 |
msgid "Collapses columns differently on tablet devices."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: inc/settings.php:362
|
681 |
msgid "Detect older browsers"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: inc/settings.php:363
|
685 |
msgid "Never"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: inc/settings.php:364
|
689 |
msgid "Always"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: inc/settings.php:366
|
693 |
msgid "Use Legacy Layout Engine"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: inc/settings.php:367
|
697 |
msgid "The CSS and HTML uses floats instead of flexbox for compatibility with very old browsers."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/settings.php:373
|
701 |
msgid "Tablet Width"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: inc/settings.php:374
|
705 |
msgid "Device width, in pixels, to collapse into a tablet view ."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: inc/settings.php:380
|
709 |
msgid "Mobile Width"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: inc/settings.php:381
|
713 |
msgid "Device width, in pixels, to collapse into a mobile view ."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: inc/settings.php:387
|
717 |
msgid "Row/Widget Bottom Margin"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: inc/settings.php:388
|
721 |
msgid "Default margin below rows and widgets."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: inc/settings.php:393
|
725 |
msgid "Last Row With Margin"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: inc/settings.php:394
|
729 |
msgid "Allow margin in last row."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: inc/settings.php:400
|
733 |
msgid "Row Gutter"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: inc/settings.php:401
|
737 |
msgid "Default spacing between columns in each row."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: inc/settings.php:407
|
741 |
msgid "Full Width Container"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: inc/settings.php:408
|
745 |
msgid "The container used for the full width layout."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: inc/settings.php:415
|
749 |
msgid "Content"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: inc/settings.php:421
|
753 |
msgid "Copy Content"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: inc/settings.php:422
|
757 |
msgid "Copy content from Page Builder to post content."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: inc/settings.php:427
|
761 |
msgid "Copy Styles"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: inc/settings.php:428
|
765 |
msgid "Include styles into your Post Content. This keeps page layouts, even when Page Builder is deactivated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: inc/settings.php:475, inc/styles-admin.php:269
|
769 |
msgid "Enabled"
|
770 |
msgstr ""
|
771 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
|
3 |
Requires at least: 4.4
|
4 |
Tested up to: 5.0
|
5 |
-
Stable tag: 2.9.
|
6 |
-
Build time: 2018-12-
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl.html
|
9 |
Donate link: https://siteorigin.com/downloads/contribution/
|
@@ -96,6 +96,11 @@ We've tried to ensure that Page Builder is compatible with most plugin widgets.
|
|
96 |
|
97 |
== Changelog ==
|
98 |
|
|
|
|
|
|
|
|
|
|
|
99 |
= 2.9.6 - 10 December 2018 =
|
100 |
* Default to Page Builder interface for post types set to use Page Builder in Settings.
|
101 |
* Add check for WooCommerce 'product' type to prevent output of 'Add New' dropdown.
|
2 |
Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
|
3 |
Requires at least: 4.4
|
4 |
Tested up to: 5.0
|
5 |
+
Stable tag: 2.9.7
|
6 |
+
Build time: 2018-12-14T11:15:17-08:00
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl.html
|
9 |
Donate link: https://siteorigin.com/downloads/contribution/
|
96 |
|
97 |
== Changelog ==
|
98 |
|
99 |
+
= 2.9.7 - 14 December 2018 =
|
100 |
+
* Add setting to use Classic Editor for new posts of types selected in Page Builder settings.
|
101 |
+
* Prevent showing the 'Add New' dropdown for SO custom post types.
|
102 |
+
* Display notice indicating how to disable Classic Editor for new Page Builder post types.
|
103 |
+
|
104 |
= 2.9.6 - 10 December 2018 =
|
105 |
* Default to Page Builder interface for post types set to use Page Builder in Settings.
|
106 |
* Add check for WooCommerce 'product' type to prevent output of 'Add New' dropdown.
|
siteorigin-panels.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Page Builder by SiteOrigin
|
4 |
Plugin URI: https://siteorigin.com/page-builder/
|
5 |
Description: A drag and drop, responsive page builder that simplifies building your website.
|
6 |
-
Version: 2.9.
|
7 |
Author: SiteOrigin
|
8 |
Author URI: https://siteorigin.com
|
9 |
License: GPL3
|
@@ -11,12 +11,12 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
11 |
Donate link: http://siteorigin.com/page-builder/#donate
|
12 |
*/
|
13 |
|
14 |
-
define( 'SITEORIGIN_PANELS_VERSION', '2.9.
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|
18 |
define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' );
|
19 |
-
define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-
|
20 |
|
21 |
require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
|
22 |
|
3 |
Plugin Name: Page Builder by SiteOrigin
|
4 |
Plugin URI: https://siteorigin.com/page-builder/
|
5 |
Description: A drag and drop, responsive page builder that simplifies building your website.
|
6 |
+
Version: 2.9.7
|
7 |
Author: SiteOrigin
|
8 |
Author URI: https://siteorigin.com
|
9 |
License: GPL3
|
11 |
Donate link: http://siteorigin.com/page-builder/#donate
|
12 |
*/
|
13 |
|
14 |
+
define( 'SITEORIGIN_PANELS_VERSION', '2.9.7' );
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|
18 |
define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' );
|
19 |
+
define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-297' );
|
20 |
|
21 |
require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
|
22 |
|