EmbedPress – Embed Google Docs, YouTube, Maps, Vimeo, Wistia Videos & Upload PDF, PPT in Gutenberg & Elementor - Version 3.1.3

Version Description

Download this release

Release Info

Developer wpdevteam
Plugin Icon wp plugin EmbedPress – Embed Google Docs, YouTube, Maps, Vimeo, Wistia Videos & Upload PDF, PPT in Gutenberg & Elementor
Version 3.1.3
Comparing to
See all releases

Code changes from version 3.1.2 to 3.1.3

EmbedPress/Core.php CHANGED
@@ -509,7 +509,7 @@ class Core {
509
 
510
  array_unshift($links, $settingsLink);
511
  if ( !is_embedpress_pro_active() ) {
512
- $links[] = '<a href="https://wpdeveloper.net/in/upgrade-embedpress" target="_blank" class="embedpress-go-pro-action">'.__('Go Pro', 'embedpress').'</a>';
513
  }
514
  return $links;
515
  }
509
 
510
  array_unshift($links, $settingsLink);
511
  if ( !is_embedpress_pro_active() ) {
512
+ $links[] = '<a href="https://wpdeveloper.net/in/upgrade-embedpress" target="_blank" class="embedpress-go-pro-action" style="color: green">'.__('Go Pro', 'embedpress').'</a>';
513
  }
514
  return $links;
515
  }
EmbedPress/CoreLegacy.php CHANGED
@@ -310,7 +310,7 @@ class CoreLegacy
310
 
311
  array_unshift($links, $settingsLink);
312
  if ( !is_embedpress_pro_active() ) {
313
- $links[] = '<a href="https://wpdeveloper.net/in/upgrade-embedpress" target="_blank" class="embedpress-go-pro-action">'.__('Go Pro', 'embedpress').'</a>';
314
  }
315
  return $links;
316
  }
310
 
311
  array_unshift($links, $settingsLink);
312
  if ( !is_embedpress_pro_active() ) {
313
+ $links[] = '<a href="https://wpdeveloper.net/in/upgrade-embedpress" target="_blank" class="embedpress-go-pro-action" style="color: green">'.__('Go Pro', 'embedpress').'</a>';
314
  }
315
  return $links;
316
  }
EmbedPress/Elementor/Widgets/Embedpress_Document.php CHANGED
@@ -145,8 +145,8 @@ class Embedpress_Document extends Widget_Base
145
  ],
146
  ],
147
  'selectors' => [
148
- '{{WRAPPER}} .embedpress-document-embed iframe' => 'width: {{SIZE}}{{UNIT}} !important;',
149
- '{{WRAPPER}} .embedpress-document-embed .pdfobject-container' => 'width: {{SIZE}}{{UNIT}} !important;',
150
  ],
151
  ]
152
  );
@@ -167,13 +167,14 @@ class Embedpress_Document extends Widget_Base
167
  ],
168
  ],
169
  'selectors' => [
 
170
  '{{WRAPPER}} .embedpress-document-embed iframe' => 'height: {{SIZE}}{{UNIT}};',
171
  '{{WRAPPER}} .embedpress-document-embed .pdfobject-container' => 'height: {{SIZE}}{{UNIT}};',
172
  ],
173
  ]
174
  );
175
 
176
- $this->add_control(
177
  'embedpress_elementor_document_align',
178
  [
179
  'label' => __( 'Alignment', 'embedpress' ),
@@ -192,7 +193,8 @@ class Embedpress_Document extends Widget_Base
192
  'icon' => 'eicon-text-align-right',
193
  ]
194
  ],
195
- 'default' => 'center',
 
196
  ]
197
  );
198
 
@@ -228,7 +230,7 @@ class Embedpress_Document extends Widget_Base
228
  'options' => [
229
  '1' => [
230
  'title' => '',
231
- 'icon' => 'fa fa-unlock-alt',
232
  ],
233
  ],
234
  'default' => '1',
@@ -260,7 +262,7 @@ class Embedpress_Document extends Widget_Base
260
  'class' => ['embedpress-document-embed', 'ep-doc-'.md5( $id), 'ose-document']
261
  ] );
262
  ?>
263
- <div <?php echo $this->get_render_attribute_string( 'embedpress-document' ); ?> style="<?php echo esc_attr( $dimension); ?>; max-width:100%;">
264
  <?php
265
  do_action( 'embedpress_document_after_embed', $settings, $url, $id, $this);
266
  ?>
145
  ],
146
  ],
147
  'selectors' => [
148
+ '{{WRAPPER}} .embedpress-document-embed iframe' => 'width: {{SIZE}}{{UNIT}} !important; max-width: 100%',
149
+ '{{WRAPPER}} .embedpress-document-embed .pdfobject-container' => 'width: {{SIZE}}{{UNIT}} !important; max-width: 100%',
150
  ],
151
  ]
152
  );
167
  ],
168
  ],
169
  'selectors' => [
170
+ '{{WRAPPER}}' => 'height: {{SIZE}}{{UNIT}};',
171
  '{{WRAPPER}} .embedpress-document-embed iframe' => 'height: {{SIZE}}{{UNIT}};',
172
  '{{WRAPPER}} .embedpress-document-embed .pdfobject-container' => 'height: {{SIZE}}{{UNIT}};',
173
  ],
174
  ]
175
  );
176
 
177
+ $this->add_responsive_control(
178
  'embedpress_elementor_document_align',
179
  [
180
  'label' => __( 'Alignment', 'embedpress' ),
193
  'icon' => 'eicon-text-align-right',
194
  ]
195
  ],
196
+ 'prefix_class' => 'elementor%s-align-',
197
+ 'default' => '',
198
  ]
199
  );
200
 
230
  'options' => [
231
  '1' => [
232
  'title' => '',
233
+ 'icon' => 'eicon-lock',
234
  ],
235
  ],
236
  'default' => '1',
262
  'class' => ['embedpress-document-embed', 'ep-doc-'.md5( $id), 'ose-document']
263
  ] );
264
  ?>
265
+ <div <?php echo $this->get_render_attribute_string( 'embedpress-document' ); ?> style="<?php echo esc_attr( $dimension); ?>; max-width:100%; display: inline-block">
266
  <?php
267
  do_action( 'embedpress_document_after_embed', $settings, $url, $id, $this);
268
  ?>
EmbedPress/Elementor/Widgets/Embedpress_Elementor.php CHANGED
@@ -8,11 +8,13 @@ use Elementor\Group_Control_Background;
8
  use \Elementor\Group_Control_Css_Filter;
9
  use Elementor\Group_Control_Image_Size;
10
  use \Elementor\Widget_Base as Widget_Base;
 
11
  use \EmbedPress\Shortcode;
12
 
13
  (defined( 'ABSPATH' )) or die( "No direct script access allowed." );
14
 
