Image Photo Gallery Final Tiles Grid - Version 3.4.18

Version Description

  • Minor update for tooltips
  • Add shortcode copy functionality
  • Color picker bug gix
  • Toggle input bug fix *
Download this release

Release Info

Developer giucu91
Plugin Icon 128x128 Image Photo Gallery Final Tiles Grid
Version 3.4.18
Comparing to
See all releases

Code changes from version 3.4.17 to 3.4.18

Files changed (55) hide show
  1. FinalTilesGalleryLite.php +36 -38
  2. admin/add-gallery.php +13 -9
  3. admin/css/style.css +21 -0
  4. admin/facebook.php +1 -1
  5. admin/images/everlightbox-reviews.png +0 -0
  6. admin/images/everlightbox.png +0 -0
  7. admin/include/edit-gallery.php +1113 -1191
  8. admin/include/fields.php +82 -82
  9. admin/overview.php +5 -4
  10. admin/scripts/admin.js +12 -0
  11. admin/scripts/editor-plugin.js +3 -3
  12. admin/scripts/final-tiles-gallery-admin.js +40 -36
  13. freemius/README.md +0 -253
  14. freemius/assets/css/admin/deactivation-feedback.css +0 -1
  15. freemius/assets/css/admin/license-activation.css +0 -1
  16. freemius/assets/scss/_colors.scss +0 -79
  17. freemius/assets/scss/_functions.scss +0 -0
  18. freemius/assets/scss/_load.scss +0 -4
  19. freemius/assets/scss/_mixins.scss +0 -270
  20. freemius/assets/scss/_start.scss +0 -4
  21. freemius/assets/scss/_vars.scss +0 -6
  22. freemius/assets/scss/admin/_ajax-loader.scss +0 -49
  23. freemius/assets/scss/admin/_auto-install.scss +0 -33
  24. freemius/assets/scss/admin/_deactivation-feedback.scss +0 -55
  25. freemius/assets/scss/admin/_gdpr-consent.scss +0 -81
  26. freemius/assets/scss/admin/_license-activation.scss +0 -47
  27. freemius/assets/scss/admin/_license-key-resend.scss +0 -68
  28. freemius/assets/scss/admin/_modal-common.scss +0 -194
  29. freemius/assets/scss/admin/_multisite-options.scss +0 -40
  30. freemius/assets/scss/admin/_themes.scss +0 -21
  31. freemius/assets/scss/admin/_tooltip.scss +0 -66
  32. freemius/assets/scss/admin/account.scss +0 -302
  33. freemius/assets/scss/admin/add-ons.scss +0 -449
  34. freemius/assets/scss/admin/affiliation.scss +0 -97
  35. freemius/assets/scss/admin/checkout.scss +0 -5
  36. freemius/assets/scss/admin/common.scss +0 -220
  37. freemius/assets/scss/admin/connect.scss +0 -548
  38. freemius/assets/scss/admin/debug.scss +0 -135
  39. freemius/assets/scss/admin/dialog-boxes.scss +0 -10
  40. freemius/assets/scss/admin/gdpr-optin-notice.scss +0 -17
  41. freemius/assets/scss/admin/index.php +0 -3
  42. freemius/assets/scss/customizer.scss +0 -125
  43. freemius/assets/scss/index.php +0 -3
  44. freemius/composer.json +0 -10
  45. freemius/gulpfile.js +0 -167
  46. freemius/package.json +0 -27
  47. languages/final-tiles-grid-gallery-lite-bkp-de.po +1810 -0
  48. languages/final-tiles-grid-gallery-lite-de_DE.mo +0 -0
  49. languages/final-tiles-grid-gallery-lite-de_DE.po +1810 -0
  50. languages/final-tiles-grid-gallery-lite-it_IT.po +2 -2
  51. languages/final-tiles-grid-gallery-lite.po +1397 -0
  52. lib/gallery-class.php +6 -6
  53. lib/languages/final-tiles-gallery.pot +1 -1
  54. readme.txt +13 -11
  55. scripts/gutenberg_block.js +2 -6
FinalTilesGalleryLite.php CHANGED
@@ -1,31 +1,30 @@
1
  <?php
2
- /**
3
- * Plugin Name: Final Tiles Grid Gallery - Image Gallery
4
- * Description: Wordpress Plugin for creating responsive image galleries.
5
- * Version: 3.4.17
6
- * Author: MachoThemes
7
- * Author URI: https://www.machothemes.com
8
- * Tested up to: 5.2
9
- * Requires: 4.9 or higher
10
- * License: GPLv3 or later
11
- * License URI: http://www.gnu.org/licenses/gpl-3.0.html
12
- * Requires PHP: 5.6
13
- * Text Domain: final-tiles-grid-gallery-lite
14
- * Domain Path: /languages
15
- *
16
- * Copyright 2015-2019 GreenTreeLabs diego@greentreelabs.net
17
- * Copyright 2019 MachoThemes office@machothemes.com
18
- * SVN commit with proof of ownership transfer: https://plugins.trac.wordpress.org/changeset/2163481/
19
- *
20
- * NOTE: MachoThemes took ownership of this plugin on: 09/26/2019 08:49:37 AM as can be seen from the above SVN commit.
21
- *
22
- * Original Plugin URI: https://greentreelabs.net/final-tiles-gallery-lite/
23
- * Original Author URI: https://greentreelabs.net
24
- * Original Author: https://profiles.wordpress.org/greentreealbs/
25
- */
26
-
27
 
28
- define( "FTGVERSION", "3.4.17" );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  // Create a helper function for easy SDK access.
30
 
31
  if ( !function_exists( "ftg_fs" ) ) {
@@ -55,8 +54,7 @@ if ( !function_exists( "ftg_fs" ) ) {
55
  ),
56
  'has_affiliation' => 'all',
57
  'menu' => array(
58
- 'slug' => 'ftg-lite-gallery-admin',
59
- 'contact' => true,
60
  ),
61
  'is_live' => true,
62
  ) );
@@ -285,7 +283,7 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
285
  wp_set_script_translations( 'FinalTiles-gallery', 'final-tiles-gallery', dirname( plugin_basename( __FILE__ ) ) . '/lib/languages/' );
286
  $galls = [ [
287
  'value' => 0,
288
- 'label' => __( 'Select gallery', 'FinalTiles-gallery' ),
289
  ] ];
290
  $galleries = $this->FinalTilesdb->getGalleries();
291
  if ( $galleries ) {
@@ -359,7 +357,7 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
359
  if ( !$with_date && count( $galleries ) > 0 && !$there_was_review ) {
360
  $valid = true;
361
  }
362
- // If we don't have a valid optin yet, return.
363
  if ( !$valid ) {
364
  return;
365
  }
@@ -367,20 +365,20 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
367
  ?>
368
  <div class="notice notice-info is-dismissible ftg-review-notice">
369
  <p><?php
370
- _e( 'Hey, I noticed you created a photo gallery with Final Tiles - that’s awesome! Would you mind give it a 5-star rating on WordPress to help us spread the word and boost our motivation for new featrues?', 'final-tiles-gallery-lite' );
371
  ?></p>
372
  <p><strong><?php
373
- _e( 'Cristian Raiber<br>Founder of Macho Themes', 'final-tiles-gallery' );
374
  ?></strong></p>
375
  <p>
376
  <a href="https://wordpress.org/support/plugin/final-tiles-grid-gallery-lite/reviews/?filter=5#new-post" class="ftg-dismiss-review-notice ftg-review-out" target="_blank" rel="noopener"><?php
377
- _e( 'Ok, you deserve it', 'final-tiles-gallery-lite' );
378
  ?></a><br>
379
  <a href="#" class="ftg-dismiss-review-notice" rel="noopener"><?php
380
- _e( 'Nope, maybe later', 'final-tiles-gallery' );
381
  ?></a><br>
382
  <a href="#" class="ftg-dismiss-review-notice" rel="noopener"><?php
383
- _e( 'I already did', 'final-tiles-gallery' );
384
  ?></a><br>
385
  </p>
386
  </div>
@@ -420,7 +418,7 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
420
 
421
  if ( !empty($current_screen->id) && strpos( $current_screen->id, 'ftg' ) !== false ) {
422
  $url = 'https://wordpress.org/support/plugin/final-tiles-grid-gallery-lite/reviews/?filter=5#new-post';
423
- $text = sprintf( __( 'Please rate <strong>Final Tiles Gallery</strong> <a href="%s" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%s" target="_blank">WordPress.org</a> to help us spread the word. Thank you from the Final Tiles Gallery team!', 'wpforms' ), $url, $url );
424
  }
425
 
426
  return $text;
@@ -741,8 +739,8 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
741
  );
742
  $add_gallery = add_submenu_page(
743
  'ftg-lite-gallery-admin',
744
- __( 'FinalTiles Gallery >> Add Gallery', 'FinalTiles-gallery' ),
745
- __( 'Add Gallery', 'FinalTiles-gallery' ),
746
  'edit_posts',
747
  'ftg-add-gallery',
748
  array( $this, 'add_gallery' )
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
+ /**
4
+ * Plugin Name: Final Tiles Grid Gallery - Image Gallery
5
+ * Description: Wordpress Plugin for creating responsive image galleries.
6
+ * Version: 3.4.18
7
+ * Author: MachoThemes
8
+ * Author URI: https://www.machothemes.com
9
+ * Tested up to: 5.2
10
+ * Requires: 4.9 or higher
11
+ * License: GPLv3 or later
12
+ * License URI: http://www.gnu.org/licenses/gpl-3.0.html
13
+ * Requires PHP: 5.6
14
+ * Text Domain: final-tiles-grid-gallery-lite
15
+ * Domain Path: /languages
16
+ *
17
+ * Copyright 2015-2019 GreenTreeLabs diego@greentreelabs.net
18
+ * Copyright 2019 MachoThemes office@machothemes.com
19
+ * SVN commit with proof of ownership transfer: https://plugins.trac.wordpress.org/changeset/2163481/
20
+ *
21
+ * NOTE: MachoThemes took ownership of this plugin on: 09/26/2019 08:49:37 AM as can be seen from the above SVN commit.
22
+ *
23
+ * Original Plugin URI: https://greentreelabs.net/final-tiles-gallery-lite/
24
+ * Original Author URI: https://greentreelabs.net
25
+ * Original Author: https://profiles.wordpress.org/greentreealbs/
26
+ */
27
+ define( "FTGVERSION", "3.4.18" );
28
  // Create a helper function for easy SDK access.
29
 
30
  if ( !function_exists( "ftg_fs" ) ) {
54
  ),
55
  'has_affiliation' => 'all',
56
  'menu' => array(
57
+ 'slug' => 'ftg-lite-gallery-admin',
 
58
  ),
59
  'is_live' => true,
60
  ) );
283
  wp_set_script_translations( 'FinalTiles-gallery', 'final-tiles-gallery', dirname( plugin_basename( __FILE__ ) ) . '/lib/languages/' );
284
  $galls = [ [
285
  'value' => 0,
286
+ 'label' => __( 'Select gallery', 'final-tiles-grid-gallery-lite' ),
287
  ] ];
288
  $galleries = $this->FinalTilesdb->getGalleries();
289
  if ( $galleries ) {
357
  if ( !$with_date && count( $galleries ) > 0 && !$there_was_review ) {
358
  $valid = true;
359
  }
360
+ // If we don't have a valid option yet, return.
361
  if ( !$valid ) {
362
  return;
363
  }
365
  ?>
366
  <div class="notice notice-info is-dismissible ftg-review-notice">
367
  <p><?php
368
+ _e( 'Hey, I noticed you created a photo gallery with Final Tiles - that’s awesome! Would you mind give it a 5-star rating on WordPress to help us spread the word and boost our motivation for new featrues?', 'final-tiles-grid-gallery-lite' );
369
  ?></p>
370
  <p><strong><?php
371
+ _e( 'MachoThemes', 'final-tiles-grid-gallery-lite' );
372
  ?></strong></p>
373
  <p>
374
  <a href="https://wordpress.org/support/plugin/final-tiles-grid-gallery-lite/reviews/?filter=5#new-post" class="ftg-dismiss-review-notice ftg-review-out" target="_blank" rel="noopener"><?php
375
+ _e( 'Ok, you deserve it', 'final-tiles-grid-gallery-lite' );
376
  ?></a><br>
377
  <a href="#" class="ftg-dismiss-review-notice" rel="noopener"><?php
378
+ _e( 'Nope, maybe later', 'final-tiles-grid-gallery-lite' );
379
  ?></a><br>
380
  <a href="#" class="ftg-dismiss-review-notice" rel="noopener"><?php
381
+ _e( 'I already did', 'final-tiles-grid-gallery-lite' );
382
  ?></a><br>
383
  </p>
384
  </div>
418
 
419
  if ( !empty($current_screen->id) && strpos( $current_screen->id, 'ftg' ) !== false ) {
420
  $url = 'https://wordpress.org/support/plugin/final-tiles-grid-gallery-lite/reviews/?filter=5#new-post';
421
+ $text = sprintf( __( 'Please rate <strong>Final Tiles Gallery</strong> <a href="%s" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%s" target="_blank">WordPress.org</a> to help us spread the word. Thank you from the Final Tiles Gallery team!', 'final-tiles-grid-gallery-lite' ), $url, $url );
422
  }
423
 
424
  return $text;
739
  );
740
  $add_gallery = add_submenu_page(
741
  'ftg-lite-gallery-admin',
742
+ __( 'FinalTiles Gallery >> Add Gallery', 'final-tiles-grid-gallery-lite' ),
743
+ __( 'Add Gallery', 'final-tiles-grid-gallery-lite' ),
744
  'edit_posts',
745
  'ftg-add-gallery',
746
  array( $this, 'add_gallery' )
admin/add-gallery.php CHANGED
@@ -134,27 +134,27 @@ _e( 'Caption effect:', 'final-tiles-grid-gallery-lite' );
134
  ?></h5>
135
  <select class="browser-default" name="ftg_captionEffect">
136
  <option value="none"><?php
137
- _e( 'Fade' );
138
  ?></option>
139
  <?php
140
  ?>
141
  <option value="fixed" disabled><?php
142
- _e( 'Fixed' );
143
  ?> (Upgrade to unlock)</option>
144
  <option value="fixed-bg" disabled><?php
145
- _e( 'Fixed with background' );
146
  ?> (Upgrade to unlock)</option>
147
  <option value="fixed-then-hidden" disabled><?php
148
- _e( 'Fixed, hidden on hover' );
149
  ?> (Upgrade to unlock)</option>
150
  <option value="fixed-bottom" disabled><?php
151
- _e( 'Fixed at bottom' );
152
  ?> (Upgrade to unlock)</option>
153
  <option value="slide-from-top" disabled><?php
154
- _e( 'Slide from top' );
155
  ?> (Upgrade to unlock)</option>
156
  <option value="slide-from-bottom" disabled><?php
157
- _e( 'Slide from bottom' );
158
  ?> (Upgrade to unlock)</option>
159
  <?php
160
  ?>
@@ -169,8 +169,12 @@ _e( 'Slide from bottom' );
169
  _e( 'Choose the layout', 'final-tiles-grid-gallery-lite' );
170
  ?></h5>
171
  <select class="browser-default" name="layout">
172
- <option value="final">Final Tiles Gallery (mixed image width)</option>
173
- <option value="columns">Masonry (columns, same image width)</option>
 
 
 
 
174
  </select>
175
  </div>
176
  <div class="field">
134
  ?></h5>
135
  <select class="browser-default" name="ftg_captionEffect">
136
  <option value="none"><?php
137
+ _e( 'Fade', 'final-tiles-grid-gallery-lite' );
138
  ?></option>
139
  <?php
140
  ?>
141
  <option value="fixed" disabled><?php
142
+ _e( 'Fixed', 'final-tiles-grid-gallery-lite' );
143
  ?> (Upgrade to unlock)</option>
144
  <option value="fixed-bg" disabled><?php
145
+ _e( 'Fixed with background', 'final-tiles-grid-gallery-lite' );
146
  ?> (Upgrade to unlock)</option>
147
  <option value="fixed-then-hidden" disabled><?php
148
+ _e( 'Fixed, hidden on hover', 'final-tiles-grid-gallery-lite' );
149
  ?> (Upgrade to unlock)</option>
150
  <option value="fixed-bottom" disabled><?php
151
+ _e( 'Fixed at bottom', 'final-tiles-grid-gallery-lite' );
152
  ?> (Upgrade to unlock)</option>
153
  <option value="slide-from-top" disabled><?php
154
+ _e( 'Slide from top', 'final-tiles-grid-gallery-lite' );
155
  ?> (Upgrade to unlock)</option>
156
  <option value="slide-from-bottom" disabled><?php
157
+ _e( 'Slide from bottom', 'final-tiles-grid-gallery-lite' );
158
  ?> (Upgrade to unlock)</option>
159
  <?php
160
  ?>
169
  _e( 'Choose the layout', 'final-tiles-grid-gallery-lite' );
170
  ?></h5>
171
  <select class="browser-default" name="layout">
172
+ <option value="final"><?php
173
+ __( 'Final Tiles Gallery (mixed image width)', 'final-tiles-grid-gallery-lite' );
174
+ ?></option>
175
+ <option value="columns"><?php
176
+ __( 'Masonry (columns, same image width)', 'final-tiles-grid-gallery-lite' );
177
+ ?></option>
178
  </select>
179
  </div>
180
  <div class="field">
admin/css/style.css CHANGED
@@ -599,6 +599,10 @@ h2.ftg-subtitle {
599
  color: #999;
600
  font-size: 18px;
601
  }
 
 
 
 
602
  .collapsible li div.help .ftg-code a:focus {
603
  box-shadow: none;
604
  }
@@ -1100,6 +1104,7 @@ padding: 10px;
1100
  margin-top: 7px;
1101
  }
1102
 
 
1103
  /* Tabs tooltips */
1104
  .ftg-tooltip {
1105
  position: relative;
@@ -1139,4 +1144,20 @@ padding: 10px;
1139
  }
1140
  .ftg-tooltip:hover .ftg-tooltip-content {
1141
  display: block;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1142
  }
599
  color: #999;
600
  font-size: 18px;
601
  }
602
+ .collapsible li div.help .ftg-code a .fa-eye{
603
+ color:#007cba;
604
+ }
605
+
606
  .collapsible li div.help .ftg-code a:focus {
607
  box-shadow: none;
608
  }
1104
  margin-top: 7px;
1105
  }
1106
 
1107
+
1108
  /* Tabs tooltips */
1109
  .ftg-tooltip {
1110
  position: relative;
1144
  }
1145
  .ftg-tooltip:hover .ftg-tooltip-content {
1146
  display: block;
1147
+ }
1148
+
1149
+ /* Copy shortcode design */
1150
+ .gallery-actions .copy-ftg-shortcode {
1151
+ height: 40px;
1152
+ line-height: 40px !important;
1153
+ }
1154
+
1155
+ .copy-ftg-shortcode {
1156
+ height:max-content;
1157
+ }
1158
+
1159
+ /* Color picker fix */
1160
+ .field.js-update-shortcode .iris-border .iris-picker-inner {
1161
+ min-width:250px;
1162
+ min-height:250px;
1163
  }
admin/facebook.php CHANGED
@@ -1,5 +1,5 @@
1
  <p>Support Final Tiles Grid Gallery, share on Facebook</p>
2
- <div class="fb-like" data-href="https://www.facebook.com/machothemes" data-layout="standard" data-action="recommend" data-show-faces="false" data-share="true"></div>
3
 
4
 
5
  <div id="fb-root"></div>
1
  <p>Support Final Tiles Grid Gallery, share on Facebook</p>
2
+ <div class="fb-like" data-href="https://www.facebook.com/greentreelabs" data-layout="standard" data-action="recommend" data-show-faces="false" data-share="true"></div>
3
 
4
 
5
  <div id="fb-root"></div>
admin/images/everlightbox-reviews.png ADDED
Binary file
admin/images/everlightbox.png ADDED
Binary file
admin/include/edit-gallery.php CHANGED
@@ -1,74 +1,80 @@
1
  <?php
2
 
3
- if (!function_exists('ftg_p')) {
4
- function ftg_p($gallery, $field, $default = NULL) {
5
- global $ftg_options;
6
-
7
- if ($ftg_options) {
8
- if (array_key_exists($field, $ftg_options)) {
9
- print stripslashes($ftg_options[$field]);
 
10
  }
11
  return;
12
  }
13
-
14
-
15
- if ($gallery == NULL || $gallery->{$field} === NULL) {
16
-
17
- if ($default === NULL) {
18
  print "";
19
  } else {
20
- print stripslashes($default);
21
  }
22
-
23
  } else {
24
- print stripslashes($gallery->{$field});
25
  }
26
-
27
  }
28
-
29
  function ftg_sel(
30
  $gallery,
31
  $field,
32
  $value,
33
  $type = "selected"
34
- ) {
35
- global $ftg_options;
36
-
37
- if ($ftg_options && $ftg_options[$field] == $value) {
 
38
  print $type;
39
  return;
40
  }
41
-
42
-
43
- if ($gallery == NULL || !isset($gallery->{$field})) {
44
  print "";
45
  } else {
46
- if ($gallery->{$field} == $value) {
47
  print $type;
48
  }
49
  }
50
-
51
  }
52
-
53
- function ftg_checkFieldDisabled($options) {
54
- if (is_array($options) && count($options) == 3 && $options[2] == "disabled") {
 
55
  return "disabled";
56
  }
57
  return "";
58
  }
59
-
60
- function ftg_checkDisabledOption($plan) {
 
61
  return "disabled";
62
  return "";
63
  }
64
-
65
- function ftg_printPro($plan) {
 
66
  return " (upgrade to unlock)";
67
  return "";
68
  }
69
-
70
- function ftg_printFieldPro($options) {
71
- if (is_array($options) && count($options) == 3 && $options[2] == "disabled") {
 
72
  return " (upgrade to unlock)";
73
  }
74
  return "";
@@ -76,1187 +82,1103 @@ if (!function_exists('ftg_p')) {
76
 
77
  }
78
 
79
- global $ftg_parent_page;
80
- global $ftg_fields;
81
  $filters = array();
82
  //print_r($gallery);
83
  $idx = 0;
84
- function ftgSortByName($a, $b) {
 
85
  return $a["name"] > $b["name"];
86
  }
87
 
88
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
- <div class="row">
91
- <div class="col s9">
92
- <ul class="collapsible" id="all-settings" data-collapsible="accordion">
93
- <li id="images" class="active">
94
- <div class="collapsible-header">
95
- <i class="fa fa-picture-o light-green darken-1 white-text ftg-section-icon"></i> <?php
96
- _e('Images', 'final-tiles-grid-gallery-lite');
97
- ?>
98
- </div>
99
- <div class="collapsible-body" style="display:block">
100
- <div class="actions">
101
- <div class="images-bar">
102
- <select name="ftg_source" class="browser-default">
103
- <option <?php
104
- ftg_sel($gallery, "source", "images");
105
- ?> value="images"><?php
106
- _e('User images', 'final-tiles-grid-gallery-lite');
107
- ?></option>
108
- <option <?php
109
- ftg_sel($gallery, "source", "posts");
110
- ?> value="posts" <?php
111
- echo ftg_checkDisabledOption('ultimate');
112
- ?>><?php
113
- _e('Recent posts with featured image', 'final-tiles-grid-gallery-lite');
114
- echo ftg_printPro('ultimate');
115
- ?></option>
116
- <?php
117
-
118
- if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
119
- ?>
120
- <option <?php
121
- ftg_sel($gallery, "source", "woocommerce");
122
- ?> value="woocommerce" <?php
123
- echo ftg_checkDisabledOption('ultimate');
124
- ?>><?php
125
- _e('WooCommerce products', 'final-tiles-grid-gallery-lite');
126
- echo ftg_printPro('ultimate');
127
- ?></option>
128
- <?php
129
- }
130
-
131
- ?>
132
- </select>
133
- <select class="current-image-size browser-default">
134
- <?php
135
- foreach ($this->list_thumbnail_sizes() as $size => $atts) {
136
- print '<option ' . (($size == 'large' ? 'selected' : '')) . ' value="' . $size . '">' . $size . " (" . implode('x', $atts) . ")</option>";
137
- }
138
- ?>
139
- </select>
140
-
141
- <a href="#" class="open-media-panel button">
142
- <?php
143
- _e('Add images', 'final-tiles-grid-gallery-lite');
144
- ?>
145
- </a>
146
- <?php
147
- ?>
148
- <a onclick="alert('Upgrade to unlock')" href="#" class=" button"><?php
149
- _e('Add video', 'final-tiles-grid-gallery-lite');
150
- ?></a>
151
- <?php
152
- ?>
153
- <a class="button button-delete" data-remove-images href="#!"><?php
154
- _e('Remove selected', 'final-tiles-grid-gallery-lite');
155
- ?></a>
156
- </div>
157
- <div class="row selection-row">
158
- <div class="bulk options">
159
- <span>
160
- <a class="button" href="#" data-action="select"><?php
161
- _e('Select all', 'final-tiles-grid-gallery-lite');
162
- ?></a>
163
- <a class="button" href="#" data-action="deselect"><?php
164
- _e('Deselect all', 'final-tiles-grid-gallery-lite');
165
- ?></a>
166
- <a class="button" href="#" data-action="toggle"><?php
167
- _e('Toggle selection', 'final-tiles-grid-gallery-lite');
168
- ?></a>
169
- </span>
170
- <span>
171
- <?php
172
- ?>
173
- <?php
174
- ?>
175
- </span>
176
- <span>
177
- <a class="button" href="#" data-action="show-hide"><?php
178
- _e('Toggle visibility', 'final-tiles-grid-gallery-lite');
179
- ?></a>
180
- </span>
181
- </div>
182
- </div>
183
- <?php
184
-
185
- if (is_array($filters) && count($filters) > 1) {
186
- ?>
187
- <div class="row filter-list">
188
- <b> <?php
189
- _e('Select by filter:', 'final-tiles-grid-gallery-lite');
190
- ?> </b>
191
- <span class="filter-select-control">
192
- <?php
193
- foreach ($filters as $filter) {
194
- ?>
195
- <em class='button filter-item'><?php
196
- print $filter;
197
- ?></em>
198
- <?php
199
- }
200
- ?>
201
- </span>
202
- </div>
203
- <?php
204
- }
205
-
206
- ?>
207
- </div>
208
- <div id="image-list" class="row"></div>
209
-
210
- <div class="actions">
211
- <div class="row">
212
- <?php
213
- _e('Add links by clicking the EDIT (pencil) button', 'final-tiles-grid-gallery-lite');
214
- ?><br>
215
- <?php
216
- _e('Drag the images to change their order.', 'final-tiles-grid-gallery-lite');
217
- ?>
218
- </div>
219
- </div>
220
- <div id="images" class="ftg-section form-fields">
221
- <div class="actions source-posts source-panel">
222
- <div class="row">
223
- <label>Taxonomy operator</label>
224
- <select name="ftg_taxonomyOperator" class="browser-default js-ajax-loading-control">
225
- <option <?php
226
- ftg_sel($gallery, "taxonomyOperator", "OR");
227
- ?> value="OR">OR: all posts matching 1 ore more selected taxonomies
228
- </option>
229
- <option <?php
230
- ftg_sel($gallery, "taxonomyOperator", "AND");
231
- ?> value="AND">AND: all posts matching all the selected taxonomies
232
- </option>
233
- </select>
234
- </div>
235
- <div class="row">
236
- <label>Taxonomy as filter</label>
237
- <select name="ftg_taxonomyAsFilter" class="browser-default js-ajax-loading-control">
238
- <option></option>
239
- <?php
240
- foreach (get_taxonomies(array(), "objects") as $taxonomy => $t) {
241
- ?>
242
- <?php
243
-
244
- if ($t->publicly_queryable) {
245
- ?>
246
- <option <?php
247
- ftg_sel($gallery, "taxonomyAsFilter", $t->label);
248
- ?> value="<?php
249
- _e($t->label);
250
- ?>"><?php
251
- _e($t->label);
252
- ?></option>
253
- <?php
254
- }
255
-
256
- ?>
257
- <?php
258
- }
259
- ?>
260
- </select>
261
- </div>
262
- <div class="row checkboxes">
263
- <strong class="label"><?php
264
- _e('Post type:', 'final-tiles-grid-gallery-lite');
265
- ?></strong>
266
- <span>
267
- <?php
268
- $idx = 0;
269
- ?>
270
- <?php
271
- foreach (get_post_types('', 'names') as $t) {
272
- ?>
273
- <?php
274
-
275
- if (!in_array($t, $excluded_post_types)) {
276
- ?>
277
- <span class="tax-item">
278
- <input class="browser-default" id="post-type-<?php
279
- _e($idx);
280
- ?>" type="checkbox" name="post_types" value="<?php
281
- _e($t);
282
- ?>">
283
- <label for="post-type-<?php
284
- _e($idx);
285
- ?>"><?php
286
- _e($t);
287
- ?></label>
288
- </span>
289
- <?php
290
- $idx++;
291
- ?>
292
- <?php
293
- }
294
-
295
- ?>
296
- <?php
297
- }
298
- ?>
299
- <input type="hidden" name="ftg_post_types" value="<?php
300
- _e($gallery->post_types);
301
- ?>"/>
302
- </span>
303
- </div>
304
- <?php
305
- //print_r(get_taxonomies(array(), "objects")); exit();
306
- ?>
307
- <?php
308
- foreach (get_taxonomies(array(), "objects") as $taxonomy => $t) {
309
- ?>
310
- <?php
311
-
312
- if ($t->publicly_queryable) {
313
- ?>
314
- <?php
315
- $items = get_terms($taxonomy, array(
316
- "hide_empty" => false,
317
- ));
318
- ?>
319
- <?php
320
-
321
- if (count($items) > 0) {
322
- ?>
323
- <?php
324
- //print_r($items);
325
- ?>
326
- <div class="row checkboxes">
327
- <strong class="label"><?php
328
- echo $t->label;
329
- ?></strong>
330
- <span>
331
- <?php
332
- $idx = 0;
333
- ?>
334
- <?php
335
- foreach ($items as $c) {
336
- ?>
337
- <span class="tax-item">
338
- <input id="post-tax-<?php
339
- _e($c->term_id);
340
- ?>" type="checkbox" name="post_taxonomy" data-taxonomy="<?php
341
- _e($t->name);
342
- ?>" value="<?php
343
- _e($c->term_id);
344
- ?>">
345
- <label for="post-tax-<?php
346
- _e($c->term_id);
347
- ?>"><?php
348
- _e($c->name);
349
- ?></label>
350
- </span>
351
- <?php
352
- $idx++;
353
- ?>
354
- <?php
355
- }
356
- ?>
357
- </span>
358
- </div>
359
- <?php
360
- }
361
-
362
- ?>
363
- <?php
364
- }
365
-
366
- ?>
367
- <?php
368
- }
369
- ?>
370
- <input type="hidden" name="ftg_post_taxonomies" value="<?php
371
- _e($gallery->post_taxonomies);
372
- ?>"/>
373
- <div class="row checkboxes">
374
- <strong class="label"><?php
375
- _e('Max posts:', 'final-tiles-grid-gallery-lite');
376
- ?></strong>
377
- <span class="aside">
378
- <input type="text" name="ftg_max_posts" value="<?php
379
- echo $gallery->max_posts;
380
- ?>">
381
- <span><?php
382
- _e('(enter 0 for unlimited posts)', 'final-tiles-grid-gallery-lite');
383
- ?></span>
384
- </span>
385
- </div>
386
- </div>
387
- <?php
388
-
389
- if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
390
- ?>
391
- <div class="actions source-woocommerce source-panel">
392
- <div class="row checkboxes">
393
- <strong class="label"><?php
394
- _e('Categories', 'final-tiles-grid-gallery-lite');
395
- ?>:</strong>
396
- <span>
397
- <?php
398
- $idx = 0;
399
- ?>
400
- <?php
401
- foreach ($woo_categories as $c) {
402
- ?>
403
- <input class="browser-default" id="woo-cat-<?php
404
- _e($idx);
405
- ?>" type="checkbox" name="woo_cat" value="<?php
406
- _e($c->term_id);
407
- ?>">
408
- <label for="woo-cat-<?php
409
- _e($idx);
410
- ?>"><?php
411
- _e($c->cat_name);
412
- ?></label>
413
- <?php
414
- $idx++;
415
- ?>
416
- <?php
417
- }
418
- ?>
419
- <input type="hidden" name="ftg_woo_categories" value="<?php
420
- _e($gallery->woo_categories);
421
- ?>"/>
422
- </span>
423
- </div>
424
- </div>
425
- <?php
426
- }
427
 
428
- ?>
429
- </div>
430
- </div>
431
- </li>
432
- <?php
433
- foreach ($ftg_fields as $section => $s) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  ?>
435
- <li id="<?php
436
- _e(FinalTiles_Gallery::slugify($section));
437
- ?>">
438
- <div class="collapsible-header">
439
- <i class="<?php
440
- echo $s["icon"];
441
- ?> light-green darken-1 white-text ftg-section-icon"></i> <?php
442
- _e($section, 'final-tiles-grid-gallery-lite');
443
- ?>
444
- </div>
445
- <div class="collapsible-body tab form-fields">
446
- <div class="jump-head">
447
- <?php
448
- $jumpFields = array();
449
- foreach ($s["fields"] as $f => $data) {
450
- $jumpFields[$f] = $data;
451
- $jumpFields[$f]['_code'] = $f;
452
- }
453
- unset($f);
454
- unset($data);
455
- usort($jumpFields, "ftgSortByName");
456
- ?>
457
- <select class="browser-default jump">
458
- <option><?php
459
- _e('Jump to setting', 'final-tiles-grid-gallery-lite');
460
- ?></option>
461
- <?php
462
- foreach ($jumpFields as $f => $data) {
463
- ?>
464
- <?php
465
-
466
- if (is_array($data["excludeFrom"]) && !in_array($ftg_parent_page, $data["excludeFrom"])) {
467
- ?>
468
- <option value="<?php
469
- _e($data['_code'], 'final-tiles-grid-gallery-lite');
470
- ?>">
471
- <?php
472
- _e($data["name"], 'final-tiles-grid-gallery-lite');
473
- ?>
474
- </option>
475
- <?php
476
- }
477
-
478
- ?>
479
- <?php
480
- }
481
- ?>
482
- </select>
483
-
484
- <?php
485
-
486
- if (array_key_exists("presets", $s)) {
487
- ?>
488
- <select class="browser-default presets" data-field-idx="<?php
489
- echo $idx;
490
- ?>">
491
- <option value="">Select preset</option>
492
- <?php
493
- foreach ($s["presets"] as $preset => $data) {
494
- ?>
495
- <option><?php
496
- echo $preset;
497
- ?></option>
498
- <?php
499
- }
500
- ?>
501
- </select>
502
- <?php
503
- }
504
-
505
- ?>
506
- </div>
507
- <table>
508
- <tbody>
509
- <?php
510
- foreach ($s["fields"] as $f => $data) {
511
- ?>
512
- <?php
513
-
514
- if (is_array($data["excludeFrom"]) && !in_array($ftg_parent_page, $data["excludeFrom"])) {
515
- ?>
516
-
517
- <tr class="field-row row-<?php
518
- print $f;
519
- ?> <?php
520
- print $data["type"];
521
- ?>">
522
- <th scope="row">
523
- <label><?php
524
- _e($data["name"], 'final-tiles-grid-gallery-lite');
525
- ?>
526
- <?php
527
-
528
- if ($data["mu"]) {
529
- ?>
530
- (<?php
531
- _e($data["mu"]);
532
- ?>)
533
- <?php
534
- }
535
-
536
- ?>
537
-
538
- <?php
539
- if (strlen($data["description"])) {
540
- ?>
541
- <div class="tab-header-tooltip-container ftg-tooltip">
542
- <span>[?]</span>
543
- <div class="tab-header-description ftg-tooltip-content">
544
- <?php echo wp_kses_post($data["description"]); ?>
545
- </div>
546
- </div>
547
- <?php
548
- }
549
-
550
- ?>
551
- </label>
552
- </th>
553
- <td>
554
- <div class="field <?php
555
- echo(in_array('shortcode', $data["excludeFrom"]) ? "" : "js-update-shortcode");
556
- ?>">
557
- <?php
558
-
559
- if ($data["type"] == "text") {
560
- ?>
561
- <div class="text">
562
- <input type="text" size="30" name="ftg_<?php
563
- print $f;
564
- ?>" value="<?php
565
- ftg_p($gallery, $f, $data["default"]);
566
- ?>"/>
567
- </div>
568
- <?php
569
- } elseif ($data["type"] == "cta") {
570
- ?>
571
- <div class="text">
572
- <a class="in-table-cta" href="<?php
573
- echo ftg_fs()->get_upgrade_url();
574
- ?>"><i class="mdi mdi-bell-ring-outline"></i>
575
- <?php
576
- _e('Unlock this feature. Upgrade Now!', 'final-tiles-grid-gallery-lite');
577
- ?>
578
- </a>
579
- </div>
580
- <?php
581
- } elseif ($data["type"] == "select") {
582
- ?>
583
- <div class="text">
584
- <select class="browser-default" name="ftg_<?php
585
- print $f;
586
- ?>">
587
- <?php
588
- foreach (array_keys($data["values"]) as $optgroup) {
589
- ?>
590
- <optgroup label="<?php
591
- print $optgroup;
592
- ?>">
593
- <?php
594
- foreach ($data["values"][$optgroup] as $option) {
595
- ?>
596
-
597
- <?php
598
- $v = explode("|", $option);
599
- ?>
600
-
601
- <option <?php
602
- echo ftg_checkFieldDisabled($v);
603
- ?> <?php
604
- ftg_sel($gallery, $f, $v[0]);
605
- ?> value="<?php
606
- print $v[0];
607
- ?>"><?php
608
- _e($v[1], 'final-tiles-grid-gallery-lite');
609
- echo ftg_printFieldPro($v);
610
- ?></option>
611
- <?php
612
- }
613
- ?>
614
- </optgroup>
615
- <?php
616
- }
617
- ?>
618
- </select>
619
- <?php
620
-
621
- if ($f == "lightbox") {
622
- ?>
623
- <div class="col s12 ftg-everlightbox-settings">
624
- <?php
625
-
626
- if (class_exists('Everlightbox_Public')) {
627
- ?>
628
- <div class="card-panel light-green lighten-4">
629
- <a href="?page=everlightbox_options"
630
- target="_blank"><?php
631
- _e('EverlightBox settings', 'final-tiles-grid-gallery-lite');
632
- ?></a>
633
- </div>
634
- <?php
635
- } else {
636
- ?>
637
- <div class="card-panel yellow lighten-3">
638
- <?php
639
- _e('EverlightBox not installed', 'final-tiles-grid-gallery-lite');
640
- ?>. <a target="_blank" class="open-checkout"
641
- href="https://checkout.freemius.com/mode/dialog/plugin/1981/plan/2954/"><?php
642
- _e('Purchase', 'final-tiles-grid-gallery-lite');
643
- ?></a>
644
- </div>
645
- <?php
646
- }
647
-
648
- ?>
649
- </div>
650
- <?php
651
- }
652
-
653
- ?>
654
- </div>
655
- <?php
656
- } elseif ($data["type"] == "toggle") {
657
- ?>
658
- <div class="switch">
659
- <label>
660
- Off
661
- <input disabled type="checkbox" id="ftg_<?php
662
- print $f;
663
- ?>" name="ftg_<?php
664
- print $f;
665
- ?>" value="<?php
666
- ftg_p($gallery, $f, $data["default"]);
667
- ?>" <?php
668
- ftg_sel(
669
- $gallery,
670
- $f,
671
- "T",
672
- "checked"
673
- );
674
- ?> >
675
- <span class="lever"></span>
676
- On
677
- </label>
678
- </div>
679
- <?php
680
- } elseif ($data["type"] == "slider") {
681
- ?>
682
-
683
- <div class="text">
684
- <b id="preview-<?php
685
- print $f;
686
- ?>" class="range-preview"><?php
687
- ftg_p($gallery, $f, $data["default"]);
688
- ?></b>
689
- <p class="range-field">
690
- <input data-preview="<?php
691
- echo $f;
692
- ?>" name="ftg_<?php
693
- print $f;
694
- ?>" value="<?php
695
- ftg_p($gallery, $f, $data["default"]);
696
- ?>" type="range" min="<?php
697
- print $data["min"];
698
- ?>" max="<?php
699
- print $data["max"];
700
- ?>"/>
701
- </p>
702
- </div>
703
-
704
- <?php
705
- } elseif ($data["type"] == "number") {
706
- ?>
707
- <div class="text">
708
- <input type="text" name="ftg_<?php
709
- print $f;
710
- ?>" class="integer-only" value="<?php
711
- ftg_p($gallery, $f, $data["default"]);
712
- ?>">
713
- </div>
714
-
715
- <?php
716
- } elseif ($data["type"] == "color") {
717
- ?>
718
- <div class="text">
719
- <input type="text" size="6" data-default-color="<?php
720
- print $data["default"];
721
- ?>" name="ftg_<?php
722
- print $f;
723
- ?>" value="<?php
724
- ftg_p($gallery, $f, $data["default"]);
725
- ?>" class='pickColor'/></div>
726
-
727
- <?php
728
- } elseif ($data["type"] == "filter") {
729
- ?>
730
-
731
- <div class="filters gallery-filters dynamic-table">
732
- <div class="text"></div>
733
- <a href="#" class="add button"><?php
734
- _e('Add filter', 'final-tiles-grid-gallery-lite');
735
- ?></a>
736
- <a href="#" class="reset-default-filter button"><?php
737
- _e('Reset selected filter', 'final-tiles-grid-gallery-lite');
738
- ?></a>
739
- <input type="hidden" name="ftg_filters" value="<?php
740
- ftg_p($gallery, "filters");
741
- ?>"/>
742
- <input type="hidden" name="filter_def" value="<?php
743
- ftg_p($gallery, "defaultFilter");
744
- ?>"/>
745
- </div>
746
-
747
- <?php
748
- } elseif ($data["type"] == "textarea") {
749
- ?>
750
- <div class="text">
751
- <textarea name="ftg_<?php
752
- print $f;
753
- ?>"><?php
754
- ftg_p($gallery, $f);
755
- ?></textarea>
756
- </div>
757
- <?php
758
- } elseif ($data["type"] == "custom_isf") {
759
- ?>
760
- <div class="custom_isf dynamic-table">
761
- <table class="striped">
762
- <thead>
763
- <tr>
764
- <th></th>
765
- <th><?php
766
- _e('Resolution', 'final-tiles-grid-gallery-lite');
767
- ?> (px)
768
- </th>
769
- <th><?php
770
- _e('Size factor', 'final-tiles-grid-gallery-lite');
771
- ?> (%)
772
- </th>
773
- </tr>
774
- </thead>
775
- <tbody>
776
- </tbody>
777
- </table>
778
- <input type="hidden" name="ftg_imageSizeFactorCustom"
779
- value="<?php
780
- ftg_p($gallery, "imageSizeFactorCustom");
781
- ?>"/>
782
- <a href="#" class="add button">
783
- <?php
784
- _e('Add resolution', 'final-tiles-grid-gallery-lite');
785
- ?></a>
786
- </div>
787
- <?php
788
- }
789
-
790
- ?>
791
- <div class="help" id="help-<?php
792
- echo $f;
793
- ?>">
794
- <?php
795
-
796
- if (!in_array('shortcode', $data["excludeFrom"]) && $data["type"] != "cta") {
797
- ?>
798
- <div class="ftg-code">
799
- <a href="#" class="toggle-shortcode"
800
- data-code="<?php print $f; ?>">
801
- <i class="fa fa-eye-slash"></i>
802
- </a>
803
- <span id="shortcode-<?php print $f; ?>">
804
- <?php _e('Shortcode attribute', 'final-tiles-grid-gallery-lite'); ?>:
805
- <!--<input type="text" class="shortcode-val" readonly="" value='<?php
806
- /* _e(FinalTilesGalleryUtils::fieldNameToShortcode($f));
807
- */?>="<?php
808
- /* ftg_p($gallery, $f, $data["default"]);
809
- */?>"'>-->
810
- <code class="shortcode-val"><?php _e(FinalTilesGalleryUtils::fieldNameToShortcode($f)); ?>="<?php ftg_p($gallery, $f, $data["default"]); ?>"</code>
811
- </span>
812
- </div>
813
- <?php
814
- }
815
-
816
- ?>
817
- </div>
818
-
819
- </div>
820
- </td>
821
- </tr>
822
- <?php
823
- }
824
-
825
- ?>
826
- <?php
827
- }
828
- ?>
829
- </tbody>
830
- </table>
831
- </div>
832
- </li>
833
- <?php
834
  $idx++;
835
  ?>
836
- <?php
837
  }
838
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
839
 
840
- </ul>
841
- </div>
842
- <div class="col s3">
843
- <?php
844
-
845
- if (ftg_fs()->is_not_paying()) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
846
  ?>
847
- <ul class="collapsible gallery-actions">
848
- <li class="active">
849
- <div class="collapsible-header"><?php
850
- _e('Upgrade', 'final-tiles-grid-gallery-lite');
851
- ?>: <?php
852
- _e('unlock features', 'final-tiles-grid-gallery-lite');
853
- ?></div>
854
- <div class="collapsible-body">
855
- <div class="ftg-upsell">
856
- <a href="<?php
857
- echo ftg_fs()->get_upgrade_url();
858
- ?>"><i class="fa fa-hand-o-right"></i> <?php
859
- _e('Upgrade', 'final-tiles-grid-gallery-lite');
860
- ?></a>
861
- </div>
862
- <p>or save 30% purchasing the <strong>BUNDLE</strong>:</p>
863
- <div class="ftg-upsell">
864
- <a target="_blank" href="https://www.final-tiles-gallery.com/wordpress/bundle">
865
- <i class="fa fa-star"></i>
866
- Bundle: 30% <?php
867
- _e('discount', 'final-tiles-grid-gallery-lite');
868
- ?></a>
869
- </div>
870
- <p class="upsell-info">
871
- <?php
872
- _e('GET 3 plugins', 'final-tiles-grid-gallery-lite');
873
- ?>: Final Tiles Gallery Ultimate + EverlightBox + PostSnippet
874
- </p>
875
- </div>
876
- </li>
877
- </ul>
878
- <?php
879
  }
880
-
881
  ?>
882
- <ul class="collapsible gallery-actions">
883
- <li class="active">
884
- <div class="collapsible-header"><?php
885
- _e('Publish', 'final-tiles-grid-gallery-lite');
886
- ?>
887
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
888
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
889
- <g>
890
- <path fill="none" d="M0,0h24v24H0V0z"></path>
891
- </g>
892
- <g>
893
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
894
- </g>
895
- </svg>
896
- </div>
897
- <div class="collapsible-body">
898
- <div><input readonly="" type="text" value="[FinalTilesGallery id='<?php
899
- print $gid;
900
- ?>']"></div>
901
- <div>
902
- <button data-update-gallery class="button components-button is-primary"><?php
903
- _e('Save gallery', 'final-tiles-grid-gallery-lite');
904
- ?></button>
905
- </div>
906
- </div>
907
- </li>
908
- <li>
909
- <div class="collapsible-header"><?php
910
- _e('Import settings', 'final-tiles-grid-gallery-lite');
911
- ?>
912
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
913
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
914
- <g>
915
- <path fill="none" d="M0,0h24v24H0V0z"></path>
916
- </g>
917
- <g>
918
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
919
- </g>
920
- </svg>
921
- </div>
922
- <div class="collapsible-body">
923
- <p><?php
924
- _e('Paste Here the configuration code', 'final-tiles-grid-gallery-lite');
925
- ?></p>
926
- <div><textarea data-import-text></textarea></div>
927
- <button data-ftg-import class="button"><i class="fa fa-upload"></i> <?php
928
- _e('Import', 'final-tiles-grid-gallery-lite');
929
- ?></button>
930
- </div>
931
- </li>
932
- <li>
933
- <div class="collapsible-header"><?php
934
- _e('Export settings', 'final-tiles-grid-gallery-lite');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
935
  ?>
936
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
937
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
938
- <g>
939
- <path fill="none" d="M0,0h24v24H0V0z"></path>
940
- </g>
941
- <g>
942
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
943
- </g>
944
- </svg>
945
- </div>
946
- <div class="collapsible-body">
947
- <p><?php
948
- _e('Settings', 'final-tiles-grid-gallery-lite');
949
- ?></p>
950
- <div><textarea readonly id="ftg-export-code"></textarea></div>
951
- <button id="ftg-export" class="button"><i class="fa fa-download"></i> <?php
952
- _e('Refresh code', 'final-tiles-grid-gallery-lite');
953
- ?></button>
954
- </div>
955
- </li>
956
- <li>
957
- <div class="collapsible-header"><?php
958
- _e('Help', 'final-tiles-grid-gallery-lite');
959
  ?>
960
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
961
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
962
- <g>
963
- <path fill="none" d="M0,0h24v24H0V0z"></path>
964
- </g>
965
- <g>
966
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
967
- </g>
968
- </svg>
969
- </div>
970
- <div class="collapsible-body">
971
- <ul class="collection">
972
- <li class="collection-item">
973
- <i class="fa fa-chevron-right"></i>
974
- <a href="http://issuu.com/greentreelabs/docs/finaltilesgridgallery-documentation?e=17859916/13243836"
975
- target="_blank"><?php
976
- _e('Documentation', 'final-tiles-grid-gallery-lite');
977
- ?></a></li>
978
- <li class="collection-item">
979
- <i class="fa fa-chevron-right"></i>
980
- <a target="_blank" href="https://www.youtube.com/watch?v=RNT4JGjtyrs">
981
- <?php
982
- _e('Tutorial', 'final-tiles-grid-gallery-lite');
983
- ?></a>
984
- </li>
985
- <li class="collection-item">
986
- <i class="fa fa-chevron-right"></i>
987
- <a href="http://www.wpbeginner.com/wp-tutorials/how-to-create-additional-image-sizes-in-wordpress/"
988
- target="_blank"><?php
989
- _e('How to add additional image sizes', 'final-tiles-grid-gallery-lite');
990
- ?></a>
991
- </li>
992
- </ul>
993
- </div>
994
- </li>
995
- </ul>
996
- <ul class="collapsible gallery-actions">
997
- <li>
998
- <div class="collapsible-header"><?php
999
- _e('FAQ', 'final-tiles-grid-gallery-lite');
1000
  ?>
1001
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
1002
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
1003
- <g>
1004
- <path fill="none" d="M0,0h24v24H0V0z"></path>
1005
- </g>
1006
- <g>
1007
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
1008
- </g>
1009
- </svg>
1010
- </div>
1011
- <div class="collapsible-body">
1012
- <ul class="collapsible gallery-actions">
1013
- <li>
1014
- <div class="collapsible-header"><?php
1015
- _e('How can I change the grid on mobile?', 'final-tiles-grid-gallery-lite');
1016
- ?>
1017
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
1018
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
1019
- <g>
1020
- <path fill="none" d="M0,0h24v24H0V0z"></path>
1021
- </g>
1022
- <g>
1023
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
1024
- </g>
1025
- </svg>
1026
- </div>
1027
- <div class="collapsible-body">
1028
- <p><?php
1029
- _e('You can customize the aspect of your galleries for any device. Find the options "Image size factor" into the "Advanced" section. Set a lower value to make images smaller and a higher value to make images larger.');
1030
- ?></p>
1031
- </div>
1032
- </li>
1033
- <li>
1034
- <div class="collapsible-header"><?php
1035
- _e('How to add a link to a picture?', 'final-tiles-grid-gallery-lite');
1036
- ?>
1037
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
1038
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
1039
- <g>
1040
- <path fill="none" d="M0,0h24v24H0V0z"></path>
1041
- </g>
1042
- <g>
1043
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
1044
- </g>
1045
- </svg>
1046
- </div>
1047
- <div class="collapsible-body">
1048
- <p><?php
1049
- _e('Click the edit (pencil) icon on the image and insert the link inside the "Link" field', 'final-tiles-grid-gallery-lite');
1050
- ?></p>
1051
- </div>
1052
- </li>
1053
- <li>
1054
- <div class="collapsible-header"><?php
1055
- _e('Why my images look blurry?', 'final-tiles-grid-gallery-lite');
1056
- ?>
1057
- <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24"
1058
- xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false">
1059
- <g>
1060
- <path fill="none" d="M0,0h24v24H0V0z"></path>
1061
- </g>
1062
- <g>
1063
- <path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path>
1064
- </g>
1065
- </svg>
1066
- </div>
1067
- <div class="collapsible-body">
1068
- <p><?php
1069
- _e('You probably have chosen a small image size. Click the edit (pencil) icon on the blurry image and choose a larger size. Remember, you can choose the size before adding the images to the gallery', 'final-tiles-grid-gallery-lite');
1070
- ?></p>
1071
- </div>
1072
- </li>
1073
- </ul>
1074
- </div>
1075
- </li>
1076
- </ul>
1077
- </div>
1078
- </div>
1079
-
1080
-
1081
- <!-- video panel -->
1082
- <div id="video-panel-model" class="modal">
1083
- <div class="modal-content">
1084
- <p><?php
1085
- _e('Paste here the embed code (it must be an ', 'final-tiles-grid-gallery-lite');
1086
- ?><strong><?php
1087
- _e('iframe', 'final-tiles-grid-gallery-lite');
1088
- ?></strong>
1089
- <?php
1090
- _e('and it must contain the attributes', 'final-tiles-grid-gallery-lite');
1091
- ?> <strong><?php
1092
- _e('width', 'final-tiles-grid-gallery-lite');
1093
- ?></strong> <?php
1094
- _e('and', 'final-tiles-grid-gallery-lite');
1095
- ?><strong><?php
1096
- _e(' height', 'final-tiles-grid-gallery-lite');
1097
- ?></strong>)</p>
1098
- <div class="text dark">
1099
- <textarea></textarea>
1100
- </div>
1101
- <div class="field video-filters clearfix"></div>
1102
- <input type="hidden" id="filter-video" value="<?php
1103
- print $gallery->filters;
1104
- ?>">
1105
- </div>
1106
- <input type="hidden" id="video-panel-action">
1107
- <div class="field buttons modal-footer">
1108
- <a href="#" data-action="edit"
1109
- class="action positive save modal-action modal-close waves-effect waves-green btn-flat"><?php
1110
- _e('Save', 'final-tiles-grid-gallery-lite');
1111
- ?></a>
1112
- <a href="#" data-action="cancel"
1113
- class="action neutral modal-action modal-close waves-effect waves-yellow btn-flat"><?php
1114
- _e('Cancel', 'final-tiles-grid-gallery-lite');
1115
- ?></a>
1116
- </div>
1117
- </div>
1118
-
1119
-
1120
- <!-- image panel -->
1121
- <div id="image-panel-model" class="modal">
1122
- <div class="modal-content cf">
1123
- <h4><?php
1124
- _e('Edit image', 'final-tiles-grid-gallery-lite');
1125
- ?></h4>
1126
- <div class="left">
1127
- <div class="figure"></div>
1128
- <div class="field sizes"></div>
1129
- </div>
1130
- <div class="right-side">
1131
- <div class="field">
1132
- <label><?php
1133
- _e('Title', 'final-tiles-grid-gallery-lite');
1134
- ?></label>
1135
- <div class="text">
1136
- <textarea name="imageTitle"></textarea>
1137
- </div>
1138
- </div>
1139
- <div class="field">
1140
- <label><?php
1141
- _e('Caption', 'final-tiles-grid-gallery-lite');
1142
- ?></label>
1143
- <div class="text">
1144
- <textarea name="description"></textarea>
1145
- </div>
1146
- </div>
1147
- <div class="field">
1148
- <label><?php
1149
- _e('Alt', 'final-tiles-grid-gallery-lite');
1150
- ?><?php
1151
- _e('(leave empty to use title or description as ALT attribute)', 'final-tiles-grid-gallery-lite');
1152
- ?></label>
1153
- <div class="text">
1154
- <input type="text" name="alt"/>
1155
- </div>
1156
- </div>
1157
- <div class="field">
1158
- <input class="browser-default" id="hidden-image" type="checkbox" name="hidden" value="T"/>
1159
- <label for="hidden-image">
1160
- <?php
1161
- _e('Hidden, visible only with lightbox', 'final-tiles-grid-gallery-lite');
1162
  ?>
1163
- </label>
1164
- </div>
1165
- <div class="field js-no-hidden">
1166
-
1167
- <table>
1168
- <tr>
1169
- <td style="width: 60%">
1170
- <label><?php
1171
- _e('Link', 'final-tiles-grid-gallery-lite');
1172
- ?></label><br>
1173
- <input type="text" size="20" value="" name="link"/>
1174
- </td>
1175
- <td>
1176
- <label><?php
1177
- _e('Link target', 'final-tiles-grid-gallery-lite');
1178
- ?></label>
1179
- <select name="target" class="browser-default">
1180
- <option value="default"><?php
1181
- _e('Default target', 'final-tiles-grid-gallery-lite');
1182
- ?></option>
1183
- <option value="_self"><?php
1184
- _e('Open in same page', 'final-tiles-grid-gallery-lite');
1185
- ?></option>
1186
- <option value="_blank"><?php
1187
- _e('Open in _blank', 'final-tiles-grid-gallery-lite');
1188
- ?></option>
1189
- <option value="_lightbox"><?php
1190
- _e('Open in lightbox (when using a lightbox)', 'final-tiles-grid-gallery-lite');
1191
- ?></option>
1192
- </select>
1193
- </td>
1194
- </tr>
1195
- </table>
1196
- </div>
1197
- <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1198
  ?>
1199
- </div>
1200
- </div>
1201
- <div class="field buttons modal-footer">
1202
- <a href="#" data-action="cancel" class="modal-close action button"><i class="mdi-content-reply"></i> <?php
1203
- _e('Cancel', 'final-tiles-grid-gallery-lite');
1204
- ?></a>
1205
- <a href="#" data-action="save" class="modal-close button components-button is-primary"><i
1206
- class="fa fa-save"></i> <?php
1207
- _e('Save', 'final-tiles-grid-gallery-lite');
1208
- ?></a>
1209
- </div>
1210
- </div>
1211
-
1212
- <div class="preloader-wrapper big active" id="spinner">
1213
- <div class="spinner-layer spinner-blue-only">
1214
- <div class="circle-clipper left">
1215
- <div class="circle"></div>
1216
- </div>
1217
- <div class="gap-patch">
1218
- <div class="circle"></div>
1219
- </div>
1220
- <div class="circle-clipper right">
1221
- <div class="circle"></div>
1222
- </div>
1223
- </div>
1224
- </div>
1225
- <!-- images section -->
1226
-
1227
- <div class="overlay" style="display:none"></div>
1228
-
1229
- <script>
1230
- var presets = {};
1231
- <?php
1232
- $presetIdx = 0;
1233
- foreach ($ftg_fields as $section => $s) {
1234
- if (array_key_exists("presets", $s)) {
1235
- foreach ($s["presets"] as $preset => $values) {
1236
- echo "presets['preset_" . $presetIdx . "_" . $preset . "'] = " . json_encode($values) . ";\n";
1237
  }
 
 
 
 
 
 
 
 
1238
  }
1239
- $presetIdx++;
 
 
1240
  }
1241
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1242
 
1243
- var ftg_wp_caption_field = '<?php
1244
- ftg_p($gallery, "wp_field_caption");
1245
- ?>';
1246
- (function ($) {
1247
- $("[name=captionFullHeight]").change(function () {
1248
- if ($(this).val() == "F")
1249
- $("[name=captionEffect]").val("fade");
1250
- });
1251
- $("[name=captionEffect]").change(function () {
1252
- if ($(this).val() != "fade" && $("[name=captionFullHeight]").val() == "F") {
1253
- $(this).val("fade");
1254
- alert("Cannot set this effect if 'Caption full height' is switched off.");
1255
- }
1256
- });
1257
-
1258
- <?php
1259
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1260
 
1261
- })(jQuery);
1262
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
 
3
+ if ( !function_exists( 'ftg_p' ) ) {
4
+ function ftg_p( $gallery, $field, $default = NULL )
5
+ {
6
+ global $ftg_options ;
7
+
8
+ if ( $ftg_options ) {
9
+ if ( array_key_exists( $field, $ftg_options ) ) {
10
+ print stripslashes( $ftg_options[$field] );
11
  }
12
  return;
13
  }
14
+
15
+
16
+ if ( $gallery == NULL || $gallery->{$field} === NULL ) {
17
+
18
+ if ( $default === NULL ) {
19
  print "";
20
  } else {
21
+ print stripslashes( $default );
22
  }
23
+
24
  } else {
25
+ print stripslashes( $gallery->{$field} );
26
  }
27
+
28
  }
29
+
30
  function ftg_sel(
31
  $gallery,
32
  $field,
33
  $value,
34
  $type = "selected"
35
+ )
36
+ {
37
+ global $ftg_options ;
38
+
39
+ if ( $ftg_options && $ftg_options[$field] == $value ) {
40
  print $type;
41
  return;
42
  }
43
+
44
+
45
+ if ( $gallery == NULL || !isset( $gallery->{$field} ) ) {
46
  print "";
47
  } else {
48
+ if ( $gallery->{$field} == $value ) {
49
  print $type;
50
  }
51
  }
52
+
53
  }
54
+
55
+ function ftg_checkFieldDisabled( $options )
56
+ {
57
+ if ( is_array( $options ) && count( $options ) == 3 && $options[2] == "disabled" ) {
58
  return "disabled";
59
  }
60
  return "";
61
  }
62
+
63
+ function ftg_checkDisabledOption( $plan )
64
+ {
65
  return "disabled";
66
  return "";
67
  }
68
+
69
+ function ftg_printPro( $plan )
70
+ {
71
  return " (upgrade to unlock)";
72
  return "";
73
  }
74
+
75
+ function ftg_printFieldPro( $options )
76
+ {
77
+ if ( is_array( $options ) && count( $options ) == 3 && $options[2] == "disabled" ) {
78
  return " (upgrade to unlock)";
79
  }
80
  return "";
82
 
83
  }
84
 
85
+ global $ftg_parent_page ;
86
+ global $ftg_fields ;
87
  $filters = array();
88
  //print_r($gallery);
89
  $idx = 0;
90
+ function ftgSortByName( $a, $b )
91
+ {
92
  return $a["name"] > $b["name"];
93
  }
94
 
95
  ?>
96
+
97
+ <div class="row">
98
+ <div class="col s9">
99
+ <ul class="collapsible" id="all-settings" data-collapsible="accordion">
100
+ <li id="images" class="active">
101
+ <div class="collapsible-header">
102
+ <i class="fa fa-picture-o light-green darken-1 white-text ftg-section-icon"></i> <?php
103
+ _e( 'Images', 'final-tiles-grid-gallery-lite' );
104
+ ?>
105
+ </div>
106
+ <div class="collapsible-body" style="display:block">
107
+ <div class="actions">
108
+ <div class="images-bar">
109
+ <select name="ftg_source" class="browser-default">
110
+ <option <?php
111
+ ftg_sel( $gallery, "source", "images" );
112
+ ?> value="images"><?php
113
+ _e( 'User images', 'final-tiles-grid-gallery-lite' );
114
+ ?></option>
115
+ <option <?php
116
+ ftg_sel( $gallery, "source", "posts" );
117
+ ?> value="posts" <?php
118
+ echo ftg_checkDisabledOption( 'ultimate' ) ;
119
+ ?>><?php
120
+ _e( 'Recent posts with featured image', 'final-tiles-grid-gallery-lite' );
121
+ echo ftg_printPro( 'ultimate' ) ;
122
+ ?></option>
123
+ <?php
124
+
125
+ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
126
+ ?>
127
+ <option <?php
128
+ ftg_sel( $gallery, "source", "woocommerce" );
129
+ ?> value="woocommerce" <?php
130
+ echo ftg_checkDisabledOption( 'ultimate' ) ;
131
+ ?>><?php
132
+ _e( 'WooCommerce products', 'final-tiles-grid-gallery-lite' );
133
+ echo ftg_printPro( 'ultimate' ) ;
134
+ ?></option>
135
+ <?php
136
+ }
137
 
138
+ ?>
139
+ </select>
140
+ <select class="current-image-size browser-default">
141
+ <?php
142
+ foreach ( $this->list_thumbnail_sizes() as $size => $atts ) {
143
+ print '<option ' . (( $size == 'large' ? 'selected' : '' )) . ' value="' . $size . '">' . $size . " (" . implode( 'x', $atts ) . ")</option>";
144
+ }
145
+ ?>
146
+ </select>
147
+
148
+ <a href="#" class="open-media-panel button">
149
+ <?php
150
+ _e( 'Add images', 'final-tiles-grid-gallery-lite' );
151
+ ?>
152
+ </a>
153
+ <?php
154
+ ?>
155
+ <a onclick="alert('Upgrade to unlock')" href="#" class=" button"><?php
156
+ _e( 'Add video', 'final-tiles-grid-gallery-lite' );
157
+ ?></a>
158
+ <?php
159
+ ?>
160
+ <a class="button button-delete" data-remove-images href="#!"><?php
161
+ _e( 'Remove selected', 'final-tiles-grid-gallery-lite' );
162
+ ?></a>
163
+ </div>
164
+ <div class="row selection-row">
165
+ <div class="bulk options">
166
+ <span>
167
+ <a class="button" href="#" data-action="select"><?php
168
+ _e( 'Select all', 'final-tiles-grid-gallery-lite' );
169
+ ?></a>
170
+ <a class="button" href="#" data-action="deselect"><?php
171
+ _e( 'Deselect all', 'final-tiles-grid-gallery-lite' );
172
+ ?></a>
173
+ <a class="button" href="#" data-action="toggle"><?php
174
+ _e( 'Toggle selection', 'final-tiles-grid-gallery-lite' );
175
+ ?></a>
176
+ </span>
177
+ <span>
178
+ <?php
179
+ ?>
180
+ <?php
181
+ ?>
182
+ </span>
183
+ <span>
184
+ <a class="button" href="#" data-action="show-hide"><?php
185
+ _e( 'Toggle visibility', 'final-tiles-grid-gallery-lite' );
186
+ ?></a>
187
+ </span>
188
+ </div>
189
+ </div>
190
+ <?php
191
+
192
+ if ( is_array( $filters ) && count( $filters ) > 1 ) {
193
+ ?>
194
+ <div class="row filter-list">
195
+ <b> <?php
196
+ _e( 'Select by filter:', 'final-tiles-grid-gallery-lite' );
197
+ ?> </b>
198
+ <span class="filter-select-control">
199
+ <?php
200
+ foreach ( $filters as $filter ) {
201
+ ?>
202
+ <em class='button filter-item' ><?php
203
+ print $filter;
204
+ ?></em>
205
+ <?php
206
+ }
207
+ ?>
208
+ </span>
209
+ </div>
210
+ <?php
211
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
 
213
+ ?>
214
+ </div>
215
+ <div id="image-list" class="row"></div>
216
+
217
+ <div class="actions">
218
+ <div class="row">
219
+ <?php
220
+ _e( 'Add links by clicking the EDIT (pencil) button', 'final-tiles-grid-gallery-lite' );
221
+ ?><br>
222
+ <?php
223
+ _e( 'Drag the images to change their order.', 'final-tiles-grid-gallery-lite' );
224
+ ?>
225
+ </div>
226
+ </div>
227
+ <div id="images" class="ftg-section form-fields">
228
+ <div class="actions source-posts source-panel">
229
+ <div class="row">
230
+ <label>Taxonomy operator</label>
231
+ <select name="ftg_taxonomyOperator" class="browser-default js-ajax-loading-control">
232
+ <option <?php
233
+ ftg_sel( $gallery, "taxonomyOperator", "OR" );
234
+ ?> value="OR">OR: all posts matching 1 ore more selected taxonomies</option>
235
+ <option <?php
236
+ ftg_sel( $gallery, "taxonomyOperator", "AND" );
237
+ ?> value="AND">AND: all posts matching all the selected taxonomies</option>
238
+ </select>
239
+ </div>
240
+ <div class="row">
241
+ <label>Taxonomy as filter</label>
242
+ <select name="ftg_taxonomyAsFilter" class="browser-default js-ajax-loading-control">
243
+ <option></option>
244
+ <?php
245
+ foreach ( get_taxonomies( array(), "objects" ) as $taxonomy => $t ) {
246
+ ?>
247
+ <?php
248
+
249
+ if ( $t->publicly_queryable ) {
250
+ ?>
251
+ <option <?php
252
+ ftg_sel( $gallery, "taxonomyAsFilter", $t->label );
253
+ ?> value="<?php
254
+ _e( $t->label );
255
+ ?>"><?php
256
+ _e( $t->label );
257
+ ?></option>
258
+ <?php
259
+ }
260
+
261
+ ?>
262
+ <?php
263
+ }
264
+ ?>
265
+ </select>
266
+ </div>
267
+ <div class="row checkboxes">
268
+ <strong class="label"><?php
269
+ _e( 'Post type:', 'final-tiles-grid-gallery-lite' );
270
+ ?></strong>
271
+ <span>
272
+ <?php
273
+ $idx = 0;
274
+ ?>
275
+ <?php
276
+ foreach ( get_post_types( '', 'names' ) as $t ) {
277
+ ?>
278
+ <?php
279
+
280
+ if ( !in_array( $t, $excluded_post_types ) ) {
281
+ ?>
282
+ <span class="tax-item">
283
+ <input class="browser-default" id="post-type-<?php
284
+ _e( $idx );
285
+ ?>" type="checkbox" name="post_types" value="<?php
286
+ _e( $t );
287
+ ?>">
288
+ <label for="post-type-<?php
289
+ _e( $idx );
290
+ ?>"><?php
291
+ _e( $t );
292
+ ?></label>
293
+ </span>
294
+ <?php
295
+ $idx++;
296
+ ?>
297
+ <?php
298
+ }
299
+
300
+ ?>
301
+ <?php
302
+ }
303
+ ?>
304
+ <input type="hidden" name="ftg_post_types" value="<?php
305
+ _e( $gallery->post_types );
306
+ ?>" />
307
+ </span>
308
+ </div>
309
+ <?php
310
+ //print_r(get_taxonomies(array(), "objects")); exit();
311
+ ?>
312
+ <?php
313
+ foreach ( get_taxonomies( array(), "objects" ) as $taxonomy => $t ) {
314
+ ?>
315
+ <?php
316
+
317
+ if ( $t->publicly_queryable ) {
318
+ ?>
319
+ <?php
320
+ $items = get_terms( $taxonomy, array(
321
+ "hide_empty" => false,
322
+ ) );
323
+ ?>
324
+ <?php
325
+
326
+ if ( count( $items ) > 0 ) {
327
+ ?>
328
+ <?php
329
+ //print_r($items);
330
+ ?>
331
+ <div class="row checkboxes">
332
+ <strong class="label"><?php
333
+ echo $t->label ;
334
+ ?></strong>
335
+ <span>
336
+ <?php
337
+ $idx = 0;
338
+ ?>
339
+ <?php
340
+ foreach ( $items as $c ) {
341
  ?>
342
+ <span class="tax-item">
343
+ <input id="post-tax-<?php
344
+ _e( $c->term_id );
345
+ ?>" type="checkbox" name="post_taxonomy" data-taxonomy="<?php
346
+ _e( $t->name );
347
+ ?>" value="<?php
348
+ _e( $c->term_id );
349
+ ?>">
350
+ <label for="post-tax-<?php
351
+ _e( $c->term_id );
352
+ ?>"><?php
353
+ _e( $c->name );
354
+ ?></label>
355
+ </span>
356
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
  $idx++;
358
  ?>
359
+ <?php
360
  }
361
  ?>
362
+ </span>
363
+ </div>
364
+ <?php
365
+ }
366
+
367
+ ?>
368
+ <?php
369
+ }
370
+
371
+ ?>
372
+ <?php
373
+ }
374
+ ?>
375
+ <input type="hidden" name="ftg_post_taxonomies" value="<?php
376
+ _e( $gallery->post_taxonomies );
377
+ ?>" />
378
+ <div class="row checkboxes">
379
+ <strong class="label"><?php
380
+ _e( 'Max posts:', 'final-tiles-grid-gallery-lite' );
381
+ ?></strong>
382
+ <span class="aside">
383
+ <input type="text" name="ftg_max_posts" value="<?php
384
+ echo $gallery->max_posts ;
385
+ ?>">
386
+ <span><?php
387
+ _e( '(enter 0 for unlimited posts)', 'final-tiles-grid-gallery-lite' );
388
+ ?></span>
389
+ </span>
390
+ </div>
391
+ </div>
392
+ <?php
393
+
394
+ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
395
+ ?>
396
+ <div class="actions source-woocommerce source-panel">
397
+ <div class="row checkboxes">
398
+ <strong class="label"><?php
399
+ _e( 'Categories', 'final-tiles-grid-gallery-lite' );
400
+ ?>:</strong>
401
+ <span>
402
+ <?php
403
+ $idx = 0;
404
+ ?>
405
+ <?php
406
+ foreach ( $woo_categories as $c ) {
407
+ ?>
408
+ <input class="browser-default" id="woo-cat-<?php
409
+ _e( $idx );
410
+ ?>" type="checkbox" name="woo_cat" value="<?php
411
+ _e( $c->term_id );
412
+ ?>">
413
+ <label for="woo-cat-<?php
414
+ _e( $idx );
415
+ ?>"><?php
416
+ _e( $c->cat_name );
417
+ ?></label>
418
+ <?php
419
+ $idx++;
420
+ ?>
421
+ <?php
422
+ }
423
+ ?>
424
+ <input type="hidden" name="ftg_woo_categories" value="<?php
425
+ _e( $gallery->woo_categories );
426
+ ?>" />
427
+ </span>
428
+ </div>
429
+ </div>
430
+ <?php
431
+ }
432
 
433
+ ?>
434
+ </div>
435
+ </div>
436
+ </li>
437
+ <?php
438
+ foreach ( $ftg_fields as $section => $s ) {
439
+ ?>
440
+ <li id="<?php
441
+ _e( FinalTiles_Gallery::slugify( $section ) );
442
+ ?>">
443
+ <div class="collapsible-header">
444
+ <i class="<?php
445
+ echo $s["icon"] ;
446
+ ?> light-green darken-1 white-text ftg-section-icon"></i> <?php
447
+ _e( $section, 'final-tiles-grid-gallery-lite' );
448
+ ?>
449
+ </div>
450
+ <div class="collapsible-body tab form-fields">
451
+ <div class="jump-head">
452
+ <?php
453
+ $jumpFields = array();
454
+ foreach ( $s["fields"] as $f => $data ) {
455
+ $jumpFields[$f] = $data;
456
+ $jumpFields[$f]['_code'] = $f;
457
+ }
458
+ unset( $f );
459
+ unset( $data );
460
+ usort( $jumpFields, "ftgSortByName" );
461
+ ?>
462
+ <select class="browser-default jump">
463
+ <option><?php
464
+ _e( 'Jump to setting', 'final-tiles-grid-gallery-lite' );
465
+ ?></option>
466
+ <?php
467
+ foreach ( $jumpFields as $f => $data ) {
468
+ ?>
469
+ <?php
470
+
471
+ if ( is_array( $data["excludeFrom"] ) && !in_array( $ftg_parent_page, $data["excludeFrom"] ) ) {
472
+ ?>
473
+ <option value="<?php
474
+ _e( $data['_code'], 'final-tiles-grid-gallery-lite' );
475
+ ?>">
476
+ <?php
477
+ _e( $data["name"], 'final-tiles-grid-gallery-lite' );
478
  ?>
479
+ </option>
480
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  }
482
+
483
  ?>
484
+ <?php
485
+ }
486
+ ?>
487
+ </select>
488
+
489
+ <?php
490
+
491
+ if ( array_key_exists( "presets", $s ) ) {
492
+ ?>
493
+ <select class="browser-default presets" data-field-idx="<?php
494
+ echo $idx ;
495
+ ?>">
496
+ <option value="">Select preset</option>
497
+ <?php
498
+ foreach ( $s["presets"] as $preset => $data ) {
499
+ ?>
500
+ <option><?php
501
+ echo $preset ;
502
+ ?></option>
503
+ <?php
504
+ }
505
+ ?>
506
+ </select>
507
+ <?php
508
+ }
509
+
510
+ ?>
511
+ </div>
512
+ <table>
513
+ <tbody>
514
+ <?php
515
+ foreach ( $s["fields"] as $f => $data ) {
516
+ ?>
517
+ <?php
518
+
519
+ if ( is_array( $data["excludeFrom"] ) && !in_array( $ftg_parent_page, $data["excludeFrom"] ) ) {
520
+ ?>
521
+
522
+ <tr class="field-row row-<?php
523
+ print $f;
524
+ ?> <?php
525
+ print $data["type"];
526
+ ?>">
527
+ <th scope="row">
528
+ <label><?php
529
+ _e( $data["name"], 'final-tiles-grid-gallery-lite' );
530
+ ?>
531
+ <?php
532
+
533
+ if ( $data["mu"] ) {
534
+ ?>
535
+ (<?php
536
+ _e( $data["mu"] );
537
+ ?>)
538
+ <?php
539
+ }
540
+
541
+ ?>
542
+
543
+ <?php
544
+
545
+ if ( strlen( $data["description"] ) ) {
546
+ ?>
547
+ <div class="tab-header-tooltip-container ftg-tooltip">
548
+ <span>[?]</span>
549
+ <div class="tab-header-description ftg-tooltip-content">
550
+ <?php
551
+ echo wp_kses_post( $data["description"] ) ;
552
+ ?>
553
+ </div>
554
+ </div>
555
+ <?php
556
+ }
557
+
558
+ ?>
559
+ </label>
560
+ </th>
561
+ <td>
562
+ <div class="field <?php
563
+ echo ( in_array( 'shortcode', $data["excludeFrom"] ) ? "" : "js-update-shortcode" ) ;
564
+ ?>">
565
+ <?php
566
+
567
+ if ( $data["type"] == "text" ) {
568
+ ?>
569
+ <div class="text">
570
+ <input type="text" size="30" name="ftg_<?php
571
+ print $f;
572
+ ?>" value="<?php
573
+ ftg_p( $gallery, $f, $data["default"] );
574
+ ?>" />
575
+ </div>
576
+ <?php
577
+ } elseif ( $data["type"] == "cta" ) {
578
+ ?>
579
+ <div class="text">
580
+ <a class="in-table-cta" href="<?php
581
+ echo ftg_fs()->get_upgrade_url() ;
582
+ ?>"><i class="mdi mdi-bell-ring-outline"></i>
583
+ <?php
584
+ _e( 'Unlock this feature. Upgrade Now!', 'final-tiles-grid-gallery-lite' );
585
+ ?>
586
+ </a>
587
+ </div>
588
+ <?php
589
+ } elseif ( $data["type"] == "select" ) {
590
+ ?>
591
+ <div class="text">
592
+ <select class="browser-default" name="ftg_<?php
593
+ print $f;
594
+ ?>">
595
+ <?php
596
+ foreach ( array_keys( $data["values"] ) as $optgroup ) {
597
  ?>
598
+ <optgroup label="<?php
599
+ print $optgroup;
600
+ ?>">
601
+ <?php
602
+ foreach ( $data["values"][$optgroup] as $option ) {
603
+ ?>
604
+
605
+ <?php
606
+ $v = explode( "|", $option );
607
+ ?>
608
+
609
+ <option <?php
610
+ echo ftg_checkFieldDisabled( $v ) ;
611
+ ?> <?php
612
+ ftg_sel( $gallery, $f, $v[0] );
613
+ ?> value="<?php
614
+ print $v[0];
615
+ ?>"><?php
616
+ _e( $v[1], 'final-tiles-grid-gallery-lite' );
617
+ echo ftg_printFieldPro( $v ) ;
618
+ ?></option>
619
+ <?php
620
+ }
621
  ?>
622
+ </optgroup>
623
+ <?php
624
+ }
625
+ ?>
626
+ </select>
627
+ <?php
628
+
629
+ if ( $f == "lightbox" ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
630
  ?>
631
+ <div class="col s12 ftg-everlightbox-settings">
632
+ <?php
633
+
634
+ if ( class_exists( 'Everlightbox_Public' ) ) {
635
+ ?>
636
+ <div class="card-panel light-green lighten-4">
637
+ <a href="?page=everlightbox_options" target="_blank"><?php
638
+ _e( 'EverlightBox settings', 'final-tiles-grid-gallery-lite' );
639
+ ?></a>
640
+ </div>
641
+ <?php
642
+ } else {
643
+ ?>
644
+ <div class="card-panel yellow lighten-3">
645
+ <?php
646
+ _e( 'EverlightBox not installed', 'final-tiles-grid-gallery-lite' );
647
+ ?>. <a target="_blank" class="open-checkout" href="https://checkout.freemius.com/mode/dialog/plugin/1981/plan/2954/"><?php
648
+ _e( 'Purchase', 'final-tiles-grid-gallery-lite' );
649
+ ?></a>
650
+ </div>
651
+ <?php
652
+ }
653
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  ?>
655
+ </div>
656
+ <?php
657
+ }
658
+
659
+ ?>
660
+ </div>
661
+ <?php
662
+ } elseif ( $data["type"] == "toggle" ) {
663
+ ?>
664
+ <div class="switch">
665
+ <label>
666
+ Off
667
+ <input disabled type="checkbox" id="ftg_<?php
668
+ print $f;
669
+ ?>" name="ftg_<?php
670
+ print $f;
671
+ ?>" value="<?php
672
+ ftg_p( $gallery, $f, $data["default"] );
673
+ ?>" <?php
674
+ ftg_sel(
675
+ $gallery,
676
+ $f,
677
+ "T",
678
+ "checked"
679
+ );
680
+ ?> >
681
+ <span class="lever"></span>
682
+ On
683
+ </label>
684
+ </div>
685
+ <?php
686
+ } elseif ( $data["type"] == "slider" ) {
687
+ ?>
688
+
689
+ <div class="text">
690
+ <b id="preview-<?php
691
+ print $f;
692
+ ?>" class="range-preview"><?php
693
+ ftg_p( $gallery, $f, $data["default"] );
694
+ ?></b>
695
+ <p class="range-field">
696
+ <input data-preview="<?php
697
+ echo $f ;
698
+ ?>" name="ftg_<?php
699
+ print $f;
700
+ ?>" value="<?php
701
+ ftg_p( $gallery, $f, $data["default"] );
702
+ ?>" type="range" min="<?php
703
+ print $data["min"];
704
+ ?>" max="<?php
705
+ print $data["max"];
706
+ ?>" />
707
+ </p>
708
+ </div>
709
+
710
+ <?php
711
+ } elseif ( $data["type"] == "number" ) {
712
+ ?>
713
+ <div class="text">
714
+ <input type="text" name="ftg_<?php
715
+ print $f;
716
+ ?>" class="integer-only" value="<?php
717
+ ftg_p( $gallery, $f, $data["default"] );
718
+ ?>" >
719
+ </div>
720
+
721
+ <?php
722
+ } elseif ( $data["type"] == "color" ) {
723
+ ?>
724
+ <div class="text">
725
+ <input type="text" size="6" data-default-color="<?php
726
+ print $data["default"];
727
+ ?>" name="ftg_<?php
728
+ print $f;
729
+ ?>" value="<?php
730
+ ftg_p( $gallery, $f, $data["default"] );
731
+ ?>" class='pickColor' /> </div>
732
+
733
+ <?php
734
+ } elseif ( $data["type"] == "filter" ) {
735
+ ?>
736
+
737
+ <div class="filters gallery-filters dynamic-table">
738
+ <div class="text"></div>
739
+ <a href="#" class="add button"><?php
740
+ _e( 'Add filter', 'final-tiles-grid-gallery-lite' );
741
+ ?></a>
742
+ <a href="#" class="reset-default-filter button"><?php
743
+ _e( 'Reset selected filter', 'final-tiles-grid-gallery-lite' );
744
+ ?></a>
745
+ <input type="hidden" name="ftg_filters" value="<?php
746
+ ftg_p( $gallery, "filters" );
747
+ ?>" />
748
+ <input type="hidden" name="filter_def" value="<?php
749
+ ftg_p( $gallery, "defaultFilter" );
750
+ ?>" />
751
+ </div>
752
+
753
+ <?php
754
+ } elseif ( $data["type"] == "textarea" ) {
755
+ ?>
756
+ <div class="text">
757
+ <textarea name="ftg_<?php
758
+ print $f;
759
+ ?>"><?php
760
+ ftg_p( $gallery, $f );
761
+ ?></textarea>
762
+ </div>
763
+ <?php
764
+ } elseif ( $data["type"] == "custom_isf" ) {
765
+ ?>
766
+ <div class="custom_isf dynamic-table">
767
+ <table class="striped">
768
+ <thead>
769
+ <tr>
770
+ <th></th>
771
+ <th><?php
772
+ _e( 'Resolution', 'final-tiles-grid-gallery-lite' );
773
+ ?> (px)</th>
774
+ <th><?php
775
+ _e( 'Size factor', 'final-tiles-grid-gallery-lite' );
776
+ ?> (%)</th>
777
+ </tr>
778
+ </thead>
779
+ <tbody>
780
+ </tbody>
781
+ </table>
782
+ <input type="hidden" name="ftg_imageSizeFactorCustom" value="<?php
783
+ ftg_p( $gallery, "imageSizeFactorCustom" );
784
+ ?>" />
785
+ <a href="#" class="add button">
786
+ <?php
787
+ _e( 'Add resolution', 'final-tiles-grid-gallery-lite' );
788
+ ?></a>
789
+ </div>
790
+ <?php
791
+ }
792
+
793
  ?>
794
+ <div class="help" id="help-<?php
795
+ echo $f ;
796
+ ?>">
797
+ <?php
798
+
799
+ if ( !in_array( 'shortcode', $data["excludeFrom"] ) && $data["type"] != "cta" ) {
800
+ ?>
801
+ <div class="ftg-code">
802
+ <a href="#" class="toggle-shortcode" data-code="<?php
803
+ print $f;
804
+ ?>"><i class="fa fa-eye-slash"></i></a>
805
+ <span id="shortcode-<?php
806
+ print $f;
807
+ ?>">
808
+ <?php
809
+ _e( 'Shortcode attribute', 'final-tiles-grid-gallery-lite' );
810
+ ?>:
811
+ <code class="shortcode-val"><?php
812
+ _e( FinalTilesGalleryUtils::fieldNameToShortcode( $f ) );
813
+ ?>="<?php
814
+ ftg_p( $gallery, $f, $data["default"] );
815
+ ?>"</code>
816
+ </span>
817
+ </div>
818
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
819
  }
820
+
821
+ ?>
822
+ </div>
823
+
824
+ </div>
825
+ </td>
826
+ </tr>
827
+ <?php
828
  }
829
+
830
+ ?>
831
+ <?php
832
  }
833
  ?>
834
+ </tbody>
835
+ </table>
836
+ </div>
837
+ </li>
838
+ <?php
839
+ $idx++;
840
+ ?>
841
+ <?php
842
+ }
843
+ ?>
844
+
845
+ </ul>
846
+ </div>
847
+ <div class="col s3">
848
+ <?php
849
 
850
+ if ( ftg_fs()->is_not_paying() ) {
851
+ ?>
852
+ <ul class="collapsible gallery-actions">
853
+ <li class="active">
854
+ <div class="collapsible-header"><?php
855
+ _e( 'Upgrade', 'final-tiles-grid-gallery-lite' );
856
+ ?>: <?php
857
+ _e( 'unlock features', 'final-tiles-grid-gallery-lite' );
858
+ ?></div>
859
+ <div class="collapsible-body">
860
+ <div class="ftg-upsell">
861
+ <a href="<?php
862
+ echo ftg_fs()->get_upgrade_url() ;
863
+ ?>"><i class="fa fa-hand-o-right"></i> <?php
864
+ _e( 'Upgrade', 'final-tiles-grid-gallery-lite' );
865
+ ?></a>
866
+ </div>
867
+ <p>or save 30% purchasing the <strong>BUNDLE</strong>:</p>
868
+ <div class="ftg-upsell">
869
+ <a target="_blank" href="https://www.final-tiles-gallery.com/wordpress/bundle">
870
+ <i class="fa fa-star"></i>
871
+ Bundle: 30% <?php
872
+ _e( 'discount', 'final-tiles-grid-gallery-lite' );
873
+ ?></a>
874
+ </div>
875
+ <p class="upsell-info">
876
+ <?php
877
+ _e( 'GET 3 plugins', 'final-tiles-grid-gallery-lite' );
878
+ ?>: Final Tiles Gallery Ultimate + EverlightBox + PostSnippet
879
+ </p>
880
+ </div>
881
+ </li>
882
+ </ul>
883
+ <?php
884
+ }
885
 
886
+ ?>
887
+ <ul class="collapsible gallery-actions">
888
+ <li class="active">
889
+ <div class="collapsible-header"><?php
890
+ _e( 'Publish', 'final-tiles-grid-gallery-lite' );
891
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
892
+ <div class="collapsible-body">
893
+ <div>
894
+ <input readonly="" type="text" value="[FinalTilesGallery id='<?php
895
+ print $gid;
896
+ ?>']" style="max-width:200px;display:inline-block;">
897
+ <a href="#" title="Click to copy shortcode" class="copy-ftg-shortcode button button-primary dashicons dashicons-format-gallery" style="width:40px; display: inline-block;"></a><span style="margin-left:15px;"></span>
898
+ </div>
899
+ <div>
900
+ <button data-update-gallery class="button components-button is-primary"><?php
901
+ _e( 'Save gallery', 'final-tiles-grid-gallery-lite' );
902
+ ?></button>
903
+ </div>
904
+ </div>
905
+ </li>
906
+ <li>
907
+ <div class="collapsible-header"><?php
908
+ _e( 'Import settings', 'final-tiles-grid-gallery-lite' );
909
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
910
+ <div class="collapsible-body">
911
+ <p><?php
912
+ _e( 'Paste Here the configuration code', 'final-tiles-grid-gallery-lite' );
913
+ ?></p>
914
+ <div><textarea data-import-text></textarea></div>
915
+ <button data-ftg-import class="button"><i class="fa fa-upload"></i> <?php
916
+ _e( 'Import', 'final-tiles-grid-gallery-lite' );
917
+ ?></button>
918
+ </div>
919
+ </li>
920
+ <li>
921
+ <div class="collapsible-header"><?php
922
+ _e( 'Export settings', 'final-tiles-grid-gallery-lite' );
923
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
924
+ <div class="collapsible-body">
925
+ <p><?php
926
+ _e( 'Settings', 'final-tiles-grid-gallery-lite' );
927
+ ?></p>
928
+ <div><textarea readonly id="ftg-export-code"></textarea></div>
929
+ <button id="ftg-export" class="button"><i class="fa fa-download"></i> <?php
930
+ _e( 'Refresh code', 'final-tiles-grid-gallery-lite' );
931
+ ?></button>
932
+ </div>
933
+ </li>
934
+ <li>
935
+ <div class="collapsible-header"><?php
936
+ _e( 'Help', 'final-tiles-grid-gallery-lite' );
937
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
938
+ <div class="collapsible-body">
939
+ <ul class="collection">
940
+ <li class="collection-item">
941
+ <i class="fa fa-chevron-right"></i>
942
+ <a href="http://issuu.com/greentreelabs/docs/finaltilesgridgallery-documentation?e=17859916/13243836" target="_blank"><?php
943
+ _e( 'Documentation', 'final-tiles-grid-gallery-lite' );
944
+ ?></a></li>
945
+ <li class="collection-item">
946
+ <i class="fa fa-chevron-right"></i>
947
+ <a target="_blank" href="https://www.youtube.com/watch?v=RNT4JGjtyrs">
948
+ <?php
949
+ _e( 'Tutorial', 'final-tiles-grid-gallery-lite' );
950
+ ?></a>
951
+ </li>
952
+ <li class="collection-item">
953
+ <i class="fa fa-chevron-right"></i>
954
+ <a href="http://www.wpbeginner.com/wp-tutorials/how-to-create-additional-image-sizes-in-wordpress/" target="_blank"><?php
955
+ _e( 'How to add additional image sizes', 'final-tiles-grid-gallery-lite' );
956
+ ?></a>
957
+ </li>
958
+ </ul>
959
+ </div>
960
+ </li>
961
+ </ul>
962
+ <ul class="collapsible gallery-actions">
963
+ <li>
964
+ <div class="collapsible-header"><?php
965
+ _e( 'FAQ', 'final-tiles-grid-gallery-lite' );
966
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
967
+ <div class="collapsible-body">
968
+ <ul class="collapsible gallery-actions">
969
+ <li>
970
+ <div class="collapsible-header"><?php
971
+ _e( 'How can I change the grid on mobile?', 'final-tiles-grid-gallery-lite' );
972
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
973
+ <div class="collapsible-body">
974
+ <p><?php
975
+ _e( 'You can customize the aspect of your galleries for any device. Find the options "Image size factor" into the "Advanced" section. Set a lower value to make images smaller and a higher value to make images larger.', 'final-tiles-grid-gallery-lite' );
976
+ ?></p>
977
+ </div>
978
+ </li>
979
+ <li>
980
+ <div class="collapsible-header"><?php
981
+ _e( 'How to add a link to a picture?', 'final-tiles-grid-gallery-lite' );
982
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
983
+ <div class="collapsible-body">
984
+ <p><?php
985
+ _e( 'Click the edit (pencil) icon on the image and insert the link inside the "Link" field', 'final-tiles-grid-gallery-lite' );
986
+ ?></p>
987
+ </div>
988
+ </li>
989
+ <li>
990
+ <div class="collapsible-header"><?php
991
+ _e( 'Why my images look blurry?', 'final-tiles-grid-gallery-lite' );
992
+ ?> <svg class="components-panel__arrow" width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><g><path fill="none" d="M0,0h24v24H0V0z"></path></g><g><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"></path></g></svg></div>
993
+ <div class="collapsible-body">
994
+ <p><?php
995
+ _e( 'You probably have chosen a small image size. Click the edit (pencil) icon on the blurry image and choose a larger size. Remember, you can choose the size before adding the images to the gallery', 'final-tiles-grid-gallery-lite' );
996
+ ?></p>
997
+ </div>
998
+ </li>
999
+ </ul>
1000
+ </div>
1001
+ </li>
1002
+ </ul>
1003
+ </div>
1004
+ </div>
1005
+
1006
+
1007
+
1008
+ <!-- video panel -->
1009
+ <div id="video-panel-model" class="modal">
1010
+ <div class="modal-content">
1011
+ <p><?php
1012
+ _e( 'Paste here the embed code (it must be an ', 'final-tiles-grid-gallery-lite' );
1013
+ ?><strong><?php
1014
+ _e( 'iframe', 'final-tiles-grid-gallery-lite' );
1015
+ ?></strong>
1016
+ <?php
1017
+ _e( 'and it must contain the attributes', 'final-tiles-grid-gallery-lite' );
1018
+ ?> <strong><?php
1019
+ _e( 'width', 'final-tiles-grid-gallery-lite' );
1020
+ ?></strong> <?php
1021
+ _e( 'and', 'final-tiles-grid-gallery-lite' );
1022
+ ?><strong><?php
1023
+ _e( ' height', 'final-tiles-grid-gallery-lite' );
1024
+ ?></strong>)</p>
1025
+ <div class="text dark">
1026
+ <textarea></textarea>
1027
+ </div>
1028
+ <div class="field video-filters clearfix" ></div>
1029
+ <input type="hidden" id="filter-video" value="<?php
1030
+ print $gallery->filters;
1031
+ ?>">
1032
+ </div>
1033
+ <input type="hidden" id="video-panel-action" >
1034
+ <div class="field buttons modal-footer">
1035
+ <a href="#" data-action="edit" class="action positive save modal-action modal-close waves-effect waves-green btn-flat"><?php
1036
+ _e( 'Save', 'final-tiles-grid-gallery-lite' );
1037
+ ?></a>
1038
+ <a href="#" data-action="cancel" class="action neutral modal-action modal-close waves-effect waves-yellow btn-flat"><?php
1039
+ _e( 'Cancel', 'final-tiles-grid-gallery-lite' );
1040
+ ?></a>
1041
+ </div>
1042
+ </div>
1043
+
1044
+
1045
+ <!-- image panel -->
1046
+ <div id="image-panel-model" class="modal">
1047
+ <div class="modal-content cf">
1048
+ <h4><?php
1049
+ _e( 'Edit image', 'final-tiles-grid-gallery-lite' );
1050
+ ?></h4>
1051
+ <div class="left">
1052
+ <div class="figure"></div>
1053
+ <div class="field sizes"></div>
1054
+ </div>
1055
+ <div class="right-side">
1056
+ <div class="field">
1057
+ <label><?php
1058
+ _e( 'Title', 'final-tiles-grid-gallery-lite' );
1059
+ ?></label>
1060
+ <div class="text">
1061
+ <textarea name="imageTitle"></textarea>
1062
+ </div>
1063
+ </div>
1064
+ <div class="field">
1065
+ <label><?php
1066
+ _e( 'Caption', 'final-tiles-grid-gallery-lite' );
1067
+ ?></label>
1068
+ <div class="text">
1069
+ <textarea name="description"></textarea>
1070
+ </div>
1071
+ </div>
1072
+ <div class="field">
1073
+ <label><?php
1074
+ _e( 'Alt', 'final-tiles-grid-gallery-lite' );
1075
+ ?> <?php
1076
+ _e( '(leave empty to use title or description as ALT attribute)', 'final-tiles-grid-gallery-lite' );
1077
+ ?></label>
1078
+ <div class="text">
1079
+ <input type="text" name="alt" />
1080
+ </div>
1081
+ </div>
1082
+ <div class="field">
1083
+ <input class="browser-default" id="hidden-image" type="checkbox" name="hidden" value="T" />
1084
+ <label for="hidden-image">
1085
+ <?php
1086
+ _e( 'Hidden, visible only with lightbox', 'final-tiles-grid-gallery-lite' );
1087
+ ?>
1088
+ </label>
1089
+ </div>
1090
+ <div class="field js-no-hidden">
1091
+
1092
+ <table>
1093
+ <tr>
1094
+ <td style="width: 60%">
1095
+ <label><?php
1096
+ _e( 'Link', 'final-tiles-grid-gallery-lite' );
1097
+ ?></label><br>
1098
+ <input type="text" size="20" value="" name="link" />
1099
+ </td>
1100
+ <td>
1101
+ <label><?php
1102
+ _e( 'Link target', 'final-tiles-grid-gallery-lite' );
1103
+ ?></label>
1104
+ <select name="target" class="browser-default">
1105
+ <option value="default"><?php
1106
+ _e( 'Default target', 'final-tiles-grid-gallery-lite' );
1107
+ ?></option>
1108
+ <option value="_self"><?php
1109
+ _e( 'Open in same page', 'final-tiles-grid-gallery-lite' );
1110
+ ?></option>
1111
+ <option value="_blank"><?php
1112
+ _e( 'Open in _blank', 'final-tiles-grid-gallery-lite' );
1113
+ ?></option>
1114
+ <option value="_lightbox"><?php
1115
+ _e( 'Open in lightbox (when using a lightbox)', 'final-tiles-grid-gallery-lite' );
1116
+ ?></option>
1117
+ </select>
1118
+ </td>
1119
+ </tr>
1120
+ </table>
1121
+ </div>
1122
+ <?php
1123
+ ?>
1124
+ </div>
1125
+ </div>
1126
+ <div class="field buttons modal-footer">
1127
+ <a href="#" data-action="cancel" class="modal-close action button"><i class="mdi-content-reply"></i> <?php
1128
+ _e( 'Cancel', 'final-tiles-grid-gallery-lite' );
1129
+ ?></a>
1130
+ <a href="#" data-action="save" class="modal-close button components-button is-primary"><i class="fa fa-save"></i> <?php
1131
+ _e( 'Save', 'final-tiles-grid-gallery-lite' );
1132
+ ?></a>
1133
+ </div>
1134
+ </div>
1135
+
1136
+ <div class="preloader-wrapper big active" id="spinner">
1137
+ <div class="spinner-layer spinner-blue-only">
1138
+ <div class="circle-clipper left">
1139
+ <div class="circle"></div>
1140
+ </div><div class="gap-patch">
1141
+ <div class="circle"></div>
1142
+ </div><div class="circle-clipper right">
1143
+ <div class="circle"></div>
1144
+ </div>
1145
+ </div>
1146
+ </div>
1147
+ <!-- images section -->
1148
+
1149
+ <div class="overlay" style="display:none"></div>
1150
+
1151
+ <script>
1152
+ var presets = {};
1153
+ <?php
1154
+ $presetIdx = 0;
1155
+ foreach ( $ftg_fields as $section => $s ) {
1156
+ if ( array_key_exists( "presets", $s ) ) {
1157
+ foreach ( $s["presets"] as $preset => $values ) {
1158
+ echo "presets['preset_" . $presetIdx . "_" . $preset . "'] = " . json_encode( $values ) . ";\n" ;
1159
+ }
1160
+ }
1161
+ $presetIdx++;
1162
+ }
1163
+ ?>
1164
+
1165
+ var ftg_wp_caption_field = '<?php
1166
+ ftg_p( $gallery, "wp_field_caption" );
1167
+ ?>';
1168
+ (function ($) {
1169
+ $("[name=captionFullHeight]").change(function () {
1170
+ if($(this).val() == "F")
1171
+ $("[name=captionEffect]").val("fade");
1172
+ });
1173
+ $("[name=captionEffect]").change(function () {
1174
+ if($(this).val() != "fade" && $("[name=captionFullHeight]").val() == "F") {
1175
+ $(this).val("fade");
1176
+ alert("Cannot set this effect if 'Caption full height' is switched off.");
1177
+ }
1178
+ });
1179
+
1180
+ <?php
1181
+ ?>
1182
+
1183
+ })(jQuery);
1184
+ </script>
admin/include/fields.php CHANGED
@@ -160,7 +160,7 @@ $this->addField( "Advanced", "loadMethod", array(
160
  "excludeFrom" => array( "dashboard", "shortcode" ),
161
  ) );
162
  $this->addField( "Advanced", "ajaxLoading", array(
163
- "name" => __( "Asynchronous loading" ),
164
  "hiddenFor" => array( "dashboard", "shortcode" ),
165
  "type" => "select",
166
  "values" => array(
@@ -171,14 +171,14 @@ $this->addField( "Advanced", "ajaxLoading", array(
171
  "excludeFrom" => array( "dashboard", "shortcode" ),
172
  ) );
173
  $this->addField( "Advanced", "tilesPerPage", array(
174
- "name" => __( "Number of images to load via ajax" ),
175
  "hiddenFor" => array( "dashboard", "shortcode" ),
176
  "type" => "number",
177
  "proCall" => false,
178
  "excludeFrom" => array( "dashboard", "shortcode" ),
179
  ) );
180
  $this->addField( "General", "name", array(
181
- "name" => __( "Name" ),
182
  "hiddenFor" => array( "dashboard", "shortcode" ),
183
  "type" => "text",
184
  "description" => __( "Name of the gallery, for internal use.", "final-tiles-grid-gallery-lite" ),
@@ -186,7 +186,7 @@ $this->addField( "General", "name", array(
186
  "excludeFrom" => array( "dashboard", "shortcode" ),
187
  ) );
188
  $this->addField( "General", "description", array(
189
- "name" => __( "Description" ),
190
  "hiddenFor" => array( "dashboard", "shortcode" ),
191
  "type" => "text",
192
  "description" => __( "Description of the gallery, for internal use.", "final-tiles-grid-gallery-lite" ),
@@ -194,7 +194,7 @@ $this->addField( "General", "description", array(
194
  "excludeFrom" => array( "dashboard", "shortcode" ),
195
  ) );
196
  $this->addField( "General", "layout", array(
197
- "name" => __( "Layout" ),
198
  "type" => "select",
199
  "description" => __( "<strong>Final Tiles</strong>: use images with different sizes<br><strong>Masonry</strong>: multi-column layout, use this one if you need images of the same size.", "final-tiles-grid-gallery-lite" ),
200
  "values" => array(
@@ -211,7 +211,7 @@ $this->addField( "General", "width", array(
211
  "excludeFrom" => array(),
212
  ) );
213
  $this->addField( "General", "margin", array(
214
- "name" => __( "Margin" ),
215
  "type" => "number",
216
  "description" => __( "Margin between images", "final-tiles-grid-gallery-lite" ),
217
  "mu" => "px",
@@ -221,7 +221,7 @@ $this->addField( "General", "margin", array(
221
  "excludeFrom" => array(),
222
  ) );
223
  $this->addField( "General", "columns", array(
224
- "name" => __( "Number of columns" ),
225
  "type" => "number",
226
  "description" => "",
227
  "mu" => "",
@@ -231,7 +231,7 @@ $this->addField( "General", "columns", array(
231
  "excludeFrom" => array(),
232
  ) );
233
  $this->addField( "General", "imagesOrder", array(
234
- "name" => __( "Images order" ),
235
  "type" => "select",
236
  "description" => __( "Choose the order of the images", "final-tiles-grid-gallery-lite" ),
237
  "default" => "",
@@ -250,7 +250,7 @@ $this->addField( "General", "filter", array(
250
  ) );
251
  if ( ftg_fs()->is_plan_or_trial( 'ultimate' ) ) {
252
  $this->addField( "General", "filterClick", array(
253
- "name" => __( "Reload Page on filter click" ),
254
  "type" => "toggle",
255
  "description" => __( "Turn this feature ON if you want to use filters with most lightboxes", "final-tiles-grid-gallery-lite" ),
256
  "proCall" => false,
@@ -258,7 +258,7 @@ if ( ftg_fs()->is_plan_or_trial( 'ultimate' ) ) {
258
  ) );
259
  }
260
  $this->addField( "General", "gridCellSize", array(
261
- "name" => __( "Size of the grid" ),
262
  "type" => "number",
263
  "default" => 25,
264
  "min" => 1,
@@ -269,7 +269,7 @@ $this->addField( "General", "gridCellSize", array(
269
  "excludeFrom" => array(),
270
  ) );
271
  $this->addField( "General", "gridCellSizeDisabledBelow", array(
272
- "name" => __( "Disable grid size below resolution" ),
273
  "type" => "number",
274
  "default" => 800,
275
  "min" => 0,
@@ -332,7 +332,7 @@ $this->addField( "Links & Lightbox", "mobileLightbox", array(
332
  "excludeFrom" => array(),
333
  ) );
334
  $this->addField( "Links & Lightbox", "lightboxImageSize", array(
335
- "name" => __( "Image size for the lightbox" ),
336
  "type" => "select",
337
  "description" => "",
338
  "values" => array(
@@ -342,7 +342,7 @@ $this->addField( "Links & Lightbox", "lightboxImageSize", array(
342
  "excludeFrom" => array(),
343
  ) );
344
  $this->addField( "Links & Lightbox", "disableLightboxGroups", array(
345
- "name" => __( "Disable lightbox grouping" ),
346
  "type" => "toggle",
347
  "description" => __( "Flag this option if you don't want to group images when opened in a lightbox.", "final-tiles-grid-gallery-lite" ),
348
  "default" => "F",
@@ -350,14 +350,14 @@ $this->addField( "Links & Lightbox", "disableLightboxGroups", array(
350
  "excludeFrom" => array(),
351
  ) );
352
  $this->addField( "Links & Lightbox", "blank", array(
353
- "name" => __( "Links target" ),
354
  "type" => "toggle",
355
  "description" => __( "Open links in a blank page.", "final-tiles-grid-gallery-lite" ),
356
  "proCall" => false,
357
  "excludeFrom" => array(),
358
  ) );
359
  $this->addField( "Links & Lightbox", "enableTwitter", array(
360
- "name" => __( "Enable Twitter icon" ),
361
  "type" => "toggle",
362
  "description" => __( "Enable Twitter sharing.", "final-tiles-grid-gallery-lite" ),
363
  "default" => "F",
@@ -365,7 +365,7 @@ $this->addField( "Links & Lightbox", "enableTwitter", array(
365
  "excludeFrom" => array(),
366
  ) );
367
  $this->addField( "Links & Lightbox", "enableFacebook", array(
368
- "name" => __( "Enable Facebook icon" ),
369
  "type" => "toggle",
370
  "description" => __( "Enable Facebook sharing. Note: after the last version of OpenGraph API it's not possible to share a specific image anymore.", "final-tiles-grid-gallery-lite" ),
371
  "default" => "F",
@@ -373,7 +373,7 @@ $this->addField( "Links & Lightbox", "enableFacebook", array(
373
  "excludeFrom" => array(),
374
  ) );
375
  $this->addField( "Links & Lightbox", "enableGplus", array(
376
- "name" => __( "Enable Google Plus icon" ),
377
  "type" => "toggle",
378
  "description" => __( "Enable Google Plus sharing", "final-tiles-grid-gallery-lite" ),
379
  "default" => "F",
@@ -381,7 +381,7 @@ $this->addField( "Links & Lightbox", "enableGplus", array(
381
  "excludeFrom" => array(),
382
  ) );
383
  $this->addField( "Links & Lightbox", "enablePinterest", array(
384
- "name" => __( "Enable Pinterest icon" ),
385
  "type" => "toggle",
386
  "description" => __( "Enable Pinterest sharing", "final-tiles-grid-gallery-lite" ),
387
  "default" => "F",
@@ -389,7 +389,7 @@ $this->addField( "Links & Lightbox", "enablePinterest", array(
389
  "excludeFrom" => array(),
390
  ) );
391
  $this->addField( "Links & Lightbox", "socialIconColor", array(
392
- "name" => __( "Color of social sharing icons" ),
393
  "type" => "color",
394
  "description" => __( "Set the color of the social sharing icons", "final-tiles-grid-gallery-lite" ),
395
  "default" => "#ffffff",
@@ -397,7 +397,7 @@ $this->addField( "Links & Lightbox", "socialIconColor", array(
397
  "excludeFrom" => array(),
398
  ) );
399
  $this->addField( "Links & Lightbox", "socialIconStyle", array(
400
- "name" => __( "Style of the social icons panel" ),
401
  "type" => "select",
402
  "description" => __( "Set the color of the social sharing icons", "final-tiles-grid-gallery-lite" ),
403
  "default" => "none",
@@ -408,7 +408,7 @@ $this->addField( "Links & Lightbox", "socialIconStyle", array(
408
  "excludeFrom" => array(),
409
  ) );
410
  $this->addField( "Links & Lightbox", "socialIconPosition", array(
411
- "name" => __( "Position of the social icons panel" ),
412
  "type" => "select",
413
  "description" => __( "Set the position of the social sharing icons", "final-tiles-grid-gallery-lite" ),
414
  "default" => "bottom",
@@ -419,7 +419,7 @@ $this->addField( "Links & Lightbox", "socialIconPosition", array(
419
  "excludeFrom" => array(),
420
  ) );
421
  $this->addField( "Captions", "captionBehavior", array(
422
- "name" => __( "Caption behavior" ),
423
  "type" => "select",
424
  "description" => __( "Effect used to show the captions.", "final-tiles-grid-gallery-lite" ),
425
  "values" => array(
@@ -438,7 +438,7 @@ $this->addField( "Captions", "captionBehavior", array(
438
  "excludeFrom" => array(),
439
  ) );
440
  $this->addField( "Captions", "captionMobileBehavior", array(
441
- "name" => __( "Caption mobile behavior" ),
442
  "type" => "select",
443
  "description" => __( "Caption behavior for mobile devices.", "final-tiles-grid-gallery-lite" ),
444
  "values" => array(
@@ -454,7 +454,7 @@ $this->addField( "Captions", "captionMobileBehavior", array(
454
  "excludeFrom" => array(),
455
  ) );
456
  $this->addField( "Captions", "captionPosition", array(
457
- "name" => __( "Position" ),
458
  "type" => "select",
459
  "description" => __( "Choose the position of the caption.", "final-tiles-grid-gallery-lite" ),
460
  "values" => array(
@@ -472,7 +472,7 @@ $this->addField( "Captions", "captionPosition", array(
472
  "excludeFrom" => array()
473
  ));*/
474
  $this->addField( "Captions", "captionEmpty", array(
475
- "name" => __( "Empty captions" ),
476
  "type" => "select",
477
  "description" => __( "Choose if empty caption has to be shown.", "final-tiles-grid-gallery-lite" ),
478
  "values" => array(
@@ -482,7 +482,7 @@ $this->addField( "Captions", "captionEmpty", array(
482
  "excludeFrom" => array(),
483
  ) );
484
  $this->addField( "Captions", "captionIcon", array(
485
- "name" => __( "Caption icon" ),
486
  "type" => "select",
487
  "description" => __( "Choose the icon for the captions.", "final-tiles-grid-gallery-lite" ),
488
  "values" => array(
@@ -507,14 +507,14 @@ $this->addField( "Captions", "captionIcon", array(
507
  "excludeFrom" => array(),
508
  ) );
509
  $this->addField( "Captions", "customCaptionIcon", array(
510
- "name" => __( "Custom caption icon" ),
511
  "type" => FinalTiles_Gallery::getFieldType( "customCaptionIcon" ),
512
  "description" => __( "Use this field to insert the class of a FontAwesome icon (i.e.: fa-heart). <a href='https://fontawesome.com/v4.7.0/icons/' target='blank'>See all available icons</a>. <strong>This value override the <i>Caption icon</i> value</strong>.", "final-tiles-grid-gallery-lite" ),
513
  "proCall" => false,
514
  "excludeFrom" => array(),
515
  ) );
516
  $this->addField( "Captions", "captionIconColor", array(
517
- "name" => __( "Caption icon color" ),
518
  "type" => "color",
519
  "description" => __( "Color of the icon in captions.", "final-tiles-grid-gallery-lite" ),
520
  "default" => "#ffffff",
@@ -522,7 +522,7 @@ $this->addField( "Captions", "captionIconColor", array(
522
  "excludeFrom" => array(),
523
  ) );
524
  $this->addField( "Captions", "captionIconSize", array(
525
- "name" => __( "Caption icon size" ),
526
  "type" => "number",
527
  "description" => __( "Size of the icon in captions.", "final-tiles-grid-gallery-lite" ),
528
  "default" => 12,
@@ -533,7 +533,7 @@ $this->addField( "Captions", "captionIconSize", array(
533
  "excludeFrom" => array(),
534
  ) );
535
  $this->addField( "Captions", "captionFontSize", array(
536
- "name" => __( "Caption font size" ),
537
  "type" => "number",
538
  "description" => __( "Size of the font in captions.", "final-tiles-grid-gallery-lite" ),
539
  "default" => 12,
@@ -544,7 +544,7 @@ $this->addField( "Captions", "captionFontSize", array(
544
  "excludeFrom" => array(),
545
  ) );
546
  $this->addField( "Captions", "captionEasing", array(
547
- "name" => __( "Caption effect easing" ),
548
  "type" => "select",
549
  "description" => __( "Easing function for the caption animation, works better with sliding animations.", "final-tiles-grid-gallery-lite" ),
550
  "values" => array(
@@ -560,7 +560,7 @@ $this->addField( "Captions", "captionEasing", array(
560
  "excludeFrom" => array(),
561
  ) );
562
  $this->addField( "Captions", "captionFrame", array(
563
- "name" => __( "Caption frame" ),
564
  "type" => "toggle",
565
  "description" => __( "Add a frame around the caption", "final-tiles-grid-gallery-lite" ),
566
  "default" => "F",
@@ -568,7 +568,7 @@ $this->addField( "Captions", "captionFrame", array(
568
  "excludeFrom" => array(),
569
  ) );
570
  $this->addField( "Captions", "captionFrameColor", array(
571
- "name" => __( "Caption frame color" ),
572
  "type" => "color",
573
  "description" => __( "Color of the frame around the caption", "final-tiles-grid-gallery-lite" ),
574
  "default" => "#ffffff",
@@ -576,7 +576,7 @@ $this->addField( "Captions", "captionFrameColor", array(
576
  "excludeFrom" => array(),
577
  ) );
578
  $this->addField( "Captions", "captionColor", array(
579
- "name" => __( "Caption color" ),
580
  "type" => "color",
581
  "description" => __( "Text color of the captions.", "final-tiles-grid-gallery-lite" ),
582
  "default" => "#ffffff",
@@ -584,7 +584,7 @@ $this->addField( "Captions", "captionColor", array(
584
  "excludeFrom" => array(),
585
  ) );
586
  $this->addField( "Captions", "captionEffectDuration", array(
587
- "name" => __( "Caption effect duration" ),
588
  "type" => "text",
589
  "description" => __( "Duration of the caption animation.", "final-tiles-grid-gallery-lite" ),
590
  "default" => 250,
@@ -595,7 +595,7 @@ $this->addField( "Captions", "captionEffectDuration", array(
595
  "excludeFrom" => array(),
596
  ) );
597
  $this->addField( "Captions", "captionBackgroundColor", array(
598
- "name" => __( "Caption background color" ),
599
  "type" => "color",
600
  "description" => __( "Caption background color", "final-tiles-grid-gallery-lite" ),
601
  "default" => "#000000",
@@ -603,7 +603,7 @@ $this->addField( "Captions", "captionBackgroundColor", array(
603
  "excludeFrom" => array(),
604
  ) );
605
  $this->addField( "Captions", "captionOpacity", array(
606
- "name" => __( "Caption opacity" ),
607
  "type" => "text",
608
  "description" => __( "Opacity of the caption, 0% means 'invisible' while 100% is a plain color without opacity.", "final-tiles-grid-gallery-lite" ),
609
  "default" => 80,
@@ -614,7 +614,7 @@ $this->addField( "Captions", "captionOpacity", array(
614
  "excludeFrom" => array(),
615
  ) );
616
  $this->addField( "Captions", "wp_field_caption", array(
617
- "name" => __( "WordPress caption field" ),
618
  "type" => "select",
619
  "description" => __( "WordPress field used for captions. <strong>This field is used ONLY when images are added to the gallery, </strong> however, if you want to ignore captions just set it to '<i>Don't use captions</i>'.", "final-tiles-grid-gallery-lite" ),
620
  "values" => array(
@@ -629,7 +629,7 @@ $this->addField( "Captions", "wp_field_caption", array(
629
  "excludeFrom" => array( "shortcode" ),
630
  ) );
631
  $this->addField( "Captions", "wp_field_title", array(
632
- "name" => __( "WordPress title field" ),
633
  "type" => "select",
634
  "description" => __( "WordPress field used for titles. <strong>This field is used ONLY when images are added to the gallery, </strong> however, if you want to ignore titles just set it to '<i>Don't use titles</i>'.", "final-tiles-grid-gallery-lite" ),
635
  "values" => array(
@@ -639,7 +639,7 @@ $this->addField( "Captions", "wp_field_title", array(
639
  "excludeFrom" => array( "shortcode" ),
640
  ) );
641
  $this->addField( "Captions", "recentPostsCaption", array(
642
- "name" => __( "Recent posts caption" ),
643
  "type" => "select",
644
  "description" => __( "Field of the post used for captions when using \"Recent posts\" as source.", "final-tiles-grid-gallery-lite" ),
645
  "values" => array(
@@ -655,7 +655,7 @@ $this->addField( "Captions", "recentPostsCaption", array(
655
  "excludeFrom" => array( "shortcode" ),
656
  ) );
657
  $this->addField( "Captions", "recentPostsCaptionAutoExcerptLength", array(
658
- "name" => "Max number of words for 'Auto excerpt'",
659
  "type" => "text",
660
  "description" => __( "Define the max number of words of the caption when <i>Recent posts caption</i> is set to <i>Auto excerpt</i>.", "final-tiles-grid-gallery-lite" ),
661
  "default" => "20",
@@ -663,7 +663,7 @@ $this->addField( "Captions", "recentPostsCaptionAutoExcerptLength", array(
663
  "excludeFrom" => array(),
664
  ) );
665
  $this->addField( "Captions", "captionVerticalAlignment", array(
666
- "name" => __( "Caption Vertical Alignment" ),
667
  "type" => "select",
668
  "description" => __( "Choose the vertical alignment of the caption", "final-tiles-grid-gallery-lite" ),
669
  "values" => array(
@@ -673,7 +673,7 @@ $this->addField( "Captions", "captionVerticalAlignment", array(
673
  "excludeFrom" => array(),
674
  ) );
675
  $this->addField( "Captions", "captionHorizontalAlignment", array(
676
- "name" => __( "Caption Horizontal Alignment" ),
677
  "type" => "select",
678
  "description" => __( "Choose the horizontal alignment of the caption", "final-tiles-grid-gallery-lite" ),
679
  "values" => array(
@@ -683,7 +683,7 @@ $this->addField( "Captions", "captionHorizontalAlignment", array(
683
  "excludeFrom" => array(),
684
  ) );
685
  $this->addField( "Captions", "titleFontSize", array(
686
- "name" => __( "Title font size" ),
687
  "type" => "number",
688
  "description" => __( "Size of the font in captions.", "final-tiles-grid-gallery-lite" ),
689
  "min" => 10,
@@ -693,7 +693,7 @@ $this->addField( "Captions", "titleFontSize", array(
693
  "excludeFrom" => array(),
694
  ) );
695
  $this->addField( "Hover effects", "hoverZoom", array(
696
- "name" => __( "Zoom" ),
697
  "type" => FinalTiles_gallery::getFieldType( "hoverZoom" ),
698
  "description" => __( "Scale value.", "final-tiles-grid-gallery-lite" ),
699
  "default" => 100,
@@ -704,7 +704,7 @@ $this->addField( "Hover effects", "hoverZoom", array(
704
  "excludeFrom" => array(),
705
  ) );
706
  $this->addField( "Hover effects", "hoverRotation", array(
707
- "name" => __( "Rotation" ),
708
  "type" => FinalTiles_gallery::getFieldType( "hoverRotation" ),
709
  "description" => __( "Rotation value in degrees.", "final-tiles-grid-gallery-lite" ),
710
  "min" => 0,
@@ -715,7 +715,7 @@ $this->addField( "Hover effects", "hoverRotation", array(
715
  "excludeFrom" => array(),
716
  ) );
717
  $this->addField( "Hover effects", "hoverDuration", array(
718
- "name" => __( "Duration" ),
719
  "description" => "",
720
  "type" => FinalTiles_gallery::getFieldType( "hoverDuration" ),
721
  "min" => 10,
@@ -726,7 +726,7 @@ $this->addField( "Hover effects", "hoverDuration", array(
726
  "excludeFrom" => array(),
727
  ) );
728
  $this->addField( "Hover effects", "hoverIconRotation", array(
729
- "name" => __( "Rotate icon" ),
730
  "type" => "toggle",
731
  "default" => "F",
732
  "description" => __( "Enable rotation of the icon.", "final-tiles-grid-gallery-lite" ),
@@ -734,7 +734,7 @@ $this->addField( "Hover effects", "hoverIconRotation", array(
734
  "excludeFrom" => array(),
735
  ) );
736
  $this->addField( "Image loaded effects", "loadedDuration", array(
737
- "name" => __( "Duration" ),
738
  "description" => "",
739
  "type" => "slider",
740
  "min" => 10,
@@ -745,7 +745,7 @@ $this->addField( "Image loaded effects", "loadedDuration", array(
745
  "excludeFrom" => array(),
746
  ) );
747
  $this->addField( "Image loaded effects", "loadedEasing", array(
748
- "name" => __( "Easing curve" ),
749
  "type" => "select",
750
  "description" => __( "Choose the easing curve for the loading effect animation", "final-tiles-grid-gallery-lite" ),
751
  "values" => array(
@@ -764,7 +764,7 @@ $this->addField( "Image loaded effects", "loadedEasing", array(
764
  "excludeFrom" => array(),
765
  ) );
766
  $this->addField( "Image loaded effects", "loadedScaleY", array(
767
- "name" => __( "Vertical scaling" ),
768
  "description" => "",
769
  "type" => "slider",
770
  "min" => 1,
@@ -775,7 +775,7 @@ $this->addField( "Image loaded effects", "loadedScaleY", array(
775
  "excludeFrom" => array(),
776
  ) );
777
  $this->addField( "Image loaded effects", "loadedScaleX", array(
778
- "name" => __( "Horizontal scaling" ),
779
  "description" => "",
780
  "type" => "slider",
781
  "min" => 1,
@@ -786,7 +786,7 @@ $this->addField( "Image loaded effects", "loadedScaleX", array(
786
  "excludeFrom" => array(),
787
  ) );
788
  $this->addField( "Image loaded effects", "loadedRotateY", array(
789
- "name" => __( "Vertical rotation" ),
790
  "description" => "",
791
  "type" => "slider",
792
  "min" => -180,
@@ -797,7 +797,7 @@ $this->addField( "Image loaded effects", "loadedRotateY", array(
797
  "excludeFrom" => array(),
798
  ) );
799
  $this->addField( "Image loaded effects", "loadedRotateX", array(
800
- "name" => __( "Horizontal rotation" ),
801
  "description" => "",
802
  "type" => "slider",
803
  "min" => -180,
@@ -808,7 +808,7 @@ $this->addField( "Image loaded effects", "loadedRotateX", array(
808
  "excludeFrom" => array(),
809
  ) );
810
  $this->addField( "Image loaded effects", "loadedHSlide", array(
811
- "name" => __( "Horizontal slide" ),
812
  "description" => "",
813
  "type" => "slider",
814
  "min" => -1000,
@@ -819,7 +819,7 @@ $this->addField( "Image loaded effects", "loadedHSlide", array(
819
  "excludeFrom" => array(),
820
  ) );
821
  $this->addField( "Image loaded effects", "loadedVSlide", array(
822
- "name" => __( "Vertical slide" ),
823
  "description" => "",
824
  "type" => "slider",
825
  "min" => -1000,
@@ -830,7 +830,7 @@ $this->addField( "Image loaded effects", "loadedVSlide", array(
830
  "excludeFrom" => array(),
831
  ) );
832
  $this->addField( "Style", "borderSize", array(
833
- "name" => __( "Border size" ),
834
  "type" => "number",
835
  "description" => __( "Size of the border of each image.", "final-tiles-grid-gallery-lite" ),
836
  "default" => 0,
@@ -841,7 +841,7 @@ $this->addField( "Style", "borderSize", array(
841
  "excludeFrom" => array(),
842
  ) );
843
  $this->addField( "Style", "borderRadius", array(
844
- "name" => __( "Border radius" ),
845
  "type" => "number",
846
  "description" => __( "Border radius of the images.", "final-tiles-grid-gallery-lite" ),
847
  "default" => 0,
@@ -852,7 +852,7 @@ $this->addField( "Style", "borderRadius", array(
852
  "excludeFrom" => array(),
853
  ) );
854
  $this->addField( "Style", "borderColor", array(
855
- "name" => __( "Border color" ),
856
  "type" => "color",
857
  "description" => __( "Color of the border when size is greater than 0.", "final-tiles-grid-gallery-lite" ),
858
  "default" => "#000000",
@@ -860,7 +860,7 @@ $this->addField( "Style", "borderColor", array(
860
  "excludeFrom" => array(),
861
  ) );
862
  $this->addField( "Style", "loadingBarColor", array(
863
- "name" => __( "Loading Bar color" ),
864
  "type" => "color",
865
  "description" => __( "Color of the loading bar", "final-tiles-grid-gallery-lite" ),
866
  "default" => "#000000",
@@ -868,7 +868,7 @@ $this->addField( "Style", "loadingBarColor", array(
868
  "excludeFrom" => array(),
869
  ) );
870
  $this->addField( "Style", "loadingBarBackgroundColor", array(
871
- "name" => __( "Loading Bar background color" ),
872
  "type" => "color",
873
  "description" => __( "Background color of the loading bar", "final-tiles-grid-gallery-lite" ),
874
  "default" => "#cccccc",
@@ -876,7 +876,7 @@ $this->addField( "Style", "loadingBarBackgroundColor", array(
876
  "excludeFrom" => array(),
877
  ) );
878
  $this->addField( "Style", "shadowSize", array(
879
- "name" => __( "Shadow size" ),
880
  "type" => "number",
881
  "description" => __( "Shadow size of the images.", "final-tiles-grid-gallery-lite" ),
882
  "default" => 0,
@@ -887,7 +887,7 @@ $this->addField( "Style", "shadowSize", array(
887
  "excludeFrom" => array(),
888
  ) );
889
  $this->addField( "Style", "shadowColor", array(
890
- "name" => __( "Shadow color" ),
891
  "type" => "color",
892
  "description" => __( "Color of the shadow when size is greater than 0.", "final-tiles-grid-gallery-lite" ),
893
  "default" => "#000000",
@@ -895,7 +895,7 @@ $this->addField( "Style", "shadowColor", array(
895
  "excludeFrom" => array(),
896
  ) );
897
  $this->addField( "Style", "backgroundColor", array(
898
- "name" => __( "Tile background color" ),
899
  "type" => "color",
900
  "description" => __( "Background color of tiles", "final-tiles-grid-gallery-lite" ),
901
  "default" => "#fafafa",
@@ -903,7 +903,7 @@ $this->addField( "Style", "backgroundColor", array(
903
  "excludeFrom" => array(),
904
  ) );
905
  $this->addField( "Customizations", "aClass", array(
906
- "name" => __( "Additional CSS class on A tag" ),
907
  "type" => "text",
908
  "description" => __( "Use this field if you need to add additional CSS classes to the link that contains the image.", "final-tiles-grid-gallery-lite" ),
909
  "default" => "",
@@ -919,35 +919,35 @@ $this->addField( "Customizations", "rel", array(
919
  "excludeFrom" => array(),
920
  ) );
921
  $this->addField( "Customizations", "beforeGalleryText", array(
922
- "name" => __( "Text before gallery" ),
923
  "type" => "textarea",
924
  "description" => __( "Use this field to add text/html to be placed just before your gallery.", "final-tiles-grid-gallery-lite" ),
925
  "proCall" => false,
926
  "excludeFrom" => array( "shortcode" ),
927
  ) );
928
  $this->addField( "Customizations", "afterGalleryText", array(
929
- "name" => __( "Text after gallery" ),
930
  "type" => "textarea",
931
  "description" => __( "Use this field to add text/html to be placed just after your gallery.", "final-tiles-grid-gallery-lite" ),
932
  "proCall" => false,
933
  "excludeFrom" => array( "shortcode" ),
934
  ) );
935
  $this->addField( "Customizations", "style", array(
936
- "name" => __( "Custom CSS" ),
937
  "type" => "textarea",
938
  "description" => __( "<strong>Write just the code without using the &lt;style&gt; tag.</strong><br>List of useful selectors:<br>\n <br>\n <ul>\n <li>\n <em>.final-tiles-gallery</em> : gallery container;\n </li>\n <li>\n <em>.final-tiles-gallery .tile-inner</em> : tile content;\n </li>\n <li>\n <em>.final-tiles-gallery .tile-inner .item</em> : image of the tile;\n </li>\n <li>\n <em>.final-tiles-gallery .tile-inner .caption</em> : caption of the tile;\n </li>\n <li>\n <em>.final-tiles-gallery .ftg-filters</em> : filters container\n </li>\n <li>\n <em>.final-tiles-gallery .ftg-filters a</em> : filter\n </li>\n <li>\n <em>.final-tiles-gallery .ftg-filters a.selected</em> : selected filter\n </li>\n </ul>", "final-tiles-grid-gallery-lite" ),
939
  "proCall" => false,
940
  "excludeFrom" => array( "shortcode" ),
941
  ) );
942
  $this->addField( "Customizations", "script", array(
943
- "name" => __( "Custom scripts" ),
944
  "type" => "textarea",
945
  "description" => __( "This script will be called after the gallery initialization. Useful for custom lightboxes.\n <br />\n <br />\n <strong>Write just the code without using the &lt;script&gt;&lt;/script&gt; tags</strong>", "final-tiles-grid-gallery-lite" ),
946
  "proCall" => false,
947
  "excludeFrom" => array( "shortcode" ),
948
  ) );
949
  $this->addField( "Customizations", "delay", array(
950
- "name" => __( "Delay" ),
951
  "type" => "text",
952
  "description" => __( "Delay (in milliseconds) before firing the gallery. Sometimes it's needed to avoid conflicts with other plugins.", "final-tiles-grid-gallery-lite" ),
953
  "min" => 0,
@@ -958,7 +958,7 @@ $this->addField( "Customizations", "delay", array(
958
  "excludeFrom" => array(),
959
  ) );
960
  $this->addField( "Customizations", "support", array(
961
- "name" => __( "Show developer link" ),
962
  "type" => "toggle",
963
  "description" => __( "I want to support this plugin, show the developer link!", "final-tiles-grid-gallery-lite" ),
964
  "default" => "F",
@@ -968,7 +968,7 @@ $this->addField( "Customizations", "support", array(
968
  "excludeFrom" => array(),
969
  ) );
970
  $this->addField( "Customizations", "supportText", array(
971
- "name" => __( "Developer link text" ),
972
  "type" => "text",
973
  "description" => __( "Text for the developer link", "final-tiles-grid-gallery-lite" ),
974
  "default" => "powered by Final Tiles Grid Gallery",
@@ -1016,7 +1016,7 @@ $this->addField( "Advanced", "columnsPhonePortrait", array(
1016
  "excludeFrom" => array(),
1017
  ) );
1018
  $this->addField( "Advanced", "imageSizeFactor", array(
1019
- "name" => __( "Image size factor" ),
1020
  "type" => "slider",
1021
  "description" => __( "Percentage of image size, i.e.: if an image of the gallery is 300x200 and the size factor is 50% then the resulting image will be 150x100.\n 90% is a suggested default value, because under some circumstances, the images could be enlarged by the script (to fill gaps and avoid blank spaces between tiles).", "final-tiles-grid-gallery-lite" ),
1022
  "default" => 90,
@@ -1027,7 +1027,7 @@ $this->addField( "Advanced", "imageSizeFactor", array(
1027
  "excludeFrom" => array(),
1028
  ) );
1029
  $this->addField( "Advanced", "imageSizeFactorTabletLandscape", array(
1030
- "name" => "Image size factor (Tablet Landscape)",
1031
  "type" => "slider",
1032
  "description" => __( "Image size factor to apply when the viewport is 1024px, typically for tablets with landscape orientation", "final-tiles-grid-gallery-lite" ),
1033
  "default" => 80,
@@ -1038,7 +1038,7 @@ $this->addField( "Advanced", "imageSizeFactorTabletLandscape", array(
1038
  "excludeFrom" => array(),
1039
  ) );
1040
  $this->addField( "Advanced", "imageSizeFactorTabletPortrait", array(
1041
- "name" => __( "Image size factor Tablet Portrait" ),
1042
  "type" => "slider",
1043
  "description" => __( "Image size factor to apply when the viewport is 768px, typically for tablets with portrait orientation", "final-tiles-grid-gallery-lite" ),
1044
  "default" => 70,
@@ -1049,7 +1049,7 @@ $this->addField( "Advanced", "imageSizeFactorTabletPortrait", array(
1049
  "excludeFrom" => array(),
1050
  ) );
1051
  $this->addField( "Advanced", "imageSizeFactorPhoneLandscape", array(
1052
- "name" => __( "Image size factor Smartphone Landscape" ),
1053
  "type" => "slider",
1054
  "description" => __( "Image size factor to apply when the viewport is 640px, typically for smartphones with landscape orientation", "final-tiles-grid-gallery-lite" ),
1055
  "default" => 60,
@@ -1060,7 +1060,7 @@ $this->addField( "Advanced", "imageSizeFactorPhoneLandscape", array(
1060
  "excludeFrom" => array(),
1061
  ) );
1062
  $this->addField( "Advanced", "imageSizeFactorPhonePortrait", array(
1063
- "name" => __( "Image size factor Phone Portrait" ),
1064
  "type" => "slider",
1065
  "description" => __( "Image size factor to apply when the viewport is 320px, typically for smartphones with portrait orientation", "final-tiles-grid-gallery-lite" ),
1066
  "default" => 50,
@@ -1071,7 +1071,7 @@ $this->addField( "Advanced", "imageSizeFactorPhonePortrait", array(
1071
  "excludeFrom" => array(),
1072
  ) );
1073
  $this->addField( "Advanced", "imageSizeFactorCustom", array(
1074
- "name" => __( "Custom image size factor" ),
1075
  "hiddenFor" => array( "dashboard", "shortcode" ),
1076
  "type" => FinalTiles_Gallery::getFieldType( "custom_isf" ),
1077
  "description" => __( "Use this field if you need further resolutions. Make custom layout for any device and resolution.", "final-tiles-grid-gallery-lite" ),
@@ -1079,7 +1079,7 @@ $this->addField( "Advanced", "imageSizeFactorCustom", array(
1079
  "excludeFrom" => array( "dashboard", "shortcode" ),
1080
  ) );
1081
  $this->addField( "Advanced", "compressHTML", array(
1082
- "name" => __( "Compress HTML" ),
1083
  "type" => "toggle",
1084
  "description" => __( "Enable or disable HTML compression, some themes prefer uncompressed, switch it off in case of problems.", "final-tiles-grid-gallery-lite" ),
1085
  "default" => "T",
@@ -1087,7 +1087,7 @@ $this->addField( "Advanced", "compressHTML", array(
1087
  "excludeFrom" => array(),
1088
  ) );
1089
  $this->addField( "Advanced", "minTileWidth", array(
1090
- "name" => __( "Tile minimum width" ),
1091
  "type" => "number",
1092
  "description" => __( "Minimum width of each tile, <strong>multiply this value for the image size factor to get the real size</strong>.", "final-tiles-grid-gallery-lite" ),
1093
  "mu" => "px",
@@ -1098,7 +1098,7 @@ $this->addField( "Advanced", "minTileWidth", array(
1098
  "excludeFrom" => array(),
1099
  ) );
1100
  $this->addField( "Advanced", "enlargeImages", array(
1101
- "name" => __( "Allow image enlargement" ),
1102
  "type" => "toggle",
1103
  "description" => __( "Images can be occasionally enlarged to avoid gaps. If you notice a quality loss try to reduce the <strong>Image size factor</strong> parameter.", "final-tiles-grid-gallery-lite" ),
1104
  "default" => "T",
@@ -1107,7 +1107,7 @@ $this->addField( "Advanced", "enlargeImages", array(
1107
  ) );
1108
  if ( ftg_fs()->is_plan_or_trial( 'ultimate' ) ) {
1109
  $this->addField( "Advanced", "allFilterLabel", array(
1110
- "name" => "Text for 'All' filter",
1111
  "type" => "text",
1112
  "description" => __( "Write here the label for the 'All' filter", "final-tiles-grid-gallery-lite" ),
1113
  "proCall" => false,
160
  "excludeFrom" => array( "dashboard", "shortcode" ),
161
  ) );
162
  $this->addField( "Advanced", "ajaxLoading", array(
163
+ "name" => __( "Asynchronous loading", 'final-tiles-grid-gallery-lite' ),
164
  "hiddenFor" => array( "dashboard", "shortcode" ),
165
  "type" => "select",
166
  "values" => array(
171
  "excludeFrom" => array( "dashboard", "shortcode" ),
172
  ) );
173
  $this->addField( "Advanced", "tilesPerPage", array(
174
+ "name" => __( "Number of images to load via ajax", 'final-tiles-grid-gallery-lite' ),
175
  "hiddenFor" => array( "dashboard", "shortcode" ),
176
  "type" => "number",
177
  "proCall" => false,
178
  "excludeFrom" => array( "dashboard", "shortcode" ),
179
  ) );
180
  $this->addField( "General", "name", array(
181
+ "name" => __( "Name", 'final-tiles-grid-gallery-lite' ),
182
  "hiddenFor" => array( "dashboard", "shortcode" ),
183
  "type" => "text",
184
  "description" => __( "Name of the gallery, for internal use.", "final-tiles-grid-gallery-lite" ),
186
  "excludeFrom" => array( "dashboard", "shortcode" ),
187
  ) );
188
  $this->addField( "General", "description", array(
189
+ "name" => __( "Description", 'final-tiles-grid-gallery-lite' ),
190
  "hiddenFor" => array( "dashboard", "shortcode" ),
191
  "type" => "text",
192
  "description" => __( "Description of the gallery, for internal use.", "final-tiles-grid-gallery-lite" ),
194
  "excludeFrom" => array( "dashboard", "shortcode" ),
195
  ) );
196
  $this->addField( "General", "layout", array(
197
+ "name" => __( "Layout", 'final-tiles-grid-gallery-lite' ),
198
  "type" => "select",
199
  "description" => __( "<strong>Final Tiles</strong>: use images with different sizes<br><strong>Masonry</strong>: multi-column layout, use this one if you need images of the same size.", "final-tiles-grid-gallery-lite" ),
200
  "values" => array(
211
  "excludeFrom" => array(),
212
  ) );
213
  $this->addField( "General", "margin", array(
214
+ "name" => __( "Margin", "final-tiles-grid-gallery-lite" ),
215
  "type" => "number",
216
  "description" => __( "Margin between images", "final-tiles-grid-gallery-lite" ),
217
  "mu" => "px",
221
  "excludeFrom" => array(),
222
  ) );
223
  $this->addField( "General", "columns", array(
224
+ "name" => __( "Number of columns", "final-tiles-grid-gallery-lite" ),
225
  "type" => "number",
226
  "description" => "",
227
  "mu" => "",
231
  "excludeFrom" => array(),
232
  ) );
233
  $this->addField( "General", "imagesOrder", array(
234
+ "name" => __( "Images order", "final-tiles-grid-gallery-lite" ),
235
  "type" => "select",
236
  "description" => __( "Choose the order of the images", "final-tiles-grid-gallery-lite" ),
237
  "default" => "",
250
  ) );
251
  if ( ftg_fs()->is_plan_or_trial( 'ultimate' ) ) {
252
  $this->addField( "General", "filterClick", array(
253
+ "name" => __( "Reload Page on filter click", "final-tiles-grid-gallery-lite" ),
254
  "type" => "toggle",
255
  "description" => __( "Turn this feature ON if you want to use filters with most lightboxes", "final-tiles-grid-gallery-lite" ),
256
  "proCall" => false,
258
  ) );
259
  }
260
  $this->addField( "General", "gridCellSize", array(
261
+ "name" => __( "Size of the grid", "final-tiles-grid-gallery-lite" ),
262
  "type" => "number",
263
  "default" => 25,
264
  "min" => 1,
269
  "excludeFrom" => array(),
270
  ) );
271
  $this->addField( "General", "gridCellSizeDisabledBelow", array(
272
+ "name" => __( "Disable grid size below resolution", "final-tiles-grid-gallery-lite" ),
273
  "type" => "number",
274
  "default" => 800,
275
  "min" => 0,
332
  "excludeFrom" => array(),
333
  ) );
334
  $this->addField( "Links & Lightbox", "lightboxImageSize", array(
335
+ "name" => __( "Image size for the lightbox", "final-tiles-grid-gallery-lite" ),
336
  "type" => "select",
337
  "description" => "",
338
  "values" => array(
342
  "excludeFrom" => array(),
343
  ) );
344
  $this->addField( "Links & Lightbox", "disableLightboxGroups", array(
345
+ "name" => __( "Disable lightbox grouping", "final-tiles-grid-gallery-lite" ),
346
  "type" => "toggle",
347
  "description" => __( "Flag this option if you don't want to group images when opened in a lightbox.", "final-tiles-grid-gallery-lite" ),
348
  "default" => "F",
350
  "excludeFrom" => array(),
351
  ) );
352
  $this->addField( "Links & Lightbox", "blank", array(
353
+ "name" => __( "Links target", "final-tiles-grid-gallery-lite" ),
354
  "type" => "toggle",
355
  "description" => __( "Open links in a blank page.", "final-tiles-grid-gallery-lite" ),
356
  "proCall" => false,
357
  "excludeFrom" => array(),
358
  ) );
359
  $this->addField( "Links & Lightbox", "enableTwitter", array(
360
+ "name" => __( "Enable Twitter icon", "final-tiles-grid-gallery-lite" ),
361
  "type" => "toggle",
362
  "description" => __( "Enable Twitter sharing.", "final-tiles-grid-gallery-lite" ),
363
  "default" => "F",
365
  "excludeFrom" => array(),
366
  ) );
367
  $this->addField( "Links & Lightbox", "enableFacebook", array(
368
+ "name" => __( "Enable Facebook icon", "final-tiles-grid-gallery-lite" ),
369
  "type" => "toggle",
370
  "description" => __( "Enable Facebook sharing. Note: after the last version of OpenGraph API it's not possible to share a specific image anymore.", "final-tiles-grid-gallery-lite" ),
371
  "default" => "F",
373
  "excludeFrom" => array(),
374
  ) );
375
  $this->addField( "Links & Lightbox", "enableGplus", array(
376
+ "name" => __( "Enable Google Plus icon", "final-tiles-grid-gallery-lite" ),
377
  "type" => "toggle",
378
  "description" => __( "Enable Google Plus sharing", "final-tiles-grid-gallery-lite" ),
379
  "default" => "F",
381
  "excludeFrom" => array(),
382
  ) );
383
  $this->addField( "Links & Lightbox", "enablePinterest", array(
384
+ "name" => __( "Enable Pinterest icon", "final-tiles-grid-gallery-lite" ),
385
  "type" => "toggle",
386
  "description" => __( "Enable Pinterest sharing", "final-tiles-grid-gallery-lite" ),
387
  "default" => "F",
389
  "excludeFrom" => array(),
390
  ) );
391
  $this->addField( "Links & Lightbox", "socialIconColor", array(
392
+ "name" => __( "Color of social sharing icons", "final-tiles-grid-gallery-lite" ),
393
  "type" => "color",
394
  "description" => __( "Set the color of the social sharing icons", "final-tiles-grid-gallery-lite" ),
395
  "default" => "#ffffff",
397
  "excludeFrom" => array(),
398
  ) );
399
  $this->addField( "Links & Lightbox", "socialIconStyle", array(
400
+ "name" => __( "Style of the social icons panel", "final-tiles-grid-gallery-lite" ),
401
  "type" => "select",
402
  "description" => __( "Set the color of the social sharing icons", "final-tiles-grid-gallery-lite" ),
403
  "default" => "none",
408
  "excludeFrom" => array(),
409
  ) );
410
  $this->addField( "Links & Lightbox", "socialIconPosition", array(
411
+ "name" => __( "Position of the social icons panel", "final-tiles-grid-gallery-lite" ),
412
  "type" => "select",
413
  "description" => __( "Set the position of the social sharing icons", "final-tiles-grid-gallery-lite" ),
414
  "default" => "bottom",
419
  "excludeFrom" => array(),
420
  ) );
421
  $this->addField( "Captions", "captionBehavior", array(
422
+ "name" => __( "Caption behavior", "final-tiles-grid-gallery-lite" ),
423
  "type" => "select",
424
  "description" => __( "Effect used to show the captions.", "final-tiles-grid-gallery-lite" ),
425
  "values" => array(
438
  "excludeFrom" => array(),
439
  ) );
440
  $this->addField( "Captions", "captionMobileBehavior", array(
441
+ "name" => __( "Caption mobile behavior", "final-tiles-grid-gallery-lite" ),
442
  "type" => "select",
443
  "description" => __( "Caption behavior for mobile devices.", "final-tiles-grid-gallery-lite" ),
444
  "values" => array(
454
  "excludeFrom" => array(),
455
  ) );
456
  $this->addField( "Captions", "captionPosition", array(
457
+ "name" => __( "Position", "final-tiles-grid-gallery-lite" ),
458
  "type" => "select",
459
  "description" => __( "Choose the position of the caption.", "final-tiles-grid-gallery-lite" ),
460
  "values" => array(
472
  "excludeFrom" => array()
473
  ));*/
474
  $this->addField( "Captions", "captionEmpty", array(
475
+ "name" => __( "Empty captions", "final-tiles-grid-gallery-lite" ),
476
  "type" => "select",
477
  "description" => __( "Choose if empty caption has to be shown.", "final-tiles-grid-gallery-lite" ),
478
  "values" => array(
482
  "excludeFrom" => array(),
483
  ) );
484
  $this->addField( "Captions", "captionIcon", array(
485
+ "name" => __( "Caption icon", "final-tiles-grid-gallery-lite" ),
486
  "type" => "select",
487
  "description" => __( "Choose the icon for the captions.", "final-tiles-grid-gallery-lite" ),
488
  "values" => array(
507
  "excludeFrom" => array(),
508
  ) );
509
  $this->addField( "Captions", "customCaptionIcon", array(
510
+ "name" => __( "Custom caption icon", "final-tiles-grid-gallery-lite" ),
511
  "type" => FinalTiles_Gallery::getFieldType( "customCaptionIcon" ),
512
  "description" => __( "Use this field to insert the class of a FontAwesome icon (i.e.: fa-heart). <a href='https://fontawesome.com/v4.7.0/icons/' target='blank'>See all available icons</a>. <strong>This value override the <i>Caption icon</i> value</strong>.", "final-tiles-grid-gallery-lite" ),
513
  "proCall" => false,
514
  "excludeFrom" => array(),
515
  ) );
516
  $this->addField( "Captions", "captionIconColor", array(
517
+ "name" => __( "Caption icon color", "final-tiles-grid-gallery-lite" ),
518
  "type" => "color",
519
  "description" => __( "Color of the icon in captions.", "final-tiles-grid-gallery-lite" ),
520
  "default" => "#ffffff",
522
  "excludeFrom" => array(),
523
  ) );
524
  $this->addField( "Captions", "captionIconSize", array(
525
+ "name" => __( "Caption icon size", "final-tiles-grid-gallery-lite" ),
526
  "type" => "number",
527
  "description" => __( "Size of the icon in captions.", "final-tiles-grid-gallery-lite" ),
528
  "default" => 12,
533
  "excludeFrom" => array(),
534
  ) );
535
  $this->addField( "Captions", "captionFontSize", array(
536
+ "name" => __( "Caption font size", "final-tiles-grid-gallery-lite" ),
537
  "type" => "number",
538
  "description" => __( "Size of the font in captions.", "final-tiles-grid-gallery-lite" ),
539
  "default" => 12,
544
  "excludeFrom" => array(),
545
  ) );
546
  $this->addField( "Captions", "captionEasing", array(
547
+ "name" => __( "Caption effect easing", "final-tiles-grid-gallery-lite" ),
548
  "type" => "select",
549
  "description" => __( "Easing function for the caption animation, works better with sliding animations.", "final-tiles-grid-gallery-lite" ),
550
  "values" => array(
560
  "excludeFrom" => array(),
561
  ) );
562
  $this->addField( "Captions", "captionFrame", array(
563
+ "name" => __( "Caption frame", "final-tiles-grid-gallery-lite" ),
564
  "type" => "toggle",
565
  "description" => __( "Add a frame around the caption", "final-tiles-grid-gallery-lite" ),
566
  "default" => "F",
568
  "excludeFrom" => array(),
569
  ) );
570
  $this->addField( "Captions", "captionFrameColor", array(
571
+ "name" => __( "Caption frame color", "final-tiles-grid-gallery-lite" ),
572
  "type" => "color",
573
  "description" => __( "Color of the frame around the caption", "final-tiles-grid-gallery-lite" ),
574
  "default" => "#ffffff",
576
  "excludeFrom" => array(),
577
  ) );
578
  $this->addField( "Captions", "captionColor", array(
579
+ "name" => __( "Caption color", "final-tiles-grid-gallery-lite" ),
580
  "type" => "color",
581
  "description" => __( "Text color of the captions.", "final-tiles-grid-gallery-lite" ),
582
  "default" => "#ffffff",
584
  "excludeFrom" => array(),
585
  ) );
586
  $this->addField( "Captions", "captionEffectDuration", array(
587
+ "name" => __( "Caption effect duration", "final-tiles-grid-gallery-lite" ),
588
  "type" => "text",
589
  "description" => __( "Duration of the caption animation.", "final-tiles-grid-gallery-lite" ),
590
  "default" => 250,
595
  "excludeFrom" => array(),
596
  ) );
597
  $this->addField( "Captions", "captionBackgroundColor", array(
598
+ "name" => __( "Caption background color", "final-tiles-grid-gallery-lite" ),
599
  "type" => "color",
600
  "description" => __( "Caption background color", "final-tiles-grid-gallery-lite" ),
601
  "default" => "#000000",
603
  "excludeFrom" => array(),
604
  ) );
605
  $this->addField( "Captions", "captionOpacity", array(
606
+ "name" => __( "Caption opacity", "final-tiles-grid-gallery-lite" ),
607
  "type" => "text",
608
  "description" => __( "Opacity of the caption, 0% means 'invisible' while 100% is a plain color without opacity.", "final-tiles-grid-gallery-lite" ),
609
  "default" => 80,
614
  "excludeFrom" => array(),
615
  ) );
616
  $this->addField( "Captions", "wp_field_caption", array(
617
+ "name" => __( "WordPress caption field", "final-tiles-grid-gallery-lite" ),
618
  "type" => "select",
619
  "description" => __( "WordPress field used for captions. <strong>This field is used ONLY when images are added to the gallery, </strong> however, if you want to ignore captions just set it to '<i>Don't use captions</i>'.", "final-tiles-grid-gallery-lite" ),
620
  "values" => array(
629
  "excludeFrom" => array( "shortcode" ),
630
  ) );
631
  $this->addField( "Captions", "wp_field_title", array(
632
+ "name" => __( "WordPress title field", "final-tiles-grid-gallery-lite" ),
633
  "type" => "select",
634
  "description" => __( "WordPress field used for titles. <strong>This field is used ONLY when images are added to the gallery, </strong> however, if you want to ignore titles just set it to '<i>Don't use titles</i>'.", "final-tiles-grid-gallery-lite" ),
635
  "values" => array(
639
  "excludeFrom" => array( "shortcode" ),
640
  ) );
641
  $this->addField( "Captions", "recentPostsCaption", array(
642
+ "name" => __( "Recent posts caption", "final-tiles-grid-gallery-lite" ),
643
  "type" => "select",
644
  "description" => __( "Field of the post used for captions when using \"Recent posts\" as source.", "final-tiles-grid-gallery-lite" ),
645
  "values" => array(
655
  "excludeFrom" => array( "shortcode" ),
656
  ) );
657
  $this->addField( "Captions", "recentPostsCaptionAutoExcerptLength", array(
658
+ "name" => __( "Max number of words for 'Auto excerpt'", "final-tiles-grid-gallery-lite" ),
659
  "type" => "text",
660
  "description" => __( "Define the max number of words of the caption when <i>Recent posts caption</i> is set to <i>Auto excerpt</i>.", "final-tiles-grid-gallery-lite" ),
661
  "default" => "20",
663
  "excludeFrom" => array(),
664
  ) );
665
  $this->addField( "Captions", "captionVerticalAlignment", array(
666
+ "name" => __( "Caption Vertical Alignment", "final-tiles-grid-gallery-lite" ),
667
  "type" => "select",
668
  "description" => __( "Choose the vertical alignment of the caption", "final-tiles-grid-gallery-lite" ),
669
  "values" => array(
673
  "excludeFrom" => array(),
674
  ) );
675
  $this->addField( "Captions", "captionHorizontalAlignment", array(
676
+ "name" => __( "Caption Horizontal Alignment", "final-tiles-grid-gallery-lite" ),
677
  "type" => "select",
678
  "description" => __( "Choose the horizontal alignment of the caption", "final-tiles-grid-gallery-lite" ),
679
  "values" => array(
683
  "excludeFrom" => array(),
684
  ) );
685
  $this->addField( "Captions", "titleFontSize", array(
686
+ "name" => __( "Title font size", "final-tiles-grid-gallery-lite" ),
687
  "type" => "number",
688
  "description" => __( "Size of the font in captions.", "final-tiles-grid-gallery-lite" ),
689
  "min" => 10,
693
  "excludeFrom" => array(),
694
  ) );
695
  $this->addField( "Hover effects", "hoverZoom", array(
696
+ "name" => __( "Zoom", "final-tiles-grid-gallery-lite" ),
697
  "type" => FinalTiles_gallery::getFieldType( "hoverZoom" ),
698
  "description" => __( "Scale value.", "final-tiles-grid-gallery-lite" ),
699
  "default" => 100,
704
  "excludeFrom" => array(),
705
  ) );
706
  $this->addField( "Hover effects", "hoverRotation", array(
707
+ "name" => __( "Rotation", "final-tiles-grid-gallery-lite" ),
708
  "type" => FinalTiles_gallery::getFieldType( "hoverRotation" ),
709
  "description" => __( "Rotation value in degrees.", "final-tiles-grid-gallery-lite" ),
710
  "min" => 0,
715
  "excludeFrom" => array(),
716
  ) );
717
  $this->addField( "Hover effects", "hoverDuration", array(
718
+ "name" => __( "Duration", "final-tiles-grid-gallery-lite" ),
719
  "description" => "",
720
  "type" => FinalTiles_gallery::getFieldType( "hoverDuration" ),
721
  "min" => 10,
726
  "excludeFrom" => array(),
727
  ) );
728
  $this->addField( "Hover effects", "hoverIconRotation", array(
729
+ "name" => __( "Rotate icon", "final-tiles-grid-gallery-lite" ),
730
  "type" => "toggle",
731
  "default" => "F",
732
  "description" => __( "Enable rotation of the icon.", "final-tiles-grid-gallery-lite" ),
734
  "excludeFrom" => array(),
735
  ) );
736
  $this->addField( "Image loaded effects", "loadedDuration", array(
737
+ "name" => __( "Duration", "final-tiles-grid-gallery-lite" ),
738
  "description" => "",
739
  "type" => "slider",
740
  "min" => 10,
745
  "excludeFrom" => array(),
746
  ) );
747
  $this->addField( "Image loaded effects", "loadedEasing", array(
748
+ "name" => __( "Easing curve", "final-tiles-grid-gallery-lite" ),
749
  "type" => "select",
750
  "description" => __( "Choose the easing curve for the loading effect animation", "final-tiles-grid-gallery-lite" ),
751
  "values" => array(
764
  "excludeFrom" => array(),
765
  ) );
766
  $this->addField( "Image loaded effects", "loadedScaleY", array(
767
+ "name" => __( "Vertical scaling", "final-tiles-grid-gallery-lite" ),
768
  "description" => "",
769
  "type" => "slider",
770
  "min" => 1,
775
  "excludeFrom" => array(),
776
  ) );
777
  $this->addField( "Image loaded effects", "loadedScaleX", array(
778
+ "name" => __( "Horizontal scaling", "final-tiles-grid-gallery-lite" ),
779
  "description" => "",
780
  "type" => "slider",
781
  "min" => 1,
786
  "excludeFrom" => array(),
787
  ) );
788
  $this->addField( "Image loaded effects", "loadedRotateY", array(
789
+ "name" => __( "Vertical rotation", "final-tiles-grid-gallery-lite" ),
790
  "description" => "",
791
  "type" => "slider",
792
  "min" => -180,
797
  "excludeFrom" => array(),
798
  ) );
799
  $this->addField( "Image loaded effects", "loadedRotateX", array(
800
+ "name" => __( "Horizontal rotation", "final-tiles-grid-gallery-lite" ),
801
  "description" => "",
802
  "type" => "slider",
803
  "min" => -180,
808
  "excludeFrom" => array(),
809
  ) );
810
  $this->addField( "Image loaded effects", "loadedHSlide", array(
811
+ "name" => __( "Horizontal slide", "final-tiles-grid-gallery-lite" ),
812
  "description" => "",
813
  "type" => "slider",
814
  "min" => -1000,
819
  "excludeFrom" => array(),
820
  ) );
821
  $this->addField( "Image loaded effects", "loadedVSlide", array(
822
+ "name" => __( "Vertical slide", "final-tiles-grid-gallery-lite" ),
823
  "description" => "",
824
  "type" => "slider",
825
  "min" => -1000,
830
  "excludeFrom" => array(),
831
  ) );
832
  $this->addField( "Style", "borderSize", array(
833
+ "name" => __( "Border size", "final-tiles-grid-gallery-lite" ),
834
  "type" => "number",
835
  "description" => __( "Size of the border of each image.", "final-tiles-grid-gallery-lite" ),
836
  "default" => 0,
841
  "excludeFrom" => array(),
842
  ) );
843
  $this->addField( "Style", "borderRadius", array(
844
+ "name" => __( "Border radius", "final-tiles-grid-gallery-lite" ),
845
  "type" => "number",
846
  "description" => __( "Border radius of the images.", "final-tiles-grid-gallery-lite" ),
847
  "default" => 0,
852
  "excludeFrom" => array(),
853
  ) );
854
  $this->addField( "Style", "borderColor", array(
855
+ "name" => __( "Border color", "final-tiles-grid-gallery-lite" ),
856
  "type" => "color",
857
  "description" => __( "Color of the border when size is greater than 0.", "final-tiles-grid-gallery-lite" ),
858
  "default" => "#000000",
860
  "excludeFrom" => array(),
861
  ) );
862
  $this->addField( "Style", "loadingBarColor", array(
863
+ "name" => __( "Loading Bar color", "final-tiles-grid-gallery-lite" ),
864
  "type" => "color",
865
  "description" => __( "Color of the loading bar", "final-tiles-grid-gallery-lite" ),
866
  "default" => "#000000",
868
  "excludeFrom" => array(),
869
  ) );
870
  $this->addField( "Style", "loadingBarBackgroundColor", array(
871
+ "name" => __( "Loading Bar background color", "final-tiles-grid-gallery-lite" ),
872
  "type" => "color",
873
  "description" => __( "Background color of the loading bar", "final-tiles-grid-gallery-lite" ),
874
  "default" => "#cccccc",
876
  "excludeFrom" => array(),
877
  ) );
878
  $this->addField( "Style", "shadowSize", array(
879
+ "name" => __( "Shadow size", "final-tiles-grid-gallery-lite" ),
880
  "type" => "number",
881
  "description" => __( "Shadow size of the images.", "final-tiles-grid-gallery-lite" ),
882
  "default" => 0,
887
  "excludeFrom" => array(),
888
  ) );
889
  $this->addField( "Style", "shadowColor", array(
890
+ "name" => __( "Shadow color", "final-tiles-grid-gallery-lite" ),
891
  "type" => "color",
892
  "description" => __( "Color of the shadow when size is greater than 0.", "final-tiles-grid-gallery-lite" ),
893
  "default" => "#000000",
895
  "excludeFrom" => array(),
896
  ) );
897
  $this->addField( "Style", "backgroundColor", array(
898
+ "name" => __( "Tile background color", "final-tiles-grid-gallery-lite" ),
899
  "type" => "color",
900
  "description" => __( "Background color of tiles", "final-tiles-grid-gallery-lite" ),
901
  "default" => "#fafafa",
903
  "excludeFrom" => array(),
904
  ) );
905
  $this->addField( "Customizations", "aClass", array(
906
+ "name" => __( "Additional CSS class on A tag", "final-tiles-grid-gallery-lite" ),
907
  "type" => "text",
908
  "description" => __( "Use this field if you need to add additional CSS classes to the link that contains the image.", "final-tiles-grid-gallery-lite" ),
909
  "default" => "",
919
  "excludeFrom" => array(),
920
  ) );
921
  $this->addField( "Customizations", "beforeGalleryText", array(
922
+ "name" => __( "Text before gallery", "final-tiles-grid-gallery-lite" ),
923
  "type" => "textarea",
924
  "description" => __( "Use this field to add text/html to be placed just before your gallery.", "final-tiles-grid-gallery-lite" ),
925
  "proCall" => false,
926
  "excludeFrom" => array( "shortcode" ),
927
  ) );
928
  $this->addField( "Customizations", "afterGalleryText", array(
929
+ "name" => __( "Text after gallery", "final-tiles-grid-gallery-lite" ),
930
  "type" => "textarea",
931
  "description" => __( "Use this field to add text/html to be placed just after your gallery.", "final-tiles-grid-gallery-lite" ),
932
  "proCall" => false,
933
  "excludeFrom" => array( "shortcode" ),
934
  ) );
935
  $this->addField( "Customizations", "style", array(
936
+ "name" => __( "Custom CSS", "final-tiles-grid-gallery-lite" ),
937
  "type" => "textarea",
938
  "description" => __( "<strong>Write just the code without using the &lt;style&gt; tag.</strong><br>List of useful selectors:<br>\n <br>\n <ul>\n <li>\n <em>.final-tiles-gallery</em> : gallery container;\n </li>\n <li>\n <em>.final-tiles-gallery .tile-inner</em> : tile content;\n </li>\n <li>\n <em>.final-tiles-gallery .tile-inner .item</em> : image of the tile;\n </li>\n <li>\n <em>.final-tiles-gallery .tile-inner .caption</em> : caption of the tile;\n </li>\n <li>\n <em>.final-tiles-gallery .ftg-filters</em> : filters container\n </li>\n <li>\n <em>.final-tiles-gallery .ftg-filters a</em> : filter\n </li>\n <li>\n <em>.final-tiles-gallery .ftg-filters a.selected</em> : selected filter\n </li>\n </ul>", "final-tiles-grid-gallery-lite" ),
939
  "proCall" => false,
940
  "excludeFrom" => array( "shortcode" ),
941
  ) );
942
  $this->addField( "Customizations", "script", array(
943
+ "name" => __( "Custom scripts", "final-tiles-grid-gallery-lite" ),
944
  "type" => "textarea",
945
  "description" => __( "This script will be called after the gallery initialization. Useful for custom lightboxes.\n <br />\n <br />\n <strong>Write just the code without using the &lt;script&gt;&lt;/script&gt; tags</strong>", "final-tiles-grid-gallery-lite" ),
946
  "proCall" => false,
947
  "excludeFrom" => array( "shortcode" ),
948
  ) );
949
  $this->addField( "Customizations", "delay", array(
950
+ "name" => __( "Delay", "final-tiles-grid-gallery-lite" ),
951
  "type" => "text",
952
  "description" => __( "Delay (in milliseconds) before firing the gallery. Sometimes it's needed to avoid conflicts with other plugins.", "final-tiles-grid-gallery-lite" ),
953
  "min" => 0,
958
  "excludeFrom" => array(),
959
  ) );
960
  $this->addField( "Customizations", "support", array(
961
+ "name" => __( "Show developer link", "final-tiles-grid-gallery-lite" ),
962
  "type" => "toggle",
963
  "description" => __( "I want to support this plugin, show the developer link!", "final-tiles-grid-gallery-lite" ),
964
  "default" => "F",
968
  "excludeFrom" => array(),
969
  ) );
970
  $this->addField( "Customizations", "supportText", array(
971
+ "name" => __( "Developer link text", "final-tiles-grid-gallery-lite" ),
972
  "type" => "text",
973
  "description" => __( "Text for the developer link", "final-tiles-grid-gallery-lite" ),
974
  "default" => "powered by Final Tiles Grid Gallery",
1016
  "excludeFrom" => array(),
1017
  ) );
1018
  $this->addField( "Advanced", "imageSizeFactor", array(
1019
+ "name" => __( "Image size factor", "final-tiles-grid-gallery-lite" ),
1020
  "type" => "slider",
1021
  "description" => __( "Percentage of image size, i.e.: if an image of the gallery is 300x200 and the size factor is 50% then the resulting image will be 150x100.\n 90% is a suggested default value, because under some circumstances, the images could be enlarged by the script (to fill gaps and avoid blank spaces between tiles).", "final-tiles-grid-gallery-lite" ),
1022
  "default" => 90,
1027
  "excludeFrom" => array(),
1028
  ) );
1029
  $this->addField( "Advanced", "imageSizeFactorTabletLandscape", array(
1030
+ "name" => __( "Image size factor (Tablet Landscape)", "final-tiles-grid-gallery-lite" ),
1031
  "type" => "slider",
1032
  "description" => __( "Image size factor to apply when the viewport is 1024px, typically for tablets with landscape orientation", "final-tiles-grid-gallery-lite" ),
1033
  "default" => 80,
1038
  "excludeFrom" => array(),
1039
  ) );
1040
  $this->addField( "Advanced", "imageSizeFactorTabletPortrait", array(
1041
+ "name" => __( "Image size factor Tablet Portrait", "final-tiles-grid-gallery-lite" ),
1042
  "type" => "slider",
1043
  "description" => __( "Image size factor to apply when the viewport is 768px, typically for tablets with portrait orientation", "final-tiles-grid-gallery-lite" ),
1044
  "default" => 70,
1049
  "excludeFrom" => array(),
1050
  ) );
1051
  $this->addField( "Advanced", "imageSizeFactorPhoneLandscape", array(
1052
+ "name" => __( "Image size factor Smartphone Landscape", "final-tiles-grid-gallery-lite" ),
1053
  "type" => "slider",
1054
  "description" => __( "Image size factor to apply when the viewport is 640px, typically for smartphones with landscape orientation", "final-tiles-grid-gallery-lite" ),
1055
  "default" => 60,
1060
  "excludeFrom" => array(),
1061
  ) );
1062
  $this->addField( "Advanced", "imageSizeFactorPhonePortrait", array(
1063
+ "name" => __( "Image size factor Phone Portrait", "final-tiles-grid-gallery-lite" ),
1064
  "type" => "slider",
1065
  "description" => __( "Image size factor to apply when the viewport is 320px, typically for smartphones with portrait orientation", "final-tiles-grid-gallery-lite" ),
1066
  "default" => 50,
1071
  "excludeFrom" => array(),
1072
  ) );
1073
  $this->addField( "Advanced", "imageSizeFactorCustom", array(
1074
+ "name" => __( "Custom image size factor", "final-tiles-grid-gallery-lite" ),
1075
  "hiddenFor" => array( "dashboard", "shortcode" ),
1076
  "type" => FinalTiles_Gallery::getFieldType( "custom_isf" ),
1077
  "description" => __( "Use this field if you need further resolutions. Make custom layout for any device and resolution.", "final-tiles-grid-gallery-lite" ),
1079
  "excludeFrom" => array( "dashboard", "shortcode" ),
1080
  ) );
1081
  $this->addField( "Advanced", "compressHTML", array(
1082
+ "name" => __( "Compress HTML", "final-tiles-grid-gallery-lite" ),
1083
  "type" => "toggle",
1084
  "description" => __( "Enable or disable HTML compression, some themes prefer uncompressed, switch it off in case of problems.", "final-tiles-grid-gallery-lite" ),
1085
  "default" => "T",
1087
  "excludeFrom" => array(),
1088
  ) );
1089
  $this->addField( "Advanced", "minTileWidth", array(
1090
+ "name" => __( "Tile minimum width", "final-tiles-grid-gallery-lite" ),
1091
  "type" => "number",
1092
  "description" => __( "Minimum width of each tile, <strong>multiply this value for the image size factor to get the real size</strong>.", "final-tiles-grid-gallery-lite" ),
1093
  "mu" => "px",
1098
  "excludeFrom" => array(),
1099
  ) );
1100
  $this->addField( "Advanced", "enlargeImages", array(
1101
+ "name" => __( "Allow image enlargement", "final-tiles-grid-gallery-lite" ),
1102
  "type" => "toggle",
1103
  "description" => __( "Images can be occasionally enlarged to avoid gaps. If you notice a quality loss try to reduce the <strong>Image size factor</strong> parameter.", "final-tiles-grid-gallery-lite" ),
1104
  "default" => "T",
1107
  ) );
1108
  if ( ftg_fs()->is_plan_or_trial( 'ultimate' ) ) {
1109
  $this->addField( "Advanced", "allFilterLabel", array(
1110
+ "name" => __( "Text for 'All' filter", "final-tiles-grid-gallery-lite" ),
1111
  "type" => "text",
1112
  "description" => __( "Write here the label for the 'All' filter", "final-tiles-grid-gallery-lite" ),
1113
  "proCall" => false,
admin/overview.php CHANGED
@@ -8,7 +8,7 @@
8
 
9
  <div class="bd wrap">
10
  <h1 class="wp-heading-inline"><?php _e('Final Tiles Gallery') ?> <small><?php echo FTGVERSION . " " . FTG_PLAN ?></small></h1>
11
- <h2 class="ftg-subtitle"><?php _e('Galleries') ?></h2>
12
  <hr class="wp-header-end">
13
  <?php if(count($galleries) == 0) : ?>
14
  <div class="row ">
@@ -76,10 +76,10 @@
76
  </strong>
77
  <div class="row-actions">
78
  <span class="edit">
79
- <a href="?page=ftg-lite-gallery-admin&id=<?php print $gallery->Id ?>" aria-label="Edit"><?php _e("Edit") ?></a> |
80
  </span>
81
  <span class="edit">
82
- <a href="#" class="clone-gallery" data-gid="<?php print $gallery->Id ?>" aria-label="Clone"><?php _e("Clone gallery") ?></a> |
83
  </span>
84
  <span class="trash">
85
  <a href="#delete-gallery-modal" data-gid="<?php print $gallery->Id ?>" class="modal-trigger submitdelete"><?php _e("Delete gallery", "final-tiles-grid-gallery-lite") ?></a>
@@ -93,7 +93,8 @@
93
  <?php print $gallery->source ?>
94
  </td>
95
  <td class="title column-title has-row-actions column-primary">
96
- <span>[FinalTilesGallery id="<?php print $gallery->Id ?>"]</span>
 
97
  </td>
98
  </tr>
99
  <?php endforeach ?>
8
 
9
  <div class="bd wrap">
10
  <h1 class="wp-heading-inline"><?php _e('Final Tiles Gallery') ?> <small><?php echo FTGVERSION . " " . FTG_PLAN ?></small></h1>
11
+ <h2 class="ftg-subtitle"><?php _e('Galleries','final-tiles-grid-gallery-lite') ?></h2>
12
  <hr class="wp-header-end">
13
  <?php if(count($galleries) == 0) : ?>
14
  <div class="row ">
76
  </strong>
77
  <div class="row-actions">
78
  <span class="edit">
79
+ <a href="?page=ftg-lite-gallery-admin&id=<?php print $gallery->Id ?>" aria-label="Edit"><?php _e("Edit","final-tiles-grid-gallery-lite") ?></a> |
80
  </span>
81
  <span class="edit">
82
+ <a href="#" class="clone-gallery" data-gid="<?php print $gallery->Id ?>" aria-label="Clone"><?php _e("Clone gallery","final-tiles-grid-gallery-lite") ?></a> |
83
  </span>
84
  <span class="trash">
85
  <a href="#delete-gallery-modal" data-gid="<?php print $gallery->Id ?>" class="modal-trigger submitdelete"><?php _e("Delete gallery", "final-tiles-grid-gallery-lite") ?></a>
93
  <?php print $gallery->source ?>
94
  </td>
95
  <td class="title column-title has-row-actions column-primary">
96
+ <input readonly type="text" value="[FinalTilesGallery id='<?php echo $gallery->Id ?>']" style="height:30px;">
97
+ <a href="#" title="Click to copy shortcode" class="copy-ftg-shortcode button button-primary dashicons dashicons-format-gallery" style="width:40px;"></a><span style="margin-left:15px;"></span>
98
  </td>
99
  </tr>
100
  <?php endforeach ?>
admin/scripts/admin.js CHANGED
@@ -7,4 +7,16 @@ jQuery(function () {
7
  $(this).parents(".reason").addClass("other-plugin").find(".reason-input").prepend("<p class='photoblocks-tip'>👉 Maybe <a href='plugin-install.php?s=photoblocks&tab=search&type=term'>PhotoBlocks</a> could be the right gallery for you!</p>");
8
  }
9
  });
 
 
 
 
 
 
 
 
 
 
 
 
10
  });
7
  $(this).parents(".reason").addClass("other-plugin").find(".reason-input").prepend("<p class='photoblocks-tip'>👉 Maybe <a href='plugin-install.php?s=photoblocks&tab=search&type=term'>PhotoBlocks</a> could be the right gallery for you!</p>");
8
  }
9
  });
10
+
11
+ // Copy shortcode functionality
12
+ $('.copy-ftg-shortcode').click(function (e) {
13
+ e.preventDefault();
14
+ var gallery_shortcode = $(this).parent().find('input');
15
+ gallery_shortcode.focus();
16
+ gallery_shortcode.select();
17
+ document.execCommand("copy");
18
+ $(this).next('span').text('Copied');
19
+ $('.copy-ftg-shortcode').not($(this)).parent().find('span').text('Shortcode copied');
20
+
21
+ });
22
  });
admin/scripts/editor-plugin.js CHANGED
@@ -21,9 +21,9 @@
21
  {
22
  return {
23
  longname : 'Final Tiles Gallery',
24
- author : 'Macho Themes',
25
- authorurl : 'https://www.machothemes.com/',
26
- infourl : 'https://www.machothemes.com/',
27
  version : tinymce.majorVersion + "." + tinymce.minorVersion
28
  };
29
  }
21
  {
22
  return {
23
  longname : 'Final Tiles Gallery',
24
+ author : 'MachoThemes',
25
+ authorurl : 'https://machothemes.com',
26
+ infourl : 'https://machothemes.com',
27
  version : tinymce.majorVersion + "." + tinymce.minorVersion
28
  };
29
  }
admin/scripts/final-tiles-gallery-admin.js CHANGED
@@ -46,8 +46,8 @@ var FTG = function($) {
46
  FinalTiles_gallery: $('#FinalTiles_gallery').val(),
47
  gid: $("#gallery-id").val()
48
  };
49
-
50
- /* Premium Code Stripped by Freemius */
51
 
52
  $.post(ajaxurl, data, function(html) {
53
  $("#image-list").empty().append(html);
@@ -131,19 +131,19 @@ var FTG = function($) {
131
  });
132
  },
133
  update_filters: function() {
134
-
135
- /* Premium Code Stripped by Freemius */
136
 
137
  },
138
  update_custom_isf: function() {
139
  var isf = [];
140
-
141
- /* Premium Code Stripped by Freemius */
142
 
143
  },
144
  add_filter: function(value) {
145
-
146
- /* Premium Code Stripped by Freemius */
147
 
148
  },
149
  add_isf: function(value) {
@@ -167,18 +167,18 @@ var FTG = function($) {
167
 
168
  var source = $('[name="ftg_source"]').val();
169
 
170
-
171
- /* Premium Code Stripped by Freemius */
172
 
173
  },
174
  refresh_woocommerce: function() {
175
-
176
- /* Premium Code Stripped by Freemius */
177
 
178
  },
179
  refresh_posts: function() {
180
-
181
- /* Premium Code Stripped by Freemius */
182
 
183
  },
184
  save_gallery: function() {
@@ -542,8 +542,8 @@ var FTG = function($) {
542
  e.preventDefault();
543
  FTG.save_gallery();
544
  });
545
-
546
- /* Premium Code Stripped by Freemius */
547
 
548
  $("#image-list").on("click", ".item .thumb", function() {
549
  $(this).parents(".item").toggleClass("selected");
@@ -622,8 +622,8 @@ var FTG = function($) {
622
  else
623
  $(".js-no-hidden").show();
624
 
625
-
626
- /* Premium Code Stripped by Freemius */
627
 
628
 
629
  var link = $item.find("[name=link]").val();
@@ -684,8 +684,8 @@ var FTG = function($) {
684
  $("[data-action='remove']").show();
685
  }
686
 
687
-
688
- /* Premium Code Stripped by Freemius */
689
 
690
  });
691
 
@@ -712,8 +712,8 @@ var FTG = function($) {
712
  }, 500);
713
  });
714
 
715
-
716
- /* Premium Code Stripped by Freemius */
717
 
718
  $("body").on("click", "[name=click_action]", function() {
719
  if ($(this).val() == "url") {
@@ -893,10 +893,14 @@ var FTG = function($) {
893
  }
894
  });
895
  $("body").on("click", ".lever", function() {
896
- if ($(this).siblings("input").attr("checked"))
 
897
  $(this).siblings("input").removeAttr("checked");
898
- else
 
899
  $(this).siblings("input").attr("checked", "checked");
 
 
900
  });
901
  $("body").on("click", ".show-help", function(e) {
902
  e.preventDefault();
@@ -925,8 +929,8 @@ var FTG = function($) {
925
  $("#shortcode-" + code).toggleClass("visible");
926
  });
927
 
928
-
929
- /* Premium Code Stripped by Freemius */
930
 
931
 
932
  $(".open-media-panel").on("click", function(e) {
@@ -1076,21 +1080,21 @@ var FTGWizard = function($) {
1076
  $(this).text("Save");
1077
  if (branch == 'images') {
1078
  $(".select-images").show();
1079
-
1080
- /* Premium Code Stripped by Freemius */
1081
 
1082
  //$("[name=ftg_max_posts]").val(0);
1083
  } else if (branch == 'posts') {
1084
  $(".select-images").hide();
1085
  $("[name=enc_images]").val("");
1086
-
1087
- /* Premium Code Stripped by Freemius */
1088
 
1089
  } else {
1090
  $(".select-images").hide();
1091
  $("[name=enc_images]").val("");
1092
-
1093
- /* Premium Code Stripped by Freemius */
1094
 
1095
  }
1096
  } else {
@@ -1197,11 +1201,11 @@ jQuery(function() {
1197
  change: function (event, ui) {
1198
  var element = event.target;
1199
  var color = ui.color.toString();
1200
-
1201
  if($(element).parents(".field").hasClass("js-update-shortcode")) {
1202
  var code = $(element).parents(".field").find(".shortcode-val");
1203
- var shortcode = $input.text().split("=");
1204
- $input.text(shortcode[0] + '="' + color + '"');
1205
  }
1206
  },
1207
  });
@@ -1209,4 +1213,4 @@ jQuery(function() {
1209
  FTGWizard.init();
1210
  $('.collapsible').collapsible();
1211
  $('.modal').modal();
1212
- });
46
  FinalTiles_gallery: $('#FinalTiles_gallery').val(),
47
  gid: $("#gallery-id").val()
48
  };
49
+
50
+ /* Premium Code Stripped by Freemius */
51
 
52
  $.post(ajaxurl, data, function(html) {
53
  $("#image-list").empty().append(html);
131
  });
132
  },
133
  update_filters: function() {
134
+
135
+ /* Premium Code Stripped by Freemius */
136
 
137
  },
138
  update_custom_isf: function() {
139
  var isf = [];
140
+
141
+ /* Premium Code Stripped by Freemius */
142
 
143
  },
144
  add_filter: function(value) {
145
+
146
+ /* Premium Code Stripped by Freemius */
147
 
148
  },
149
  add_isf: function(value) {
167
 
168
  var source = $('[name="ftg_source"]').val();
169
 
170
+
171
+ /* Premium Code Stripped by Freemius */
172
 
173
  },
174
  refresh_woocommerce: function() {
175
+
176
+ /* Premium Code Stripped by Freemius */
177
 
178
  },
179
  refresh_posts: function() {
180
+
181
+ /* Premium Code Stripped by Freemius */
182
 
183
  },
184
  save_gallery: function() {
542
  e.preventDefault();
543
  FTG.save_gallery();
544
  });
545
+
546
+ /* Premium Code Stripped by Freemius */
547
 
548
  $("#image-list").on("click", ".item .thumb", function() {
549
  $(this).parents(".item").toggleClass("selected");
622
  else
623
  $(".js-no-hidden").show();
624
 
625
+
626
+ /* Premium Code Stripped by Freemius */
627
 
628
 
629
  var link = $item.find("[name=link]").val();
684
  $("[data-action='remove']").show();
685
  }
686
 
687
+
688
+ /* Premium Code Stripped by Freemius */
689
 
690
  });
691
 
712
  }, 500);
713
  });
714
 
715
+
716
+ /* Premium Code Stripped by Freemius */
717
 
718
  $("body").on("click", "[name=click_action]", function() {
719
  if ($(this).val() == "url") {
893
  }
894
  });
895
  $("body").on("click", ".lever", function() {
896
+ var shortcode = $(this).parents('.field').find('.shortcode-val').text().split("=");
897
+ if ($(this).siblings("input").attr("checked")) {
898
  $(this).siblings("input").removeAttr("checked");
899
+ $(this).parents('.field').find('.shortcode-val').text(shortcode[0] + '="F"' );
900
+ } else {
901
  $(this).siblings("input").attr("checked", "checked");
902
+ $(this).parents('.field').find('.shortcode-val').text(shortcode[0] + '="T"' );
903
+ }
904
  });
905
  $("body").on("click", ".show-help", function(e) {
906
  e.preventDefault();
929
  $("#shortcode-" + code).toggleClass("visible");
930
  });
931
 
932
+
933
+ /* Premium Code Stripped by Freemius */
934
 
935
 
936
  $(".open-media-panel").on("click", function(e) {
1080
  $(this).text("Save");
1081
  if (branch == 'images') {
1082
  $(".select-images").show();
1083
+
1084
+ /* Premium Code Stripped by Freemius */
1085
 
1086
  //$("[name=ftg_max_posts]").val(0);
1087
  } else if (branch == 'posts') {
1088
  $(".select-images").hide();
1089
  $("[name=enc_images]").val("");
1090
+
1091
+ /* Premium Code Stripped by Freemius */
1092
 
1093
  } else {
1094
  $(".select-images").hide();
1095
  $("[name=enc_images]").val("");
1096
+
1097
+ /* Premium Code Stripped by Freemius */
1098
 
1099
  }
1100
  } else {
1201
  change: function (event, ui) {
1202
  var element = event.target;
1203
  var color = ui.color.toString();
1204
+
1205
  if($(element).parents(".field").hasClass("js-update-shortcode")) {
1206
  var code = $(element).parents(".field").find(".shortcode-val");
1207
+ var shortcode = $(element).val();
1208
+ code.text(shortcode[0] + '="' + color + '"');
1209
  }
1210
  },
1211
  });
1213
  FTGWizard.init();
1214
  $('.collapsible').collapsible();
1215
  $('.modal').modal();
1216
+ });
freemius/README.md DELETED
@@ -1,253 +0,0 @@
1
- Freemius WordPress SDK
2
- ======================
3
-
4
- [Monetization](https://freemius.com/wordpress/), [analytics](https://freemius.com/wordpress/insights/), and marketing automation platform for plugin & theme developers. Freemius empower developers to create prosperous subscription based businesses.
5
-
6
- You can see some of the WordPress.org plugins & themes that are utilizing the power of Freemius here:
7
-
8
- https://includewp.com/freemius/#focus
9
-
10
- If you are a WordPress plugin or theme developer and you are interested to monetize with Freemius you can [sign-up here for free](https://dashboard.freemius.com/register/):
11
-
12
- https://dashboard.freemius.com/register/
13
-
14
- **Below you'll find the integration instructions for our WordPress SDK.**
15
-
16
- ## Code Documentation
17
-
18
- You can find the SDK's PHP-Doc documentation here:
19
- https://codedoc.pub/freemius/wordpress-sdk/master/
20
-
21
- ## Initializing the SDK
22
-
23
- Copy the code below and paste it into the top of your main plugin's PHP file, right after the plugin's header comment:
24
-
25
- ```php
26
- <?php
27
- // Create a helper function for easy SDK access.
28
- function my_prefix_fs() {
29
- global $my_prefix_fs;
30
- if ( ! isset( $my_prefix_fs ) ) {
31
- // Include Freemius SDK.
32
- require_once dirname(__FILE__) . '/freemius/start.php';
33
-
34
- $my_prefix_fs = fs_dynamic_init( array(
35
- 'id' => '1234',
36
- 'slug' => 'my-plugin-slug',
37
- 'menu_slug' => 'my_menu_slug', // You can also use __FILE__
38
- 'public_key' => 'pk_MY_PUBLIC_KEY',
39
- 'is_live' => true,
40
- 'is_premium' => true,
41
- 'has_addons' => false,
42
- 'has_paid_plans' => false,
43
- // Set the SDK to work in a sandbox mode (for development & testing).
44
- // IMPORTANT: MAKE SURE TO REMOVE SECRET KEY BEFORE DEPLOYMENT.
45
- 'secret_key' => 'sk_MY_SECRET_KEY',
46
- ) );
47
- }
48
-
49
- return $my_prefix_fs;
50
- }
51
-
52
- // Init Freemius.
53
- my_prefix_fs();
54
- ?>
55
- ```
56
-
57
- - **1234** - Replace with your plugin's ID.
58
- - **pk_MY_PUBLIC_KEY** - Replace with your plugin's public key.
59
- - **sk_MY_SECRET_KEY** - Replace with your plugin's secret key.
60
- - **my-plugin-slug** - Replace with your plugin's WordPress.org slug.
61
- - **my_menu_slug** - Replace with your admin dashboard settings menu slug.
62
-
63
-
64
- ## Usage example
65
-
66
- You can call the SDK by using the shortcode function:
67
-
68
- ```php
69
- <?php my_prefix_fs()->get_upgrade_url(); ?>
70
- ```
71
-
72
- Or when calling Freemius multiple times in a scope, it's recommended to use it with the global variable:
73
-
74
- ```php
75
- <?php
76
- global $my_prefix_fs;
77
- $my_prefix_fs->get_account_url();
78
- ?>
79
- ```
80
-
81
- ## Adding license based logic examples
82
-
83
- Add marketing content to encourage your users to upgrade for your paid version:
84
-
85
- ```php
86
- <?php
87
- if ( my_prefix_fs()->is_not_paying() ) {
88
- echo '<section><h1>' . esc_html__('Awesome Premium Features', 'my-plugin-slug') . '</h1>';
89
- echo '<a href="' . my_prefix_fs()->get_upgrade_url() . '">' .
90
- esc_html__('Upgrade Now!', 'my-plugin-slug') .
91
- '</a>';
92
- echo '</section>';
93
- }
94
- ?>
95
- ```
96
-
97
- Add logic which will only be available in your premium plugin version:
98
-
99
- ```php
100
- <?php
101
- // This "if" block will be auto removed from the Free version.
102
- if ( my_prefix_fs()->is__premium_only() ) {
103
-
104
- // ... premium only logic ...
105
-
106
- }
107
- ?>
108
- ```
109
-
110
- To add a function which will only be available in your premium plugin version, simply add __premium_only as the suffix of the function name. Just make sure that all lines that call that method directly or by hooks, are also wrapped in premium only logic:
111
-
112
- ```php
113
- <?php
114
- class My_Plugin {
115
- function init() {
116
- ...
117
-
118
- // This "if" block will be auto removed from the free version.
119
- if ( my_prefix_fs()->is__premium_only() ) {
120
- // Init premium version.
121
- $this->admin_init__premium_only();
122
-
123
- add_action( 'admin_init', array( &$this, 'admin_init_hook__premium_only' );
124
- }
125
-
126
- ...
127
- }
128
-
129
- // This method will be only included in the premium version.
130
- function admin_init__premium_only() {
131
- ...
132
- }
133
-
134
- // This method will be only included in the premium version.
135
- function admin_init_hook__premium_only() {
136
- ...
137
- }
138
- }
139
- ?>
140
- ```
141
-
142
- Add logic which will only be executed for customers in your 'professional' plan:
143
-
144
- ```php
145
- <?php
146
- if ( my_prefix_fs()->is_plan('professional', true) ) {
147
- // .. logic related to Professional plan only ...
148
- }
149
- ?>
150
- ```
151
-
152
- Add logic which will only be executed for customers in your 'professional' plan or higher plans:
153
-
154
- ```php
155
- <?php
156
- if ( my_prefix_fs()->is_plan('professional') ) {
157
- // ... logic related to Professional plan and higher plans ...
158
- }
159
- ?>
160
- ```
161
-
162
- Add logic which will only be available in your premium plugin version AND will only be executed for customers in your 'professional' plan (and higher plans):
163
-
164
- ```php
165
- <?php
166
- // This "if" block will be auto removed from the Free version.
167
- if ( my_prefix_fs()->is_plan__premium_only('professional') ) {
168
- // ... logic related to Professional plan and higher plans ...
169
- }
170
- ?>
171
- ```
172
-
173
- Add logic only for users in trial:
174
-
175
- ```php
176
- <?php
177
- if ( my_prefix_fs()->is_trial() ) {
178
- // ... logic for users in trial ...
179
- }
180
- ?>
181
- ```
182
-
183
- Add logic for specified paid plan:
184
-
185
- ```php
186
- <?php
187
- // This "if" block will be auto removed from the Free version.
188
- if ( my_prefix_fs()->is__premium_only() ) {
189
- if ( my_prefix_fs()->is_plan( 'professional', true ) ) {
190
-
191
- // ... logic related to Professional plan only ...
192
-
193
- } else if ( my_prefix_fs()->is_plan( 'business' ) ) {
194
-
195
- // ... logic related to Business plan and higher plans ...
196
-
197
- }
198
- }
199
- ?>
200
- ```
201
-
202
- ## Excluding files and folders from the free plugin version
203
- There are two ways to exclude files from your free version.
204
-
205
- 1. Add `__premium_only` just before the file extension. For example, functions__premium_only.php will be only included in the premium plugin version. This works for all type of files, not only PHP.
206
- 2. Add `@fs_premium_only` a sepcial meta tag to the plugin's main PHP file header. Example:
207
- ```php
208
- <?php
209
- /**
210
- * Plugin Name: My Very Awesome Plugin
211
- * Plugin URI: http://my-awesome-plugin.com
212
- * Description: Create and manage Awesomeness right in WordPress.
213
- * Version: 1.0.0
214
- * Author: Awesomattic
215
- * Author URI: http://my-awesome-plugin.com/me/
216
- * License: GPLv2
217
- * Text Domain: myplugin
218
- * Domain Path: /langs
219
- *
220
- * @fs_premium_only /lib/functions.php, /premium-files/
221
- */
222
-
223
- if ( ! defined( 'ABSPATH' ) ) {
224
- exit;
225
- }
226
-
227
- // ... my code ...
228
- ?>
229
- ```
230
- The file `/lib/functions.php` and the directory `/premium-files/` will be removed from the free plugin version.
231
-
232
- # WordPress.org Compliance
233
- Based on [WordPress.org Guidelines](https://wordpress.org/plugins/about/guidelines/) you are not allowed to submit a plugin that has premium code in it:
234
- > All code hosted by WordPress.org servers must be free and fully-functional. If you want to sell advanced features for a plugin (such as a "pro" version), then you must sell and serve that code from your own site, we will not host it on our servers.
235
-
236
- Therefore, if you want to deploy your free plugin's version to WordPress.org, make sure you wrap all your premium code with `if ( my_prefix_fs()->{{ method }}__premium_only() )` or the other methods provided to exclude premium features & files from the free version.
237
-
238
- ## Deployment
239
- Zip your plugin's root folder and upload it in the Deployment section in the *Freemius Developer's Dashboard*.
240
- The plugin will be scanned and processed by a custom developed *PHP Processor* which will auto-generate two versions of your plugin:
241
-
242
- 1. **Premium version**: Identical to your uploaded version, including all code (except your `secret_key`). Will be enabled for download ONLY for your paying or in trial customers.
243
- 2. **Free version**: The code stripped from all your paid features (based on the logic added wrapped in `{ method }__premium_only()`).
244
-
245
- The free version is the one that you should give your users to download. Therefore, download the free generated version and upload to your site. Or, if your plugin was WordPress.org complaint and you made sure to exclude all your premium code with the different provided techniques, you can deploy the downloaded free version to the .org repo.
246
-
247
- ## Reporting Bugs
248
- Email dev [at] freemius [dot] com
249
-
250
- ## FAQ
251
-
252
- ## Copyright
253
- Freemius, Inc.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/css/admin/deactivation-feedback.css DELETED
@@ -1 +0,0 @@
1
- .fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}.fs-modal .fs-modal-dialog li.reason{margin-bottom:10px}.fs-modal .fs-modal-dialog li.reason .reason-input,.fs-modal .fs-modal-dialog li.reason .internal-message{margin-left:29px}.fs-modal .fs-modal-dialog li.reason label{display:table}.fs-modal .fs-modal-dialog li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body h2{font-size:20px}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}.fs-modal .reason-input,.fs-modal .internal-message{margin:3px 0 3px 22px}.fs-modal .reason-input input,.fs-modal .reason-input textarea,.fs-modal .internal-message input,.fs-modal .internal-message textarea{width:100%}.fs-modal li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}body.has-fs-modal{overflow:hidden}#the-list .deactivate>.fs-slug{display:none}
 
freemius/assets/css/admin/license-activation.css DELETED
@@ -1 +0,0 @@
1
- .fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body .license-activation-message{margin:0;display:none}.fs-modal .fs-modal-body input.license_key{width:100%}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}body.has-fs-modal{overflow:hidden}
 
freemius/assets/scss/_colors.scss DELETED
@@ -1,79 +0,0 @@
1
- $menu-hover-color: #333;
2
- $darkest-color: #000;
3
- $fms-live-color: #71ae00;
4
- $fms-test-color: #f7941d;
5
- $fms-link-color: #29abe1;
6
- $fms-link-hover-color: darken(#29abe1, 10%);
7
- $body-bkg: #111;
8
- $special-color: #d3135a;
9
- $body-color: #f1f1f1;
10
- $fms-white: #f1f1f1;
11
- $container-bkg: #222;
12
- $container-bkg-odd: #262626;
13
- $container-border-color: #333;
14
- $table-head-bkg: #333;
15
- $table-head-color: #999;
16
- $info-color: #999;
17
- $error-color: #ff0000;
18
-
19
- $fs-logo-blue-color: #29abe1;
20
- $fs-logo-green-color: #71ae00;
21
- $fs-logo-magenta-color: #d3135a;
22
-
23
- // WordPress colors.
24
- $page-header-bkg: #333;
25
- $page-header-color: $fms-white;
26
- $text-dark-color: #333;
27
- $text-light-color: #666;
28
- $text-lightest-color: #999;
29
-
30
- // Notices.
31
- $wp-notice-success-color: #f7fff7;
32
- $wp-notice-success-dark-color: #46b450;
33
- $wp-notice-error-color: #ffeaea;
34
- $wp-notice-error-dark-color: #dc3232;
35
- $wp-notice-warn-color: #fff8e5;
36
- $wp-notice-warn-dark-color: #ffb900;
37
- $fs-notice-promotion-border-color: #00a0d2;
38
- $fs-notice-promotion-bkg: #f2fcff;
39
-
40
- // WP Buttons.
41
- $button-primary-bkg: #6bc406;
42
- $button-primary-color: $fms-white;
43
- $button-secondary-bkg: #333;
44
- $button-secondary-color: $fms-white;
45
- $featured-color: #6bc406;
46
- $wp-selected-color: #0074a3;
47
- $wp-button-alert-border-color: #d2593c;
48
- $wp-button-alert-border-top-color: #ec6544;
49
- $wp-button-alert-shadow-color: #d2593c;
50
- $wp-button-alert-focused-shadow1-color: #dd6041;
51
- $wp-button-alert-focused-shadow2-color: #e4a796;
52
- $wp-button-alert-background-color: #f56a48;
53
- $wp-button-alert-hovered-background-color: #fd6d4a;
54
- $wp-button-alert-active-background-color: #dd6041;
55
- $wp-button-alert-disabled-color: #f5b3a1;
56
- $wp-button-alert-disabled-background-color: #e76444;
57
- $wp-button-alert-disabled-border-color: #d85e40;
58
-
59
- $wordpress_color: #01749A;
60
- $blogger_color: #ff8100;
61
- $wix_color: #fac102;
62
- $shopify_color: #80d100;
63
- $addthis_color: #fe6d4e;
64
- $tumblr_color: #34506b;
65
- $zepo_color: #00baf2;
66
- $jquery_color: #000919;
67
- $javascript_color: #00baf2;
68
- $squarespace_color: #000;
69
-
70
- $blog_color: #ff6600;
71
- $facebook_color: #3b5998;
72
- $twitter_color: #4099ff;
73
- $linkedin_color: #4875b4;
74
- $youtube_color: #ff3333;
75
- $gplus_color: #c63d2d;
76
-
77
- // Tooltip
78
- $tooltip-color: #fff;
79
- $tooltip-bkg-color: rgba(0,0,0,0.8);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/_functions.scss DELETED
File without changes
freemius/assets/scss/_load.scss DELETED
@@ -1,4 +0,0 @@
1
- @import 'mixins';
2
- @import "vars";
3
- @import "functions";
4
- @import "colors";
 
 
 
 
freemius/assets/scss/_mixins.scss DELETED
@@ -1,270 +0,0 @@
1
- // ---- CSS3 SASS MIXINS ----
2
- // https://github.com/madr/css3-sass-mixins
3
- //
4
- // Copyright (C) 2011 by Anders Ytterström
5
- //
6
- // Permission is hereby granted, free of charge, to any person obtaining a copy
7
- // of this software and associated documentation files (the "Software"), to deal
8
- // in the Software without restriction, including without limitation the rights
9
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- // copies of the Software, and to permit persons to whom the Software is
11
- // furnished to do so, subject to the following conditions:
12
- //
13
- // The above copyright notice and this permission notice shall be included in
14
- // all copies or substantial portions of the Software.
15
- //
16
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
- // THE SOFTWARE.
23
- //
24
-
25
- // ---- LEGACY IE SUPPORT USING FILTERS ----
26
- // Should IE filters be used or not?
27
- // PROS: gradients, drop shadows etc will be handled by css.
28
- // CONS: will harm the site performance badly,
29
- // especially on sites with heavy rendering and scripting.
30
- $useIEFilters: 0;
31
- // might be 0 or 1. disabled by default.
32
- // ---- /LEGACY IE SUPPORT USING FILTERS ----
33
-
34
-
35
- @mixin background-size ($value) {
36
- -webkit-background-size: $value;
37
- background-size: $value;
38
- }
39
-
40
- @mixin border-image ($path, $offsets, $repeats) {
41
- -moz-border-image: $path $offsets $repeats;
42
- -o-border-image: $path $offsets $repeats;
43
- -webkit-border-image: $path $offsets $repeats;
44
- border-image: $path $offsets $repeats;
45
- }
46
-
47
- @mixin border-radius ($values...) {
48
- -moz-border-radius: $values;
49
- -webkit-border-radius: $values;
50
- border-radius: $values;
51
- /*-moz-background-clip: padding;
52
- -webkit-background-clip: padding-box;
53
- background-clip: padding-box;*/
54
- }
55
-
56
- @mixin box-shadow ($values...) {
57
- -moz-box-shadow: $values;
58
- -webkit-box-shadow: $values;
59
- box-shadow: $values;
60
- }
61
-
62
- //@mixin box-shadow ($x, $y, $offset, $hex, $ie: $useIEFilters, $inset: null, $spread:null) {
63
- // -moz-box-shadow: $x $y $offset $spread $hex $inset;
64
- // -webkit-box-shadow: $x $y $offset $spread $hex $inset;
65
- // box-shadow: $x $y $offset $spread $hex $inset;
66
- //
67
- // @if $ie == 1 {
68
- // $iecolor: '#' + red($hex) + green($hex) + blue($hex);
69
- // filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}');
70
- // -ms-filter: quote(progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}'));
71
- // }
72
- //}
73
-
74
- @mixin box-sizing($value) {
75
- -moz-box-sizing: $value;
76
- -webkit-box-sizing: $value;
77
- box-sizing: $value;
78
- }
79
-
80
- // requires sass 3.2
81
- @mixin keyframes($name){
82
- @-moz-keyframes #{$name} { @content; }
83
- @-ms-keyframes #{$name} { @content; }
84
- @-o-keyframes #{$name} { @content; }
85
- @-webkit-keyframes #{$name} { @content; }
86
- @keyframes #{$name} { @content; }
87
- }
88
-
89
- @mixin linear-gradient($from, $to, $ie: $useIEFilters) {
90
- @if $ie != 1 { background-color: $to; }
91
-
92
- background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, $from),color-stop(1, $to));
93
- background-image: -webkit-linear-gradient(top, $from, $to);
94
- background-image: -moz-linear-gradient(top, $from, $to);
95
- background-image: -ms-linear-gradient(top, $from, $to);
96
- background-image: -o-linear-gradient(top, $from, $to);
97
- background-image: linear-gradient(top, bottom, $from, $to);
98
-
99
- @if $ie == 1 {
100
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}');
101
- }
102
- }
103
-
104
- @mixin horizontal-gradient($startColor: #555, $endColor: #333, $ie: $useIEFilters) {
105
- @if $ie != 1 { background-color: $endColor; }
106
-
107
- background-color: $endColor;
108
- background-image: -webkit-gradient(linear, 0 0, 100% 0, from($startColor), to($endColor)); // Safari 4+, Chrome 2+
109
- background-image: -webkit-linear-gradient(left, $startColor, $endColor); // Safari 5.1+, Chrome 10+
110
- background-image: -moz-linear-gradient(left, $startColor, $endColor); // FF 3.6+
111
- background-image: -o-linear-gradient(left, $startColor, $endColor); // Opera 11.10
112
- background-image: linear-gradient(to right, $startColor, $endColor); // Standard, IE10
113
- background-repeat: repeat-x;
114
- @if $ie == 1 {
115
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startColor}', endColorstr='#{$endColor}', GradientType=1);
116
- }
117
- }
118
-
119
- @mixin radial-gradient($from, $to, $ie: $useIEFilters) {
120
- @if $ie != 1 { background-color: $to; }
121
-
122
- background: -moz-radial-gradient(center, circle cover, $from 0%, $to 100%);
123
- background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, $from), color-stop(100%, $to));
124
- background: -webkit-radial-gradient(center, circle cover, $from 0%, $to 100%);
125
- background: -o-radial-gradient(center, circle cover, $from 0%, $to 100%);
126
- background: -ms-radial-gradient(center, circle cover, $from 0%, $to 100%);
127
- background: radial-gradient(center, circle cover, $from 0%, $to 100%);
128
- background-color: $from;
129
-
130
- @if $ie == 1 {
131
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}', GradientType=1); /* IE6-9 fallback on horizontal gradient */
132
- }
133
- }
134
-
135
- @mixin perspective($perspective) {
136
- -moz-perspective: $perspective;
137
- -ms-perspective: $perspective;
138
- -webkit-perspective: $perspective;
139
- perspective: $perspective;
140
- -moz-transform-style: preserve-3d;
141
- -ms-transform-style: preserve-3d;
142
- -webkit-transform-style: preserve-3d;
143
- transform-style: preserve-3d;
144
- }
145
-
146
- @mixin transform ($transforms) {
147
- -moz-transform: $transforms;
148
- -o-transform: $transforms;
149
- -ms-transform: $transforms;
150
- -webkit-transform: $transforms;
151
- transform: $transforms;
152
- }
153
-
154
- @mixin matrix ($a, $b, $c, $d, $e, $f) {
155
- -moz-transform: matrix($a, $b, $c, $d, #{$e}px, #{$f}px);
156
- -o-transform: matrix($a, $b, $c, $d, $e, $f);
157
- -ms-transform: matrix($a, $b, $c, $d, $e, $f);
158
- -webkit-transform: matrix($a, $b, $c, $d, $e, $f);
159
- transform: matrix($a, $b, $c, $d, $e, $f);
160
- }
161
-
162
- @mixin rotate ($deg) {
163
- @include transform(rotate(#{$deg}deg));
164
- }
165
-
166
- @mixin scale ($size) {
167
- @include transform(scale(#{$size}));
168
- }
169
-
170
- @mixin translate ($x, $y) {
171
- @include transform(translate($x, $y));
172
- }
173
-
174
- @mixin transition ($value...) {
175
- -moz-transition: $value;
176
- -o-transition: $value;
177
- -ms-transition: $value;
178
- -webkit-transition: $value;
179
- transition: $value;
180
- }
181
-
182
- @mixin animation($str) {
183
- -webkit-animation: #{$str};
184
- -moz-animation: #{$str};
185
- -ms-animation: #{$str};
186
- -o-animation: #{$str};
187
- animation: #{$str};
188
- }
189
-
190
- @mixin animation-name($str) {
191
- -webkit-animation-name: #{$str};
192
- -moz-animation-name: #{$str};
193
- -ms-animation-name: #{$str};
194
- -o-animation-name: #{$str};
195
- animation-name: #{$str};
196
- }
197
-
198
- @mixin animation-duration($str) {
199
- -webkit-animation-duration: #{$str};
200
- -moz-animation-duration: #{$str};
201
- -ms-animation-duration: #{$str};
202
- -o-animation-duration: #{$str};
203
- animation-duration: #{$str};
204
- }
205
-
206
- @mixin animation-direction($str) {
207
- -webkit-animation-direction: #{$str};
208
- -moz-animation-direction: #{$str};
209
- -ms-animation-direction: #{$str};
210
- -o-animation-direction: #{$str};
211
- animation-direction: #{$str};
212
- }
213
-
214
- @mixin animation-delay($str) {
215
- animation-delay:#{$str};
216
- -o-animation-delay:#{$str};
217
- -ms-animation-delay:#{$str};
218
- -webkit-animation-delay:#{$str};
219
- -moz-animation-delay:#{$str};
220
- }
221
-
222
- @mixin animation-iteration-count($str) {
223
- animation-iteration-count:#{$str};
224
- -o-animation-iteration-count:#{$str};
225
- -ms-animation-iteration-count:#{$str};
226
- -webkit-animation-iteration-count:#{$str};
227
- -moz-animation-iteration-count:#{$str};
228
- }
229
-
230
- @mixin animation-timing-function($str) {
231
- -webkit-animation-timing-function: #{$str};
232
- -moz-animation-timing-function: #{$str};
233
- -ms-animation-timing-function: #{$str};
234
- -o-animation-timing-function: #{$str};
235
- animation-timing-function: #{$str};
236
- }
237
-
238
- // ==== /CSS3 SASS MIXINS ====
239
-
240
- @mixin opacity($opacity) {
241
- opacity: $opacity;
242
- $opacity-ie: $opacity * 100;
243
- filter: alpha(opacity=$opacity-ie); //IE8
244
- }
245
-
246
- @mixin size($width, $height: $width)
247
- {
248
- width: $width;
249
- height: $height;
250
- }
251
-
252
- @mixin clearfix
253
- {
254
- &:after {
255
- content: "";
256
- display: table;
257
- clear: both;
258
- }
259
- }
260
-
261
- // Placeholder text
262
- @mixin placeholder($color: $input-color-placeholder) {
263
- // Firefox
264
- &::-moz-placeholder {
265
- color: $color;
266
- opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
267
- }
268
- &:-ms-input-placeholder { color: $color; } // Internet Explorer 10+
269
- &::-webkit-input-placeholder { color: $color; } // Safari and Chrome
270
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/_start.scss DELETED
@@ -1,4 +0,0 @@
1
- @import "vars";
2
- @import "colors";
3
- @import "mixins";
4
- @import "functions";
 
 
 
 
freemius/assets/scss/_vars.scss DELETED
@@ -1,6 +0,0 @@
1
- $is_production: true;
2
-
3
- $img_common: if($is_production == true, '//img.freemius.com', 'http://img.freemius:8080');
4
-
5
- $layout_width: 960px;
6
- $admin_mobile_max_width: 782px;
 
 
 
 
 
 
freemius/assets/scss/admin/_ajax-loader.scss DELETED
@@ -1,49 +0,0 @@
1
- $color: $wp-selected-color;
2
- $bkg-color: #fff;
3
- $size: 20;
4
-
5
- .fs-ajax-loader
6
- {
7
- position: relative;
8
- width: #{8*$size + 10}px;
9
- height: #{$size}px;
10
- margin: auto;
11
-
12
- .fs-ajax-loader-bar
13
- {
14
- position: absolute;
15
- top: 0;
16
- background-color: $color;
17
- width: #{$size}px;
18
- height: #{$size}px;
19
- @include animation-name(bounce_ajaxLoader);
20
- @include animation-duration(1.5s);
21
- @include animation-iteration-count(infinite);
22
- @include animation-direction(normal);
23
- @include transform(.3);
24
- }
25
-
26
- @for $i from 0 through 7
27
- {
28
- .fs-ajax-loader-bar-#{$i + 1}
29
- {
30
- left: #{$i*($size - 1)}px;
31
- @include animation-delay(#{0.6 + $i*0.15}s);
32
- }
33
- }
34
- }
35
-
36
- @include keyframes(bounce_ajaxLoader)
37
- {
38
- 0%
39
- {
40
- @include transform(scale(1));
41
- background-color: $color;
42
- }
43
-
44
- 100%
45
- {
46
- @include transform(scale(.3));
47
- background-color: $bkg-color;
48
- }
49
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_auto-install.scss DELETED
@@ -1,33 +0,0 @@
1
- .fs-modal-auto-install
2
- {
3
- $max-width: 300px;
4
-
5
- #request-filesystem-credentials-form
6
- {
7
- h2,
8
- .request-filesystem-credentials-action-buttons
9
- {
10
- display: none;
11
- }
12
-
13
- input[type=password],
14
- input[type=email],
15
- input[type=text]
16
- {
17
- -webkit-appearance: none;
18
- padding: 10px 10px 5px 10px;
19
- width: $max-width;
20
- max-width: 100%;
21
- }
22
-
23
- > div,
24
- label,
25
- fieldset
26
- {
27
- width: $max-width;
28
- max-width: 100%;
29
- margin: 0 auto;
30
- display: block;
31
- }
32
- }
33
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_deactivation-feedback.scss DELETED
@@ -1,55 +0,0 @@
1
- @import "../colors";
2
-
3
- .fs-modal.fs-modal-deactivation-feedback {
4
- .reason-input, .internal-message {
5
- margin: 3px 0 3px 22px;
6
-
7
- input, textarea {
8
- width: 100%;
9
- }
10
- }
11
-
12
- li.reason {
13
- &.has-internal-message .internal-message {
14
- border: 1px solid lighten($darkest-color, 80%);
15
- padding: 7px;
16
- display: none;
17
- }
18
-
19
- @media (max-width: 650px) {
20
- li.reason {
21
- margin-bottom: 10px;
22
-
23
- .reason-input, .internal-message {
24
- margin-left: 29px;
25
- }
26
-
27
- label {
28
- display: table;
29
-
30
- > span {
31
- display: table-cell;
32
- font-size: 1.3em;
33
- }
34
- }
35
- }
36
- }
37
- }
38
-
39
- .anonymous-feedback-label {
40
- float: left;
41
- }
42
-
43
- .fs-modal-panel {
44
- margin-top: 0 !important;
45
-
46
- h3 {
47
- margin-top: 0;
48
- line-height: 1.5em;
49
- }
50
- }
51
- }
52
-
53
- #the-list .deactivate > .fs-slug {
54
- display: none;
55
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_gdpr-consent.scss DELETED
@@ -1,81 +0,0 @@
1
- #fs_marketing_optin
2
- {
3
- display: none;
4
- margin-top: 10px;
5
- border: 1px solid #ccc;
6
- padding: 10px;
7
- line-height: 1.5em;
8
-
9
- .fs-message
10
- {
11
- display: block;
12
- margin-bottom: 5px;
13
- font-size: 1.05em;
14
- font-weight: 600;
15
- }
16
-
17
- &.error
18
- {
19
- border: 1px solid $fs-logo-magenta-color;
20
- background: #fee;
21
-
22
- .fs-message
23
- {
24
- color: $fs-logo-magenta-color;
25
- }
26
- }
27
-
28
- .fs-input-container
29
- {
30
- margin-top: 5px;
31
-
32
- label
33
- {
34
- margin-top: 5px;
35
- display: block;
36
-
37
- input
38
- {
39
- float: left;
40
- margin: 1px 0 0 0;
41
- }
42
-
43
- &:first-child
44
- {
45
- display: block;
46
- margin-bottom: 2px;
47
- }
48
- }
49
- }
50
-
51
- .fs-input-label
52
- {
53
- display: block;
54
- margin-left: 20px;
55
-
56
- .underlined
57
- {
58
- text-decoration: underline;
59
- }
60
- }
61
- }
62
-
63
- .rtl
64
- {
65
- #fs_marketing_optin
66
- {
67
- .fs-input-container
68
- {
69
- label input
70
- {
71
- float: right;
72
- }
73
- }
74
-
75
- .fs-input-label
76
- {
77
- margin-left: 0;
78
- margin-right: 20px;
79
- }
80
- }
81
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_license-activation.scss DELETED
@@ -1,47 +0,0 @@
1
- .fs-modal.fs-modal-license-activation {
2
- .fs-modal-body {
3
- input.license_key {
4
- width: 100%;
5
- }
6
- }
7
- }
8
-
9
- #license_options_container {
10
- table {
11
- &, select, #available_license_key {
12
- width: 100%;
13
- }
14
-
15
- td:first-child {
16
- width: 1%;
17
- }
18
-
19
- #other_license_key_container {
20
- label {
21
- position: relative;
22
- top: 6px;
23
- float: left;
24
- margin-right: 5px;
25
- }
26
-
27
- div {
28
- overflow: hidden;
29
- width: auto;
30
- height: 30px;
31
- display: block;
32
- top: 2px;
33
- position: relative;
34
-
35
- input {
36
- margin: 0;
37
- }
38
- }
39
- }
40
- }
41
- }
42
-
43
- #sites_list_container {
44
- td {
45
- cursor: pointer;
46
- }
47
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_license-key-resend.scss DELETED
@@ -1,68 +0,0 @@
1
- .fs-modal.fs-modal-license-key-resend
2
- {
3
- .email-address-container
4
- {
5
- overflow: hidden;
6
- padding-right: 2px;
7
- }
8
-
9
- &.fs-freemium
10
- {
11
- input.email-address
12
- {
13
- width: 300px;
14
- }
15
-
16
- label
17
- {
18
- display: block;
19
- margin-bottom: 10px;
20
- }
21
- }
22
-
23
- &.fs-premium
24
- {
25
- input.email-address
26
- {
27
- width: 100%;
28
- }
29
-
30
- .button-container
31
- {
32
- float: right;
33
- margin-left: 7px;
34
-
35
- @media (max-width: 650px) {
36
- margin-top: 2px;
37
- }
38
- }
39
- }
40
- }
41
-
42
- .rtl
43
- {
44
- .fs-modal.fs-modal-license-key-resend
45
- {
46
- .fs-modal-body
47
- {
48
- .input-container > .email-address-container
49
- {
50
- padding-left: 2px;
51
- padding-right: 0;
52
- }
53
-
54
- .button-container
55
- {
56
- float: left;
57
- margin-right: 7px;
58
- margin-left: 0;
59
- }
60
- }
61
- }
62
- }
63
-
64
- a.show-license-resend-modal
65
- {
66
- margin-top: 4px;
67
- display: inline-block;
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_modal-common.scss DELETED
@@ -1,194 +0,0 @@
1
- @import "../colors";
2
- @import "../mixins";
3
-
4
- .fs-modal {
5
- position: fixed;
6
- overflow: auto;
7
- height: 100%;
8
- width: 100%;
9
- top: 0;
10
- z-index: 100000;
11
- display: none;
12
- background: rgba(0, 0, 0, 0.6);
13
-
14
- .fs-modal-dialog {
15
- background: transparent;
16
- position: absolute;
17
- left: 50%;
18
- margin-left: -298px;
19
- padding-bottom: 30px;
20
- top: -100%;
21
- z-index: 100001;
22
- width: 596px;
23
-
24
- @media (max-width: 650px) {
25
- margin-left: -50%;
26
- box-sizing: border-box;
27
- padding-left: 10px;
28
- padding-right: 10px;
29
- width: 100%;
30
-
31
- .fs-modal-panel > h3 > strong {
32
- font-size: 1.3em;
33
- }
34
- }
35
- }
36
-
37
- &.active {
38
- display: block;
39
-
40
- &:before {
41
- display: block;
42
- }
43
-
44
- .fs-modal-dialog {
45
- top: 10%;
46
- }
47
- }
48
-
49
- &.fs-success {
50
- .fs-modal-header {
51
- border-bottom-color: $wp-notice-success-dark-color;
52
- }
53
-
54
- .fs-modal-body {
55
- background-color: $wp-notice-success-color;
56
- }
57
- }
58
-
59
- &.fs-warn {
60
- .fs-modal-header {
61
- border-bottom-color: $wp-notice-warn-dark-color;
62
- }
63
-
64
- .fs-modal-body {
65
- background-color: $wp-notice-warn-color;
66
- }
67
- }
68
-
69
- &.fs-error {
70
- .fs-modal-header {
71
- border-bottom-color: $wp-notice-error-dark-color;
72
- }
73
-
74
- .fs-modal-body {
75
- background-color: $wp-notice-error-color;
76
- }
77
- }
78
-
79
-
80
- .fs-modal-body,
81
- .fs-modal-footer {
82
- border: 0;
83
- background: #fefefe;
84
- padding: 20px;
85
- }
86
-
87
- .fs-modal-header {
88
- border-bottom: #eeeeee solid 1px;
89
- background: #fbfbfb;
90
- padding: 15px 20px;
91
- position: relative;
92
- margin-bottom: -10px;
93
- // z-index: 2;
94
-
95
- h4 {
96
- margin: 0;
97
- padding: 0;
98
- text-transform: uppercase;
99
- font-size: 1.2em;
100
- font-weight: bold;
101
- color: #cacaca;
102
- text-shadow: 1px 1px 1px #fff;
103
- letter-spacing: 0.6px;
104
- -webkit-font-smoothing: antialiased;
105
- }
106
-
107
- .fs-close {
108
- position: absolute;
109
- right: 10px;
110
- top: 12px;
111
- cursor: pointer;
112
- color: #bbb;
113
- @include border-radius(20px);
114
- padding: 3px;
115
- @include transition(all 0.2s ease-in-out);
116
-
117
- &:hover {
118
- color: #fff;
119
- background: #aaa;
120
- }
121
-
122
- &, &:hover
123
- {
124
- .dashicons
125
- {
126
- text-decoration: none;
127
- }
128
- }
129
- }
130
- }
131
-
132
- .fs-modal-body {
133
- border-bottom: 0;
134
-
135
- p {
136
- font-size: 14px;
137
- }
138
-
139
- h2 {
140
- font-size: 20px;
141
- line-height: 1.5em;
142
- }
143
-
144
- > div {
145
- margin-top: 10px;
146
-
147
- h2 {
148
- font-weight: bold;
149
- font-size: 20px;
150
- margin-top: 0;
151
- }
152
- }
153
- }
154
-
155
- .fs-modal-footer {
156
- border-top: #eeeeee solid 1px;
157
- text-align: right;
158
-
159
- > .button {
160
- margin: 0 7px;
161
-
162
- &:first-child {
163
- margin: 0;
164
- }
165
- }
166
- }
167
-
168
- .fs-modal-panel {
169
- > .notice.inline {
170
- margin: 0;
171
- display: none;
172
- }
173
-
174
- &:not(.active) {
175
- display: none;
176
- }
177
- }
178
- }
179
-
180
- .rtl
181
- {
182
- .fs-modal {
183
- .fs-modal-header {
184
- .fs-close {
185
- right: auto;
186
- left: 20px;
187
- }
188
- }
189
- }
190
- }
191
-
192
- body.has-fs-modal {
193
- overflow: hidden;
194
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_multisite-options.scss DELETED
@@ -1,40 +0,0 @@
1
- #multisite_options_container {
2
- margin-top: 10px;
3
- border: 1px solid #ccc;
4
- padding: 5px;
5
-
6
- a {
7
- text-decoration: none;
8
-
9
- &:focus {
10
- box-shadow: none;
11
- }
12
-
13
- &.selected {
14
- font-weight: bold;
15
- }
16
- }
17
-
18
- &.apply-on-all-sites {
19
- border: 0 none;
20
- padding: 0;
21
-
22
- #all_sites_options {
23
- border-spacing: 0;
24
-
25
- td:not(:first-child) {
26
- display: none;
27
- }
28
- }
29
- }
30
-
31
- #sites_list_container {
32
- display: none;
33
- overflow: auto;
34
-
35
- table td {
36
- border-top: 1px solid #ccc;
37
- padding: 4px 2px;
38
- }
39
- }
40
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_themes.scss DELETED
@@ -1,21 +0,0 @@
1
- .theme-browser
2
- {
3
- .theme
4
- {
5
- .fs-premium-theme-badge
6
- {
7
- position: absolute;
8
- top: 10px;
9
- right: 0;
10
- background: $fs-logo-green-color;
11
- color: #fff;
12
- text-transform: uppercase;
13
- padding: 5px 10px;
14
- @include border-radius(3px 0 0 3px);
15
- font-weight: bold;
16
- border-right: 0;
17
- @include box-shadow(0 2px 1px -1px rgba(0, 0, 0, .3));
18
- font-size: 1.1em;
19
- }
20
- }
21
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/_tooltip.scss DELETED
@@ -1,66 +0,0 @@
1
- .fs-tooltip-trigger
2
- {
3
- &:not(a)
4
- {
5
- cursor: help;
6
- }
7
-
8
- position: relative;
9
-
10
- .fs-tooltip
11
- {
12
- opacity: 0;
13
- visibility: hidden;
14
- @include transition(opacity 0.3s ease-in-out);
15
- position: absolute;
16
- background: $tooltip-bkg-color;
17
- color: $tooltip-color;
18
- font-family: 'arial', serif;
19
- font-size: 12px;
20
- padding: 10px;
21
- z-index: 999999;
22
- bottom: 100%;
23
- margin-bottom: 5px;
24
- left: 0;
25
- right: 0;
26
- @include border-radius(5px);
27
- @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
28
- line-height: 1.3em;
29
- font-weight: bold;
30
- text-align: left;
31
-
32
- .rtl &
33
- {
34
- text-align: right;
35
- }
36
-
37
- &::after
38
- {
39
- content: ' ';
40
- display: block;
41
- width: 0;
42
- height: 0;
43
- border-style: solid;
44
- border-width: 5px 5px 0 5px;
45
- border-color: $tooltip-bkg-color transparent transparent transparent;
46
- position: absolute;
47
- top: 100%;
48
- left: 21px;
49
-
50
- .rtl &
51
- {
52
- right: 21px;
53
- left: auto;
54
- }
55
- }
56
- }
57
-
58
- &:hover
59
- {
60
- .fs-tooltip
61
- {
62
- visibility: visible;
63
- opacity: 1;
64
- }
65
- }
66
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/account.scss DELETED
@@ -1,302 +0,0 @@
1
- @import "../start";
2
-
3
- #fs_account
4
- {
5
- .postbox,
6
- .widefat
7
- {
8
- max-width: 700px;
9
- }
10
-
11
- h3
12
- {
13
- font-size: 1.3em;
14
- padding: 12px 15px;
15
- margin: 0 0 12px 0;
16
- line-height: 1.4;
17
- border-bottom: 1px solid #F1F1F1;
18
-
19
- .dashicons {
20
- width: 26px;
21
- height: 26px;
22
- font-size: 1.3em;
23
- }
24
- }
25
-
26
- i.dashicons
27
- {
28
- font-size: 1.2em;
29
- height: 1.2em;
30
- width: 1.2em;
31
- }
32
-
33
- .dashicons
34
- {
35
- vertical-align: middle;
36
- }
37
-
38
- .fs-header-actions
39
- {
40
- position: absolute;
41
- top: 17px;
42
- right: 15px;
43
- font-size: 0.9em;
44
-
45
- ul
46
- {
47
- margin: 0;
48
- }
49
-
50
- li
51
- {
52
- form
53
- {
54
- display: inline-block;
55
- }
56
-
57
- float: left;
58
- a
59
- {
60
- text-decoration: none;
61
- }
62
- }
63
- }
64
- }
65
-
66
- #fs_account_details .button-group {
67
- float: right;
68
- }
69
-
70
- .rtl #fs_account .fs-header-actions
71
- {
72
- left: 15px;
73
- right: auto;
74
- }
75
-
76
- .fs-key-value-table
77
- {
78
- width: 100%;
79
-
80
- form
81
- {
82
- display: inline-block;
83
- }
84
-
85
- tr
86
- {
87
- td:first-child
88
- {
89
- nobr
90
- {
91
- font-weight: bold;
92
- }
93
-
94
- text-align: right;
95
-
96
- form
97
- {
98
- display: block;
99
- }
100
- }
101
-
102
- td.fs-right
103
- {
104
- text-align: right;
105
- }
106
-
107
- &.fs-odd
108
- {
109
- background: #ebebeb;
110
- }
111
- }
112
-
113
- td, th
114
- {
115
- padding: 10px;
116
- }
117
-
118
- code {
119
- line-height: 28px;
120
- }
121
-
122
- var, code, input[type="text"]
123
- {
124
- color: #0073AA;
125
- font-size: 16px;
126
- background: none;
127
- }
128
-
129
- input[type="text"] {
130
- width: 100%;
131
- font-weight: bold;
132
- }
133
- }
134
-
135
- label.fs-tag
136
- {
137
- background: #ffba00;
138
- color: #fff;
139
- display: inline-block;
140
- border-radius: 3px;
141
- padding: 5px;
142
- font-size: 11px;
143
- line-height: 11px;
144
- vertical-align: baseline;
145
-
146
- &.fs-warn
147
- {
148
- background: #ffba00;
149
- }
150
- &.fs-success
151
- {
152
- background: #46b450;
153
- }
154
- &.fs-error
155
- {
156
- background: #dc3232;
157
- }
158
- }
159
-
160
- #fs_sites
161
- {
162
- .fs-scrollable-table
163
- {
164
- .fs-table-body {
165
- max-height: 200px;
166
- overflow: auto;
167
- border: 1px solid #e5e5e5;
168
-
169
- & > table.widefat {
170
- border: none !important;
171
- }
172
- }
173
-
174
- .fs-main-column {
175
- width: 100%;
176
- }
177
-
178
- .fs-site-details
179
- {
180
- td:first-of-type
181
- {
182
- text-align: right;
183
- color: grey;
184
- width: 1px;
185
- }
186
-
187
- td:last-of-type
188
- {
189
- text-align: right;
190
- }
191
- }
192
-
193
- .fs-install-details table
194
- {
195
- tr td
196
- {
197
- width: 1px;
198
- white-space: nowrap;
199
-
200
- &:last-of-type
201
- {
202
- width: auto;
203
- }
204
- }
205
- }
206
- }
207
- }
208
-
209
- #fs_addons
210
- {
211
- h3
212
- {
213
- border: none;
214
- margin-bottom: 0;
215
- padding: 4px 5px;
216
- }
217
-
218
- td
219
- {
220
- vertical-align: middle;
221
- }
222
-
223
- thead {
224
- white-space: nowrap;
225
- }
226
-
227
- td:first-child,
228
- th:first-child
229
- {
230
- text-align: left;
231
- font-weight: bold;
232
- }
233
- td:last-child,
234
- th:last-child
235
- {
236
- text-align: right;
237
- }
238
- th
239
- {
240
- font-weight: bold;
241
- }
242
- }
243
-
244
- #fs_billing_address {
245
- width: 100%;
246
-
247
- tr {
248
- td {
249
- width: 50%;
250
- padding: 5px;
251
- }
252
-
253
- &:first-of-type {
254
- td {
255
- padding-top: 0;
256
- }
257
- }
258
- }
259
-
260
- @mixin read-mode {
261
- border-color: transparent;
262
- color: #777;
263
- border-bottom: 1px dashed #ccc;
264
- padding-left: 0;
265
- background: none;
266
- }
267
-
268
- span {
269
- font-weight: bold;
270
- }
271
-
272
- input, select {
273
- @include placeholder(transparent);
274
-
275
- display: block;
276
- width: 100%;
277
- margin-top: 5px;
278
-
279
- &.fs-read-mode {
280
- @include read-mode();
281
- }
282
- }
283
-
284
-
285
- &.fs-read-mode {
286
- td span {
287
- display: none;
288
- }
289
-
290
- input, select
291
- {
292
- @include read-mode();
293
- @include placeholder(#ccc);
294
- }
295
- }
296
-
297
-
298
- button {
299
- display: block;
300
- width: 100%;
301
- }
302
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/add-ons.scss DELETED
@@ -1,449 +0,0 @@
1
- @import "../start";
2
-
3
- #fs_addons
4
- {
5
- .fs-cards-list
6
- {
7
- list-style: none;
8
-
9
- .fs-card
10
- {
11
- float: left;
12
- // height: 185px; // With reviews/ratings
13
- height: 152px;
14
- width: 310px;
15
- padding: 0;
16
- margin: 0 0 30px 30px;
17
- font-size: 14px;
18
- list-style: none;
19
- border: 1px solid #ddd;
20
- cursor: pointer;
21
- position: relative;
22
-
23
- .fs-overlay
24
- {
25
- position: absolute;
26
- left: 0;
27
- right: 0;
28
- bottom: 0;
29
- top: 0;
30
- z-index: 9;
31
- }
32
-
33
- .fs-inner
34
- {
35
- background-color: #fff;
36
- overflow: hidden;
37
- height: 100%;
38
- position: relative;
39
-
40
- ul
41
- {
42
- @include transition(all, 0.15s);
43
- left: 0;
44
- right: 0;
45
- top: 0;
46
- position: absolute;
47
- }
48
-
49
- li
50
- {
51
- list-style: none;
52
- line-height: 18px;
53
- padding: 0 15px;
54
- width: 100%;
55
- display: block;
56
- @include box-sizing(border-box);
57
- }
58
-
59
- .fs-card-banner
60
- {
61
- padding: 0;
62
- margin: 0;
63
- line-height: 0;
64
- display: block;
65
- height: 100px;
66
- background-repeat: repeat-x;
67
- background-size: 100% 100%;
68
- @include transition(all, 0.15s);
69
- }
70
-
71
- .fs-title
72
- {
73
- margin: 10px 0 0 0;
74
- height: 18px;
75
- overflow: hidden;
76
- color: #000;
77
- white-space: nowrap;
78
- text-overflow: ellipsis;
79
- font-weight: bold;
80
- }
81
-
82
- .fs-offer
83
- {
84
- font-size: 0.9em;
85
- }
86
-
87
- .fs-description
88
- {
89
- background-color: #f9f9f9;
90
- padding: 10px 15px 100px 15px;
91
- border-top: 1px solid #eee;
92
- margin: 0 0 10px 0;
93
- color: #777;
94
- }
95
-
96
- .fs-tag
97
- {
98
- position: absolute;
99
- top: 10px;
100
- right: 0px;
101
- background: greenyellow;
102
- display: block;
103
- padding: 2px 10px;
104
- @include box-shadow(1px 1px 1px rgba(0,0,0,0.3));
105
- text-transform: uppercase;
106
- font-size: 0.9em;
107
- font-weight: bold;
108
- }
109
-
110
- .fs-cta
111
- {
112
- .button
113
- {
114
- position: absolute;
115
- top: 112px;
116
- right: 10px;
117
- }
118
- }
119
- }
120
-
121
- @media screen and (min-width: 960px) {
122
- &:hover
123
- {
124
- .fs-overlay
125
- {
126
- border: 2px solid $fms-link-color;
127
- margin-left: -1px;
128
- margin-top: -1px;
129
- }
130
-
131
- .fs-inner
132
- {
133
- ul
134
- {
135
- top: -100px;
136
- }
137
-
138
- .fs-card-banner
139
- {
140
- // background-position: 50% -100px;
141
- }
142
-
143
- .fs-title,
144
- .fs-offer
145
- {
146
- color: $fms-link-color;
147
- }
148
- }
149
- }
150
- }
151
- }
152
- }
153
- }
154
-
155
- #TB_window
156
- {
157
- &, iframe
158
- {
159
- width: 772px !important;
160
- }
161
- }
162
-
163
- #plugin-information
164
- {
165
- #section-description
166
- {
167
- h2, h3, p, b, i, blockquote, li, ul, ol
168
- {
169
- clear: none;
170
- }
171
-
172
- .fs-selling-points
173
- {
174
- padding-bottom: 10px;
175
- border-bottom: 1px solid #ddd;
176
-
177
- ul
178
- {
179
- margin: 0;
180
-
181
- li
182
- {
183
- padding: 0;
184
- list-style: none outside none;
185
-
186
- i.dashicons
187
- {
188
- color: $fs-logo-green-color;
189
- font-size: 3em;
190
- vertical-align: middle;
191
- line-height: 30px;
192
- float: left;
193
- margin: 0 0 0 -15px;
194
- }
195
-
196
- h3
197
- {
198
- margin: 1em 30px !important;
199
- }
200
- }
201
- }
202
- }
203
-
204
- .fs-screenshots
205
- {
206
- @include clearfix();
207
- ul
208
- {
209
- list-style: none;
210
- margin: 0;
211
-
212
- li
213
- {
214
- width: 225px;
215
- height: 225px;
216
- float: left;
217
- margin-bottom: 20px;
218
- @include box-sizing(content-box);
219
-
220
- a
221
- {
222
- display: block;
223
- width: 100%;
224
- height: 100%;
225
- border: 1px solid;
226
- @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
227
- background-size: cover;
228
- }
229
-
230
- &.odd
231
- {
232
- margin-right: 20px;
233
- }
234
- }
235
- }
236
- }
237
- }
238
-
239
- .plugin-information-pricing
240
- {
241
- $pricing_color: #FFFEEC;
242
- $borders_color: #DDD;
243
- margin: -16px;
244
- // padding: 20px;
245
- border-bottom: 1px solid $borders_color;
246
-
247
- .fs-plan
248
- {
249
-
250
- h3
251
- {
252
- margin-top: 0;
253
- padding: 20px;
254
- font-size: 16px;
255
- }
256
-
257
- .nav-tab-wrapper
258
- {
259
- border-bottom: 1px solid $borders_color;
260
-
261
- .nav-tab
262
- {
263
- cursor: pointer;
264
- position: relative;
265
- padding: 0 10px;
266
- font-size: 0.9em;
267
-
268
- label
269
- {
270
- text-transform: uppercase;
271
- color: green;
272
- background: greenyellow;
273
- position: absolute;
274
- left: -1px;
275
- right: -1px;
276
- bottom: 100%;
277
- border: 1px solid darkgreen;
278
- padding: 2px;
279
- text-align: center;
280
- font-size: 0.9em;
281
- line-height: 1em;
282
- }
283
-
284
- &.nav-tab-active
285
- {
286
- cursor: default;
287
- background: $pricing_color;
288
- border-bottom-color: $pricing_color;
289
- }
290
- }
291
- }
292
-
293
- &.fs-single-cycle
294
- {
295
- h3
296
- {
297
- background: $pricing_color;
298
- margin: 0;
299
- padding-bottom: 0;
300
- color: #0073aa;
301
- }
302
-
303
- .nav-tab-wrapper,
304
- .fs-billing-frequency
305
- {
306
- display: none;
307
- }
308
- }
309
-
310
- .fs-pricing-body
311
- {
312
- background: $pricing_color;
313
- padding: 20px;
314
- }
315
-
316
- .button
317
- {
318
- width: 100%;
319
- text-align: center;
320
- font-weight: bold;
321
- text-transform: uppercase;
322
- font-size: 1.1em;
323
- }
324
-
325
- label
326
- {
327
- white-space: nowrap;
328
- }
329
-
330
- var {
331
- font-style: normal;
332
- }
333
-
334
- .fs-billing-frequency,
335
- .fs-annual-discount
336
- {
337
- text-align: center;
338
- display: block;
339
- font-weight: bold;
340
- margin-bottom: 10px;
341
- text-transform: uppercase;
342
- background: #F3F3F3;
343
- padding: 2px;
344
- border: 1px solid #ccc;
345
- }
346
-
347
- .fs-annual-discount
348
- {
349
- text-transform: none;
350
- color: green;
351
- background: greenyellow;
352
- }
353
-
354
- ul.fs-trial-terms
355
- {
356
- font-size: 0.9em;
357
-
358
- i
359
- {
360
- float: left;
361
- margin: 0 0 0 -15px;
362
- }
363
-
364
- li
365
- {
366
- margin: 10px 0 0 0;
367
- }
368
- }
369
- }
370
- }
371
-
372
- #section-features
373
- {
374
- .fs-features
375
- {
376
- margin: -20px -26px;
377
- }
378
-
379
- table
380
- {
381
- width: 100%;
382
- border-spacing: 0;
383
- border-collapse: separate;
384
-
385
- thead
386
- {
387
- th
388
- {
389
- padding: 10px 0;
390
- }
391
-
392
- .fs-price
393
- {
394
- color: $fs-logo-green-color;
395
- font-weight: normal;
396
- display: block;
397
- text-align: center;
398
- }
399
- }
400
-
401
- tbody
402
- {
403
- td
404
- {
405
- border-top: 1px solid #ccc;
406
- padding: 10px 0;
407
- text-align: center;
408
- width: 100px;
409
- color: $fs-logo-green-color;
410
-
411
- &:first-child
412
- {
413
- text-align: left;
414
- width: auto;
415
- color: inherit;
416
- padding-left: 26px;
417
- }
418
- }
419
- tr.fs-odd
420
- {
421
- td
422
- {
423
- background: #fefefe;
424
- }
425
- }
426
- }
427
- }
428
-
429
- .dashicons-yes
430
- {
431
- width: 30px;
432
- height: 30px;
433
- font-size: 30px;
434
- }
435
- }
436
- }
437
-
438
- @media screen and (max-width: 961px) {
439
- #fs_addons
440
- {
441
- .fs-cards-list
442
- {
443
- .fs-card
444
- {
445
- height: 265px;
446
- }
447
- }
448
- }
449
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/affiliation.scss DELETED
@@ -1,97 +0,0 @@
1
- @import "../start";
2
-
3
- #fs_affiliation_content_wrapper {
4
- #messages {
5
- margin-top: 25px;
6
- }
7
-
8
- h3 {
9
- font-size: 24px;
10
- padding: 0;
11
- margin-left: 0;
12
- }
13
-
14
- ul {
15
- li {
16
- @include box-sizing(border-box);
17
- list-style-type: none;
18
-
19
- &:before {
20
- content: '✓';
21
- margin-right: 10px;
22
- font-weight: bold;
23
- }
24
- }
25
- }
26
-
27
- p:not(.description), li, label {
28
- font-size: 16px !important;
29
- line-height: 26px !important;
30
- }
31
-
32
- .button {
33
- margin-top: 20px;
34
- margin-bottom: 7px;
35
- line-height: 35px;
36
- height: 40px;
37
- font-size: 16px;
38
-
39
- &#cancel_button {
40
- margin-right: 5px;
41
- }
42
- }
43
-
44
- form {
45
- .input-container {
46
- .input-label {
47
- font-weight: bold;
48
- display: block;
49
- width: 100%;
50
- }
51
-
52
- &.input-container-text {
53
- label, input, textarea {
54
- display: block;
55
- }
56
- }
57
-
58
- margin-bottom: 15px;
59
-
60
- #add_domain, .remove-domain {
61
- text-decoration: none;
62
- display: inline-block;
63
- margin-top: 3px;
64
-
65
- &:focus {
66
- box-shadow: none;
67
- }
68
-
69
- &.disabled {
70
- color: #aaa;
71
- cursor: default;
72
- }
73
- }
74
- }
75
-
76
- #extra_domains_container {
77
- .description {
78
- margin-top: 0;
79
- position: relative;
80
- top: -4px;
81
- }
82
-
83
- .extra-domain-input-container {
84
- margin-bottom: 15px;
85
-
86
- .domain {
87
- display: inline-block;
88
- margin-right: 5px;
89
-
90
- &:last-of-type {
91
- margin-bottom: 0;
92
- }
93
- }
94
- }
95
- }
96
- }
97
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/checkout.scss DELETED
@@ -1,5 +0,0 @@
1
- @media screen and (max-width: 782px) {
2
- #wpbody-content {
3
- padding-bottom: 0 !important;
4
- }
5
- }
 
 
 
 
 
freemius/assets/scss/admin/common.scss DELETED
@@ -1,220 +0,0 @@
1
- @import "../start";
2
- @import "themes";
3
-
4
- #fs_frame
5
- {
6
- line-height: 0;
7
- font-size: 0;
8
- }
9
-
10
- .fs-full-size-wrapper
11
- {
12
- margin: 40px 0 -65px -20px;
13
-
14
- @media (max-width: 600px) {
15
- margin: 0 0 -65px -10px;
16
- }
17
- }
18
-
19
- .fs-notice
20
- {
21
- position: relative;
22
-
23
- &.fs-has-title
24
- {
25
- margin-bottom: 30px !important;
26
- }
27
-
28
- &.success
29
- {
30
- color: green;
31
- // font-weight: normal;
32
- }
33
-
34
- &.promotion
35
- {
36
- border-color: $fs-notice-promotion-border-color !important;
37
- background-color: $fs-notice-promotion-bkg !important;
38
- }
39
-
40
- .fs-notice-body
41
- {
42
- margin: .5em 0;
43
- padding: 2px;
44
- }
45
-
46
- .fs-close
47
- {
48
- // position: absolute;
49
- // top: 2px;
50
- // bottom: 2px;
51
- // right: 2px;
52
- // min-width: 100px;
53
- // text-align: center;
54
- // padding-right: 2px;
55
- cursor: pointer;
56
- color: #aaa;
57
- float: right;
58
-
59
- &:hover
60
- {
61
- color: #666;
62
- // background: #A9A9A9;
63
- }
64
-
65
- > *
66
- {
67
- margin-top: 7px;
68
- display: inline-block;
69
- }
70
- }
71
-
72
- label.fs-plugin-title
73
- {
74
- background: rgba(0, 0, 0, 0.3);
75
- color: #fff;
76
- padding: 2px 10px;
77
- position: absolute;
78
- top: 100%;
79
- bottom: auto;
80
- right: auto;
81
- @include border-radius(0 0 3px 3px);
82
- left: 10px;
83
- font-size: 12px;
84
- font-weight: bold;
85
- cursor: auto;
86
- }
87
- }
88
-
89
- div.fs-notice
90
- {
91
- &.updated,
92
- &.success,
93
- &.promotion
94
- {
95
- display: block !important;
96
- }
97
- }
98
-
99
- .rtl .fs-notice
100
- {
101
- .fs-close
102
- {
103
- // left: 2px;
104
- // right: auto;
105
- // padding-right: 0;
106
- // padding-left: 2px;
107
- float: left;
108
- }
109
- }
110
-
111
- .fs-secure-notice
112
- {
113
- position: fixed;
114
- top: 32px;
115
- left: 160px;
116
- right: 0;
117
- background: rgb(235, 253, 235);
118
- padding: 10px 20px;
119
- color: green;
120
- z-index: 9999;
121
- @include box-shadow(0 2px 2px rgba(6, 113, 6, 0.3));
122
- @include opacity(0.95);
123
-
124
- &:hover
125
- {
126
- @include opacity(1);
127
- }
128
-
129
- a.fs-security-proof
130
- {
131
- color: green;
132
- text-decoration: none;
133
- }
134
- }
135
-
136
- @media screen and (max-width: 960px) {
137
- .fs-secure-notice
138
- {
139
- left: 36px;
140
- }
141
- }
142
-
143
- @media screen and (max-width: 600px) {
144
- .fs-secure-notice
145
- {
146
- display: none;
147
- }
148
- }
149
-
150
- @media screen and (max-width: 500px) {
151
- #fs_promo_tab
152
- {
153
- display: none;
154
- }
155
- }
156
-
157
- @media screen and (max-width: 782px) {
158
- .fs-secure-notice
159
- {
160
- left: 0;
161
- top: 46px;
162
- text-align: center;
163
- }
164
- }
165
-
166
- span.fs-submenu-item.fs-sub:before
167
- {
168
- // Add small arrow.
169
- content: '\21B3';
170
- padding: 0 5px;
171
- }
172
-
173
- .rtl
174
- {
175
- span.fs-submenu-item.fs-sub:before
176
- {
177
- // Add small RTL arrow.
178
- content: '\21B2';
179
- }
180
- }
181
-
182
- .fs-submenu-item
183
- {
184
- &.pricing
185
- {
186
- &.upgrade-mode
187
- {
188
- color: greenyellow;
189
- }
190
-
191
- &.trial-mode
192
- {
193
- color: #83e2ff;
194
- }
195
- }
196
- }
197
-
198
- #adminmenu .update-plugins.fs-trial
199
- {
200
- background-color: #00b9eb;
201
- }
202
- .fs-ajax-spinner
203
- {
204
- border: 0;
205
- width: 20px;
206
- height: 20px;
207
- margin-right: 5px;
208
- vertical-align: sub;
209
- display: inline-block;
210
- background: url('/wp-admin/images/wpspin_light-2x.gif');
211
- background-size: contain;
212
- }
213
-
214
- .wrap.fs-section {
215
- h2 {
216
- text-align: left;
217
- }
218
- }
219
-
220
- @import "plugin-upgrade-notice";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/connect.scss DELETED
@@ -1,548 +0,0 @@
1
- @import "../start";
2
-
3
- $form_width: 480px;
4
-
5
- #fs_connect
6
- {
7
- width: $form_width;
8
- @include box-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
9
- margin: 20px 0;
10
-
11
- @media screen and (max-width: ($form_width - 1)) {
12
- @include box-shadow(none);
13
- width: auto;
14
- margin: 0 0 0 -10px;
15
- }
16
-
17
- .fs-content
18
- {
19
- background: #fff;
20
- padding: 15px 20px;
21
-
22
- .fs-error {
23
- background: snow;
24
- color: $fs-logo-magenta-color;
25
- border: 1px solid $fs-logo-magenta-color;
26
- @include box-shadow(0 1px 1px 0 rgba(0,0,0,.1));
27
- text-align: center;
28
- padding: 5px;
29
- margin-bottom: 10px;
30
- }
31
-
32
- p
33
- {
34
- margin: 0;
35
- padding: 0;
36
- font-size: 1.2em;
37
- }
38
- }
39
-
40
- .fs-license-key-container {
41
- position: relative;
42
- width: 280px;
43
- margin: 10px auto 0 auto;
44
-
45
- input {
46
- width: 100%;
47
- }
48
-
49
- .dashicons {
50
- position: absolute;
51
- top: 5px;
52
- right: 5px;
53
- }
54
- }
55
-
56
- &.require-license-key {
57
- #sites_list_container {
58
- td {
59
- cursor: pointer;
60
- }
61
- }
62
- }
63
-
64
- #delegate_to_site_admins {
65
- margin-right: 15px;
66
- float: right;
67
- height: 26px;
68
- vertical-align: middle;
69
- line-height: 37px;
70
- font-weight: bold;
71
- border-bottom: 1px dashed;
72
- text-decoration: none;
73
-
74
- &.rtl {
75
- margin-left: 15px;
76
- margin-right: 0;
77
- }
78
- }
79
-
80
- .fs-actions
81
- {
82
- padding: 10px 20px;
83
- background: #C0C7CA;
84
-
85
- .button
86
- {
87
- padding: 0 10px 1px;
88
- line-height: 35px;
89
- height: 37px;
90
- font-size: 16px;
91
- margin-bottom: 0;
92
-
93
- .dashicons
94
- {
95
- font-size: 37px;
96
- margin-left: -8px;
97
- margin-right: 12px;
98
- }
99
-
100
- &.button-primary
101
- {
102
- padding-right: 15px;
103
- padding-left: 15px;
104
-
105
- &:after
106
- {
107
- content: ' \279C';
108
- }
109
-
110
- &.fs-loading
111
- {
112
- &:after
113
- {
114
- content: '';
115
- }
116
- }
117
- }
118
-
119
- &.button-secondary
120
- {
121
- float: right;
122
- }
123
- }
124
-
125
- // .fs-skip
126
- // {
127
- // line-height: 38px;
128
- // vertical-align: middle;
129
- // text-decoration: none;
130
- // margin-left: 10px;
131
- // }
132
- }
133
-
134
- &.fs-anonymous-disabled
135
- {
136
- .fs-actions
137
- {
138
- .button.button-primary
139
- {
140
- width: 100%;
141
- }
142
- }
143
- }
144
-
145
- .fs-permissions
146
- {
147
- padding: 10px 20px;
148
- background: #FEFEFE;
149
- // background: #F1F1F1;
150
- @include transition(background 0.5s ease);
151
-
152
- .fs-license-sync-disclaimer {
153
- text-align: center;
154
- margin-top: 0;
155
- }
156
-
157
- .fs-trigger
158
- {
159
- font-size: 0.9em;
160
- text-decoration: none;
161
- text-align: center;
162
- display: block;
163
- }
164
-
165
- ul
166
- {
167
- height: 0;
168
- overflow: hidden;
169
- margin: 0;
170
-
171
- li
172
- {
173
- margin-bottom: 12px;
174
-
175
- &:last-child
176
- {
177
- margin-bottom: 0;
178
- }
179
-
180
- i.dashicons
181
- {
182
- float: left;
183
- font-size: 40px;
184
- width: 40px;
185
- height: 40px;
186
- }
187
-
188
- div
189
- {
190
- margin-left: 55px;
191
-
192
- span
193
- {
194
- font-weight: bold;
195
- text-transform: uppercase;
196
- color: #23282d;
197
- }
198
-
199
- p
200
- {
201
- margin: 2px 0 0 0;
202
- }
203
- }
204
- }
205
- }
206
-
207
- &.fs-open
208
- {
209
- background: #fff;
210
-
211
- ul
212
- {
213
- height: auto;
214
- margin: 20px 20px 10px 20px;
215
- }
216
- }
217
-
218
- @media screen and (max-width: ($form_width - 1)) {
219
- background: #fff;
220
-
221
- .fs-trigger
222
- {
223
- display: none;
224
- }
225
-
226
- ul
227
- {
228
- height: auto;
229
- margin: 20px;
230
- }
231
- }
232
- }
233
-
234
- .fs-freemium-licensing {
235
- padding: 8px;
236
- // background: #0085BA;
237
- background: #777;
238
- color: #fff;
239
-
240
- p {
241
- text-align: center;
242
- display: block;
243
- margin: 0;
244
- padding: 0;
245
- }
246
-
247
- a {
248
- color: #C2EEFF;
249
- text-decoration: underline;
250
- }
251
- }
252
-
253
- $icon_size: 80px;
254
- $wp_logo_padding: $icon_size / 10;
255
- $icons_top: 10px;
256
-
257
- .fs-visual
258
- {
259
- padding: 12px;
260
- line-height: 0;
261
- background: #fafafa;
262
- height: $icon_size;
263
- position: relative;
264
-
265
- .fs-site-icon
266
- {
267
- position: absolute;
268
- left: 20px;
269
- top: $icons_top;
270
- }
271
-
272
- .fs-connect-logo
273
- {
274
- position: absolute;
275
- right: 20px;
276
- top: $icons_top;
277
- }
278
-
279
- .fs-plugin-icon
280
- {
281
- position: absolute;
282
- top: $icons_top;
283
- left: 50%;
284
- margin-left: - ($icon_size / 2);
285
- }
286
-
287
- .fs-plugin-icon,
288
- .fs-site-icon,
289
- img,
290
- object
291
- {
292
- width: $icon_size;
293
- height: $icon_size;
294
- }
295
-
296
- .dashicons-wordpress
297
- {
298
- font-size: $icon_size - ($wp_logo_padding * 2);
299
- background: $wordpress_color;
300
- color: #fff;
301
- width: $icon_size - ($wp_logo_padding * 2);
302
- height: $icon_size - ($wp_logo_padding * 2);
303
- padding: $wp_logo_padding;
304
- }
305
-
306
- .dashicons-plus
307
- {
308
- position: absolute;
309
- top: 50%;
310
- font-size: 30px;
311
- margin-top: -10px;
312
- color: #bbb;
313
-
314
- &.fs-first
315
- {
316
- left: 28%;
317
- }
318
- &.fs-second
319
- {
320
- left: 65%;
321
- }
322
- }
323
-
324
- .fs-plugin-icon,
325
- .fs-connect-logo,
326
- .fs-site-icon
327
- {
328
- border: 1px solid #ccc;
329
- padding: 1px;
330
- background: #fff;
331
- }
332
- }
333
-
334
- .fs-terms
335
- {
336
- text-align: center;
337
- font-size: 0.85em;
338
- padding: 5px;
339
- background: rgba(0, 0, 0, 0.05);
340
-
341
- &, a
342
- {
343
- color: #999;
344
- }
345
-
346
- a
347
- {
348
- text-decoration: none;
349
- }
350
- }
351
- }
352
-
353
- @import "multisite-options";
354
- @import "tooltip";
355
- @import "gdpr-consent";
356
-
357
- .rtl
358
- {
359
- #fs_connect
360
- {
361
- .fs-actions
362
- {
363
- padding: 10px 20px;
364
- background: #C0C7CA;
365
-
366
- .button
367
- {
368
- .dashicons
369
- {
370
- font-size: 37px;
371
- margin-left: -8px;
372
- margin-right: 12px;
373
- }
374
-
375
- &.button-primary
376
- {
377
- &:after
378
- {
379
- content: ' \000bb';
380
- }
381
-
382
- &.fs-loading
383
- {
384
- &:after
385
- {
386
- content: '';
387
- }
388
- }
389
- }
390
-
391
- &.button-secondary
392
- {
393
- float: left;
394
- }
395
- }
396
- }
397
-
398
- .fs-permissions
399
- {
400
- ul
401
- {
402
- li
403
- {
404
- div
405
- {
406
- margin-right: 55px;
407
- margin-left: 0;
408
- }
409
-
410
- i.dashicons
411
- {
412
- float: right;
413
- }
414
-
415
- }
416
- }
417
- }
418
-
419
- .fs-visual
420
- {
421
- .fs-site-icon
422
- {
423
- right: 20px;
424
- left: auto;
425
- }
426
-
427
- .fs-connect-logo
428
- {
429
- right: auto;
430
- left: 20px;
431
- }
432
- }
433
- }
434
- }
435
-
436
- #fs_theme_connect_wrapper {
437
- position: fixed;
438
- top: 0;
439
- height: 100%;
440
- width: 100%;
441
- z-index: 99990;
442
- background: rgba(0, 0, 0, 0.75);
443
- text-align: center;
444
- overflow-y: auto;
445
-
446
- &:before {
447
- content: "";
448
- display: inline-block;
449
- vertical-align: middle;
450
- height: 100%;
451
- }
452
-
453
- > button.close {
454
- color: white;
455
- cursor: pointer;
456
- height: 40px;
457
- width: 40px;
458
- position: absolute;
459
- right: 0;
460
- border: 0;
461
- background-color: transparent;
462
- top: 32px;
463
- }
464
-
465
- #fs_connect {
466
- top: 0;
467
- text-align: left;
468
- display: inline-block;
469
- vertical-align: middle;
470
- margin-top: 52px;
471
- margin-bottom: 20px;
472
-
473
- .fs-terms
474
- {
475
- background: rgba(140, 140, 140, 0.64);
476
-
477
- &, a
478
- {
479
- color: #c5c5c5;
480
- }
481
- }
482
- }
483
- }
484
-
485
- .wp-pointer-content
486
- {
487
- #fs_connect
488
- {
489
- margin: 0;
490
- @include box-shadow(none);
491
- }
492
- }
493
-
494
- .fs-opt-in-pointer
495
- {
496
- .wp-pointer-content
497
- {
498
- padding: 0;
499
- }
500
-
501
- &.wp-pointer-top
502
- {
503
- .wp-pointer-arrow
504
- {
505
- border-bottom-color: #dfdfdf;
506
- }
507
- .wp-pointer-arrow-inner
508
- {
509
- border-bottom-color: #fafafa;
510
- }
511
- }
512
-
513
- &.wp-pointer-bottom
514
- {
515
- .wp-pointer-arrow
516
- {
517
- border-top-color: #dfdfdf;
518
- }
519
- .wp-pointer-arrow-inner
520
- {
521
- border-top-color: #fafafa;
522
- }
523
- }
524
-
525
- &.wp-pointer-left
526
- {
527
- .wp-pointer-arrow
528
- {
529
- border-right-color: #dfdfdf;
530
- }
531
- .wp-pointer-arrow-inner
532
- {
533
- border-right-color: #fafafa;
534
- }
535
- }
536
-
537
- &.wp-pointer-right
538
- {
539
- .wp-pointer-arrow
540
- {
541
- border-left-color: #dfdfdf;
542
- }
543
- .wp-pointer-arrow-inner
544
- {
545
- border-left-color: #fafafa;
546
- }
547
- }
548
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/debug.scss DELETED
@@ -1,135 +0,0 @@
1
- @import "../start";
2
-
3
- .switch
4
- {
5
- position: relative;
6
- display: inline-block;
7
- font-size: 1.6em;
8
- font-weight: bold;
9
- color: #ccc;
10
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
11
- height: 18px;
12
- padding: 6px 6px 5px 6px;
13
- border: 1px solid #ccc;
14
- border: 1px solid rgba(0, 0, 0, 0.2);
15
- border-radius: 4px;
16
- background: #ececec;
17
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
18
- cursor: pointer;
19
-
20
- span
21
- {
22
- display: inline-block; width: 35px;
23
- text-transform: uppercase;
24
-
25
- &.on
26
- {
27
- color: $button-primary-bkg;
28
- }
29
- }
30
-
31
- .toggle
32
- {
33
- position: absolute;
34
- top: 1px;
35
- width: 37px;
36
- height: 25px;
37
- border: 1px solid #ccc;
38
- border: 1px solid rgba(0, 0, 0, 0.3);
39
- border-radius: 4px;
40
- background: #fff;
41
- background: -moz-linear-gradient(top, #ececec 0%, #fff 100%);
42
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ececec), color-stop(100%, #fff));
43
- background: -webkit-linear-gradient(top, #ececec 0%, #fff 100%);
44
- background: -o-linear-gradient(top, #ececec 0%, #fff 100%);
45
- background: -ms-linear-gradient(top, #ececec 0%, #fff 100%);
46
- background: linear-gradient(top, #ececec 0%, #fff 100%);
47
- box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
48
- z-index: 999;
49
- @include transition(all 0.15s ease-in-out);
50
- }
51
-
52
- &.on .toggle
53
- {
54
- left: 2%;
55
- }
56
- &.off .toggle
57
- {
58
- left: 54%;
59
- }
60
-
61
- /* Round switch */
62
- &.round
63
- {
64
- padding: 0px 20px;
65
- border-radius: 40px;
66
-
67
- .toggle
68
- {
69
- border-radius: 40px;
70
- width: 14px;
71
- height: 14px;
72
- }
73
-
74
- &.on .toggle
75
- {
76
- left: 3%;
77
- background: $button-primary-bkg;
78
- }
79
- &.off .toggle
80
- {
81
- left: 58%;
82
- }
83
- }
84
- }
85
-
86
- .switch-label
87
- {
88
- font-size: 20px;
89
- line-height: 31px;
90
- margin: 0 5px;
91
- }
92
-
93
- #fs_log_book {
94
- table {
95
- font-family: Consolas,Monaco,monospace;
96
- font-size: 12px;
97
-
98
- th {
99
- color: #ccc;
100
- }
101
-
102
- tr {
103
- background: #232525;
104
-
105
- &.alternate {
106
- background: #2b2b2b;
107
- }
108
-
109
- td {
110
- &.fs-col--logger {
111
- color: #5a7435;
112
- }
113
- &.fs-col--type {
114
- color: #ffc861;
115
- }
116
- &.fs-col--function {
117
- color: #a7b7b1;
118
- font-weight: bold;
119
- }
120
- &.fs-col--message {
121
- &, a
122
- {
123
- color: #9a73ac !important;
124
- }
125
- }
126
- &.fs-col--file {
127
- color: #d07922;
128
- }
129
- &.fs-col--timestamp {
130
- color: #6596be;
131
- }
132
- }
133
- }
134
- }
135
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/dialog-boxes.scss DELETED
@@ -1,10 +0,0 @@
1
- @import "../start";
2
- @import "modal-common";
3
- @import "deactivation-feedback";
4
- @import "subscription-cancellation";
5
- @import "license-activation";
6
- @import "multisite-options";
7
- @import "license-key-resend";
8
- @import "ajax-loader";
9
- @import "auto-install";
10
- @import "buttons";
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/gdpr-optin-notice.scss DELETED
@@ -1,17 +0,0 @@
1
- .fs-notice[data-id^="gdpr_optin_actions"]
2
- {
3
- .underlined {
4
- text-decoration: underline;
5
- }
6
-
7
- ul {
8
- .button, .action-description {
9
- vertical-align: middle;
10
- }
11
-
12
- .action-description {
13
- display: inline-block;
14
- margin-left: 3px;
15
- }
16
- }
17
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/admin/index.php DELETED
@@ -1,3 +0,0 @@
1
- <?php
2
- // Silence is golden.
3
- // Hide file structure from users on unprotected servers.
 
 
 
freemius/assets/scss/customizer.scss DELETED
@@ -1,125 +0,0 @@
1
- @import "start";
2
-
3
- #fs_customizer_upsell {
4
- .fs-customizer-plan {
5
- padding: 10px 20px 20px 20px;
6
- border-radius: 3px;
7
- background: #fff;
8
-
9
- h2 {
10
- position: relative;
11
- margin: 0;
12
- line-height: 2em;
13
- text-transform: uppercase;
14
-
15
- .button-link {
16
- top: -2px;
17
- }
18
- }
19
- }
20
-
21
- .fs-feature {
22
- position: relative;
23
- }
24
-
25
- .dashicons-yes {
26
- color: #0085ba;
27
- font-size: 2em;
28
- vertical-align: bottom;
29
- margin-left: -7px;
30
- margin-right: 10px;
31
-
32
- .rtl & {
33
- margin-left: 10px;
34
- margin-right: -7px;
35
- }
36
- }
37
-
38
- .dashicons-editor-help
39
- {
40
- color: #bbb;
41
- cursor: help;
42
-
43
- $tooltip-color: #000;
44
-
45
- .fs-feature-desc {
46
- opacity: 0;
47
- visibility: hidden;
48
- @include transition(opacity 0.3s ease-in-out);
49
-
50
- position: absolute;
51
- background: $tooltip-color;
52
- color: #fff;
53
- font-family: 'arial', serif;
54
- font-size: 12px;
55
- padding: 10px;
56
- z-index: 999999;
57
- bottom: 100%;
58
- margin-bottom: 5px;
59
- left: 0;
60
- right: 0;
61
- @include border-radius(5px);
62
- @include box-shadow(1px 1px 1px rgba(0,0,0,0.2));
63
- line-height: 1.3em;
64
- font-weight: bold;
65
- text-align: left;
66
-
67
- .rtl &
68
- {
69
- text-align: right;
70
- }
71
-
72
- &::after {
73
- content: ' ';
74
- display: block;
75
- width: 0;
76
- height: 0;
77
- border-style: solid;
78
- border-width: 5px 5px 0 5px;
79
- border-color: $tooltip-color transparent transparent transparent;
80
- position: absolute;
81
- top: 100%;
82
- left: 21px;
83
-
84
- .rtl & {
85
- right: 21px;
86
- left: auto;
87
- }
88
- }
89
- }
90
-
91
- &:hover {
92
- .fs-feature-desc {
93
- visibility: visible;
94
- opacity: 1;
95
- }
96
- }
97
- }
98
-
99
- .button-primary {
100
- display: block;
101
- text-align: center;
102
- margin-top: 10px;
103
- }
104
- }
105
-
106
- #fs_customizer_support
107
- {
108
- display: block !important;
109
-
110
- .button {
111
- float: right;
112
- }
113
-
114
- .button-group {
115
- width: 100%;
116
- display: block;
117
- margin-top: 10px;
118
-
119
- .button {
120
- float: none;
121
- width: 50%;
122
- text-align: center;
123
- }
124
- }
125
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/assets/scss/index.php DELETED
@@ -1,3 +0,0 @@
1
- <?php
2
- // Silence is golden.
3
- // Hide file structure from users on unprotected servers.
 
 
 
freemius/composer.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "name": "freemius/wordpress-sdk",
3
- "description": "Freemius WordPress SDK",
4
- "keywords": ["freemius", "wordpress", "plugin", "sdk"],
5
- "homepage": "https://freemius.com",
6
- "license": "GPL-3.0-only",
7
- "require": {
8
- "php": ">=5.2"
9
- }
10
- }
 
 
 
 
 
 
 
 
 
 
freemius/gulpfile.js DELETED
@@ -1,167 +0,0 @@
1
- var gulp = require('gulp');
2
- var path = require('path');
3
- var filesystem = require('fs');
4
- var wpPot = require('gulp-wp-pot');
5
- var gettext = require('gulp-gettext');
6
- var sort = require('gulp-sort');
7
- var pofill = require('gulp-pofill');
8
- var rename = require('gulp-rename');
9
- var clean = require('gulp-clean');
10
-
11
- var languagesFolder = './languages/';
12
-
13
- var options = require('./transifex-config.json');
14
-
15
- function getFolders(dir) {
16
- return filesystem.readdirSync(dir)
17
- .filter(function (file) {
18
- return filesystem.statSync(path.join(dir, file)).isDirectory();
19
- });
20
- }
21
-
22
- var transifex = require('gulp-transifex').createClient(options);
23
-
24
- // Create POT out of i18n.php.
25
- gulp.task('prepare-source', function () {
26
- gulp.src('**/*.php')
27
- .pipe(sort())
28
- .pipe(wpPot({
29
- destFile : 'freemius.pot',
30
- package : 'freemius',
31
- bugReport : 'https://github.com/Freemius/wordpress-sdk/issues',
32
- lastTranslator : 'Vova Feldman <vova@freemius.com>',
33
- team : 'Freemius Team <admin@freemius.com>',
34
- /*gettextMethods: {
35
- instances: ['this', '_fs'],
36
- methods: [
37
- 'get_text_inline'
38
- ]
39
- },*/
40
- gettextFunctions: [
41
- {name: 'get_text_inline'},
42
-
43
- {name: 'fs_text_inline'},
44
- {name: 'fs_echo_inline'},
45
- {name: 'fs_esc_js_inline'},
46
- {name: 'fs_esc_attr_inline'},
47
- {name: 'fs_esc_attr_echo_inline'},
48
- {name: 'fs_esc_html_inline'},
49
- {name: 'fs_esc_html_echo_inline'},
50
-
51
- {name: 'get_text_x_inline', context: 2},
52
- {name: 'fs_text_x_inline', context: 2},
53
- {name: 'fs_echo_x_inline', context: 2},
54
- {name: 'fs_esc_attr_x_inline', context: 2},
55
- {name: 'fs_esc_js_x_inline', context: 2},
56
- {name: 'fs_esc_js_echo_x_inline', context: 2},
57
- {name: 'fs_esc_html_x_inline', context: 2},
58
- {name: 'fs_esc_html_echo_x_inline', context: 2}
59
- /*,
60
-
61
-
62
- {name: '_fs_text'},
63
- {name: '_fs_x', context: 2},
64
- {name: '_fs_echo'},
65
- {name: '_fs_esc_attr'},
66
- {name: '_fs_esc_attr_echo'},
67
- {name: '_fs_esc_html'},
68
- {name: '_fs_esc_html_echo'},
69
- {name: '_fs_ex', context: 2},
70
- {name: '_fs_esc_attr_x', context: 2},
71
- {name: '_fs_esc_html_x', context: 2},
72
-
73
- {name: '_fs_n', plural: 2},
74
- {name: '_fs_n_noop', plural: 2},
75
- {name: '_fs_nx', plural: 2, context: 4},
76
- {name: '_fs_nx_noop', plural: 2, context: 3}*/
77
- ]
78
- }))
79
- .pipe(gulp.dest(languagesFolder + 'freemius.pot'));
80
-
81
- // Create English PO out of the POT.
82
- return gulp.src(languagesFolder + 'freemius.pot')
83
- .pipe(pofill({
84
- items: function (item) {
85
- // If msgstr is empty, use identity translation
86
- if (!item.msgstr.length) {
87
- item.msgstr = [''];
88
- }
89
- if (!item.msgstr[0]) {
90
- item.msgstr[0] = item.msgid;
91
- }
92
- return item;
93
- }
94
- }))
95
- .pipe(rename('freemius-en.po'))
96
- .pipe(gulp.dest(languagesFolder));
97
- });
98
-
99
- // Push updated po resource to transifex.
100
- gulp.task('update-transifex', ['prepare-source'], function () {
101
- return gulp.src(languagesFolder + 'freemius-en.po')
102
- .pipe(transifex.pushResource());
103
- });
104
-
105
- // Download latest *.po translations.
106
- gulp.task('download-translations', ['update-transifex'], function () {
107
- return gulp.src(languagesFolder + 'freemius-en.po')
108
- .pipe(transifex.pullResource());
109
- });
110
-
111
- // Move translations to languages root.
112
- gulp.task('prepare-translations', ['download-translations'], function () {
113
- var folders = getFolders(languagesFolder);
114
-
115
- return folders.map(function (folder) {
116
- return gulp.src(path.join(languagesFolder, folder, 'freemius-en.po'))
117
- .pipe(rename('freemius-' + folder + '.po'))
118
- .pipe(gulp.dest(languagesFolder));
119
- });
120
- });
121
-
122
- // Feel up empty translations with English.
123
- gulp.task('translations-feelup', ['prepare-translations'], function () {
124
- return gulp.src(languagesFolder + '*.po')
125
- .pipe(pofill({
126
- items: function (item) {
127
- // If msgstr is empty, use identity translation
128
- if (0 == item.msgstr.length) {
129
- item.msgstr = [''];
130
- }
131
- if (0 == item.msgstr[0].length) {
132
- // item.msgid[0] = item.msgid;
133
- item.msgstr[0] = item.msgid;
134
- }
135
- return item;
136
- }
137
- }))
138
- .pipe(gulp.dest(languagesFolder));
139
- });
140
-
141
- // Cleanup temporary translation folders.
142
- gulp.task('cleanup', ['prepare-translations'], function () {
143
- var folders = getFolders(languagesFolder);
144
-
145
- return folders.map(function (folder) {
146
- return gulp.src(path.join(languagesFolder, folder), {read: false})
147
- .pipe(clean());
148
- });
149
- });
150
-
151
- // Compile *.po to *.mo binaries for usage.
152
- gulp.task('compile-translations', ['translations-feelup'], function () {
153
- // Compile POs to MOs.
154
- return gulp.src(languagesFolder + '*.po')
155
- .pipe(gettext())
156
- .pipe(gulp.dest(languagesFolder))
157
- });
158
-
159
- gulp.task('default', [], function () {
160
- gulp.run('prepare-source');
161
- gulp.run('update-transifex');
162
- gulp.run('download-translations');
163
- gulp.run('prepare-translations');
164
- gulp.run('translations-feelup');
165
- gulp.run('cleanup');
166
- gulp.run('compile-translations');
167
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
freemius/package.json DELETED
@@ -1,27 +0,0 @@
1
- {
2
- "name": "freemius-wordpress-sdk",
3
- "description": "Monetization, analytics, and marketing automation platform for plugin & theme developers.",
4
- "author": "Freemius, Inc.",
5
- "license": "GPL-3.0",
6
- "homepage": "https://freemius.com",
7
- "version": "1.2.3",
8
- "main": "gulpfile.js",
9
- "dependencies": {},
10
- "scripts": {
11
- "test": "echo \"Error: no test specified\" && exit 1",
12
- "prune": "rimraf .codeclimate.yml .git .github .gitignore .travis.yml gulpfile.js composer.json"
13
- },
14
- "repository": "Freemius/wordpress-sdk.git",
15
- "devDependencies": {
16
- "gulp": "^3.9.1",
17
- "gulp-clean": "^0.3.2",
18
- "gulp-fs": "0.0.2",
19
- "gulp-gettext": "^0.3.0",
20
- "gulp-path": "^3.0.3",
21
- "gulp-pofill": "^1.0.0",
22
- "gulp-rename": "^1.2.2",
23
- "gulp-sort": "^2.0.0",
24
- "gulp-transifex": "^0.1.17",
25
- "gulp-wp-pot": "^1.3.5"
26
- }
27
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/final-tiles-grid-gallery-lite-bkp-de.po ADDED
@@ -0,0 +1,1810 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "PO-Revision-Date: 2019-05-05 13:06+0200\n"
5
+ "Language-Team: \n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=utf-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "X-Generator: Poedit 2.2.1\n"
10
+ "X-Poedit-Basepath: ..\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "POT-Creation-Date: \n"
14
+ "Last-Translator: \n"
15
+ "Language: de\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "X-Poedit-SearchPath-1: admin\n"
18
+ "X-Poedit-SearchPath-2: admin/include\n"
19
+
20
+ # automatic translation
21
+ #: FinalTilesGalleryLite.php:622 scripts/gutenberg_block.js:95
22
+ msgid "Select gallery"
23
+ msgstr "Galerie auswählen"
24
+
25
+ # automatic translation
26
+ #: FinalTilesGalleryLite.php:722
27
+ msgid ""
28
+ "Hey, I noticed you created a photo gallery with Final Tiles - that’s "
29
+ "awesome! Would you mind give it a 5-star rating on WordPress to help us "
30
+ "spread the word and boost our motivation for new featrues?"
31
+ msgstr ""
32
+ "Hey, ich habe bemerkt, dass Sie mit Final Tiles eine Fotogalerie erstellt "
33
+ "haben - das ist großartig! Würde es Ihnen etwas ausmachen, WordPress mit 5 "
34
+ "Sternen zu bewerten, um uns zu verbreiten und die Motivation für neue "
35
+ "Aufgaben zu erhöhen?"
36
+
37
+ # automatic translation
38
+ #: FinalTilesGalleryLite.php:723
39
+ msgid "Diego Imbriani<br>Founder of GreenTreeLabs"
40
+ msgstr "Diego Imbriani <br> Gründer der GreenTreeLabs"
41
+
42
+ # automatic translation
43
+ #: FinalTilesGalleryLite.php:725
44
+ msgid "Ok, you deserve it"
45
+ msgstr "Ok, du hast es verdient"
46
+
47
+ # automatic translation
48
+ #: FinalTilesGalleryLite.php:726
49
+ msgid "Nope, maybe later"
50
+ msgstr "Nein, vielleicht später"
51
+
52
+ # automatic translation
53
+ #: FinalTilesGalleryLite.php:727
54
+ msgid "I already did"
55
+ msgstr "Ich habe es bereits getan"
56
+
57
+ # automatic translation
58
+ #: FinalTilesGalleryLite.php:767
59
+ #, php-format
60
+ msgid ""
61
+ "Please rate <strong>Final Tiles Gallery</strong> <a href=\"%s\" "
62
+ "target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%s\" "
63
+ "target=\"_blank\">WordPress.org</a> to help us spread the word. Thank you "
64
+ "from the Final Tiles Gallery team!"
65
+ msgstr ""
66
+ "Bitte bewerten Sie <strong>Final Tiles Gallery</strong> <a href=\"%s\" "
67
+ "target=\"_blank\">★★★★★</a> auf <a href=\"%s\" "
68
+ "target=\"_blank\">WordPress.org</a> , um uns bei der Verbreitung zu "
69
+ "unterstützen. Vielen Dank vom Team der Final Tiles Gallery!"
70
+
71
+ # automatic translation
72
+ #: FinalTilesGalleryLite.php:1101
73
+ msgid "FinalTiles Gallery >> Add Gallery"
74
+ msgstr "FinalTiles-Galerie >> Galerie hinzufügen"
75
+
76
+ # automatic translation
77
+ #: FinalTilesGalleryLite.php:1101 scripts/gutenberg_block.js:107
78
+ msgid "Add Gallery"
79
+ msgstr "Galerie hinzufügen"
80
+
81
+ # automatic translation
82
+ #: admin/add-gallery.php:1 admin/overview.php:1
83
+ msgid "You are not allowed to call this page directly."
84
+ msgstr "Sie dürfen diese Seite nicht direkt aufrufen."
85
+
86
+ # automatic translation
87
+ #: admin/add-gallery.php:10
88
+ msgid "Add new gallery wizard"
89
+ msgstr "Neuen Galerie-Assistenten hinzufügen"
90
+
91
+ # automatic translation
92
+ #: admin/add-gallery.php:23
93
+ msgid "Name of the gallery"
94
+ msgstr "Name der Galerie"
95
+
96
+ # automatic translation
97
+ #: admin/add-gallery.php:28
98
+ msgid "Description of the gallery"
99
+ msgstr "Beschreibung der Galerie"
100
+
101
+ # automatic translation
102
+ #: admin/add-gallery.php:32
103
+ msgid "Choose the source of the images"
104
+ msgstr "Wählen Sie die Quelle der Bilder"
105
+
106
+ # automatic translation
107
+ #: admin/add-gallery.php:35
108
+ msgid "Media library"
109
+ msgstr "Medienbibliothek"
110
+
111
+ # automatic translation
112
+ #: admin/add-gallery.php:40 admin/include/edit-gallery.php:103
113
+ msgid "Recent posts with featured image"
114
+ msgstr "Aktuelle Beiträge mit vorgestellten Bildern"
115
+
116
+ # automatic translation
117
+ #: admin/add-gallery.php:43
118
+ msgid "Recent posts"
119
+ msgstr "Kürzliche Posts"
120
+
121
+ # automatic translation
122
+ #: admin/add-gallery.php:44 admin/add-gallery.php:61
123
+ #: admin/include/edit-gallery.php:321
124
+ msgid "Unlock this feature. Upgrade Now!"
125
+ msgstr "Entsperren Sie diese Funktion. Jetzt upgraden!"
126
+
127
+ # automatic translation
128
+ #: admin/add-gallery.php:57 admin/add-gallery.php:60
129
+ #: admin/include/edit-gallery.php:106
130
+ msgid "WooCommerce products"
131
+ msgstr "WooCommerce-Produkte"
132
+
133
+ # automatic translation
134
+ #: admin/add-gallery.php:68
135
+ msgid "WordPress field for captions:"
136
+ msgstr "WordPress-Feld für Bildunterschriften:"
137
+
138
+ # automatic translation
139
+ #: admin/add-gallery.php:78
140
+ msgid "WordPress field for titles:"
141
+ msgstr "WordPress-Feld für Titel:"
142
+
143
+ # automatic translation
144
+ #: admin/add-gallery.php:103
145
+ msgid "Caption effect:"
146
+ msgstr "Caption-Effekt:"
147
+
148
+ # automatic translation
149
+ #: admin/add-gallery.php:105
150
+ msgid "Fade"
151
+ msgstr "Verblassen"
152
+
153
+ # automatic translation
154
+ #: admin/add-gallery.php:107 admin/add-gallery.php:114
155
+ msgid "Fixed"
156
+ msgstr "Fest"
157
+
158
+ # automatic translation
159
+ #: admin/add-gallery.php:108 admin/add-gallery.php:115
160
+ msgid "Fixed with background"
161
+ msgstr "Fixiert mit Hintergrund"
162
+
163
+ # automatic translation
164
+ #: admin/add-gallery.php:109 admin/add-gallery.php:116
165
+ msgid "Fixed, hidden on hover"
166
+ msgstr "Behoben, im Hover ausgeblendet"
167
+
168
+ # automatic translation
169
+ #: admin/add-gallery.php:110 admin/add-gallery.php:117
170
+ msgid "Fixed at bottom"
171
+ msgstr "Unten fixiert"
172
+
173
+ # automatic translation
174
+ #: admin/add-gallery.php:111 admin/add-gallery.php:118
175
+ msgid "Slide from top"
176
+ msgstr "Schieben Sie von oben"
177
+
178
+ # automatic translation
179
+ #: admin/add-gallery.php:112 admin/add-gallery.php:119
180
+ msgid "Slide from bottom"
181
+ msgstr "Schieben Sie von unten"
182
+
183
+ # automatic translation
184
+ #: admin/add-gallery.php:128
185
+ msgid "Post types:"
186
+ msgstr "Beitragstypen:"
187
+
188
+ # automatic translation
189
+ #: admin/add-gallery.php:140
190
+ msgid "Categories:"
191
+ msgstr "Kategorien:"
192
+
193
+ # automatic translation
194
+ #: admin/add-gallery.php:152
195
+ msgid "Choose the layout"
196
+ msgstr "Wählen Sie das Layout"
197
+
198
+ # automatic translation
199
+ #: admin/add-gallery.php:159
200
+ msgid "Choose a default image size"
201
+ msgstr "Wählen Sie eine Standardbildgröße"
202
+
203
+ # automatic translation
204
+ #: admin/add-gallery.php:168
205
+ msgid "You can customize each image later"
206
+ msgstr "Sie können jedes Bild später anpassen"
207
+
208
+ # automatic translation
209
+ #: admin/add-gallery.php:172
210
+ msgid ""
211
+ "We suggest you to use ShortPixel image optimization plugin for best SEO "
212
+ "results."
213
+ msgstr ""
214
+ "Wir empfehlen Ihnen, das Plug-in für die Bildoptimierung von ShortPixel zu "
215
+ "verwenden, um optimale SEO-Ergebnisse zu erzielen."
216
+
217
+ # automatic translation
218
+ #: admin/add-gallery.php:176 admin/include/edit-gallery.php:119
219
+ msgid "Add images"
220
+ msgstr "Füge Bilder hinzu"
221
+
222
+ # automatic translation
223
+ #: admin/add-gallery.php:178
224
+ msgid "You can add images now or later."
225
+ msgstr "Sie können jetzt oder später Bilder hinzufügen."
226
+
227
+ # automatic translation
228
+ #: admin/add-gallery.php:186
229
+ msgid "Previous"
230
+ msgstr "Bisherige"
231
+
232
+ # automatic translation
233
+ #: admin/add-gallery.php:187
234
+ msgid "Next"
235
+ msgstr "Nächster"
236
+
237
+ # automatic translation
238
+ #: admin/add-gallery.php:192
239
+ msgid "Success!"
240
+ msgstr "Erfolg!"
241
+
242
+ # automatic translation
243
+ #: admin/add-gallery.php:193
244
+ msgid "Your gallery"
245
+ msgstr "Ihre Galerie"
246
+
247
+ # automatic translation
248
+ #: admin/add-gallery.php:193
249
+ msgid "has been created. Copy the following shortcode:"
250
+ msgstr "wurde erschaffen. Kopieren Sie den folgenden Kurzcode:"
251
+
252
+ # automatic translation
253
+ #: admin/add-gallery.php:195
254
+ msgid "and paste it inside a post or a page. Otherwise click"
255
+ msgstr ""
256
+ "und fügen Sie es in einen Beitrag oder eine Seite ein. Andernfalls klicken "
257
+ "Sie auf"
258
+
259
+ # automatic translation
260
+ #: admin/add-gallery.php:195 admin/overview.php:21
261
+ msgid "here"
262
+ msgstr "Hier"
263
+
264
+ # automatic translation
265
+ #: admin/add-gallery.php:195
266
+ msgid ""
267
+ "to customize\n"
268
+ "\t\t\t the gallery."
269
+ msgstr ""
270
+ "anpassen\n"
271
+ "Die Gallerie."
272
+
273
+ # automatic translation
274
+ #: admin/add-gallery.php:200 admin/add-gallery.php:209 admin/overview.php:138
275
+ msgid "Close"
276
+ msgstr "Schließen"
277
+
278
+ # automatic translation
279
+ #: admin/add-gallery.php:205
280
+ msgid "Error!"
281
+ msgstr "Error!"
282
+
283
+ # automatic translation
284
+ #: admin/add-gallery.php:206
285
+ msgid "For some reason it was not possible to save your gallery, please contact"
286
+ msgstr ""
287
+ "Aus irgendeinem Grund konnte Ihre Galerie nicht gespeichert werden. Bitte "
288
+ "wenden Sie sich an"
289
+
290
+ # automatic translation
291
+ #: admin/add-gallery.php:206
292
+ msgid "support"
293
+ msgstr "Unterstützung"
294
+
295
+ # automatic translation
296
+ #: admin/edit-gallery.php:75 admin/include/edit-gallery.php:139
297
+ msgid "Assign group"
298
+ msgstr "Gruppe zuordnen"
299
+
300
+ # automatic translation
301
+ #: admin/edit-gallery.php:76
302
+ msgid ""
303
+ "The group name is for internal use and it won't be shown, avoid space and "
304
+ "special characters"
305
+ msgstr ""
306
+ "Der Gruppenname ist für den internen Gebrauch bestimmt und wird nicht "
307
+ "angezeigt. Vermeiden Sie Leerzeichen und Sonderzeichen"
308
+
309
+ # automatic translation
310
+ #: admin/edit-gallery.php:80 admin/edit-gallery.php:100
311
+ #: admin/include/edit-gallery.php:547 admin/include/edit-gallery.php:612
312
+ msgid "Save"
313
+ msgstr "sparen"
314
+
315
+ # automatic translation
316
+ #: admin/edit-gallery.php:81 admin/edit-gallery.php:101
317
+ #: admin/include/edit-gallery.php:548 admin/include/edit-gallery.php:611
318
+ msgid "Cancel"
319
+ msgstr "Stornieren"
320
+
321
+ # automatic translation
322
+ #: admin/edit-gallery.php:87 admin/include/edit-gallery.php:142
323
+ msgid "Assign filters"
324
+ msgstr "Filter zuweisen"
325
+
326
+ # automatic translation
327
+ #: admin/edit-gallery.php:97
328
+ msgid "If you don't see all filters please save and reload the page"
329
+ msgstr ""
330
+ "Wenn Sie nicht alle Filter sehen, speichern Sie bitte die Seite und laden "
331
+ "Sie sie erneut"
332
+
333
+ # automatic translation
334
+ #: admin/include/edit-gallery.php:96
335
+ msgid "Images"
336
+ msgstr "Bilder"
337
+
338
+ # automatic translation
339
+ #: admin/include/edit-gallery.php:102
340
+ msgid "User images"
341
+ msgstr "Benutzerbilder"
342
+
343
+ # automatic translation
344
+ #: admin/include/edit-gallery.php:123 admin/include/edit-gallery.php:126
345
+ msgid "Add video"
346
+ msgstr "Video hinzufügen"
347
+
348
+ # automatic translation
349
+ #: admin/include/edit-gallery.php:128
350
+ msgid "Remove selected"
351
+ msgstr "Ausgewählte entfernen"
352
+
353
+ # automatic translation
354
+ #: admin/include/edit-gallery.php:133
355
+ msgid "Select all"
356
+ msgstr "Wählen Sie Alle"
357
+
358
+ # automatic translation
359
+ #: admin/include/edit-gallery.php:134
360
+ msgid "Deselect all"
361
+ msgstr "Alle abwählen"
362
+
363
+ # automatic translation
364
+ #: admin/include/edit-gallery.php:135
365
+ msgid "Toggle selection"
366
+ msgstr "Auswahl umschalten"
367
+
368
+ # automatic translation
369
+ #: admin/include/edit-gallery.php:146
370
+ msgid "Toggle visibility"
371
+ msgstr "Sichtbarkeit umschalten"
372
+
373
+ # automatic translation
374
+ #: admin/include/edit-gallery.php:152
375
+ msgid "Select by filter:"
376
+ msgstr "Auswahl durch Filter:"
377
+
378
+ # automatic translation
379
+ #: admin/include/edit-gallery.php:165
380
+ msgid "Add links by clicking the EDIT (pencil) button"
381
+ msgstr "Fügen Sie Links hinzu, indem Sie auf die Schaltfläche EDIT (Stift) klicken"
382
+
383
+ # automatic translation
384
+ #: admin/include/edit-gallery.php:166
385
+ msgid "Drag the images to change their order."
386
+ msgstr "Ziehen Sie die Bilder, um ihre Reihenfolge zu ändern."
387
+
388
+ # automatic translation
389
+ #: admin/include/edit-gallery.php:190
390
+ msgid "Post type:"
391
+ msgstr "Post-Typ:"
392
+
393
+ # automatic translation
394
+ #: admin/include/edit-gallery.php:229
395
+ msgid "Max posts:"
396
+ msgstr "Max Beiträge:"
397
+
398
+ # automatic translation
399
+ #: admin/include/edit-gallery.php:232
400
+ msgid "(enter 0 for unlimited posts)"
401
+ msgstr "(0 für unbegrenzte Beiträge eingeben)"
402
+
403
+ # automatic translation
404
+ #: admin/include/edit-gallery.php:239
405
+ msgid "Categories"
406
+ msgstr "Kategorien"
407
+
408
+ # automatic translation
409
+ #: admin/include/edit-gallery.php:276
410
+ msgid "Jump to setting"
411
+ msgstr "Zur Einstellung springen"
412
+
413
+ # automatic translation
414
+ #: admin/include/edit-gallery.php:308
415
+ msgid "Show help"
416
+ msgstr "Zeig Hilfe"
417
+
418
+ # automatic translation
419
+ #: admin/include/edit-gallery.php:342
420
+ msgid "EverlightBox settings"
421
+ msgstr "EverlightBox-Einstellungen"
422
+
423
+ # automatic translation
424
+ #: admin/include/edit-gallery.php:346
425
+ msgid "EverlightBox not installed"
426
+ msgstr "EverlightBox nicht installiert"
427
+
428
+ # automatic translation
429
+ #: admin/include/edit-gallery.php:346
430
+ msgid "Purchase"
431
+ msgstr "Kauf"
432
+
433
+ # automatic translation
434
+ #: admin/include/edit-gallery.php:383
435
+ msgid "Add filter"
436
+ msgstr "Filter hinzufügen"
437
+
438
+ # automatic translation
439
+ #: admin/include/edit-gallery.php:384
440
+ msgid "Reset selected filter"
441
+ msgstr "Setzen Sie den ausgewählten Filter zurück"
442
+
443
+ # automatic translation
444
+ #: admin/include/edit-gallery.php:399
445
+ msgid "Resolution"
446
+ msgstr "Auflösung"
447
+
448
+ # automatic translation
449
+ #: admin/include/edit-gallery.php:400
450
+ msgid "Size factor"
451
+ msgstr "Größenfaktor"
452
+
453
+ # automatic translation
454
+ #: admin/include/edit-gallery.php:408
455
+ msgid "Add resolution"
456
+ msgstr "Auflösung hinzufügen"
457
+
458
+ # automatic translation
459
+ #: admin/include/edit-gallery.php:419
460
+ msgid "Shortcode attribute"
461
+ msgstr "Kurzcode-Attribut"
462
+
463
+ # automatic translation
464
+ #: admin/include/edit-gallery.php:444 admin/include/edit-gallery.php:447
465
+ #: admin/overview.php:29 admin/overview.php:32 admin/overview.php:85
466
+ #: admin/overview.php:88
467
+ msgid "Upgrade"
468
+ msgstr "Aktualisierung"
469
+
470
+ # automatic translation
471
+ #: admin/include/edit-gallery.php:444 admin/overview.php:29
472
+ #: admin/overview.php:85
473
+ msgid "unlock features"
474
+ msgstr "Funktionen freischalten"
475
+
476
+ # automatic translation
477
+ #: admin/include/edit-gallery.php:453 admin/overview.php:38
478
+ #: admin/overview.php:94
479
+ msgid "discount"
480
+ msgstr "Rabatt"
481
+
482
+ # automatic translation
483
+ #: admin/include/edit-gallery.php:456 admin/overview.php:41
484
+ #: admin/overview.php:97
485
+ msgid "GET 3 plugins"
486
+ msgstr "Holen Sie sich 3 Plugins"
487
+
488
+ # automatic translation
489
+ #: admin/include/edit-gallery.php:464
490
+ msgid "Publish"
491
+ msgstr "Veröffentlichen"
492
+
493
+ # automatic translation
494
+ #: admin/include/edit-gallery.php:468
495
+ msgid "Save gallery"
496
+ msgstr "Galerie speichern"
497
+
498
+ # automatic translation
499
+ #: admin/include/edit-gallery.php:473
500
+ msgid "Import settings"
501
+ msgstr "Importeinstellungen"
502
+
503
+ # automatic translation
504
+ #: admin/include/edit-gallery.php:475
505
+ msgid "Paste Here the configuration code"
506
+ msgstr "Fügen Sie hier den Konfigurationscode ein"
507
+
508
+ # automatic translation
509
+ #: admin/include/edit-gallery.php:477
510
+ msgid "Import"
511
+ msgstr "Einführen"
512
+
513
+ # automatic translation
514
+ #: admin/include/edit-gallery.php:481
515
+ msgid "Export settings"
516
+ msgstr "Exporteinstellungen"
517
+
518
+ # automatic translation
519
+ #: admin/include/edit-gallery.php:483
520
+ msgid "Settings"
521
+ msgstr "die Einstellungen"
522
+
523
+ # automatic translation
524
+ #: admin/include/edit-gallery.php:485
525
+ msgid "Refresh code"
526
+ msgstr "Code aktualisieren"
527
+
528
+ # automatic translation
529
+ #: admin/include/edit-gallery.php:489
530
+ msgid "Help"
531
+ msgstr "Hilfe"
532
+
533
+ # automatic translation
534
+ #: admin/include/edit-gallery.php:494
535
+ msgid "Documentation"
536
+ msgstr "Dokumentation"
537
+
538
+ # automatic translation
539
+ #: admin/include/edit-gallery.php:498
540
+ msgid "Tutorial"
541
+ msgstr "Tutorial"
542
+
543
+ # automatic translation
544
+ #: admin/include/edit-gallery.php:502
545
+ msgid "How to add additional image sizes"
546
+ msgstr "Hinzufügen zusätzlicher Bildgrößen"
547
+
548
+ # automatic translation
549
+ #: admin/include/edit-gallery.php:510
550
+ msgid "FAQ"
551
+ msgstr "FAQ"
552
+
553
+ # automatic translation
554
+ #: admin/include/edit-gallery.php:514
555
+ msgid "How to add a link to a picture?"
556
+ msgstr "Wie füge ich einen Link zu einem Bild hinzu?"
557
+
558
+ # automatic translation
559
+ #: admin/include/edit-gallery.php:516
560
+ msgid ""
561
+ "Click the edit (pencil) icon on the image and insert the link inside the "
562
+ "\"Link\" field"
563
+ msgstr ""
564
+ "Klicken Sie auf das Bearbeitungssymbol (Bleistift) im Bild und fügen Sie "
565
+ "den Link in das Feld \"Link\" ein"
566
+
567
+ # automatic translation
568
+ #: admin/include/edit-gallery.php:520
569
+ msgid "Why my images look blurry?"
570
+ msgstr "Warum sehen meine Bilder unscharf aus?"
571
+
572
+ # automatic translation
573
+ #: admin/include/edit-gallery.php:522
574
+ msgid ""
575
+ "You probably have chosen a small image size. Click the edit (pencil) icon "
576
+ "on the blurry image and choose a larger size. Remember, you can choose the "
577
+ "size before adding the images to the gallery"
578
+ msgstr ""
579
+ "Sie haben wahrscheinlich eine kleine Bildgröße gewählt. Klicken Sie auf das "
580
+ "Bearbeitungssymbol (Bleistift) auf dem verschwommenen Bild und wählen Sie "
581
+ "eine größere Größe. Denken Sie daran, Sie können die Größe auswählen, bevor "
582
+ "Sie die Bilder zur Galerie hinzufügen"
583
+
584
+ # automatic translation
585
+ #: admin/include/edit-gallery.php:537
586
+ msgid "Paste here the embed code (it must be an "
587
+ msgstr "Fügen Sie hier den Einbettungscode ein (es muss ein"
588
+
589
+ # automatic translation
590
+ #: admin/include/edit-gallery.php:537
591
+ msgid "iframe"
592
+ msgstr "iframe"
593
+
594
+ # automatic translation
595
+ #: admin/include/edit-gallery.php:538
596
+ msgid "and it must contain the attributes"
597
+ msgstr "und es muss die Attribute enthalten"
598
+
599
+ # automatic translation
600
+ #: admin/include/edit-gallery.php:538
601
+ msgid "width"
602
+ msgstr "Breite"
603
+
604
+ # automatic translation
605
+ #: admin/include/edit-gallery.php:538
606
+ msgid "and"
607
+ msgstr "und"
608
+
609
+ # automatic translation
610
+ #: admin/include/edit-gallery.php:538
611
+ msgid " height"
612
+ msgstr " Höhe"
613
+
614
+ # automatic translation
615
+ #: admin/include/edit-gallery.php:556
616
+ msgid "Edit image"
617
+ msgstr "Bild bearbeiten"
618
+
619
+ # automatic translation
620
+ #: admin/include/edit-gallery.php:563
621
+ msgid "Title"
622
+ msgstr "Titel"
623
+
624
+ # automatic translation
625
+ #: admin/include/edit-gallery.php:569
626
+ msgid "Caption"
627
+ msgstr "Bildbeschriftung"
628
+
629
+ # automatic translation
630
+ #: admin/include/edit-gallery.php:577
631
+ msgid "Hidden, visible only with lightbox"
632
+ msgstr "Versteckt, nur sichtbar bei Leuchtkasten"
633
+
634
+ # automatic translation
635
+ #: admin/include/edit-gallery.php:581
636
+ msgid "Link"
637
+ msgstr "Verknüpfung"
638
+
639
+ # automatic translation
640
+ #: admin/include/edit-gallery.php:587
641
+ msgid "Link target"
642
+ msgstr "Linkziel"
643
+
644
+ # automatic translation
645
+ #: admin/include/edit-gallery.php:590
646
+ msgid "Default target"
647
+ msgstr "Standardziel"
648
+
649
+ # automatic translation
650
+ #: admin/include/edit-gallery.php:591
651
+ msgid "Open in same page"
652
+ msgstr "In derselben Seite öffnen"
653
+
654
+ # automatic translation
655
+ #: admin/include/edit-gallery.php:592
656
+ msgid "Open in _blank"
657
+ msgstr "In _blank öffnen"
658
+
659
+ # automatic translation
660
+ #: admin/include/edit-gallery.php:593
661
+ msgid "Open in lightbox (when using a lightbox)"
662
+ msgstr "In Lightbox öffnen (bei Verwendung einer Lightbox)"
663
+
664
+ # automatic translation
665
+ #: admin/include/edit-gallery.php:600
666
+ msgid "Lightbox group (rel)"
667
+ msgstr "Lightbox-Gruppe (rel)"
668
+
669
+ # automatic translation
670
+ #: admin/include/edit-gallery.php:602
671
+ msgid ""
672
+ "Used to group images with the following lightbox: Magnific Popup, "
673
+ "PrettyPhoto, FancyBox, SwipeBox, Lightbox"
674
+ msgstr ""
675
+ "Wird verwendet, um Bilder mit der folgenden Lightbox zu gruppieren: "
676
+ "Magnific Popup, PrettyPhoto, FancyBox, SwipeBox, Lightbox"
677
+
678
+ # automatic translation
679
+ #: admin/include/fields.php:163
680
+ msgid "Loading method"
681
+ msgstr "Lademethode"
682
+
683
+ # automatic translation
684
+ #: admin/include/fields.php:184
685
+ msgid "Asynchronous loading"
686
+ msgstr "Asynchrones Laden"
687
+
688
+ # automatic translation
689
+ #: admin/include/fields.php:196
690
+ msgid "Don't enable ajax loading if you need to index your images on search engines"
691
+ msgstr ""
692
+ "Aktivieren Sie das Laden von Ajax nicht, wenn Sie Ihre Bilder in "
693
+ "Suchmaschinen indizieren müssen"
694
+
695
+ # automatic translation
696
+ #: admin/include/fields.php:205
697
+ msgid "Number of images to load via ajax"
698
+ msgstr "Anzahl der Bilder, die über Ajax geladen werden sollen"
699
+
700
+ # automatic translation
701
+ #: admin/include/fields.php:219
702
+ msgid "Name"
703
+ msgstr "Name"
704
+
705
+ # automatic translation
706
+ #: admin/include/fields.php:225
707
+ msgid "Name of the gallery, for internal use."
708
+ msgstr "Name der Galerie für den internen Gebrauch."
709
+
710
+ # automatic translation
711
+ #: admin/include/fields.php:234
712
+ msgid "Description"
713
+ msgstr "Beschreibung"
714
+
715
+ # automatic translation
716
+ #: admin/include/fields.php:240
717
+ msgid "Description of the gallery, for internal use."
718
+ msgstr "Beschreibung der Galerie für den internen Gebrauch."
719
+
720
+ # automatic translation
721
+ #: admin/include/fields.php:249
722
+ msgid "Layout"
723
+ msgstr "Layout"
724
+
725
+ # automatic translation
726
+ #: admin/include/fields.php:251
727
+ msgid ""
728
+ "<strong>Final Tiles</strong>: use images with different "
729
+ "sizes<br><strong>Masonry</strong>: multi-column layout, use this one if you "
730
+ "need images of the same size."
731
+ msgstr ""
732
+ "<strong>Final Tiles</strong> : Verwenden Sie Bilder mit unterschiedlichen "
733
+ "Größen <br> <strong>Mauerwerk</strong> : Mehrspaltiges Layout, wenn Sie "
734
+ "Bilder gleicher Größe benötigen."
735
+
736
+ # automatic translation
737
+ #: admin/include/fields.php:263
738
+ msgid "Width"
739
+ msgstr "Breite"
740
+
741
+ # automatic translation
742
+ #: admin/include/fields.php:265
743
+ msgid "Width of the gallery in pixels or percentage."
744
+ msgstr "Breite der Galerie in Pixel oder Prozent."
745
+
746
+ # automatic translation
747
+ #: admin/include/fields.php:271
748
+ msgid "Margin"
749
+ msgstr "Spanne"
750
+
751
+ # automatic translation
752
+ #: admin/include/fields.php:273
753
+ msgid "Margin between images"
754
+ msgstr "Rand zwischen den Bildern"
755
+
756
+ # automatic translation
757
+ #: admin/include/fields.php:282
758
+ msgid "Number of columns"
759
+ msgstr "Anzahl der Spalten"
760
+
761
+ # automatic translation
762
+ #: admin/include/fields.php:295
763
+ msgid "Images order"
764
+ msgstr "Bilder bestellen"
765
+
766
+ # automatic translation
767
+ #: admin/include/fields.php:297
768
+ msgid "Choose the order of the images"
769
+ msgstr "Wählen Sie die Reihenfolge der Bilder"
770
+
771
+ # automatic translation
772
+ #: admin/include/fields.php:310
773
+ msgid "Filters"
774
+ msgstr "Filter"
775
+
776
+ # automatic translation
777
+ #: admin/include/fields.php:312
778
+ msgid "Manage here all the filters of this gallery"
779
+ msgstr "Verwalten Sie hier alle Filter dieser Galerie"
780
+
781
+ # automatic translation
782
+ #: admin/include/fields.php:322
783
+ msgid "Reload Page on filter click"
784
+ msgstr "Seite nach Filterklick neu laden"
785
+
786
+ # automatic translation
787
+ #: admin/include/fields.php:324
788
+ msgid "Turn this feature ON if you want to use filters with most lightboxes"
789
+ msgstr ""
790
+ "Aktivieren Sie diese Funktion, wenn Sie Filter für die meisten Leuchtkästen "
791
+ "verwenden möchten"
792
+
793
+ # automatic translation
794
+ #: admin/include/fields.php:331
795
+ msgid "Size of the grid"
796
+ msgstr "Größe des Gitters"
797
+
798
+ # automatic translation
799
+ #: admin/include/fields.php:337
800
+ msgid ""
801
+ "Tiles are snapped to a virtual grid, <strong>the higher this value the "
802
+ "higher the chance to get bottom aligned tiles</strong> (but it needs to "
803
+ "crop vertically)."
804
+ msgstr ""
805
+ "Kacheln werden in einem virtuellen Raster gefangen. Je <strong>höher dieser "
806
+ "Wert, desto höher ist die Chance, Kacheln nach unten auszurichten</strong> "
807
+ "(er muss jedoch vertikal zugeschnitten werden)."
808
+
809
+ # automatic translation
810
+ #: admin/include/fields.php:342
811
+ msgid "Disable grid size below resolution"
812
+ msgstr "Deaktivieren Sie die Rastergröße unterhalb der Auflösung"
813
+
814
+ # automatic translation
815
+ #: admin/include/fields.php:348
816
+ msgid ""
817
+ "If you have small tiny images under certain resolutions then you can switch "
818
+ "off grid size (image cropping) when the screen resolution is below this "
819
+ "value."
820
+ msgstr ""
821
+ "Wenn Sie bei bestimmten Auflösungen kleine winzige Bilder haben, können Sie "
822
+ "die Rastergröße (Bildbeschneidung) deaktivieren, wenn die "
823
+ "Bildschirmauflösung unter diesem Wert liegt."
824
+
825
+ # automatic translation
826
+ #: admin/include/fields.php:370 admin/include/fields.php:409
827
+ msgid ""
828
+ "Define here what happens when user click on the images. Lightboxes with "
829
+ "video support: EverlightBox, LightGallery, Magnific popup, Colorbox "
830
+ "(require embed URL)); PrettyPhoto, FancyBox (require embed URL)"
831
+ msgstr ""
832
+ "Definieren Sie hier, was passiert, wenn der Benutzer auf die Bilder klickt. "
833
+ "Lightboxen mit Video-Unterstützung: EverlightBox, LightGallery, "
834
+ "Popup-Popup, Colorbox (URL zum Einbetten erforderlich); PrettyPhoto, "
835
+ "FancyBox (URL zum Einbetten erforderlich)"
836
+
837
+ # automatic translation
838
+ #: admin/include/fields.php:449 admin/include/fields.php:458
839
+ msgid ""
840
+ "Custom options for chosen lightbox. Enter params without curly "
841
+ "braces.<br>Example: <span style='font-family:monospace'>easing: linear, "
842
+ "mode: 'lg-fade'</span>.<br>Documentation: <a "
843
+ "href='http://sachinchoolur.github.io/lightGallery/docs/api.html' "
844
+ "target='_blank'>LightGallery</a>, <a target='_blank' "
845
+ "href='http://dimsemenov.com/plugins/magnific-popup/documentation.html'"
846
+ ">Magnific Popup</a>."
847
+ msgstr ""
848
+ "Benutzerdefinierte Optionen für den ausgewählten Leuchtkasten. Geben Sie "
849
+ "Params ohne geschweifte Klammern ein. <br> Beispiel: <span "
850
+ "style='font-family:monospace'>Beschleunigung: linear, Modus: "
851
+ "&#39;lg-fade&#39;</span> . <br> Dokumentation: <a "
852
+ "href='http://sachinchoolur.github.io/lightGallery/docs/api.html' "
853
+ "target='_blank'>LightGallery</a> , <a target='_blank' "
854
+ "href='http://dimsemenov.com/plugins/magnific-popup/documentation.html'"
855
+ ">Magnific Popup</a> ."
856
+
857
+ # automatic translation
858
+ #: admin/include/fields.php:465
859
+ msgid "Image size for the lightbox"
860
+ msgstr "Bildgröße für die Lightbox"
861
+
862
+ # automatic translation
863
+ #: admin/include/fields.php:475
864
+ msgid "Disable lightbox grouping"
865
+ msgstr "Deaktivieren Sie die Lightbox-Gruppierung"
866
+
867
+ # automatic translation
868
+ #: admin/include/fields.php:477
869
+ msgid ""
870
+ "Flag this option if you don't want to group images when opened in a "
871
+ "lightbox."
872
+ msgstr ""
873
+ "Markieren Sie diese Option, wenn Sie beim Öffnen in einer Lightbox keine "
874
+ "Bilder gruppieren möchten."
875
+
876
+ # automatic translation
877
+ #: admin/include/fields.php:483
878
+ msgid "Links target"
879
+ msgstr "Verknüpfungsziel"
880
+
881
+ # automatic translation
882
+ #: admin/include/fields.php:485
883
+ msgid "Open links in a blank page."
884
+ msgstr "Links auf einer leeren Seite öffnen."
885
+
886
+ # automatic translation
887
+ #: admin/include/fields.php:490
888
+ msgid "Enable Twitter icon"
889
+ msgstr "Aktivieren Sie das Twitter-Symbol"
890
+
891
+ # automatic translation
892
+ #: admin/include/fields.php:492
893
+ msgid "Enable Twitter sharing."
894
+ msgstr "Twitter-Freigabe aktivieren"
895
+
896
+ # automatic translation
897
+ #: admin/include/fields.php:498
898
+ msgid "Enable Facebook icon"
899
+ msgstr "Aktivieren Sie das Facebook-Symbol"
900
+
901
+ # automatic translation
902
+ #: admin/include/fields.php:500
903
+ msgid ""
904
+ "Enable Facebook sharing. Note: after the last version of OpenGraph API it's "
905
+ "not possible to share a specific image anymore."
906
+ msgstr ""
907
+ "Facebook-Freigabe aktivieren Hinweis: Nach der letzten Version von "
908
+ "OpenGraph API ist es nicht mehr möglich, ein bestimmtes Bild weiterzugeben."
909
+
910
+ # automatic translation
911
+ #: admin/include/fields.php:506
912
+ msgid "Enable Google Plus icon"
913
+ msgstr "Aktivieren Sie das Google Plus-Symbol"
914
+
915
+ # automatic translation
916
+ #: admin/include/fields.php:508
917
+ msgid "Enable Google Plus sharing"
918
+ msgstr "Aktivieren Sie die Google Plus-Freigabe"
919
+
920
+ # automatic translation
921
+ #: admin/include/fields.php:514
922
+ msgid "Enable Pinterest icon"
923
+ msgstr "Aktivieren Sie das Pinterest-Symbol"
924
+
925
+ # automatic translation
926
+ #: admin/include/fields.php:516
927
+ msgid "Enable Pinterest sharing"
928
+ msgstr "Aktivieren Sie das Teilen von Pinterest"
929
+
930
+ # automatic translation
931
+ #: admin/include/fields.php:522
932
+ msgid "Color of social sharing icons"
933
+ msgstr "Farbe der Social-Sharing-Icons"
934
+
935
+ # automatic translation
936
+ #: admin/include/fields.php:524 admin/include/fields.php:532
937
+ msgid "Set the color of the social sharing icons"
938
+ msgstr "Legen Sie die Farbe der Social Sharing-Symbole fest"
939
+
940
+ # automatic translation
941
+ #: admin/include/fields.php:530
942
+ msgid "Style of the social icons panel"
943
+ msgstr "Stil des Social-Icons-Bereichs"
944
+
945
+ # automatic translation
946
+ #: admin/include/fields.php:545
947
+ msgid "Position of the social icons panel"
948
+ msgstr "Position des Symbols für soziale Symbole"
949
+
950
+ # automatic translation
951
+ #: admin/include/fields.php:547
952
+ msgid "Set the position of the social sharing icons"
953
+ msgstr "Legen Sie die Position der Social Sharing-Symbole fest"
954
+
955
+ # automatic translation
956
+ #: admin/include/fields.php:560
957
+ msgid "Caption behavior"
958
+ msgstr "Caption-Verhalten"
959
+
960
+ # automatic translation
961
+ #: admin/include/fields.php:562
962
+ msgid "Effect used to show the captions."
963
+ msgstr "Effekt zur Anzeige der Bildunterschriften."
964
+
965
+ # automatic translation
966
+ #: admin/include/fields.php:597
967
+ msgid "Caption mobile behavior"
968
+ msgstr "Bildunterschrift mobiles Verhalten"
969
+
970
+ # automatic translation
971
+ #: admin/include/fields.php:599
972
+ msgid "Caption behavior for mobile devices."
973
+ msgstr "Untertitelverhalten für mobile Geräte."
974
+
975
+ # automatic translation
976
+ #: admin/include/fields.php:627
977
+ msgid "Custom fields"
978
+ msgstr "Benutzerdefinierte Felder"
979
+
980
+ # automatic translation
981
+ #: admin/include/fields.php:629
982
+ msgid ""
983
+ "Insert 1 custom field on each line. Add an optional label after the custom "
984
+ "field code."
985
+ msgstr ""
986
+ "Fügen Sie in jede Zeile ein benutzerdefiniertes Feld ein. Fügen Sie nach "
987
+ "dem benutzerdefinierten Feldcode ein optionales Etikett hinzu."
988
+
989
+ # automatic translation
990
+ #: admin/include/fields.php:637
991
+ msgid "Position"
992
+ msgstr "Position"
993
+
994
+ # automatic translation
995
+ #: admin/include/fields.php:639
996
+ msgid "Choose the position of the caption."
997
+ msgstr "Wählen Sie die Position der Beschriftung."
998
+
999
+ # automatic translation
1000
+ #: admin/include/fields.php:658
1001
+ msgid "Empty captions"
1002
+ msgstr "Leere Bildunterschriften"
1003
+
1004
+ # automatic translation
1005
+ #: admin/include/fields.php:660
1006
+ msgid "Choose if empty caption has to be shown."
1007
+ msgstr "Wählen Sie, ob eine leere Beschriftung angezeigt werden soll."
1008
+
1009
+ # automatic translation
1010
+ #: admin/include/fields.php:680
1011
+ msgid "Caption icon"
1012
+ msgstr "Beschriftungssymbol"
1013
+
1014
+ # automatic translation
1015
+ #: admin/include/fields.php:682
1016
+ msgid "Choose the icon for the captions."
1017
+ msgstr "Wählen Sie das Symbol für die Bildunterschriften."
1018
+
1019
+ # automatic translation
1020
+ #: admin/include/fields.php:705
1021
+ msgid "Custom caption icon"
1022
+ msgstr "Symbol für benutzerdefinierte Beschriftung"
1023
+
1024
+ # automatic translation
1025
+ #: admin/include/fields.php:707
1026
+ msgid ""
1027
+ "Use this field to insert the class of a FontAwesome icon (i.e.: fa-heart). "
1028
+ "<a href='https://fontawesome.com/v4.7.0/icons/' target='blank'>See all "
1029
+ "available icons</a>. <strong>This value override the <i>Caption icon</i> "
1030
+ "value</strong>."
1031
+ msgstr ""
1032
+ "Verwenden Sie dieses Feld, um die Klasse eines FontAwesome-Symbols "
1033
+ "einzufügen (z. B. fa-heart). <a "
1034
+ "href='https://fontawesome.com/v4.7.0/icons/' target='blank'>Alle "
1035
+ "verfügbaren Symbole anzeigen</a> . <strong>Dieser Wert überschreibt den "
1036
+ "<i>Beschriftungssymbolwert</i></strong> ."
1037
+
1038
+ # automatic translation
1039
+ #: admin/include/fields.php:712
1040
+ msgid "Caption icon color"
1041
+ msgstr "Farbe der Beschriftungssymbole"
1042
+
1043
+ # automatic translation
1044
+ #: admin/include/fields.php:714
1045
+ msgid "Color of the icon in captions."
1046
+ msgstr "Farbe des Symbols in Beschriftungen."
1047
+
1048
+ # automatic translation
1049
+ #: admin/include/fields.php:720
1050
+ msgid "Caption icon size"
1051
+ msgstr "Größe des Beschriftungssymbols"
1052
+
1053
+ # automatic translation
1054
+ #: admin/include/fields.php:722
1055
+ msgid "Size of the icon in captions."
1056
+ msgstr "Größe des Symbols in Beschriftungen."
1057
+
1058
+ # automatic translation
1059
+ #: admin/include/fields.php:731
1060
+ msgid "Caption font size"
1061
+ msgstr "Schriftgröße der Beschriftung"
1062
+
1063
+ # automatic translation
1064
+ #: admin/include/fields.php:733 admin/include/fields.php:905
1065
+ msgid "Size of the font in captions."
1066
+ msgstr "Größe der Schrift in Beschriftungen."
1067
+
1068
+ # automatic translation
1069
+ #: admin/include/fields.php:742
1070
+ msgid "Caption effect easing"
1071
+ msgstr "Erleichterung für den Untertiteleffekt"
1072
+
1073
+ # automatic translation
1074
+ #: admin/include/fields.php:744
1075
+ msgid ""
1076
+ "Easing function for the caption animation, works better with sliding "
1077
+ "animations."
1078
+ msgstr ""
1079
+ "Die Erleichterungsfunktion für die Untertitelanimation funktioniert besser "
1080
+ "mit gleitenden Animationen."
1081
+
1082
+ # automatic translation
1083
+ #: admin/include/fields.php:762
1084
+ msgid "Caption frame"
1085
+ msgstr "Beschriftungsrahmen"
1086
+
1087
+ # automatic translation
1088
+ #: admin/include/fields.php:764
1089
+ msgid "Add a frame around the caption"
1090
+ msgstr "Fügen Sie einen Rahmen um die Beschriftung hinzu"
1091
+
1092
+ # automatic translation
1093
+ #: admin/include/fields.php:770
1094
+ msgid "Caption frame color"
1095
+ msgstr "Beschriftungsrahmenfarbe"
1096
+
1097
+ # automatic translation
1098
+ #: admin/include/fields.php:772
1099
+ msgid "Color of the frame around the caption"
1100
+ msgstr "Farbe des Rahmens um die Bildunterschrift"
1101
+
1102
+ # automatic translation
1103
+ #: admin/include/fields.php:778
1104
+ msgid "Caption color"
1105
+ msgstr "Beschriftungsfarbe"
1106
+
1107
+ # automatic translation
1108
+ #: admin/include/fields.php:780
1109
+ msgid "Text color of the captions."
1110
+ msgstr "Textfarbe der Bildunterschriften."
1111
+
1112
+ # automatic translation
1113
+ #: admin/include/fields.php:786
1114
+ msgid "Caption effect duration"
1115
+ msgstr "Dauer des Untertiteleffekts"
1116
+
1117
+ # automatic translation
1118
+ #: admin/include/fields.php:788
1119
+ msgid "Duration of the caption animation."
1120
+ msgstr "Dauer der Bildanimation."
1121
+
1122
+ # automatic translation
1123
+ #: admin/include/fields.php:797 admin/include/fields.php:799
1124
+ msgid "Caption background color"
1125
+ msgstr "Beschriftung Hintergrundfarbe"
1126
+
1127
+ # automatic translation
1128
+ #: admin/include/fields.php:805
1129
+ msgid "Caption opacity"
1130
+ msgstr "Deckkraft der Bildunterschrift"
1131
+
1132
+ # automatic translation
1133
+ #: admin/include/fields.php:807
1134
+ msgid ""
1135
+ "Opacity of the caption, 0% means 'invisible' while 100% is a plain color "
1136
+ "without opacity."
1137
+ msgstr ""
1138
+ "Deckkraft der Beschriftung, 0% bedeutet \"unsichtbar\", während 100% eine "
1139
+ "reine Farbe ohne Deckkraft ist."
1140
+
1141
+ # automatic translation
1142
+ #: admin/include/fields.php:816
1143
+ msgid "WordPress caption field"
1144
+ msgstr "WordPress-Beschriftungsfeld"
1145
+
1146
+ # automatic translation
1147
+ #: admin/include/fields.php:818
1148
+ msgid ""
1149
+ "WordPress field used for captions. <strong>This field is used ONLY when "
1150
+ "images are added to the gallery, </strong> however, if you want to ignore "
1151
+ "captions just set it to '<i>Don't use captions</i>'."
1152
+ msgstr ""
1153
+ "WordPress-Feld für Beschriftungen. <strong>Dieses Feld wird NUR verwendet, "
1154
+ "wenn der Galerie Bilder hinzugefügt werden.</strong> Wenn Sie Untertitel "
1155
+ "jedoch ignorieren möchten, setzen Sie sie einfach auf &quot; <i>Keine "
1156
+ "Untertitel verwenden</i> &quot;."
1157
+
1158
+ # automatic translation
1159
+ #: admin/include/fields.php:833
1160
+ msgid "WordPress title field"
1161
+ msgstr "WordPress-Titelfeld"
1162
+
1163
+ # automatic translation
1164
+ #: admin/include/fields.php:835
1165
+ msgid ""
1166
+ "WordPress field used for titles. <strong>This field is used ONLY when "
1167
+ "images are added to the gallery, </strong> however, if you want to ignore "
1168
+ "titles just set it to '<i>Don't use titles</i>'."
1169
+ msgstr ""
1170
+ "WordPress-Feld für Titel. <strong>Dieses Feld wird NUR verwendet, wenn der "
1171
+ "Galerie Bilder hinzugefügt werden.</strong> Wenn Sie Titel ignorieren "
1172
+ "möchten, setzen Sie sie einfach auf &quot; <i>Keine Titel verwenden</i> "
1173
+ "&quot;."
1174
+
1175
+ # automatic translation
1176
+ #: admin/include/fields.php:849
1177
+ msgid "Recent posts caption"
1178
+ msgstr "Aktuelle Beiträge Untertitel"
1179
+
1180
+ # automatic translation
1181
+ #: admin/include/fields.php:851
1182
+ msgid "Field of the post used for captions when using \"Recent posts\" as source."
1183
+ msgstr ""
1184
+ "Feld des Beitrags, der für Beschriftungen verwendet wird, wenn \"Letzte "
1185
+ "Beiträge\" als Quelle verwendet werden."
1186
+
1187
+ # automatic translation
1188
+ #: admin/include/fields.php:869
1189
+ msgid ""
1190
+ "Define the max number of words of the caption when <i>Recent posts "
1191
+ "caption</i> is set to <i>Auto excerpt</i>."
1192
+ msgstr ""
1193
+ "Definieren Sie die maximale Anzahl von Wörtern der Beschriftung, wenn für "
1194
+ "die Überschrift &quot; <i>Letzte Beiträge&quot; die Option &quot;</i> "
1195
+ "<i>Auto-Auszug&quot; festgelegt ist</i> ."
1196
+
1197
+ # automatic translation
1198
+ #: admin/include/fields.php:875
1199
+ msgid "Caption Vertical Alignment"
1200
+ msgstr "Beschriftung Vertikale Ausrichtung"
1201
+
1202
+ # automatic translation
1203
+ #: admin/include/fields.php:877
1204
+ msgid "Choose the vertical alignment of the caption"
1205
+ msgstr "Wählen Sie die vertikale Ausrichtung der Beschriftung"
1206
+
1207
+ # automatic translation
1208
+ #: admin/include/fields.php:889
1209
+ msgid "Caption Horizontal Alignment"
1210
+ msgstr "Beschriftung Horizontale Ausrichtung"
1211
+
1212
+ # automatic translation
1213
+ #: admin/include/fields.php:891
1214
+ msgid "Choose the horizontal alignment of the caption"
1215
+ msgstr "Wählen Sie die horizontale Ausrichtung der Beschriftung"
1216
+
1217
+ # automatic translation
1218
+ #: admin/include/fields.php:903
1219
+ msgid "Title font size"
1220
+ msgstr "Titelschriftgröße"
1221
+
1222
+ # automatic translation
1223
+ #: admin/include/fields.php:916
1224
+ msgid "Zoom"
1225
+ msgstr "Zoomen"
1226
+
1227
+ # automatic translation
1228
+ #: admin/include/fields.php:918
1229
+ msgid "Scale value."
1230
+ msgstr "Skalierungswert"
1231
+
1232
+ # automatic translation
1233
+ #: admin/include/fields.php:928
1234
+ msgid "Rotation"
1235
+ msgstr "Drehung"
1236
+
1237
+ # automatic translation
1238
+ #: admin/include/fields.php:930
1239
+ msgid "Rotation value in degrees."
1240
+ msgstr "Drehwert in Grad."
1241
+
1242
+ # automatic translation
1243
+ #: admin/include/fields.php:939 admin/include/fields.php:959
1244
+ msgid "Duration"
1245
+ msgstr "Dauer"
1246
+
1247
+ # automatic translation
1248
+ #: admin/include/fields.php:950
1249
+ msgid "Rotate icon"
1250
+ msgstr "Symbol drehen"
1251
+
1252
+ # automatic translation
1253
+ #: admin/include/fields.php:953
1254
+ msgid "Enable rotation of the icon."
1255
+ msgstr "Rotation des Symbols aktivieren."
1256
+
1257
+ # automatic translation
1258
+ #: admin/include/fields.php:970
1259
+ msgid "Easing curve"
1260
+ msgstr "Lockerungskurve"
1261
+
1262
+ # automatic translation
1263
+ #: admin/include/fields.php:972
1264
+ msgid "Choose the easing curve for the loading effect animation"
1265
+ msgstr "Wählen Sie die Beschleunigungskurve für die Ladeeffektanimation"
1266
+
1267
+ # automatic translation
1268
+ #: admin/include/fields.php:989
1269
+ msgid "Vertical scaling"
1270
+ msgstr "Vertikale Skalierung"
1271
+
1272
+ # automatic translation
1273
+ #: admin/include/fields.php:1000
1274
+ msgid "Horizontal scaling"
1275
+ msgstr "Horizontale Skalierung"
1276
+
1277
+ # automatic translation
1278
+ #: admin/include/fields.php:1011
1279
+ msgid "Vertical rotation"
1280
+ msgstr "Vertikale Drehung"
1281
+
1282
+ # automatic translation
1283
+ #: admin/include/fields.php:1022
1284
+ msgid "Horizontal rotation"
1285
+ msgstr "Horizontale Drehung"
1286
+
1287
+ # automatic translation
1288
+ #: admin/include/fields.php:1033
1289
+ msgid "Horizontal slide"
1290
+ msgstr "Horizontale Folie"
1291
+
1292
+ # automatic translation
1293
+ #: admin/include/fields.php:1044
1294
+ msgid "Vertical slide"
1295
+ msgstr "Vertikale Folie"
1296
+
1297
+ # automatic translation
1298
+ #: admin/include/fields.php:1055
1299
+ msgid "Border size"
1300
+ msgstr "Rahmengrösse"
1301
+
1302
+ # automatic translation
1303
+ #: admin/include/fields.php:1057
1304
+ msgid "Size of the border of each image."
1305
+ msgstr "Größe des Randes jedes Bildes."
1306
+
1307
+ # automatic translation
1308
+ #: admin/include/fields.php:1066
1309
+ msgid "Border radius"
1310
+ msgstr "Grenzradius"
1311
+
1312
+ # automatic translation
1313
+ #: admin/include/fields.php:1068
1314
+ msgid "Border radius of the images."
1315
+ msgstr "Rahmenradius der Bilder."
1316
+
1317
+ # automatic translation
1318
+ #: admin/include/fields.php:1077
1319
+ msgid "Border color"
1320
+ msgstr "Randfarbe"
1321
+
1322
+ # automatic translation
1323
+ #: admin/include/fields.php:1079
1324
+ msgid "Color of the border when size is greater than 0."
1325
+ msgstr "Farbe des Rahmens, wenn Größe größer als 0 ist."
1326
+
1327
+ # automatic translation
1328
+ #: admin/include/fields.php:1085
1329
+ msgid "Loading Bar color"
1330
+ msgstr "Farbe des Ladebalkens"
1331
+
1332
+ # automatic translation
1333
+ #: admin/include/fields.php:1087
1334
+ msgid "Color of the loading bar"
1335
+ msgstr "Farbe der Ladeleiste"
1336
+
1337
+ # automatic translation
1338
+ #: admin/include/fields.php:1093
1339
+ msgid "Loading Bar background color"
1340
+ msgstr "Hintergrundfarbe des Ladebalkens"
1341
+
1342
+ # automatic translation
1343
+ #: admin/include/fields.php:1095
1344
+ msgid "Background color of the loading bar"
1345
+ msgstr "Hintergrundfarbe des Ladebalkens"
1346
+
1347
+ # automatic translation
1348
+ #: admin/include/fields.php:1101
1349
+ msgid "Shadow size"
1350
+ msgstr "Schattengröße"
1351
+
1352
+ # automatic translation
1353
+ #: admin/include/fields.php:1103
1354
+ msgid "Shadow size of the images."
1355
+ msgstr "Schattengröße der Bilder."
1356
+
1357
+ # automatic translation
1358
+ #: admin/include/fields.php:1112
1359
+ msgid "Shadow color"
1360
+ msgstr "Schattenfarbe"
1361
+
1362
+ # automatic translation
1363
+ #: admin/include/fields.php:1114
1364
+ msgid "Color of the shadow when size is greater than 0."
1365
+ msgstr "Farbe des Schattens, wenn die Größe größer als 0 ist."
1366
+
1367
+ # automatic translation
1368
+ #: admin/include/fields.php:1120
1369
+ msgid "Tile background color"
1370
+ msgstr "Fliese Hintergrundfarbe"
1371
+
1372
+ # automatic translation
1373
+ #: admin/include/fields.php:1122
1374
+ msgid "Background color of tiles"
1375
+ msgstr "Hintergrundfarbe der Fliesen"
1376
+
1377
+ # automatic translation
1378
+ #: admin/include/fields.php:1128
1379
+ msgid "Additional CSS class on A tag"
1380
+ msgstr "Zusätzliche CSS-Klasse für ein A-Tag"
1381
+
1382
+ # automatic translation
1383
+ #: admin/include/fields.php:1130
1384
+ msgid ""
1385
+ "Use this field if you need to add additional CSS classes to the link that "
1386
+ "contains the image."
1387
+ msgstr ""
1388
+ "Verwenden Sie dieses Feld, wenn Sie dem Link, der das Bild enthält, weitere "
1389
+ "CSS-Klassen hinzufügen müssen."
1390
+
1391
+ # automatic translation
1392
+ #: admin/include/fields.php:1138
1393
+ msgid ""
1394
+ "Use this field if you need to add additional CSS classes to the link that "
1395
+ "contains the image. This is useful mostly to integrate the gallery with "
1396
+ "other lightbox plugins."
1397
+ msgstr ""
1398
+ "Verwenden Sie dieses Feld, wenn Sie dem Link, der das Bild enthält, weitere "
1399
+ "CSS-Klassen hinzufügen müssen. Dies ist vor allem nützlich, um die Galerie "
1400
+ "mit anderen Lightbox-Plugins zu integrieren."
1401
+
1402
+ # automatic translation
1403
+ #: admin/include/fields.php:1144
1404
+ msgid "Text before gallery"
1405
+ msgstr "Text vor der Galerie"
1406
+
1407
+ # automatic translation
1408
+ #: admin/include/fields.php:1146
1409
+ msgid "Use this field to add text/html to be placed just before your gallery."
1410
+ msgstr ""
1411
+ "Verwenden Sie dieses Feld, um Text / HTML hinzuzufügen, der direkt vor "
1412
+ "Ihrer Galerie platziert werden soll."
1413
+
1414
+ # automatic translation
1415
+ #: admin/include/fields.php:1153
1416
+ msgid "Text after gallery"
1417
+ msgstr "Text nach Galerie"
1418
+
1419
+ # automatic translation
1420
+ #: admin/include/fields.php:1155
1421
+ msgid "Use this field to add text/html to be placed just after your gallery."
1422
+ msgstr ""
1423
+ "Verwenden Sie dieses Feld, um Text / HTML hinzuzufügen, der direkt hinter "
1424
+ "Ihrer Galerie platziert werden soll."
1425
+
1426
+ # automatic translation
1427
+ #: admin/include/fields.php:1162
1428
+ msgid "Custom CSS"
1429
+ msgstr "Benutzerdefinierte CSS"
1430
+
1431
+ # automatic translation
1432
+ #: admin/include/fields.php:1164
1433
+ msgid ""
1434
+ "<strong>Write just the code without using the &lt;style&gt; "
1435
+ "tag.</strong><br>List of useful selectors:<br>\n"
1436
+ " <br>\n"
1437
+ " <ul>\n"
1438
+ " <li>\n"
1439
+ " <em>.final-tiles-gallery</em> : gallery container;\n"
1440
+ " </li>\n"
1441
+ " <li>\n"
1442
+ " <em>.final-tiles-gallery .tile-inner</em> : tile content;\n"
1443
+ " </li>\n"
1444
+ " <li>\n"
1445
+ " <em>.final-tiles-gallery .tile-inner .item</em> : image of "
1446
+ "the tile;\n"
1447
+ " </li>\n"
1448
+ " <li>\n"
1449
+ " <em>.final-tiles-gallery .tile-inner .caption</em> : "
1450
+ "caption of the tile;\n"
1451
+ " </li>\n"
1452
+ " <li>\n"
1453
+ " <em>.final-tiles-gallery .ftg-filters</em> : filters "
1454
+ "container\n"
1455
+ " </li>\n"
1456
+ " <li>\n"
1457
+ " <em>.final-tiles-gallery .ftg-filters a</em> : filter\n"
1458
+ " </li>\n"
1459
+ " <li>\n"
1460
+ " <em>.final-tiles-gallery .ftg-filters a.selected</em> : "
1461
+ "selected filter\n"
1462
+ " </li>\n"
1463
+ " </ul>"
1464
+ msgstr ""
1465
+ "<strong>Schreiben Sie nur den Code, ohne das &lt;style&gt; -Tag zu "
1466
+ "verwenden.</strong> <br> Liste nützlicher Selektoren: <br><br><ul><li> "
1467
+ "<em>.final-tile-gallery</em> : Galeriecontainer; </li><li> "
1468
+ "<em>.finalfliesen-galerie .flieseninnere</em> : Flieseninhalt; </li><li> "
1469
+ "<em>.finalfliesen-galerie .fliesen-inneres .item</em> : bild der "
1470
+ "<em>fliese</em> ; </li><li> <em>.finalfliesen-galerie "
1471
+ ".flieseninnerecaption</em> : beschriftung der <em>fliese</em> ; </li><li> "
1472
+ "<em>.final-tile-gallery .ftg-filters</em> : filtert den Container </li><li> "
1473
+ "<em>.final-tile-gallery .ftg-Filter a</em> : filter </li><li> "
1474
+ "<em>.final-tile-gallery .ftg-filters a.selected</em> : selected filter "
1475
+ "</li></ul>"
1476
+
1477
+ # automatic translation
1478
+ #: admin/include/fields.php:1195
1479
+ msgid "Custom scripts"
1480
+ msgstr "Benutzerdefinierte Skripte"
1481
+
1482
+ # automatic translation
1483
+ #: admin/include/fields.php:1197
1484
+ msgid ""
1485
+ "This script will be called after the gallery initialization. Useful for "
1486
+ "custom lightboxes.\n"
1487
+ " <br />\n"
1488
+ " <br />\n"
1489
+ " <strong>Write just the code without using the "
1490
+ "&lt;script&gt;&lt;/script&gt; tags</strong>"
1491
+ msgstr ""
1492
+ "Dieses Skript wird nach der Initialisierung der Galerie aufgerufen. "
1493
+ "Nützlich für benutzerdefinierte Leuchtkästen. <br /><br /> "
1494
+ "<strong>Schreiben Sie nur den Code, ohne die Tags &lt;script&gt; &lt;/ "
1495
+ "script&gt; zu verwenden</strong>"
1496
+
1497
+ # automatic translation
1498
+ #: admin/include/fields.php:1207
1499
+ msgid "Delay"
1500
+ msgstr "Verzögern"
1501
+
1502
+ # automatic translation
1503
+ #: admin/include/fields.php:1209
1504
+ msgid ""
1505
+ "Delay (in milliseconds) before firing the gallery. Sometimes it's needed to "
1506
+ "avoid conflicts with other plugins."
1507
+ msgstr ""
1508
+ "Verzögerung (in Millisekunden), bevor die Galerie abgefeuert wird. Manchmal "
1509
+ "ist es erforderlich, um Konflikte mit anderen Plugins zu vermeiden."
1510
+
1511
+ # automatic translation
1512
+ #: admin/include/fields.php:1218
1513
+ msgid "Show developer link"
1514
+ msgstr "Entwicklerlink anzeigen"
1515
+
1516
+ # automatic translation
1517
+ #: admin/include/fields.php:1220
1518
+ msgid "I want to support this plugin, show the developer link!"
1519
+ msgstr "Ich möchte dieses Plugin unterstützen, den Entwicklerlink anzeigen!"
1520
+
1521
+ # automatic translation
1522
+ #: admin/include/fields.php:1228
1523
+ msgid "Developer link text"
1524
+ msgstr "Entwickler-Link-Text"
1525
+
1526
+ # automatic translation
1527
+ #: admin/include/fields.php:1230
1528
+ msgid "Text for the developer link"
1529
+ msgstr "Text für den Entwicklerlink"
1530
+
1531
+ # automatic translation
1532
+ #: admin/include/fields.php:1236
1533
+ msgid "Number of columns (Tablet landscape)"
1534
+ msgstr "Anzahl der Spalten (Tablet-Landschaft)"
1535
+
1536
+ # automatic translation
1537
+ #: admin/include/fields.php:1246
1538
+ msgid "Number of columns (Tablet portrait)"
1539
+ msgstr "Anzahl der Spalten (Tablet Portrait)"
1540
+
1541
+ # automatic translation
1542
+ #: admin/include/fields.php:1256
1543
+ msgid "Number of columns (Phone landscape)"
1544
+ msgstr "Anzahl der Spalten (Telefonlandschaft)"
1545
+
1546
+ # automatic translation
1547
+ #: admin/include/fields.php:1266
1548
+ msgid "Number of columns (Phone portrait)"
1549
+ msgstr "Anzahl der Spalten (Telefonportrait)"
1550
+
1551
+ # automatic translation
1552
+ #: admin/include/fields.php:1276
1553
+ msgid "Image size factor"
1554
+ msgstr "Faktor für die Bildgröße"
1555
+
1556
+ # automatic translation
1557
+ #: admin/include/fields.php:1278
1558
+ msgid ""
1559
+ "Percentage of image size, i.e.: if an image of the gallery is 300x200 and "
1560
+ "the size factor is 50% then the resulting image will be 150x100.\n"
1561
+ " 90% is a suggested default value, because under some "
1562
+ "circumstances, the images could be enlarged by the script (to fill gaps and "
1563
+ "avoid blank spaces between tiles)."
1564
+ msgstr ""
1565
+ "Prozentsatz der Bildgröße, d. H .: wenn ein Bild der Galerie 300 x 200 ist "
1566
+ "und der Größenfaktor 50% beträgt, wird das resultierende Bild 150 x 100 "
1567
+ "sein.\n"
1568
+ "            90% ist ein empfohlener Standardwert, da die Bilder unter "
1569
+ "Umständen durch das Skript vergrößert werden können (um Lücken zu füllen "
1570
+ "und Leerzeichen zwischen Kacheln zu vermeiden)."
1571
+
1572
+ # automatic translation
1573
+ #: admin/include/fields.php:1290
1574
+ msgid ""
1575
+ "Image size factor to apply when the viewport is 1024px, typically for "
1576
+ "tablets with landscape orientation"
1577
+ msgstr ""
1578
+ "Der Bildgrößenfaktor, der angewendet werden soll, wenn der "
1579
+ "Darstellungsbereich 1024 Pixel beträgt, normalerweise für Tablets mit "
1580
+ "Querformat"
1581
+
1582
+ # automatic translation
1583
+ #: admin/include/fields.php:1299
1584
+ msgid "Image size factor Tablet Portrait"
1585
+ msgstr "Bildgrößenfaktor Tablet Portrait"
1586
+
1587
+ # automatic translation
1588
+ #: admin/include/fields.php:1301
1589
+ msgid ""
1590
+ "Image size factor to apply when the viewport is 768px, typically for "
1591
+ "tablets with portrait orientation"
1592
+ msgstr ""
1593
+ "Der Bildgrößenfaktor, der angewendet werden soll, wenn der "
1594
+ "Darstellungsbereich 768 Pixel beträgt, normalerweise für Tablets mit "
1595
+ "Hochformat"
1596
+
1597
+ # automatic translation
1598
+ #: admin/include/fields.php:1310
1599
+ msgid "Image size factor Smartphone Landscape"
1600
+ msgstr "Bildgrößenfaktor Smartphone-Landschaft"
1601
+
1602
+ # automatic translation
1603
+ #: admin/include/fields.php:1312
1604
+ msgid ""
1605
+ "Image size factor to apply when the viewport is 640px, typically for "
1606
+ "smartphones with landscape orientation"
1607
+ msgstr ""
1608
+ "Bildgrößenfaktor, der angewendet werden soll, wenn der Darstellungsbereich "
1609
+ "640 Pixel beträgt, normalerweise für Smartphones mit Querformat"
1610
+
1611
+ # automatic translation
1612
+ #: admin/include/fields.php:1321
1613
+ msgid "Image size factor Phone Portrait"
1614
+ msgstr "Bildgrößenfaktor Telefonporträt"
1615
+
1616
+ # automatic translation
1617
+ #: admin/include/fields.php:1323
1618
+ msgid ""
1619
+ "Image size factor to apply when the viewport is 320px, typically for "
1620
+ "smartphones with portrait orientation"
1621
+ msgstr ""
1622
+ "Der Bildgrößenfaktor, der angewendet werden soll, wenn der "
1623
+ "Darstellungsbereich 320 Pixel beträgt, normalerweise für Smartphones mit "
1624
+ "Hochformat"
1625
+
1626
+ # automatic translation
1627
+ #: admin/include/fields.php:1332
1628
+ msgid "Custom image size factor"
1629
+ msgstr "Benutzerdefinierter Bildgrößenfaktor"
1630
+
1631
+ # automatic translation
1632
+ #: admin/include/fields.php:1338
1633
+ msgid ""
1634
+ "Use this field if you need further resolutions. Make custom layout for any "
1635
+ "device and resolution."
1636
+ msgstr ""
1637
+ "Verwenden Sie dieses Feld, wenn Sie weitere Auflösungen benötigen. "
1638
+ "Erstellen Sie ein benutzerdefiniertes Layout für jedes Gerät und die "
1639
+ "Auflösung."
1640
+
1641
+ # automatic translation
1642
+ #: admin/include/fields.php:1346
1643
+ msgid "Compress HTML"
1644
+ msgstr "HTML komprimieren"
1645
+
1646
+ # automatic translation
1647
+ #: admin/include/fields.php:1348
1648
+ msgid ""
1649
+ "Enable or disable HTML compression, some themes prefer uncompressed, switch "
1650
+ "it off in case of problems."
1651
+ msgstr ""
1652
+ "Aktivieren oder deaktivieren Sie die HTML-Komprimierung. Einige Designs "
1653
+ "bevorzugen die Komprimierung. Schalten Sie sie bei Problemen aus."
1654
+
1655
+ # automatic translation
1656
+ #: admin/include/fields.php:1354
1657
+ msgid "Tile minimum width"
1658
+ msgstr "Mindestbreite der Fliese"
1659
+
1660
+ # automatic translation
1661
+ #: admin/include/fields.php:1356
1662
+ msgid ""
1663
+ "Minimum width of each tile, <strong>multiply this value for the image size "
1664
+ "factor to get the real size</strong>."
1665
+ msgstr ""
1666
+ "Minimale Breite jeder Kachel: <strong>Multiplizieren Sie diesen Wert für "
1667
+ "den Bildgrößenfaktor, um die tatsächliche Größe zu erhalten</strong> ."
1668
+
1669
+ # automatic translation
1670
+ #: admin/include/fields.php:1365
1671
+ msgid "Allow image enlargement"
1672
+ msgstr "Bildvergrößerung zulassen"
1673
+
1674
+ # automatic translation
1675
+ #: admin/include/fields.php:1367
1676
+ msgid ""
1677
+ "Images can be occasionally enlarged to avoid gaps. If you notice a quality "
1678
+ "loss try to reduce the <strong>Image size factor</strong> parameter."
1679
+ msgstr ""
1680
+ "Bilder können gelegentlich vergrößert werden, um Lücken zu vermeiden. Wenn "
1681
+ "Sie einen Qualitätsverlust feststellen, reduzieren Sie den Parameter für "
1682
+ "den <strong>Bildgrößenfaktor</strong> ."
1683
+
1684
+ # automatic translation
1685
+ #: admin/include/fields.php:1376
1686
+ msgid "Write here the label for the 'All' filter"
1687
+ msgstr "Schreiben Sie hier das Etikett für den Filter \"Alle\""
1688
+
1689
+ # automatic translation
1690
+ #: admin/overview.php:19
1691
+ msgid "Welcome to Final Tiles Grid Gallery!"
1692
+ msgstr "Willkommen in der Final Tiles Grid Gallery!"
1693
+
1694
+ # automatic translation
1695
+ #: admin/overview.php:21
1696
+ msgid "Create your first awesome gallery, click"
1697
+ msgstr "Erstellen Sie Ihre erste großartige Galerie, klicken Sie auf"
1698
+
1699
+ # automatic translation
1700
+ #: admin/overview.php:105
1701
+ msgid "Galleries"
1702
+ msgstr "Galerien"
1703
+
1704
+ # automatic translation
1705
+ #: admin/overview.php:108
1706
+ msgid "Add gallery"
1707
+ msgstr "Galerie hinzufügen"
1708
+
1709
+ # automatic translation
1710
+ #: admin/overview.php:122
1711
+ msgid "Confirmation"
1712
+ msgstr "Bestätigung"
1713
+
1714
+ # automatic translation
1715
+ #: admin/overview.php:123
1716
+ msgid "Do you really want to delete the gallery"
1717
+ msgstr "Möchten Sie die Galerie wirklich löschen?"
1718
+
1719
+ # automatic translation
1720
+ #: admin/overview.php:126
1721
+ msgid "Yes"
1722
+ msgstr "Ja"
1723
+
1724
+ # automatic translation
1725
+ #: admin/overview.php:127
1726
+ msgid "No"
1727
+ msgstr "Nein"
1728
+
1729
+ # automatic translation
1730
+ #: admin/overview.php:134
1731
+ msgid "Copy and paste the following shortcode inside a post, page or widget:"
1732
+ msgstr ""
1733
+ "Kopieren Sie den folgenden Kurzcode und fügen Sie ihn in einen Beitrag, "
1734
+ "eine Seite oder ein Widget ein:"
1735
+
1736
+ # automatic translation
1737
+ #: scripts/gutenberg_block.js:18
1738
+ msgid "Final Tiles Gallery"
1739
+ msgstr "Final Tiles Gallery"
1740
+
1741
+ # automatic translation
1742
+ #: scripts/gutenberg_block.js:65
1743
+ msgid "Shortcode parameters"
1744
+ msgstr "Shortcode-Parameter"
1745
+
1746
+ # automatic translation
1747
+ #: scripts/gutenberg_block.js:69
1748
+ msgid "Select gallery layout"
1749
+ msgstr "Galerie-Layout auswählen"
1750
+
1751
+ # automatic translation
1752
+ #: scripts/gutenberg_block.js:72
1753
+ msgid "Masonry"
1754
+ msgstr "Mauerwerk"
1755
+
1756
+ # automatic translation
1757
+ #: scripts/gutenberg_block.js:73
1758
+ msgid "Final Tiles"
1759
+ msgstr "Schlussfliesen"
1760
+
1761
+ # automatic translation
1762
+ #: scripts/gutenberg_block.js:77
1763
+ msgid "Shortcode Attributes"
1764
+ msgstr "Shortcode-Attribute"
1765
+
1766
+ # automatic translation
1767
+ #: scripts/gutenberg_block.js:84
1768
+ msgid ""
1769
+ "Space separated list of attributes. Example: margin=\"10\" "
1770
+ "loaded_easing=\"linear\" min_tile_width=\"250\""
1771
+ msgstr ""
1772
+ "Leerzeichen getrennte Liste der Attribute. Beispiel: margin = \"10\" "
1773
+ "loaded_easing = \"linear\" min_tile_width = \"250\""
1774
+
1775
+ # automatic translation
1776
+ #: scripts/gutenberg_block.js:102
1777
+ msgid "You don't seem to have any galleries."
1778
+ msgstr "Sie scheinen keine Galerien zu haben."
1779
+
1780
+ # automatic translation
1781
+ msgid "General"
1782
+ msgstr "Allgemeines"
1783
+
1784
+ # automatic translation
1785
+ msgid "Advanced"
1786
+ msgstr "Erweitert"
1787
+
1788
+ # automatic translation
1789
+ msgid "Style"
1790
+ msgstr "Stil"
1791
+
1792
+ # automatic translation
1793
+ msgid "Captions"
1794
+ msgstr "Bildunterschriften"
1795
+
1796
+ # automatic translation
1797
+ msgid "Hover effects"
1798
+ msgstr "Hover-Effekte"
1799
+
1800
+ # automatic translation
1801
+ msgid "Image loaded effects"
1802
+ msgstr "Bild geladene Effekte"
1803
+
1804
+ # automatic translation
1805
+ msgid "Customizations"
1806
+ msgstr "Anpassungen"
1807
+
1808
+ # automatic translation
1809
+ msgid "Text for 'All' filter"
1810
+ msgstr "Text für den Filter \"Alle\""
languages/final-tiles-grid-gallery-lite-de_DE.mo ADDED
Binary file
languages/final-tiles-grid-gallery-lite-de_DE.po ADDED
@@ -0,0 +1,1810 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "PO-Revision-Date: 2019-05-05 13:06+0200\n"
5
+ "Language-Team: \n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=utf-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "X-Generator: Poedit 2.2.1\n"
10
+ "X-Poedit-Basepath: ..\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "POT-Creation-Date: \n"
14
+ "Last-Translator: \n"
15
+ "Language: de\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "X-Poedit-SearchPath-1: admin\n"
18
+ "X-Poedit-SearchPath-2: admin/include\n"
19
+
20
+ # automatic translation
21
+ #: FinalTilesGalleryLite.php:622 scripts/gutenberg_block.js:95
22
+ msgid "Select gallery"
23
+ msgstr "Galerie auswählen"
24
+
25
+ # automatic translation
26
+ #: FinalTilesGalleryLite.php:722
27
+ msgid ""
28
+ "Hey, I noticed you created a photo gallery with Final Tiles - that’s "
29
+ "awesome! Would you mind give it a 5-star rating on WordPress to help us "
30
+ "spread the word and boost our motivation for new featrues?"
31
+ msgstr ""
32
+ "Hey, ich habe bemerkt, dass Sie mit Final Tiles eine Fotogalerie erstellt "
33
+ "haben - das ist großartig! Würde es Ihnen etwas ausmachen, WordPress mit 5 "
34
+ "Sternen zu bewerten, um uns zu verbreiten und die Motivation für neue "
35
+ "Aufgaben zu erhöhen?"
36
+
37
+ # automatic translation
38
+ #: FinalTilesGalleryLite.php:723
39
+ msgid "Diego Imbriani<br>Founder of GreenTreeLabs"
40
+ msgstr "Diego Imbriani <br> Gründer der GreenTreeLabs"
41
+
42
+ # automatic translation
43
+ #: FinalTilesGalleryLite.php:725
44
+ msgid "Ok, you deserve it"
45
+ msgstr "Ok, du hast es verdient"
46
+
47
+ # automatic translation
48
+ #: FinalTilesGalleryLite.php:726
49
+ msgid "Nope, maybe later"
50
+ msgstr "Nein, vielleicht später"
51
+
52
+ # automatic translation
53
+ #: FinalTilesGalleryLite.php:727
54
+ msgid "I already did"
55
+ msgstr "Ich habe es bereits getan"
56
+
57
+ # automatic translation
58
+ #: FinalTilesGalleryLite.php:767
59
+ #, php-format
60
+ msgid ""
61
+ "Please rate <strong>Final Tiles Gallery</strong> <a href=\"%s\" "
62
+ "target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%s\" "
63
+ "target=\"_blank\">WordPress.org</a> to help us spread the word. Thank you "
64
+ "from the Final Tiles Gallery team!"
65
+ msgstr ""
66
+ "Bitte bewerten Sie <strong>Final Tiles Gallery</strong> <a href=\"%s\" "
67
+ "target=\"_blank\">★★★★★</a> auf <a href=\"%s\" "
68
+ "target=\"_blank\">WordPress.org</a> , um uns bei der Verbreitung zu "
69
+ "unterstützen. Vielen Dank vom Team der Final Tiles Gallery!"
70
+
71
+ # automatic translation
72
+ #: FinalTilesGalleryLite.php:1101
73
+ msgid "FinalTiles Gallery >> Add Gallery"
74
+ msgstr "FinalTiles-Galerie >> Galerie hinzufügen"
75
+
76
+ # automatic translation
77
+ #: FinalTilesGalleryLite.php:1101 scripts/gutenberg_block.js:107
78
+ msgid "Add Gallery"
79
+ msgstr "Galerie hinzufügen"
80
+
81
+ # automatic translation
82
+ #: admin/add-gallery.php:1 admin/overview.php:1
83
+ msgid "You are not allowed to call this page directly."
84
+ msgstr "Sie dürfen diese Seite nicht direkt aufrufen."
85
+
86
+ # automatic translation
87
+ #: admin/add-gallery.php:10
88
+ msgid "Add new gallery wizard"
89
+ msgstr "Neuen Galerie-Assistenten hinzufügen"
90
+
91
+ # automatic translation
92
+ #: admin/add-gallery.php:23
93
+ msgid "Name of the gallery"
94
+ msgstr "Name der Galerie"
95
+
96
+ # automatic translation
97
+ #: admin/add-gallery.php:28
98
+ msgid "Description of the gallery"
99
+ msgstr "Beschreibung der Galerie"
100
+
101
+ # automatic translation
102
+ #: admin/add-gallery.php:32
103
+ msgid "Choose the source of the images"
104
+ msgstr "Wählen Sie die Quelle der Bilder"
105
+
106
+ # automatic translation
107
+ #: admin/add-gallery.php:35
108
+ msgid "Media library"
109
+ msgstr "Medienbibliothek"
110
+
111
+ # automatic translation
112
+ #: admin/add-gallery.php:40 admin/include/edit-gallery.php:103
113
+ msgid "Recent posts with featured image"
114
+ msgstr "Aktuelle Beiträge mit vorgestellten Bildern"
115
+
116
+ # automatic translation
117
+ #: admin/add-gallery.php:43
118
+ msgid "Recent posts"
119
+ msgstr "Kürzliche Posts"
120
+
121
+ # automatic translation
122
+ #: admin/add-gallery.php:44 admin/add-gallery.php:61
123
+ #: admin/include/edit-gallery.php:321
124
+ msgid "Unlock this feature. Upgrade Now!"
125
+ msgstr "Entsperren Sie diese Funktion. Jetzt upgraden!"
126
+
127
+ # automatic translation
128
+ #: admin/add-gallery.php:57 admin/add-gallery.php:60
129
+ #: admin/include/edit-gallery.php:106
130
+ msgid "WooCommerce products"
131
+ msgstr "WooCommerce-Produkte"
132
+
133
+ # automatic translation
134
+ #: admin/add-gallery.php:68
135
+ msgid "WordPress field for captions:"
136
+ msgstr "WordPress-Feld für Bildunterschriften:"
137
+
138
+ # automatic translation
139
+ #: admin/add-gallery.php:78
140
+ msgid "WordPress field for titles:"
141
+ msgstr "WordPress-Feld für Titel:"
142
+
143
+ # automatic translation
144
+ #: admin/add-gallery.php:103
145
+ msgid "Caption effect:"
146
+ msgstr "Caption-Effekt:"
147
+
148
+ # automatic translation
149
+ #: admin/add-gallery.php:105
150
+ msgid "Fade"
151
+ msgstr "Verblassen"
152
+
153
+ # automatic translation
154
+ #: admin/add-gallery.php:107 admin/add-gallery.php:114
155
+ msgid "Fixed"
156
+ msgstr "Fest"
157
+
158
+ # automatic translation
159
+ #: admin/add-gallery.php:108 admin/add-gallery.php:115
160
+ msgid "Fixed with background"
161
+ msgstr "Fixiert mit Hintergrund"
162
+
163
+ # automatic translation
164
+ #: admin/add-gallery.php:109 admin/add-gallery.php:116
165
+ msgid "Fixed, hidden on hover"
166
+ msgstr "Behoben, im Hover ausgeblendet"
167
+
168
+ # automatic translation
169
+ #: admin/add-gallery.php:110 admin/add-gallery.php:117
170
+ msgid "Fixed at bottom"
171
+ msgstr "Unten fixiert"
172
+
173
+ # automatic translation
174
+ #: admin/add-gallery.php:111 admin/add-gallery.php:118
175
+ msgid "Slide from top"
176
+ msgstr "Schieben Sie von oben"
177
+
178
+ # automatic translation
179
+ #: admin/add-gallery.php:112 admin/add-gallery.php:119
180
+ msgid "Slide from bottom"
181
+ msgstr "Schieben Sie von unten"
182
+
183
+ # automatic translation
184
+ #: admin/add-gallery.php:128
185
+ msgid "Post types:"
186
+ msgstr "Beitragstypen:"
187
+
188
+ # automatic translation
189
+ #: admin/add-gallery.php:140
190
+ msgid "Categories:"
191
+ msgstr "Kategorien:"
192
+
193
+ # automatic translation
194
+ #: admin/add-gallery.php:152
195
+ msgid "Choose the layout"
196
+ msgstr "Wählen Sie das Layout"
197
+
198
+ # automatic translation
199
+ #: admin/add-gallery.php:159
200
+ msgid "Choose a default image size"
201
+ msgstr "Wählen Sie eine Standardbildgröße"
202
+
203
+ # automatic translation
204
+ #: admin/add-gallery.php:168
205
+ msgid "You can customize each image later"
206
+ msgstr "Sie können jedes Bild später anpassen"
207
+
208
+ # automatic translation
209
+ #: admin/add-gallery.php:172
210
+ msgid ""
211
+ "We suggest you to use ShortPixel image optimization plugin for best SEO "
212
+ "results."
213
+ msgstr ""
214
+ "Wir empfehlen Ihnen, das Plug-in für die Bildoptimierung von ShortPixel zu "
215
+ "verwenden, um optimale SEO-Ergebnisse zu erzielen."
216
+
217
+ # automatic translation
218
+ #: admin/add-gallery.php:176 admin/include/edit-gallery.php:119
219
+ msgid "Add images"
220
+ msgstr "Füge Bilder hinzu"
221
+
222
+ # automatic translation
223
+ #: admin/add-gallery.php:178
224
+ msgid "You can add images now or later."
225
+ msgstr "Sie können jetzt oder später Bilder hinzufügen."
226
+
227
+ # automatic translation
228
+ #: admin/add-gallery.php:186
229
+ msgid "Previous"
230
+ msgstr "Bisherige"
231
+
232
+ # automatic translation
233
+ #: admin/add-gallery.php:187
234
+ msgid "Next"
235
+ msgstr "Nächster"
236
+
237
+ # automatic translation
238
+ #: admin/add-gallery.php:192
239
+ msgid "Success!"
240
+ msgstr "Erfolg!"
241
+
242
+ # automatic translation
243
+ #: admin/add-gallery.php:193
244
+ msgid "Your gallery"
245
+ msgstr "Ihre Galerie"
246
+
247
+ # automatic translation
248
+ #: admin/add-gallery.php:193
249
+ msgid "has been created. Copy the following shortcode:"
250
+ msgstr "wurde erschaffen. Kopieren Sie den folgenden Kurzcode:"
251
+
252
+ # automatic translation
253
+ #: admin/add-gallery.php:195
254
+ msgid "and paste it inside a post or a page. Otherwise click"
255
+ msgstr ""
256
+ "und fügen Sie es in einen Beitrag oder eine Seite ein. Andernfalls klicken "
257
+ "Sie auf"
258
+
259
+ # automatic translation
260
+ #: admin/add-gallery.php:195 admin/overview.php:21
261
+ msgid "here"
262
+ msgstr "Hier"
263
+
264
+ # automatic translation
265
+ #: admin/add-gallery.php:195
266
+ msgid ""
267
+ "to customize\n"
268
+ "\t\t\t the gallery."
269
+ msgstr ""
270
+ "anpassen\n"
271
+ "Die Gallerie."
272
+
273
+ # automatic translation
274
+ #: admin/add-gallery.php:200 admin/add-gallery.php:209 admin/overview.php:138
275
+ msgid "Close"
276
+ msgstr "Schließen"
277
+
278
+ # automatic translation
279
+ #: admin/add-gallery.php:205
280
+ msgid "Error!"
281
+ msgstr "Error!"
282
+
283
+ # automatic translation
284
+ #: admin/add-gallery.php:206
285
+ msgid "For some reason it was not possible to save your gallery, please contact"
286
+ msgstr ""
287
+ "Aus irgendeinem Grund konnte Ihre Galerie nicht gespeichert werden. Bitte "
288
+ "wenden Sie sich an"
289
+
290
+ # automatic translation
291
+ #: admin/add-gallery.php:206
292
+ msgid "support"
293
+ msgstr "Unterstützung"
294
+
295
+ # automatic translation
296
+ #: admin/edit-gallery.php:75 admin/include/edit-gallery.php:139
297
+ msgid "Assign group"
298
+ msgstr "Gruppe zuordnen"
299
+
300
+ # automatic translation
301
+ #: admin/edit-gallery.php:76
302
+ msgid ""
303
+ "The group name is for internal use and it won't be shown, avoid space and "
304
+ "special characters"
305
+ msgstr ""
306
+ "Der Gruppenname ist für den internen Gebrauch bestimmt und wird nicht "
307
+ "angezeigt. Vermeiden Sie Leerzeichen und Sonderzeichen"
308
+
309
+ # automatic translation
310
+ #: admin/edit-gallery.php:80 admin/edit-gallery.php:100
311
+ #: admin/include/edit-gallery.php:547 admin/include/edit-gallery.php:612
312
+ msgid "Save"
313
+ msgstr "sparen"
314
+
315
+ # automatic translation
316
+ #: admin/edit-gallery.php:81 admin/edit-gallery.php:101
317
+ #: admin/include/edit-gallery.php:548 admin/include/edit-gallery.php:611
318
+ msgid "Cancel"
319
+ msgstr "Stornieren"
320
+
321
+ # automatic translation
322
+ #: admin/edit-gallery.php:87 admin/include/edit-gallery.php:142
323
+ msgid "Assign filters"
324
+ msgstr "Filter zuweisen"
325
+
326
+ # automatic translation
327
+ #: admin/edit-gallery.php:97
328
+ msgid "If you don't see all filters please save and reload the page"
329
+ msgstr ""
330
+ "Wenn Sie nicht alle Filter sehen, speichern Sie bitte die Seite und laden "
331
+ "Sie sie erneut"
332
+
333
+ # automatic translation
334
+ #: admin/include/edit-gallery.php:96
335
+ msgid "Images"
336
+ msgstr "Bilder"
337
+
338
+ # automatic translation
339
+ #: admin/include/edit-gallery.php:102
340
+ msgid "User images"
341
+ msgstr "Benutzerbilder"
342
+
343
+ # automatic translation
344
+ #: admin/include/edit-gallery.php:123 admin/include/edit-gallery.php:126
345
+ msgid "Add video"
346
+ msgstr "Video hinzufügen"
347
+
348
+ # automatic translation
349
+ #: admin/include/edit-gallery.php:128
350
+ msgid "Remove selected"
351
+ msgstr "Ausgewählte entfernen"
352
+
353
+ # automatic translation
354
+ #: admin/include/edit-gallery.php:133
355
+ msgid "Select all"
356
+ msgstr "Wählen Sie Alle"
357
+
358
+ # automatic translation
359
+ #: admin/include/edit-gallery.php:134
360
+ msgid "Deselect all"
361
+ msgstr "Alle abwählen"
362
+
363
+ # automatic translation
364
+ #: admin/include/edit-gallery.php:135
365
+ msgid "Toggle selection"
366
+ msgstr "Auswahl umschalten"
367
+
368
+ # automatic translation
369
+ #: admin/include/edit-gallery.php:146
370
+ msgid "Toggle visibility"
371
+ msgstr "Sichtbarkeit umschalten"
372
+
373
+ # automatic translation
374
+ #: admin/include/edit-gallery.php:152
375
+ msgid "Select by filter:"
376
+ msgstr "Auswahl durch Filter:"
377
+
378
+ # automatic translation
379
+ #: admin/include/edit-gallery.php:165
380
+ msgid "Add links by clicking the EDIT (pencil) button"
381
+ msgstr "Fügen Sie Links hinzu, indem Sie auf die Schaltfläche EDIT (Stift) klicken"
382
+
383
+ # automatic translation
384
+ #: admin/include/edit-gallery.php:166
385
+ msgid "Drag the images to change their order."
386
+ msgstr "Ziehen Sie die Bilder, um ihre Reihenfolge zu ändern."
387
+
388
+ # automatic translation
389
+ #: admin/include/edit-gallery.php:190
390
+ msgid "Post type:"
391
+ msgstr "Post-Typ:"
392
+
393
+ # automatic translation
394
+ #: admin/include/edit-gallery.php:229
395
+ msgid "Max posts:"
396
+ msgstr "Max Beiträge:"
397
+
398
+ # automatic translation
399
+ #: admin/include/edit-gallery.php:232
400
+ msgid "(enter 0 for unlimited posts)"
401
+ msgstr "(0 für unbegrenzte Beiträge eingeben)"
402
+
403
+ # automatic translation
404
+ #: admin/include/edit-gallery.php:239
405
+ msgid "Categories"
406
+ msgstr "Kategorien"
407
+
408
+ # automatic translation
409
+ #: admin/include/edit-gallery.php:276
410
+ msgid "Jump to setting"
411
+ msgstr "Zur Einstellung springen"
412
+
413
+ # automatic translation
414
+ #: admin/include/edit-gallery.php:308
415
+ msgid "Show help"
416
+ msgstr "Zeig Hilfe"
417
+
418
+ # automatic translation
419
+ #: admin/include/edit-gallery.php:342
420
+ msgid "EverlightBox settings"
421
+ msgstr "EverlightBox-Einstellungen"
422
+
423
+ # automatic translation
424
+ #: admin/include/edit-gallery.php:346
425
+ msgid "EverlightBox not installed"
426
+ msgstr "EverlightBox nicht installiert"
427
+
428
+ # automatic translation
429
+ #: admin/include/edit-gallery.php:346
430
+ msgid "Purchase"
431
+ msgstr "Kauf"
432
+
433
+ # automatic translation
434
+ #: admin/include/edit-gallery.php:383
435
+ msgid "Add filter"
436
+ msgstr "Filter hinzufügen"
437
+
438
+ # automatic translation
439
+ #: admin/include/edit-gallery.php:384
440
+ msgid "Reset selected filter"
441
+ msgstr "Setzen Sie den ausgewählten Filter zurück"
442
+
443
+ # automatic translation
444
+ #: admin/include/edit-gallery.php:399
445
+ msgid "Resolution"
446
+ msgstr "Auflösung"
447
+
448
+ # automatic translation
449
+ #: admin/include/edit-gallery.php:400
450
+ msgid "Size factor"
451
+ msgstr "Größenfaktor"
452
+
453
+ # automatic translation
454
+ #: admin/include/edit-gallery.php:408
455
+ msgid "Add resolution"
456
+ msgstr "Auflösung hinzufügen"
457
+
458
+ # automatic translation
459
+ #: admin/include/edit-gallery.php:419
460
+ msgid "Shortcode attribute"
461
+ msgstr "Kurzcode-Attribut"
462
+
463
+ # automatic translation
464
+ #: admin/include/edit-gallery.php:444 admin/include/edit-gallery.php:447
465
+ #: admin/overview.php:29 admin/overview.php:32 admin/overview.php:85
466
+ #: admin/overview.php:88
467
+ msgid "Upgrade"
468
+ msgstr "Aktualisierung"
469
+
470
+ # automatic translation
471
+ #: admin/include/edit-gallery.php:444 admin/overview.php:29
472
+ #: admin/overview.php:85
473
+ msgid "unlock features"
474
+ msgstr "Funktionen freischalten"
475
+
476
+ # automatic translation
477
+ #: admin/include/edit-gallery.php:453 admin/overview.php:38
478
+ #: admin/overview.php:94
479
+ msgid "discount"
480
+ msgstr "Rabatt"
481
+
482
+ # automatic translation
483
+ #: admin/include/edit-gallery.php:456 admin/overview.php:41
484
+ #: admin/overview.php:97
485
+ msgid "GET 3 plugins"
486
+ msgstr "Holen Sie sich 3 Plugins"
487
+
488
+ # automatic translation
489
+ #: admin/include/edit-gallery.php:464
490
+ msgid "Publish"
491
+ msgstr "Veröffentlichen"
492
+
493
+ # automatic translation
494
+ #: admin/include/edit-gallery.php:468
495
+ msgid "Save gallery"
496
+ msgstr "Galerie speichern"
497
+
498
+ # automatic translation
499
+ #: admin/include/edit-gallery.php:473
500
+ msgid "Import settings"
501
+ msgstr "Importeinstellungen"
502
+
503
+ # automatic translation
504
+ #: admin/include/edit-gallery.php:475
505
+ msgid "Paste Here the configuration code"
506
+ msgstr "Fügen Sie hier den Konfigurationscode ein"
507
+
508
+ # automatic translation
509
+ #: admin/include/edit-gallery.php:477
510
+ msgid "Import"
511
+ msgstr "Einführen"
512
+
513
+ # automatic translation
514
+ #: admin/include/edit-gallery.php:481
515
+ msgid "Export settings"
516
+ msgstr "Exporteinstellungen"
517
+
518
+ # automatic translation
519
+ #: admin/include/edit-gallery.php:483
520
+ msgid "Settings"
521
+ msgstr "die Einstellungen"
522
+
523
+ # automatic translation
524
+ #: admin/include/edit-gallery.php:485
525
+ msgid "Refresh code"
526
+ msgstr "Code aktualisieren"
527
+
528
+ # automatic translation
529
+ #: admin/include/edit-gallery.php:489
530
+ msgid "Help"
531
+ msgstr "Hilfe"
532
+
533
+ # automatic translation
534
+ #: admin/include/edit-gallery.php:494
535
+ msgid "Documentation"
536
+ msgstr "Dokumentation"
537
+
538
+ # automatic translation
539
+ #: admin/include/edit-gallery.php:498
540
+ msgid "Tutorial"
541
+ msgstr "Tutorial"
542
+
543
+ # automatic translation
544
+ #: admin/include/edit-gallery.php:502
545
+ msgid "How to add additional image sizes"
546
+ msgstr "Hinzufügen zusätzlicher Bildgrößen"
547
+
548
+ # automatic translation
549
+ #: admin/include/edit-gallery.php:510
550
+ msgid "FAQ"
551
+ msgstr "FAQ"
552
+
553
+ # automatic translation
554
+ #: admin/include/edit-gallery.php:514
555
+ msgid "How to add a link to a picture?"
556
+ msgstr "Wie füge ich einen Link zu einem Bild hinzu?"
557
+
558
+ # automatic translation
559
+ #: admin/include/edit-gallery.php:516
560
+ msgid ""
561
+ "Click the edit (pencil) icon on the image and insert the link inside the "
562
+ "\"Link\" field"
563
+ msgstr ""
564
+ "Klicken Sie auf das Bearbeitungssymbol (Bleistift) im Bild und fügen Sie "
565
+ "den Link in das Feld \"Link\" ein"
566
+
567
+ # automatic translation
568
+ #: admin/include/edit-gallery.php:520
569
+ msgid "Why my images look blurry?"
570
+ msgstr "Warum sehen meine Bilder unscharf aus?"
571
+
572
+ # automatic translation
573
+ #: admin/include/edit-gallery.php:522
574
+ msgid ""
575
+ "You probably have chosen a small image size. Click the edit (pencil) icon "
576
+ "on the blurry image and choose a larger size. Remember, you can choose the "
577
+ "size before adding the images to the gallery"
578
+ msgstr ""
579
+ "Sie haben wahrscheinlich eine kleine Bildgröße gewählt. Klicken Sie auf das "
580
+ "Bearbeitungssymbol (Bleistift) auf dem verschwommenen Bild und wählen Sie "
581
+ "eine größere Größe. Denken Sie daran, Sie können die Größe auswählen, bevor "
582
+ "Sie die Bilder zur Galerie hinzufügen"
583
+
584
+ # automatic translation
585
+ #: admin/include/edit-gallery.php:537
586
+ msgid "Paste here the embed code (it must be an "
587
+ msgstr "Fügen Sie hier den Einbettungscode ein (es muss ein"
588
+
589
+ # automatic translation
590
+ #: admin/include/edit-gallery.php:537
591
+ msgid "iframe"
592
+ msgstr "iframe"
593
+
594
+ # automatic translation
595
+ #: admin/include/edit-gallery.php:538
596
+ msgid "and it must contain the attributes"
597
+ msgstr "und es muss die Attribute enthalten"
598
+
599
+ # automatic translation
600
+ #: admin/include/edit-gallery.php:538
601
+ msgid "width"
602
+ msgstr "Breite"
603
+
604
+ # automatic translation
605
+ #: admin/include/edit-gallery.php:538
606
+ msgid "and"
607
+ msgstr "und"
608
+
609
+ # automatic translation
610
+ #: admin/include/edit-gallery.php:538
611
+ msgid " height"
612
+ msgstr " Höhe"
613
+
614
+ # automatic translation
615
+ #: admin/include/edit-gallery.php:556
616
+ msgid "Edit image"
617
+ msgstr "Bild bearbeiten"
618
+
619
+ # automatic translation
620
+ #: admin/include/edit-gallery.php:563
621
+ msgid "Title"
622
+ msgstr "Titel"
623
+
624
+ # automatic translation
625
+ #: admin/include/edit-gallery.php:569
626
+ msgid "Caption"
627
+ msgstr "Bildbeschriftung"
628
+
629
+ # automatic translation
630
+ #: admin/include/edit-gallery.php:577
631
+ msgid "Hidden, visible only with lightbox"
632
+ msgstr "Versteckt, nur sichtbar bei Leuchtkasten"
633
+
634
+ # automatic translation
635
+ #: admin/include/edit-gallery.php:581
636
+ msgid "Link"
637
+ msgstr "Verknüpfung"
638
+
639
+ # automatic translation
640
+ #: admin/include/edit-gallery.php:587
641
+ msgid "Link target"
642
+ msgstr "Linkziel"
643
+
644
+ # automatic translation
645
+ #: admin/include/edit-gallery.php:590
646
+ msgid "Default target"
647
+ msgstr "Standardziel"
648
+
649
+ # automatic translation
650
+ #: admin/include/edit-gallery.php:591
651
+ msgid "Open in same page"
652
+ msgstr "In derselben Seite öffnen"
653
+
654
+ # automatic translation
655
+ #: admin/include/edit-gallery.php:592
656
+ msgid "Open in _blank"
657
+ msgstr "In _blank öffnen"
658
+
659
+ # automatic translation
660
+ #: admin/include/edit-gallery.php:593
661
+ msgid "Open in lightbox (when using a lightbox)"
662
+ msgstr "In Lightbox öffnen (bei Verwendung einer Lightbox)"
663
+
664
+ # automatic translation
665
+ #: admin/include/edit-gallery.php:600
666
+ msgid "Lightbox group (rel)"
667
+ msgstr "Lightbox-Gruppe (rel)"
668
+
669
+ # automatic translation
670
+ #: admin/include/edit-gallery.php:602
671
+ msgid ""
672
+ "Used to group images with the following lightbox: Magnific Popup, "
673
+ "PrettyPhoto, FancyBox, SwipeBox, Lightbox"
674
+ msgstr ""
675
+ "Wird verwendet, um Bilder mit der folgenden Lightbox zu gruppieren: "
676
+ "Magnific Popup, PrettyPhoto, FancyBox, SwipeBox, Lightbox"
677
+
678
+ # automatic translation
679
+ #: admin/include/fields.php:163
680
+ msgid "Loading method"
681
+ msgstr "Lademethode"
682
+
683
+ # automatic translation
684
+ #: admin/include/fields.php:184
685
+ msgid "Asynchronous loading"
686
+ msgstr "Asynchrones Laden"
687
+
688
+ # automatic translation
689
+ #: admin/include/fields.php:196
690
+ msgid "Don't enable ajax loading if you need to index your images on search engines"
691
+ msgstr ""
692
+ "Aktivieren Sie das Laden von Ajax nicht, wenn Sie Ihre Bilder in "
693
+ "Suchmaschinen indizieren müssen"
694
+
695
+ # automatic translation
696
+ #: admin/include/fields.php:205
697
+ msgid "Number of images to load via ajax"
698
+ msgstr "Anzahl der Bilder, die über Ajax geladen werden sollen"
699
+
700
+ # automatic translation
701
+ #: admin/include/fields.php:219
702
+ msgid "Name"
703
+ msgstr "Name"
704
+
705
+ # automatic translation
706
+ #: admin/include/fields.php:225
707
+ msgid "Name of the gallery, for internal use."
708
+ msgstr "Name der Galerie für den internen Gebrauch."
709
+
710
+ # automatic translation
711
+ #: admin/include/fields.php:234
712
+ msgid "Description"
713
+ msgstr "Beschreibung"
714
+
715
+ # automatic translation
716
+ #: admin/include/fields.php:240
717
+ msgid "Description of the gallery, for internal use."
718
+ msgstr "Beschreibung der Galerie für den internen Gebrauch."
719
+
720
+ # automatic translation
721
+ #: admin/include/fields.php:249
722
+ msgid "Layout"
723
+ msgstr "Layout"
724
+
725
+ # automatic translation
726
+ #: admin/include/fields.php:251
727
+ msgid ""
728
+ "<strong>Final Tiles</strong>: use images with different "
729
+ "sizes<br><strong>Masonry</strong>: multi-column layout, use this one if you "
730
+ "need images of the same size."
731
+ msgstr ""
732
+ "<strong>Final Tiles</strong> : Verwenden Sie Bilder mit unterschiedlichen "
733
+ "Größen <br> <strong>Mauerwerk</strong> : Mehrspaltiges Layout, wenn Sie "
734
+ "Bilder gleicher Größe benötigen."
735
+
736
+ # automatic translation
737
+ #: admin/include/fields.php:263
738
+ msgid "Width"
739
+ msgstr "Breite"
740
+
741
+ # automatic translation
742
+ #: admin/include/fields.php:265
743
+ msgid "Width of the gallery in pixels or percentage."
744
+ msgstr "Breite der Galerie in Pixel oder Prozent."
745
+
746
+ # automatic translation
747
+ #: admin/include/fields.php:271
748
+ msgid "Margin"
749
+ msgstr "Spanne"
750
+
751
+ # automatic translation
752
+ #: admin/include/fields.php:273
753
+ msgid "Margin between images"
754
+ msgstr "Rand zwischen den Bildern"
755
+
756
+ # automatic translation
757
+ #: admin/include/fields.php:282
758
+ msgid "Number of columns"
759
+ msgstr "Anzahl der Spalten"
760
+
761
+ # automatic translation
762
+ #: admin/include/fields.php:295
763
+ msgid "Images order"
764
+ msgstr "Bilder bestellen"
765
+
766
+ # automatic translation
767
+ #: admin/include/fields.php:297
768
+ msgid "Choose the order of the images"
769
+ msgstr "Wählen Sie die Reihenfolge der Bilder"
770
+
771
+ # automatic translation
772
+ #: admin/include/fields.php:310
773
+ msgid "Filters"
774
+ msgstr "Filter"
775
+
776
+ # automatic translation
777
+ #: admin/include/fields.php:312
778
+ msgid "Manage here all the filters of this gallery"
779
+ msgstr "Verwalten Sie hier alle Filter dieser Galerie"
780
+
781
+ # automatic translation
782
+ #: admin/include/fields.php:322
783
+ msgid "Reload Page on filter click"
784
+ msgstr "Seite nach Filterklick neu laden"
785
+
786
+ # automatic translation
787
+ #: admin/include/fields.php:324
788
+ msgid "Turn this feature ON if you want to use filters with most lightboxes"
789
+ msgstr ""
790
+ "Aktivieren Sie diese Funktion, wenn Sie Filter für die meisten Leuchtkästen "
791
+ "verwenden möchten"
792
+
793
+ # automatic translation
794
+ #: admin/include/fields.php:331
795
+ msgid "Size of the grid"
796
+ msgstr "Größe des Gitters"
797
+
798
+ # automatic translation
799
+ #: admin/include/fields.php:337
800
+ msgid ""
801
+ "Tiles are snapped to a virtual grid, <strong>the higher this value the "
802
+ "higher the chance to get bottom aligned tiles</strong> (but it needs to "
803
+ "crop vertically)."
804
+ msgstr ""
805
+ "Kacheln werden in einem virtuellen Raster gefangen. Je <strong>höher dieser "
806
+ "Wert, desto höher ist die Chance, Kacheln nach unten auszurichten</strong> "
807
+ "(er muss jedoch vertikal zugeschnitten werden)."
808
+
809
+ # automatic translation
810
+ #: admin/include/fields.php:342
811
+ msgid "Disable grid size below resolution"
812
+ msgstr "Deaktivieren Sie die Rastergröße unterhalb der Auflösung"
813
+
814
+ # automatic translation
815
+ #: admin/include/fields.php:348
816
+ msgid ""
817
+ "If you have small tiny images under certain resolutions then you can switch "
818
+ "off grid size (image cropping) when the screen resolution is below this "
819
+ "value."
820
+ msgstr ""
821
+ "Wenn Sie bei bestimmten Auflösungen kleine winzige Bilder haben, können Sie "
822
+ "die Rastergröße (Bildbeschneidung) deaktivieren, wenn die "
823
+ "Bildschirmauflösung unter diesem Wert liegt."
824
+
825
+ # automatic translation
826
+ #: admin/include/fields.php:370 admin/include/fields.php:409
827
+ msgid ""
828
+ "Define here what happens when user click on the images. Lightboxes with "
829
+ "video support: EverlightBox, LightGallery, Magnific popup, Colorbox "
830
+ "(require embed URL)); PrettyPhoto, FancyBox (require embed URL)"
831
+ msgstr ""
832
+ "Definieren Sie hier, was passiert, wenn der Benutzer auf die Bilder klickt. "
833
+ "Lightboxen mit Video-Unterstützung: EverlightBox, LightGallery, "
834
+ "Popup-Popup, Colorbox (URL zum Einbetten erforderlich); PrettyPhoto, "
835
+ "FancyBox (URL zum Einbetten erforderlich)"
836
+
837
+ # automatic translation
838
+ #: admin/include/fields.php:449 admin/include/fields.php:458
839
+ msgid ""
840
+ "Custom options for chosen lightbox. Enter params without curly "
841
+ "braces.<br>Example: <span style='font-family:monospace'>easing: linear, "
842
+ "mode: 'lg-fade'</span>.<br>Documentation: <a "
843
+ "href='http://sachinchoolur.github.io/lightGallery/docs/api.html' "
844
+ "target='_blank'>LightGallery</a>, <a target='_blank' "
845
+ "href='http://dimsemenov.com/plugins/magnific-popup/documentation.html'"
846
+ ">Magnific Popup</a>."
847
+ msgstr ""
848
+ "Benutzerdefinierte Optionen für den ausgewählten Leuchtkasten. Geben Sie "
849
+ "Params ohne geschweifte Klammern ein. <br> Beispiel: <span "
850
+ "style='font-family:monospace'>Beschleunigung: linear, Modus: "
851
+ "&#39;lg-fade&#39;</span> . <br> Dokumentation: <a "
852
+ "href='http://sachinchoolur.github.io/lightGallery/docs/api.html' "
853
+ "target='_blank'>LightGallery</a> , <a target='_blank' "
854
+ "href='http://dimsemenov.com/plugins/magnific-popup/documentation.html'"
855
+ ">Magnific Popup</a> ."
856
+
857
+ # automatic translation
858
+ #: admin/include/fields.php:465
859
+ msgid "Image size for the lightbox"
860
+ msgstr "Bildgröße für die Lightbox"
861
+
862
+ # automatic translation
863
+ #: admin/include/fields.php:475
864
+ msgid "Disable lightbox grouping"
865
+ msgstr "Deaktivieren Sie die Lightbox-Gruppierung"
866
+
867
+ # automatic translation
868
+ #: admin/include/fields.php:477
869
+ msgid ""
870
+ "Flag this option if you don't want to group images when opened in a "
871
+ "lightbox."
872
+ msgstr ""
873
+ "Markieren Sie diese Option, wenn Sie beim Öffnen in einer Lightbox keine "
874
+ "Bilder gruppieren möchten."
875
+
876
+ # automatic translation
877
+ #: admin/include/fields.php:483
878
+ msgid "Links target"
879
+ msgstr "Verknüpfungsziel"
880
+
881
+ # automatic translation
882
+ #: admin/include/fields.php:485
883
+ msgid "Open links in a blank page."
884
+ msgstr "Links auf einer leeren Seite öffnen."
885
+
886
+ # automatic translation
887
+ #: admin/include/fields.php:490
888
+ msgid "Enable Twitter icon"
889
+ msgstr "Aktivieren Sie das Twitter-Symbol"
890
+
891
+ # automatic translation
892
+ #: admin/include/fields.php:492
893
+ msgid "Enable Twitter sharing."
894
+ msgstr "Twitter-Freigabe aktivieren"
895
+
896
+ # automatic translation
897
+ #: admin/include/fields.php:498
898
+ msgid "Enable Facebook icon"
899
+ msgstr "Aktivieren Sie das Facebook-Symbol"
900
+
901
+ # automatic translation
902
+ #: admin/include/fields.php:500
903
+ msgid ""
904
+ "Enable Facebook sharing. Note: after the last version of OpenGraph API it's "
905
+ "not possible to share a specific image anymore."
906
+ msgstr ""
907
+ "Facebook-Freigabe aktivieren Hinweis: Nach der letzten Version von "
908
+ "OpenGraph API ist es nicht mehr möglich, ein bestimmtes Bild weiterzugeben."
909
+
910
+ # automatic translation
911
+ #: admin/include/fields.php:506
912
+ msgid "Enable Google Plus icon"
913
+ msgstr "Aktivieren Sie das Google Plus-Symbol"
914
+
915
+ # automatic translation
916
+ #: admin/include/fields.php:508
917
+ msgid "Enable Google Plus sharing"
918
+ msgstr "Aktivieren Sie die Google Plus-Freigabe"
919
+
920
+ # automatic translation
921
+ #: admin/include/fields.php:514
922
+ msgid "Enable Pinterest icon"
923
+ msgstr "Aktivieren Sie das Pinterest-Symbol"
924
+
925
+ # automatic translation
926
+ #: admin/include/fields.php:516
927
+ msgid "Enable Pinterest sharing"
928
+ msgstr "Aktivieren Sie das Teilen von Pinterest"
929
+
930
+ # automatic translation
931
+ #: admin/include/fields.php:522
932
+ msgid "Color of social sharing icons"
933
+ msgstr "Farbe der Social-Sharing-Icons"
934
+
935
+ # automatic translation
936
+ #: admin/include/fields.php:524 admin/include/fields.php:532
937
+ msgid "Set the color of the social sharing icons"
938
+ msgstr "Legen Sie die Farbe der Social Sharing-Symbole fest"
939
+
940
+ # automatic translation
941
+ #: admin/include/fields.php:530
942
+ msgid "Style of the social icons panel"
943
+ msgstr "Stil des Social-Icons-Bereichs"
944
+
945
+ # automatic translation
946
+ #: admin/include/fields.php:545
947
+ msgid "Position of the social icons panel"
948
+ msgstr "Position des Symbols für soziale Symbole"
949
+
950
+ # automatic translation
951
+ #: admin/include/fields.php:547
952
+ msgid "Set the position of the social sharing icons"
953
+ msgstr "Legen Sie die Position der Social Sharing-Symbole fest"
954
+
955
+ # automatic translation
956
+ #: admin/include/fields.php:560
957
+ msgid "Caption behavior"
958
+ msgstr "Caption-Verhalten"
959
+
960
+ # automatic translation
961
+ #: admin/include/fields.php:562
962
+ msgid "Effect used to show the captions."
963
+ msgstr "Effekt zur Anzeige der Bildunterschriften."
964
+
965
+ # automatic translation
966
+ #: admin/include/fields.php:597
967
+ msgid "Caption mobile behavior"
968
+ msgstr "Bildunterschrift mobiles Verhalten"
969
+
970
+ # automatic translation
971
+ #: admin/include/fields.php:599
972
+ msgid "Caption behavior for mobile devices."
973
+ msgstr "Untertitelverhalten für mobile Geräte."
974
+
975
+ # automatic translation
976
+ #: admin/include/fields.php:627
977
+ msgid "Custom fields"
978
+ msgstr "Benutzerdefinierte Felder"
979
+
980
+ # automatic translation
981
+ #: admin/include/fields.php:629
982
+ msgid ""
983
+ "Insert 1 custom field on each line. Add an optional label after the custom "
984
+ "field code."
985
+ msgstr ""
986
+ "Fügen Sie in jede Zeile ein benutzerdefiniertes Feld ein. Fügen Sie nach "
987
+ "dem benutzerdefinierten Feldcode ein optionales Etikett hinzu."
988
+
989
+ # automatic translation
990
+ #: admin/include/fields.php:637
991
+ msgid "Position"
992
+ msgstr "Position"
993
+
994
+ # automatic translation
995
+ #: admin/include/fields.php:639
996
+ msgid "Choose the position of the caption."
997
+ msgstr "Wählen Sie die Position der Beschriftung."
998
+
999
+ # automatic translation
1000
+ #: admin/include/fields.php:658
1001
+ msgid "Empty captions"
1002
+ msgstr "Leere Bildunterschriften"
1003
+
1004
+ # automatic translation
1005
+ #: admin/include/fields.php:660
1006
+ msgid "Choose if empty caption has to be shown."
1007
+ msgstr "Wählen Sie, ob eine leere Beschriftung angezeigt werden soll."
1008
+
1009
+ # automatic translation
1010
+ #: admin/include/fields.php:680
1011
+ msgid "Caption icon"
1012
+ msgstr "Beschriftungssymbol"
1013
+
1014
+ # automatic translation
1015
+ #: admin/include/fields.php:682
1016
+ msgid "Choose the icon for the captions."
1017
+ msgstr "Wählen Sie das Symbol für die Bildunterschriften."
1018
+
1019
+ # automatic translation
1020
+ #: admin/include/fields.php:705
1021
+ msgid "Custom caption icon"
1022
+ msgstr "Symbol für benutzerdefinierte Beschriftung"
1023
+
1024
+ # automatic translation
1025
+ #: admin/include/fields.php:707
1026
+ msgid ""
1027
+ "Use this field to insert the class of a FontAwesome icon (i.e.: fa-heart). "
1028
+ "<a href='https://fontawesome.com/v4.7.0/icons/' target='blank'>See all "
1029
+ "available icons</a>. <strong>This value override the <i>Caption icon</i> "
1030
+ "value</strong>."
1031
+ msgstr ""
1032
+ "Verwenden Sie dieses Feld, um die Klasse eines FontAwesome-Symbols "
1033
+ "einzufügen (z. B. fa-heart). <a "
1034
+ "href='https://fontawesome.com/v4.7.0/icons/' target='blank'>Alle "
1035
+ "verfügbaren Symbole anzeigen</a> . <strong>Dieser Wert überschreibt den "
1036
+ "<i>Beschriftungssymbolwert</i></strong> ."
1037
+
1038
+ # automatic translation
1039
+ #: admin/include/fields.php:712
1040
+ msgid "Caption icon color"
1041
+ msgstr "Farbe der Beschriftungssymbole"
1042
+
1043
+ # automatic translation
1044
+ #: admin/include/fields.php:714
1045
+ msgid "Color of the icon in captions."
1046
+ msgstr "Farbe des Symbols in Beschriftungen."
1047
+
1048
+ # automatic translation
1049
+ #: admin/include/fields.php:720
1050
+ msgid "Caption icon size"
1051
+ msgstr "Größe des Beschriftungssymbols"
1052
+
1053
+ # automatic translation
1054
+ #: admin/include/fields.php:722
1055
+ msgid "Size of the icon in captions."
1056
+ msgstr "Größe des Symbols in Beschriftungen."
1057
+
1058
+ # automatic translation
1059
+ #: admin/include/fields.php:731
1060
+ msgid "Caption font size"
1061
+ msgstr "Schriftgröße der Beschriftung"
1062
+
1063
+ # automatic translation
1064
+ #: admin/include/fields.php:733 admin/include/fields.php:905
1065
+ msgid "Size of the font in captions."
1066
+ msgstr "Größe der Schrift in Beschriftungen."
1067
+
1068
+ # automatic translation
1069
+ #: admin/include/fields.php:742
1070
+ msgid "Caption effect easing"
1071
+ msgstr "Erleichterung für den Untertiteleffekt"
1072
+
1073
+ # automatic translation
1074
+ #: admin/include/fields.php:744
1075
+ msgid ""
1076
+ "Easing function for the caption animation, works better with sliding "
1077
+ "animations."
1078
+ msgstr ""
1079
+ "Die Erleichterungsfunktion für die Untertitelanimation funktioniert besser "
1080
+ "mit gleitenden Animationen."
1081
+
1082
+ # automatic translation
1083
+ #: admin/include/fields.php:762
1084
+ msgid "Caption frame"
1085
+ msgstr "Beschriftungsrahmen"
1086
+
1087
+ # automatic translation
1088
+ #: admin/include/fields.php:764
1089
+ msgid "Add a frame around the caption"
1090
+ msgstr "Fügen Sie einen Rahmen um die Beschriftung hinzu"
1091
+
1092
+ # automatic translation
1093
+ #: admin/include/fields.php:770
1094
+ msgid "Caption frame color"
1095
+ msgstr "Beschriftungsrahmenfarbe"
1096
+
1097
+ # automatic translation
1098
+ #: admin/include/fields.php:772
1099
+ msgid "Color of the frame around the caption"
1100
+ msgstr "Farbe des Rahmens um die Bildunterschrift"
1101
+
1102
+ # automatic translation
1103
+ #: admin/include/fields.php:778
1104
+ msgid "Caption color"
1105
+ msgstr "Beschriftungsfarbe"
1106
+
1107
+ # automatic translation
1108
+ #: admin/include/fields.php:780
1109
+ msgid "Text color of the captions."
1110
+ msgstr "Textfarbe der Bildunterschriften."
1111
+
1112
+ # automatic translation
1113
+ #: admin/include/fields.php:786
1114
+ msgid "Caption effect duration"
1115
+ msgstr "Dauer des Untertiteleffekts"
1116
+
1117
+ # automatic translation
1118
+ #: admin/include/fields.php:788
1119
+ msgid "Duration of the caption animation."
1120
+ msgstr "Dauer der Bildanimation."
1121
+
1122
+ # automatic translation
1123
+ #: admin/include/fields.php:797 admin/include/fields.php:799
1124
+ msgid "Caption background color"
1125
+ msgstr "Beschriftung Hintergrundfarbe"
1126
+
1127
+ # automatic translation
1128
+ #: admin/include/fields.php:805
1129
+ msgid "Caption opacity"
1130
+ msgstr "Deckkraft der Bildunterschrift"
1131
+
1132
+ # automatic translation
1133
+ #: admin/include/fields.php:807
1134
+ msgid ""
1135
+ "Opacity of the caption, 0% means 'invisible' while 100% is a plain color "
1136
+ "without opacity."
1137
+ msgstr ""
1138
+ "Deckkraft der Beschriftung, 0% bedeutet \"unsichtbar\", während 100% eine "
1139
+ "reine Farbe ohne Deckkraft ist."
1140
+
1141
+ # automatic translation
1142
+ #: admin/include/fields.php:816
1143
+ msgid "WordPress caption field"
1144
+ msgstr "WordPress-Beschriftungsfeld"
1145
+
1146
+ # automatic translation
1147
+ #: admin/include/fields.php:818
1148
+ msgid ""
1149
+ "WordPress field used for captions. <strong>This field is used ONLY when "
1150
+ "images are added to the gallery, </strong> however, if you want to ignore "
1151
+ "captions just set it to '<i>Don't use captions</i>'."
1152
+ msgstr ""
1153
+ "WordPress-Feld für Beschriftungen. <strong>Dieses Feld wird NUR verwendet, "
1154
+ "wenn der Galerie Bilder hinzugefügt werden.</strong> Wenn Sie Untertitel "
1155
+ "jedoch ignorieren möchten, setzen Sie sie einfach auf &quot; <i>Keine "
1156
+ "Untertitel verwenden</i> &quot;."
1157
+
1158
+ # automatic translation
1159
+ #: admin/include/fields.php:833
1160
+ msgid "WordPress title field"
1161
+ msgstr "WordPress-Titelfeld"
1162
+
1163
+ # automatic translation
1164
+ #: admin/include/fields.php:835
1165
+ msgid ""
1166
+ "WordPress field used for titles. <strong>This field is used ONLY when "
1167
+ "images are added to the gallery, </strong> however, if you want to ignore "
1168
+ "titles just set it to '<i>Don't use titles</i>'."
1169
+ msgstr ""
1170
+ "WordPress-Feld für Titel. <strong>Dieses Feld wird NUR verwendet, wenn der "
1171
+ "Galerie Bilder hinzugefügt werden.</strong> Wenn Sie Titel ignorieren "
1172
+ "möchten, setzen Sie sie einfach auf &quot; <i>Keine Titel verwenden</i> "
1173
+ "&quot;."
1174
+
1175
+ # automatic translation
1176
+ #: admin/include/fields.php:849
1177
+ msgid "Recent posts caption"
1178
+ msgstr "Aktuelle Beiträge Untertitel"
1179
+
1180
+ # automatic translation
1181
+ #: admin/include/fields.php:851
1182
+ msgid "Field of the post used for captions when using \"Recent posts\" as source."
1183
+ msgstr ""
1184
+ "Feld des Beitrags, der für Beschriftungen verwendet wird, wenn \"Letzte "
1185
+ "Beiträge\" als Quelle verwendet werden."
1186
+
1187
+ # automatic translation
1188
+ #: admin/include/fields.php:869
1189
+ msgid ""
1190
+ "Define the max number of words of the caption when <i>Recent posts "
1191
+ "caption</i> is set to <i>Auto excerpt</i>."
1192
+ msgstr ""
1193
+ "Definieren Sie die maximale Anzahl von Wörtern der Beschriftung, wenn für "
1194
+ "die Überschrift &quot; <i>Letzte Beiträge&quot; die Option &quot;</i> "
1195
+ "<i>Auto-Auszug&quot; festgelegt ist</i> ."
1196
+
1197
+ # automatic translation
1198
+ #: admin/include/fields.php:875
1199
+ msgid "Caption Vertical Alignment"
1200
+ msgstr "Beschriftung Vertikale Ausrichtung"
1201
+
1202
+ # automatic translation
1203
+ #: admin/include/fields.php:877
1204
+ msgid "Choose the vertical alignment of the caption"
1205
+ msgstr "Wählen Sie die vertikale Ausrichtung der Beschriftung"
1206
+
1207
+ # automatic translation
1208
+ #: admin/include/fields.php:889
1209
+ msgid "Caption Horizontal Alignment"
1210
+ msgstr "Beschriftung Horizontale Ausrichtung"
1211
+
1212
+ # automatic translation
1213
+ #: admin/include/fields.php:891
1214
+ msgid "Choose the horizontal alignment of the caption"
1215
+ msgstr "Wählen Sie die horizontale Ausrichtung der Beschriftung"
1216
+
1217
+ # automatic translation
1218
+ #: admin/include/fields.php:903
1219
+ msgid "Title font size"
1220
+ msgstr "Titelschriftgröße"
1221
+
1222
+ # automatic translation
1223
+ #: admin/include/fields.php:916
1224
+ msgid "Zoom"
1225
+ msgstr "Zoomen"
1226
+
1227
+ # automatic translation
1228
+ #: admin/include/fields.php:918
1229
+ msgid "Scale value."
1230
+ msgstr "Skalierungswert"
1231
+
1232
+ # automatic translation
1233
+ #: admin/include/fields.php:928
1234
+ msgid "Rotation"
1235
+ msgstr "Drehung"
1236
+
1237
+ # automatic translation
1238
+ #: admin/include/fields.php:930
1239
+ msgid "Rotation value in degrees."
1240
+ msgstr "Drehwert in Grad."
1241
+
1242
+ # automatic translation
1243
+ #: admin/include/fields.php:939 admin/include/fields.php:959
1244
+ msgid "Duration"
1245
+ msgstr "Dauer"
1246
+
1247
+ # automatic translation
1248
+ #: admin/include/fields.php:950
1249
+ msgid "Rotate icon"
1250
+ msgstr "Symbol drehen"
1251
+
1252
+ # automatic translation
1253
+ #: admin/include/fields.php:953
1254
+ msgid "Enable rotation of the icon."
1255
+ msgstr "Rotation des Symbols aktivieren."
1256
+
1257
+ # automatic translation
1258
+ #: admin/include/fields.php:970
1259
+ msgid "Easing curve"
1260
+ msgstr "Lockerungskurve"
1261
+
1262
+ # automatic translation
1263
+ #: admin/include/fields.php:972
1264
+ msgid "Choose the easing curve for the loading effect animation"
1265
+ msgstr "Wählen Sie die Beschleunigungskurve für die Ladeeffektanimation"
1266
+
1267
+ # automatic translation
1268
+ #: admin/include/fields.php:989
1269
+ msgid "Vertical scaling"
1270
+ msgstr "Vertikale Skalierung"
1271
+
1272
+ # automatic translation
1273
+ #: admin/include/fields.php:1000
1274
+ msgid "Horizontal scaling"
1275
+ msgstr "Horizontale Skalierung"
1276
+
1277
+ # automatic translation
1278
+ #: admin/include/fields.php:1011
1279
+ msgid "Vertical rotation"
1280
+ msgstr "Vertikale Drehung"
1281
+
1282
+ # automatic translation
1283
+ #: admin/include/fields.php:1022
1284
+ msgid "Horizontal rotation"
1285
+ msgstr "Horizontale Drehung"
1286
+
1287
+ # automatic translation
1288
+ #: admin/include/fields.php:1033
1289
+ msgid "Horizontal slide"
1290
+ msgstr "Horizontale Folie"
1291
+
1292
+ # automatic translation
1293
+ #: admin/include/fields.php:1044
1294
+ msgid "Vertical slide"
1295
+ msgstr "Vertikale Folie"
1296
+
1297
+ # automatic translation
1298
+ #: admin/include/fields.php:1055
1299
+ msgid "Border size"
1300
+ msgstr "Rahmengrösse"
1301
+
1302
+ # automatic translation
1303
+ #: admin/include/fields.php:1057
1304
+ msgid "Size of the border of each image."
1305
+ msgstr "Größe des Randes jedes Bildes."
1306
+
1307
+ # automatic translation
1308
+ #: admin/include/fields.php:1066
1309
+ msgid "Border radius"
1310
+ msgstr "Grenzradius"
1311
+
1312
+ # automatic translation
1313
+ #: admin/include/fields.php:1068
1314
+ msgid "Border radius of the images."
1315
+ msgstr "Rahmenradius der Bilder."
1316
+
1317
+ # automatic translation
1318
+ #: admin/include/fields.php:1077
1319
+ msgid "Border color"
1320
+ msgstr "Randfarbe"
1321
+
1322
+ # automatic translation
1323
+ #: admin/include/fields.php:1079
1324
+ msgid "Color of the border when size is greater than 0."
1325
+ msgstr "Farbe des Rahmens, wenn Größe größer als 0 ist."
1326
+
1327
+ # automatic translation
1328
+ #: admin/include/fields.php:1085
1329
+ msgid "Loading Bar color"
1330
+ msgstr "Farbe des Ladebalkens"
1331
+
1332
+ # automatic translation
1333
+ #: admin/include/fields.php:1087
1334
+ msgid "Color of the loading bar"
1335
+ msgstr "Farbe der Ladeleiste"
1336
+
1337
+ # automatic translation
1338
+ #: admin/include/fields.php:1093
1339
+ msgid "Loading Bar background color"
1340
+ msgstr "Hintergrundfarbe des Ladebalkens"
1341
+
1342
+ # automatic translation
1343
+ #: admin/include/fields.php:1095
1344
+ msgid "Background color of the loading bar"
1345
+ msgstr "Hintergrundfarbe des Ladebalkens"
1346
+
1347
+ # automatic translation
1348
+ #: admin/include/fields.php:1101
1349
+ msgid "Shadow size"
1350
+ msgstr "Schattengröße"
1351
+
1352
+ # automatic translation
1353
+ #: admin/include/fields.php:1103
1354
+ msgid "Shadow size of the images."
1355
+ msgstr "Schattengröße der Bilder."
1356
+
1357
+ # automatic translation
1358
+ #: admin/include/fields.php:1112
1359
+ msgid "Shadow color"
1360
+ msgstr "Schattenfarbe"
1361
+
1362
+ # automatic translation
1363
+ #: admin/include/fields.php:1114
1364
+ msgid "Color of the shadow when size is greater than 0."
1365
+ msgstr "Farbe des Schattens, wenn die Größe größer als 0 ist."
1366
+
1367
+ # automatic translation
1368
+ #: admin/include/fields.php:1120
1369
+ msgid "Tile background color"
1370
+ msgstr "Fliese Hintergrundfarbe"
1371
+
1372
+ # automatic translation
1373
+ #: admin/include/fields.php:1122
1374
+ msgid "Background color of tiles"
1375
+ msgstr "Hintergrundfarbe der Fliesen"
1376
+
1377
+ # automatic translation
1378
+ #: admin/include/fields.php:1128
1379
+ msgid "Additional CSS class on A tag"
1380
+ msgstr "Zusätzliche CSS-Klasse für ein A-Tag"
1381
+
1382
+ # automatic translation
1383
+ #: admin/include/fields.php:1130
1384
+ msgid ""
1385
+ "Use this field if you need to add additional CSS classes to the link that "
1386
+ "contains the image."
1387
+ msgstr ""
1388
+ "Verwenden Sie dieses Feld, wenn Sie dem Link, der das Bild enthält, weitere "
1389
+ "CSS-Klassen hinzufügen müssen."
1390
+
1391
+ # automatic translation
1392
+ #: admin/include/fields.php:1138
1393
+ msgid ""
1394
+ "Use this field if you need to add additional CSS classes to the link that "
1395
+ "contains the image. This is useful mostly to integrate the gallery with "
1396
+ "other lightbox plugins."
1397
+ msgstr ""
1398
+ "Verwenden Sie dieses Feld, wenn Sie dem Link, der das Bild enthält, weitere "
1399
+ "CSS-Klassen hinzufügen müssen. Dies ist vor allem nützlich, um die Galerie "
1400
+ "mit anderen Lightbox-Plugins zu integrieren."
1401
+
1402
+ # automatic translation
1403
+ #: admin/include/fields.php:1144
1404
+ msgid "Text before gallery"
1405
+ msgstr "Text vor der Galerie"
1406
+
1407
+ # automatic translation
1408
+ #: admin/include/fields.php:1146
1409
+ msgid "Use this field to add text/html to be placed just before your gallery."
1410
+ msgstr ""
1411
+ "Verwenden Sie dieses Feld, um Text / HTML hinzuzufügen, der direkt vor "
1412
+ "Ihrer Galerie platziert werden soll."
1413
+
1414
+ # automatic translation
1415
+ #: admin/include/fields.php:1153
1416
+ msgid "Text after gallery"
1417
+ msgstr "Text nach Galerie"
1418
+
1419
+ # automatic translation
1420
+ #: admin/include/fields.php:1155
1421
+ msgid "Use this field to add text/html to be placed just after your gallery."
1422
+ msgstr ""
1423
+ "Verwenden Sie dieses Feld, um Text / HTML hinzuzufügen, der direkt hinter "
1424
+ "Ihrer Galerie platziert werden soll."
1425
+
1426
+ # automatic translation
1427
+ #: admin/include/fields.php:1162
1428
+ msgid "Custom CSS"
1429
+ msgstr "Benutzerdefinierte CSS"
1430
+
1431
+ # automatic translation
1432
+ #: admin/include/fields.php:1164
1433
+ msgid ""
1434
+ "<strong>Write just the code without using the &lt;style&gt; "
1435
+ "tag.</strong><br>List of useful selectors:<br>\n"
1436
+ " <br>\n"
1437
+ " <ul>\n"
1438
+ " <li>\n"
1439
+ " <em>.final-tiles-gallery</em> : gallery container;\n"
1440
+ " </li>\n"
1441
+ " <li>\n"
1442
+ " <em>.final-tiles-gallery .tile-inner</em> : tile content;\n"
1443
+ " </li>\n"
1444
+ " <li>\n"
1445
+ " <em>.final-tiles-gallery .tile-inner .item</em> : image of "
1446
+ "the tile;\n"
1447
+ " </li>\n"
1448
+ " <li>\n"
1449
+ " <em>.final-tiles-gallery .tile-inner .caption</em> : "
1450
+ "caption of the tile;\n"
1451
+ " </li>\n"
1452
+ " <li>\n"
1453
+ " <em>.final-tiles-gallery .ftg-filters</em> : filters "
1454
+ "container\n"
1455
+ " </li>\n"
1456
+ " <li>\n"
1457
+ " <em>.final-tiles-gallery .ftg-filters a</em> : filter\n"
1458
+ " </li>\n"
1459
+ " <li>\n"
1460
+ " <em>.final-tiles-gallery .ftg-filters a.selected</em> : "
1461
+ "selected filter\n"
1462
+ " </li>\n"
1463
+ " </ul>"
1464
+ msgstr ""
1465
+ "<strong>Schreiben Sie nur den Code, ohne das &lt;style&gt; -Tag zu "
1466
+ "verwenden.</strong> <br> Liste nützlicher Selektoren: <br><br><ul><li> "
1467
+ "<em>.final-tile-gallery</em> : Galeriecontainer; </li><li> "
1468
+ "<em>.finalfliesen-galerie .flieseninnere</em> : Flieseninhalt; </li><li> "
1469
+ "<em>.finalfliesen-galerie .fliesen-inneres .item</em> : bild der "
1470
+ "<em>fliese</em> ; </li><li> <em>.finalfliesen-galerie "
1471
+ ".flieseninnerecaption</em> : beschriftung der <em>fliese</em> ; </li><li> "
1472
+ "<em>.final-tile-gallery .ftg-filters</em> : filtert den Container </li><li> "
1473
+ "<em>.final-tile-gallery .ftg-Filter a</em> : filter </li><li> "
1474
+ "<em>.final-tile-gallery .ftg-filters a.selected</em> : selected filter "
1475
+ "</li></ul>"
1476
+
1477
+ # automatic translation
1478
+ #: admin/include/fields.php:1195
1479
+ msgid "Custom scripts"
1480
+ msgstr "Benutzerdefinierte Skripte"
1481
+
1482
+ # automatic translation
1483
+ #: admin/include/fields.php:1197
1484
+ msgid ""
1485
+ "This script will be called after the gallery initialization. Useful for "
1486
+ "custom lightboxes.\n"
1487
+ " <br />\n"
1488
+ " <br />\n"
1489
+ " <strong>Write just the code without using the "
1490
+ "&lt;script&gt;&lt;/script&gt; tags</strong>"
1491
+ msgstr ""
1492
+ "Dieses Skript wird nach der Initialisierung der Galerie aufgerufen. "
1493
+ "Nützlich für benutzerdefinierte Leuchtkästen. <br /><br /> "
1494
+ "<strong>Schreiben Sie nur den Code, ohne die Tags &lt;script&gt; &lt;/ "
1495
+ "script&gt; zu verwenden</strong>"
1496
+
1497
+ # automatic translation
1498
+ #: admin/include/fields.php:1207
1499
+ msgid "Delay"
1500
+ msgstr "Verzögern"
1501
+
1502
+ # automatic translation
1503
+ #: admin/include/fields.php:1209
1504
+ msgid ""
1505
+ "Delay (in milliseconds) before firing the gallery. Sometimes it's needed to "
1506
+ "avoid conflicts with other plugins."
1507
+ msgstr ""
1508
+ "Verzögerung (in Millisekunden), bevor die Galerie abgefeuert wird. Manchmal "
1509
+ "ist es erforderlich, um Konflikte mit anderen Plugins zu vermeiden."
1510
+
1511
+ # automatic translation
1512
+ #: admin/include/fields.php:1218
1513
+ msgid "Show developer link"
1514
+ msgstr "Entwicklerlink anzeigen"
1515
+
1516
+ # automatic translation
1517
+ #: admin/include/fields.php:1220
1518
+ msgid "I want to support this plugin, show the developer link!"
1519
+ msgstr "Ich möchte dieses Plugin unterstützen, den Entwicklerlink anzeigen!"
1520
+
1521
+ # automatic translation
1522
+ #: admin/include/fields.php:1228
1523
+ msgid "Developer link text"
1524
+ msgstr "Entwickler-Link-Text"
1525
+
1526
+ # automatic translation
1527
+ #: admin/include/fields.php:1230
1528
+ msgid "Text for the developer link"
1529
+ msgstr "Text für den Entwicklerlink"
1530
+
1531
+ # automatic translation
1532
+ #: admin/include/fields.php:1236
1533
+ msgid "Number of columns (Tablet landscape)"
1534
+ msgstr "Anzahl der Spalten (Tablet-Landschaft)"
1535
+
1536
+ # automatic translation
1537
+ #: admin/include/fields.php:1246
1538
+ msgid "Number of columns (Tablet portrait)"
1539
+ msgstr "Anzahl der Spalten (Tablet Portrait)"
1540
+
1541
+ # automatic translation
1542
+ #: admin/include/fields.php:1256
1543
+ msgid "Number of columns (Phone landscape)"
1544
+ msgstr "Anzahl der Spalten (Telefonlandschaft)"
1545
+
1546
+ # automatic translation
1547
+ #: admin/include/fields.php:1266
1548
+ msgid "Number of columns (Phone portrait)"
1549
+ msgstr "Anzahl der Spalten (Telefonportrait)"
1550
+
1551
+ # automatic translation
1552
+ #: admin/include/fields.php:1276
1553
+ msgid "Image size factor"
1554
+ msgstr "Faktor für die Bildgröße"
1555
+
1556
+ # automatic translation
1557
+ #: admin/include/fields.php:1278
1558
+ msgid ""
1559
+ "Percentage of image size, i.e.: if an image of the gallery is 300x200 and "
1560
+ "the size factor is 50% then the resulting image will be 150x100.\n"
1561
+ " 90% is a suggested default value, because under some "
1562
+ "circumstances, the images could be enlarged by the script (to fill gaps and "
1563
+ "avoid blank spaces between tiles)."
1564
+ msgstr ""
1565
+ "Prozentsatz der Bildgröße, d. H .: wenn ein Bild der Galerie 300 x 200 ist "
1566
+ "und der Größenfaktor 50% beträgt, wird das resultierende Bild 150 x 100 "
1567
+ "sein.\n"
1568
+ "            90% ist ein empfohlener Standardwert, da die Bilder unter "
1569
+ "Umständen durch das Skript vergrößert werden können (um Lücken zu füllen "
1570
+ "und Leerzeichen zwischen Kacheln zu vermeiden)."
1571
+
1572
+ # automatic translation
1573
+ #: admin/include/fields.php:1290
1574
+ msgid ""
1575
+ "Image size factor to apply when the viewport is 1024px, typically for "
1576
+ "tablets with landscape orientation"
1577
+ msgstr ""
1578
+ "Der Bildgrößenfaktor, der angewendet werden soll, wenn der "
1579
+ "Darstellungsbereich 1024 Pixel beträgt, normalerweise für Tablets mit "
1580
+ "Querformat"
1581
+
1582
+ # automatic translation
1583
+ #: admin/include/fields.php:1299
1584
+ msgid "Image size factor Tablet Portrait"
1585
+ msgstr "Bildgrößenfaktor Tablet Portrait"
1586
+
1587
+ # automatic translation
1588
+ #: admin/include/fields.php:1301
1589
+ msgid ""
1590
+ "Image size factor to apply when the viewport is 768px, typically for "
1591
+ "tablets with portrait orientation"
1592
+ msgstr ""
1593
+ "Der Bildgrößenfaktor, der angewendet werden soll, wenn der "
1594
+ "Darstellungsbereich 768 Pixel beträgt, normalerweise für Tablets mit "
1595
+ "Hochformat"
1596
+
1597
+ # automatic translation
1598
+ #: admin/include/fields.php:1310
1599
+ msgid "Image size factor Smartphone Landscape"
1600
+ msgstr "Bildgrößenfaktor Smartphone-Landschaft"
1601
+
1602
+ # automatic translation
1603
+ #: admin/include/fields.php:1312
1604
+ msgid ""
1605
+ "Image size factor to apply when the viewport is 640px, typically for "
1606
+ "smartphones with landscape orientation"
1607
+ msgstr ""
1608
+ "Bildgrößenfaktor, der angewendet werden soll, wenn der Darstellungsbereich "
1609
+ "640 Pixel beträgt, normalerweise für Smartphones mit Querformat"
1610
+
1611
+ # automatic translation
1612
+ #: admin/include/fields.php:1321
1613
+ msgid "Image size factor Phone Portrait"
1614
+ msgstr "Bildgrößenfaktor Telefonporträt"
1615
+
1616
+ # automatic translation
1617
+ #: admin/include/fields.php:1323
1618
+ msgid ""
1619
+ "Image size factor to apply when the viewport is 320px, typically for "
1620
+ "smartphones with portrait orientation"
1621
+ msgstr ""
1622
+ "Der Bildgrößenfaktor, der angewendet werden soll, wenn der "
1623
+ "Darstellungsbereich 320 Pixel beträgt, normalerweise für Smartphones mit "
1624
+ "Hochformat"
1625
+
1626
+ # automatic translation
1627
+ #: admin/include/fields.php:1332
1628
+ msgid "Custom image size factor"
1629
+ msgstr "Benutzerdefinierter Bildgrößenfaktor"
1630
+
1631
+ # automatic translation
1632
+ #: admin/include/fields.php:1338
1633
+ msgid ""
1634
+ "Use this field if you need further resolutions. Make custom layout for any "
1635
+ "device and resolution."
1636
+ msgstr ""
1637
+ "Verwenden Sie dieses Feld, wenn Sie weitere Auflösungen benötigen. "
1638
+ "Erstellen Sie ein benutzerdefiniertes Layout für jedes Gerät und die "
1639
+ "Auflösung."
1640
+
1641
+ # automatic translation
1642
+ #: admin/include/fields.php:1346
1643
+ msgid "Compress HTML"
1644
+ msgstr "HTML komprimieren"
1645
+
1646
+ # automatic translation
1647
+ #: admin/include/fields.php:1348
1648
+ msgid ""
1649
+ "Enable or disable HTML compression, some themes prefer uncompressed, switch "
1650
+ "it off in case of problems."
1651
+ msgstr ""
1652
+ "Aktivieren oder deaktivieren Sie die HTML-Komprimierung. Einige Designs "
1653
+ "bevorzugen die Komprimierung. Schalten Sie sie bei Problemen aus."
1654
+
1655
+ # automatic translation
1656
+ #: admin/include/fields.php:1354
1657
+ msgid "Tile minimum width"
1658
+ msgstr "Mindestbreite der Fliese"
1659
+
1660
+ # automatic translation
1661
+ #: admin/include/fields.php:1356
1662
+ msgid ""
1663
+ "Minimum width of each tile, <strong>multiply this value for the image size "
1664
+ "factor to get the real size</strong>."
1665
+ msgstr ""
1666
+ "Minimale Breite jeder Kachel: <strong>Multiplizieren Sie diesen Wert für "
1667
+ "den Bildgrößenfaktor, um die tatsächliche Größe zu erhalten</strong> ."
1668
+
1669
+ # automatic translation
1670
+ #: admin/include/fields.php:1365
1671
+ msgid "Allow image enlargement"
1672
+ msgstr "Bildvergrößerung zulassen"
1673
+
1674
+ # automatic translation
1675
+ #: admin/include/fields.php:1367
1676
+ msgid ""
1677
+ "Images can be occasionally enlarged to avoid gaps. If you notice a quality "
1678
+ "loss try to reduce the <strong>Image size factor</strong> parameter."
1679
+ msgstr ""
1680
+ "Bilder können gelegentlich vergrößert werden, um Lücken zu vermeiden. Wenn "
1681
+ "Sie einen Qualitätsverlust feststellen, reduzieren Sie den Parameter für "
1682
+ "den <strong>Bildgrößenfaktor</strong> ."
1683
+
1684
+ # automatic translation
1685
+ #: admin/include/fields.php:1376
1686
+ msgid "Write here the label for the 'All' filter"
1687
+ msgstr "Schreiben Sie hier das Etikett für den Filter \"Alle\""
1688
+
1689
+ # automatic translation
1690
+ #: admin/overview.php:19
1691
+ msgid "Welcome to Final Tiles Grid Gallery!"
1692
+ msgstr "Willkommen in der Final Tiles Grid Gallery!"
1693
+
1694
+ # automatic translation
1695
+ #: admin/overview.php:21
1696
+ msgid "Create your first awesome gallery, click"
1697
+ msgstr "Erstellen Sie Ihre erste großartige Galerie, klicken Sie auf"
1698
+
1699
+ # automatic translation
1700
+ #: admin/overview.php:105
1701
+ msgid "Galleries"
1702
+ msgstr "Galerien"
1703
+
1704
+ # automatic translation
1705
+ #: admin/overview.php:108
1706
+ msgid "Add gallery"
1707
+ msgstr "Galerie hinzufügen"
1708
+
1709
+ # automatic translation
1710
+ #: admin/overview.php:122
1711
+ msgid "Confirmation"
1712
+ msgstr "Bestätigung"
1713
+
1714
+ # automatic translation
1715
+ #: admin/overview.php:123
1716
+ msgid "Do you really want to delete the gallery"
1717
+ msgstr "Möchten Sie die Galerie wirklich löschen?"
1718
+
1719
+ # automatic translation
1720
+ #: admin/overview.php:126
1721
+ msgid "Yes"
1722
+ msgstr "Ja"
1723
+
1724
+ # automatic translation
1725
+ #: admin/overview.php:127
1726
+ msgid "No"
1727
+ msgstr "Nein"
1728
+
1729
+ # automatic translation
1730
+ #: admin/overview.php:134
1731
+ msgid "Copy and paste the following shortcode inside a post, page or widget:"
1732
+ msgstr ""
1733
+ "Kopieren Sie den folgenden Kurzcode und fügen Sie ihn in einen Beitrag, "
1734
+ "eine Seite oder ein Widget ein:"
1735
+
1736
+ # automatic translation
1737
+ #: scripts/gutenberg_block.js:18
1738
+ msgid "Final Tiles Gallery"
1739
+ msgstr "Final Tiles Gallery"
1740
+
1741
+ # automatic translation
1742
+ #: scripts/gutenberg_block.js:65
1743
+ msgid "Shortcode parameters"
1744
+ msgstr "Shortcode-Parameter"
1745
+
1746
+ # automatic translation
1747
+ #: scripts/gutenberg_block.js:69
1748
+ msgid "Select gallery layout"
1749
+ msgstr "Galerie-Layout auswählen"
1750
+
1751
+ # automatic translation
1752
+ #: scripts/gutenberg_block.js:72
1753
+ msgid "Masonry"
1754
+ msgstr "Mauerwerk"
1755
+
1756
+ # automatic translation
1757
+ #: scripts/gutenberg_block.js:73
1758
+ msgid "Final Tiles"
1759
+ msgstr "Schlussfliesen"
1760
+
1761
+ # automatic translation
1762
+ #: scripts/gutenberg_block.js:77
1763
+ msgid "Shortcode Attributes"
1764
+ msgstr "Shortcode-Attribute"
1765
+
1766
+ # automatic translation
1767
+ #: scripts/gutenberg_block.js:84
1768
+ msgid ""
1769
+ "Space separated list of attributes. Example: margin=\"10\" "
1770
+ "loaded_easing=\"linear\" min_tile_width=\"250\""
1771
+ msgstr ""
1772
+ "Leerzeichen getrennte Liste der Attribute. Beispiel: margin = \"10\" "
1773
+ "loaded_easing = \"linear\" min_tile_width = \"250\""
1774
+
1775
+ # automatic translation
1776
+ #: scripts/gutenberg_block.js:102
1777
+ msgid "You don't seem to have any galleries."
1778
+ msgstr "Sie scheinen keine Galerien zu haben."
1779
+
1780
+ # automatic translation
1781
+ msgid "General"
1782
+ msgstr "Allgemeines"
1783
+
1784
+ # automatic translation
1785
+ msgid "Advanced"
1786
+ msgstr "Erweitert"
1787
+
1788
+ # automatic translation
1789
+ msgid "Style"
1790
+ msgstr "Stil"
1791
+
1792
+ # automatic translation
1793
+ msgid "Captions"
1794
+ msgstr "Bildunterschriften"
1795
+
1796
+ # automatic translation
1797
+ msgid "Hover effects"
1798
+ msgstr "Hover-Effekte"
1799
+
1800
+ # automatic translation
1801
+ msgid "Image loaded effects"
1802
+ msgstr "Bild geladene Effekte"
1803
+
1804
+ # automatic translation
1805
+ msgid "Customizations"
1806
+ msgstr "Anpassungen"
1807
+
1808
+ # automatic translation
1809
+ msgid "Text for 'All' filter"
1810
+ msgstr "Text für den Filter \"Alle\""
languages/final-tiles-grid-gallery-lite-it_IT.po CHANGED
@@ -32,8 +32,8 @@ msgstr ""
32
  "aiutarci a migliorare questo plugin motivandoci per nuove funzionalità?"
33
 
34
  #: FinalTilesGalleryLite.php:723
35
- msgid "Cristian Raiber<br>Founder of MachoThemes"
36
- msgstr "Cristian Raiber<br>Fondatore di MachoThemes"
37
 
38
  #: FinalTilesGalleryLite.php:725
39
  msgid "Ok, you deserve it"
32
  "aiutarci a migliorare questo plugin motivandoci per nuove funzionalità?"
33
 
34
  #: FinalTilesGalleryLite.php:723
35
+ msgid "Diego Imbriani<br>Founder of GreenTreeLabs"
36
+ msgstr "Diego Imbriani<br>Fondatore di GreenTreeLabs"
37
 
38
  #: FinalTilesGalleryLite.php:725
39
  msgid "Ok, you deserve it"
languages/final-tiles-grid-gallery-lite.po ADDED
@@ -0,0 +1,1397 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2019 MachoThemes
2
+ # This file is distributed under the GPLv3 or later.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Final Tiles Grid Gallery - Image Gallery 3.4.18\n"
6
+ "Report-Msgid-Bugs-To: "
7
+ "https://wordpress.org/support/plugin/final-tiles-grid-gallery-lite-dev\n"
8
+ "POT-Creation-Date: 2019-11-18 09:52:58+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=utf-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: en\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-Country: United States\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: "
20
+ "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
21
+ "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-Bookmarks: \n"
25
+ "X-Textdomain-Support: yes\n"
26
+ "X-Generator: grunt-wp-i18n 1.0.3\n"
27
+
28
+ #: FinalTilesGalleryLite.php:325
29
+ msgid "Select gallery"
30
+ msgstr ""
31
+
32
+ #: FinalTilesGalleryLite.php:425
33
+ msgid ""
34
+ "Hey, I noticed you created a photo gallery with Final Tiles - that’s "
35
+ "awesome! Would you mind give it a 5-star rating on WordPress to help us "
36
+ "spread the word and boost our motivation for new featrues?"
37
+ msgstr ""
38
+
39
+ #. Author of the plugin/theme
40
+ msgid "MachoThemes"
41
+ msgstr ""
42
+
43
+ #: FinalTilesGalleryLite.php:428
44
+ msgid "Ok, you deserve it"
45
+ msgstr ""
46
+
47
+ #: FinalTilesGalleryLite.php:429
48
+ msgid "Nope, maybe later"
49
+ msgstr ""
50
+
51
+ #: FinalTilesGalleryLite.php:430
52
+ msgid "I already did"
53
+ msgstr ""
54
+
55
+ #: FinalTilesGalleryLite.php:470
56
+ msgid ""
57
+ "Please rate <strong>Final Tiles Gallery</strong> <a href=\"%s\" "
58
+ "target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%s\" "
59
+ "target=\"_blank\">WordPress.org</a> to help us spread the word. Thank you "
60
+ "from the Final Tiles Gallery team!"
61
+ msgstr ""
62
+
63
+ #: FinalTilesGalleryLite.php:801
64
+ msgid "FinalTiles Gallery >> Add Gallery"
65
+ msgstr ""
66
+
67
+ #: FinalTilesGalleryLite.php:801
68
+ msgid "Add Gallery"
69
+ msgstr ""
70
+
71
+ #: admin/add-gallery.php:1 admin/overview.php:1
72
+ msgid "You are not allowed to call this page directly."
73
+ msgstr ""
74
+
75
+ #: admin/add-gallery.php:10
76
+ msgid "Add new gallery wizard"
77
+ msgstr ""
78
+
79
+ #: admin/add-gallery.php:22
80
+ msgid "Name of the gallery"
81
+ msgstr ""
82
+
83
+ #: admin/add-gallery.php:22
84
+ msgid "required"
85
+ msgstr ""
86
+
87
+ #: admin/add-gallery.php:27
88
+ msgid "Description of the gallery"
89
+ msgstr ""
90
+
91
+ #: admin/add-gallery.php:32
92
+ msgid "Choose the source of the images"
93
+ msgstr ""
94
+
95
+ #: admin/add-gallery.php:35
96
+ msgid "Media library"
97
+ msgstr ""
98
+
99
+ #: admin/add-gallery.php:40 admin/include/edit-gallery.php:103
100
+ msgid "Recent posts with featured image"
101
+ msgstr ""
102
+
103
+ #: admin/add-gallery.php:43
104
+ msgid "Recent posts"
105
+ msgstr ""
106
+
107
+ #: admin/add-gallery.php:44 admin/add-gallery.php:61
108
+ #: admin/include/edit-gallery.php:326
109
+ msgid "Unlock this feature. Upgrade Now!"
110
+ msgstr ""
111
+
112
+ #: admin/add-gallery.php:57 admin/add-gallery.php:60
113
+ #: admin/include/edit-gallery.php:106
114
+ msgid "WooCommerce products"
115
+ msgstr ""
116
+
117
+ #: admin/add-gallery.php:68
118
+ msgid "WordPress field for captions:"
119
+ msgstr ""
120
+
121
+ #: admin/add-gallery.php:78
122
+ msgid "WordPress field for titles:"
123
+ msgstr ""
124
+
125
+ #: admin/add-gallery.php:103
126
+ msgid "Caption effect:"
127
+ msgstr ""
128
+
129
+ #: admin/add-gallery.php:105
130
+ msgid "Fade"
131
+ msgstr ""
132
+
133
+ #: admin/add-gallery.php:107 admin/add-gallery.php:114
134
+ msgid "Fixed"
135
+ msgstr ""
136
+
137
+ #: admin/add-gallery.php:108 admin/add-gallery.php:115
138
+ msgid "Fixed with background"
139
+ msgstr ""
140
+
141
+ #: admin/add-gallery.php:109 admin/add-gallery.php:116
142
+ msgid "Fixed, hidden on hover"
143
+ msgstr ""
144
+
145
+ #: admin/add-gallery.php:110 admin/add-gallery.php:117
146
+ msgid "Fixed at bottom"
147
+ msgstr ""
148
+
149
+ #: admin/add-gallery.php:111 admin/add-gallery.php:118
150
+ msgid "Slide from top"
151
+ msgstr ""
152
+
153
+ #: admin/add-gallery.php:112 admin/add-gallery.php:119
154
+ msgid "Slide from bottom"
155
+ msgstr ""
156
+
157
+ #: admin/add-gallery.php:128
158
+ msgid "Post types:"
159
+ msgstr ""
160
+
161
+ #: admin/add-gallery.php:142
162
+ msgid "Categories:"
163
+ msgstr ""
164
+
165
+ #: admin/add-gallery.php:154
166
+ msgid "Choose the layout"
167
+ msgstr ""
168
+
169
+ #: admin/add-gallery.php:156
170
+ msgid "Final Tiles Gallery (mixed image width)"
171
+ msgstr ""
172
+
173
+ #: admin/add-gallery.php:157
174
+ msgid "Masonry (columns, same image width)"
175
+ msgstr ""
176
+
177
+ #: admin/add-gallery.php:161
178
+ msgid "Choose a default image size"
179
+ msgstr ""
180
+
181
+ #: admin/add-gallery.php:174 admin/include/edit-gallery.php:119
182
+ msgid "Add images"
183
+ msgstr ""
184
+
185
+ #: admin/add-gallery.php:176
186
+ msgid "You can add images now or later."
187
+ msgstr ""
188
+
189
+ #: admin/add-gallery.php:184
190
+ msgid "Previous"
191
+ msgstr ""
192
+
193
+ #: admin/add-gallery.php:185
194
+ msgid "Next"
195
+ msgstr ""
196
+
197
+ #: admin/add-gallery.php:190
198
+ msgid "Success!"
199
+ msgstr ""
200
+
201
+ #: admin/add-gallery.php:191
202
+ msgid "Your gallery"
203
+ msgstr ""
204
+
205
+ #: admin/add-gallery.php:191
206
+ msgid "has been created. Copy the following shortcode:"
207
+ msgstr ""
208
+
209
+ #: admin/add-gallery.php:193
210
+ msgid "and paste it inside a post or a page. Otherwise click"
211
+ msgstr ""
212
+
213
+ #: admin/add-gallery.php:193 admin/overview.php:19
214
+ msgid "here"
215
+ msgstr ""
216
+
217
+ #: admin/add-gallery.php:193
218
+ msgid ""
219
+ "to customize\r\n"
220
+ "\t\t\t the gallery."
221
+ msgstr ""
222
+
223
+ #: admin/add-gallery.php:198 admin/add-gallery.php:207 admin/overview.php:174
224
+ msgid "Close"
225
+ msgstr ""
226
+
227
+ #: admin/add-gallery.php:203
228
+ msgid "Error!"
229
+ msgstr ""
230
+
231
+ #: admin/add-gallery.php:204
232
+ msgid "For some reason it was not possible to save your gallery, please contact"
233
+ msgstr ""
234
+
235
+ #: admin/add-gallery.php:204
236
+ msgid "support"
237
+ msgstr ""
238
+
239
+ #: admin/edit-gallery.php:75 admin/include/edit-gallery.php:139
240
+ msgid "Assign group"
241
+ msgstr ""
242
+
243
+ #: admin/edit-gallery.php:76
244
+ msgid ""
245
+ "The group name is for internal use and it won't be shown, avoid space and "
246
+ "special characters"
247
+ msgstr ""
248
+
249
+ #: admin/edit-gallery.php:80 admin/edit-gallery.php:100
250
+ #: admin/include/edit-gallery.php:558 admin/include/edit-gallery.php:632
251
+ msgid "Save"
252
+ msgstr ""
253
+
254
+ #: admin/edit-gallery.php:81 admin/edit-gallery.php:101
255
+ #: admin/include/edit-gallery.php:559 admin/include/edit-gallery.php:631
256
+ msgid "Cancel"
257
+ msgstr ""
258
+
259
+ #: admin/edit-gallery.php:87 admin/include/edit-gallery.php:142
260
+ msgid "Assign filters"
261
+ msgstr ""
262
+
263
+ #: admin/edit-gallery.php:97
264
+ msgid "If you don't see all filters please save and reload the page"
265
+ msgstr ""
266
+
267
+ #: admin/include/edit-gallery.php:96
268
+ msgid "Images"
269
+ msgstr ""
270
+
271
+ #: admin/include/edit-gallery.php:102
272
+ msgid "User images"
273
+ msgstr ""
274
+
275
+ #: admin/include/edit-gallery.php:123 admin/include/edit-gallery.php:126
276
+ msgid "Add video"
277
+ msgstr ""
278
+
279
+ #: admin/include/edit-gallery.php:128
280
+ msgid "Remove selected"
281
+ msgstr ""
282
+
283
+ #: admin/include/edit-gallery.php:133
284
+ msgid "Select all"
285
+ msgstr ""
286
+
287
+ #: admin/include/edit-gallery.php:134
288
+ msgid "Deselect all"
289
+ msgstr ""
290
+
291
+ #: admin/include/edit-gallery.php:135
292
+ msgid "Toggle selection"
293
+ msgstr ""
294
+
295
+ #: admin/include/edit-gallery.php:146
296
+ msgid "Toggle visibility"
297
+ msgstr ""
298
+
299
+ #: admin/include/edit-gallery.php:152
300
+ msgid "Select by filter:"
301
+ msgstr ""
302
+
303
+ #: admin/include/edit-gallery.php:165
304
+ msgid "Add links by clicking the EDIT (pencil) button"
305
+ msgstr ""
306
+
307
+ #: admin/include/edit-gallery.php:166
308
+ msgid "Drag the images to change their order."
309
+ msgstr ""
310
+
311
+ #: admin/include/edit-gallery.php:190
312
+ msgid "Post type:"
313
+ msgstr ""
314
+
315
+ #: admin/include/edit-gallery.php:229
316
+ msgid "Max posts:"
317
+ msgstr ""
318
+
319
+ #: admin/include/edit-gallery.php:232
320
+ msgid "(enter 0 for unlimited posts)"
321
+ msgstr ""
322
+
323
+ #: admin/include/edit-gallery.php:239
324
+ msgid "Categories"
325
+ msgstr ""
326
+
327
+ #: admin/include/edit-gallery.php:276
328
+ msgid "Jump to setting"
329
+ msgstr ""
330
+
331
+ #: admin/include/edit-gallery.php:347
332
+ msgid "EverlightBox settings"
333
+ msgstr ""
334
+
335
+ #: admin/include/edit-gallery.php:351
336
+ msgid "EverlightBox not installed"
337
+ msgstr ""
338
+
339
+ #: admin/include/edit-gallery.php:351
340
+ msgid "Purchase"
341
+ msgstr ""
342
+
343
+ #: admin/include/edit-gallery.php:388
344
+ msgid "Add filter"
345
+ msgstr ""
346
+
347
+ #: admin/include/edit-gallery.php:389
348
+ msgid "Reset selected filter"
349
+ msgstr ""
350
+
351
+ #: admin/include/edit-gallery.php:404
352
+ msgid "Resolution"
353
+ msgstr ""
354
+
355
+ #: admin/include/edit-gallery.php:405
356
+ msgid "Size factor"
357
+ msgstr ""
358
+
359
+ #: admin/include/edit-gallery.php:413
360
+ msgid "Add resolution"
361
+ msgstr ""
362
+
363
+ #: admin/include/edit-gallery.php:421
364
+ msgid "Shortcode attribute"
365
+ msgstr ""
366
+
367
+ #: admin/include/edit-gallery.php:446 admin/include/edit-gallery.php:449
368
+ #: admin/overview.php:27 admin/overview.php:30 admin/overview.php:108
369
+ #: admin/overview.php:111
370
+ msgid "Upgrade"
371
+ msgstr ""
372
+
373
+ #: admin/include/edit-gallery.php:446 admin/overview.php:27
374
+ #: admin/overview.php:108
375
+ msgid "unlock features"
376
+ msgstr ""
377
+
378
+ #: admin/include/edit-gallery.php:455 admin/overview.php:36
379
+ #: admin/overview.php:117
380
+ msgid "discount"
381
+ msgstr ""
382
+
383
+ #: admin/include/edit-gallery.php:458 admin/overview.php:39
384
+ #: admin/overview.php:120
385
+ msgid "GET 3 plugins"
386
+ msgstr ""
387
+
388
+ #: admin/include/edit-gallery.php:466
389
+ msgid "Publish"
390
+ msgstr ""
391
+
392
+ #: admin/include/edit-gallery.php:473
393
+ msgid "Save gallery"
394
+ msgstr ""
395
+
396
+ #: admin/include/edit-gallery.php:478
397
+ msgid "Import settings"
398
+ msgstr ""
399
+
400
+ #: admin/include/edit-gallery.php:480
401
+ msgid "Paste Here the configuration code"
402
+ msgstr ""
403
+
404
+ #: admin/include/edit-gallery.php:482
405
+ msgid "Import"
406
+ msgstr ""
407
+
408
+ #: admin/include/edit-gallery.php:486
409
+ msgid "Export settings"
410
+ msgstr ""
411
+
412
+ #: admin/include/edit-gallery.php:488
413
+ msgid "Settings"
414
+ msgstr ""
415
+
416
+ #: admin/include/edit-gallery.php:490
417
+ msgid "Refresh code"
418
+ msgstr ""
419
+
420
+ #: admin/include/edit-gallery.php:494
421
+ msgid "Help"
422
+ msgstr ""
423
+
424
+ #: admin/include/edit-gallery.php:499
425
+ msgid "Documentation"
426
+ msgstr ""
427
+
428
+ #: admin/include/edit-gallery.php:503
429
+ msgid "Tutorial"
430
+ msgstr ""
431
+
432
+ #: admin/include/edit-gallery.php:507
433
+ msgid "How to add additional image sizes"
434
+ msgstr ""
435
+
436
+ #: admin/include/edit-gallery.php:515
437
+ msgid "FAQ"
438
+ msgstr ""
439
+
440
+ #: admin/include/edit-gallery.php:519
441
+ msgid "How can I change the grid on mobile?"
442
+ msgstr ""
443
+
444
+ #: admin/include/edit-gallery.php:521
445
+ msgid ""
446
+ "You can customize the aspect of your galleries for any device. Find the "
447
+ "options \"Image size factor\" into the \"Advanced\" section. Set a lower "
448
+ "value to make images smaller and a higher value to make images larger."
449
+ msgstr ""
450
+
451
+ #: admin/include/edit-gallery.php:525
452
+ msgid "How to add a link to a picture?"
453
+ msgstr ""
454
+
455
+ #: admin/include/edit-gallery.php:527
456
+ msgid ""
457
+ "Click the edit (pencil) icon on the image and insert the link inside the "
458
+ "\"Link\" field"
459
+ msgstr ""
460
+
461
+ #: admin/include/edit-gallery.php:531
462
+ msgid "Why my images look blurry?"
463
+ msgstr ""
464
+
465
+ #: admin/include/edit-gallery.php:533
466
+ msgid ""
467
+ "You probably have chosen a small image size. Click the edit (pencil) icon "
468
+ "on the blurry image and choose a larger size. Remember, you can choose the "
469
+ "size before adding the images to the gallery"
470
+ msgstr ""
471
+
472
+ #: admin/include/edit-gallery.php:548
473
+ msgid "Paste here the embed code (it must be an "
474
+ msgstr ""
475
+
476
+ #: admin/include/edit-gallery.php:548
477
+ msgid "iframe"
478
+ msgstr ""
479
+
480
+ #: admin/include/edit-gallery.php:549
481
+ msgid "and it must contain the attributes"
482
+ msgstr ""
483
+
484
+ #: admin/include/edit-gallery.php:549
485
+ msgid "width"
486
+ msgstr ""
487
+
488
+ #: admin/include/edit-gallery.php:549
489
+ msgid "and"
490
+ msgstr ""
491
+
492
+ #: admin/include/edit-gallery.php:549
493
+ msgid " height"
494
+ msgstr ""
495
+
496
+ #: admin/include/edit-gallery.php:567
497
+ msgid "Edit image"
498
+ msgstr ""
499
+
500
+ #: admin/include/edit-gallery.php:574 admin/overview.php:57
501
+ msgid "Title"
502
+ msgstr ""
503
+
504
+ #: admin/include/edit-gallery.php:580
505
+ msgid "Caption"
506
+ msgstr ""
507
+
508
+ #: admin/include/edit-gallery.php:586
509
+ msgid "Alt"
510
+ msgstr ""
511
+
512
+ #: admin/include/edit-gallery.php:586
513
+ msgid "(leave empty to use title or description as ALT attribute)"
514
+ msgstr ""
515
+
516
+ #: admin/include/edit-gallery.php:594
517
+ msgid "Hidden, visible only with lightbox"
518
+ msgstr ""
519
+
520
+ #: admin/include/edit-gallery.php:602
521
+ msgid "Link"
522
+ msgstr ""
523
+
524
+ #: admin/include/edit-gallery.php:606
525
+ msgid "Link target"
526
+ msgstr ""
527
+
528
+ #: admin/include/edit-gallery.php:608
529
+ msgid "Default target"
530
+ msgstr ""
531
+
532
+ #: admin/include/edit-gallery.php:609
533
+ msgid "Open in same page"
534
+ msgstr ""
535
+
536
+ #: admin/include/edit-gallery.php:610
537
+ msgid "Open in _blank"
538
+ msgstr ""
539
+
540
+ #: admin/include/edit-gallery.php:611
541
+ msgid "Open in lightbox (when using a lightbox)"
542
+ msgstr ""
543
+
544
+ #: admin/include/edit-gallery.php:620
545
+ msgid "Lightbox group (\"rel\" attribute)"
546
+ msgstr ""
547
+
548
+ #: admin/include/edit-gallery.php:622
549
+ msgid ""
550
+ "Used to group images with the following lightbox: Magnific Popup, "
551
+ "PrettyPhoto, FancyBox, SwipeBox, Lightbox"
552
+ msgstr ""
553
+
554
+ #: admin/include/fields.php:163
555
+ msgid "Loading method"
556
+ msgstr ""
557
+
558
+ #: admin/include/fields.php:184
559
+ msgid "Asynchronous loading"
560
+ msgstr ""
561
+
562
+ #: admin/include/fields.php:196
563
+ msgid "Don't enable ajax loading if you need to index your images on search engines"
564
+ msgstr ""
565
+
566
+ #: admin/include/fields.php:205
567
+ msgid "Number of images to load via ajax"
568
+ msgstr ""
569
+
570
+ #: admin/include/fields.php:219
571
+ msgid "Name"
572
+ msgstr ""
573
+
574
+ #: admin/include/fields.php:225
575
+ msgid "Name of the gallery, for internal use."
576
+ msgstr ""
577
+
578
+ #: admin/include/fields.php:234 admin/overview.php:60
579
+ msgid "Description"
580
+ msgstr ""
581
+
582
+ #: admin/include/fields.php:240
583
+ msgid "Description of the gallery, for internal use."
584
+ msgstr ""
585
+
586
+ #: admin/include/fields.php:249
587
+ msgid "Layout"
588
+ msgstr ""
589
+
590
+ #: admin/include/fields.php:251
591
+ msgid ""
592
+ "<strong>Final Tiles</strong>: use images with different "
593
+ "sizes<br><strong>Masonry</strong>: multi-column layout, use this one if you "
594
+ "need images of the same size."
595
+ msgstr ""
596
+
597
+ #: admin/include/fields.php:263
598
+ msgid "Width"
599
+ msgstr ""
600
+
601
+ #: admin/include/fields.php:265
602
+ msgid "Width of the gallery in pixels or percentage."
603
+ msgstr ""
604
+
605
+ #: admin/include/fields.php:271
606
+ msgid "Margin"
607
+ msgstr ""
608
+
609
+ #: admin/include/fields.php:273
610
+ msgid "Margin between images"
611
+ msgstr ""
612
+
613
+ #: admin/include/fields.php:282
614
+ msgid "Number of columns"
615
+ msgstr ""
616
+
617
+ #: admin/include/fields.php:295
618
+ msgid "Images order"
619
+ msgstr ""
620
+
621
+ #: admin/include/fields.php:297
622
+ msgid "Choose the order of the images"
623
+ msgstr ""
624
+
625
+ #: admin/include/fields.php:310
626
+ msgid "Filters"
627
+ msgstr ""
628
+
629
+ #: admin/include/fields.php:312
630
+ msgid "Manage here all the filters of this gallery"
631
+ msgstr ""
632
+
633
+ #: admin/include/fields.php:322
634
+ msgid "Reload Page on filter click"
635
+ msgstr ""
636
+
637
+ #: admin/include/fields.php:324
638
+ msgid "Turn this feature ON if you want to use filters with most lightboxes"
639
+ msgstr ""
640
+
641
+ #: admin/include/fields.php:331
642
+ msgid "Size of the grid"
643
+ msgstr ""
644
+
645
+ #: admin/include/fields.php:337
646
+ msgid ""
647
+ "Tiles are snapped to a virtual grid, <strong>the higher this value the "
648
+ "higher the chance to get bottom aligned tiles</strong> (but it needs to "
649
+ "crop vertically)."
650
+ msgstr ""
651
+
652
+ #: admin/include/fields.php:342
653
+ msgid "Disable grid size below resolution"
654
+ msgstr ""
655
+
656
+ #: admin/include/fields.php:348
657
+ msgid ""
658
+ "If you have small tiny images under certain resolutions then you can switch "
659
+ "off grid size (image cropping) when the screen resolution is below this "
660
+ "value."
661
+ msgstr ""
662
+
663
+ #: admin/include/fields.php:370 admin/include/fields.php:409
664
+ msgid ""
665
+ "Define here what happens when user click on the images. Lightboxes with "
666
+ "video support: EverlightBox, LightGallery, Magnific popup, Colorbox "
667
+ "(require embed URL)); PrettyPhoto, FancyBox (require embed URL)"
668
+ msgstr ""
669
+
670
+ #: admin/include/fields.php:449 admin/include/fields.php:458
671
+ msgid ""
672
+ "Custom options for chosen lightbox. Enter params without curly "
673
+ "braces.<br>Example: <span style='font-family:monospace'>easing: linear, "
674
+ "mode: 'lg-fade'</span>.<br>Documentation: <a "
675
+ "href='http://sachinchoolur.github.io/lightGallery/docs/api.html' "
676
+ "target='_blank'>LightGallery</a>, <a target='_blank' "
677
+ "href='http://dimsemenov.com/plugins/magnific-popup/documentation.html'"
678
+ ">Magnific Popup</a>."
679
+ msgstr ""
680
+
681
+ #: admin/include/fields.php:465
682
+ msgid "Image size for the lightbox"
683
+ msgstr ""
684
+
685
+ #: admin/include/fields.php:475
686
+ msgid "Disable lightbox grouping"
687
+ msgstr ""
688
+
689
+ #: admin/include/fields.php:477
690
+ msgid ""
691
+ "Flag this option if you don't want to group images when opened in a "
692
+ "lightbox."
693
+ msgstr ""
694
+
695
+ #: admin/include/fields.php:483
696
+ msgid "Links target"
697
+ msgstr ""
698
+
699
+ #: admin/include/fields.php:485
700
+ msgid "Open links in a blank page."
701
+ msgstr ""
702
+
703
+ #: admin/include/fields.php:490
704
+ msgid "Enable Twitter icon"
705
+ msgstr ""
706
+
707
+ #: admin/include/fields.php:492
708
+ msgid "Enable Twitter sharing."
709
+ msgstr ""
710
+
711
+ #: admin/include/fields.php:498
712
+ msgid "Enable Facebook icon"
713
+ msgstr ""
714
+
715
+ #: admin/include/fields.php:500
716
+ msgid ""
717
+ "Enable Facebook sharing. Note: after the last version of OpenGraph API it's "
718
+ "not possible to share a specific image anymore."
719
+ msgstr ""
720
+
721
+ #: admin/include/fields.php:506
722
+ msgid "Enable Google Plus icon"
723
+ msgstr ""
724
+
725
+ #: admin/include/fields.php:508
726
+ msgid "Enable Google Plus sharing"
727
+ msgstr ""
728
+
729
+ #: admin/include/fields.php:514
730
+ msgid "Enable Pinterest icon"
731
+ msgstr ""
732
+
733
+ #: admin/include/fields.php:516
734
+ msgid "Enable Pinterest sharing"
735
+ msgstr ""
736
+
737
+ #: admin/include/fields.php:522
738
+ msgid "Color of social sharing icons"
739
+ msgstr ""
740
+
741
+ #: admin/include/fields.php:524 admin/include/fields.php:532
742
+ msgid "Set the color of the social sharing icons"
743
+ msgstr ""
744
+
745
+ #: admin/include/fields.php:530
746
+ msgid "Style of the social icons panel"
747
+ msgstr ""
748
+
749
+ #: admin/include/fields.php:545
750
+ msgid "Position of the social icons panel"
751
+ msgstr ""
752
+
753
+ #: admin/include/fields.php:547
754
+ msgid "Set the position of the social sharing icons"
755
+ msgstr ""
756
+
757
+ #: admin/include/fields.php:560
758
+ msgid "Caption behavior"
759
+ msgstr ""
760
+
761
+ #: admin/include/fields.php:562
762
+ msgid "Effect used to show the captions."
763
+ msgstr ""
764
+
765
+ #: admin/include/fields.php:597
766
+ msgid "Caption mobile behavior"
767
+ msgstr ""
768
+
769
+ #: admin/include/fields.php:599
770
+ msgid "Caption behavior for mobile devices."
771
+ msgstr ""
772
+
773
+ #: admin/include/fields.php:627
774
+ msgid "Custom fields"
775
+ msgstr ""
776
+
777
+ #: admin/include/fields.php:629
778
+ msgid ""
779
+ "Insert 1 custom field on each line. Add an optional label after the custom "
780
+ "field code."
781
+ msgstr ""
782
+
783
+ #: admin/include/fields.php:637
784
+ msgid "Position"
785
+ msgstr ""
786
+
787
+ #: admin/include/fields.php:639
788
+ msgid "Choose the position of the caption."
789
+ msgstr ""
790
+
791
+ #: admin/include/fields.php:658
792
+ msgid "Empty captions"
793
+ msgstr ""
794
+
795
+ #: admin/include/fields.php:660
796
+ msgid "Choose if empty caption has to be shown."
797
+ msgstr ""
798
+
799
+ #: admin/include/fields.php:680
800
+ msgid "Caption icon"
801
+ msgstr ""
802
+
803
+ #: admin/include/fields.php:682
804
+ msgid "Choose the icon for the captions."
805
+ msgstr ""
806
+
807
+ #: admin/include/fields.php:705
808
+ msgid "Custom caption icon"
809
+ msgstr ""
810
+
811
+ #: admin/include/fields.php:707
812
+ msgid ""
813
+ "Use this field to insert the class of a FontAwesome icon (i.e.: fa-heart). "
814
+ "<a href='https://fontawesome.com/v4.7.0/icons/' target='blank'>See all "
815
+ "available icons</a>. <strong>This value override the <i>Caption icon</i> "
816
+ "value</strong>."
817
+ msgstr ""
818
+
819
+ #: admin/include/fields.php:712
820
+ msgid "Caption icon color"
821
+ msgstr ""
822
+
823
+ #: admin/include/fields.php:714
824
+ msgid "Color of the icon in captions."
825
+ msgstr ""
826
+
827
+ #: admin/include/fields.php:720
828
+ msgid "Caption icon size"
829
+ msgstr ""
830
+
831
+ #: admin/include/fields.php:722
832
+ msgid "Size of the icon in captions."
833
+ msgstr ""
834
+
835
+ #: admin/include/fields.php:731
836
+ msgid "Caption font size"
837
+ msgstr ""
838
+
839
+ #: admin/include/fields.php:733 admin/include/fields.php:905
840
+ msgid "Size of the font in captions."
841
+ msgstr ""
842
+
843
+ #: admin/include/fields.php:742
844
+ msgid "Caption effect easing"
845
+ msgstr ""
846
+
847
+ #: admin/include/fields.php:744
848
+ msgid ""
849
+ "Easing function for the caption animation, works better with sliding "
850
+ "animations."
851
+ msgstr ""
852
+
853
+ #: admin/include/fields.php:762
854
+ msgid "Caption frame"
855
+ msgstr ""
856
+
857
+ #: admin/include/fields.php:764
858
+ msgid "Add a frame around the caption"
859
+ msgstr ""
860
+
861
+ #: admin/include/fields.php:770
862
+ msgid "Caption frame color"
863
+ msgstr ""
864
+
865
+ #: admin/include/fields.php:772
866
+ msgid "Color of the frame around the caption"
867
+ msgstr ""
868
+
869
+ #: admin/include/fields.php:778
870
+ msgid "Caption color"
871
+ msgstr ""
872
+
873
+ #: admin/include/fields.php:780
874
+ msgid "Text color of the captions."
875
+ msgstr ""
876
+
877
+ #: admin/include/fields.php:786
878
+ msgid "Caption effect duration"
879
+ msgstr ""
880
+
881
+ #: admin/include/fields.php:788
882
+ msgid "Duration of the caption animation."
883
+ msgstr ""
884
+
885
+ #: admin/include/fields.php:797 admin/include/fields.php:799
886
+ msgid "Caption background color"
887
+ msgstr ""
888
+
889
+ #: admin/include/fields.php:805
890
+ msgid "Caption opacity"
891
+ msgstr ""
892
+
893
+ #: admin/include/fields.php:807
894
+ msgid ""
895
+ "Opacity of the caption, 0% means 'invisible' while 100% is a plain color "
896
+ "without opacity."
897
+ msgstr ""
898
+
899
+ #: admin/include/fields.php:816
900
+ msgid "WordPress caption field"
901
+ msgstr ""
902
+
903
+ #: admin/include/fields.php:818
904
+ msgid ""
905
+ "WordPress field used for captions. <strong>This field is used ONLY when "
906
+ "images are added to the gallery, </strong> however, if you want to ignore "
907
+ "captions just set it to '<i>Don't use captions</i>'."
908
+ msgstr ""
909
+
910
+ #: admin/include/fields.php:833
911
+ msgid "WordPress title field"
912
+ msgstr ""
913
+
914
+ #: admin/include/fields.php:835
915
+ msgid ""
916
+ "WordPress field used for titles. <strong>This field is used ONLY when "
917
+ "images are added to the gallery, </strong> however, if you want to ignore "
918
+ "titles just set it to '<i>Don't use titles</i>'."
919
+ msgstr ""
920
+
921
+ #: admin/include/fields.php:849
922
+ msgid "Recent posts caption"
923
+ msgstr ""
924
+
925
+ #: admin/include/fields.php:851
926
+ msgid "Field of the post used for captions when using \"Recent posts\" as source."
927
+ msgstr ""
928
+
929
+ #: admin/include/fields.php:867
930
+ msgid "Max number of words for 'Auto excerpt'"
931
+ msgstr ""
932
+
933
+ #: admin/include/fields.php:869
934
+ msgid ""
935
+ "Define the max number of words of the caption when <i>Recent posts "
936
+ "caption</i> is set to <i>Auto excerpt</i>."
937
+ msgstr ""
938
+
939
+ #: admin/include/fields.php:875
940
+ msgid "Caption Vertical Alignment"
941
+ msgstr ""
942
+
943
+ #: admin/include/fields.php:877
944
+ msgid "Choose the vertical alignment of the caption"
945
+ msgstr ""
946
+
947
+ #: admin/include/fields.php:889
948
+ msgid "Caption Horizontal Alignment"
949
+ msgstr ""
950
+
951
+ #: admin/include/fields.php:891
952
+ msgid "Choose the horizontal alignment of the caption"
953
+ msgstr ""
954
+
955
+ #: admin/include/fields.php:903
956
+ msgid "Title font size"
957
+ msgstr ""
958
+
959
+ #: admin/include/fields.php:916
960
+ msgid "Zoom"
961
+ msgstr ""
962
+
963
+ #: admin/include/fields.php:918
964
+ msgid "Scale value."
965
+ msgstr ""
966
+
967
+ #: admin/include/fields.php:928
968
+ msgid "Rotation"
969
+ msgstr ""
970
+
971
+ #: admin/include/fields.php:930
972
+ msgid "Rotation value in degrees."
973
+ msgstr ""
974
+
975
+ #: admin/include/fields.php:939 admin/include/fields.php:959
976
+ msgid "Duration"
977
+ msgstr ""
978
+
979
+ #: admin/include/fields.php:950
980
+ msgid "Rotate icon"
981
+ msgstr ""
982
+
983
+ #: admin/include/fields.php:953
984
+ msgid "Enable rotation of the icon."
985
+ msgstr ""
986
+
987
+ #: admin/include/fields.php:970
988
+ msgid "Easing curve"
989
+ msgstr ""
990
+
991
+ #: admin/include/fields.php:972
992
+ msgid "Choose the easing curve for the loading effect animation"
993
+ msgstr ""
994
+
995
+ #: admin/include/fields.php:989
996
+ msgid "Vertical scaling"
997
+ msgstr ""
998
+
999
+ #: admin/include/fields.php:1000
1000
+ msgid "Horizontal scaling"
1001
+ msgstr ""
1002
+
1003
+ #: admin/include/fields.php:1011
1004
+ msgid "Vertical rotation"
1005
+ msgstr ""
1006
+
1007
+ #: admin/include/fields.php:1022
1008
+ msgid "Horizontal rotation"
1009
+ msgstr ""
1010
+
1011
+ #: admin/include/fields.php:1033
1012
+ msgid "Horizontal slide"
1013
+ msgstr ""
1014
+
1015
+ #: admin/include/fields.php:1044
1016
+ msgid "Vertical slide"
1017
+ msgstr ""
1018
+
1019
+ #: admin/include/fields.php:1055
1020
+ msgid "Border size"
1021
+ msgstr ""
1022
+
1023
+ #: admin/include/fields.php:1057
1024
+ msgid "Size of the border of each image."
1025
+ msgstr ""
1026
+
1027
+ #: admin/include/fields.php:1066
1028
+ msgid "Border radius"
1029
+ msgstr ""
1030
+
1031
+ #: admin/include/fields.php:1068
1032
+ msgid "Border radius of the images."
1033
+ msgstr ""
1034
+
1035
+ #: admin/include/fields.php:1077
1036
+ msgid "Border color"
1037
+ msgstr ""
1038
+
1039
+ #: admin/include/fields.php:1079
1040
+ msgid "Color of the border when size is greater than 0."
1041
+ msgstr ""
1042
+
1043
+ #: admin/include/fields.php:1085
1044
+ msgid "Loading Bar color"
1045
+ msgstr ""
1046
+
1047
+ #: admin/include/fields.php:1087
1048
+ msgid "Color of the loading bar"
1049
+ msgstr ""
1050
+
1051
+ #: admin/include/fields.php:1093
1052
+ msgid "Loading Bar background color"
1053
+ msgstr ""
1054
+
1055
+ #: admin/include/fields.php:1095
1056
+ msgid "Background color of the loading bar"
1057
+ msgstr ""
1058
+
1059
+ #: admin/include/fields.php:1101
1060
+ msgid "Shadow size"
1061
+ msgstr ""
1062
+
1063
+ #: admin/include/fields.php:1103
1064
+ msgid "Shadow size of the images."
1065
+ msgstr ""
1066
+
1067
+ #: admin/include/fields.php:1112
1068
+ msgid "Shadow color"
1069
+ msgstr ""
1070
+
1071
+ #: admin/include/fields.php:1114
1072
+ msgid "Color of the shadow when size is greater than 0."
1073
+ msgstr ""
1074
+
1075
+ #: admin/include/fields.php:1120
1076
+ msgid "Tile background color"
1077
+ msgstr ""
1078
+
1079
+ #: admin/include/fields.php:1122
1080
+ msgid "Background color of tiles"
1081
+ msgstr ""
1082
+
1083
+ #: admin/include/fields.php:1128
1084
+ msgid "Additional CSS class on A tag"
1085
+ msgstr ""
1086
+
1087
+ #: admin/include/fields.php:1130
1088
+ msgid ""
1089
+ "Use this field if you need to add additional CSS classes to the link that "
1090
+ "contains the image."
1091
+ msgstr ""
1092
+
1093
+ #: admin/include/fields.php:1136
1094
+ msgid "Value of 'rel' attribute on the link that contains the image."
1095
+ msgstr ""
1096
+
1097
+ #: admin/include/fields.php:1138
1098
+ msgid ""
1099
+ "Use this field if you need to add additional CSS classes to the link that "
1100
+ "contains the image. This is useful mostly to integrate the gallery with "
1101
+ "other lightbox plugins."
1102
+ msgstr ""
1103
+
1104
+ #: admin/include/fields.php:1144
1105
+ msgid "Text before gallery"
1106
+ msgstr ""
1107
+
1108
+ #: admin/include/fields.php:1146
1109
+ msgid "Use this field to add text/html to be placed just before your gallery."
1110
+ msgstr ""
1111
+
1112
+ #: admin/include/fields.php:1153
1113
+ msgid "Text after gallery"
1114
+ msgstr ""
1115
+
1116
+ #: admin/include/fields.php:1155
1117
+ msgid "Use this field to add text/html to be placed just after your gallery."
1118
+ msgstr ""
1119
+
1120
+ #: admin/include/fields.php:1162
1121
+ msgid "Custom CSS"
1122
+ msgstr ""
1123
+
1124
+ #: admin/include/fields.php:1164
1125
+ msgid ""
1126
+ "<strong>Write just the code without using the &lt;style&gt; "
1127
+ "tag.</strong><br>List of useful selectors:<br>\r\n"
1128
+ " <br>\r\n"
1129
+ " <ul>\r\n"
1130
+ " <li>\r\n"
1131
+ " <em>.final-tiles-gallery</em> : gallery container;\r\n"
1132
+ " </li>\r\n"
1133
+ " <li>\r\n"
1134
+ " <em>.final-tiles-gallery .tile-inner</em> : tile content;\r\n"
1135
+ " </li>\r\n"
1136
+ " <li>\r\n"
1137
+ " <em>.final-tiles-gallery .tile-inner .item</em> : image of "
1138
+ "the tile;\r\n"
1139
+ " </li>\r\n"
1140
+ " <li>\r\n"
1141
+ " <em>.final-tiles-gallery .tile-inner .caption</em> : "
1142
+ "caption of the tile;\r\n"
1143
+ " </li>\r\n"
1144
+ " <li>\r\n"
1145
+ " <em>.final-tiles-gallery .ftg-filters</em> : filters "
1146
+ "container\r\n"
1147
+ " </li>\r\n"
1148
+ " <li>\r\n"
1149
+ " <em>.final-tiles-gallery .ftg-filters a</em> : filter\r\n"
1150
+ " </li>\r\n"
1151
+ " <li>\r\n"
1152
+ " <em>.final-tiles-gallery .ftg-filters a.selected</em> : "
1153
+ "selected filter\r\n"
1154
+ " </li>\r\n"
1155
+ " </ul>"
1156
+ msgstr ""
1157
+
1158
+ #: admin/include/fields.php:1195
1159
+ msgid "Custom scripts"
1160
+ msgstr ""
1161
+
1162
+ #: admin/include/fields.php:1197
1163
+ msgid ""
1164
+ "This script will be called after the gallery initialization. Useful for "
1165
+ "custom lightboxes.\r\n"
1166
+ " <br />\r\n"
1167
+ " <br />\r\n"
1168
+ " <strong>Write just the code without using the "
1169
+ "&lt;script&gt;&lt;/script&gt; tags</strong>"
1170
+ msgstr ""
1171
+
1172
+ #: admin/include/fields.php:1207
1173
+ msgid "Delay"
1174
+ msgstr ""
1175
+
1176
+ #: admin/include/fields.php:1209
1177
+ msgid ""
1178
+ "Delay (in milliseconds) before firing the gallery. Sometimes it's needed to "
1179
+ "avoid conflicts with other plugins."
1180
+ msgstr ""
1181
+
1182
+ #: admin/include/fields.php:1218
1183
+ msgid "Show developer link"
1184
+ msgstr ""
1185
+
1186
+ #: admin/include/fields.php:1220
1187
+ msgid "I want to support this plugin, show the developer link!"
1188
+ msgstr ""
1189
+
1190
+ #: admin/include/fields.php:1228
1191
+ msgid "Developer link text"
1192
+ msgstr ""
1193
+
1194
+ #: admin/include/fields.php:1230
1195
+ msgid "Text for the developer link"
1196
+ msgstr ""
1197
+
1198
+ #: admin/include/fields.php:1236
1199
+ msgid "Number of columns (Tablet landscape)"
1200
+ msgstr ""
1201
+
1202
+ #: admin/include/fields.php:1246
1203
+ msgid "Number of columns (Tablet portrait)"
1204
+ msgstr ""
1205
+
1206
+ #: admin/include/fields.php:1256
1207
+ msgid "Number of columns (Phone landscape)"
1208
+ msgstr ""
1209
+
1210
+ #: admin/include/fields.php:1266
1211
+ msgid "Number of columns (Phone portrait)"
1212
+ msgstr ""
1213
+
1214
+ #: admin/include/fields.php:1276
1215
+ msgid "Image size factor"
1216
+ msgstr ""
1217
+
1218
+ #: admin/include/fields.php:1278
1219
+ msgid ""
1220
+ "Percentage of image size, i.e.: if an image of the gallery is 300x200 and "
1221
+ "the size factor is 50% then the resulting image will be 150x100.\r\n"
1222
+ " 90% is a suggested default value, because under some "
1223
+ "circumstances, the images could be enlarged by the script (to fill gaps and "
1224
+ "avoid blank spaces between tiles)."
1225
+ msgstr ""
1226
+
1227
+ #: admin/include/fields.php:1288
1228
+ msgid "Image size factor (Tablet Landscape)"
1229
+ msgstr ""
1230
+
1231
+ #: admin/include/fields.php:1290
1232
+ msgid ""
1233
+ "Image size factor to apply when the viewport is 1024px, typically for "
1234
+ "tablets with landscape orientation"
1235
+ msgstr ""
1236
+
1237
+ #: admin/include/fields.php:1299
1238
+ msgid "Image size factor Tablet Portrait"
1239
+ msgstr ""
1240
+
1241
+ #: admin/include/fields.php:1301
1242
+ msgid ""
1243
+ "Image size factor to apply when the viewport is 768px, typically for "
1244
+ "tablets with portrait orientation"
1245
+ msgstr ""
1246
+
1247
+ #: admin/include/fields.php:1310
1248
+ msgid "Image size factor Smartphone Landscape"
1249
+ msgstr ""
1250
+
1251
+ #: admin/include/fields.php:1312
1252
+ msgid ""
1253
+ "Image size factor to apply when the viewport is 640px, typically for "
1254
+ "smartphones with landscape orientation"
1255
+ msgstr ""
1256
+
1257
+ #: admin/include/fields.php:1321
1258
+ msgid "Image size factor Phone Portrait"
1259
+ msgstr ""
1260
+
1261
+ #: admin/include/fields.php:1323
1262
+ msgid ""
1263
+ "Image size factor to apply when the viewport is 320px, typically for "
1264
+ "smartphones with portrait orientation"
1265
+ msgstr ""
1266
+
1267
+ #: admin/include/fields.php:1332
1268
+ msgid "Custom image size factor"
1269
+ msgstr ""
1270
+
1271
+ #: admin/include/fields.php:1338
1272
+ msgid ""
1273
+ "Use this field if you need further resolutions. Make custom layout for any "
1274
+ "device and resolution."
1275
+ msgstr ""
1276
+
1277
+ #: admin/include/fields.php:1346
1278
+ msgid "Compress HTML"
1279
+ msgstr ""
1280
+
1281
+ #: admin/include/fields.php:1348
1282
+ msgid ""
1283
+ "Enable or disable HTML compression, some themes prefer uncompressed, switch "
1284
+ "it off in case of problems."
1285
+ msgstr ""
1286
+
1287
+ #: admin/include/fields.php:1354
1288
+ msgid "Tile minimum width"
1289
+ msgstr ""
1290
+
1291
+ #: admin/include/fields.php:1356
1292
+ msgid ""
1293
+ "Minimum width of each tile, <strong>multiply this value for the image size "
1294
+ "factor to get the real size</strong>."
1295
+ msgstr ""
1296
+
1297
+ #: admin/include/fields.php:1365
1298
+ msgid "Allow image enlargement"
1299
+ msgstr ""
1300
+
1301
+ #: admin/include/fields.php:1367
1302
+ msgid ""
1303
+ "Images can be occasionally enlarged to avoid gaps. If you notice a quality "
1304
+ "loss try to reduce the <strong>Image size factor</strong> parameter."
1305
+ msgstr ""
1306
+
1307
+ #: admin/include/fields.php:1374
1308
+ msgid "Text for 'All' filter"
1309
+ msgstr ""
1310
+
1311
+ #: admin/include/fields.php:1376
1312
+ msgid "Write here the label for the 'All' filter"
1313
+ msgstr ""
1314
+
1315
+ #: admin/overview.php:10
1316
+ msgid "Final Tiles Gallery"
1317
+ msgstr ""
1318
+
1319
+ #: admin/overview.php:11 admin/overview.php:142
1320
+ msgid "Galleries"
1321
+ msgstr ""
1322
+
1323
+ #: admin/overview.php:17
1324
+ msgid "Welcome to Final Tiles Grid Gallery!"
1325
+ msgstr ""
1326
+
1327
+ #: admin/overview.php:19
1328
+ msgid "Create your first awesome gallery, click"
1329
+ msgstr ""
1330
+
1331
+ #: admin/overview.php:63
1332
+ msgid "type"
1333
+ msgstr ""
1334
+
1335
+ #: admin/overview.php:66
1336
+ msgid "Shortcode"
1337
+ msgstr ""
1338
+
1339
+ #: admin/overview.php:79
1340
+ msgid "Edit"
1341
+ msgstr ""
1342
+
1343
+ #: admin/overview.php:82
1344
+ msgid "Clone gallery"
1345
+ msgstr ""
1346
+
1347
+ #: admin/overview.php:85
1348
+ msgid "Delete gallery"
1349
+ msgstr ""
1350
+
1351
+ #: admin/overview.php:130
1352
+ msgid "Redeem your coupon"
1353
+ msgstr ""
1354
+
1355
+ #: admin/overview.php:133 admin/overview.php:145
1356
+ msgid "Add gallery"
1357
+ msgstr ""
1358
+
1359
+ #: admin/overview.php:134
1360
+ msgid "No, thank you"
1361
+ msgstr ""
1362
+
1363
+ #: admin/overview.php:158
1364
+ msgid "Confirmation"
1365
+ msgstr ""
1366
+
1367
+ #: admin/overview.php:159
1368
+ msgid "Do you really want to delete the gallery"
1369
+ msgstr ""
1370
+
1371
+ #: admin/overview.php:162
1372
+ msgid "Yes"
1373
+ msgstr ""
1374
+
1375
+ #: admin/overview.php:163
1376
+ msgid "No"
1377
+ msgstr ""
1378
+
1379
+ #: admin/overview.php:170
1380
+ msgid "Copy and paste the following shortcode inside a post, page or widget:"
1381
+ msgstr ""
1382
+
1383
+ #. Plugin Name of the plugin/theme
1384
+ msgid "Final Tiles Grid Gallery - Image Gallery"
1385
+ msgstr ""
1386
+
1387
+ #. Plugin URI of the plugin/theme
1388
+ msgid "https://greentreelabs.net/final-tiles-gallery-lite/"
1389
+ msgstr ""
1390
+
1391
+ #. Description of the plugin/theme
1392
+ msgid "Wordpress Plugin for creating responsive image galleries."
1393
+ msgstr ""
1394
+
1395
+ #. Author URI of the plugin/theme
1396
+ msgid "https://www.machothemes.com"
1397
+ msgstr ""
lib/gallery-class.php CHANGED
@@ -3,7 +3,7 @@
3
  if ( !class_exists( "FinalTilesGallery" ) ) {
4
  class FinalTilesGallery
5
  {
6
- public $gallery ;
7
  private $defaultValues ;
8
  public function __construct(
9
  $galleryId,
@@ -13,12 +13,12 @@ if ( !class_exists( "FinalTilesGallery" ) ) {
13
  )
14
  {
15
  $this->id = $galleryId;
16
- $this->defaultValues = $defaultValues;
 
17
  $this->db = $db;
18
  $this->images = array();
19
- $this->gallery = $this->getGallery();
20
-
21
- if ( !$this->gallery ) {
22
  return;
23
  }
24
  foreach ( $attrs as $k => $v ) {
@@ -305,7 +305,7 @@ if ( !class_exists( "FinalTilesGallery" ) ) {
305
 
306
  public function render()
307
  {
308
- if ( !$this->gallery ) {
309
  return "<pre style='font-size:10px'>Final Tiles Gallery id=" . $this->id . " does not exist</pre>";
310
  }
311
  $rid = $this->id;
3
  if ( !class_exists( "FinalTilesGallery" ) ) {
4
  class FinalTilesGallery
5
  {
6
+ public $loaded ;
7
  private $defaultValues ;
8
  public function __construct(
9
  $galleryId,
13
  )
14
  {
15
  $this->id = $galleryId;
16
+ $this->defaultValues = $defaultValues;
17
+ $this->gallery = null;
18
  $this->db = $db;
19
  $this->images = array();
20
+ $this->loaded = $this->getGallery();
21
+ if ( !$this->loaded ) {
 
22
  return;
23
  }
24
  foreach ( $attrs as $k => $v ) {
305
 
306
  public function render()
307
  {
308
+ if ( !$this->loaded ) {
309
  return "<pre style='font-size:10px'>Final Tiles Gallery id=" . $this->id . " does not exist</pre>";
310
  }
311
  $rid = $this->id;
lib/languages/final-tiles-gallery.pot CHANGED
@@ -302,7 +302,7 @@ msgid "(time zone permitting), thanks!"
302
  msgstr ""
303
 
304
  #: admin/support.php:29
305
- msgid "Go to MachoThemes support platform"
306
  msgstr ""
307
 
308
  #: admin/tutorial.php:7
302
  msgstr ""
303
 
304
  #: admin/support.php:29
305
+ msgid "Go to GreenTreeLabs support platform"
306
  msgstr ""
307
 
308
  #: admin/tutorial.php:7
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Image Photo Gallery Final Tiles Grid ===
2
- Contributors: machothemes, silkalns
3
  Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
4
  Requires at least: 3.8.2
5
- Tested up to: 5.2
6
- Stable tag: 3.4.17
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -56,6 +56,8 @@ Final Tiles Gallery Lite is a very complete plugin but if you want the best expe
56
  * WooCommerce support
57
  * recent posts / custom posts galleries
58
 
 
 
59
  If you instead want to upgrade and unlock all the cool features then you can [buy a license](https://www.final-tiles-gallery.com/wordpress/pricing).
60
 
61
  The “Final” layout can’t ensure you have a justified edge at the bottom of the gallery. If you have this requirement then you can use the “Masonry” layout and use images with same height, that way you can make a justified gallery.
@@ -116,13 +118,6 @@ Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, M
116
 
117
  * Get priority support with a PRO license: http://www.final-tiles-gallery.com/wordpress/pricing
118
 
119
- = How can I say thanks? =
120
-
121
- * Just recommend our plugin to your friends! or
122
- * Like and share our [Facebook page](https://www.facebook.com/machothemes "Facebook fan page")
123
- * Or buy me a [present](http://amzn.eu/5SP6qpj)
124
-
125
-
126
  == Screenshots ==
127
 
128
  1. Gallery Example 1
@@ -134,6 +129,13 @@ Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, M
134
 
135
  == Changelog ==
136
 
 
 
 
 
 
 
 
137
  = 3.4.17 =
138
  * Fix and update tooltips
139
 
@@ -457,4 +459,4 @@ Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, M
457
  * This version fixes a critical bug that prevented to activate the plugin.
458
 
459
  = 1.0 =
460
- * This is the launch version. No changes yet.
1
  === Image Photo Gallery Final Tiles Grid ===
2
+ Contributors: machothemes, silkalns, freemius
3
  Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
4
  Requires at least: 3.8.2
5
+ Tested up to: 5.3
6
+ Stable tag: 3.4.18
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
56
  * WooCommerce support
57
  * recent posts / custom posts galleries
58
 
59
+ If you love the Lite version and it’s enough for your needs but you want to say “thanks!” you can always buy a [present](http://amzn.eu/5SP6qpj) ;)
60
+
61
  If you instead want to upgrade and unlock all the cool features then you can [buy a license](https://www.final-tiles-gallery.com/wordpress/pricing).
62
 
63
  The “Final” layout can’t ensure you have a justified edge at the bottom of the gallery. If you have this requirement then you can use the “Masonry” layout and use images with same height, that way you can make a justified gallery.
118
 
119
  * Get priority support with a PRO license: http://www.final-tiles-gallery.com/wordpress/pricing
120
 
 
 
 
 
 
 
 
121
  == Screenshots ==
122
 
123
  1. Gallery Example 1
129
 
130
  == Changelog ==
131
 
132
+ = 3.4.18 =
133
+ * Minor update for tooltips
134
+ * Add shortcode copy functionality
135
+ * Color picker bug gix
136
+ * Toggle input bug fix
137
+ *
138
+
139
  = 3.4.17 =
140
  * Fix and update tooltips
141
 
459
  * This version fixes a critical bug that prevented to activate the plugin.
460
 
461
  = 1.0 =
462
+ * This is the launch version. No changes yet.
scripts/gutenberg_block.js CHANGED
@@ -28,7 +28,7 @@
28
  },
29
  layout: {
30
  type: 'string',
31
- default: ''
32
  },
33
  shortcodeAtts: {
34
  type: 'string',
@@ -69,7 +69,6 @@
69
  label: __( 'Select gallery layout', 'FinalTiles-gallery' ),
70
  value: layout,
71
  options: [
72
- { label: __('Default', 'FinalTiles-gallery'), value: '' },
73
  { label: __('Masonry', 'FinalTiles-gallery'), value: 'columns' },
74
  { label: __('Final Tiles', 'FinalTiles-gallery'), value: 'final' }
75
  ],
@@ -127,10 +126,7 @@
127
 
128
  var galleryShortcode = '';
129
  if ( 'undefined' !== (typeof galleryId) && galleryId > 0 ) {
130
- var layoutCode = "";
131
- if(layout != "")
132
- layoutCode = ' layout="' + layout + '" ';
133
- galleryShortcode = '[FinalTilesGallery id="' + galleryId +'" ' + layoutCode + shortcodeAtts +']';
134
  }
135
 
136
  return el( 'div', {
28
  },
29
  layout: {
30
  type: 'string',
31
+ default: 'columns'
32
  },
33
  shortcodeAtts: {
34
  type: 'string',
69
  label: __( 'Select gallery layout', 'FinalTiles-gallery' ),
70
  value: layout,
71
  options: [
 
72
  { label: __('Masonry', 'FinalTiles-gallery'), value: 'columns' },
73
  { label: __('Final Tiles', 'FinalTiles-gallery'), value: 'final' }
74
  ],
126
 
127
  var galleryShortcode = '';
128
  if ( 'undefined' !== (typeof galleryId) && galleryId > 0 ) {
129
+ galleryShortcode = '[FinalTilesGallery id="' + galleryId +'" layout="'+ layout +'" '+ shortcodeAtts +']';
 
 
 
130
  }
131
 
132
  return el( 'div', {