15
  class Embedpress_Elementor extends Widget_Base {
 
16
  protected $pro_class = '';
17
  protected $pro_text = '';
18
  public function get_name() {
@@ -174,7 +176,7 @@ class Embedpress_Elementor extends Widget_Base {
174
  'options' => [
175
  '1' => [
176
  'title' => '',
177
- 'icon' => 'fa fa-unlock-alt',
178
  ],
179
  ],
180
  'default' => '1',
@@ -262,7 +264,7 @@ class Embedpress_Elementor extends Widget_Base {
262
  'condition' => $yt_condition,
263
  ]
264
  );
265
- //--- Youtube Pro control starts ---
266
  $this->add_control(
267
  'embedpress_pro_youtube_progress_bar_color',
268
  [
@@ -323,7 +325,6 @@ class Embedpress_Elementor extends Widget_Base {
323
  );
324
  $this->init_branding_controls( 'youtube');
325
  }
326
-
327
  public function init_youtube_subscription_section() {
328
  $yt_condition = [
329
  'embedpress_pro_embeded_source' => 'youtube',
@@ -455,8 +456,9 @@ class Embedpress_Elementor extends Widget_Base {
455
 
456
  }
457
  public function init_dailymotion_control ( ){
 
458
  $this->add_control(
459
- 'embedpress_pro_dailymotion_logo',
460
  [
461
  'label' => sprintf(__( 'Logo %s', 'embedpress' ), $this->pro_text ),
462
  'type' => Controls_Manager::SWITCHER,
@@ -486,7 +488,6 @@ class Embedpress_Elementor extends Widget_Base {
486
  ]
487
  ]
488
  );
489
-
490
  $this->add_control(
491
  'embedpress_pro_dailymotion_play_on_mobile',
492
  [
@@ -503,7 +504,6 @@ class Embedpress_Elementor extends Widget_Base {
503
  ]
504
  ]
505
  );
506
-
507
  $this->add_control(
508
  'embedpress_pro_dailymotion_mute',
509
  [
@@ -519,7 +519,6 @@ class Embedpress_Elementor extends Widget_Base {
519
  ]
520
  ]
521
  );
522
-
523
  $this->add_control(
524
  'embedpress_pro_dailymotion_player_control',
525
  [
@@ -535,7 +534,6 @@ class Embedpress_Elementor extends Widget_Base {
535
  ]
536
  ]
537
  );
538
-
539
  $this->add_control(
540
  'embedpress_pro_dailymotion_video_info',
541
  [
@@ -551,9 +549,6 @@ class Embedpress_Elementor extends Widget_Base {
551
  ]
552
  ]
553
  );
554
-
555
-
556
-
557
  $this->add_control(
558
  'embedpress_pro_dailymotion_control_color',
559
  [
@@ -566,6 +561,8 @@ class Embedpress_Elementor extends Widget_Base {
566
  ]
567
  ]
568
  );
 
 
569
  }
570
  public function init_wistia_controls( ) {
571
  $this->add_control(
@@ -1196,184 +1193,6 @@ class Embedpress_Elementor extends Widget_Base {
1196
  ]
1197
  );
1198
  }
1199
- public function init_branding_controls( $provider_name='' ) {
1200
- $condition = [
1201
- 'embedpress_pro_embeded_source' => $provider_name,
1202
- ];
1203
- $logo_condition = [
1204
- 'embedpress_pro_embeded_source' => $provider_name,
1205
- "embedpress_pro_{$provider_name}_logo[url]!" =>''
1206
- ];
1207
- $this->add_control(
1208
- "{$provider_name}_custom_logo_cta_heading",
1209
- [
1210
- 'label' => __( 'Custom Logo & CTA', 'embedpress' ),
1211
- 'type' => Controls_Manager::HEADING,
1212
- 'separator' => 'before',
1213
- 'condition' => $condition,
1214
- ]
1215
- );
1216
- $this->add_control(
1217
- "embedpress_pro_{$provider_name}_logo",
1218
- [
1219
- 'label' => sprintf(__( 'Custom Logo %s', 'embedpress' ), $this->pro_text ),
1220
- 'description' => __( 'Leave it empty to hide it', 'embedpress' ),
1221
- 'type' => Controls_Manager::MEDIA,
1222
- 'dynamic' => [
1223
- 'active' => true,
1224
- ],
1225
- 'condition' => $condition,
1226
- 'classes' => $this->pro_class,
1227
- ]
1228
- );
1229
- $this->add_group_control(
1230
- Group_Control_Image_Size::get_type(),
1231
- [
1232
- 'name' => "embedpress_pro_{$provider_name}_logo",
1233
- 'default' => 'full',
1234
- 'condition' => $logo_condition,
1235
- 'classes' => $this->pro_class,
1236
- ]
1237
- );
1238
- $this->add_responsive_control(
1239
- "embedpress_pro_{$provider_name}_logo_xpos",
1240
- [
1241
- 'label' => __( 'Logo X Position', 'embedpress' ),
1242
- 'description' => __( 'Change this number to move your logo in horizontal direction.', 'embedpress' ),
1243
- 'type' => Controls_Manager::SLIDER,
1244
- 'size_units' => [ 'px', '%' ],
1245
- 'range' => [
1246
- 'px' => [
1247
- 'min' => 0,
1248
- 'max' => 1000,
1249
- 'step' => 5,
1250
- ],
1251
- '%' => [
1252
- 'min' => 0,
1253
- 'max' => 100,
1254
- ],
1255
- ],
1256
- 'default' => [
1257
- 'unit' => '%',
1258
- 'size' => 10,
1259
- ],
1260
- 'selectors' => [
1261
- "{{WRAPPER}} .ose-{$provider_name} .watermark" => 'right: {{SIZE}}{{UNIT}};',
1262
- ],
1263
- 'condition' => $logo_condition,
1264
- 'classes' => $this->pro_class,
1265
- ]
1266
- );
1267
- $this->add_responsive_control(
1268
- "embedpress_pro_{$provider_name}_logo_ypos",
1269
- [
1270
- 'label' => __( 'Logo Y Position (%)', 'embedpress' ),
1271
- 'description' => __( 'Change this number to move your logo in vertical direction.', 'embedpress' ),
1272
- 'type' => Controls_Manager::SLIDER,
1273
- 'size_units' => [ 'px', '%' ],
1274
- 'range' => [
1275
- 'px' => [
1276
- 'min' => 0,
1277
- 'max' => 1000,
1278
- 'step' => 5,
1279
- ],
1280
- '%' => [
1281
- 'min' => 0,
1282
- 'max' => 100,
1283
- ],
1284
- ],
1285
- 'default' => [
1286
- 'unit' => '%',
1287
- 'size' => 10,
1288
- ],
1289
- 'selectors' => [
1290
- "{{WRAPPER}} .ose-{$provider_name} .watermark" => 'bottom: {{SIZE}}{{UNIT}};',
1291
- ],
1292
- 'condition' => $logo_condition,
1293
- 'classes' => $this->pro_class,
1294
-
1295
- ]
1296
- );
1297
- $this->start_controls_tabs(
1298
- "ep_{$provider_name}_cta_style_tabs",
1299
- [
1300
- 'condition' => $logo_condition,
1301
- ]
1302
- );
1303
- $this->start_controls_tab( "ep_{$provider_name}_cta_normal_tab",
1304
- [
1305
- 'label' => __( 'Normal', 'embedpress' ),
1306
- ]
1307
- );
1308
- $this->add_control(
1309
- "embedpress_pro_{$provider_name}_logo_opacity",
1310
- [
1311
- 'label' => __( 'Logo Opacity', 'embedpress' ),
1312
- 'type' => Controls_Manager::SLIDER,
1313
- 'default' => [
1314
- 'size' => .5,
1315
- ],
1316
- 'range' => [
1317
- 'px' => [
1318
- 'max' => 1,
1319
- 'step' => 0.01,
1320
- ],
1321
- ],
1322
- 'selectors' => [
1323
- "{{WRAPPER}} .ose-{$provider_name} .watermark" => 'opacity: {{SIZE}};',
1324
- ],
1325
- 'condition' => $logo_condition,
1326
- 'classes' => $this->pro_class,
1327
-
1328
- ]
1329
- );
1330
- $this->end_controls_tab();
1331
- $this->start_controls_tab( "ep_{$provider_name}_cta_hover__tab",
1332
- [
1333
- 'label' => __( 'Hover', 'embedpress' ),
1334
- ]
1335
- );
1336
- $this->add_control(
1337
- "embedpress_pro_{$provider_name}_logo_opacity_hover",
1338
- [
1339
- 'label' => __( 'Logo Opacity', 'embedpress' ),
1340
- 'type' => Controls_Manager::SLIDER,
1341
- 'size_units' => [ '%'],
1342
- 'default' => [
1343
- 'size' => 1,
1344
- ],
1345
- 'range' => [
1346
- 'px' => [
1347
- 'max' => 1,
1348
- 'step' => 0.01,
1349
- ],
1350
- ],
1351
- 'selectors' => [
1352
- "{{WRAPPER}} .ose-{$provider_name} .watermark:hover" => 'opacity: {{SIZE}};',
1353
- ],
1354
- 'condition' => $logo_condition,
1355
- 'classes' => $this->pro_class,
1356
-
1357
- ]
1358
- );
1359
- $this->end_controls_tab();
1360
- $this->end_controls_tabs();
1361
- $this->add_control(
1362
- "embedpress_pro_{$provider_name}_cta",
1363
- [
1364
- 'label' => __( 'CTA link for Logo', 'embedpress' ),
1365
- 'description' => __( 'You can show the logo inside a link. Leave it empty to hide it', 'embedpress' ),
1366
- 'type' => Controls_Manager::URL,
1367
- 'dynamic' => [
1368
- 'active' => true,
1369
- ],
1370
- 'placeholder' => __( 'https://your-link.com', 'embedpress' ),
1371
- 'condition' => $logo_condition,
1372
- 'classes' => $this->pro_class,
1373
- 'separator' => 'before',
1374
- ]
1375
- );
1376
- }
1377
 
1378
  public function init_style_controls() {
1379
  $this->start_controls_section(
@@ -1463,6 +1282,29 @@ class Embedpress_Elementor extends Widget_Base {
1463
  ],
1464
  ]
1465
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1466
  $this->add_group_control(
1467
  Group_Control_Background::get_type(),
1468
  [
8
  use \Elementor\Group_Control_Css_Filter;
9
  use Elementor\Group_Control_Image_Size;
10
  use \Elementor\Widget_Base as Widget_Base;
11
+ use EmbedPress\Includes\Traits\Branding;
12
  use \EmbedPress\Shortcode;
13
 
14
  (defined( 'ABSPATH' )) or die( "No direct script access allowed." );
15
 
16
  class Embedpress_Elementor extends Widget_Base {
17
+ use Branding;
18
  protected $pro_class = '';
19
  protected $pro_text = '';
20
  public function get_name() {
176
  'options' => [
177
  '1' => [
178
  'title' => '',
179
+ 'icon' => 'eicon-lock',
180
  ],
181
  ],
182
  'default' => '1',
264
  'condition' => $yt_condition,
265
  ]
266
  );
267
+ //--- YouTube Pro control starts ---
268
  $this->add_control(
269
  'embedpress_pro_youtube_progress_bar_color',
270
  [
325
  );
326
  $this->init_branding_controls( 'youtube');
327
  }
 
328
  public function init_youtube_subscription_section() {
329
  $yt_condition = [
330
  'embedpress_pro_embeded_source' => 'youtube',
456
 
457
  }
458
  public function init_dailymotion_control ( ){
459
+ //@TODO; Kamal - migrate from 'embedpress_pro_dailymotion_logo' to 'embedpress_pro_dailymotion_ui_logo'
460
  $this->add_control(
461
+ 'embedpress_pro_dailymotion_ui_logo',
462
  [
463
  'label' => sprintf(__( 'Logo %s', 'embedpress' ), $this->pro_text ),
464
  'type' => Controls_Manager::SWITCHER,
488
  ]
489
  ]
490
  );
 
491
  $this->add_control(
492
  'embedpress_pro_dailymotion_play_on_mobile',
493
  [
504
  ]
505
  ]
506
  );
 
507
  $this->add_control(
508
  'embedpress_pro_dailymotion_mute',
509
  [
519
  ]
520
  ]
521
  );
 
522
  $this->add_control(
523
  'embedpress_pro_dailymotion_player_control',
524
  [
534
  ]
535
  ]
536
  );
 
537
  $this->add_control(
538
  'embedpress_pro_dailymotion_video_info',
539
  [
549
  ]
550
  ]
551
  );
 
 
 
552
  $this->add_control(
553
  'embedpress_pro_dailymotion_control_color',
554
  [
561
  ]
562
  ]
563
  );
564
+ $this->init_branding_controls( 'dailymotion');
565
+
566
  }
567
  public function init_wistia_controls( ) {
568
  $this->add_control(
1193
  ]
1194
  );
1195
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1196
 
1197
  public function init_style_controls() {
1198
  $this->start_controls_section(
1282
  ],
1283
  ]
1284
  );
1285
+ $this->add_responsive_control(
1286
+ 'align',
1287
+ [
1288
+ 'label' => esc_html__( 'Alignment', 'embedpress' ),
1289
+ 'type' => Controls_Manager::CHOOSE,
1290
+ 'options' => [
1291
+ 'left' => [
1292
+ 'title' => esc_html__( 'Left', 'embedpress' ),
1293
+ 'icon' => 'eicon-text-align-left',
1294
+ ],
1295
+ 'center' => [
1296
+ 'title' => esc_html__( 'Center', 'embedpress' ),
1297
+ 'icon' => 'eicon-text-align-center',
1298
+ ],
1299
+ 'right' => [
1300
+ 'title' => esc_html__( 'Right', 'embedpress' ),
1301
+ 'icon' => 'eicon-text-align-right',
1302
+ ],
1303
+ ],
1304
+ 'prefix_class' => 'elementor%s-align-',
1305
+ 'default' => '',
1306
+ ]
1307
+ );
1308
  $this->add_group_control(
1309
  Group_Control_Background::get_type(),
1310
  [
EmbedPress/Ends/Back/Settings/templates/custom-logo.php CHANGED
@@ -54,6 +54,7 @@ $vm_cta_url = isset( $vm_settings['cta_url']) ? esc_url( $vm_settings['cta_url']
54
  embedpress_print_branding_controls('vimeo', 'vm');
55
  embedpress_print_branding_controls('wistia', 'wis');
56
  embedpress_print_branding_controls('twitch', 'tw');
 
57
  embedpress_print_branding_controls('document', 'doc');
58
  do_action( 'embedpress_after_custom_branding_settings_fields'); ?>
59
  <button class="button button__themeColor radius-10 embedpress-submit-btn" name="submit" value="custom_logo"><?php esc_html_e( 'Save Changes', 'embedpress'); ?></button>
@@ -106,6 +107,15 @@ KAMAL;
106
  KAMAL;
107
 
108
  break;
 
 
 
 
 
 
 
 
 
109
  case 'document':
110
  $pdf_url = EMBEDPRESS_SETTINGS_ASSETS_URL . 'embedpress.pdf';
111
  ob_start(); ?>
54
  embedpress_print_branding_controls('vimeo', 'vm');
55
  embedpress_print_branding_controls('wistia', 'wis');
56
  embedpress_print_branding_controls('twitch', 'tw');
57
+ embedpress_print_branding_controls('dailymotion', 'dm');
58
  embedpress_print_branding_controls('document', 'doc');
59
  do_action( 'embedpress_after_custom_branding_settings_fields'); ?>
60
  <button class="button button__themeColor radius-10 embedpress-submit-btn" name="submit" value="custom_logo"><?php esc_html_e( 'Save Changes', 'embedpress'); ?></button>
107
  KAMAL;
108
 
109
  break;
110
+ case 'dailymotion':
111
+ $parent = wp_parse_url( site_url(), 1);
112
+ $preview_video = <<<KAMAL
113
+ <div class="embedpress_wrapper" style="width:90%; height:360px;">
114
+ <iframe title="Sample video" frameborder="0" width="640" height="400" src="https://www.dailymotion.com/embed/video/x7qvzya?ui-highlight=dd3333&amp;start=0&amp;mute=0&amp;autoplay=0&amp;controls=1&amp;ui-start-screen-info=1&amp;endscreen-enable=0&amp;ui-logo=1" allowfullscreen="" allow="autoplay" loading="lazy" style="max-width: 100%; max-height: 400px;"></iframe>
115
+ </div>
116
+ KAMAL;
117
+
118
+ break;
119
  case 'document':
120
  $pdf_url = EMBEDPRESS_SETTINGS_ASSETS_URL . 'embedpress.pdf';
121
  ob_start(); ?>
EmbedPress/Includes/Classes/Elementor_Enhancer.php CHANGED
@@ -258,7 +258,7 @@ class Elementor_Enhancer {
258
  if ( is_embedpress_pro_active() ) {
259
  $embedOptions->volumeControl = ( $setting['embedpress_pro_wistia_volume_control'] === 'yes' );
260
 
261
- $volume = (float) $setting['embedpress_pro_wistia_volume'];
262
  if ( $volume > 1 ) {
263
  $volume = $volume / 100;
264
  }
@@ -346,7 +346,7 @@ class Elementor_Enhancer {
346
  $attribs = [
347
  sprintf( 'id="wistia_%s"', $videoId ),
348
  sprintf( 'class="%s"', join( ' ', $class ) ),
349
- sprintf( 'style="width:%spx; height:%spx;"', $embed->width, $embed->height ),
350
  ];
351
 
352
  $labels = [
@@ -451,14 +451,16 @@ class Elementor_Enhancer {
451
  $params['playsinline'] = 1;
452
  }
453
  if ( is_embedpress_pro_active() ) {
454
- $params['ui-logo'] = $setting['embedpress_pro_dailymotion_logo'] === 'yes' ? 1 : 0;
455
  }
456
  $url_modified = $url_full;
457
  foreach ( $params as $param => $value ) {
458
  $url_modified = add_query_arg( $param, $value, $url_modified );
459
  }
460
  $embed->embed = str_replace( $url_full, $url_modified, $embed->embed );
461
-
 
 
462
  return $embed;
463
  }
464
 
258
  if ( is_embedpress_pro_active() ) {
259
  $embedOptions->volumeControl = ( $setting['embedpress_pro_wistia_volume_control'] === 'yes' );
260
 
261
+ $volume = isset($setting['embedpress_pro_wistia_volume']['size']) ? (float) $setting['embedpress_pro_wistia_volume']['size'] : 0;
262
  if ( $volume > 1 ) {
263
  $volume = $volume / 100;
264
  }
346
  $attribs = [
347
  sprintf( 'id="wistia_%s"', $videoId ),
348
  sprintf( 'class="%s"', join( ' ', $class ) ),
349
+ sprintf( 'style="width:%spx; height:%spx;"', $embed->attributes->{'data-width'}, $embed->attributes->{'data-width'} ),
350
  ];
351
 
352
  $labels = [
451
  $params['playsinline'] = 1;
452
  }
453
  if ( is_embedpress_pro_active() ) {
454
+ $params['ui-logo'] = isset( $setting['embedpress_pro_dailymotion_ui_logo']) && ($setting['embedpress_pro_dailymotion_ui_logo'] === 'yes') ? 1 : 0;
455
  }
456
  $url_modified = $url_full;
457
  foreach ( $params as $param => $value ) {
458
  $url_modified = add_query_arg( $param, $value, $url_modified );
459
  }
460
  $embed->embed = str_replace( $url_full, $url_modified, $embed->embed );
461
+ if ( is_embedpress_pro_active() ) {
462
+ return self::apply_cta_markup( $embed, $setting, 'dailymotion' );
463
+ }
464
  return $embed;
465
  }
466
 
EmbedPress/Includes/Traits/Branding.php CHANGED
@@ -20,12 +20,18 @@ Trait Branding {
20
  $logo_condition = [
21
  "embedpress_pro_{$provider_name}_logo[url]!" =>''
22
  ];
 
 
 
 
 
23
  $this->add_control(
24
  "{$provider_name}_custom_logo_cta_heading",
25
  [
26
- 'label' => __( 'Custom Logo & CTA', 'embedpress' ),
27
  'type' => Controls_Manager::HEADING,
28
  'separator' => 'before',
 
29
  ]
30
  );
31
  $this->add_control(
@@ -38,6 +44,7 @@ Trait Branding {
38
  'active' => true,
39
  ],
40
  'classes' => $this->pro_class,
 
41
  ]
42
  );
43
  $this->add_group_control(
20
  $logo_condition = [
21
  "embedpress_pro_{$provider_name}_logo[url]!" =>''
22
  ];
23
+ $condition = [];
24
+ if ( $provider_name !== 'document' ) {
25
+ $logo_condition["embedpress_pro_embeded_source"] = $provider_name;
26
+ $condition["embedpress_pro_embeded_source"] = $provider_name;
27
+ }
28
  $this->add_control(
29
  "{$provider_name}_custom_logo_cta_heading",
30
  [
31
+ 'label' => __( 'Custom Branding', 'embedpress' ),
32
  'type' => Controls_Manager::HEADING,
33
  'separator' => 'before',
34
+ 'condition' => $condition,
35
  ]
36
  );
37
  $this->add_control(
44
  'active' => true,
45
  ],
46
  'classes' => $this->pro_class,
47
+ 'condition' => $condition,
48
  ]
49
  );
50
  $this->add_group_control(
EmbedPress/Plugins/Plugin.php CHANGED
@@ -160,7 +160,7 @@ abstract class Plugin
160
 
161
  array_unshift($links, $settingsLink);
162
  if ( !is_embedpress_pro_active() ) {
163
- $links[] = '<a href="https://wpdeveloper.net/in/upgrade-embedpress" target="_blank" class="embedpress-go-pro-action">'.__('Go Pro', 'embedpress').'</a>';
164
  }
165
  return $links;
166
  }
160
 
161
  array_unshift($links, $settingsLink);
162
  if ( !is_embedpress_pro_active() ) {
163
+ $links[] = '<a href="https://wpdeveloper.net/in/upgrade-embedpress" target="_blank" class="embedpress-go-pro-action" style="color: green">'.__('Go Pro', 'embedpress').'</a>';
164
  }
165
  return $links;
166
  }
Gutenberg/dist/blocks.build.js CHANGED
@@ -1 +1 @@
1
- !function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=7)}([function(e,t,n){"use strict";n.d(t,"c",function(){return l}),n.d(t,"h",function(){return c}),n.d(t,"g",function(){return s}),n.d(t,"e",function(){return u}),n.d(t,"d",function(){return p}),n.d(t,"f",function(){return m}),n.d(t,"i",function(){return d}),n.d(t,"j",function(){return f}),n.d(t,"k",function(){return h}),n.d(t,"a",function(){return b}),n.d(t,"b",function(){return w});var r=wp.components,i=r.G,o=r.Path,a=(r.Polygon,r.SVG),l=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#2196F3"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(o,{style:{fill:"#BBDEFB"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(o,{style:{fill:"#1565C0"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 23 L 33 23 L 33 25 L 15 25 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 27 L 33 27 L 33 29 L 15 29 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 31 L 33 31 L 33 33 L 15 33 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 35 L 25 35 L 25 37 L 15 37 Z "}))),c=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",enableBackground:"new 0 0 24 24",id:"Layer_2",version:"1.1",viewBox:"0 0 24 24"},wp.element.createElement(i,null,wp.element.createElement(o,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14c1.1045704,0,2-0.8954296,2-2 V6z",style:{fill:"#FFC720"}}),wp.element.createElement(o,{d:"M17,6c-0.5444336,0-1.0367432-0.2190552-1.3973999-0.5719604L21,10.8254395V6H17z",style:{fill:"url(#SVGID_1_)"}}),wp.element.createElement(o,{d:"M19,23.75H5c-1.1045532,0-2-0.8954468-2-2V22c0,1.1045532,0.8954468,2,2,2h14c1.1045532,0,2-0.8954468,2-2 v-0.25C21,22.8545532,20.1045532,23.75,19,23.75z",style:{opacity:"0.1"}}),wp.element.createElement(o,{d:"M15,0v4c0,1.1045694,0.8954306,2,2,2h4L15,0z",style:{fill:"#FFE083"}}),wp.element.createElement(o,{d:"M17,5.75c-1.1045532,0-2-0.8954468-2-2V4c0,1.1045532,0.8954468,2,2,2h4l-0.25-0.25H17z",style:{opacity:"0.1"}}),wp.element.createElement(o,{d:"M15,0H5C3.8954468,0,3,0.8953857,3,2v0.25c0-1.1046143,0.8954468-2,2-2h10",style:{fill:"#FFFFFF",opacity:"0.2"}}),wp.element.createElement(o,{d:"M15.5,9h-7C7.6728516,9,7,9.6728516,7,10.5v6C7,17.3271484,7.6728516,18,8.5,18h7 c0.8271484,0,1.5-0.6728516,1.5-1.5v-6C17,9.6728516,16.3271484,9,15.5,9z M8,15.5V11h8v4.5H8z",style:{fill:"#FFFFFF"}}),wp.element.createElement(o,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14 c1.1045704,0,2-0.8954296,2-2V6z",style:{fill:"url(#SVGID_2_)"}}))),s=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#43A047"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(o,{style:{fill:"#C8E6C9"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(o,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 31 23 L 15 23 L 15 37 L 33 37 L 33 23 Z M 17 25 L 21 25 L 21 27 L 17 27 Z M 17 29 L 21 29 L 21 31 L 17 31 Z M 17 33 L 21 33 L 21 35 L 17 35 Z M 31 35 L 23 35 L 23 33 L 31 33 Z M 31 31 L 23 31 L 23 29 L 31 29 Z M 31 27 L 23 27 L 23 25 L 31 25 Z "}))),u=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#7850C1"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(o,{style:{fill:"#C2ABE1"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(o,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 19 23 L 33 23 L 33 25 L 19 25 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 19 28 L 33 28 L 33 30 L 19 30 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 19 33 L 33 33 L 33 35 L 19 35 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 15 23 L 17 23 L 17 25 L 15 25 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 15 28 L 17 28 L 17 30 L 15 30 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 15 33 L 17 33 L 17 35 L 15 35 Z "}))),p=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#DE5245"},d:"M37,45H11c-1.7,0-3-1.3-3-3V6c0-1.7,1.3-3,3-3h19l10,10v29C40,43.7,38.7,45,37,45z"}),wp.element.createElement(o,{style:{fill:"#EEA6A0"},d:"M40,13H30V3L40,13z"}),wp.element.createElement(o,{style:{fill:"#B3433A"},d:"M30,13l10,10V13H30z"}),wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M20.5,32c-3,0-5.5-2.5-5.5-5.5c0-3,2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5C26,29.5,23.5,32,20.5,32z M20.5,23c-1.9,0-3.5,1.6-3.5,3.5s1.6,3.5,3.5,3.5s3.5-1.6,3.5-3.5S22.4,23,20.5,23z"}),wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M27.6,29c-0.6,1.8-1.9,3.3-3.6,4.1V38h9v-9H27.6z"}))),m=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#1C9957"},d:"M 42 39 L 42 9 C 42 7.34375 40.65625 6 39 6 L 9 6 C 7.34375 6 6 7.34375 6 9 L 6 39 C 6 40.65625 7.34375 42 9 42 L 39 42 C 40.65625 42 42 40.65625 42 39 Z "}),wp.element.createElement(o,{style:{fill:"#3E7BF1"},d:"M 9 42 L 39 42 C 40.65625 42 24 26 24 26 C 24 26 7.34375 42 9 42 Z "}),wp.element.createElement(o,{style:{fill:"#CBCCC9"},d:"M 42 39 L 42 9 C 42 7.34375 26 24 26 24 C 26 24 42 40.65625 42 39 Z "}),wp.element.createElement(o,{style:{fill:"#EFEFEF"},d:"M 39 42 C 40.65625 42 42 40.65625 42 39 L 42 38.753906 L 26.246094 23 L 23 26.246094 L 38.753906 42 Z "}),wp.element.createElement(o,{style:{fill:"#FFD73D"},d:"M 42 9 C 42 7.34375 40.65625 6 39 6 L 38.753906 6 L 6 38.753906 L 6 39 C 6 40.65625 7.34375 42 9 42 L 9.246094 42 L 42 9.246094 Z "}),wp.element.createElement(o,{style:{fill:"#D73F35"},d:"M 36 2 C 30.476563 2 26 6.476563 26 12 C 26 18.8125 33.664063 21.296875 35.332031 31.851563 C 35.441406 32.53125 35.449219 33 36 33 C 36.550781 33 36.558594 32.53125 36.667969 31.851563 C 38.335938 21.296875 46 18.8125 46 12 C 46 6.476563 41.523438 2 36 2 Z "}),wp.element.createElement(o,{style:{fill:"#752622"},d:"M 39.5 12 C 39.5 13.933594 37.933594 15.5 36 15.5 C 34.066406 15.5 32.5 13.933594 32.5 12 C 32.5 10.066406 34.066406 8.5 36 8.5 C 37.933594 8.5 39.5 10.066406 39.5 12 Z "}),wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M 14.492188 12.53125 L 14.492188 14.632813 L 17.488281 14.632813 C 17.09375 15.90625 16.03125 16.816406 14.492188 16.816406 C 12.660156 16.816406 11.175781 15.332031 11.175781 13.5 C 11.175781 11.664063 12.660156 10.179688 14.492188 10.179688 C 15.316406 10.179688 16.070313 10.484375 16.648438 10.980469 L 18.195313 9.433594 C 17.21875 8.542969 15.921875 8 14.492188 8 C 11.453125 8 8.992188 10.464844 8.992188 13.5 C 8.992188 16.535156 11.453125 19 14.492188 19 C 19.304688 19 20.128906 14.683594 19.675781 12.539063 Z "}))),d=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M 12 32 L 12 8 L 39 8 L 39 26 L 33 32 L 24 32 L 18 38 L 18 32 Z "}),wp.element.createElement(o,{style:{fill:"#8E24AA"},d:"M 9 5 L 6 12.121094 L 6 38 L 15 38 L 15 43 L 20 43 L 25 38 L 32 38 L 42 28 L 42 5 Z M 38 26 L 33 31 L 24 31 L 19 36 L 19 31 L 13 31 L 13 9 L 38 9 Z "}),wp.element.createElement(o,{style:{fill:"#8E24AA"},d:"M 32 25 L 27 25 L 27 15 L 32 15 Z "}),wp.element.createElement(o,{style:{fill:"#8E24AA"},d:"M 24 25 L 19 25 L 19 15 L 24 15 Z "}))),f=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 769 598",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#148ee0"},d:"M766.89,229.17c0,0 -17.78,35.38 -106.5,91.3c-37.82,23.79 -116.36,49.1 -217.33,58.86c-54.52,5.29 -154.9,0.99 -197.96,0.99c-43.29,0 -63.13,9.12 -101.95,52.84c-143.15,161.36 -143.15,161.36 -143.15,161.36c0,0 49.57,0.24 87.01,0.24c37.43,0 271.55,13.59 375.43,-14.98c337.36,-92.72 304.46,-350.62 304.46,-350.62z"}),wp.element.createElement(o,{style:{fill:"#54bbff"},d:"M757.84,126.66c16.23,-98.97 -39.68,-126.16 -39.68,-126.16c0,0 2.36,80.57 -145.7,97.65c-131.42,15.16 -572.46,3.74 -572.46,3.74c0,0 0,0 141.74,162.54c38.39,44.06 58.76,49.17 101.92,52.22c43.16,2.89 138.42,1.86 202.99,-3.05c70.58,-5.41 171.17,-28.43 239.19,-81.11c34.88,-26.98 65.21,-64.48 72,-105.83z"}))),h=wp.element.createElement(a,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},wp.element.createElement(o,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"})),b=(wp.element.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 56 23"},wp.element.createElement("g",null,wp.element.createElement("g",null,wp.element.createElement("path",{style:{fill:"#DA2B28"},className:"st0",d:"M55.4,3.7c-0.2-0.9-0.6-1.6-1.3-2.2c-0.7-0.6-1.4-0.9-2.3-1c-2.7-0.3-6.8-0.4-12.3-0.4 c-5.5,0-9.6,0.1-12.3,0.4c-0.9,0.1-1.6,0.5-2.3,1c-0.7,0.6-1.1,1.3-1.3,2.2c-0.4,1.7-0.6,4.3-0.6,7.8c0,3.5,0.2,6.1,0.6,7.8 c0.2,0.9,0.6,1.6,1.3,2.2c0.7,0.6,1.4,0.9,2.3,1c2.7,0.3,6.8,0.5,12.3,0.5c5.5,0,9.6-0.2,12.3-0.5c0.9-0.1,1.6-0.4,2.3-1 c0.7-0.6,1.1-1.3,1.3-2.2c0.4-1.7,0.6-4.3,0.6-7.8C56,8,55.8,5.4,55.4,3.7L55.4,3.7z M32.5,6h-2.4v12.6h-2.2V6h-2.3V3.9h6.9V6z M38.5,18.6h-2v-1.2c-0.8,0.9-1.6,1.4-2.3,1.4c-0.7,0-1.1-0.3-1.3-0.8c-0.1-0.4-0.2-0.9-0.2-1.6V7.6h2v8.1c0,0.5,0,0.7,0,0.8 c0,0.3,0.2,0.5,0.5,0.5c0.4,0,0.8-0.3,1.3-0.9V7.6h2V18.6z M46.1,15.3c0,1.1-0.1,1.8-0.2,2.2c-0.3,0.8-0.8,1.2-1.6,1.2 c-0.7,0-1.4-0.4-2.1-1.2v1.1h-2V3.9h2v4.8c0.6-0.8,1.3-1.2,2.1-1.2c0.8,0,1.3,0.4,1.6,1.2c0.1,0.4,0.2,1.1,0.2,2.2V15.3z M53.5,13.5h-4v1.9c0,1,0.3,1.5,1,1.5c0.5,0,0.8-0.3,0.9-0.8c0-0.1,0-0.6,0-1.4h2v0.3c0,0.7,0,1.2,0,1.3c0,0.4-0.2,0.8-0.5,1.2 c-0.5,0.8-1.3,1.2-2.4,1.2c-1,0-1.8-0.4-2.4-1.1c-0.4-0.5-0.6-1.4-0.6-2.6v-3.8c0-1.2,0.2-2,0.6-2.6c0.6-0.8,1.4-1.1,2.4-1.1 c1,0,1.8,0.4,2.3,1.1c0.4,0.5,0.6,1.4,0.6,2.6V13.5z M53.5,13.5"}),wp.element.createElement("path",{className:"st0",d:"M43.2,9.3c-0.3,0-0.7,0.2-1,0.5v6.7c0.3,0.3,0.7,0.5,1,0.5c0.6,0,0.9-0.5,0.9-1.5v-4.7 C44.1,9.8,43.8,9.3,43.2,9.3L43.2,9.3z M43.2,9.3"}),wp.element.createElement("path",{className:"st0",d:"M50.6,9.3c-0.7,0-1,0.5-1,1.5v1h2v-1C51.6,9.8,51.2,9.3,50.6,9.3L50.6,9.3z M50.6,9.3"})),wp.element.createElement("g",null,wp.element.createElement("path",{d:"M2.8,12.8v6h2.2v-6L7.7,4H5.5L4,9.8L2.4,4H0.1c0.4,1.2,0.9,2.6,1.4,4.1C2.2,10.2,2.6,11.7,2.8,12.8L2.8,12.8z M2.8,12.8"}),wp.element.createElement("path",{d:"M10.7,19c1,0,1.8-0.4,2.3-1.1c0.4-0.5,0.6-1.4,0.6-2.6v-3.9c0-1.2-0.2-2-0.6-2.6c-0.5-0.8-1.3-1.1-2.3-1.1 c-1,0-1.8,0.4-2.3,1.1C8,9.3,7.8,10.2,7.8,11.4v3.9c0,1.2,0.2,2.1,0.6,2.6C8.9,18.6,9.7,19,10.7,19L10.7,19z M9.8,11 c0-1,0.3-1.5,1-1.5c0.6,0,1,0.5,1,1.5v4.7c0,1-0.3,1.6-1,1.6c-0.6,0-1-0.5-1-1.6V11z M9.8,11"}),wp.element.createElement("path",{d:"M16.8,19c0.7,0,1.5-0.5,2.3-1.4v1.2h2V7.8h-2v8.4c-0.4,0.6-0.9,1-1.3,1c-0.3,0-0.4-0.2-0.5-0.5c0,0,0-0.3,0-0.8V7.8h-2 v8.7c0,0.8,0.1,1.3,0.2,1.7C15.7,18.7,16.1,19,16.8,19L16.8,19z M16.8,19"})))),wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 276 340"},wp.element.createElement("path",{d:"M196.7.6H24.3C11.1.6.4 11.3.4 24.6v292.9c0 12.3 10 22.2 22.2 22.2H252c13.3 0 23.9-10.7 23.9-23.9V80.9L196.7.6z",fill:"#e94848"}),wp.element.createElement("path",{d:"M196.7 57c0 13.3 10.7 23.9 23.9 23.9H276L196.7.6V57z",fill:"#f19191"}),wp.element.createElement("linearGradient",{id:"A",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"77.111",x2:"116.568",y2:"77.111"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M113 84.5H48.3c-1.9 0-3.5-1.6-3.5-3.5v-7.7c0-1.9 1.6-3.5 3.5-3.5H113c1.9 0 3.5 1.6 3.5 3.5V81c.1 1.9-1.5 3.5-3.5 3.5z",fill:"url(#A)"}),wp.element.createElement("linearGradient",{id:"B",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.016",x2:"233.927",y2:"136.016"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",opacity:".8",fill:"url(#B)"}),wp.element.createElement("linearGradient",{id:"C",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.993",x2:"233.927",y2:"135.993"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"33.6",opacity:".7",fill:"url(#C)"}),wp.element.createElement("linearGradient",{id:"D",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.969",x2:"233.927",y2:"135.969"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"67.2",opacity:".6",fill:"url(#D)"}),wp.element.createElement("linearGradient",{id:"E",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.045",x2:"233.927",y2:"136.045"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"100.7",opacity:".4",fill:"url(#E)"}),wp.element.createElement("linearGradient",{id:"F",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"270.322",x2:"174.778",y2:"270.322"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M171.9 277.7H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9h124.3c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z",opacity:".3",fill:"url(#F)"}),wp.element.createElement("defs",null,wp.element.createElement("path",{id:"H",d:"M231 143.4H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9H231c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z"})))),w=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270",role:"img",focusable:"false"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"})))},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.components.Spinner,i=function(){return wp.element.createElement("div",{className:"wp-block-embed is-loading"},wp.element.createElement(r,null),wp.element.createElement("p",null,__("Embedding\u2026")))};t.a=i},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.element.Fragment,i=wp.components,o=i.IconButton,a=i.Toolbar,l=wp.blockEditor.BlockControls,c=function(e){var t=e.showEditButton,n=e.switchBackToURLInput;return wp.element.createElement(r,null,wp.element.createElement(l,null,wp.element.createElement(a,null,t&&wp.element.createElement(o,{className:"components-toolbar__control",label:__("Edit URL"),icon:"edit",onClick:n}))))};t.a=c},function(e,t,n){"use strict";var r=n(12),i=n.n(r),o=wp.i18n,__=o.__,_x=o._x,a=wp.components,l=a.Button,c=a.Placeholder,s=a.ExternalLink,u=wp.blockEditor.BlockIcon,p=function(e){var t=e.icon,n=e.label,r=e.value,o=e.onSubmit,a=e.onChange,p=e.cannotEmbed,m=e.docLink,d=e.DocTitle,f=i()("wp-block-embed",{});return wp.element.createElement("div",null,wp.element.createElement(c,{icon:wp.element.createElement(u,{icon:t,showColors:!0}),label:n,className:f},wp.element.createElement("form",{onSubmit:o},wp.element.createElement("input",{type:"url",value:r||"",className:"components-placeholder__input","aria-label":n,placeholder:__("Enter URL to embed here\u2026"),onChange:a}),wp.element.createElement(l,{isSmall:!0,type:"submit"},_x("Embed","button label")),p&&wp.element.createElement("p",{className:"components-placeholder__error"},__("Sorry, we could not embed that content."),wp.element.createElement("br",null))),m&&wp.element.createElement("div",{className:"components-placeholder__learn-more"},wp.element.createElement(s,{href:m},d))))};t.a=p},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(5),l=n.n(a),c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=wp.element.Component,p=function(e){function t(e){r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return o(t,e),s(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("iframe",c({ref:this.myRef},this.props))}}]),t}(u);t.a=p},function(e,t){e.exports=ReactDOM},function(e,t,n){"use strict";function r(e){var t=embedpressObj.document_cta,n="",r="";if(embedpressObj.embedpress_pro&&t&&t.logo_url){console.dir(t);var o=t.cta_url?t.cta_url:null,a=t.logo_xpos?t.logo_xpos+"%":"10%",l=t.logo_ypos?t.logo_ypos+"%":"10%",c=t.logo_opacity?t.logo_opacity/100:"10%",s=".ep-doc-"+e.id;return n="\n "+s+"{\n text-align: left;\n position: relative;\n }\n "+s+" .watermark {\n \t\tdisplay:inline-block;\n border: 0;\n position: absolute;\n bottom: "+l+";\n right: "+a+";\n max-width: 150px;\n max-height: 75px;\n opacity: "+c+";\n z-index: 5;\n -o-transition: opacity 0.5s ease-in-out;\n -moz-transition: opacity 0.5s ease-in-out;\n -webkit-transition: opacity 0.5s ease-in-out;\n transition: opacity 0.5s ease-in-out;\n }\n "+s+" .watermark:hover {\n\t\t\t\t\t opacity: 1;\n\t\t\t\t }\n\t\t",o&&""!==o&&(r+="<a href="+o+">"),r+='<img class="watermark" alt="" src="'+t.logo_url+'"/>',o&&""!==o&&(r+="</a>"),wp.element.createElement(i,null,wp.element.createElement("style",{dangerouslySetInnerHTML:{__html:n}}),wp.element.createElement("div",{dangerouslySetInnerHTML:{__html:r}}))}return""}var i=wp.element.Fragment;t.a=r},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});n(8),n(13),n(17),n(21),n(25),n(29),n(33),n(37),n(41),n(45),n(49);!function(){var e=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"})));wp.blocks.updateCategory("embedpress",{icon:e})}()},function(e,t,n){"use strict";var r=n(9),i=(n.n(r),n(10)),o=(n.n(i),n(11)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-docs-block"]&&l("embedpress/google-docs-block",{title:__("Google Docs"),icon:a.c,category:"embedpress",keywords:[__("embedpress"),__("google"),__("docs")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("figure",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element.Component,d=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.updateAlignment=e.updateAlignment.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"updateAlignment",value:function(e){var t=this.props.setAttributes,n=-1!==["wide","full"].indexOf(e)?{width:void 0,height:void 0}:{};t(Object.assign({},n,{align:e}))}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"document"===a?(r.match(/([?&])embedded=true/i)||(r.indexOf("?")>-1?r+="&embedded=true":r+="?embedded=true"),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Docs URL");return!m||r?wp.element.createElement("div",null,wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.c,DocTitle:__("Learn more about Google doc embed"),docLink:"https://embedpress.com/docs/embed-google-docs-wordpress/"})):wp.element.createElement("div",null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onMouseUp:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameBorder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(m);t.a=d},function(e,t,n){var r,i;!function(){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)){if(r.length){var a=n.apply(null,r);a&&e.push(a)}}else if("object"===i)if(r.toString===Object.prototype.toString)for(var l in r)o.call(r,l)&&r[l]&&e.push(l);else e.push(r.toString())}}return e.join(" ")}var o={}.hasOwnProperty;"undefined"!==typeof e&&e.exports?(n.default=n,e.exports=n):(r=[],void 0!==(i=function(){return n}.apply(t,r))&&(e.exports=i))}()},function(e,t,n){"use strict";var r=n(14),i=(n.n(r),n(15)),o=(n.n(i),n(16)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-slides-block"]&&l("embedpress/google-slides-block",{title:__("Google Slides"),icon:a.h,category:"embedpress",keywords:[__("embedpress"),__("google"),__("slides")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-presentation"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"presentation"==a?(r.match(/pub\?/i)&&(r=r.replace("/pub?","/embed?")),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Slides URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.h,DocTitle:__("Learn more about Google slides embed"),docLink:"https://embedpress.com/docs/embed-google-slides-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(18),i=(n.n(r),n(19)),o=(n.n(i),n(20)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-sheets-block"]&&l("embedpress/google-sheets-block",{title:__("Google Sheets"),icon:a.g,category:"embedpress",keywords:[__("embedpress"),__("google"),__("sheets")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];if(a&&"spreadsheets"==a){if(r.indexOf("?")>-1){var l=r.split("?");if(l=l[1],l=l.split("&"),console.log(l),l.length>0){var c=!1,s=!1;l.map(function(e){e.indexOf("widget=")?s=!0:e.indexOf("headers=")&&(c=!0)}),s||(r+="&widget=true"),c||(r+="&headers=false")}}else r+="?widget=true&headers=false";this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Sheets URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.g,DocTitle:__("Learn more about Google sheet embed"),docLink:"https://embedpress.com/docs/embed-google-sheets-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(22),i=(n.n(r),n(23)),o=(n.n(i),n(24)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-forms-block"]&&l("embedpress/google-forms-block",{title:__("Google Forms"),icon:a.e,category:"embedpress",keywords:[__("embedpress"),__("google"),__("forms")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-forms"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=(wp.components.Disabled,function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"forms"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Forms URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.e,DocTitle:__("Learn more about Google forms embed"),docLink:"https://embedpress.com/docs/embed-google-forms-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d));t.a=h},function(e,t,n){"use strict";var r=n(26),i=(n.n(r),n(27)),o=(n.n(i),n(28)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-drawings-block"]&&l("embedpress/google-drawings-block",{title:__("Google Drawings"),icon:a.d,category:"embedpress",keywords:[__("embedpress"),__("google"),__("drawings")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-drawings"},wp.element.createElement("img",{src:t,width:"960",height:"720"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,p=wp.element,m=p.Component,d=p.Fragment,f=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1},e}return o(t,e),u(t,[{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"drawings"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,u=this.props.attributes.iframeSrc,p=__("Google Drawings URL (Get your link from File -> Publish to the web -> Link)");return!u||r?wp.element.createElement(c.a,{label:p,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:s.d,DocTitle:__("Learn more about Google drawing embed"),docLink:"https://embedpress.com/docs/embed-google-drawings-wordpress/"}):wp.element.createElement(d,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement("img",{src:u,onLoad:this.onLoad,style:{display:i?"none":""},width:"960",height:"720"}),wp.element.createElement(a.a,{showEditButton:u&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}]),t}(m);t.a=f},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=n(30),o=(n.n(i),n(31)),a=(n.n(o),n(32)),l=n(0),__=wp.i18n.__,c=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-maps-block"]&&c("embedpress/google-maps-block",{title:__("Google Maps"),icon:l.f,category:"embedpress",keywords:[__("embedpress"),__("google"),__("maps")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:a.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-maps"},wp.element.createElement("iframe",r({src:t,frameborder:"0",width:"600",height:"450"},"frameborder","0")))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/(?:(?:(?:www\.|maps\.)?(?:google\.com?))|(?:goo\.gl))(?:\.[a-z]{2})?\/(?:maps\/)?(?:place\/)?(?:[a-z0-9\/%+\-_]*)?([a-z0-9\/%,+\-_=!:@\.&*\$#?\']*)/i)){var r=this.decodeHTMLEntities(t);if(t.match("~(maps/embed|output=embed)~i"));else{var i=/@(-?[0-9\.]+,-?[0-9\.]+).+,([0-9\.]+[a-z])/i,o=i.exec(r);o&&o.length>1&&o[1]&&o[2]?r="https://maps.google.com/maps?hl=en&ie=UTF8&ll="+o[1]+"&spn="+o[1]+"&t=m&z="+Math.round(parseInt(o[2]))+"&output=embed":this.setState({cannotEmbed:!0,editingURL:!0})}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Maps URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.f,DocTitle:__("Learn more about Google map embed"),docLink:"https://embedpress.com/docs/embed-google-maps-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(34),i=(n.n(r),n(35)),o=(n.n(i),n(36)),a=n(0),l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},__=wp.i18n.__,c=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["twitch-block"]&&c("embedpress/twitch-block",{title:__("Twitch"),icon:a.i,category:"embedpress",keywords:[__("embedpress"),__("twitch")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""},attrs:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes,n=t.iframeSrc,r=t.attrs,i=n+"&parent="+embedpressObj.twitch_host;return wp.element.createElement("figure",{className:"ose-twitch-presentation"},wp.element.createElement("iframe",l({src:i},r,{frameborder:"0",width:"600",height:"450"})))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=/http[s]?:\/\/(?:www\.|clips\.)twitch\.tv\/([0-9a-zA-Z\-\_]+)\/?(chat\/?$|[0-9a-z\-\_]*)?/;if(t&&t.match(r)){var i=this.decodeHTMLEntities(t),o=r.exec(i),a=o[1];console.log(a);var l,c="channel";switch(t.indexOf("clips.twitch.tv")>-1?c="clip":t.indexOf("/videos/")>-1?c="video":t.indexOf("#/chat$#")>-1&&(c="chat"),console.log(c),c){case"channel":i="https://player.twitch.tv/?channel="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"clip":i="https://clips.twitch.tv/embed?clip="+a+"&autoplay=false",l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"video":a=o[2],i="https://player.twitch.tv/?video="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"chat":i="http://www.twitch.tv/embed/"+a+"/chat",l={scrolling:"yes",frameborder:"0",allowfullscreen:"true",id:"'"+a+"'"}}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:i,attrs:l})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("Twitch URL");if(!f||r)return wp.element.createElement(c.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.i,DocTitle:__("Learn more about twitch embed"),docLink:"https://embedpress.com/docs/embed-twitch-streams-chat/"});var y=f+"&parent="+embedpressObj.twitch_host;return wp.element.createElement(h,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,p({src:y},b,{onLoad:this.onLoad,style:{display:i?"none":""},onFocus:this.hideOverlay,width:"600",height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(38),i=(n.n(r),n(39)),o=(n.n(i),n(40)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["wistia-block"]&&l("embedpress/wistia-block",{title:__("Wistia"),icon:a.j,category:"embedpress",keywords:[__("embedpress"),__("wistia")],supports:{align:["wide","full","right","left"],default:""},edit:o.a,save:function(e){return null},deprecated:[{attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("div",{class:"ose-wistia"},wp.element.createElement("iframe",{src:t,allowtransparency:"true",frameborder:"0",class:"wistia_embed",name:"wistia_embed",width:"600",height:"330"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1,mediaId:null},e.setUrl(),e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentDidMount",value:function(){if(this.props.attributes.url){var e=this.props.attributes.url.match(/medias\/(.*)/),t=e[1];this.setState(Object.assign({},this.state,{mediaId:t}))}}},{key:"onLoad",value:function(){if(this.setState({fetching:!1}),embedpressObj.wisita_options){var e=Object.assign({},this.state);setTimeout(function(){var e=document.createElement("script");e.src="https://fast.wistia.com/assets/external/E-v1.js",e.charset="ISO-8859-1",document.body.appendChild(e)},100),setTimeout(function(){var t=document.createElement("script");t.type="text/javascript",t.innerHTML="window.pp_embed_wistia_labels = "+embedpressObj.wistia_labels,document.body.appendChild(t),t=document.createElement("script"),t.type="text/javascript",t.innerHTML='wistiaEmbed = Wistia.embed( "'+e.mediaId+'", '+embedpressObj.wisita_options+" );",document.body.appendChild(t)},400)}}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&(t.match(/^http[s]?:\/\/(?:www\.)?wistia\.com\/medias/i)||t.match(/^http[s]?:\/\/(?:www\.)?fast\/.wistia\.com\/embed\/medias/i.jsonp))){var r=t.match(/medias\/(.*)/),i=r[1],o="//fast.wistia.net/embed/iframe/"+i;this.setState({editingURL:!1,cannotEmbed:!1,mediaId:i}),n({iframeSrc:o})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Wistia URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.j,DocTitle:__("Learn more about Wistia embed"),docLink:"https://embedpress.com/docs/embed-wistia-videos-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement("div",{className:"ose-wistia",id:"wistia_"+this.state.mediaId},wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"330"})),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(42),i=(n.n(r),n(43)),o=(n.n(i),n(44)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["youtube-block"]&&l("embedpress/youtube-block",{title:__("YouTube"),icon:a.k,category:"embedpress",keywords:[__("embedpress"),__("youtube")],supports:{align:["wide","full","right","left"],default:""},edit:o.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentWillMount",value:function(){this.state.url&&this.setUrl()}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=t.match(/^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/);if(t&&r){var i=r[1],o="https://www.youtube.com/embed/"+i,a=new URL(o);if("undefined"!==typeof embedpressProObj)for(var l in embedpressProObj.youtubeParams)a.searchParams.set(l,embedpressProObj.youtubeParams[l]);this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:a.href,mediaId:i})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("YouTube URL");return!f||r?wp.element.createElement(c.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.k,DocTitle:__("Learn More About YouTube Embed"),docLink:"https://embedpress.com/docs/embed-youtube-wordpress/"}):wp.element.createElement(h,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,p({src:f},b,{onLoad:this.onLoad,style:{display:i?"none":""},width:"640",onFocus:this.hideOverlay,height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(46),i=(n.n(r),n(47)),o=(n.n(i),n(48)),a=n(0),l=n(6),__=wp.i18n.__,c=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.document&&c("embedpress/document",{title:__("Document"),icon:a.a,category:"embedpress",keywords:[__("embedpress"),__("pdf"),__("doc"),__("ppt")],supports:{align:["wide","full","right","left"],default:""},attributes:{id:{type:"string"},href:{type:"string"},powered_by:{type:"boolean",default:!0},width:{type:"number",default:600},height:{type:"number",default:600},fileName:{type:"string"},mime:{type:"string"}},edit:o.a,save:function(e){var t=e.attributes,n=t.href,r=t.mime,i=t.id,o=t.width,a=t.height,c=t.powered_by,s="//view.officeapps.live.com/op/embed.aspx?src="+n;return wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+i,style:{height:a,width:o}},"application/pdf"===r&&wp.element.createElement("div",{style:{height:a,width:o},className:"embedpress-embed-document-pdf "+i,"data-emid":i,"data-emsrc":n}),"application/pdf"!==r&&wp.element.createElement("iframe",{style:{height:a,width:o},src:s,mozallowfullscreen:"true",webkitallowfullscreen:"true"}),c&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),embedpressObj.embedpress_pro&&wp.element.createElement(l.a,{id:i}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(4),l=n(6),c=n(1),s=n(0),u=function(){function e(e,t){var n=[],_n=!0,r=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(_n=(o=a.next()).done)&&(n.push(o.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,i=e}finally{try{!_n&&a.return&&a.return()}finally{if(r)throw i}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.blob,d=m.getBlobByURL,f=m.isBlobURL,h=m.revokeBlobURL,b=wp.blockEditor,w=b.BlockIcon,y=b.MediaPlaceholder,v=b.InspectorControls,g=wp.element,E=g.Component,L=g.Fragment,k=wp.components,_=k.RangeControl,O=k.PanelBody,S=k.ExternalLink,U=k.ToggleControl,j=["application/pdf","application/msword","application/vnd.ms-powerpoint","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","application/vnd.openxmlformats-officedocument.presentationml.presentation"],R=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.onSelectFile=e.onSelectFile.bind(e),e.onUploadError=e.onUploadError.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={hasError:!1,fetching:!1,interactive:!1,loadPdf:!0},e}return o(t,e),p(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props,n=t.attributes,r=t.mediaUpload,i=t.noticeOperations,o=n.href;if(f(o)){r({filesList:[d(o)],onFileChange:function(t){var n=u(t,1),r=n[0];return e.onSelectFile(r)},onError:function(t){e.setState({hasError:!0}),i.createErrorNotice(t)}}),h(o)}this.props.attributes.href&&"application/pdf"===this.props.attributes.mime&&this.state.loadPdf&&(this.setState({loadPdf:!1}),PDFObject.embed(this.props.attributes.href,"."+this.props.attributes.id))}},{key:"componentDidUpdate",value:function(e){e.isSelected&&!this.props.isSelected&&this.setState({showCopyConfirmation:!1})}},{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"onSelectFile",value:function(e){e&&e.url&&(this.setState({hasError:!1}),this.props.setAttributes({href:e.url,fileName:e.title,id:"embedpress-pdf-"+Date.now(),mime:e.mime}),embedpressObj.embedpress_pro&&this.props.setAttributes({powered_by:!1}),"application/pdf"===e.mime&&(this.setState({loadPdf:!1}),PDFObject.embed(e.url,"."+this.props.attributes.id)))}},{key:"onUploadError",value:function(e){var t=this.props.noticeOperations;t.removeAllNotices(),t.createErrorNotice(e)}},{key:"render",value:function(){var e=this.props,t=e.attributes,n=e.noticeUI,r=e.setAttributes,i=t.href,o=t.mime,u=t.id,p=t.width,m=t.height,d=t.powered_by,f=this.state,h=f.hasError,b=f.interactive,g=f.fetching,E=f.loadPdf;if(!i||h)return wp.element.createElement("div",{className:"embedpress-document-editmode"},wp.element.createElement(y,{icon:wp.element.createElement(w,{icon:s.a}),labels:{title:__("Document"),instructions:__("Upload a file or pick one from your media library for embed.")},onSelect:this.onSelectFile,notices:n,allowedTypes:j,onError:this.onUploadError},wp.element.createElement("div",{style:{width:"100%"},className:"components-placeholder__learn-more embedpress-doc-link"},wp.element.createElement(S,{href:"https://embedpress.com/docs/embed-docuemnt/"},"Learn more about Embedded document "))));var k="//view.officeapps.live.com/op/embed.aspx?src="+i;return wp.element.createElement(L,null,g&&"application/pdf"!==o?wp.element.createElement(c.a,null):null,wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+u,style:{height:m,width:p}},"application/pdf"===o&&wp.element.createElement("div",{style:{height:m,width:p},className:"embedpress-embed-document-pdf "+u,"data-emid":u,"data-emsrc":i}),"application/pdf"!==o&&wp.element.createElement(a.a,{onMouseUponMouseUp:this.hideOverlay,style:{height:m,width:p,display:g||!E?"none":""},onLoad:this.onLoad,src:k}),!b&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),d&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),!g&&wp.element.createElement(l.a,{id:u})),wp.element.createElement(v,{key:"inspector"},wp.element.createElement(O,{title:__("Embed Size","embedpress")},wp.element.createElement(_,{label:__("Width","embedpress"),value:p,onChange:function(e){return r({width:e})},max:1e3,min:1}),wp.element.createElement(_,{label:__("Height","embedpress"),value:m,onChange:function(e){return r({height:e})},max:1e3,min:1}),wp.element.createElement(U,{label:__("Powered By"),onChange:function(e){return r({powered_by:e})},checked:d}))))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(E);t.a=R},function(e,t,n){"use strict";var r=n(50),i=(n.n(r),n(51)),o=(n.n(i),n(52)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.embedpress&&l("embedpress/embedpress",{title:__("EmbedPress"),icon:a.b,category:"embedpress",keywords:["embedpress","embed","google","youtube","docs"],supports:{align:["right","left","center"],default:"center",lightBlockWrapper:!0},attributes:{url:{type:"string",default:""},embedHTML:{type:"string",default:""},height:{type:"string",default:"450"},width:{type:"string",default:"600"},editingURL:{type:"boolean",default:!1},fetching:{type:"boolean",default:!1},cannotEmbed:{type:"boolean",default:!1},interactive:{type:"boolean",default:!1},align:{type:"string",default:"center"}},edit:o.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e){return function(){var t=e.apply(this,arguments);return new Promise(function(e,n){function r(i,o){try{var a=t[i](o),l=a.value}catch(e){return void n(e)}if(!a.done)return Promise.resolve(l).then(function(e){r("next",e)},function(e){r("throw",e)});e(l)}return r("next")})}}function i(e){function t(){m({editingURL:!0})}function n(e){var t=this;if(e&&e.preventDefault(),h){m({fetching:!0});(function(){var e=r(a.a.mark(function e(n){return a.a.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(embedpressObj.site_url+"/wp-json/embedpress/v1/oembed/embedpress?url="+n+"&width="+_+"&height="+k).then(function(e){return e.json()});case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}},e,t)}));return function(_x){return e.apply(this,arguments)}})()(h).then(function(e){m({fetching:!1}),m(e.data&&404===e.data.status||!e.embed?{cannotEmbed:!0,editingURL:!0}:{embedHTML:e.embed,cannotEmbed:!1,editingURL:!1})})}else m({cannotEmbed:!0,fetching:!1,editingURL:!0})}var i=e.attributes,o=e.className,m=e.setAttributes,h=i.url,v=i.editingURL,g=i.fetching,E=i.cannotEmbed,L=(i.interactive,i.embedHTML),k=i.height,_=i.width,O=w?w():[];return wp.element.createElement(y,null,wp.element.createElement(b,null,wp.element.createElement(f,{title:__("Customize Embedded Link")},wp.element.createElement("p",null,__("You can adjust the width and height of embedded content.")),wp.element.createElement(d,{label:__("Width"),value:_,onChange:function(e){return m({width:e})}}),wp.element.createElement(d,{label:__("Height"),value:k,onChange:function(e){return m({height:e})}}),L&&!v&&wp.element.createElement("button",{onClick:n},__("Apply")))),(!L||v)&&!g&&wp.element.createElement("div",O,wp.element.createElement(s.a,{label:__("EmbedPress - Embed anything from 100+ sites"),onSubmit:n,value:h,cannotEmbed:E,onChange:function(e){return m({url:e.target.value})},icon:p.b,DocTitle:__("Learn more about EmbedPress"),docLink:"https://embedpress.com/docs/"})),g?wp.element.createElement("div",{className:o},wp.element.createElement(c.a,null)," "):null,L&&!v&&!g&&wp.element.createElement("figure",O,wp.element.createElement(u.a,{style:{display:g?"none":""},dangerouslySetInnerHTML:{__html:L}}),wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:m({interactive:!0})}),wp.element.createElement(l.a,{showEditButton:L&&!E,switchBackToURLInput:t})))}t.a=i;var o=n(53),a=n.n(o),l=n(2),c=n(1),s=n(3),u=n(56),p=n(0),__=wp.i18n.__,m=wp.components,d=m.TextControl,f=m.PanelBody,h=wp.blockEditor,b=h.InspectorControls,w=h.useBlockProps,y=wp.element.Fragment},function(e,t,n){e.exports=n(54)},function(e,t,n){var r=function(){return this}()||Function("return this")(),i=r.regeneratorRuntime&&Object.getOwnPropertyNames(r).indexOf("regeneratorRuntime")>=0,o=i&&r.regeneratorRuntime;if(r.regeneratorRuntime=void 0,e.exports=n(55),i)r.regeneratorRuntime=o;else try{delete r.regeneratorRuntime}catch(e){r.regeneratorRuntime=void 0}},function(e,t){!function(t){"use strict";function n(e,t,n,r){var o=t&&t.prototype instanceof i?t:i,a=Object.create(o.prototype),l=new d(r||[]);return a._invoke=s(e,n,l),a}function r(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}function i(){}function o(){}function a(){}function l(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function c(e){function t(n,i,o,a){var l=r(e[n],e,i);if("throw"!==l.type){var c=l.arg,s=c.value;return s&&"object"===typeof s&&y.call(s,"__await")?Promise.resolve(s.__await).then(function(e){t("next",e,o,a)},function(e){t("throw",e,o,a)}):Promise.resolve(s).then(function(e){c.value=e,o(c)},a)}a(l.arg)}function n(e,n){function r(){return new Promise(function(r,i){t(e,n,r,i)})}return i=i?i.then(r,r):r()}var i;this._invoke=n}function s(e,t,n){var i=O;return function(o,a){if(i===U)throw new Error("Generator is already running");if(i===j){if("throw"===o)throw a;return h()}for(n.method=o,n.arg=a;;){var l=n.delegate;if(l){var c=u(l,n);if(c){if(c===R)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===O)throw i=j,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=U;var s=r(e,t,n);if("normal"===s.type){if(i=n.done?j:S,s.arg===R)continue;return{value:s.arg,done:n.done}}"throw"===s.type&&(i=j,n.method="throw",n.arg=s.arg)}}}function u(e,t){var n=e.iterator[t.method];if(n===b){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=b,u(e,t),"throw"===t.method))return R;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return R}var i=r(n,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,R;var o=i.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=b),t.delegate=null,R):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,R)}function p(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function m(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function d(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(p,this),this.reset(!0)}function f(e){if(e){var t=e[g];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var n=-1,r=function t(){for(;++n<e.length;)if(y.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=b,t.done=!0,t};return r.next=r}}return{next:h}}function h(){return{value:b,done:!0}}var b,w=Object.prototype,y=w.hasOwnProperty,v="function"===typeof Symbol?Symbol:{},g=v.iterator||"@@iterator",E=v.asyncIterator||"@@asyncIterator",L=v.toStringTag||"@@toStringTag",k="object"===typeof e,_=t.regeneratorRuntime;if(_)return void(k&&(e.exports=_));_=t.regeneratorRuntime=k?e.exports:{},_.wrap=n;var O="suspendedStart",S="suspendedYield",U="executing",j="completed",R={},C={};C[g]=function(){return this};var x=Object.getPrototypeOf,T=x&&x(x(f([])));T&&T!==w&&y.call(T,g)&&(C=T);var M=a.prototype=i.prototype=Object.create(C);o.prototype=M.constructor=a,a.constructor=o,a[L]=o.displayName="GeneratorFunction",_.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===o||"GeneratorFunction"===(t.displayName||t.name))},_.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,a):(e.__proto__=a,L in e||(e[L]="GeneratorFunction")),e.prototype=Object.create(M),e},_.awrap=function(e){return{__await:e}},l(c.prototype),c.prototype[E]=function(){return this},_.AsyncIterator=c,_.async=function(e,t,r,i){var o=new c(n(e,t,r,i));return _.isGeneratorFunction(t)?o:o.next().then(function(e){return e.done?e.value:o.next()})},l(M),M[L]="Generator",M[g]=function(){return this},M.toString=function(){return"[object Generator]"},_.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},_.values=f,d.prototype={constructor:d,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=b,this.done=!1,this.delegate=null,this.method="next",this.arg=b,this.tryEntries.forEach(m),!e)for(var t in this)"t"===t.charAt(0)&&y.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=b)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){function t(t,r){return o.type="throw",o.arg=e,n.next=t,r&&(n.method="next",n.arg=b),!!r}if(this.done)throw e;for(var n=this,r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r],o=i.completion;if("root"===i.tryLoc)return t("end");if(i.tryLoc<=this.prev){var a=y.call(i,"catchLoc"),l=y.call(i,"finallyLoc");if(a&&l){if(this.prev<i.catchLoc)return t(i.catchLoc,!0);if(this.prev<i.finallyLoc)return t(i.finallyLoc)}else if(a){if(this.prev<i.catchLoc)return t(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return t(i.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&y.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var i=r;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var o=i?i.completion:{};return o.type=e,o.arg=t,i?(this.method="next",this.next=i.finallyLoc,R):this.complete(o)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),R},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),m(n),R}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;m(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:f(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=b),R}}}(function(){return this}()||Function("return this")())},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(5),l=n.n(a),c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=wp.element.Component,p=function(e){function t(e){r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return o(t,e),s(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("div",c({ref:this.myRef},this.props))}}]),t}(u);t.a=p}]);
1
+ !function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=7)}([function(e,t,n){"use strict";n.d(t,"c",function(){return l}),n.d(t,"h",function(){return c}),n.d(t,"g",function(){return s}),n.d(t,"e",function(){return u}),n.d(t,"d",function(){return p}),n.d(t,"f",function(){return m}),n.d(t,"i",function(){return d}),n.d(t,"j",function(){return f}),n.d(t,"k",function(){return h}),n.d(t,"a",function(){return b}),n.d(t,"b",function(){return w});var r=wp.components,i=r.G,o=r.Path,a=(r.Polygon,r.SVG),l=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#2196F3"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(o,{style:{fill:"#BBDEFB"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(o,{style:{fill:"#1565C0"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 23 L 33 23 L 33 25 L 15 25 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 27 L 33 27 L 33 29 L 15 29 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 31 L 33 31 L 33 33 L 15 33 Z "}),wp.element.createElement(o,{style:{fill:"#E3F2FD"},d:"M 15 35 L 25 35 L 25 37 L 15 37 Z "}))),c=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",enableBackground:"new 0 0 24 24",id:"Layer_2",version:"1.1",viewBox:"0 0 24 24"},wp.element.createElement(i,null,wp.element.createElement(o,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14c1.1045704,0,2-0.8954296,2-2 V6z",style:{fill:"#FFC720"}}),wp.element.createElement(o,{d:"M17,6c-0.5444336,0-1.0367432-0.2190552-1.3973999-0.5719604L21,10.8254395V6H17z",style:{fill:"url(#SVGID_1_)"}}),wp.element.createElement(o,{d:"M19,23.75H5c-1.1045532,0-2-0.8954468-2-2V22c0,1.1045532,0.8954468,2,2,2h14c1.1045532,0,2-0.8954468,2-2 v-0.25C21,22.8545532,20.1045532,23.75,19,23.75z",style:{opacity:"0.1"}}),wp.element.createElement(o,{d:"M15,0v4c0,1.1045694,0.8954306,2,2,2h4L15,0z",style:{fill:"#FFE083"}}),wp.element.createElement(o,{d:"M17,5.75c-1.1045532,0-2-0.8954468-2-2V4c0,1.1045532,0.8954468,2,2,2h4l-0.25-0.25H17z",style:{opacity:"0.1"}}),wp.element.createElement(o,{d:"M15,0H5C3.8954468,0,3,0.8953857,3,2v0.25c0-1.1046143,0.8954468-2,2-2h10",style:{fill:"#FFFFFF",opacity:"0.2"}}),wp.element.createElement(o,{d:"M15.5,9h-7C7.6728516,9,7,9.6728516,7,10.5v6C7,17.3271484,7.6728516,18,8.5,18h7 c0.8271484,0,1.5-0.6728516,1.5-1.5v-6C17,9.6728516,16.3271484,9,15.5,9z M8,15.5V11h8v4.5H8z",style:{fill:"#FFFFFF"}}),wp.element.createElement(o,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14 c1.1045704,0,2-0.8954296,2-2V6z",style:{fill:"url(#SVGID_2_)"}}))),s=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#43A047"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(o,{style:{fill:"#C8E6C9"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(o,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 31 23 L 15 23 L 15 37 L 33 37 L 33 23 Z M 17 25 L 21 25 L 21 27 L 17 27 Z M 17 29 L 21 29 L 21 31 L 17 31 Z M 17 33 L 21 33 L 21 35 L 17 35 Z M 31 35 L 23 35 L 23 33 L 31 33 Z M 31 31 L 23 31 L 23 29 L 31 29 Z M 31 27 L 23 27 L 23 25 L 31 25 Z "}))),u=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#7850C1"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(o,{style:{fill:"#C2ABE1"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(o,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 19 23 L 33 23 L 33 25 L 19 25 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 19 28 L 33 28 L 33 30 L 19 30 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 19 33 L 33 33 L 33 35 L 19 35 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 15 23 L 17 23 L 17 25 L 15 25 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 15 28 L 17 28 L 17 30 L 15 30 Z "}),wp.element.createElement(o,{style:{fill:"#E8F5E9"},d:"M 15 33 L 17 33 L 17 35 L 15 35 Z "}))),p=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#DE5245"},d:"M37,45H11c-1.7,0-3-1.3-3-3V6c0-1.7,1.3-3,3-3h19l10,10v29C40,43.7,38.7,45,37,45z"}),wp.element.createElement(o,{style:{fill:"#EEA6A0"},d:"M40,13H30V3L40,13z"}),wp.element.createElement(o,{style:{fill:"#B3433A"},d:"M30,13l10,10V13H30z"}),wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M20.5,32c-3,0-5.5-2.5-5.5-5.5c0-3,2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5C26,29.5,23.5,32,20.5,32z M20.5,23c-1.9,0-3.5,1.6-3.5,3.5s1.6,3.5,3.5,3.5s3.5-1.6,3.5-3.5S22.4,23,20.5,23z"}),wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M27.6,29c-0.6,1.8-1.9,3.3-3.6,4.1V38h9v-9H27.6z"}))),m=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#1C9957"},d:"M 42 39 L 42 9 C 42 7.34375 40.65625 6 39 6 L 9 6 C 7.34375 6 6 7.34375 6 9 L 6 39 C 6 40.65625 7.34375 42 9 42 L 39 42 C 40.65625 42 42 40.65625 42 39 Z "}),wp.element.createElement(o,{style:{fill:"#3E7BF1"},d:"M 9 42 L 39 42 C 40.65625 42 24 26 24 26 C 24 26 7.34375 42 9 42 Z "}),wp.element.createElement(o,{style:{fill:"#CBCCC9"},d:"M 42 39 L 42 9 C 42 7.34375 26 24 26 24 C 26 24 42 40.65625 42 39 Z "}),wp.element.createElement(o,{style:{fill:"#EFEFEF"},d:"M 39 42 C 40.65625 42 42 40.65625 42 39 L 42 38.753906 L 26.246094 23 L 23 26.246094 L 38.753906 42 Z "}),wp.element.createElement(o,{style:{fill:"#FFD73D"},d:"M 42 9 C 42 7.34375 40.65625 6 39 6 L 38.753906 6 L 6 38.753906 L 6 39 C 6 40.65625 7.34375 42 9 42 L 9.246094 42 L 42 9.246094 Z "}),wp.element.createElement(o,{style:{fill:"#D73F35"},d:"M 36 2 C 30.476563 2 26 6.476563 26 12 C 26 18.8125 33.664063 21.296875 35.332031 31.851563 C 35.441406 32.53125 35.449219 33 36 33 C 36.550781 33 36.558594 32.53125 36.667969 31.851563 C 38.335938 21.296875 46 18.8125 46 12 C 46 6.476563 41.523438 2 36 2 Z "}),wp.element.createElement(o,{style:{fill:"#752622"},d:"M 39.5 12 C 39.5 13.933594 37.933594 15.5 36 15.5 C 34.066406 15.5 32.5 13.933594 32.5 12 C 32.5 10.066406 34.066406 8.5 36 8.5 C 37.933594 8.5 39.5 10.066406 39.5 12 Z "}),wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M 14.492188 12.53125 L 14.492188 14.632813 L 17.488281 14.632813 C 17.09375 15.90625 16.03125 16.816406 14.492188 16.816406 C 12.660156 16.816406 11.175781 15.332031 11.175781 13.5 C 11.175781 11.664063 12.660156 10.179688 14.492188 10.179688 C 15.316406 10.179688 16.070313 10.484375 16.648438 10.980469 L 18.195313 9.433594 C 17.21875 8.542969 15.921875 8 14.492188 8 C 11.453125 8 8.992188 10.464844 8.992188 13.5 C 8.992188 16.535156 11.453125 19 14.492188 19 C 19.304688 19 20.128906 14.683594 19.675781 12.539063 Z "}))),d=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#FFFFFF"},d:"M 12 32 L 12 8 L 39 8 L 39 26 L 33 32 L 24 32 L 18 38 L 18 32 Z "}),wp.element.createElement(o,{style:{fill:"#8E24AA"},d:"M 9 5 L 6 12.121094 L 6 38 L 15 38 L 15 43 L 20 43 L 25 38 L 32 38 L 42 28 L 42 5 Z M 38 26 L 33 31 L 24 31 L 19 36 L 19 31 L 13 31 L 13 9 L 38 9 Z "}),wp.element.createElement(o,{style:{fill:"#8E24AA"},d:"M 32 25 L 27 25 L 27 15 L 32 15 Z "}),wp.element.createElement(o,{style:{fill:"#8E24AA"},d:"M 24 25 L 19 25 L 19 15 L 24 15 Z "}))),f=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 769 598",version:"1.1"},wp.element.createElement(i,null,wp.element.createElement(o,{style:{fill:"#148ee0"},d:"M766.89,229.17c0,0 -17.78,35.38 -106.5,91.3c-37.82,23.79 -116.36,49.1 -217.33,58.86c-54.52,5.29 -154.9,0.99 -197.96,0.99c-43.29,0 -63.13,9.12 -101.95,52.84c-143.15,161.36 -143.15,161.36 -143.15,161.36c0,0 49.57,0.24 87.01,0.24c37.43,0 271.55,13.59 375.43,-14.98c337.36,-92.72 304.46,-350.62 304.46,-350.62z"}),wp.element.createElement(o,{style:{fill:"#54bbff"},d:"M757.84,126.66c16.23,-98.97 -39.68,-126.16 -39.68,-126.16c0,0 2.36,80.57 -145.7,97.65c-131.42,15.16 -572.46,3.74 -572.46,3.74c0,0 0,0 141.74,162.54c38.39,44.06 58.76,49.17 101.92,52.22c43.16,2.89 138.42,1.86 202.99,-3.05c70.58,-5.41 171.17,-28.43 239.19,-81.11c34.88,-26.98 65.21,-64.48 72,-105.83z"}))),h=wp.element.createElement(a,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},wp.element.createElement(o,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"})),b=(wp.element.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 56 23"},wp.element.createElement("g",null,wp.element.createElement("g",null,wp.element.createElement("path",{style:{fill:"#DA2B28"},className:"st0",d:"M55.4,3.7c-0.2-0.9-0.6-1.6-1.3-2.2c-0.7-0.6-1.4-0.9-2.3-1c-2.7-0.3-6.8-0.4-12.3-0.4 c-5.5,0-9.6,0.1-12.3,0.4c-0.9,0.1-1.6,0.5-2.3,1c-0.7,0.6-1.1,1.3-1.3,2.2c-0.4,1.7-0.6,4.3-0.6,7.8c0,3.5,0.2,6.1,0.6,7.8 c0.2,0.9,0.6,1.6,1.3,2.2c0.7,0.6,1.4,0.9,2.3,1c2.7,0.3,6.8,0.5,12.3,0.5c5.5,0,9.6-0.2,12.3-0.5c0.9-0.1,1.6-0.4,2.3-1 c0.7-0.6,1.1-1.3,1.3-2.2c0.4-1.7,0.6-4.3,0.6-7.8C56,8,55.8,5.4,55.4,3.7L55.4,3.7z M32.5,6h-2.4v12.6h-2.2V6h-2.3V3.9h6.9V6z M38.5,18.6h-2v-1.2c-0.8,0.9-1.6,1.4-2.3,1.4c-0.7,0-1.1-0.3-1.3-0.8c-0.1-0.4-0.2-0.9-0.2-1.6V7.6h2v8.1c0,0.5,0,0.7,0,0.8 c0,0.3,0.2,0.5,0.5,0.5c0.4,0,0.8-0.3,1.3-0.9V7.6h2V18.6z M46.1,15.3c0,1.1-0.1,1.8-0.2,2.2c-0.3,0.8-0.8,1.2-1.6,1.2 c-0.7,0-1.4-0.4-2.1-1.2v1.1h-2V3.9h2v4.8c0.6-0.8,1.3-1.2,2.1-1.2c0.8,0,1.3,0.4,1.6,1.2c0.1,0.4,0.2,1.1,0.2,2.2V15.3z M53.5,13.5h-4v1.9c0,1,0.3,1.5,1,1.5c0.5,0,0.8-0.3,0.9-0.8c0-0.1,0-0.6,0-1.4h2v0.3c0,0.7,0,1.2,0,1.3c0,0.4-0.2,0.8-0.5,1.2 c-0.5,0.8-1.3,1.2-2.4,1.2c-1,0-1.8-0.4-2.4-1.1c-0.4-0.5-0.6-1.4-0.6-2.6v-3.8c0-1.2,0.2-2,0.6-2.6c0.6-0.8,1.4-1.1,2.4-1.1 c1,0,1.8,0.4,2.3,1.1c0.4,0.5,0.6,1.4,0.6,2.6V13.5z M53.5,13.5"}),wp.element.createElement("path",{className:"st0",d:"M43.2,9.3c-0.3,0-0.7,0.2-1,0.5v6.7c0.3,0.3,0.7,0.5,1,0.5c0.6,0,0.9-0.5,0.9-1.5v-4.7 C44.1,9.8,43.8,9.3,43.2,9.3L43.2,9.3z M43.2,9.3"}),wp.element.createElement("path",{className:"st0",d:"M50.6,9.3c-0.7,0-1,0.5-1,1.5v1h2v-1C51.6,9.8,51.2,9.3,50.6,9.3L50.6,9.3z M50.6,9.3"})),wp.element.createElement("g",null,wp.element.createElement("path",{d:"M2.8,12.8v6h2.2v-6L7.7,4H5.5L4,9.8L2.4,4H0.1c0.4,1.2,0.9,2.6,1.4,4.1C2.2,10.2,2.6,11.7,2.8,12.8L2.8,12.8z M2.8,12.8"}),wp.element.createElement("path",{d:"M10.7,19c1,0,1.8-0.4,2.3-1.1c0.4-0.5,0.6-1.4,0.6-2.6v-3.9c0-1.2-0.2-2-0.6-2.6c-0.5-0.8-1.3-1.1-2.3-1.1 c-1,0-1.8,0.4-2.3,1.1C8,9.3,7.8,10.2,7.8,11.4v3.9c0,1.2,0.2,2.1,0.6,2.6C8.9,18.6,9.7,19,10.7,19L10.7,19z M9.8,11 c0-1,0.3-1.5,1-1.5c0.6,0,1,0.5,1,1.5v4.7c0,1-0.3,1.6-1,1.6c-0.6,0-1-0.5-1-1.6V11z M9.8,11"}),wp.element.createElement("path",{d:"M16.8,19c0.7,0,1.5-0.5,2.3-1.4v1.2h2V7.8h-2v8.4c-0.4,0.6-0.9,1-1.3,1c-0.3,0-0.4-0.2-0.5-0.5c0,0,0-0.3,0-0.8V7.8h-2 v8.7c0,0.8,0.1,1.3,0.2,1.7C15.7,18.7,16.1,19,16.8,19L16.8,19z M16.8,19"})))),wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 276 340"},wp.element.createElement("path",{d:"M196.7.6H24.3C11.1.6.4 11.3.4 24.6v292.9c0 12.3 10 22.2 22.2 22.2H252c13.3 0 23.9-10.7 23.9-23.9V80.9L196.7.6z",fill:"#e94848"}),wp.element.createElement("path",{d:"M196.7 57c0 13.3 10.7 23.9 23.9 23.9H276L196.7.6V57z",fill:"#f19191"}),wp.element.createElement("linearGradient",{id:"A",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"77.111",x2:"116.568",y2:"77.111"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M113 84.5H48.3c-1.9 0-3.5-1.6-3.5-3.5v-7.7c0-1.9 1.6-3.5 3.5-3.5H113c1.9 0 3.5 1.6 3.5 3.5V81c.1 1.9-1.5 3.5-3.5 3.5z",fill:"url(#A)"}),wp.element.createElement("linearGradient",{id:"B",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.016",x2:"233.927",y2:"136.016"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",opacity:".8",fill:"url(#B)"}),wp.element.createElement("linearGradient",{id:"C",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.993",x2:"233.927",y2:"135.993"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"33.6",opacity:".7",fill:"url(#C)"}),wp.element.createElement("linearGradient",{id:"D",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.969",x2:"233.927",y2:"135.969"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"67.2",opacity:".6",fill:"url(#D)"}),wp.element.createElement("linearGradient",{id:"E",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.045",x2:"233.927",y2:"136.045"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"100.7",opacity:".4",fill:"url(#E)"}),wp.element.createElement("linearGradient",{id:"F",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"270.322",x2:"174.778",y2:"270.322"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M171.9 277.7H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9h124.3c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z",opacity:".3",fill:"url(#F)"}),wp.element.createElement("defs",null,wp.element.createElement("path",{id:"H",d:"M231 143.4H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9H231c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z"})))),w=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270",role:"img",focusable:"false"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"})))},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.components.Spinner,i=function(){return wp.element.createElement("div",{className:"wp-block-embed is-loading"},wp.element.createElement(r,null),wp.element.createElement("p",null,__("Embedding\u2026")))};t.a=i},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.element.Fragment,i=wp.components,o=i.Button,a=i.Toolbar,l=wp.blockEditor.BlockControls,c=function(e){var t=e.showEditButton,n=e.switchBackToURLInput;return wp.element.createElement(r,null,wp.element.createElement(l,null,wp.element.createElement(a,null,t&&wp.element.createElement(o,{className:"components-toolbar__control",label:__("Edit URL"),icon:"edit",onClick:n}))))};t.a=c},function(e,t,n){"use strict";var r=n(12),i=n.n(r),o=wp.i18n,__=o.__,_x=o._x,a=wp.components,l=a.Button,c=a.Placeholder,s=a.ExternalLink,u=wp.blockEditor.BlockIcon,p=function(e){var t=e.icon,n=e.label,r=e.value,o=e.onSubmit,a=e.onChange,p=e.cannotEmbed,m=e.docLink,d=e.DocTitle,f=i()("wp-block-embed",{});return wp.element.createElement("div",null,wp.element.createElement(c,{icon:wp.element.createElement(u,{icon:t,showColors:!0}),label:n,className:f},wp.element.createElement("form",{onSubmit:o},wp.element.createElement("input",{type:"url",value:r||"",className:"components-placeholder__input","aria-label":n,placeholder:__("Enter URL to embed here\u2026"),onChange:a}),wp.element.createElement(l,{isSmall:!0,type:"submit"},_x("Embed","button label")),p&&wp.element.createElement("p",{className:"components-placeholder__error"},__("Sorry, we could not embed that content."),wp.element.createElement("br",null))),m&&wp.element.createElement("div",{className:"components-placeholder__learn-more"},wp.element.createElement(s,{href:m},d))))};t.a=p},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(5),l=n.n(a),c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=wp.element.Component,p=function(e){function t(e){r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return o(t,e),s(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("iframe",c({ref:this.myRef},this.props))}}]),t}(u);t.a=p},function(e,t){e.exports=ReactDOM},function(e,t,n){"use strict";function r(e){var t=embedpressObj.document_cta,n="",r="";if(embedpressObj.embedpress_pro&&t&&t.logo_url){console.dir(t);var o=t.cta_url?t.cta_url:null,a=t.logo_xpos?t.logo_xpos+"%":"10%",l=t.logo_ypos?t.logo_ypos+"%":"10%",c=t.logo_opacity?t.logo_opacity/100:"10%",s=".ep-doc-"+e.id;return n="\n "+s+"{\n text-align: left;\n position: relative;\n }\n "+s+" .watermark {\n \t\tdisplay:inline-block;\n border: 0;\n position: absolute;\n bottom: "+l+";\n right: "+a+";\n max-width: 150px;\n max-height: 75px;\n opacity: "+c+";\n z-index: 5;\n -o-transition: opacity 0.5s ease-in-out;\n -moz-transition: opacity 0.5s ease-in-out;\n -webkit-transition: opacity 0.5s ease-in-out;\n transition: opacity 0.5s ease-in-out;\n }\n "+s+" .watermark:hover {\n\t\t\t\t\t opacity: 1;\n\t\t\t\t }\n\t\t",o&&""!==o&&(r+="<a href="+o+">"),r+='<img class="watermark" alt="" src="'+t.logo_url+'"/>',o&&""!==o&&(r+="</a>"),wp.element.createElement(i,null,wp.element.createElement("style",{dangerouslySetInnerHTML:{__html:n}}),wp.element.createElement("div",{dangerouslySetInnerHTML:{__html:r}}))}return""}var i=wp.element.Fragment;t.a=r},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});n(8),n(13),n(17),n(21),n(25),n(29),n(33),n(37),n(41),n(45),n(49);!function(){var e=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"})));wp.blocks.updateCategory("embedpress",{icon:e})}()},function(e,t,n){"use strict";var r=n(9),i=(n.n(r),n(10)),o=(n.n(i),n(11)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-docs-block"]&&l("embedpress/google-docs-block",{title:__("Google Docs"),icon:a.c,category:"embedpress",keywords:[__("embedpress"),__("google"),__("docs")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("figure",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element.Component,d=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.updateAlignment=e.updateAlignment.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"updateAlignment",value:function(e){var t=this.props.setAttributes,n=-1!==["wide","full"].indexOf(e)?{width:void 0,height:void 0}:{};t(Object.assign({},n,{align:e}))}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"document"===a?(r.match(/([?&])embedded=true/i)||(r.indexOf("?")>-1?r+="&embedded=true":r+="?embedded=true"),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Docs URL");return!m||r?wp.element.createElement("div",null,wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.c,DocTitle:__("Learn more about Google doc embed"),docLink:"https://embedpress.com/docs/embed-google-docs-wordpress/"})):wp.element.createElement("div",null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onMouseUp:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameBorder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(m);t.a=d},function(e,t,n){var r,i;!function(){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)){if(r.length){var a=n.apply(null,r);a&&e.push(a)}}else if("object"===i)if(r.toString===Object.prototype.toString)for(var l in r)o.call(r,l)&&r[l]&&e.push(l);else e.push(r.toString())}}return e.join(" ")}var o={}.hasOwnProperty;"undefined"!==typeof e&&e.exports?(n.default=n,e.exports=n):(r=[],void 0!==(i=function(){return n}.apply(t,r))&&(e.exports=i))}()},function(e,t,n){"use strict";var r=n(14),i=(n.n(r),n(15)),o=(n.n(i),n(16)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-slides-block"]&&l("embedpress/google-slides-block",{title:__("Google Slides"),icon:a.h,category:"embedpress",keywords:[__("embedpress"),__("google"),__("slides")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-presentation"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"presentation"==a?(r.match(/pub\?/i)&&(r=r.replace("/pub?","/embed?")),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Slides URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.h,DocTitle:__("Learn more about Google slides embed"),docLink:"https://embedpress.com/docs/embed-google-slides-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(18),i=(n.n(r),n(19)),o=(n.n(i),n(20)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-sheets-block"]&&l("embedpress/google-sheets-block",{title:__("Google Sheets"),icon:a.g,category:"embedpress",keywords:[__("embedpress"),__("google"),__("sheets")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];if(a&&"spreadsheets"==a){if(r.indexOf("?")>-1){var l=r.split("?");if(l=l[1],l=l.split("&"),console.log(l),l.length>0){var c=!1,s=!1;l.map(function(e){e.indexOf("widget=")?s=!0:e.indexOf("headers=")&&(c=!0)}),s||(r+="&widget=true"),c||(r+="&headers=false")}}else r+="?widget=true&headers=false";this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Sheets URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.g,DocTitle:__("Learn more about Google sheet embed"),docLink:"https://embedpress.com/docs/embed-google-sheets-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(22),i=(n.n(r),n(23)),o=(n.n(i),n(24)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-forms-block"]&&l("embedpress/google-forms-block",{title:__("Google Forms"),icon:a.e,category:"embedpress",keywords:[__("embedpress"),__("google"),__("forms")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-forms"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=(wp.components.Disabled,function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"forms"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Forms URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.e,DocTitle:__("Learn more about Google forms embed"),docLink:"https://embedpress.com/docs/embed-google-forms-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d));t.a=h},function(e,t,n){"use strict";var r=n(26),i=(n.n(r),n(27)),o=(n.n(i),n(28)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-drawings-block"]&&l("embedpress/google-drawings-block",{title:__("Google Drawings"),icon:a.d,category:"embedpress",keywords:[__("embedpress"),__("google"),__("drawings")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-drawings"},wp.element.createElement("img",{src:t,width:"960",height:"720"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,p=wp.element,m=p.Component,d=p.Fragment,f=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1},e}return o(t,e),u(t,[{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),i=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,o=i.exec(r),a=o[1];a&&"drawings"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,u=this.props.attributes.iframeSrc,p=__("Google Drawings URL (Get your link from File -> Publish to the web -> Link)");return!u||r?wp.element.createElement(c.a,{label:p,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:s.d,DocTitle:__("Learn more about Google drawing embed"),docLink:"https://embedpress.com/docs/embed-google-drawings-wordpress/"}):wp.element.createElement(d,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement("img",{src:u,onLoad:this.onLoad,style:{display:i?"none":""},width:"960",height:"720"}),wp.element.createElement(a.a,{showEditButton:u&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}]),t}(m);t.a=f},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=n(30),o=(n.n(i),n(31)),a=(n.n(o),n(32)),l=n(0),__=wp.i18n.__,c=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-maps-block"]&&c("embedpress/google-maps-block",{title:__("Google Maps"),icon:l.f,category:"embedpress",keywords:[__("embedpress"),__("google"),__("maps")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:a.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-maps"},wp.element.createElement("iframe",r({src:t,frameborder:"0",width:"600",height:"450"},"frameborder","0")))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/(?:(?:(?:www\.|maps\.)?(?:google\.com?))|(?:goo\.gl))(?:\.[a-z]{2})?\/(?:maps\/)?(?:place\/)?(?:[a-z0-9\/%+\-_]*)?([a-z0-9\/%,+\-_=!:@\.&*\$#?\']*)/i)){var r=this.decodeHTMLEntities(t);if(t.match("~(maps/embed|output=embed)~i"));else{var i=/@(-?[0-9\.]+,-?[0-9\.]+).+,([0-9\.]+[a-z])/i,o=i.exec(r);o&&o.length>1&&o[1]&&o[2]?r="https://maps.google.com/maps?hl=en&ie=UTF8&ll="+o[1]+"&spn="+o[1]+"&t=m&z="+Math.round(parseInt(o[2]))+"&output=embed":this.setState({cannotEmbed:!0,editingURL:!0})}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Maps URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.f,DocTitle:__("Learn more about Google map embed"),docLink:"https://embedpress.com/docs/embed-google-maps-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"450"}),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(34),i=(n.n(r),n(35)),o=(n.n(i),n(36)),a=n(0),l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},__=wp.i18n.__,c=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["twitch-block"]&&c("embedpress/twitch-block",{title:__("Twitch"),icon:a.i,category:"embedpress",keywords:[__("embedpress"),__("twitch")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""},attrs:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes,n=t.iframeSrc,r=t.attrs,i=n+"&parent="+embedpressObj.twitch_host;return wp.element.createElement("figure",{className:"ose-twitch-presentation"},wp.element.createElement("iframe",l({src:i},r,{frameborder:"0",width:"600",height:"450"})))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=/http[s]?:\/\/(?:www\.|clips\.)twitch\.tv\/([0-9a-zA-Z\-\_]+)\/?(chat\/?$|[0-9a-z\-\_]*)?/;if(t&&t.match(r)){var i=this.decodeHTMLEntities(t),o=r.exec(i),a=o[1];console.log(a);var l,c="channel";switch(t.indexOf("clips.twitch.tv")>-1?c="clip":t.indexOf("/videos/")>-1?c="video":t.indexOf("#/chat$#")>-1&&(c="chat"),console.log(c),c){case"channel":i="https://player.twitch.tv/?channel="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"clip":i="https://clips.twitch.tv/embed?clip="+a+"&autoplay=false",l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"video":a=o[2],i="https://player.twitch.tv/?video="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"chat":i="http://www.twitch.tv/embed/"+a+"/chat",l={scrolling:"yes",frameborder:"0",allowfullscreen:"true",id:"'"+a+"'"}}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:i,attrs:l})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("Twitch URL");if(!f||r)return wp.element.createElement(c.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.i,DocTitle:__("Learn more about twitch embed"),docLink:"https://embedpress.com/docs/embed-twitch-streams-chat/"});var y=f+"&parent="+embedpressObj.twitch_host;return wp.element.createElement(h,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,p({src:y},b,{onLoad:this.onLoad,style:{display:i?"none":""},onFocus:this.hideOverlay,width:"600",height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(38),i=(n.n(r),n(39)),o=(n.n(i),n(40)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["wistia-block"]&&l("embedpress/wistia-block",{title:__("Wistia"),icon:a.j,category:"embedpress",keywords:[__("embedpress"),__("wistia")],supports:{align:["wide","full","right","left"],default:""},edit:o.a,save:function(e){return null},deprecated:[{attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:o.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("div",{class:"ose-wistia"},wp.element.createElement("iframe",{src:t,allowtransparency:"true",frameborder:"0",class:"wistia_embed",name:"wistia_embed",width:"600",height:"330"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1,mediaId:null},e.setUrl(),e}return o(t,e),p(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentDidMount",value:function(){if(this.props.attributes.url){var e=this.props.attributes.url.match(/medias\/(.*)/),t=e[1];this.setState(Object.assign({},this.state,{mediaId:t}))}}},{key:"onLoad",value:function(){if(this.setState({fetching:!1}),embedpressObj.wisita_options){var e=Object.assign({},this.state);setTimeout(function(){var e=document.createElement("script");e.src="https://fast.wistia.com/assets/external/E-v1.js",e.charset="ISO-8859-1",document.body.appendChild(e)},100),setTimeout(function(){var t=document.createElement("script");t.type="text/javascript",t.innerHTML="window.pp_embed_wistia_labels = "+embedpressObj.wistia_labels,document.body.appendChild(t),t=document.createElement("script"),t.type="text/javascript",t.innerHTML='wistiaEmbed = Wistia.embed( "'+e.mediaId+'", '+embedpressObj.wisita_options+" );",document.body.appendChild(t)},400)}}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&(t.match(/^http[s]?:\/\/(?:www\.)?wistia\.com\/medias/i)||t.match(/^http[s]?:\/\/(?:www\.)?fast\/.wistia\.com\/embed\/medias/i.jsonp))){var r=t.match(/medias\/(.*)/),i=r[1],o="//fast.wistia.net/embed/iframe/"+i;this.setState({editingURL:!1,cannotEmbed:!1,mediaId:i}),n({iframeSrc:o})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,p=t.interactive,m=this.props.attributes.iframeSrc,d=__("Wistia URL");return!m||r?wp.element.createElement(c.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.j,DocTitle:__("Learn more about Wistia embed"),docLink:"https://embedpress.com/docs/embed-wistia-videos-wordpress/"}):wp.element.createElement(f,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement("div",{className:"ose-wistia",id:"wistia_"+this.state.mediaId},wp.element.createElement(s.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:i?"none":""},frameborder:"0",width:"600",height:"330"})),!p&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(42),i=(n.n(r),n(43)),o=(n.n(i),n(44)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["youtube-block"]&&l("embedpress/youtube-block",{title:__("YouTube"),icon:a.k,category:"embedpress",keywords:[__("embedpress"),__("youtube")],supports:{align:["wide","full","right","left"],default:""},edit:o.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),c=n(3),s=n(4),u=n(0),p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return o(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentWillMount",value:function(){this.state.url&&this.setUrl()}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=t.match(/^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/);if(t&&r){var i=r[1],o="https://www.youtube.com/embed/"+i,a=new URL(o);if("undefined"!==typeof embedpressProObj)for(var l in embedpressProObj.youtubeParams)a.searchParams.set(l,embedpressProObj.youtubeParams[l]);this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:a.href,mediaId:i})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,i=t.fetching,o=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("YouTube URL");return!f||r?wp.element.createElement(c.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:o,onChange:function(t){return e.setState({url:t.target.value})},icon:u.k,DocTitle:__("Learn More About YouTube Embed"),docLink:"https://embedpress.com/docs/embed-youtube-wordpress/"}):wp.element.createElement(h,null,i?wp.element.createElement(l.a,null):null,wp.element.createElement(s.a,p({src:f},b,{onLoad:this.onLoad,style:{display:i?"none":""},width:"640",onFocus:this.hideOverlay,height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!o,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(46),i=(n.n(r),n(47)),o=(n.n(i),n(48)),a=n(0),l=n(6),__=wp.i18n.__,c=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.document&&c("embedpress/document",{title:__("Document"),icon:a.a,category:"embedpress",keywords:[__("embedpress"),__("pdf"),__("doc"),__("ppt")],supports:{align:["wide","full","right","left"],default:""},attributes:{id:{type:"string"},href:{type:"string"},powered_by:{type:"boolean",default:!0},width:{type:"number",default:600},height:{type:"number",default:600},fileName:{type:"string"},mime:{type:"string"}},edit:o.a,save:function(e){var t=e.attributes,n=t.href,r=t.mime,i=t.id,o=t.width,a=t.height,c=t.powered_by,s="//view.officeapps.live.com/op/embed.aspx?src="+n;return wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+i,style:{height:a,width:o}},"application/pdf"===r&&wp.element.createElement("div",{style:{height:a,width:o},className:"embedpress-embed-document-pdf "+i,"data-emid":i,"data-emsrc":n}),"application/pdf"!==r&&wp.element.createElement("iframe",{style:{height:a,width:o},src:s,mozallowfullscreen:"true",webkitallowfullscreen:"true"}),c&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),embedpressObj.embedpress_pro&&wp.element.createElement(l.a,{id:i}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(4),l=n(6),c=n(1),s=n(0),u=function(){function e(e,t){var n=[],_n=!0,r=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(_n=(o=a.next()).done)&&(n.push(o.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,i=e}finally{try{!_n&&a.return&&a.return()}finally{if(r)throw i}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.blob,d=m.getBlobByURL,f=m.isBlobURL,h=m.revokeBlobURL,b=wp.blockEditor,w=b.BlockIcon,y=b.MediaPlaceholder,v=b.InspectorControls,g=wp.element,E=g.Component,L=g.Fragment,k=wp.components,_=k.RangeControl,O=k.PanelBody,S=k.ExternalLink,U=k.ToggleControl,j=["application/pdf","application/msword","application/vnd.ms-powerpoint","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","application/vnd.openxmlformats-officedocument.presentationml.presentation"],R=function(e){function t(){r(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.onSelectFile=e.onSelectFile.bind(e),e.onUploadError=e.onUploadError.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={hasError:!1,fetching:!1,interactive:!1,loadPdf:!0},e}return o(t,e),p(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props,n=t.attributes,r=t.mediaUpload,i=t.noticeOperations,o=n.href;if(f(o)){r({filesList:[d(o)],onFileChange:function(t){var n=u(t,1),r=n[0];return e.onSelectFile(r)},onError:function(t){e.setState({hasError:!0}),i.createErrorNotice(t)}}),h(o)}this.props.attributes.href&&"application/pdf"===this.props.attributes.mime&&this.state.loadPdf&&(this.setState({loadPdf:!1}),PDFObject.embed(this.props.attributes.href,"."+this.props.attributes.id))}},{key:"componentDidUpdate",value:function(e){e.isSelected&&!this.props.isSelected&&this.setState({showCopyConfirmation:!1})}},{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"onSelectFile",value:function(e){e&&e.url&&(this.setState({hasError:!1}),this.props.setAttributes({href:e.url,fileName:e.title,id:"embedpress-pdf-"+Date.now(),mime:e.mime}),embedpressObj.embedpress_pro&&this.props.setAttributes({powered_by:!1}),"application/pdf"===e.mime&&(this.setState({loadPdf:!1}),PDFObject.embed(e.url,"."+this.props.attributes.id)))}},{key:"onUploadError",value:function(e){var t=this.props.noticeOperations;t.removeAllNotices(),t.createErrorNotice(e)}},{key:"render",value:function(){var e=this.props,t=e.attributes,n=e.noticeUI,r=e.setAttributes,i=t.href,o=t.mime,u=t.id,p=t.width,m=t.height,d=t.powered_by,f=this.state,h=f.hasError,b=f.interactive,g=f.fetching,E=f.loadPdf;if(!i||h)return wp.element.createElement("div",{className:"embedpress-document-editmode"},wp.element.createElement(y,{icon:wp.element.createElement(w,{icon:s.a}),labels:{title:__("Document"),instructions:__("Upload a file or pick one from your media library for embed.")},onSelect:this.onSelectFile,notices:n,allowedTypes:j,onError:this.onUploadError},wp.element.createElement("div",{style:{width:"100%"},className:"components-placeholder__learn-more embedpress-doc-link"},wp.element.createElement(S,{href:"https://embedpress.com/docs/embed-docuemnt/"},"Learn more about Embedded document "))));var k="//view.officeapps.live.com/op/embed.aspx?src="+i;return wp.element.createElement(L,null,g&&"application/pdf"!==o?wp.element.createElement(c.a,null):null,wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+u,style:{height:m,width:p}},"application/pdf"===o&&wp.element.createElement("div",{style:{height:m,width:p},className:"embedpress-embed-document-pdf "+u,"data-emid":u,"data-emsrc":i}),"application/pdf"!==o&&wp.element.createElement(a.a,{onMouseUponMouseUp:this.hideOverlay,style:{height:m,width:p,display:g||!E?"none":""},onLoad:this.onLoad,src:k}),!b&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),d&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),!g&&wp.element.createElement(l.a,{id:u})),wp.element.createElement(v,{key:"inspector"},wp.element.createElement(O,{title:__("Embed Size","embedpress")},wp.element.createElement(_,{label:__("Width","embedpress"),value:p,onChange:function(e){return r({width:e})},max:1e3,min:1}),wp.element.createElement(_,{label:__("Height","embedpress"),value:m,onChange:function(e){return r({height:e})},max:1e3,min:1}),wp.element.createElement(U,{label:__("Powered By"),onChange:function(e){return r({powered_by:e})},checked:d}))))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(E);t.a=R},function(e,t,n){"use strict";var r=n(50),i=(n.n(r),n(51)),o=(n.n(i),n(52)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.embedpress&&l("embedpress/embedpress",{title:__("EmbedPress"),icon:a.b,category:"embedpress",keywords:["embedpress","embed","google","youtube","docs"],supports:{align:["right","left","center"],default:"center",lightBlockWrapper:!0},attributes:{url:{type:"string",default:""},embedHTML:{type:"string",default:""},height:{type:"string",default:"450"},width:{type:"string",default:"600"},editingURL:{type:"boolean",default:!1},fetching:{type:"boolean",default:!1},cannotEmbed:{type:"boolean",default:!1},interactive:{type:"boolean",default:!1},align:{type:"string",default:"center"}},edit:o.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e){return function(){var t=e.apply(this,arguments);return new Promise(function(e,n){function r(i,o){try{var a=t[i](o),l=a.value}catch(e){return void n(e)}if(!a.done)return Promise.resolve(l).then(function(e){r("next",e)},function(e){r("throw",e)});e(l)}return r("next")})}}function i(e){function t(){m({editingURL:!0})}function n(e){var t=this;if(e&&e.preventDefault(),h){m({fetching:!0});(function(){var e=r(a.a.mark(function e(n){return a.a.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(embedpressObj.site_url+"/wp-json/embedpress/v1/oembed/embedpress?url="+n+"&width="+_+"&height="+k).then(function(e){return e.json()});case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}},e,t)}));return function(_x){return e.apply(this,arguments)}})()(h).then(function(e){m({fetching:!1}),m(e.data&&404===e.data.status||!e.embed?{cannotEmbed:!0,editingURL:!0}:{embedHTML:e.embed,cannotEmbed:!1,editingURL:!1})})}else m({cannotEmbed:!0,fetching:!1,editingURL:!0})}var i=e.attributes,o=e.className,m=e.setAttributes,h=i.url,v=i.editingURL,g=i.fetching,E=i.cannotEmbed,L=(i.interactive,i.embedHTML),k=i.height,_=i.width,O=w?w():[];return wp.element.createElement(y,null,wp.element.createElement(b,null,wp.element.createElement(f,{title:__("Customize Embedded Link")},wp.element.createElement("p",null,__("You can adjust the width and height of embedded content.")),wp.element.createElement(d,{label:__("Width"),value:_,onChange:function(e){return m({width:e})}}),wp.element.createElement(d,{label:__("Height"),value:k,onChange:function(e){return m({height:e})}}),L&&!v&&wp.element.createElement("button",{onClick:n},__("Apply")))),(!L||v)&&!g&&wp.element.createElement("div",O,wp.element.createElement(s.a,{label:__("EmbedPress - Embed anything from 100+ sites"),onSubmit:n,value:h,cannotEmbed:E,onChange:function(e){return m({url:e.target.value})},icon:p.b,DocTitle:__("Learn more about EmbedPress"),docLink:"https://embedpress.com/docs/"})),g?wp.element.createElement("div",{className:o},wp.element.createElement(c.a,null)," "):null,L&&!v&&!g&&wp.element.createElement("figure",O,wp.element.createElement(u.a,{style:{display:g?"none":""},dangerouslySetInnerHTML:{__html:L}}),wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:m({interactive:!0})}),wp.element.createElement(l.a,{showEditButton:L&&!E,switchBackToURLInput:t})))}t.a=i;var o=n(53),a=n.n(o),l=n(2),c=n(1),s=n(3),u=n(56),p=n(0),__=wp.i18n.__,m=wp.components,d=m.TextControl,f=m.PanelBody,h=wp.blockEditor,b=h.InspectorControls,w=h.useBlockProps,y=wp.element.Fragment},function(e,t,n){e.exports=n(54)},function(e,t,n){var r=function(){return this}()||Function("return this")(),i=r.regeneratorRuntime&&Object.getOwnPropertyNames(r).indexOf("regeneratorRuntime")>=0,o=i&&r.regeneratorRuntime;if(r.regeneratorRuntime=void 0,e.exports=n(55),i)r.regeneratorRuntime=o;else try{delete r.regeneratorRuntime}catch(e){r.regeneratorRuntime=void 0}},function(e,t){!function(t){"use strict";function n(e,t,n,r){var o=t&&t.prototype instanceof i?t:i,a=Object.create(o.prototype),l=new d(r||[]);return a._invoke=s(e,n,l),a}function r(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}function i(){}function o(){}function a(){}function l(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function c(e){function t(n,i,o,a){var l=r(e[n],e,i);if("throw"!==l.type){var c=l.arg,s=c.value;return s&&"object"===typeof s&&y.call(s,"__await")?Promise.resolve(s.__await).then(function(e){t("next",e,o,a)},function(e){t("throw",e,o,a)}):Promise.resolve(s).then(function(e){c.value=e,o(c)},a)}a(l.arg)}function n(e,n){function r(){return new Promise(function(r,i){t(e,n,r,i)})}return i=i?i.then(r,r):r()}var i;this._invoke=n}function s(e,t,n){var i=O;return function(o,a){if(i===U)throw new Error("Generator is already running");if(i===j){if("throw"===o)throw a;return h()}for(n.method=o,n.arg=a;;){var l=n.delegate;if(l){var c=u(l,n);if(c){if(c===R)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===O)throw i=j,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=U;var s=r(e,t,n);if("normal"===s.type){if(i=n.done?j:S,s.arg===R)continue;return{value:s.arg,done:n.done}}"throw"===s.type&&(i=j,n.method="throw",n.arg=s.arg)}}}function u(e,t){var n=e.iterator[t.method];if(n===b){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=b,u(e,t),"throw"===t.method))return R;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return R}var i=r(n,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,R;var o=i.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=b),t.delegate=null,R):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,R)}function p(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function m(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function d(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(p,this),this.reset(!0)}function f(e){if(e){var t=e[g];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var n=-1,r=function t(){for(;++n<e.length;)if(y.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=b,t.done=!0,t};return r.next=r}}return{next:h}}function h(){return{value:b,done:!0}}var b,w=Object.prototype,y=w.hasOwnProperty,v="function"===typeof Symbol?Symbol:{},g=v.iterator||"@@iterator",E=v.asyncIterator||"@@asyncIterator",L=v.toStringTag||"@@toStringTag",k="object"===typeof e,_=t.regeneratorRuntime;if(_)return void(k&&(e.exports=_));_=t.regeneratorRuntime=k?e.exports:{},_.wrap=n;var O="suspendedStart",S="suspendedYield",U="executing",j="completed",R={},C={};C[g]=function(){return this};var x=Object.getPrototypeOf,T=x&&x(x(f([])));T&&T!==w&&y.call(T,g)&&(C=T);var M=a.prototype=i.prototype=Object.create(C);o.prototype=M.constructor=a,a.constructor=o,a[L]=o.displayName="GeneratorFunction",_.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===o||"GeneratorFunction"===(t.displayName||t.name))},_.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,a):(e.__proto__=a,L in e||(e[L]="GeneratorFunction")),e.prototype=Object.create(M),e},_.awrap=function(e){return{__await:e}},l(c.prototype),c.prototype[E]=function(){return this},_.AsyncIterator=c,_.async=function(e,t,r,i){var o=new c(n(e,t,r,i));return _.isGeneratorFunction(t)?o:o.next().then(function(e){return e.done?e.value:o.next()})},l(M),M[L]="Generator",M[g]=function(){return this},M.toString=function(){return"[object Generator]"},_.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},_.values=f,d.prototype={constructor:d,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=b,this.done=!1,this.delegate=null,this.method="next",this.arg=b,this.tryEntries.forEach(m),!e)for(var t in this)"t"===t.charAt(0)&&y.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=b)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){function t(t,r){return o.type="throw",o.arg=e,n.next=t,r&&(n.method="next",n.arg=b),!!r}if(this.done)throw e;for(var n=this,r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r],o=i.completion;if("root"===i.tryLoc)return t("end");if(i.tryLoc<=this.prev){var a=y.call(i,"catchLoc"),l=y.call(i,"finallyLoc");if(a&&l){if(this.prev<i.catchLoc)return t(i.catchLoc,!0);if(this.prev<i.finallyLoc)return t(i.finallyLoc)}else if(a){if(this.prev<i.catchLoc)return t(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return t(i.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&y.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var i=r;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var o=i?i.completion:{};return o.type=e,o.arg=t,i?(this.method="next",this.next=i.finallyLoc,R):this.complete(o)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),R},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),m(n),R}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;m(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:f(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=b),R}}}(function(){return this}()||Function("return this")())},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(5),l=n.n(a),c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=wp.element.Component,p=function(e){function t(e){r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return o(t,e),s(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("div",c({ref:this.myRef},this.props))}}]),t}(u);t.a=p}]);
Gutenberg/dist/blocks.editor.build.css CHANGED
@@ -1,2 +1,2 @@
1
  .embedpress-document-editmode .components-placeholder__instructions:after{content:"\ASupported File Type: PDF, DOC, PPT, XLS etc ";white-space:pre}
2
- .wp-block-embedpress-embedpress iframe{max-width:100%}.ose-the-new-york-times iframe{min-height:500px;max-height:100%}.block-editor-block-list__layout .wp-block figure,.block-editor-block-list__layout .wp-block iframe{margin:0}@media screen and (max-width: 782px){.block-editor-block-list__layout .wp-block figure,.block-editor-block-list__layout .wp-block iframe{height:250px}}.embedpress-event .link{color:#0098ab}.embedpress-event .visibility--a11yHide{border:0;clip:rect(0 0 0 0);position:absolute;overflow:hidden;margin:-1px;padding:0;width:1px;height:1px}.embedpress-event .text--small{font-size:14px;margin:0}.embedpress-event .flex{display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box}.embedpress-event .flex--wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.embedpress-event .flex--row{-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.embedpress-event .flex-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;width:auto;min-width:0;-webkit-box-sizing:border-box;box-sizing:border-box}.embedpress-event .flex-item--shrink{-ms-flex-preferred-size:auto;flex-basis:auto;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:auto}.embedpress-event .flex--row>.flex-item:first-child{padding-left:0}.embedpress-event .text--bold{font-weight:700}.embedpress-event h1,.embedpress-event h2,.embedpress-event h3,.embedpress-event h4,.embedpress-event h5,.embedpress-event h6{font-size:inherit}.embedpress-event .ep-event--title{font-size:32px;font-weight:700}.embedpress-event .ep-event--date{color:#757575;font-weight:400;font-size:16px}.embedpress-event .ep-event--host{margin-top:20px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:20px}.ep-event--host .avatar-print{border-radius:50%;height:50px;width:50px}.embedpress-event img.avatar--person{background-image:none !important;background-repeat:no-repeat;background-position:50%;background-size:cover;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:middle}.event-info-hosts-text{padding-left:20px;font-size:16px;font-weight:400}.embedpress-event .event-description{margin-top:20px}.text--sectionTitle{font-size:20px;line-height:28px}.ep-event--attendees{margin-top:50px}.ep-event--attendees>.flex{margin-bottom:20px}.ep-event--attendees .gridList{list-style:none;margin:0 -16px 0 0;padding:0}.ep-event--attendees .gridList-item{width:auto}.ep-event--attendees .gridList--autoHeight--has4>.gridList-item{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ep-event--attendees .groupMember-name{line-height:1.2 !important}.ep-event--attendees .avatar--person{margin-bottom:15px;display:inline-block;border-radius:50%}.ep-event--attendees img.avatar-print{border-radius:50%}.ep-event--attendees .groupMember-role{font-size:12px;color:#757575;padding-top:2px;margin:0}.ep-event--attendees .groupMember{min-height:100%;min-width:128px;padding-left:8px;padding-right:8px}.embedpress-event .align--center{text-align:center}.embedpress-event .card{background:#fff;background-clip:padding-box;background-size:cover;border:1px solid rgba(46,62,72,0.12);border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;min-height:100%;padding:16px 16px 18px;position:relative;white-space:normal}.embedpress-event .card--hasHoverShadow{-webkit-transition:-webkit-box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);transition:-webkit-box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);-o-transition:box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);transition:box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);transition:box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1)}.embedpress-event .ep-event-group-link{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;background:#ffffff;border-radius:8px;padding:20px;margin-bottom:20px;border:1px solid rgba(46,62,72,0.12)}.embedpress-event .ep-event-group--name{padding-left:20px;font-size:14px;line-height:1.45;margin:0;width:70%;word-break:break-word}.embedpress-event .ep-event-group--image{-o-object-fit:cover;object-fit:cover;width:56px;height:56px;border-radius:4px}.embedpress-event .ep-event-time-location{background:#ffffff;border-radius:8px;padding:16px 20px 0 20px;border:1px solid rgba(46,62,72,0.12)}.embedpress-event .ep-event-time-location .ep-event-datetime,.embedpress-event .ep-event-time-location .ep-event-location{padding-bottom:20px}.embedpress-event .ep-event-location .wrap--singleLine--truncate,.embedpress-event .ep-event-time-location .ep-event-datetime{font-size:15px;line-height:1.5;color:#2e3e48;font-style:normal;margin:0}.embedpress-event .ep-event-location address{font-style:normal;margin:0}.embedpress-event .ep-event-location .venueDisplay-venue-address{font-style:normal;color:#757575;margin:0}.embedpress-event .ep-event-location p{line-height:20px}.ep-event--attendees .gridList-item{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;font-size:1rem;margin:0;vertical-align:top;width:50%}.gridList-itemInner{-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;padding:0 16px 16px 0}@media only screen and (min-width: 530px){.ep-event--attendees .gridList--autoHeight--has4>.gridList-item{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}}@media only screen and (min-width: 640px){.embedpress-event .card{padding:18px 18px 20px}.ep-event--attendees .gridList--autoHeight--has4>.gridList-item{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}}
1
  .embedpress-document-editmode .components-placeholder__instructions:after{content:"\ASupported File Type: PDF, DOC, PPT, XLS etc ";white-space:pre}
2
+ .wp-block-embedpress-embedpress iframe{max-width:100%}.ose-the-new-york-times iframe{min-height:500px;max-height:100%}.block-editor-block-list__layout .wp-block figure,.block-editor-block-list__layout .wp-block iframe{margin:0}@media screen and (max-width: 782px){.block-editor-block-list__layout .wp-block figure,.block-editor-block-list__layout .wp-block iframe{height:250px}}.embedpress-event .link{color:#0098ab}.embedpress-event .visibility--a11yHide{border:0;clip:rect(0 0 0 0);position:absolute;overflow:hidden;margin:-1px;padding:0;width:1px;height:1px}.embedpress-event .text--small{font-size:14px;margin:0}.embedpress-event .flex{display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box}.embedpress-event .flex--wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.embedpress-event .flex--row{-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.embedpress-event .flex-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;width:auto;min-width:0;-webkit-box-sizing:border-box;box-sizing:border-box}.embedpress-event .flex-item--shrink{-ms-flex-preferred-size:auto;flex-basis:auto;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:auto}.embedpress-event .flex--row>.flex-item:first-child{padding-left:0}.embedpress-event .text--bold{font-weight:700}.embedpress-event h1,.embedpress-event h2,.embedpress-event h3,.embedpress-event h4,.embedpress-event h5,.embedpress-event h6{font-size:inherit}.embedpress-event .ep-event--title{font-size:32px;font-weight:700}.embedpress-event .ep-event--date{color:#757575;font-weight:400;font-size:16px}.embedpress-event .ep-event--host{margin-top:20px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:20px}.ep-event--host .avatar-print{border-radius:50%;height:50px;width:50px}.embedpress-event img.avatar--person{background-image:none !important;background-repeat:no-repeat;background-position:50%;background-size:cover;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:middle}.event-info-hosts-text{padding-left:20px;font-size:16px;font-weight:400}.embedpress-event .event-description{margin-top:20px}.text--sectionTitle{font-size:20px;line-height:28px}.ep-event--attendees{margin-top:50px}.ep-event--attendees>.flex{margin-bottom:20px}.ep-event--attendees .gridList{list-style:none;margin:0 -16px 0 0;padding:0}.ep-event--attendees .gridList-item{width:auto}.ep-event--attendees .gridList--autoHeight--has4>.gridList-item{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ep-event--attendees .groupMember-name{line-height:1.2 !important}.ep-event--attendees .avatar--person{margin-bottom:15px;display:inline-block;border-radius:50%}.ep-event--attendees img.avatar-print{border-radius:50%}.ep-event--attendees .groupMember-role{font-size:12px;color:#757575;padding-top:2px;margin:0}.ep-event--attendees .groupMember{min-height:100%;min-width:128px;padding-left:8px;padding-right:8px}.embedpress-event .align--center{text-align:center}.embedpress-event .card{background:#fff;background-clip:padding-box;background-size:cover;border:1px solid rgba(46,62,72,0.12);border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;min-height:100%;padding:16px 16px 18px;position:relative;white-space:normal}.embedpress-event .card--hasHoverShadow{-webkit-transition:-webkit-box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);transition:-webkit-box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);-o-transition:box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);transition:box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);transition:box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1)}.embedpress-event .ep-event-group-link{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;background:#ffffff;border-radius:8px;padding:20px;margin-bottom:20px;border:1px solid rgba(46,62,72,0.12)}.embedpress-event .ep-event-group--name{padding-left:20px;font-size:14px;line-height:1.45;margin:0;width:70%;word-break:break-word}.embedpress-event .ep-event-group--image{-o-object-fit:cover;object-fit:cover;width:56px;height:56px;border-radius:4px}.embedpress-event .ep-event-time-location{background:#ffffff;border-radius:8px;padding:16px 20px 0 20px;border:1px solid rgba(46,62,72,0.12)}.embedpress-event .ep-event-time-location .ep-event-datetime,.embedpress-event .ep-event-time-location .ep-event-location{padding-bottom:20px}.embedpress-event .ep-event-location .wrap--singleLine--truncate,.embedpress-event .ep-event-time-location .ep-event-datetime{font-size:15px;line-height:1.5;color:#2e3e48;font-style:normal;margin:0}.embedpress-event .ep-event-location address{font-style:normal;margin:0}.embedpress-event .ep-event-location .venueDisplay-venue-address{font-style:normal;color:#757575;margin:0}.embedpress-event .ep-event-location p{line-height:20px}.ep-event--attendees .gridList-item{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;font-size:1rem;margin:0;vertical-align:top;width:50%}.gridList-itemInner{-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;padding:0 16px 16px 0}@media only screen and (min-width: 530px){.ep-event--attendees .gridList--autoHeight--has4>.gridList-item{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}}@media only screen and (min-width: 640px){.embedpress-event .card{padding:18px 18px 20px}.ep-event--attendees .gridList--autoHeight--has4>.gridList-item{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}}.editor-block-list__block[data-align=right]>.editor-block-list__block-edit{float:right}.wp-block[data-align=left],.wp-block[data-align=right]{height:auto !important}@media only screen and (min-width: 482px){.editor-styles-wrapper .wp-block[data-align=right]>*,.editor-styles-wrapper .wp-block[data-align=left]>*{max-width:100% !important}}.editor-styles-wrapper .wp-block[data-align=center]{text-align:center}.editor-styles-wrapper .wp-block[data-align=center]>*{display:inline-block}.editor-styles-wrapper .wp-block::after,.clear::after{content:'';display:block;clear:both;min-height:1px}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}
Gutenberg/dist/blocks.style.build.css CHANGED
@@ -1,2 +1,2 @@
1
  .pdfobject-container{height:600px;width:600px;margin:0 auto}.embedpress-el-powered{text-align:center;margin-top:0 !important;font-size:16px !important;font-weight:700}.embedpress-embed-document iframe,[data-type="embedpress/document"] iframe{margin:0 auto;display:block}.embedpress-document-editmode .components-form-file-upload{display:none !important}
2
- .embedpress-gutenberg-wrapper{margin:30px auto}.embedpress-gutenberg-wrapper iframe{max-width:100%}.ose-the-new-york-times iframe{min-height:500px;max-height:100%}body.page .flexia-wrapper>.content-area{padding:0 !important}.flexia-wrapper.flexia-container>.content-area{margin:0 !important}.flexia-wrapper.flexia-container>.content-area .embedpress-gutenberg-wrapper{margin:0 auto}
1
  .pdfobject-container{height:600px;width:600px;margin:0 auto}.embedpress-el-powered{text-align:center;margin-top:0 !important;font-size:16px !important;font-weight:700}.embedpress-embed-document iframe,[data-type="embedpress/document"] iframe{margin:0 auto;display:block}.embedpress-document-editmode .components-form-file-upload{display:none !important}
2
+ .embedpress-gutenberg-wrapper{margin:30px auto}.embedpress-gutenberg-wrapper iframe{max-width:100%}.embedpress-gutenberg-wrapper.alignright{max-width:100%}.ose-the-new-york-times iframe{min-height:500px;max-height:100%}body.page .flexia-wrapper>.content-area{padding:0 !important}.flexia-wrapper.flexia-container>.content-area{margin:0 !important}.flexia-wrapper.flexia-container>.content-area .embedpress-gutenberg-wrapper{margin:0 auto}@media only screen and (min-width: 482px){.entry-content>.embedpress-gutenberg-wrapper.alignright,.entry-content>.embedpress-gutenberg-wrapper.alignleft,.embedpress-gutenberg-wrapper.alignright,.embedpress-gutenberg-wrapper.alignleft{max-width:100%}}.clear::after{content:'';display:block;clear:both;min-height:1px}
assets/css/embedpress-elementor.css CHANGED
@@ -36,7 +36,10 @@
36
  border: 0;
37
  background-color: #000;
38
  }
39
-
 
 
 
40
 
41
  .embedpress-elements-wrapper .embedpress-wrapper iframe {
42
  height: 100%;
36
  border: 0;
37
  background-color: #000;
38
  }
39
+ .embedpress-elements-wrapper, .embedpress-elements-wrapper .embedpress-wrapper{
40
+ display: inline-block;
41
+ max-width: 100%;
42
+ }
43
 
44
  .embedpress-elements-wrapper .embedpress-wrapper iframe {
45
  height: 100%;
embedpress.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors. 100+ sources supported.
6
  * Author: WPDeveloper
7
  * Author URI: https://wpdeveloper.net
8
- * Version: 3.1.2
9
  * Text Domain: embedpress
10
  * Domain Path: /languages
11
  *
5
  * Description: EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors. 100+ sources supported.
6
  * Author: WPDeveloper
7
  * Author URI: https://wpdeveloper.net
8
+ * Version: 3.1.3
9
  * Text Domain: embedpress
10
  * Domain Path: /languages
11
  *
includes.php CHANGED
@@ -22,7 +22,7 @@ if ( ! defined('EMBEDPRESS_PLG_NAME')) {
22
  }
23
 
24
  if ( ! defined('EMBEDPRESS_VERSION')) {
25
- define('EMBEDPRESS_VERSION', "3.1.2");
26
  /**
27
  * @deprecated 2.2.0
28
  */
22
  }
23
 
24
  if ( ! defined('EMBEDPRESS_VERSION')) {
25
+ define('EMBEDPRESS_VERSION', "3.1.3");
26
  /**
27
  * @deprecated 2.2.0
28
  */
languages/embedpress.pot CHANGED
@@ -2,21 +2,21 @@
2
  # This file is distributed under the same license as the EmbedPress plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: EmbedPress 3.1.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/embedpress\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-08-23T05:24:06+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: embedpress\n"
16
 
17
  #. Plugin Name of the plugin
18
  #: EmbedPress/Elementor/Embedpress_Elementor_Integration.php:38
19
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:23
20
  msgid "EmbedPress"
21
  msgstr ""
22
 
@@ -44,7 +44,7 @@ msgstr ""
44
 
45
  #: EmbedPress/Core.php:508
46
  #: EmbedPress/CoreLegacy.php:309
47
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:132
48
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:18
49
  #: EmbedPress/Plugins/Plugin.php:159
50
  msgid "Settings"
@@ -56,91 +56,100 @@ msgstr ""
56
  msgid "Go Pro"
57
  msgstr ""
58
 
59
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:24
60
  msgid "EmbedPress Document"
61
  msgstr ""
62
 
63
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:66
64
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:83
 
 
 
 
 
65
  msgid "Content Settings"
66
  msgstr ""
67
 
68
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:73
69
  msgid "Document Type"
70
  msgstr ""
71
 
72
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:77
73
  msgid "File"
74
  msgstr ""
75
 
76
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:78
77
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:115
78
  msgid "URL"
79
  msgstr ""
80
 
81
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:87
82
  msgid "Upload File"
83
  msgstr ""
84
 
85
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:104
86
  msgid "Upload a file or pick one from your media library for embed. Supported File Type: PDF, DOC/DOCX, PPT/PPTX, XLS/XLSX etc."
87
  msgstr ""
88
 
89
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:117
90
  msgid "https://your-link.com/file.pdf"
91
  msgstr ""
92
 
93
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:131
94
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1408
95
  #: Gutenberg/src/document/edit.js:201
96
  msgid "Width"
97
  msgstr ""
98
 
99
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:154
100
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1427
101
  #: Gutenberg/src/document/edit.js:213
102
  msgid "Height"
103
  msgstr ""
104
 
105
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:176
 
106
  msgid "Alignment"
107
  msgstr ""
108
 
109
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:180
 
110
  msgid "Left"
111
  msgstr ""
112
 
113
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:184
 
114
  msgid "Center"
115
  msgstr ""
116
 
117
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:188
 
118
  msgid "Right"
119
  msgstr ""
120
 
121
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:199
122
  msgid "Powered By"
123
  msgstr ""
124
 
125
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:201
126
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:446
127
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:466
128
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:482
129
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:498
130
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:515
131
  #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:531
132
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:547
133
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:827
134
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:839
135
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:870
136
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:899
137
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:917
138
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:933
139
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:951
140
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:968
141
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:985
142
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1001
143
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1017
144
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:78
145
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:96
146
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:113
@@ -148,30 +157,30 @@ msgstr ""
148
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:144
149
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:163
150
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:182
151
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:127
152
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:156
153
  msgid "Show"
154
  msgstr ""
155
 
156
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:202
157
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:445
158
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:465
159
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:481
160
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:497
161
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:514
162
  #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:530
163
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:546
164
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:826
165
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:838
166
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:869
167
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:898
168
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:916
169
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:932
170
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:950
171
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:967
172
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:984
173
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1000
174
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1016
175
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:74
176
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:92
177
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:109
@@ -179,261 +188,263 @@ msgstr ""
179
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:140
180
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:159
181
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:178
182
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:128
183
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:155
184
  msgid "Hide"
185
  msgstr ""
186
 
187
- #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:257
188
- msgid "Powered By EmbedPress"
 
 
 
 
 
 
189
  msgstr ""
190
 
191
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:76
192
- msgid "<sup class=\"embedpress-pro-label\" style=\"color:red\">Pro</sup>"
193
  msgstr ""
194
 
195
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:91
196
  msgid "Source Name"
197
  msgstr ""
198
 
199
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:96
200
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:380
201
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:398
202
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:216
203
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:232
204
  msgid "Default"
205
  msgstr ""
206
 
207
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:97
208
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:42
209
  msgid "YouTube"
210
  msgstr ""
211
 
212
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:98
213
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:48
214
  msgid "Vimeo"
215
  msgstr ""
216
 
217
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:99
218
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:66
219
  msgid "Dailymotion"
220
  msgstr ""
221
 
222
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:100
223
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:54
224
  msgid "Wistia"
225
  msgstr ""
226
 
227
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:101
228
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:60
229
  msgid "Twitch"
230
  msgstr ""
231
 
232
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:102
233
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:72
234
  msgid "SoundCloud"
235
  msgstr ""
236
 
237
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:110
238
  msgid "Embedded Link"
239
  msgstr ""
240
 
241
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:115
242
  msgid "Enter your Link"
243
  msgstr ""
244
 
245
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:123
246
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1170
247
  msgid "Player Background"
248
  msgstr ""
249
 
250
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:124
251
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1171
252
  #: EmbedPress/Ends/Back/Settings/templates/spotify.php:31
253
  msgid "Dynamic option will use the most vibrant color from the album art."
254
  msgstr ""
255
 
256
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:129
257
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1176
258
  msgid "Dynamic"
259
  msgstr ""
260
 
261
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:130
262
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1177
263
  msgid "Black & White"
264
  msgstr ""
265
 
266
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:141
267
  msgid "Start Time"
268
  msgstr ""
269
 
270
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:143
271
  msgid "Specify a start time (in seconds)"
272
  msgstr ""
273
 
274
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:165
275
- msgid "Go Premium for More Features"
276
- msgstr ""
277
-
278
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:172
279
- msgid "Unlock more possibilities"
280
- msgstr ""
281
-
282
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:197
283
  msgid "End Time"
284
  msgstr ""
285
 
286
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:199
287
  msgid "Specify an end time (in seconds)"
288
  msgstr ""
289
 
290
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:206
291
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:476
292
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:573
293
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:893
294
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1029
295
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:37
296
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:51
297
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:32
298
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:34
299
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:116
300
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:45
301
  msgid "Auto Play"
302
  msgstr ""
303
 
304
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:217
305
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:618
306
  msgid "Player Options"
307
  msgstr ""
308
 
309
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:225
310
  msgid "Controls"
311
  msgstr ""
312
 
313
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:230
314
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:97
315
  msgid "Display immediately"
316
  msgstr ""
317
 
318
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:231
319
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:98
320
  msgid "Display after user initiation"
321
  msgstr ""
322
 
323
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:232
324
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:99
325
  msgid "Hide controls"
326
  msgstr ""
327
 
328
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:240
329
  msgid "Fullscreen button"
330
  msgstr ""
331
 
332
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:254
333
  msgid "Video Annotations"
334
  msgstr ""
335
 
336
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:259
337
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:301
338
  msgid "Display"
339
  msgstr ""
340
 
341
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:260
342
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:302
343
  msgid "Do Not Display"
344
  msgstr ""
345
 
346
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:269
347
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:61
348
  msgid "Progress Bar Color"
349
  msgstr ""
350
 
351
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:274
352
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:66
353
  msgid "Red"
354
  msgstr ""
355
 
356
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:275
357
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:67
358
  msgid "White"
359
  msgstr ""
360
 
361
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:283
362
  msgid "Closed Captions %s"
363
  msgstr ""
364
 
365
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:296
366
  msgid "Modest Branding %s"
367
  msgstr ""
368
 
369
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:315
370
- msgid "Related Videos %s"
 
 
 
 
371
  msgstr ""
372
 
373
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:333
374
- msgid "YouTube Subscriber Option"
375
  msgstr ""
376
 
377
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:344
378
  msgid "Channel Link or ID %s"
379
  msgstr ""
380
 
381
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:349
382
  msgid "Enter Channel Link or ID"
383
  msgstr ""
384
 
385
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:359
386
  msgid "Subscription Text %s"
387
  msgstr ""
388
 
389
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:364
390
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:202
391
  msgid "Eg. Don't miss out! Subscribe"
392
  msgstr ""
393
 
394
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:375
395
  msgid "Layout %s"
396
  msgstr ""
397
 
398
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:381
399
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:217
400
  msgid "Full"
401
  msgstr ""
402
 
403
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:393
404
  msgid "Theme %s"
405
  msgstr ""
406
 
407
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:399
408
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:850
409
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1192
410
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:70
411
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:233
412
  msgid "Dark"
413
  msgstr ""
414
 
415
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:411
416
  msgid "Subscriber Count %s"
417
  msgstr ""
418
 
419
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:431
420
- msgid "YouTube Live Chat Option"
421
  msgstr ""
422
 
423
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:440
424
- msgid "Show YouTube Live Chat"
425
  msgstr ""
426
 
427
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:460
428
  msgid "Logo %s"
429
  msgstr ""
430
 
431
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:492
432
  msgid "Play On Mobile"
433
  msgstr ""
434
 
435
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:509
436
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:71
437
  msgid "Mute"
438
  msgstr ""
439
 
@@ -441,328 +452,260 @@ msgstr ""
441
  msgid "Player Controls"
442
  msgstr ""
443
 
444
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:541
445
  msgid "Video Info"
446
  msgstr ""
447
 
448
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:559
449
  msgid "Control Color"
450
  msgstr ""
451
 
452
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:587
453
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:880
454
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1044
455
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:44
456
  msgid "Scheme"
457
  msgstr ""
458
 
459
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:602
460
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:174
461
  msgid "Captions Enabled By Default"
462
  msgstr ""
463
 
464
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:632
465
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:39
466
  msgid "Fullscreen Button"
467
  msgstr ""
468
 
469
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:646
470
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:71
471
  msgid "Small Play Button"
472
  msgstr ""
473
 
474
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:663
475
  msgid "Resumable"
476
  msgstr ""
477
 
478
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:678
479
  msgid "Focus"
480
  msgstr ""
481
 
482
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:693
483
  msgid "Captions %s"
484
  msgstr ""
485
 
486
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:707
487
  msgid "Playbar "
488
  msgstr ""
489
 
490
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:721
491
  msgid "Volume Control %s"
492
  msgstr ""
493
 
494
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:737
495
  msgid "Volume %s"
496
  msgstr ""
497
 
498
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:759
499
  msgid "Rewind"
500
  msgstr ""
501
 
502
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:773
503
  msgid "Rewind time"
504
  msgstr ""
505
 
506
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:800
507
  msgid "Autoplay"
508
  msgstr ""
509
 
510
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:802
511
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:813
512
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:42
513
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:59
514
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:76
515
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:95
516
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:113
517
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:131
518
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:34
519
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:56
520
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:37
521
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:53
522
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:83
523
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:99
524
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:39
525
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:55
526
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:72
527
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:89
528
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:114
529
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:130
530
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:146
531
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:44
532
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:60
533
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:76
534
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:92
535
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:121
536
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:146
537
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:162
538
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:179
539
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:196
540
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:212
541
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:50
542
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:79
543
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:111
544
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:172
545
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:248
546
  msgid "No"
547
  msgstr ""
548
 
549
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:803
550
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:814
551
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:46
552
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:63
553
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:80
554
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:99
555
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:117
556
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:135
557
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:38
558
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:60
559
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:41
560
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:57
561
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:87
562
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:103
563
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:43
564
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:59
565
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:76
566
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:93
567
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:118
568
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:134
569
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:150
570
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:48
571
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:64
572
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:80
573
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:96
574
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:125
575
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:150
576
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:166
577
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:183
578
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:200
579
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:216
580
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:54
581
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:83
582
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:115
583
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:176
584
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:252
585
  msgid "Yes"
586
  msgstr ""
587
 
588
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:811
589
  msgid "Allow Full Screen Video"
590
  msgstr ""
591
 
592
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:824
593
  msgid "Show Chat %s"
594
  msgstr ""
595
 
596
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:836
597
  msgid "Mute on start"
598
  msgstr ""
599
 
600
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:846
601
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:65
602
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:227
603
  msgid "Theme"
604
  msgstr ""
605
 
606
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:851
607
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1191
608
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:71
609
  msgid "Light"
610
  msgstr ""
611
 
612
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:864
613
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:29
614
  msgid "Visual Player"
615
  msgstr ""
616
 
617
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:911
618
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:104
619
  msgid "Share Button"
620
  msgstr ""
621
 
622
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:927
623
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:119
624
  msgid "Comments"
625
  msgstr ""
626
 
627
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:945
628
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:135
629
  msgid "Artwork"
630
  msgstr ""
631
 
632
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:962
633
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:154
634
  msgid "Play Count"
635
  msgstr ""
636
 
637
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:979
638
  msgid "User Name"
639
  msgstr ""
640
 
641
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:995
642
  msgid "Buy Button %s"
643
  msgstr ""
644
 
645
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1011
646
  msgid "Download Button %s"
647
  msgstr ""
648
 
649
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1057
650
  msgid "Author Information"
651
  msgstr ""
652
 
653
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1069
654
  msgid "Title"
655
  msgstr ""
656
 
657
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1085
658
  msgid "Author"
659
  msgstr ""
660
 
661
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1099
662
  msgid "Avatar"
663
  msgstr ""
664
 
665
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1113
666
  msgid "Loop %s"
667
  msgstr ""
668
 
669
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1128
670
  msgid "Auto Pause %s"
671
  msgstr ""
672
 
673
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1143
674
  msgid "DNT %s"
675
  msgstr ""
676
 
677
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1148
678
  msgid "Set this parameter to \"yes\" will block the player from tracking any session data, including all cookies"
679
  msgstr ""
680
 
681
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1186
682
  msgid "Follow Widget Background"
683
  msgstr ""
684
 
685
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1209
686
- #: EmbedPress/Includes/Traits/Branding.php:26
687
- msgid "Custom Logo & CTA"
688
- msgstr ""
689
-
690
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1218
691
- #: EmbedPress/Includes/Traits/Branding.php:34
692
- msgid "Custom Logo %s"
693
- msgstr ""
694
-
695
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1219
696
- #: EmbedPress/Includes/Traits/Branding.php:35
697
- msgid "Leave it empty to hide it"
698
- msgstr ""
699
-
700
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1240
701
- #: EmbedPress/Includes/Traits/Branding.php:55
702
- msgid "Logo X Position"
703
- msgstr ""
704
-
705
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1241
706
- #: EmbedPress/Includes/Traits/Branding.php:56
707
- msgid "Change this number to move your logo in horizontal direction."
708
- msgstr ""
709
-
710
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1269
711
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:165
712
- #: EmbedPress/Includes/Traits/Branding.php:84
713
- msgid "Logo Y Position (%)"
714
- msgstr ""
715
-
716
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1270
717
- #: EmbedPress/Includes/Traits/Branding.php:85
718
- msgid "Change this number to move your logo in vertical direction."
719
- msgstr ""
720
-
721
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1304
722
- #: EmbedPress/Includes/Traits/Branding.php:119
723
- msgid "Normal"
724
- msgstr ""
725
-
726
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1310
727
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1338
728
- #: EmbedPress/Includes/Traits/Branding.php:125
729
- #: EmbedPress/Includes/Traits/Branding.php:153
730
- msgid "Logo Opacity"
731
- msgstr ""
732
-
733
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1332
734
- #: EmbedPress/Includes/Traits/Branding.php:147
735
- msgid "Hover"
736
- msgstr ""
737
-
738
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1363
739
- #: EmbedPress/Includes/Traits/Branding.php:178
740
- msgid "CTA link for Logo"
741
- msgstr ""
742
-
743
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1364
744
- #: EmbedPress/Includes/Traits/Branding.php:179
745
- msgid "You can show the logo inside a link. Leave it empty to hide it"
746
- msgstr ""
747
-
748
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1369
749
- #: EmbedPress/Includes/Traits/Branding.php:184
750
- msgid "https://your-link.com"
751
- msgstr ""
752
-
753
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1381
754
  msgid "Style"
755
  msgstr ""
756
 
757
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1446
758
  msgid "Margin"
759
  msgstr ""
760
 
761
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1457
762
  msgid "Padding"
763
  msgstr ""
764
 
765
- #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1469
766
  msgid "Background"
767
  msgstr ""
768
 
@@ -792,119 +735,116 @@ msgstr ""
792
  msgid "Custom Logo"
793
  msgstr ""
794
 
795
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:58
796
- msgid "For Document"
797
- msgstr ""
798
-
799
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:65
800
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:155
801
  #: EmbedPress/Ends/Back/Settings/templates/general.php:64
802
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:189
803
  #: EmbedPress/Ends/Back/Settings/templates/spotify.php:84
804
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:110
805
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:157
806
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:230
807
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:261
808
  msgid "Save Changes"
809
  msgstr ""
810
 
811
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:125
812
  msgid "%s Custom Branding"
813
  msgstr ""
814
 
815
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:139
816
  msgid "Click To Upload"
817
  msgstr ""
818
 
819
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:151
820
  msgid "Logo Opacity (%)"
821
  msgstr ""
822
 
823
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:158
824
  msgid "Logo X Position (%)"
825
  msgstr ""
826
 
827
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:172
 
 
 
 
828
  msgid "Call to Action Link"
829
  msgstr ""
830
 
831
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:176
832
  msgid "You may link the logo to any CTA link."
833
  msgstr ""
834
 
835
- #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:181
836
  msgid "Live Preview"
837
  msgstr ""
838
 
839
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:20
840
  msgid "Dailymotion Settings"
841
  msgstr ""
842
 
843
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:27
844
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:24
845
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:26
846
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:31
847
  #: EmbedPress/Ends/Back/Settings/templates/youtube.php:37
848
  msgid "Start Time (In Seconds)"
849
  msgstr ""
850
 
851
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:30
852
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:27
853
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:29
854
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:34
855
  #: EmbedPress/Ends/Back/Settings/templates/youtube.php:40
856
- msgid "You can put a custom time in seconds to start video. Example: 500"
857
  msgstr ""
858
 
859
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:49
860
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:63
861
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:44
862
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:46
863
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:128
864
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:57
865
  msgid "Automatically start to play the videos when the player loads."
866
  msgstr ""
867
 
868
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:54
869
  msgid "Autoplay On Mobile"
870
  msgstr ""
871
 
872
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:66
873
  msgid "You can control autoplay on mobile. Only works if Autoplay option is enabled."
874
  msgstr ""
875
 
876
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:83
877
  msgid "Mute the video that is auto played"
878
  msgstr ""
879
 
880
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:90
881
  msgid "Display Player Controls"
882
  msgstr ""
883
 
884
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:102
885
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:102
886
  msgid "Indicates whether the video player controls are displayed."
887
  msgstr ""
888
 
889
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:108
890
  msgid "Display Video Info"
891
  msgstr ""
892
 
893
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:120
894
  msgid "Indicates whether the video information is displayed."
895
  msgstr ""
896
 
897
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:126
898
  msgid "Show Logo"
899
  msgstr ""
900
 
901
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:145
902
  msgid "Controls Color"
903
  msgstr ""
904
 
905
- #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:149
906
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:105
907
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:136
908
  msgid "Specify the color of the video controls."
909
  msgstr ""
910
 
@@ -1100,170 +1040,176 @@ msgstr ""
1100
  msgid "To add follow widget, please add '%s:follow_widget%s' to the end of an artist URL. For details, check out this %s documentation%s."
1101
  msgstr ""
1102
 
1103
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:17
1104
  msgid "Twitch Settings"
1105
  msgstr ""
1106
 
1107
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:48
 
 
 
 
 
 
1108
  msgid "Show Chat"
1109
  msgstr ""
1110
 
1111
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:61
1112
  msgid "You can show or hide chat using this setting"
1113
  msgstr ""
1114
 
1115
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:74
1116
  msgid "Set dark or light theme for the twitch comment."
1117
  msgstr ""
1118
 
1119
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:78
1120
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:106
1121
  msgid "Enable Fullscreen Button"
1122
  msgstr ""
1123
 
1124
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:90
1125
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:118
1126
  msgid "Indicates whether the fullscreen button is enabled."
1127
  msgstr ""
1128
 
1129
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:94
1130
  msgid "Mute On Start"
1131
  msgstr ""
1132
 
1133
- #: EmbedPress/Ends/Back/Settings/templates/twitch.php:106
1134
  msgid "Set it to Yes to mute the video on start."
1135
  msgstr ""
1136
 
1137
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:19
1138
  msgid "Vimeo Settings"
1139
  msgstr ""
1140
 
1141
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:50
1142
  msgid "Loop"
1143
  msgstr ""
1144
 
1145
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:63
1146
  msgid "Play the video again automatically when it reaches the end."
1147
  msgstr ""
1148
 
1149
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:67
1150
  msgid "Auto Pause"
1151
  msgstr ""
1152
 
1153
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:80
1154
  msgid "Pause this video automatically when another one plays."
1155
  msgstr ""
1156
 
1157
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:84
1158
  msgid "DNT"
1159
  msgstr ""
1160
 
1161
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:97
1162
  msgid "Setting this parameter to \"yes\" will block the player from tracking any session data, including all cookies."
1163
  msgstr ""
1164
 
1165
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:101
1166
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:133
1167
  msgid "Color"
1168
  msgstr ""
1169
 
1170
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:109
1171
  msgid "Display Title"
1172
  msgstr ""
1173
 
1174
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:121
1175
  msgid "Indicates whether the title is displayed."
1176
  msgstr ""
1177
 
1178
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:125
1179
  msgid "Display Author"
1180
  msgstr ""
1181
 
1182
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:137
1183
  msgid "Indicates whether the author is displayed."
1184
  msgstr ""
1185
 
1186
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:141
1187
  msgid "Display Avatar"
1188
  msgstr ""
1189
 
1190
- #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:153
1191
  msgid "Indicates whether the avatar is displayed."
1192
  msgstr ""
1193
 
1194
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:23
1195
  msgid "Wistia Settings"
1196
  msgstr ""
1197
 
1198
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:51
1199
  msgid "Indicates whether the fullscreen button is visible."
1200
  msgstr ""
1201
 
1202
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:55
1203
  msgid "Playbar"
1204
  msgstr ""
1205
 
1206
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:67
1207
  msgid "Indicates whether the playbar is visible."
1208
  msgstr ""
1209
 
1210
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:83
1211
  msgid "Indicates whether the small play button is visible on the bottom left."
1212
  msgstr ""
1213
 
1214
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:87
1215
  msgid "Volume Control"
1216
  msgstr ""
1217
 
1218
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:100
1219
  msgid "Indicates whether the volume control is visible."
1220
  msgstr ""
1221
 
1222
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:105
1223
  msgid "Volume"
1224
  msgstr ""
1225
 
1226
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:109
1227
  msgid "Start the video with a custom volume level. Set values between 0 and 100."
1228
  msgstr ""
1229
 
1230
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:141
1231
  msgid "Plugin: Resumable"
1232
  msgstr ""
1233
 
1234
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:153
1235
  msgid "Indicates whether the Resumable plugin is active. Allow to resume the video or start from the beginning."
1236
  msgstr ""
1237
 
1238
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:157
1239
  msgid "Plugin: Captions"
1240
  msgstr ""
1241
 
1242
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:170
1243
  msgid "Indicates whether the Captions plugin is active."
1244
  msgstr ""
1245
 
1246
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:187
1247
  msgid "Indicates whether the Captions are enabled by default."
1248
  msgstr ""
1249
 
1250
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:203
1251
  msgid "Indicates whether the Focus plugin is active."
1252
  msgstr ""
1253
 
1254
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:207
1255
  msgid "Plugin: Rewind"
1256
  msgstr ""
1257
 
1258
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:219
1259
  msgid "Indicates whether the Rewind plugin is active."
1260
  msgstr ""
1261
 
1262
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:223
1263
  msgid "Rewind Time (In Seconds)"
1264
  msgstr ""
1265
 
1266
- #: EmbedPress/Ends/Back/Settings/templates/wistia.php:226
1267
  msgid "The amount of time to rewind, in seconds."
1268
  msgstr ""
1269
 
@@ -1271,95 +1217,103 @@ msgstr ""
1271
  msgid "YouTube Settings"
1272
  msgstr ""
1273
 
1274
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:70
 
 
 
 
 
 
 
 
1275
  msgid "Specifies the color that will be used in the player's video progress bar to highlight the amount of the video that the viewer has already seen. %s Note: Setting the color to white will disable the Modest Branding option (causing a YouTube logo to be displayed in the control bar)."
1276
  msgstr ""
1277
 
1278
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:74
1279
  msgid "Force Closed Captions"
1280
  msgstr ""
1281
 
1282
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:88
1283
  msgid "Setting this option to %s causes closed captions to be shown by default, even if the user has turned captions off. This will be based on user preference otherwise."
1284
  msgstr ""
1285
 
1286
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:92
1287
  msgid "Display Controls"
1288
  msgstr ""
1289
 
1290
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:122
1291
  msgid "Display Video Annotations"
1292
  msgstr ""
1293
 
1294
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:131
1295
  msgid "Indicates whether video annotations are displayed."
1296
  msgstr ""
1297
 
1298
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:135
1299
  msgid "Display Related Videos"
1300
  msgstr ""
1301
 
1302
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:140
1303
  msgid "From the same channel of the video"
1304
  msgstr ""
1305
 
1306
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:141
1307
  msgid "Based on User's watch history"
1308
  msgstr ""
1309
 
1310
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:144
1311
  msgid "Indicates how the player should show related videos when playback of the video pauses or ends."
1312
  msgstr ""
1313
 
1314
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:150
1315
  msgid "Modest Branding"
1316
  msgstr ""
1317
 
1318
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:161
1319
  msgid "Indicates whether the player should display a YouTube logo in the control bar."
1320
  msgstr ""
1321
 
1322
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:167
1323
  msgid " Live Chat"
1324
  msgstr ""
1325
 
1326
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:181
1327
  msgid "Enabling this option will show chat on all YouTube videos. However, YouTube Live Chat feature only works with Live Streaming videos."
1328
  msgstr ""
1329
 
1330
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:186
1331
  msgid "Subscription Button"
1332
  msgstr ""
1333
 
1334
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:189
1335
  msgid "Channel Link or ID"
1336
  msgstr ""
1337
 
1338
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:193
1339
  msgid "You can use either your channel link or channel ID to show the subscription button."
1340
  msgstr ""
1341
 
1342
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:200
1343
  msgid "Subscription Text"
1344
  msgstr ""
1345
 
1346
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:204
1347
  msgid "Optionally you can output some CTA text before the subscriber button."
1348
  msgstr ""
1349
 
1350
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:211
1351
  msgid "Layout"
1352
  msgstr ""
1353
 
1354
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:222
1355
  msgid "Full layout shows channel image. Default layout shows only channel name and subscription button."
1356
  msgstr ""
1357
 
1358
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:238
1359
  msgid "Default theme is good for white background. Dark theme is good for black background."
1360
  msgstr ""
1361
 
1362
- #: EmbedPress/Ends/Back/Settings/templates/youtube.php:243
1363
  msgid "Show Subscriber Count"
1364
  msgstr ""
1365
 
@@ -1431,24 +1385,77 @@ msgstr ""
1431
  msgid "Just Deactivate"
1432
  msgstr ""
1433
 
1434
- #: EmbedPress/Includes/Classes/Feature_Enhancer.php:385
1435
- #: EmbedPress/Includes/Classes/Feature_Enhancer.php:734
1436
- #: Gutenberg/plugin.php:55
1437
  msgid "Watch from the beginning"
1438
  msgstr ""
1439
 
1440
- #: EmbedPress/Includes/Classes/Feature_Enhancer.php:386
1441
- #: EmbedPress/Includes/Classes/Feature_Enhancer.php:735
1442
- #: Gutenberg/plugin.php:56
1443
  msgid "Skip to where you left off"
1444
  msgstr ""
1445
 
1446
- #: EmbedPress/Includes/Classes/Feature_Enhancer.php:387
1447
- #: EmbedPress/Includes/Classes/Feature_Enhancer.php:736
1448
- #: Gutenberg/plugin.php:57
1449
  msgid "It looks like you've watched<br />part of this video before!"
1450
  msgstr ""
1451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1452
  #: EmbedPress/Includes/Traits/Shared.php:26
1453
  msgid "Want to help make <strong>EmbedPress</strong> even more awesome? You can get a <strong>10% discount coupon</strong> for Premium extensions if you allow us to track the usage."
1454
  msgstr ""
2
  # This file is distributed under the same license as the EmbedPress plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: EmbedPress 3.1.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/embedpress\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-09-08T12:10:14+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: embedpress\n"
16
 
17
  #. Plugin Name of the plugin
18
  #: EmbedPress/Elementor/Embedpress_Elementor_Integration.php:38
19
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:25
20
  msgid "EmbedPress"
21
  msgstr ""
22
 
44
 
45
  #: EmbedPress/Core.php:508
46
  #: EmbedPress/CoreLegacy.php:309
47
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:156
48
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:18
49
  #: EmbedPress/Plugins/Plugin.php:159
50
  msgid "Settings"
56
  msgid "Go Pro"
57
  msgstr ""
58
 
59
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:26
60
  msgid "EmbedPress Document"
61
  msgstr ""
62
 
63
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:62
64
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:78
65
+ msgid "Pro"
66
+ msgstr ""
67
+
68
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:69
69
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:85
70
  msgid "Content Settings"
71
  msgstr ""
72
 
73
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:76
74
  msgid "Document Type"
75
  msgstr ""
76
 
77
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:80
78
  msgid "File"
79
  msgstr ""
80
 
81
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:81
82
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:118
83
  msgid "URL"
84
  msgstr ""
85
 
86
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:90
87
  msgid "Upload File"
88
  msgstr ""
89
 
90
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:107
91
  msgid "Upload a file or pick one from your media library for embed. Supported File Type: PDF, DOC/DOCX, PPT/PPTX, XLS/XLSX etc."
92
  msgstr ""
93
 
94
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:120
95
  msgid "https://your-link.com/file.pdf"
96
  msgstr ""
97
 
98
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:134
99
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1228
100
  #: Gutenberg/src/document/edit.js:201
101
  msgid "Width"
102
  msgstr ""
103
 
104
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:157
105
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1247
106
  #: Gutenberg/src/document/edit.js:213
107
  msgid "Height"
108
  msgstr ""
109
 
110
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:180
111
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1288
112
  msgid "Alignment"
113
  msgstr ""
114
 
115
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:184
116
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1292
117
  msgid "Left"
118
  msgstr ""
119
 
120
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:188
121
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1296
122
  msgid "Center"
123
  msgstr ""
124
 
125
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:192
126
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1300
127
  msgid "Right"
128
  msgstr ""
129
 
130
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:204
131
  msgid "Powered By"
132
  msgstr ""
133
 
134
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:206
135
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:448
136
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:469
137
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:485
138
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:500
139
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:516
140
  #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:531
141
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:546
142
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:825
143
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:837
144
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:868
145
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:897
146
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:915
147
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:931
148
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:949
149
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:966
150
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:983
151
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:999
152
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1015
153
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:78
154
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:96
155
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:113
157
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:144
158
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:163
159
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:182
160
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:135
161
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:164
162
  msgid "Show"
163
  msgstr ""
164
 
165
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:207
166
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:447
167
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:468
168
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:484
169
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:499
170
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:515
171
  #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:530
172
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:545
173
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:824
174
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:836
175
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:867
176
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:896
177
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:914
178
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:930
179
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:948
180
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:965
181
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:982
182
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:998
183
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1014
184
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:74
185
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:92
186
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:109
188
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:140
189
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:159
190
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:178
191
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:136
192
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:163
193
  msgid "Hide"
194
  msgstr ""
195
 
196
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:221
197
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:167
198
+ msgid "Go Premium for More Features"
199
+ msgstr ""
200
+
201
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:228
202
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:174
203
+ msgid "Unlock more possibilities"
204
  msgstr ""
205
 
206
+ #: EmbedPress/Elementor/Widgets/Embedpress_Document.php:291
207
+ msgid "Powered By EmbedPress"
208
  msgstr ""
209
 
210
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:93
211
  msgid "Source Name"
212
  msgstr ""
213
 
214
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:98
215
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:382
216
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:400
217
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:224
218
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:240
219
  msgid "Default"
220
  msgstr ""
221
 
222
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:99
223
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:42
224
  msgid "YouTube"
225
  msgstr ""
226
 
227
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:100
228
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:48
229
  msgid "Vimeo"
230
  msgstr ""
231
 
232
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:101
233
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:66
234
  msgid "Dailymotion"
235
  msgstr ""
236
 
237
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:102
238
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:54
239
  msgid "Wistia"
240
  msgstr ""
241
 
242
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:103
243
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:60
244
  msgid "Twitch"
245
  msgstr ""
246
 
247
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:104
248
  #: EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php:72
249
  msgid "SoundCloud"
250
  msgstr ""
251
 
252
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:112
253
  msgid "Embedded Link"
254
  msgstr ""
255
 
256
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:117
257
  msgid "Enter your Link"
258
  msgstr ""
259
 
260
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:125
261
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1168
262
  msgid "Player Background"
263
  msgstr ""
264
 
265
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:126
266
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1169
267
  #: EmbedPress/Ends/Back/Settings/templates/spotify.php:31
268
  msgid "Dynamic option will use the most vibrant color from the album art."
269
  msgstr ""
270
 
271
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:131
272
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1174
273
  msgid "Dynamic"
274
  msgstr ""
275
 
276
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:132
277
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1175
278
  msgid "Black & White"
279
  msgstr ""
280
 
281
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:143
282
  msgid "Start Time"
283
  msgstr ""
284
 
285
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:145
286
  msgid "Specify a start time (in seconds)"
287
  msgstr ""
288
 
289
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:199
 
 
 
 
 
 
 
 
290
  msgid "End Time"
291
  msgstr ""
292
 
293
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:201
294
  msgid "Specify an end time (in seconds)"
295
  msgstr ""
296
 
297
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:208
298
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:479
299
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:571
300
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:891
301
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1027
302
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:38
303
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:51
304
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:33
305
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:35
306
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:117
307
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:53
308
  msgid "Auto Play"
309
  msgstr ""
310
 
311
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:219
312
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:616
313
  msgid "Player Options"
314
  msgstr ""
315
 
316
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:227
317
  msgid "Controls"
318
  msgstr ""
319
 
320
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:232
321
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:105
322
  msgid "Display immediately"
323
  msgstr ""
324
 
325
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:233
326
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:106
327
  msgid "Display after user initiation"
328
  msgstr ""
329
 
330
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:234
331
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:107
332
  msgid "Hide controls"
333
  msgstr ""
334
 
335
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:242
336
  msgid "Fullscreen button"
337
  msgstr ""
338
 
339
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:256
340
  msgid "Video Annotations"
341
  msgstr ""
342
 
343
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:261
344
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:303
345
  msgid "Display"
346
  msgstr ""
347
 
348
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:262
349
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:304
350
  msgid "Do Not Display"
351
  msgstr ""
352
 
353
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:271
354
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:69
355
  msgid "Progress Bar Color"
356
  msgstr ""
357
 
358
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:276
359
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:74
360
  msgid "Red"
361
  msgstr ""
362
 
363
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:277
364
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:75
365
  msgid "White"
366
  msgstr ""
367
 
368
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:285
369
  msgid "Closed Captions %s"
370
  msgstr ""
371
 
372
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:298
373
  msgid "Modest Branding %s"
374
  msgstr ""
375
 
376
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:317
377
+ msgid "Related Videos"
378
+ msgstr ""
379
+
380
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:318
381
+ msgid "Set it to \"Yes\" to display related videos from all channels. Otherwise, related videos will show from the same channel."
382
  msgstr ""
383
 
384
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:335
385
+ msgid "YouTube Subscriber"
386
  msgstr ""
387
 
388
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:346
389
  msgid "Channel Link or ID %s"
390
  msgstr ""
391
 
392
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:351
393
  msgid "Enter Channel Link or ID"
394
  msgstr ""
395
 
396
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:361
397
  msgid "Subscription Text %s"
398
  msgstr ""
399
 
400
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:366
401
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:210
402
  msgid "Eg. Don't miss out! Subscribe"
403
  msgstr ""
404
 
405
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:377
406
  msgid "Layout %s"
407
  msgstr ""
408
 
409
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:383
410
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:225
411
  msgid "Full"
412
  msgstr ""
413
 
414
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:395
415
  msgid "Theme %s"
416
  msgstr ""
417
 
418
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:401
419
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:848
420
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1190
421
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:71
422
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:241
423
  msgid "Dark"
424
  msgstr ""
425
 
426
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:413
427
  msgid "Subscriber Count %s"
428
  msgstr ""
429
 
430
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:433
431
+ msgid "YouTube Live Chat"
432
  msgstr ""
433
 
434
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:442
435
+ msgid "Show YouTube Live Chat %s"
436
  msgstr ""
437
 
438
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:463
439
  msgid "Logo %s"
440
  msgstr ""
441
 
442
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:494
443
  msgid "Play On Mobile"
444
  msgstr ""
445
 
446
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:510
447
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:72
448
  msgid "Mute"
449
  msgstr ""
450
 
452
  msgid "Player Controls"
453
  msgstr ""
454
 
455
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:540
456
  msgid "Video Info"
457
  msgstr ""
458
 
459
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:555
460
  msgid "Control Color"
461
  msgstr ""
462
 
463
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:585
464
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:878
465
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1042
466
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:44
467
  msgid "Scheme"
468
  msgstr ""
469
 
470
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:600
471
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:175
472
  msgid "Captions Enabled By Default"
473
  msgstr ""
474
 
475
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:630
476
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:40
477
  msgid "Fullscreen Button"
478
  msgstr ""
479
 
480
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:644
481
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:72
482
  msgid "Small Play Button"
483
  msgstr ""
484
 
485
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:661
486
  msgid "Resumable"
487
  msgstr ""
488
 
489
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:676
490
  msgid "Focus"
491
  msgstr ""
492
 
493
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:691
494
  msgid "Captions %s"
495
  msgstr ""
496
 
497
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:705
498
  msgid "Playbar "
499
  msgstr ""
500
 
501
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:719
502
  msgid "Volume Control %s"
503
  msgstr ""
504
 
505
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:735
506
  msgid "Volume %s"
507
  msgstr ""
508
 
509
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:757
510
  msgid "Rewind"
511
  msgstr ""
512
 
513
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:771
514
  msgid "Rewind time"
515
  msgstr ""
516
 
517
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:798
518
  msgid "Autoplay"
519
  msgstr ""
520
 
521
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:800
522
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:811
523
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:43
524
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:60
525
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:77
526
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:96
527
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:114
528
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:132
529
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:34
530
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:56
531
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:38
532
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:54
533
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:84
534
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:100
535
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:40
536
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:56
537
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:73
538
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:90
539
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:115
540
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:131
541
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:147
542
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:45
543
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:61
544
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:77
545
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:93
546
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:122
547
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:147
548
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:163
549
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:180
550
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:197
551
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:213
552
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:58
553
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:87
554
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:119
555
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:180
556
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:256
557
  msgid "No"
558
  msgstr ""
559
 
560
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:801
561
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:812
562
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:47
563
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:64
564
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:81
565
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:100
566
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:118
567
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:136
568
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:38
569
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:60
570
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:42
571
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:58
572
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:88
573
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:104
574
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:44
575
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:60
576
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:77
577
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:94
578
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:119
579
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:135
580
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:151
581
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:49
582
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:65
583
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:81
584
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:97
585
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:126
586
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:151
587
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:167
588
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:184
589
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:201
590
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:217
591
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:62
592
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:91
593
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:123
594
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:184
595
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:260
596
  msgid "Yes"
597
  msgstr ""
598
 
599
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:809
600
  msgid "Allow Full Screen Video"
601
  msgstr ""
602
 
603
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:822
604
  msgid "Show Chat %s"
605
  msgstr ""
606
 
607
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:834
608
  msgid "Mute on start"
609
  msgstr ""
610
 
611
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:844
612
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:66
613
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:235
614
  msgid "Theme"
615
  msgstr ""
616
 
617
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:849
618
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1189
619
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:72
620
  msgid "Light"
621
  msgstr ""
622
 
623
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:862
624
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:29
625
  msgid "Visual Player"
626
  msgstr ""
627
 
628
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:909
629
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:104
630
  msgid "Share Button"
631
  msgstr ""
632
 
633
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:925
634
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:119
635
  msgid "Comments"
636
  msgstr ""
637
 
638
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:943
639
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:135
640
  msgid "Artwork"
641
  msgstr ""
642
 
643
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:960
644
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:154
645
  msgid "Play Count"
646
  msgstr ""
647
 
648
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:977
649
  msgid "User Name"
650
  msgstr ""
651
 
652
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:993
653
  msgid "Buy Button %s"
654
  msgstr ""
655
 
656
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1009
657
  msgid "Download Button %s"
658
  msgstr ""
659
 
660
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1055
661
  msgid "Author Information"
662
  msgstr ""
663
 
664
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1067
665
  msgid "Title"
666
  msgstr ""
667
 
668
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1083
669
  msgid "Author"
670
  msgstr ""
671
 
672
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1097
673
  msgid "Avatar"
674
  msgstr ""
675
 
676
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1111
677
  msgid "Loop %s"
678
  msgstr ""
679
 
680
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1126
681
  msgid "Auto Pause %s"
682
  msgstr ""
683
 
684
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1141
685
  msgid "DNT %s"
686
  msgstr ""
687
 
688
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1146
689
  msgid "Set this parameter to \"yes\" will block the player from tracking any session data, including all cookies"
690
  msgstr ""
691
 
692
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1184
693
  msgid "Follow Widget Background"
694
  msgstr ""
695
 
696
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
697
  msgid "Style"
698
  msgstr ""
699
 
700
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1266
701
  msgid "Margin"
702
  msgstr ""
703
 
704
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1277
705
  msgid "Padding"
706
  msgstr ""
707
 
708
+ #: EmbedPress/Elementor/Widgets/Embedpress_Elementor.php:1312
709
  msgid "Background"
710
  msgstr ""
711
 
735
  msgid "Custom Logo"
736
  msgstr ""
737
 
738
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:60
739
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:156
 
 
 
 
740
  #: EmbedPress/Ends/Back/Settings/templates/general.php:64
741
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:189
742
  #: EmbedPress/Ends/Back/Settings/templates/spotify.php:84
743
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:111
744
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:158
745
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:231
746
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:269
747
  msgid "Save Changes"
748
  msgstr ""
749
 
750
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:149
751
  msgid "%s Custom Branding"
752
  msgstr ""
753
 
754
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:163
755
  msgid "Click To Upload"
756
  msgstr ""
757
 
758
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:175
759
  msgid "Logo Opacity (%)"
760
  msgstr ""
761
 
762
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:182
763
  msgid "Logo X Position (%)"
764
  msgstr ""
765
 
766
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:189
767
+ msgid "Logo Y Position (%)"
768
+ msgstr ""
769
+
770
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:196
771
  msgid "Call to Action Link"
772
  msgstr ""
773
 
774
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:200
775
  msgid "You may link the logo to any CTA link."
776
  msgstr ""
777
 
778
+ #: EmbedPress/Ends/Back/Settings/templates/custom-logo.php:205
779
  msgid "Live Preview"
780
  msgstr ""
781
 
782
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:22
783
  msgid "Dailymotion Settings"
784
  msgstr ""
785
 
786
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:29
787
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:25
788
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:27
789
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:32
790
  #: EmbedPress/Ends/Back/Settings/templates/youtube.php:37
791
  msgid "Start Time (In Seconds)"
792
  msgstr ""
793
 
794
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:32
 
 
 
795
  #: EmbedPress/Ends/Back/Settings/templates/youtube.php:40
796
+ msgid "You can put a custom time in seconds to start the video. Example: 500"
797
  msgstr ""
798
 
799
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:50
800
  #: EmbedPress/Ends/Back/Settings/templates/soundcloud.php:63
801
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:45
802
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:47
803
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:129
804
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:65
805
  msgid "Automatically start to play the videos when the player loads."
806
  msgstr ""
807
 
808
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:55
809
  msgid "Autoplay On Mobile"
810
  msgstr ""
811
 
812
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:67
813
  msgid "You can control autoplay on mobile. Only works if Autoplay option is enabled."
814
  msgstr ""
815
 
816
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:84
817
  msgid "Mute the video that is auto played"
818
  msgstr ""
819
 
820
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:91
821
  msgid "Display Player Controls"
822
  msgstr ""
823
 
824
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:103
825
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:110
826
  msgid "Indicates whether the video player controls are displayed."
827
  msgstr ""
828
 
829
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:109
830
  msgid "Display Video Info"
831
  msgstr ""
832
 
833
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:121
834
  msgid "Indicates whether the video information is displayed."
835
  msgstr ""
836
 
837
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:127
838
  msgid "Show Logo"
839
  msgstr ""
840
 
841
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:146
842
  msgid "Controls Color"
843
  msgstr ""
844
 
845
+ #: EmbedPress/Ends/Back/Settings/templates/dailymotion.php:150
846
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:106
847
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:137
848
  msgid "Specify the color of the video controls."
849
  msgstr ""
850
 
1040
  msgid "To add follow widget, please add '%s:follow_widget%s' to the end of an artist URL. For details, check out this %s documentation%s."
1041
  msgstr ""
1042
 
1043
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:18
1044
  msgid "Twitch Settings"
1045
  msgstr ""
1046
 
1047
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:28
1048
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:30
1049
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:35
1050
+ msgid "You can put a custom time in seconds to start video. Example: 500"
1051
+ msgstr ""
1052
+
1053
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:49
1054
  msgid "Show Chat"
1055
  msgstr ""
1056
 
1057
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:62
1058
  msgid "You can show or hide chat using this setting"
1059
  msgstr ""
1060
 
1061
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:75
1062
  msgid "Set dark or light theme for the twitch comment."
1063
  msgstr ""
1064
 
1065
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:79
1066
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:114
1067
  msgid "Enable Fullscreen Button"
1068
  msgstr ""
1069
 
1070
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:91
1071
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:126
1072
  msgid "Indicates whether the fullscreen button is enabled."
1073
  msgstr ""
1074
 
1075
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:95
1076
  msgid "Mute On Start"
1077
  msgstr ""
1078
 
1079
+ #: EmbedPress/Ends/Back/Settings/templates/twitch.php:107
1080
  msgid "Set it to Yes to mute the video on start."
1081
  msgstr ""
1082
 
1083
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:20
1084
  msgid "Vimeo Settings"
1085
  msgstr ""
1086
 
1087
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:51
1088
  msgid "Loop"
1089
  msgstr ""
1090
 
1091
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:64
1092
  msgid "Play the video again automatically when it reaches the end."
1093
  msgstr ""
1094
 
1095
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:68
1096
  msgid "Auto Pause"
1097
  msgstr ""
1098
 
1099
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:81
1100
  msgid "Pause this video automatically when another one plays."
1101
  msgstr ""
1102
 
1103
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:85
1104
  msgid "DNT"
1105
  msgstr ""
1106
 
1107
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:98
1108
  msgid "Setting this parameter to \"yes\" will block the player from tracking any session data, including all cookies."
1109
  msgstr ""
1110
 
1111
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:102
1112
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:134
1113
  msgid "Color"
1114
  msgstr ""
1115
 
1116
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:110
1117
  msgid "Display Title"
1118
  msgstr ""
1119
 
1120
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:122
1121
  msgid "Indicates whether the title is displayed."
1122
  msgstr ""
1123
 
1124
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:126
1125
  msgid "Display Author"
1126
  msgstr ""
1127
 
1128
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:138
1129
  msgid "Indicates whether the author is displayed."
1130
  msgstr ""
1131
 
1132
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:142
1133
  msgid "Display Avatar"
1134
  msgstr ""
1135
 
1136
+ #: EmbedPress/Ends/Back/Settings/templates/vimeo.php:154
1137
  msgid "Indicates whether the avatar is displayed."
1138
  msgstr ""
1139
 
1140
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:24
1141
  msgid "Wistia Settings"
1142
  msgstr ""
1143
 
1144
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:52
1145
  msgid "Indicates whether the fullscreen button is visible."
1146
  msgstr ""
1147
 
1148
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:56
1149
  msgid "Playbar"
1150
  msgstr ""
1151
 
1152
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:68
1153
  msgid "Indicates whether the playbar is visible."
1154
  msgstr ""
1155
 
1156
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:84
1157
  msgid "Indicates whether the small play button is visible on the bottom left."
1158
  msgstr ""
1159
 
1160
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:88
1161
  msgid "Volume Control"
1162
  msgstr ""
1163
 
1164
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:101
1165
  msgid "Indicates whether the volume control is visible."
1166
  msgstr ""
1167
 
1168
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:106
1169
  msgid "Volume"
1170
  msgstr ""
1171
 
1172
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:110
1173
  msgid "Start the video with a custom volume level. Set values between 0 and 100."
1174
  msgstr ""
1175
 
1176
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:142
1177
  msgid "Plugin: Resumable"
1178
  msgstr ""
1179
 
1180
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:154
1181
  msgid "Indicates whether the Resumable plugin is active. Allow to resume the video or start from the beginning."
1182
  msgstr ""
1183
 
1184
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:158
1185
  msgid "Plugin: Captions"
1186
  msgstr ""
1187
 
1188
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:171
1189
  msgid "Indicates whether the Captions plugin is active."
1190
  msgstr ""
1191
 
1192
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:188
1193
  msgid "Indicates whether the Captions are enabled by default."
1194
  msgstr ""
1195
 
1196
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:204
1197
  msgid "Indicates whether the Focus plugin is active."
1198
  msgstr ""
1199
 
1200
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:208
1201
  msgid "Plugin: Rewind"
1202
  msgstr ""
1203
 
1204
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:220
1205
  msgid "Indicates whether the Rewind plugin is active."
1206
  msgstr ""
1207
 
1208
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:224
1209
  msgid "Rewind Time (In Seconds)"
1210
  msgstr ""
1211
 
1212
+ #: EmbedPress/Ends/Back/Settings/templates/wistia.php:227
1213
  msgid "The amount of time to rewind, in seconds."
1214
  msgstr ""
1215
 
1217
  msgid "YouTube Settings"
1218
  msgstr ""
1219
 
1220
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:45
1221
+ msgid "End Time (In Seconds)"
1222
+ msgstr ""
1223
+
1224
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:48
1225
+ msgid "You can put a custom time in seconds to end the video."
1226
+ msgstr ""
1227
+
1228
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:78
1229
  msgid "Specifies the color that will be used in the player's video progress bar to highlight the amount of the video that the viewer has already seen. %s Note: Setting the color to white will disable the Modest Branding option (causing a YouTube logo to be displayed in the control bar)."
1230
  msgstr ""
1231
 
1232
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:82
1233
  msgid "Force Closed Captions"
1234
  msgstr ""
1235
 
1236
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:96
1237
  msgid "Setting this option to %s causes closed captions to be shown by default, even if the user has turned captions off. This will be based on user preference otherwise."
1238
  msgstr ""
1239
 
1240
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:100
1241
  msgid "Display Controls"
1242
  msgstr ""
1243
 
1244
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:130
1245
  msgid "Display Video Annotations"
1246
  msgstr ""
1247
 
1248
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:139
1249
  msgid "Indicates whether video annotations are displayed."
1250
  msgstr ""
1251
 
1252
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:143
1253
  msgid "Display Related Videos"
1254
  msgstr ""
1255
 
1256
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:148
1257
  msgid "From the same channel of the video"
1258
  msgstr ""
1259
 
1260
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:149
1261
  msgid "Based on User's watch history"
1262
  msgstr ""
1263
 
1264
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:152
1265
  msgid "Indicates how the player should show related videos when playback of the video pauses or ends."
1266
  msgstr ""
1267
 
1268
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:158
1269
  msgid "Modest Branding"
1270
  msgstr ""
1271
 
1272
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:169
1273
  msgid "Indicates whether the player should display a YouTube logo in the control bar."
1274
  msgstr ""
1275
 
1276
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:175
1277
  msgid " Live Chat"
1278
  msgstr ""
1279
 
1280
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:189
1281
  msgid "Enabling this option will show chat on all YouTube videos. However, YouTube Live Chat feature only works with Live Streaming videos."
1282
  msgstr ""
1283
 
1284
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:194
1285
  msgid "Subscription Button"
1286
  msgstr ""
1287
 
1288
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:197
1289
  msgid "Channel Link or ID"
1290
  msgstr ""
1291
 
1292
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:201
1293
  msgid "You can use either your channel link or channel ID to show the subscription button."
1294
  msgstr ""
1295
 
1296
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:208
1297
  msgid "Subscription Text"
1298
  msgstr ""
1299
 
1300
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:212
1301
  msgid "Optionally you can output some CTA text before the subscriber button."
1302
  msgstr ""
1303
 
1304
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:219
1305
  msgid "Layout"
1306
  msgstr ""
1307
 
1308
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:230
1309
  msgid "Full layout shows channel image. Default layout shows only channel name and subscription button."
1310
  msgstr ""
1311
 
1312
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:246
1313
  msgid "Default theme is good for white background. Dark theme is good for black background."
1314
  msgstr ""
1315
 
1316
+ #: EmbedPress/Ends/Back/Settings/templates/youtube.php:251
1317
  msgid "Show Subscriber Count"
1318
  msgstr ""
1319
 
1385
  msgid "Just Deactivate"
1386
  msgstr ""
1387
 
1388
+ #: EmbedPress/Includes/Classes/Feature_Enhancer.php:393
1389
+ #: EmbedPress/Includes/Classes/Feature_Enhancer.php:752
1390
+ #: Gutenberg/plugin.php:60
1391
  msgid "Watch from the beginning"
1392
  msgstr ""
1393
 
1394
+ #: EmbedPress/Includes/Classes/Feature_Enhancer.php:394
1395
+ #: EmbedPress/Includes/Classes/Feature_Enhancer.php:753
1396
+ #: Gutenberg/plugin.php:61
1397
  msgid "Skip to where you left off"
1398
  msgstr ""
1399
 
1400
+ #: EmbedPress/Includes/Classes/Feature_Enhancer.php:395
1401
+ #: EmbedPress/Includes/Classes/Feature_Enhancer.php:754
1402
+ #: Gutenberg/plugin.php:62
1403
  msgid "It looks like you've watched<br />part of this video before!"
1404
  msgstr ""
1405
 
1406
+ #: EmbedPress/Includes/Traits/Branding.php:31
1407
+ msgid "Custom Branding"
1408
+ msgstr ""
1409
+
1410
+ #: EmbedPress/Includes/Traits/Branding.php:40
1411
+ msgid "Custom Logo %s"
1412
+ msgstr ""
1413
+
1414
+ #: EmbedPress/Includes/Traits/Branding.php:41
1415
+ msgid "Leave it empty to hide it"
1416
+ msgstr ""
1417
+
1418
+ #: EmbedPress/Includes/Traits/Branding.php:62
1419
+ msgid "Logo X Position %s"
1420
+ msgstr ""
1421
+
1422
+ #: EmbedPress/Includes/Traits/Branding.php:63
1423
+ msgid "Change this number to move your logo in horizontal direction."
1424
+ msgstr ""
1425
+
1426
+ #: EmbedPress/Includes/Traits/Branding.php:91
1427
+ msgid "Logo Y Position %s"
1428
+ msgstr ""
1429
+
1430
+ #: EmbedPress/Includes/Traits/Branding.php:92
1431
+ msgid "Change this number to move your logo in vertical direction."
1432
+ msgstr ""
1433
+
1434
+ #: EmbedPress/Includes/Traits/Branding.php:126
1435
+ msgid "Normal"
1436
+ msgstr ""
1437
+
1438
+ #: EmbedPress/Includes/Traits/Branding.php:132
1439
+ #: EmbedPress/Includes/Traits/Branding.php:160
1440
+ msgid "Logo Opacity %s"
1441
+ msgstr ""
1442
+
1443
+ #: EmbedPress/Includes/Traits/Branding.php:154
1444
+ msgid "Hover"
1445
+ msgstr ""
1446
+
1447
+ #: EmbedPress/Includes/Traits/Branding.php:185
1448
+ msgid "CTA link for Logo %s"
1449
+ msgstr ""
1450
+
1451
+ #: EmbedPress/Includes/Traits/Branding.php:186
1452
+ msgid "You can show the logo inside a link. Leave it empty to hide it"
1453
+ msgstr ""
1454
+
1455
+ #: EmbedPress/Includes/Traits/Branding.php:191
1456
+ msgid "https://your-link.com"
1457
+ msgstr ""
1458
+
1459
  #: EmbedPress/Includes/Traits/Shared.php:26
1460
  msgid "Want to help make <strong>EmbedPress</strong> even more awesome? You can get a <strong>10% discount coupon</strong> for Premium extensions if you allow us to track the usage."
1461
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: embed, embed youtube, gutenberg embed, pdf, doc, docs, ppt, elementor embe
6
  Requires at least: 4.6
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
- Stable tag: 3.1.2
10
  License: GPLv3 or later
11
  License URI: https://opensource.org/licenses/GPL-3.0
12
 
@@ -301,6 +301,9 @@ Not at all. You can set up everything your team needs without any coding knowled
301
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
302
  and this project adheres to [Semantic Versioning](http://semver.org/).
303
 
 
 
 
304
 
305
  = [3.1.2] - 2021-08-25 =
306
  * Added: Some pro features into free plugin
6
  Requires at least: 4.6
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
+ Stable tag: 3.1.3
10
  License: GPLv3 or later
11
  License URI: https://opensource.org/licenses/GPL-3.0
12
 
301
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
302
  and this project adheres to [Semantic Versioning](http://semver.org/).
303
 
304
+ = [3.1.3] - 2021-09-09 =
305
+ * Added: Alignment feature for Gutenberg and Elementor.
306
+ * Few minor bug fixes and improvements.
307
 
308
  = [3.1.2] - 2021-08-25 =
309
  * Added: Some pro features into free plugin