Speed Booster Pack - Version 4.4.0

Version Description

Release Date: 05 February 2021

  • NEW - LiteSpeed Caching: This experimental new feature connects to your LiteSpeed server and use LiteSpeed's caching structure. Since it's really new, be sure to test thoroughly and kindly report any bugs to our GitHub page.
  • Improved: Better page caching by refactoring some of the code.
  • Fixed: Fixed onboarding for non-English users.
  • Fixed: Fixed a small issue with per-post/page critical CSS settings.
  • Updated: Updated Codestar Framework to v2.2.5.
  • Removed: The Advisor tab is now removed because the Site Health screen in WordPress core will include a Performance tab with the same functionality (in the future).
Download this release

Release Info

Developer optimocha
Plugin Icon 128x128 Speed Booster Pack
Version 4.4.0
Comparing to
See all releases

Code changes from version 4.3.4.2 to 4.4.0

Files changed (73) hide show
  1. README.txt +13 -2
  2. admin/class-speed-booster-pack-admin.php +235 -112
  3. admin/css/speed-booster-pack-admin.css +4 -0
  4. admin/js/init-intro.js +16 -17
  5. admin/js/speed-booster-pack-admin.js +0 -31
  6. includes/class-speed-booster-pack-activator.php +6 -3
  7. includes/class-speed-booster-pack-deactivator.php +2 -0
  8. includes/class-speed-booster-pack.php +2 -2
  9. includes/classes/class-sbp-advanced-cache-generator.php +141 -46
  10. includes/classes/class-sbp-advisor.php +0 -102
  11. includes/classes/class-sbp-base-cache.php +107 -0
  12. includes/classes/class-sbp-cache.php +3 -95
  13. includes/classes/class-sbp-critical-css.php +5 -15
  14. includes/classes/class-sbp-litespeed-cache.php +209 -0
  15. includes/classes/class-sbp-migrator.php +0 -15
  16. includes/classes/class-sbp-newsletter.php +5 -5
  17. includes/classes/class-sbp-utils.php +44 -0
  18. includes/classes/class-sbp-warmup-process.php +0 -3
  19. includes/classes/class-sbp-wp-admin.php +1 -1
  20. includes/classes/class-sbp-wp-config-injector.php +1 -0
  21. includes/sbp-helpers.php +2 -2
  22. speed-booster-pack.php +2 -2
  23. templates/cache/advanced-cache.php +0 -132
  24. uninstall.php +1 -1
  25. vendor/codestar-framework/assets/css/style.css +13 -25
  26. vendor/codestar-framework/assets/css/style.min.css +1 -1
  27. vendor/codestar-framework/assets/js/main.min.js +1 -1
  28. vendor/codestar-framework/assets/js/plugins.min.js +1 -1
  29. vendor/codestar-framework/assets/scss/{vendor → partials}/_base.scss +0 -0
  30. vendor/codestar-framework/assets/scss/{vendor → partials}/_chosen.scss +0 -0
  31. vendor/codestar-framework/assets/scss/{vendor → partials}/_customizer.scss +0 -0
  32. vendor/codestar-framework/assets/scss/{vendor → partials}/_fields.scss +0 -0
  33. vendor/codestar-framework/assets/scss/{vendor → partials}/_helper.scss +0 -0
  34. vendor/codestar-framework/assets/scss/{vendor → partials}/_modal.scss +0 -0
  35. vendor/codestar-framework/assets/scss/{vendor → partials}/_navmenu.scss +0 -0
  36. vendor/codestar-framework/assets/scss/{vendor → partials}/_profile.scss +0 -0
  37. vendor/codestar-framework/assets/scss/{vendor → partials}/_responsive.scss +24 -33
  38. vendor/codestar-framework/assets/scss/{vendor → partials}/_taxonomy.scss +0 -0
  39. vendor/codestar-framework/assets/scss/{vendor → partials}/_themes.scss +0 -0
  40. vendor/codestar-framework/assets/scss/{vendor → partials}/_welcome.scss +0 -0
  41. vendor/codestar-framework/assets/scss/{vendor → partials}/_widget.scss +0 -0
  42. vendor/codestar-framework/assets/scss/style.scss +13 -13
  43. vendor/codestar-framework/classes/admin-options.class.php +5 -1
  44. vendor/codestar-framework/classes/setup.class.php +44 -40
  45. vendor/codestar-framework/codestar-framework.php +1 -1
  46. vendor/codestar-framework/fields/button_set/button_set.php +67 -67
  47. vendor/codestar-framework/fields/checkbox/checkbox.php +1 -1
  48. vendor/codestar-framework/fields/code_editor/code_editor.php +1 -1
  49. vendor/codestar-framework/fields/index.php +1 -1
  50. vendor/codestar-framework/fields/spinner/spinner.php +70 -70
  51. vendor/codestar-framework/functions/walker.php +28 -28
  52. vendor/codestar-framework/languages/ar.po +664 -664
  53. vendor/codestar-framework/languages/az.po +664 -664
  54. vendor/codestar-framework/languages/bn_BD.po +664 -664
  55. vendor/codestar-framework/languages/de_DE.po +664 -664
  56. vendor/codestar-framework/languages/es_ES.po +666 -666
  57. vendor/codestar-framework/languages/fr_FR.po +667 -667
  58. vendor/codestar-framework/languages/hi_IN.po +664 -664
  59. vendor/codestar-framework/languages/id_ID.po +664 -664
  60. vendor/codestar-framework/languages/it_IT.po +664 -664
  61. vendor/codestar-framework/languages/ja.po +664 -664
  62. vendor/codestar-framework/languages/ko_KR.po +664 -664
  63. vendor/codestar-framework/languages/ne_NP.po +655 -655
  64. vendor/codestar-framework/languages/nl_NL.po +667 -667
  65. vendor/codestar-framework/languages/pl_PL.po +666 -666
  66. vendor/codestar-framework/languages/pt_PT.po +664 -664
  67. vendor/codestar-framework/languages/ru_RU.po +664 -664
  68. vendor/codestar-framework/languages/th.po +664 -664
  69. vendor/codestar-framework/languages/tr_TR.po +664 -664
  70. vendor/codestar-framework/languages/vi.po +664 -664
  71. vendor/codestar-framework/languages/zh_CN.mo +0 -0
  72. vendor/codestar-framework/languages/zh_CN.po +666 -8
  73. vendor/codestar-framework/samples/admin-options.php +2474 -0
README.txt CHANGED
@@ -3,9 +3,9 @@ Plugin Name: Speed Booster Pack ⚡ PageSpeed Optimization Suite
3
  Contributors: optimocha, speedboosterpack
4
  Tags: speed, pagespeed, optimization, core web vitals, cache
5
  Requires at least: 4.6
6
- Tested up to: 5.8
7
  Requires PHP: 5.6
8
- Stable tag: 4.3.4.2
9
  License: GPLv3 or later
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -104,6 +104,17 @@ All the time! We're always looking for new ways to get this plugin to a better s
104
 
105
  == Changelog ==
106
 
 
 
 
 
 
 
 
 
 
 
 
107
  = 4.3.4.2 =
108
 
109
  *Release Date: 15 November 2021*
3
  Contributors: optimocha, speedboosterpack
4
  Tags: speed, pagespeed, optimization, core web vitals, cache
5
  Requires at least: 4.6
6
+ Tested up to: 5.9
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.0
9
  License: GPLv3 or later
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
104
 
105
  == Changelog ==
106
 
107
+ = 4.4.0 =
108
+
109
+ *Release Date: 05 February 2021*
110
+
111
+ * **NEW - LiteSpeed Caching**: This experimental new feature connects to your LiteSpeed server and use LiteSpeed's caching structure. Since it's really new, be sure to test thoroughly and [kindly report any bugs to our GitHub page](https://github.com/optimocha/speed-booster-pack/issues/).
112
+ * **Improved**: Better page caching by refactoring some of the code.
113
+ * **Fixed**: Fixed onboarding for non-English users.
114
+ * **Fixed**: Fixed a small issue with per-post/page critical CSS settings.
115
+ * **Updated**: Updated Codestar Framework to v2.2.5.
116
+ * **Removed**: The Advisor tab is now removed because the Site Health screen in WordPress core will include a Performance tab with the same functionality (in the future).
117
+
118
  = 4.3.4.2 =
119
 
120
  *Release Date: 15 November 2021*
admin/class-speed-booster-pack-admin.php CHANGED
@@ -62,7 +62,7 @@ class Speed_Booster_Pack_Admin {
62
 
63
  $this->load_dependencies();
64
 
65
- add_filter('csf_sbp_options_save', '\SpeedBooster\SBP_Cache::options_saved_filter');
66
 
67
  add_action( 'csf_sbp_options_save_before', '\SpeedBooster\SBP_Cache::options_saved_listener' );
68
 
@@ -72,7 +72,9 @@ class Speed_Booster_Pack_Admin {
72
 
73
  add_action( 'csf_sbp_options_saved', '\SpeedBooster\SBP_Cache::generate_htaccess' );
74
 
75
- add_action( 'csf_sbp_options_saved', '\SpeedBooster\SBP_WP_Config_Injector::inject_wp_config' );
 
 
76
 
77
  add_action( 'admin_enqueue_scripts', 'add_thickbox' );
78
 
@@ -90,11 +92,11 @@ class Speed_Booster_Pack_Admin {
90
  */
91
  public function enqueue_styles() {
92
  wp_enqueue_style( $this->plugin_name, SBP_URL . 'admin/css/speed-booster-pack-admin.css', [], $this->version );
93
- if (
94
- get_user_meta( get_current_user_id(), 'sbp_intro', true ) != true &&
95
- ( get_current_screen() && get_current_screen()->id == 'toplevel_page_sbp-settings' ) &&
96
- current_user_can( 'manage_options' )
97
- ) {
98
  wp_enqueue_style( 'sbp_intro_css', SBP_URL . 'admin/css/intro.min.css', [], '4.2.2' );
99
  }
100
  }
@@ -105,40 +107,40 @@ class Speed_Booster_Pack_Admin {
105
  * @since 4.0.0
106
  */
107
  public function enqueue_scripts() {
108
- if (
109
- get_user_meta( get_current_user_id(), 'sbp_intro', true ) != true &&
110
- ( get_current_screen() && get_current_screen()->id == 'toplevel_page_sbp-settings' ) &&
111
- current_user_can( 'manage_options' )
112
- ) {
113
- wp_enqueue_script( 'sbp_intro_js', SBP_URL . 'admin/js/intro.min.js', [ 'jquery' ], '4.2.2' );
114
- wp_enqueue_script( 'sbp_init_intro', SBP_URL . 'admin/js/init-intro.js', [ 'jquery' ], '4.2.2' );
115
- wp_localize_script( 'sbp_intro_js',
116
- 'sbp_intro_translations',
117
- [
118
  /* translators: onboarding modal, first step */
119
- 'welcome' => __( 'Welcome to Speed Booster Pack! We\'d like to give you a quick tour - feel free to close this box and look around the options yourself, or click Next to see our short intro.', 'speed-booster-pack' ),
120
- /* translators: onboarding modal, second step */
121
- 'caching' => __( 'This is our caching tab. Here, you can set caching for your pages to immediately speed up your website.', 'speed-booster-pack' ),
122
- /* translators: onboarding modal, third step */
123
- 'caching2' => __( 'Most tabs have an module toggle like this. Turning on or off the module toggle enables or disables the whole module.', 'speed-booster-pack' ),
124
- /* translators: onboarding modal, fourth step */
125
- 'general' => __( 'The "General" tab includes various tweaks to clean up and speed up things. You can also disable Speed Booster Pack features for certain user roles (e.g. subscribers or customers) if you need to.', 'speed-booster-pack' ),
126
- /* translators: onboarding modal, fifth step */
127
- 'cdn' => __( 'The CDN & Proxy tab has three main settings: You can set a CDN domain to serve all your assets from, you can connect to your Cloudflare account to change your Cloudflare settings, and you can connect to your Sucuri account so you can clear your Sucuri cache automatically.', 'speed-booster-pack' ),
128
- /* translators: onboarding modal, sixth step */
129
- 'css' => __( 'The Optimize CSS tab has some delicate settings which, if configured properly, can drastically improve your website performance. Be sure to follow the directions properly - especially the Critical CSS settings!', 'speed-booster-pack' ),
130
- /* translators: onboarding modal, seventh step */
131
- 'assets' => __( 'The Assets tab can improve your website performance using font optimization, lazy loading, asset preloading and JavaScript optimization. It\'s tempting to enable them all, but make sure you test each change thoroughly or else you can break your website! Think of these tools like powerful weapons which you can hurt yourself with.', 'speed-booster-pack' ),
132
- /* translators: onboarding modal, last step */
133
- 'end' => __( 'That\'s it! Actually, that\'s not it - make sure you check the other tabs to see if you have more room to improve your website speed. Don\'t be afraid to experiment; even if you break something, resetting settings or simply deactivating Speed Booster Pack will undo everything.', 'speed-booster-pack' ),
134
- /* translators: onboarding modal, "Next" label */
135
- 'nextLabel' => __( 'Next', 'speed-booster-pack' ),
136
- /* translators: onboarding modal, "Prev" label */
137
- 'prevLabel' => __( 'Prev', 'speed-booster-pack' ),
138
- /* translators: onboarding modal, "Done" label */
139
- 'doneLabel' => __( 'Done', 'speed-booster-pack' ),
140
- ] );
141
- }
142
 
143
  wp_enqueue_script( $this->plugin_name, SBP_URL . 'admin/js/speed-booster-pack-admin.js', [ 'jquery' ], $this->version );
144
  wp_localize_script( $this->plugin_name,
@@ -268,36 +270,6 @@ class Speed_Booster_Pack_Admin {
268
  ]
269
  );
270
  /* END Section: Dashboard */
271
- $advisor_fields = [
272
- [
273
- 'id' => 'advisor_heading',
274
- 'type' => 'subheading',
275
- 'content' => __( 'Recommendations to Improve Performance', 'speed-booster-pack' ),
276
- ],
277
- [
278
- 'id' => 'advisor_introduction',
279
- 'type' => 'content',
280
- 'content' => __( 'All the notices below include optional, yet recommended changes to your website or your server, which will improve performance.', 'speed-booster-pack' ),
281
- ],
282
- ];
283
-
284
- $advisor_fields[] = [
285
- 'type' => 'content',
286
- 'content' => '<div id="advisor-content"></div>',
287
- ];
288
-
289
- /* BEGIN Section: Speed Advisor */
290
- CSF::createSection(
291
- $prefix,
292
- [
293
- 'title' => __( 'Advisor', 'speed-booster-pack' ),
294
- 'id' => 'dashboard',
295
- 'class' => 'dashboard',
296
- 'icon' => 'fa fa-graduation-cap',
297
- 'fields' => $advisor_fields,
298
- ]
299
- );
300
- /* END Section: Speed Advisor */
301
 
302
  /* BEGIN Section: General */
303
  CSF::createSection(
@@ -502,11 +474,84 @@ class Speed_Booster_Pack_Admin {
502
  );
503
  /* END Section: General */
504
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  /* BEGIN Section: Caching */
506
  $cache_fields = [
507
  [
508
  'id' => 'module_caching',
509
- 'class' => 'module-caching',
510
  'type' => 'switcher',
511
  /* translators: used like "Enable/Disable XXX" where "XXX" is the module name. */
512
  'title' => __( 'Enable/Disable', 'speed-booster-pack' ) . ' ' . __( 'Caching', 'speed-booster-pack' ),
@@ -515,6 +560,7 @@ class Speed_Booster_Pack_Admin {
515
  ],
516
  [
517
  'title' => __( 'Cache expiry time', 'speed-booster-pack' ),
 
518
  'id' => 'caching_expiry',
519
  'type' => 'spinner',
520
  'min' => '1',
@@ -526,6 +572,7 @@ class Speed_Booster_Pack_Admin {
526
  ],
527
  [
528
  'id' => 'caching_separate_mobile',
 
529
  'type' => 'switcher',
530
  'title' => __( 'Separate mobile cache', 'speed-booster-pack' ),
531
  'desc' => __( 'Creates separate cache files for mobile and desktop. Useful if you have mobile-specific plugins or themes. Not necessary if you have a responsive theme.', 'speed-booster-pack' ),
@@ -534,6 +581,7 @@ class Speed_Booster_Pack_Admin {
534
  ],
535
  [
536
  'id' => 'caching_warmup_after_clear',
 
537
  'type' => 'switcher',
538
  'title' => __( 'Warm up cache on clear', 'speed-booster-pack' ),
539
  'desc' => __( 'Creates cache files for the front page and all pages that are linked from the front page, each time the cache is cleared. Note that even though you don\'t turn this option on, you can manually warm up the cache from your admin bar.', 'speed-booster-pack' ),
@@ -542,7 +590,7 @@ class Speed_Booster_Pack_Admin {
542
  ],
543
  [
544
  'id' => 'caching_exclude_urls',
545
- 'class' => 'caching-exclude-urls',
546
  'type' => 'code_editor',
547
  'title' => __( 'Exclude URLs', 'speed-booster-pack' ),
548
  'desc' => __( 'Enter one URL per line to exclude them from caching. Cart and Checkout pages of WooCommerce are always excluded, so you don\'t have to set them in here.', 'speed-booster-pack' ),
@@ -551,7 +599,7 @@ class Speed_Booster_Pack_Admin {
551
  ],
552
  [
553
  'id' => 'caching_exclude_cookies',
554
- 'class' => 'caching-exclude-cookies',
555
  'type' => 'code_editor',
556
  'title' => __( 'Exclude Cookies', 'speed-booster-pack' ),
557
  'desc' => __( 'Enter one cookie per line to exclude them from caching.', 'speed-booster-pack' ),
@@ -560,7 +608,7 @@ class Speed_Booster_Pack_Admin {
560
  ],
561
  [
562
  'id' => 'caching_include_query_strings',
563
- 'class' => 'caching-include-query-strings',
564
  'type' => 'code_editor',
565
  'title' => __( 'Cached query strings', 'speed-booster-pack' ),
566
  'desc' => __( 'Enter one query string per line to cache URLs with those query strings.', 'speed-booster-pack' ) . '<br />' .
@@ -568,7 +616,81 @@ class Speed_Booster_Pack_Admin {
568
  sprintf( __( 'For example, after adding "foo" to the list, %1$sexample.com/blog-post/?foo=bar%2$s will be cached.', 'speed-booster-pack' ), '<code>', '</code>' ),
569
  'default' => 'utm_source',
570
  'dependency' => [ 'module_caching', '==', '1', '', 'visible' ],
571
- 'sanitize' => 'sbp_sanitize_caching_included_query_strings',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  ],
573
  ];
574
 
@@ -585,13 +707,14 @@ class Speed_Booster_Pack_Admin {
585
  $cache_fields = array_merge( $restricted_hosting_notice, $cache_fields );
586
  }
587
 
588
-
589
  if ( sbp_get_option( 'module_caching' ) && ! defined( 'SBP_ADVANCED_CACHE' ) ) {
590
- $cache_fields = array_merge( [ [
591
- 'type' => 'submessage',
592
- 'style' => 'danger',
593
- 'content' => sprintf( __( '%1$s cache is enabled but the advanced-cache.php file is created by another plugin. Saving your settings now will overwrite %1$s\'s advanced-cache.php file. To fix this, you can either disable the other plugin\'s caching feature or ours.', 'speed-booster-pack' ), SBP_PLUGIN_NAME ),
594
- ] ], $cache_fields );
 
 
595
  }
596
 
597
  CSF::createSection(
@@ -620,24 +743,24 @@ class Speed_Booster_Pack_Admin {
620
  'sanitize' => 'sbp_sanitize_boolean',
621
  ],
622
  [
623
- 'title' => __( 'Cloudflare global API key', 'speed-booster-pack' ),
624
- 'id' => 'cloudflare_api',
625
- 'type' => 'text',
626
- 'desc' => '<a href="https://support.cloudflare.com/hc/en-us/articles/200167836-Managing-API-Tokens-and-Keys#12345682" rel="external noopener" target="_blank">' . __( 'You can find it using this tutorial.', 'speed-booster-pack' ) . '</a>',
627
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
628
  ],
629
  [
630
- 'title' => __( 'Cloudflare email address', 'speed-booster-pack' ),
631
- 'id' => 'cloudflare_email',
632
- 'type' => 'text',
633
- 'desc' => __( 'The email address you signed up for Cloudflare with.', 'speed-booster-pack' ),
634
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
635
  ],
636
  [
637
- 'title' => __( 'Cloudflare zone ID', 'speed-booster-pack' ),
638
- 'id' => 'cloudflare_zone',
639
- 'type' => 'text',
640
- 'desc' => __( 'You can find your zone ID in the Overview tab on your Cloudflare panel.', 'speed-booster-pack' ),
641
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
642
  ],
643
  [
@@ -730,8 +853,8 @@ class Speed_Booster_Pack_Admin {
730
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
731
  ],
732
  [
733
- 'type' => 'content',
734
- 'content' => '
735
  <span>
736
  <a href="#" class="button button-small sbp-cloudflare-test">' . __( 'Test Cloudflare connection', 'speed-booster-pack' ) . '<span class="sbp-cloudflare-spinner"></span></a>
737
  <span class="sbp-cloudflare-fetching">' . __( 'Fetching Cloudflare settings...', 'speed-booster-pack' ) . '</span>
@@ -760,15 +883,15 @@ class Speed_Booster_Pack_Admin {
760
  'sanitize' => 'sbp_sanitize_boolean',
761
  ],
762
  [
763
- 'title' => __( 'Sucuri API key', 'speed-booster-pack' ),
764
- 'id' => 'sucuri_api',
765
- 'type' => 'text',
766
  'dependency' => [ 'sucuri_enable', '==', '1', '', 'visible' ],
767
  ],
768
  [
769
- 'title' => __( 'Sucuri API Secret', 'speed-booster-pack' ),
770
- 'id' => 'sucuri_secret',
771
- 'type' => 'text',
772
  'dependency' => [ 'sucuri_enable', '==', '1', '', 'visible' ],
773
  ],
774
  ];
@@ -790,19 +913,19 @@ class Speed_Booster_Pack_Admin {
790
  'sanitize' => 'sbp_sanitize_url',
791
  ],
792
  [
793
- 'title' => __( 'Included Directories', 'speed-booster-pack' ),
794
- 'id' => 'cdn_includes',
795
- 'type' => 'code_editor',
796
- 'desc' => __( 'Anything other than WordPress\'s existing directories should be entered here to be rewritten with the CDN domain. Separated by new lines.', 'speed-booster-pack' ),
797
- 'sanitize' => 'sbp_sanitize_strip_tags',
798
  'dependency' => [ 'cdn_url', '!=', '', '', 'visible' ],
799
  ],
800
  [
801
- 'title' => __( 'Excluded Extensions', 'speed-booster-pack' ),
802
- 'id' => 'cdn_excludes',
803
- 'type' => 'code_editor',
804
- 'desc' => __( 'If you want to exclude certain file types, enter the extensions here. Separated by new lines.', 'speed-booster-pack' ),
805
- 'sanitize' => 'sbp_sanitize_strip_tags',
806
  'dependency' => [ 'cdn_url', '!=', '', '', 'visible' ],
807
  ],
808
  ],
@@ -1112,7 +1235,7 @@ class Speed_Booster_Pack_Admin {
1112
  'type' => 'switcher',
1113
  'desc' => __( 'Defers loading of images, videos and iframes to page onload.', 'speed-booster-pack' ),
1114
  'dependency' => [ 'module_assets', '==', '1', '', 'visible' ],
1115
- 'class' => 'lazyload-media ' . ($should_disable_lazyload ? ' inactive-section' : null),
1116
  'sanitize' => 'sbp_sanitize_boolean',
1117
  ],
1118
  [
62
 
63
  $this->load_dependencies();
64
 
65
+ add_filter( 'csf_sbp_options_save', '\SpeedBooster\SBP_Cache::options_saved_filter' );
66
 
67
  add_action( 'csf_sbp_options_save_before', '\SpeedBooster\SBP_Cache::options_saved_listener' );
68
 
72
 
73
  add_action( 'csf_sbp_options_saved', '\SpeedBooster\SBP_Cache::generate_htaccess' );
74
 
75
+ add_action( 'csf_sbp_options_saved', '\SpeedBooster\SBP_LiteSpeed_Cache::insert_htaccess_rules' );
76
+
77
+ add_action( 'csf_sbp_options_saved', '\SpeedBooster\SBP_WP_Config_Injector::remove_wp_config_lines' );
78
 
79
  add_action( 'admin_enqueue_scripts', 'add_thickbox' );
80
 
92
  */
93
  public function enqueue_styles() {
94
  wp_enqueue_style( $this->plugin_name, SBP_URL . 'admin/css/speed-booster-pack-admin.css', [], $this->version );
95
+ if (
96
+ get_user_meta( get_current_user_id(), 'sbp_intro', true ) != true &&
97
+ ( get_current_screen() && get_current_screen()->id == 'toplevel_page_sbp-settings' ) &&
98
+ current_user_can( 'manage_options' )
99
+ ) {
100
  wp_enqueue_style( 'sbp_intro_css', SBP_URL . 'admin/css/intro.min.css', [], '4.2.2' );
101
  }
102
  }
107
  * @since 4.0.0
108
  */
109
  public function enqueue_scripts() {
110
+ if (
111
+ get_user_meta( get_current_user_id(), 'sbp_intro', true ) != true &&
112
+ ( get_current_screen() && get_current_screen()->id == 'toplevel_page_sbp-settings' ) &&
113
+ current_user_can( 'manage_options' )
114
+ ) {
115
+ wp_enqueue_script( 'sbp_intro_js', SBP_URL . 'admin/js/intro.min.js', [ 'jquery' ], '4.2.2' );
116
+ wp_enqueue_script( 'sbp_init_intro', SBP_URL . 'admin/js/init-intro.js', [ 'jquery' ], '4.2.2' );
117
+ wp_localize_script( 'sbp_intro_js',
118
+ 'sbp_intro_translations',
119
+ [
120
  /* translators: onboarding modal, first step */
121
+ 'welcome' => __( 'Welcome to Speed Booster Pack! We\'d like to give you a quick tour - feel free to close this box and look around the options yourself, or click Next to see our short intro.', 'speed-booster-pack' ),
122
+ /* translators: onboarding modal, second step */
123
+ 'caching' => __( 'This is our caching tab. Here, you can set caching for your pages to immediately speed up your website.', 'speed-booster-pack' ),
124
+ /* translators: onboarding modal, third step */
125
+ 'caching2' => __( 'Most tabs have an module toggle like this. Turning on or off the module toggle enables or disables the whole module.', 'speed-booster-pack' ),
126
+ /* translators: onboarding modal, fourth step */
127
+ 'general' => __( 'The "General" tab includes various tweaks to clean up and speed up things. You can also disable Speed Booster Pack features for certain user roles (e.g. subscribers or customers) if you need to.', 'speed-booster-pack' ),
128
+ /* translators: onboarding modal, fifth step */
129
+ 'cdn' => __( 'The CDN & Proxy tab has three main settings: You can set a CDN domain to serve all your assets from, you can connect to your Cloudflare account to change your Cloudflare settings, and you can connect to your Sucuri account so you can clear your Sucuri cache automatically.', 'speed-booster-pack' ),
130
+ /* translators: onboarding modal, sixth step */
131
+ 'css' => __( 'The Optimize CSS tab has some delicate settings which, if configured properly, can drastically improve your website performance. Be sure to follow the directions properly - especially the Critical CSS settings!', 'speed-booster-pack' ),
132
+ /* translators: onboarding modal, seventh step */
133
+ 'assets' => __( 'The Assets tab can improve your website performance using font optimization, lazy loading, asset preloading and JavaScript optimization. It\'s tempting to enable them all, but make sure you test each change thoroughly or else you can break your website! Think of these tools like powerful weapons which you can hurt yourself with.', 'speed-booster-pack' ),
134
+ /* translators: onboarding modal, last step */
135
+ 'end' => __( 'That\'s it! Actually, that\'s not it - make sure you check the other tabs to see if you have more room to improve your website speed. Don\'t be afraid to experiment; even if you break something, resetting settings or simply deactivating Speed Booster Pack will undo everything.', 'speed-booster-pack' ),
136
+ /* translators: onboarding modal, "Next" label */
137
+ 'nextLabel' => __( 'Next', 'speed-booster-pack' ),
138
+ /* translators: onboarding modal, "Prev" label */
139
+ 'prevLabel' => __( 'Prev', 'speed-booster-pack' ),
140
+ /* translators: onboarding modal, "Done" label */
141
+ 'doneLabel' => __( 'Done', 'speed-booster-pack' ),
142
+ ] );
143
+ }
144
 
145
  wp_enqueue_script( $this->plugin_name, SBP_URL . 'admin/js/speed-booster-pack-admin.js', [ 'jquery' ], $this->version );
146
  wp_localize_script( $this->plugin_name,
270
  ]
271
  );
272
  /* END Section: Dashboard */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
  /* BEGIN Section: General */
275
  CSF::createSection(
474
  );
475
  /* END Section: General */
476
 
477
+ $is_litespeed = \SpeedBooster\SBP_Utils::is_litespeed();
478
+ $page_caching_class = $is_litespeed ? ' sbp-hidden ' : '';
479
+ $ls_caching_class = $is_litespeed ? '' : ' sbp-hidden ';
480
+
481
+ $ls_query_string_defaults = [
482
+ 'name',
483
+ 'fbclid',
484
+ 'gclid',
485
+ 'gclsrc',
486
+ 'utm_content',
487
+ 'utm_term',
488
+ 'utm_campaign',
489
+ 'utm_medium',
490
+ 'utm_source',
491
+ 'utm_id',
492
+ '_ga',
493
+ 'mc_cid',
494
+ 'mc_eid',
495
+ '_bta_tid',
496
+ '_bta_c',
497
+ 'trk_contact',
498
+ 'trk_msg',
499
+ 'trk_module',
500
+ 'trk_sid',
501
+ 'gdfms',
502
+ 'gdftrk',
503
+ 'gdffi',
504
+ '_ke',
505
+ 'redirect_log_mongo_id',
506
+ 'redirect_mongo_id',
507
+ 'sb_referer_host',
508
+ 'mkwid',
509
+ 'pcrid',
510
+ 'ef_id',
511
+ 's_kwcid',
512
+ 'msclkid',
513
+ 'dm_i',
514
+ 'epik',
515
+ 'pk_campaign',
516
+ 'pk_kwd',
517
+ 'pk_keyword',
518
+ 'piwik_campaign',
519
+ 'piwik_kwd',
520
+ 'piwik_keyword',
521
+ 'mtm_campaign',
522
+ 'mtm_keyword',
523
+ 'mtm_source',
524
+ 'mtm_medium',
525
+ 'mtm_content',
526
+ 'mtm_cid',
527
+ 'mtm_group',
528
+ 'mtm_placement',
529
+ 'matomo_campaign',
530
+ 'matomo_keyword',
531
+ 'matomo_source',
532
+ 'matomo_medium',
533
+ 'matomo_content',
534
+ 'matomo_cid',
535
+ 'matomo_group',
536
+ 'matomo_placement',
537
+ 'hsa_cam',
538
+ 'hsa_grp',
539
+ 'hsa_mt',
540
+ 'hsa_src',
541
+ 'hsa_ad',
542
+ 'hsa_acc',
543
+ 'hsa_net',
544
+ 'hsa_kw',
545
+ 'hsa_tgt',
546
+ 'hsa_ver',
547
+ '_branch_match_id'
548
+ ];
549
+
550
  /* BEGIN Section: Caching */
551
  $cache_fields = [
552
  [
553
  'id' => 'module_caching',
554
+ 'class' => 'module-caching' . $page_caching_class,
555
  'type' => 'switcher',
556
  /* translators: used like "Enable/Disable XXX" where "XXX" is the module name. */
557
  'title' => __( 'Enable/Disable', 'speed-booster-pack' ) . ' ' . __( 'Caching', 'speed-booster-pack' ),
560
  ],
561
  [
562
  'title' => __( 'Cache expiry time', 'speed-booster-pack' ),
563
+ 'class' => $page_caching_class,
564
  'id' => 'caching_expiry',
565
  'type' => 'spinner',
566
  'min' => '1',
572
  ],
573
  [
574
  'id' => 'caching_separate_mobile',
575
+ 'class' => $page_caching_class,
576
  'type' => 'switcher',
577
  'title' => __( 'Separate mobile cache', 'speed-booster-pack' ),
578
  'desc' => __( 'Creates separate cache files for mobile and desktop. Useful if you have mobile-specific plugins or themes. Not necessary if you have a responsive theme.', 'speed-booster-pack' ),
581
  ],
582
  [
583
  'id' => 'caching_warmup_after_clear',
584
+ 'class' => $page_caching_class,
585
  'type' => 'switcher',
586
  'title' => __( 'Warm up cache on clear', 'speed-booster-pack' ),
587
  'desc' => __( 'Creates cache files for the front page and all pages that are linked from the front page, each time the cache is cleared. Note that even though you don\'t turn this option on, you can manually warm up the cache from your admin bar.', 'speed-booster-pack' ),
590
  ],
591
  [
592
  'id' => 'caching_exclude_urls',
593
+ 'class' => 'caching-exclude-urls' . $page_caching_class,
594
  'type' => 'code_editor',
595
  'title' => __( 'Exclude URLs', 'speed-booster-pack' ),
596
  'desc' => __( 'Enter one URL per line to exclude them from caching. Cart and Checkout pages of WooCommerce are always excluded, so you don\'t have to set them in here.', 'speed-booster-pack' ),
599
  ],
600
  [
601
  'id' => 'caching_exclude_cookies',
602
+ 'class' => 'caching-exclude-cookies' . $page_caching_class,
603
  'type' => 'code_editor',
604
  'title' => __( 'Exclude Cookies', 'speed-booster-pack' ),
605
  'desc' => __( 'Enter one cookie per line to exclude them from caching.', 'speed-booster-pack' ),
608
  ],
609
  [
610
  'id' => 'caching_include_query_strings',
611
+ 'class' => 'caching-include-query-strings' . $page_caching_class,
612
  'type' => 'code_editor',
613
  'title' => __( 'Cached query strings', 'speed-booster-pack' ),
614
  'desc' => __( 'Enter one query string per line to cache URLs with those query strings.', 'speed-booster-pack' ) . '<br />' .
616
  sprintf( __( 'For example, after adding "foo" to the list, %1$sexample.com/blog-post/?foo=bar%2$s will be cached.', 'speed-booster-pack' ), '<code>', '</code>' ),
617
  'default' => 'utm_source',
618
  'dependency' => [ 'module_caching', '==', '1', '', 'visible' ],
619
+ 'sanitize' => 'sbp_sanitize_query_strings',
620
+ ],
621
+ // LS CACHE
622
+ [
623
+ 'id' => 'ls_cache_info',
624
+ 'class' => $ls_caching_class,
625
+ 'type' => 'submessage',
626
+ 'style' => 'info',
627
+ 'content' => sprintf( __( 'Because your server is using LiteSpeed, %s is currently handling its caching system.', 'speed-booster-pack' ), SBP_PLUGIN_NAME ),
628
+ ],
629
+ [
630
+ 'id' => 'module_caching_ls',
631
+ 'class' => 'module-caching' . $ls_caching_class,
632
+ 'type' => 'switcher',
633
+ 'title' => __( 'Enable/Disable', 'speed-booster-pack' ) . ' ' . __( 'LiteSpeed Cache', 'speed-booster-pack' ),
634
+ 'label' => __( 'Enables or disables the whole module without resetting its settings.', 'speed-booster-pack' ),
635
+ 'sanitize' => 'sbp_sanitize_boolean',
636
+ ],
637
+ [
638
+ 'id' => 'caching_ls_cache_logged_in_users',
639
+ // B_TODO: Change texts
640
+ 'title' => __( 'Cache logged in users', 'speed-booster-pack' ),
641
+ 'desc' => __( 'Enable cache for logged in users.', 'speed-booster-pack' ),
642
+ 'class' => $ls_caching_class,
643
+ 'type' => 'switcher',
644
+ 'dependency' => [ 'module_caching_ls', '==', '1', '', 'visible' ],
645
+ ],
646
+ [
647
+ 'id' => 'caching_ls_expiry',
648
+ 'title' => __( 'Cache expiry time', 'speed-booster-pack' ),
649
+ 'class' => $ls_caching_class,
650
+ 'type' => 'spinner',
651
+ 'min' => '1',
652
+ 'unit' => __( 'hours', 'speed-booster-pack' ),
653
+ 'desc' => __( 'How many hours to expire a cached page (1 or higher). Expired cache files are regenerated automatically.', 'speed-booster-pack' ),
654
+ 'default' => '10',
655
+ 'sanitize' => 'sbp_posabs',
656
+ 'dependency' => [ 'module_caching_ls', '==', '1', '', 'visible' ],
657
+ ],
658
+ [
659
+ 'id' => 'caching_ls_separate_mobile',
660
+ 'class' => $ls_caching_class,
661
+ 'type' => 'switcher',
662
+ 'title' => __( 'Separate mobile cache', 'speed-booster-pack' ),
663
+ 'desc' => __( 'Creates separate cache files for mobile and desktop. Useful if you have mobile-specific plugins or themes. Not necessary if you have a responsive theme.', 'speed-booster-pack' ),
664
+ 'dependency' => [ 'module_caching_ls', '==', '1', '', 'visible' ],
665
+ 'sanitize' => 'sbp_sanitize_boolean',
666
+ ],
667
+ [
668
+ 'id' => 'caching_ls_exclude_urls',
669
+ 'class' => 'caching-exclude-urls' . $ls_caching_class,
670
+ 'type' => 'code_editor',
671
+ 'title' => __( 'Exclude URLs', 'speed-booster-pack' ),
672
+ 'desc' => __( 'Enter one URL per line to exclude them from caching. Cart and Checkout pages of WooCommerce are always excluded, so you don\'t have to set them in here.', 'speed-booster-pack' ),
673
+ 'dependency' => [ 'module_caching_ls', '==', '1', '', 'visible' ],
674
+ 'sanitize' => 'sbp_sanitize_caching_urls',
675
+ ],
676
+ // [
677
+ // 'id' => 'caching_ls_exclude_cookies',
678
+ // 'class' => 'caching-exclude-cookies' . $ls_caching_class,
679
+ // 'type' => 'code_editor',
680
+ // 'title' => __( 'Exclude Cookies', 'speed-booster-pack' ),
681
+ // 'desc' => __( 'Enter one cookie per line to exclude them from caching.', 'speed-booster-pack' ),
682
+ // 'dependency' => [ 'module_caching_ls', '==', '1', '', 'visible' ],
683
+ // 'sanitize' => 'sbp_sanitize_caching_cookies',
684
+ // ],
685
+ [
686
+ 'id' => 'caching_ls_include_query_strings',
687
+ 'class' => 'caching-include-query-strings' . $ls_caching_class,
688
+ 'type' => 'code_editor',
689
+ 'title' => __( 'Cached query strings', 'speed-booster-pack' ),
690
+ 'desc' => __( 'Enter one query string per line to cache URLs with those query strings. The cachefiles will be the same with the caches of the same page without any query string.', 'speed-booster-pack' ),
691
+ 'default' => implode( PHP_EOL, $ls_query_string_defaults ),
692
+ 'dependency' => [ 'module_caching_ls', '==', '1', '', 'visible' ],
693
+ 'sanitize' => 'sbp_sanitize_query_strings',
694
  ],
695
  ];
696
 
707
  $cache_fields = array_merge( $restricted_hosting_notice, $cache_fields );
708
  }
709
 
 
710
  if ( sbp_get_option( 'module_caching' ) && ! defined( 'SBP_ADVANCED_CACHE' ) ) {
711
+ $cache_fields = array_merge( [
712
+ [
713
+ 'type' => 'submessage',
714
+ 'style' => 'danger',
715
+ 'content' => sprintf( __( '%1$s cache is enabled but the advanced-cache.php file is created by another plugin. Saving your settings now will overwrite %1$s\'s advanced-cache.php file. To fix this, you can either disable the other plugin\'s caching feature or ours.', 'speed-booster-pack' ), SBP_PLUGIN_NAME ),
716
+ ]
717
+ ], $cache_fields );
718
  }
719
 
720
  CSF::createSection(
743
  'sanitize' => 'sbp_sanitize_boolean',
744
  ],
745
  [
746
+ 'title' => __( 'Cloudflare global API key', 'speed-booster-pack' ),
747
+ 'id' => 'cloudflare_api',
748
+ 'type' => 'text',
749
+ 'desc' => '<a href="https://support.cloudflare.com/hc/en-us/articles/200167836-Managing-API-Tokens-and-Keys#12345682" rel="external noopener" target="_blank">' . __( 'You can find it using this tutorial.', 'speed-booster-pack' ) . '</a>',
750
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
751
  ],
752
  [
753
+ 'title' => __( 'Cloudflare email address', 'speed-booster-pack' ),
754
+ 'id' => 'cloudflare_email',
755
+ 'type' => 'text',
756
+ 'desc' => __( 'The email address you signed up for Cloudflare with.', 'speed-booster-pack' ),
757
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
758
  ],
759
  [
760
+ 'title' => __( 'Cloudflare zone ID', 'speed-booster-pack' ),
761
+ 'id' => 'cloudflare_zone',
762
+ 'type' => 'text',
763
+ 'desc' => __( 'You can find your zone ID in the Overview tab on your Cloudflare panel.', 'speed-booster-pack' ),
764
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
765
  ],
766
  [
853
  'dependency' => [ 'cloudflare_enable', '==', '1', '', 'visible' ],
854
  ],
855
  [
856
+ 'type' => 'content',
857
+ 'content' => '
858
  <span>
859
  <a href="#" class="button button-small sbp-cloudflare-test">' . __( 'Test Cloudflare connection', 'speed-booster-pack' ) . '<span class="sbp-cloudflare-spinner"></span></a>
860
  <span class="sbp-cloudflare-fetching">' . __( 'Fetching Cloudflare settings...', 'speed-booster-pack' ) . '</span>
883
  'sanitize' => 'sbp_sanitize_boolean',
884
  ],
885
  [
886
+ 'title' => __( 'Sucuri API key', 'speed-booster-pack' ),
887
+ 'id' => 'sucuri_api',
888
+ 'type' => 'text',
889
  'dependency' => [ 'sucuri_enable', '==', '1', '', 'visible' ],
890
  ],
891
  [
892
+ 'title' => __( 'Sucuri API Secret', 'speed-booster-pack' ),
893
+ 'id' => 'sucuri_secret',
894
+ 'type' => 'text',
895
  'dependency' => [ 'sucuri_enable', '==', '1', '', 'visible' ],
896
  ],
897
  ];
913
  'sanitize' => 'sbp_sanitize_url',
914
  ],
915
  [
916
+ 'title' => __( 'Included Directories', 'speed-booster-pack' ),
917
+ 'id' => 'cdn_includes',
918
+ 'type' => 'code_editor',
919
+ 'desc' => __( 'Anything other than WordPress\'s existing directories should be entered here to be rewritten with the CDN domain. Separated by new lines.', 'speed-booster-pack' ),
920
+ 'sanitize' => 'sbp_sanitize_strip_tags',
921
  'dependency' => [ 'cdn_url', '!=', '', '', 'visible' ],
922
  ],
923
  [
924
+ 'title' => __( 'Excluded Extensions', 'speed-booster-pack' ),
925
+ 'id' => 'cdn_excludes',
926
+ 'type' => 'code_editor',
927
+ 'desc' => __( 'If you want to exclude certain file types, enter the extensions here. Separated by new lines.', 'speed-booster-pack' ),
928
+ 'sanitize' => 'sbp_sanitize_strip_tags',
929
  'dependency' => [ 'cdn_url', '!=', '', '', 'visible' ],
930
  ],
931
  ],
1235
  'type' => 'switcher',
1236
  'desc' => __( 'Defers loading of images, videos and iframes to page onload.', 'speed-booster-pack' ),
1237
  'dependency' => [ 'module_assets', '==', '1', '', 'visible' ],
1238
+ 'class' => 'lazyload-media ' . ( $should_disable_lazyload ? ' inactive-section' : null ),
1239
  'sanitize' => 'sbp_sanitize_boolean',
1240
  ],
1241
  [
admin/css/speed-booster-pack-admin.css CHANGED
@@ -254,3 +254,7 @@
254
  transform: rotate(360deg);
255
  }
256
  }
 
 
 
 
254
  transform: rotate(360deg);
255
  }
256
  }
257
+
258
+ .sbp-hidden {
259
+ display: none!important;
260
+ }
admin/js/init-intro.js CHANGED
@@ -12,7 +12,7 @@ jQuery(function() {
12
  steps: [{
13
  intro: sbp_intro_translations.welcome
14
  }, {
15
- element: document.querySelector('[data-tab-id="caching"]'),
16
  intro: sbp_intro_translations.caching,
17
  position: 'right'
18
  }, {
@@ -20,44 +20,43 @@ jQuery(function() {
20
  intro: sbp_intro_translations.caching2,
21
  position: 'bottom'
22
  }, {
23
- element: document.querySelector('[data-tab-id="general"]'),
24
  intro: sbp_intro_translations.general,
25
  position: 'right'
26
  }, {
27
- element: document.querySelector('[data-tab-id="cdn-proxy"]'),
28
  intro: sbp_intro_translations.cdn,
29
  position: 'right'
30
  }, {
31
- element: document.querySelector('[data-tab-id="optimize-css"]'),
32
  intro: sbp_intro_translations.css,
33
  position: 'right'
34
  }, {
35
- element: document.querySelector('[data-tab-id="assets"]'),
36
  intro: sbp_intro_translations.assets,
37
  position: 'right'
38
  }, {
39
  intro: sbp_intro_translations.end
40
  }]
41
- }).start().onbeforechange(function(targetElement) {
42
-
43
- if ($(targetElement).is('[data-tab-id="caching"]') || $(targetElement).is('.module-caching')) {
44
- window.location.hash = '#tab=caching';
45
  }
46
 
47
- if ($(targetElement).is('[data-tab-id="general"]')) {
48
- window.location.hash = '#tab=general';
49
  }
50
 
51
- if ($(targetElement).is('[data-tab-id="cdn-proxy"]')) {
52
- window.location.hash = '#tab=cdn-proxy';
53
  }
54
 
55
- if ($(targetElement).is('[data-tab-id="optimize-css"]')) {
56
- window.location.hash = '#tab=optimize-css';
57
  }
58
 
59
- if ($(targetElement).is('[data-tab-id="assets"]')) {
60
- window.location.hash = '#tab=assets';
61
  }
62
 
63
  }).onexit(function() {
12
  steps: [{
13
  intro: sbp_intro_translations.welcome
14
  }, {
15
+ element: document.querySelector('.csf-tab-item:nth-child(3)'),
16
  intro: sbp_intro_translations.caching,
17
  position: 'right'
18
  }, {
20
  intro: sbp_intro_translations.caching2,
21
  position: 'bottom'
22
  }, {
23
+ element: document.querySelector('.csf-tab-item:nth-child(2)'),
24
  intro: sbp_intro_translations.general,
25
  position: 'right'
26
  }, {
27
+ element: document.querySelector('.csf-tab-item:nth-child(4)'),
28
  intro: sbp_intro_translations.cdn,
29
  position: 'right'
30
  }, {
31
+ element: document.querySelector('.csf-tab-item:nth-child(5)'),
32
  intro: sbp_intro_translations.css,
33
  position: 'right'
34
  }, {
35
+ element: document.querySelector('.csf-tab-item:nth-child(6)'),
36
  intro: sbp_intro_translations.assets,
37
  position: 'right'
38
  }, {
39
  intro: sbp_intro_translations.end
40
  }]
41
+ }).start().onbeforechange(async function(targetElement) {
42
+ if ($(targetElement).is('.csf-tab-item:nth-child(3)') || $(targetElement).is('.module-caching')) {
43
+ window.location.hash = $('.csf-tab-item:nth-child(3) > a').attr('href');
 
44
  }
45
 
46
+ if ($(targetElement).is('.csf-tab-item:nth-child(2)')) {
47
+ window.location.hash = $('.csf-tab-item:nth-child(2) > a').attr('href');
48
  }
49
 
50
+ if ($(targetElement).is('.csf-tab-item:nth-child(4)')) {
51
+ window.location.hash = $('.csf-tab-item:nth-child(4) > a').attr('href');
52
  }
53
 
54
+ if ($(targetElement).is('.csf-tab-item:nth-child(5)')) {
55
+ window.location.hash = $('.csf-tab-item:nth-child(5) > a').attr('href');
56
  }
57
 
58
+ if ($(targetElement).is('.csf-tab-item:nth-child(6)')) {
59
+ window.location.hash = $('.csf-tab-item:nth-child(6) > a').attr('href');
60
  }
61
 
62
  }).onexit(function() {
admin/js/speed-booster-pack-admin.js CHANGED
@@ -205,10 +205,6 @@
205
  if (hash === 'database') {
206
  $.scanDatabaseTables();
207
  }
208
-
209
- if (hash === 'advisor') {
210
- $.getAdvisorMessages();
211
- }
212
  });
213
 
214
  $.scanDatabaseTables = function() {
@@ -251,19 +247,6 @@
251
  });
252
  };
253
 
254
- $.getAdvisorMessages = function() {
255
- $.ajax({
256
- type: 'GET',
257
- url: ajaxurl,
258
- data: {'action': 'sbp_get_advisor_messages', 'sbp_action': 'sbp_get_advisor_messages', 'nonce': sbp_ajax_vars.nonce},
259
- success: function(response) {
260
- $('#advisor-content').html(response);
261
- },
262
- error: function(xhr, status) {
263
- },
264
- });
265
- };
266
-
267
  $(document).on('click', '.sbp-scan-database-tables', function() {
268
  $.scanDatabaseTables();
269
  });
@@ -299,18 +282,4 @@
299
  });
300
  });
301
 
302
- $(document).on('click', '.sbp-advice .notice-dismiss', function() {
303
- var message_id = $(this).parent().data('message-id');
304
-
305
- $.ajax({
306
- type: 'GET',
307
- url: ajaxurl,
308
- data: {'action': 'sbp_dismiss_advisor_message', 'sbp_action': 'sbp_dismiss_advisor_message', 'nonce': sbp_ajax_vars.nonce, 'sbp_dismiss_message_id': message_id},
309
- success: function(response) {
310
- },
311
- error: function(xhr, status) {
312
- },
313
- });
314
- });
315
-
316
  })(jQuery);
205
  if (hash === 'database') {
206
  $.scanDatabaseTables();
207
  }
 
 
 
 
208
  });
209
 
210
  $.scanDatabaseTables = function() {
247
  });
248
  };
249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  $(document).on('click', '.sbp-scan-database-tables', function() {
251
  $.scanDatabaseTables();
252
  });
282
  });
283
  });
284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  })(jQuery);
includes/class-speed-booster-pack-activator.php CHANGED
@@ -12,7 +12,7 @@
12
 
13
  use SpeedBooster\SBP_Advanced_Cache_Generator;
14
  use SpeedBooster\SBP_Cache;
15
- use SpeedBooster\SBP_WP_Config_Injector;
16
 
17
  // If this file is called directly, abort.
18
  if ( ! defined( 'WPINC' ) ) {
@@ -39,7 +39,7 @@ class Speed_Booster_Pack_Activator {
39
  * @since 4.0.0
40
  */
41
  public static function activate() {
42
- if (sbp_get_option( 'module_caching' ) && ! sbp_should_disable_feature( 'caching' )) {
43
  SBP_Cache::clear_total_cache();
44
  SBP_Cache::set_wp_cache_constant( true );
45
  SBP_Cache::generate_htaccess();
@@ -50,7 +50,10 @@ class Speed_Booster_Pack_Activator {
50
  file_put_contents( $advanced_cache_path, $advanced_cache_file_content );
51
  }
52
  }
53
- SBP_WP_Config_Injector::inject_wp_config();
 
 
 
54
  }
55
 
56
  }
12
 
13
  use SpeedBooster\SBP_Advanced_Cache_Generator;
14
  use SpeedBooster\SBP_Cache;
15
+ use SpeedBooster\SBP_LiteSpeed_Cache;
16
 
17
  // If this file is called directly, abort.
18
  if ( ! defined( 'WPINC' ) ) {
39
  * @since 4.0.0
40
  */
41
  public static function activate() {
42
+ if ( sbp_get_option( 'module_caching' ) && ! sbp_should_disable_feature( 'caching' ) ) {
43
  SBP_Cache::clear_total_cache();
44
  SBP_Cache::set_wp_cache_constant( true );
45
  SBP_Cache::generate_htaccess();
50
  file_put_contents( $advanced_cache_path, $advanced_cache_file_content );
51
  }
52
  }
53
+
54
+ if ( sbp_get_option( 'module_caching_ls' ) && ! sbp_should_disable_feature( 'caching' ) ) {
55
+ SBP_LiteSpeed_Cache::insert_htaccess_rules();
56
+ }
57
  }
58
 
59
  }
includes/class-speed-booster-pack-deactivator.php CHANGED
@@ -16,6 +16,7 @@ if ( ! defined( 'WPINC' ) ) {
16
  }
17
 
18
  use SpeedBooster\SBP_Cache;
 
19
  use SpeedBooster\SBP_WP_Config_Injector;
20
 
21
  /**
@@ -42,6 +43,7 @@ class Speed_Booster_Pack_Deactivator {
42
  SBP_WP_Config_Injector::remove_wp_config_lines();
43
  SBP_Cache::set_wp_cache_constant( false );
44
  SBP_Cache::clean_htaccess();
 
45
 
46
  $adv_cache_file = WP_CONTENT_DIR . '/advanced-cache.php';
47
  if ( file_exists( $adv_cache_file ) ) {
16
  }
17
 
18
  use SpeedBooster\SBP_Cache;
19
+ use SpeedBooster\SBP_LiteSpeed_Cache;
20
  use SpeedBooster\SBP_WP_Config_Injector;
21
 
22
  /**
43
  SBP_WP_Config_Injector::remove_wp_config_lines();
44
  SBP_Cache::set_wp_cache_constant( false );
45
  SBP_Cache::clean_htaccess();
46
+ SBP_LiteSpeed_Cache::remove_htaccess_rules();
47
 
48
  $adv_cache_file = WP_CONTENT_DIR . '/advanced-cache.php';
49
  if ( file_exists( $adv_cache_file ) ) {
includes/class-speed-booster-pack.php CHANGED
@@ -17,7 +17,6 @@ if ( ! defined( 'WPINC' ) ) {
17
  die;
18
  }
19
 
20
- use SpeedBooster\SBP_Advisor;
21
  use SpeedBooster\SBP_Cache;
22
  use SpeedBooster\SBP_Cache_Warmup;
23
  use SpeedBooster\SBP_CDN;
@@ -27,6 +26,7 @@ use SpeedBooster\SBP_CSS_Minifier;
27
  use SpeedBooster\SBP_Custom_Code_Manager;
28
  use SpeedBooster\SBP_Database_Optimizer;
29
  use SpeedBooster\SBP_Image_Dimensions;
 
30
  use SpeedBooster\SBP_WP_Admin;
31
  use SpeedBooster\SBP_Font_Optimizer;
32
  use SpeedBooster\SBP_HTML_Minifier;
@@ -180,10 +180,10 @@ class Speed_Booster_Pack {
180
  new SBP_Custom_Code_Manager();
181
  new SBP_Cloudflare();
182
  new SBP_Notice_Manager();
183
- new SBP_Advisor();
184
  new SBP_Sucuri();
185
  new SBP_Cache_Warmup();
186
  new SBP_Cache();
 
187
  }
188
 
189
  /**
17
  die;
18
  }
19
 
 
20
  use SpeedBooster\SBP_Cache;
21
  use SpeedBooster\SBP_Cache_Warmup;
22
  use SpeedBooster\SBP_CDN;
26
  use SpeedBooster\SBP_Custom_Code_Manager;
27
  use SpeedBooster\SBP_Database_Optimizer;
28
  use SpeedBooster\SBP_Image_Dimensions;
29
+ use SpeedBooster\SBP_LiteSpeed_Cache;
30
  use SpeedBooster\SBP_WP_Admin;
31
  use SpeedBooster\SBP_Font_Optimizer;
32
  use SpeedBooster\SBP_HTML_Minifier;
180
  new SBP_Custom_Code_Manager();
181
  new SBP_Cloudflare();
182
  new SBP_Notice_Manager();
 
183
  new SBP_Sucuri();
184
  new SBP_Cache_Warmup();
185
  new SBP_Cache();
186
+ new SBP_LiteSpeed_Cache();
187
  }
188
 
189
  /**
includes/classes/class-sbp-advanced-cache-generator.php CHANGED
@@ -9,34 +9,6 @@ if ( ! defined( 'WPINC' ) ) {
9
 
10
  class SBP_Advanced_Cache_Generator {
11
  private static $options = [];
12
- private static $advanced_cache_template = SBP_PATH . 'templates/cache/advanced-cache.php';
13
- private static $placeholders = [
14
- '\'__SEPARATE_MOBILE_CACHING__\';' => [
15
- 'option_name' => 'caching_separate_mobile',
16
- 'method_name' => 'separate_mobile_caching',
17
- 'default_value' => "",
18
- ],
19
- '{{__CACHING_QUERY_STRING_INCLUDES__}}' => [
20
- 'option_name' => 'caching_include_query_strings',
21
- 'method_name' => 'caching_query_string_includes',
22
- 'default_value' => "",
23
- ],
24
- '\'{{__CACHING_EXPIRY__}}\'' => [
25
- 'option_name' => 'caching_expiry',
26
- 'method_name' => 'caching_expiry',
27
- 'default_value' => '10',
28
- ],
29
- '{{__CACHING_EXCLUDE_URLS__}}' => [
30
- 'option_name' => 'caching_exclude_urls',
31
- 'method_name' => 'caching_exclude_urls',
32
- 'default_value' => "",
33
- ],
34
- '\'{{__CACHING_EXCLUDE_COOKIES__}}\'' => [
35
- 'option_name' => 'caching_exclude_cookies',
36
- 'method_name' => 'caching_exclude_cookies',
37
- 'default_value' => "''",
38
- ],
39
- ];
40
 
41
  public static function generate_advanced_cache_file( $options = [] ) {
42
  if ($options === []) {
@@ -50,33 +22,156 @@ class SBP_Advanced_Cache_Generator {
50
  }
51
 
52
  self::$options = $options;
53
- $wp_filesystem = sbp_get_filesystem();
54
- $file_content = $wp_filesystem->get_contents( self::$advanced_cache_template );
55
- foreach ( self::$placeholders as $placeholder => $props ) {
56
- $method_name = 'SpeedBooster\SBP_Advanced_Cache_Generator::' . $props['method_name'];
57
- if ( ! method_exists( SBP_Advanced_Cache_Generator::class, $props['method_name'] ) ) {
58
- $file_content = str_replace( "$placeholder", '', $file_content );
59
- continue;
60
- }
61
 
62
- $option_value = isset( self::$options[ $props['option_name'] ] ) ? self::$options[ $props['option_name'] ] : false;
 
 
 
 
63
 
64
- $replace_content = $props['default_value'];
65
 
66
- if ( $option_value != false ) {
67
- $replace_content = call_user_func( $method_name );
68
- }
 
69
 
70
- $file_content = str_replace( $placeholder, $replace_content, $file_content );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
 
73
- return $file_content;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
 
76
- private static function separate_mobile_caching() {
77
- return 'if ( sbp_is_mobile() ) {
 
 
 
 
 
 
 
 
 
 
78
  $cache_dir = WP_CONTENT_DIR . \'/cache/speed-booster/mobile\';
79
  }';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  }
81
 
82
  private static function caching_query_string_includes() {
@@ -104,6 +199,6 @@ class SBP_Advanced_Cache_Generator {
104
  }
105
 
106
  private static function caching_expiry() {
107
- return self::$options['caching_expiry'];
108
  }
109
  }
9
 
10
  class SBP_Advanced_Cache_Generator {
11
  private static $options = [];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  public static function generate_advanced_cache_file( $options = [] ) {
14
  if ($options === []) {
22
  }
23
 
24
  self::$options = $options;
 
 
 
 
 
 
 
 
25
 
26
+ return self::generate_file_content();
27
+ }
28
+
29
+ public static function generate_file_content() {
30
+ $advanced_cache_file_content = '<?php
31
 
32
+ define( \'SBP_ADVANCED_CACHE\', true );
33
 
34
+ // check if request method is GET
35
+ if ( ! isset( $_SERVER[\'REQUEST_METHOD\'] ) || $_SERVER[\'REQUEST_METHOD\'] != \'GET\' ) {
36
+ return false;
37
+ }';
38
 
39
+ // Excluded Cookies
40
+ $advanced_cache_file_content .= '
41
+ // Check if user logged in
42
+ if ( ! empty( $_COOKIE ) ) {
43
+ $cookies = [ \'comment_author_\', \'wordpress_logged_in_\', \'wp-postpass_\', ' . self::caching_exclude_cookies() . ' ];
44
+ $cookies = array_map( \'addslashes\', $cookies );
45
+ $cookies = array_filter( $cookies );
46
+ $cookies_regex = \'/^(\' . implode( \'|\', $cookies ) . \')/\';
47
+
48
+ foreach ( $_COOKIE as $key => $value ) {
49
+ if ( preg_match( $cookies_regex, $key ) ) {
50
+ return false;
51
+ }
52
+ }
53
+ }';
54
+
55
+ // Query Strings
56
+ $advanced_cache_file_content .= '
57
+ // Set default file name
58
+ $filename = \'index.html\';
59
+
60
+ // Check for query strings
61
+ if ( ! empty( $_GET ) ) {
62
+ // Get included rules
63
+ $include_query_strings = sbp_explode_lines( \'' . self::caching_query_string_includes() . '\' );
64
+
65
+ $query_string_file_name = \'\';
66
+ // Put all query string parameters in order to generate same filename even if parameter order is different
67
+ ksort( $_GET );
68
+
69
+ foreach ( $_GET as $key => $value ) {
70
+ if ( in_array( $key, $include_query_strings ) ) {
71
+ $query_string_file_name .= "$key-$value-";
72
+ } else {
73
+ return false;
74
  }
75
+ }
76
+
77
+ if ( \'\' !== $query_string_file_name ) {
78
+ $filename = md5( $query_string_file_name ) . \'.html\';
79
+ }
80
+ }
81
+
82
+ // base path
83
+ $cache_file_path = get_cache_file_path() . $filename;
84
+ if ( ! is_readable( $cache_file_path ) ) {
85
+ return false;
86
+ }';
87
+
88
+ // Caching Expiry
89
+ $advanced_cache_file_content .= '
90
+ // Check if cache file is expired
91
+ $caching_expiry = ' . self::caching_expiry() . ' * HOUR_IN_SECONDS;
92
+ if ( ( filemtime( $cache_file_path ) + $caching_expiry ) < time() ) {
93
+ return false;
94
+ }';
95
+
96
+ // Exclude URL's
97
+ $advanced_cache_file_content .= '
98
+ $exclude_urls = sbp_explode_lines( \'' . self::caching_exclude_urls() . '\' );
99
+ $current_url = rtrim( $_SERVER[\'HTTP_HOST\'] . $_SERVER[\'REQUEST_URI\'], \'/\' );
100
+ if ( count( $exclude_urls ) > 0 && in_array( $current_url, $exclude_urls ) ) {
101
+ return false;
102
+ }
103
 
104
+ // output cached file
105
+ readfile( $cache_file_path );
106
+ exit;
107
+
108
+ /**
109
+ * Copied from WordPress wp_is_mobile
110
+ *
111
+ * @return bool
112
+ */
113
+ function sbp_is_mobile() {
114
+ if ( empty( $_SERVER[\'HTTP_USER_AGENT\'] ) ) {
115
+ $is_mobile = false;
116
+ } elseif ( strpos( $_SERVER[\'HTTP_USER_AGENT\'], \'Mobile\' ) !== false // Many mobile devices (all iPhone, iPad, etc.)
117
+ || strpos( $_SERVER[\'HTTP_USER_AGENT\'], \'Android\' ) !== false
118
+ || strpos( $_SERVER[\'HTTP_USER_AGENT\'], \'Silk/\' ) !== false
119
+ || strpos( $_SERVER[\'HTTP_USER_AGENT\'], \'Kindle\' ) !== false
120
+ || strpos( $_SERVER[\'HTTP_USER_AGENT\'], \'BlackBerry\' ) !== false
121
+ || strpos( $_SERVER[\'HTTP_USER_AGENT\'], \'Opera Mini\' ) !== false
122
+ || strpos( $_SERVER[\'HTTP_USER_AGENT\'], \'Opera Mobi\' ) !== false ) {
123
+ $is_mobile = true;
124
+ } else {
125
+ $is_mobile = false;
126
  }
127
 
128
+ return $is_mobile;
129
+ }
130
+
131
+
132
+ // generate cache path
133
+ function get_cache_file_path() {
134
+ $cache_dir = WP_CONTENT_DIR . \'/cache/speed-booster\';
135
+ ';
136
+
137
+ // Separate Mobile
138
+ if (self::$options['caching_separate_mobile']) {
139
+ $advanced_cache_file_content .= 'if ( sbp_is_mobile() ) {
140
  $cache_dir = WP_CONTENT_DIR . \'/cache/speed-booster/mobile\';
141
  }';
142
+ }
143
+
144
+ $advanced_cache_file_content .= '
145
+ $path = sprintf(
146
+ \'%s%s%s%s\',
147
+ $cache_dir,
148
+ DIRECTORY_SEPARATOR,
149
+ parse_url(
150
+ \'http://\' . strtolower( $_SERVER[\'HTTP_HOST\'] ),
151
+ PHP_URL_HOST
152
+ ),
153
+ parse_url(
154
+ $_SERVER[\'REQUEST_URI\'],
155
+ PHP_URL_PATH
156
+ )
157
+ );
158
+
159
+ if ( is_file( $path ) > 0 ) {
160
+ wp_die( \'Error occured on SBP cache. Please contact you webmaster.\' );
161
+ }
162
+
163
+ return rtrim( $path, "/" ) . "/";
164
+ }
165
+
166
+ function sbp_explode_lines( $text ) {
167
+ if ( ! $text ) {
168
+ return [];
169
+ }
170
+
171
+ return array_map( \'trim\', explode( PHP_EOL, $text ) );
172
+ }';
173
+
174
+ return $advanced_cache_file_content;
175
  }
176
 
177
  private static function caching_query_string_includes() {
199
  }
200
 
201
  private static function caching_expiry() {
202
+ return (int) self::$options['caching_expiry'];
203
  }
204
  }
includes/classes/class-sbp-advisor.php DELETED
@@ -1,102 +0,0 @@
1
- <?php
2
-
3
- namespace SpeedBooster;
4
-
5
- // If this file is called directly, abort.
6
- if ( ! defined( 'WPINC' ) ) {
7
- die;
8
- }
9
-
10
- class SBP_Advisor {
11
- private $messages = [];
12
-
13
- public function __construct() {
14
- add_action( 'wp_ajax_sbp_get_advisor_messages', [ $this, 'get_messages_html' ] );
15
- }
16
-
17
- public function set_messages() {
18
- $this->check_php_version();
19
- $this->check_http_protocol_version();
20
- }
21
-
22
- private function check_http_protocol_version() {
23
- $checked = false;
24
- $message_id = 'update_http_protocol';
25
-
26
- if ( isset( $_SERVER['SERVER_PROTOCOL'] ) && in_array( $_SERVER['SERVER_PROTOCOL'], [ 'HTTP/2', 'HTTP/3' ] ) ) {
27
- $checked = true;
28
- // Z_TODO: Use version compare instead string comparison
29
- } else if ( isset( $_SERVER['SERVER_PROTOCOL'] ) && in_array( $_SERVER['SERVER_PROTOCOL'], [ 'HTTP/1.0', 'HTTP/1.1' ] ) ) {
30
- if ( function_exists( 'curl_version' ) and defined( 'CURL_HTTP_VERSION_2_0' ) ) {
31
- $ch = curl_init();
32
- curl_setopt_array( $ch, [
33
- CURLOPT_URL => get_home_url(),
34
- CURLOPT_HEADER => true,
35
- CURLOPT_NOBODY => true,
36
- CURLOPT_RETURNTRANSFER => true,
37
- CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_2_0,
38
- ] );
39
- $response = curl_exec( $ch );
40
-
41
- if ( substr( $response, 0, 6 ) === 'HTTP/2' ) {
42
- $checked = true;
43
- }
44
- } else {
45
- $this->messages[ $message_id ] = [
46
- 'type' => 'non-dismissible',
47
- /** B_TODO: Need a text for curl disabled websites. "Use http2.pro bla bla bla" */
48
- 'content' => __( 'Curl is not active', 'speed-booster-pack' ),
49
- 'checked' => false,
50
- ];
51
- return;
52
- }
53
- }
54
-
55
- $this->messages[ $message_id ] = [
56
- 'type' => 'non-dismissible',
57
- 'content' => __( 'You\'re using HTTP/1.1. For best performance, you should upgrade to HTTP/2 or, if possible, HTTP/3.', 'speed-booster-pack' ),
58
- 'checked' => $checked,
59
- ];
60
- }
61
-
62
- private function check_php_version() {
63
- $checked = false;
64
- $message_id = 'update_php';
65
-
66
- if ( version_compare( PHP_VERSION, '7.3' ) !== - 1 ) {
67
- $checked = true;
68
- }
69
-
70
- $this->messages[ $message_id ] = [
71
- 'type' => 'non-dismissible',
72
- 'content' => __( 'You\'re using and old version of PHP. For best performance, you should upgrade PHP to version 7.3 or above.', 'speed-booster-pack' ),
73
- 'checked' => $checked,
74
- ];
75
- }
76
-
77
- public function get_messages_html() {
78
- $this->set_messages();
79
-
80
- if ( isset( $_GET['sbp_action'] ) && $_GET['sbp_action'] == 'sbp_get_advisor_messages' && current_user_can( 'manage_options' ) && isset( $_GET['nonce'] ) && wp_verify_nonce( $_GET['nonce'], 'sbp_ajax_nonce' ) ) {
81
-
82
- usort( $this->messages, function ( $a, $b ) {
83
- if ( $a['checked'] > $b['checked'] ) {
84
- return 1;
85
- } elseif ( $a['checked'] == $b['checked'] ) {
86
- return 0;
87
- } else {
88
- return - 1;
89
- }
90
- } );
91
- $advisor_messages_content = '';
92
- foreach ( $this->messages as $message_id => $message ) {
93
- $advisor_messages_content .= '<div class="sbp-advice" data-message-id="' . $message_id . '">
94
- <input type="checkbox" disabled="disabled" ' . ( $message["checked"] ? "checked" : "" ) . ' /><span class="circle"></span> <p> ' . $message['content'] . '</p>
95
- </div>';
96
- }
97
-
98
- echo $advisor_messages_content;
99
- }
100
- wp_die();
101
- }
102
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/classes/class-sbp-base-cache.php ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace SpeedBooster;
4
+
5
+ class SBP_Base_Cache extends SBP_Abstract_Module {
6
+ protected $is_litespeed = false;
7
+
8
+ public function __construct() {
9
+ $this->is_litespeed = SBP_Utils::is_litespeed();
10
+ }
11
+
12
+ /**
13
+ * Decides to run cache or not.
14
+ *
15
+ * @return bool
16
+ */
17
+ protected function should_bypass_cache( $skipped_conditions = [] ) {
18
+ // Do not cache for logged in users
19
+ if ( is_user_logged_in() && ! in_array( 'is_logged_in', $skipped_conditions ) ) {
20
+ return true;
21
+ }
22
+
23
+ // Check for several special pages
24
+ if ( is_search() || is_404() || is_feed() || is_trackback() || is_robots() || is_preview() || post_password_required() ) {
25
+ return true;
26
+ }
27
+
28
+ // DONOTCACHEPAGE
29
+ if ( defined( 'DONOTCACHEPAGE' ) && DONOTCACHEPAGE === true ) {
30
+ return true;
31
+ }
32
+
33
+ // Woocommerce checkout check
34
+ if ( function_exists( 'is_checkout' ) ) {
35
+ if ( is_checkout() ) {
36
+ return true;
37
+ }
38
+ }
39
+
40
+ // Woocommerce cart check
41
+ if ( function_exists( 'is_cart' ) ) {
42
+ if ( is_cart() ) {
43
+ return true;
44
+ }
45
+ }
46
+
47
+ // Check request method. Only cache get methods
48
+ if ( $_SERVER['REQUEST_METHOD'] != 'GET' ) {
49
+ return true;
50
+ }
51
+
52
+ if ( ! in_array( 'include_query_strings', $skipped_conditions ) ) {
53
+ if ( ! empty( $_GET ) ) {
54
+ $include_query_strings = SBP_Utils::explode_lines( sbp_get_option( 'caching_include_query_strings' ) );
55
+
56
+ foreach ( $_GET as $key => $value ) {
57
+ if ( ! in_array( $key, $include_query_strings ) ) {
58
+ return true;
59
+ }
60
+ }
61
+ }
62
+ }
63
+
64
+ if ( $this->check_excluded_urls() ) {
65
+ return true;
66
+ }
67
+
68
+ if ( $this->check_cookies() && ! in_array( 'check_cookies', $skipped_conditions ) ) {
69
+ return true;
70
+ }
71
+
72
+ return false;
73
+ }
74
+
75
+ private function check_excluded_urls() {
76
+ // Check for exclude URLs
77
+ if ( $exclude_urls = sbp_get_option( 'caching_' . ( $this->is_litespeed !== false ? 'ls_' : '' ) . 'exclude_urls' ) ) {
78
+ $exclude_urls = array_map( 'trim', SBP_Utils::explode_lines( $exclude_urls ) );
79
+ $exclude_urls[] = '/favicon.ico';
80
+ $current_url = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
81
+ $current_url = explode( '?', $current_url )[0];
82
+ $current_url = rtrim( $current_url, '/' );
83
+ if ( count( $exclude_urls ) > 0 && in_array( $current_url, $exclude_urls ) ) {
84
+ return true;
85
+ }
86
+ }
87
+ }
88
+
89
+ private function check_cookies() {
90
+ // Check if user logged in
91
+ if ( ! empty( $_COOKIE ) ) {
92
+ // Default Cookie Excludes
93
+ $cookies = [ 'comment_author_', 'wordpress_logged_in_', 'wp-postpass_' ];
94
+ $excluded_cookies = sbp_get_option( 'caching_' . ( $this->is_litespeed !== false ? 'ls_' : '' ) . 'exclude_cookies' );
95
+ $excluded_cookies = SBP_Utils::explode_lines( $excluded_cookies );
96
+ $cookies = array_merge( $cookies, $excluded_cookies );
97
+
98
+ $cookies_regex = '/^(' . implode( '|', $cookies ) . ')/';
99
+
100
+ foreach ( $_COOKIE as $key => $value ) {
101
+ if ( preg_match( $cookies_regex, $key ) ) {
102
+ return true;
103
+ }
104
+ }
105
+ }
106
+ }
107
+ }
includes/classes/class-sbp-cache.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'WPINC' ) ) {
9
  die;
10
  }
11
 
12
- class SBP_Cache extends SBP_Abstract_Module {
13
  /**
14
  * Name of the cached file
15
  *
@@ -18,7 +18,7 @@ class SBP_Cache extends SBP_Abstract_Module {
18
  private $file_name = 'index.html';
19
 
20
  public function __construct() {
21
- global $sbp_cache_already_bypassed;
22
 
23
  if ( ! sbp_get_option( 'module_caching' ) || sbp_should_disable_feature( 'caching' ) ) {
24
  return;
@@ -33,67 +33,6 @@ class SBP_Cache extends SBP_Abstract_Module {
33
  add_filter( 'sbp_output_buffer', [ $this, 'handle_cache' ], 1000 );
34
  }
35
 
36
- /**
37
- * Decides to run cache or not.
38
- *
39
- * @return bool
40
- */
41
- private function should_bypass_cache() {
42
- // Do not cache for logged in users
43
- if ( is_user_logged_in() ) {
44
- return true;
45
- }
46
-
47
- // Check for several special pages
48
- if ( is_search() || is_404() || is_feed() || is_trackback() || is_robots() || is_preview() || post_password_required() ) {
49
- return true;
50
- }
51
-
52
- // DONOTCACHEPAGE
53
- if ( defined( 'DONOTCACHEPAGE' ) && DONOTCACHEPAGE === true ) {
54
- return true;
55
- }
56
-
57
- // Woocommerce checkout check
58
- if ( function_exists( 'is_checkout' ) ) {
59
- if ( is_checkout() ) {
60
- return true;
61
- }
62
- }
63
-
64
- // Woocommerce cart check
65
- if ( function_exists( 'is_cart' ) ) {
66
- if ( is_cart() ) {
67
- return true;
68
- }
69
- }
70
-
71
- // Check request method. Only cache get methods
72
- if ( $_SERVER['REQUEST_METHOD'] != 'GET' ) {
73
- return true;
74
- }
75
-
76
- if ( ! empty( $_GET ) ) {
77
- $include_query_strings = SBP_Utils::explode_lines( sbp_get_option( 'caching_include_query_strings' ) );
78
-
79
- foreach ( $_GET as $key => $value ) {
80
- if ( ! in_array( $key, $include_query_strings ) ) {
81
- return true;
82
- }
83
- }
84
- }
85
-
86
- if ( $this->check_excluded_urls() ) {
87
- return true;
88
- }
89
-
90
- if ( $this->check_cookies() ) {
91
- return true;
92
- }
93
-
94
- return false;
95
- }
96
-
97
  /**
98
  * Handles the HTTP request to catch cache clear action
99
  */
@@ -235,7 +174,7 @@ class SBP_Cache extends SBP_Abstract_Module {
235
  $wp_config_file_content = '<?php' . PHP_EOL . $wp_config_file_content;
236
  }
237
 
238
- $wp_config_file_content = str_replace( '<?php', '<?php' . $append_line, $wp_config_file_content );
239
 
240
  file_put_contents( $wp_config_file, $wp_config_file_content );
241
  }
@@ -643,25 +582,6 @@ AddEncoding gzip svgz
643
  }
644
  }
645
 
646
- private function check_cookies() {
647
- // Check if user logged in
648
- if ( ! empty( $_COOKIE ) ) {
649
- // Default Cookie Excludes
650
- $cookies = [ 'comment_author_', 'wordpress_logged_in_', 'wp-postpass_' ];
651
- $excluded_cookies = sbp_get_option( 'caching_exclude_cookies' );
652
- $excluded_cookies = SBP_Utils::explode_lines( $excluded_cookies );
653
- $cookies = array_merge( $cookies, $excluded_cookies );
654
-
655
- $cookies_regex = '/^(' . implode( '|', $cookies ) . ')/';
656
-
657
- foreach ( $_COOKIE as $key => $value ) {
658
- if ( preg_match( $cookies_regex, $key ) ) {
659
- return true;
660
- }
661
- }
662
- }
663
- }
664
-
665
  private function check_query_strings() {
666
  // Check for query strings
667
  if ( ! empty( $_GET ) ) {
@@ -681,16 +601,4 @@ AddEncoding gzip svgz
681
  }
682
  }
683
  }
684
-
685
- private function check_excluded_urls() {
686
- // Check for exclude URLs
687
- if ( $exclude_urls = sbp_get_option( 'caching_exclude_urls' ) ) {
688
- $exclude_urls = array_map( 'trim', SBP_Utils::explode_lines( $exclude_urls ) );
689
- $exclude_urls[] = '/favicon.ico';
690
- $current_url = rtrim( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], '/' );
691
- if ( count( $exclude_urls ) > 0 && in_array( $current_url, $exclude_urls ) ) {
692
- return true;
693
- }
694
- }
695
- }
696
  }
9
  die;
10
  }
11
 
12
+ class SBP_Cache extends SBP_Base_Cache {
13
  /**
14
  * Name of the cached file
15
  *
18
  private $file_name = 'index.html';
19
 
20
  public function __construct() {
21
+ parent::__construct();
22
 
23
  if ( ! sbp_get_option( 'module_caching' ) || sbp_should_disable_feature( 'caching' ) ) {
24
  return;
33
  add_filter( 'sbp_output_buffer', [ $this, 'handle_cache' ], 1000 );
34
  }
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  /**
37
  * Handles the HTTP request to catch cache clear action
38
  */
174
  $wp_config_file_content = '<?php' . PHP_EOL . $wp_config_file_content;
175
  }
176
 
177
+ $wp_config_file_content = preg_replace( '/(<\?php)/i', '<?php' . $append_line, $wp_config_file_content, 1 );
178
 
179
  file_put_contents( $wp_config_file, $wp_config_file_content );
180
  }
582
  }
583
  }
584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
  private function check_query_strings() {
586
  // Check for query strings
587
  if ( ! empty( $_GET ) ) {
601
  }
602
  }
603
  }
 
 
 
 
 
 
 
 
 
 
 
 
604
  }
includes/classes/class-sbp-critical-css.php CHANGED
@@ -35,28 +35,18 @@ class SBP_Critical_CSS extends SBP_Abstract_Module {
35
  return $html;
36
  }
37
 
38
- $run_main_setting = false;
39
 
40
  // Content Specific Option
41
- if ( is_singular() ) {
42
- $content_specific_criticalcss_status = sbp_get_post_meta( get_the_ID(), 'sbp_criticalcss_status', 'main_setting' );
 
43
 
 
44
  if ( $content_specific_criticalcss_status == 'off' ) {
45
  return $html;
46
  } elseif ( $content_specific_criticalcss_status == 'custom' ) {
47
- $content_specific_criticalcss = sbp_get_post_meta( get_the_ID(), 'sbp_criticalcss' );
48
- } else {
49
- $run_main_setting = true;
50
  }
51
- } else {
52
- $run_main_setting = true;
53
- }
54
-
55
- // Find main_setting Critical CSS Code if exists
56
- if ( $run_main_setting ) {
57
- $criticalcss_code = sbp_get_option( 'criticalcss_default' );
58
- } else {
59
- $criticalcss_code = $content_specific_criticalcss;
60
  }
61
 
62
  if ( $run_main_setting ) {
35
  return $html;
36
  }
37
 
 
38
 
39
  // Content Specific Option
40
+ $content_specific_criticalcss_status = sbp_get_post_meta( get_the_ID(), 'sbp_criticalcss_status', 'main_setting' );
41
+ $run_main_setting = $content_specific_criticalcss_status == 'main_setting';
42
+ $criticalcss_code = sbp_get_option( 'criticalcss_default' );
43
 
44
+ if ( is_singular() ) {
45
  if ( $content_specific_criticalcss_status == 'off' ) {
46
  return $html;
47
  } elseif ( $content_specific_criticalcss_status == 'custom' ) {
48
+ $criticalcss_code = sbp_get_post_meta( get_the_ID(), 'sbp_criticalcss' );
 
 
49
  }
 
 
 
 
 
 
 
 
 
50
  }
51
 
52
  if ( $run_main_setting ) {
includes/classes/class-sbp-litespeed-cache.php ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace SpeedBooster;
4
+
5
+ // If this file is called directly, abort.
6
+ if ( ! defined( 'WPINC' ) ) {
7
+ die;
8
+ }
9
+
10
+ class SBP_LiteSpeed_Cache extends SBP_Base_Cache {
11
+ const ROOT_MARKER = 'SBP_LS_CACHE';
12
+
13
+ public function __construct() {
14
+ parent::__construct();
15
+ if ( SBP_Utils::is_litespeed() ) {
16
+ add_action( 'init', [ $this, 'clear_lscache_request' ] );
17
+ add_action( 'admin_bar_menu', [ $this, 'add_admin_bar_links' ], 90 );
18
+ add_filter( 'sbp_output_buffer', [ $this, 'set_headers' ] );
19
+ add_action( 'csf_sbp_options_saved', [ $this, 'send_clear_cache_header' ] );
20
+ $this->clear_cache_hooks();
21
+ }
22
+ }
23
+
24
+ public function add_admin_bar_links( \WP_Admin_Bar $admin_bar ) {
25
+ if ( current_user_can( 'manage_options' ) ) {
26
+ // Cache clear
27
+ $clear_lscache_url = wp_nonce_url( add_query_arg( 'sbp_action', 'sbp_clear_lscache' ),
28
+ 'sbp_clear_total_lscache',
29
+ 'sbp_nonce' );
30
+ $sbp_admin_menu = [
31
+ 'id' => 'sbp_clear_lscache',
32
+ 'parent' => 'speed_booster_pack',
33
+ 'title' => __( 'Clear LiteSpeed Cache', 'speed-booster-pack' ),
34
+ 'href' => $clear_lscache_url,
35
+ ];
36
+
37
+ $admin_bar->add_node( $sbp_admin_menu );
38
+ }
39
+ }
40
+
41
+ /**
42
+ * Handles the HTTP request to catch cache clear action
43
+ */
44
+ public function clear_lscache_request() {
45
+ if ( isset( $_GET['sbp_action'] ) && $_GET['sbp_action'] == 'sbp_clear_lscache' && current_user_can( 'manage_options' ) && isset( $_GET['sbp_nonce'] ) && wp_verify_nonce( $_GET['sbp_nonce'], 'sbp_clear_total_lscache' ) ) {
46
+ self::send_clear_cache_header();
47
+ $redirect_url = remove_query_arg( [ 'sbp_action', 'sbp_nonce' ] );
48
+ wp_safe_redirect( $redirect_url );
49
+ exit;
50
+ }
51
+ }
52
+
53
+ public static function insert_htaccess_rules() {
54
+ if ( ! SBP_Utils::is_litespeed() ) {
55
+ return;
56
+ }
57
+
58
+ $lines = [];
59
+
60
+ if ( sbp_get_option( 'module_caching_ls' ) ) {
61
+ $lines[] = '<IfModule LiteSpeed>';
62
+ $lines[] = 'RewriteEngine On';
63
+ $lines[] = 'CacheLookup On' . PHP_EOL;
64
+
65
+ // Add vary, so the logged in users won't see public cache or other users' caches
66
+ $lines[] = '## BEGIN Cache vary for logged in users';
67
+ $lines[] = 'RewriteRule .? - [E="Cache-Vary:,wordpress_logged_in_' . COOKIEHASH . '"]';
68
+ $lines[] = '## END Cache vary for logged in users' . PHP_EOL;
69
+
70
+ if ( sbp_get_option( 'caching_ls_separate_mobile' ) ) {
71
+ $lines[] = '## BEGIN Cache vary for mobile browsers';
72
+ $lines[] = 'RewriteCond %{HTTP_USER_AGENT} "Mobile|Android|Silk/|Kindle|BlackBerry|Opera Mini|Opera Mobi"';
73
+ $lines[] = 'RewriteRule .* - [E=Cache-Control:vary=ismobile]';
74
+ $lines[] = '## END Cache vary for mobile browsers' . PHP_EOL;
75
+ }
76
+
77
+ // B_TODO: Exclude cookie rules must be in htaccess
78
+
79
+ if ( $query_strings = sbp_get_option( 'caching_ls_include_query_strings' ) ) {
80
+ $keys = explode( PHP_EOL, $query_strings );
81
+ if ( $keys ) {
82
+ $lines[] = '## BEGIN Dropped Query Strings';
83
+ foreach ( $keys as $key ) {
84
+ $lines[] = 'CacheKeyModify -qs:' . $key;
85
+ }
86
+ $lines[] = '## END Dropped Query Strings';
87
+ }
88
+ }
89
+ $lines[] = '</IfModule>';
90
+ }
91
+
92
+ SBP_Utils::insert_to_htaccess( self::ROOT_MARKER, implode( PHP_EOL, $lines ) );
93
+ }
94
+
95
+ public static function remove_htaccess_rules() {
96
+ SBP_Utils::insert_to_htaccess( self::ROOT_MARKER, '' );
97
+ }
98
+
99
+ private function add_tags() {
100
+ $tags = [];
101
+
102
+ $template_functions = [
103
+ 'is_front_page',
104
+ 'is_home',
105
+ 'is_single',
106
+ 'is_page',
107
+ 'is_category',
108
+ 'is_tag',
109
+ 'is_archive',
110
+ 'is_shop',
111
+ 'is_product',
112
+ 'is_product_category',
113
+ ];
114
+
115
+ foreach ( $template_functions as $function ) {
116
+ if ( function_exists( $function ) && call_user_func( $function ) ) {
117
+ $tags[] = $function;
118
+ }
119
+ }
120
+
121
+ if ( sbp_get_option( 'caching_ls_separate_mobile' ) && wp_is_mobile() ) {
122
+ $tags[] = 'is_mobile';
123
+ }
124
+
125
+ if ( $tags ) {
126
+ header( 'X-LiteSpeed-Tag: ' . implode( ',', $tags ) );
127
+ }
128
+ }
129
+
130
+ public function set_headers( $html ) {
131
+ if ( ! sbp_get_option( 'module_caching_ls' ) ) {
132
+ header( 'X-LiteSpeed-Cache-Control: no-cache' );
133
+ } else {
134
+ // Multiply by 3600 because we store this value in hours but this value should be converted to seconds here
135
+ $cache_expire_time = sbp_get_option( 'caching_ls_expiry', 10 ) * HOUR_IN_SECONDS;
136
+
137
+ // Check for all exclusions
138
+ if ( true === $this->should_bypass_cache( [ 'is_logged_in', 'include_query_strings', 'check_cookies' ] ) ) {
139
+ header( 'X-LiteSpeed-Cache-Control: no-cache' );
140
+ } else {
141
+ if ( ! sbp_get_option( 'caching_ls_cache_logged_in_users' ) && is_user_logged_in() ) {
142
+ header( 'X-LiteSpeed-Cache-Control: no-cache' );
143
+ } else {
144
+ $this->add_tags();
145
+
146
+ if (is_user_logged_in()) {
147
+ header( 'X-LiteSpeed-Cache-Control: private,max-age=' . $cache_expire_time );
148
+ header( 'X-LiteSpeed-Vary: cookie=wordpress_logged_in_' . COOKIEHASH );
149
+ } else {
150
+ header( 'X-LiteSpeed-Cache-Control: public,max-age=' . $cache_expire_time );
151
+ $html .= '<!-- LiteSpeed cache controlled by ' . SBP_PLUGIN_NAME . ' -->';
152
+ }
153
+ }
154
+
155
+ }
156
+ }
157
+
158
+ return $html;
159
+ }
160
+
161
+ private function clear_cache_hooks() {
162
+ add_action( '_core_updated_successfully', [ $this, 'send_clear_cache_header' ] );
163
+ add_action( 'switch_theme', [ $this, 'send_clear_cache_header' ] );
164
+ add_action( 'save_post', [ $this, 'send_clear_cache_header' ] );
165
+ add_action( 'autoptimize_action_cachepurged', [ $this, 'send_clear_cache_header' ] );
166
+ add_action( 'upgrader_process_complete', [ $this, 'send_clear_cache_header' ] );
167
+ add_action( 'woocommerce_thankyou', [ $this, 'send_clear_cache_header' ] );
168
+ add_action( 'woocommerce_product_set_stock', [ $this, 'send_clear_cache_header' ] );
169
+ add_action( 'woocommerce_product_set_stock_status', [ $this, 'send_clear_cache_header' ] );
170
+ add_action( 'woocommerce_variation_set_stock', [ $this, 'send_clear_cache_header' ] );
171
+ add_action( 'woocommerce_variation_set_stock_status', [ $this, 'send_clear_cache_header' ] );
172
+ add_action( 'wp_update_nav_menu', [ $this, 'send_clear_cache_header' ] ); // When a custom menu is update.
173
+ add_action( 'update_option_sidebars_widgets', [ $this, 'send_clear_cache_header' ] ); // When you change the order of widgets.
174
+ add_action( 'update_option_category_base', [ $this, 'send_clear_cache_header' ] ); // When category permalink prefix is update.
175
+ add_action( 'update_option_tag_base', [ $this, 'send_clear_cache_header' ] ); // When tag permalink prefix is update.
176
+ add_action( 'permalink_structure_changed', [ $this, 'send_clear_cache_header' ] ); // When permalink structure is update.
177
+ add_action( 'edited_terms', [ $this, 'send_clear_cache_header' ] ); // When a term is updated.
178
+ add_action( 'customize_save', [ $this, 'send_clear_cache_header' ] ); // When customizer is saved.
179
+ // add_action( 'comment_post', [ $this, 'clear_post_by_comment' ] );
180
+ add_action(
181
+ 'wp_trash_post',
182
+ function ( $post_id ) {
183
+ if ( get_post_status( $post_id ) == 'publish' ) {
184
+ self::send_clear_cache_header();
185
+ }
186
+ }
187
+ );
188
+
189
+ if ( is_admin() ) {
190
+ add_action( 'wpmu_new_blog', [ $this, 'send_clear_cache_header' ] );
191
+ add_action( 'delete_blog', [ $this, 'send_clear_cache_header' ] );
192
+ add_action( 'transition_comment_status', [ $this, 'send_clear_cache_header' ], 10, 3 );
193
+ // add_action( 'edit_comment', [ $this, 'clear_post_by_comment' ] );
194
+ }
195
+ }
196
+
197
+ public static function send_clear_cache_header() {
198
+ @header( 'X-LiteSpeed-Purge: private, *; public, *' );
199
+ }
200
+
201
+ // B_TODO: We are currently not supporting this feature on LiteSpeed Cache
202
+ // public function clear_post_by_comment( $comment_id ) {
203
+ // $comment = get_comment( $comment_id );
204
+ //
205
+ // if ( $comment->comment_approved ) {
206
+ // self::clear_post_by_id( $comment->comment_post_ID );
207
+ // }
208
+ // }
209
+ }
includes/classes/class-sbp-migrator.php CHANGED
@@ -40,8 +40,6 @@ class SBP_Migrator {
40
  if ( ! $current_migrator_version || (int) $current_migrator_version < (int) SBP_MIGRATOR_VERSION ) {
41
  add_action( 'init', [ $this, 'migrate_plugin' ] );
42
  }
43
-
44
- add_action( 'admin_init', [ $this, 'update_pagespeed_tricker' ] );
45
  }
46
 
47
  public function migrate_plugin() {
@@ -115,7 +113,6 @@ ga('send', 'pageview');";
115
  }
116
 
117
  private function apply_cache_settings() {
118
- SBP_WP_Config_Injector::inject_wp_config();
119
  SBP_Cache::generate_htaccess();
120
  SBP_Cache::set_wp_cache_constant();
121
  }
@@ -254,16 +251,4 @@ ga('send', 'pageview');";
254
  SBP_Notice_Manager::display_notice( 'sbp_database_migrated_' . SBP_MIGRATOR_VERSION, '<p>' . SBP_PLUGIN_NAME . ': ' . __( 'With version 4.2.0, we\'ve split the JavaScript optimization feature into two: Defer and move to footer. Check your JS optimization settings to ensure the settings are correct.', 'speed-booster-pack' ) . '</p>' );
255
  }
256
  }
257
-
258
- public function update_pagespeed_tricker() {
259
- if ( sbp_get_option( 'pagespeed_tricker' ) && current_user_can( 'manage_options' ) ) {
260
- $inject = SBP_WP_Config_Injector::inject_wp_config();
261
-
262
- if ( $inject ) {
263
- $this->sbp_options = get_option( 'sbp_options' );
264
- $this->sbp_options['pagespeed_tricker'] = 0;
265
- update_option( 'sbp_options', $this->sbp_options );
266
- }
267
- }
268
- }
269
  }
40
  if ( ! $current_migrator_version || (int) $current_migrator_version < (int) SBP_MIGRATOR_VERSION ) {
41
  add_action( 'init', [ $this, 'migrate_plugin' ] );
42
  }
 
 
43
  }
44
 
45
  public function migrate_plugin() {
113
  }
114
 
115
  private function apply_cache_settings() {
 
116
  SBP_Cache::generate_htaccess();
117
  SBP_Cache::set_wp_cache_constant();
118
  }
251
  SBP_Notice_Manager::display_notice( 'sbp_database_migrated_' . SBP_MIGRATOR_VERSION, '<p>' . SBP_PLUGIN_NAME . ': ' . __( 'With version 4.2.0, we\'ve split the JavaScript optimization feature into two: Defer and move to footer. Check your JS optimization settings to ensure the settings are correct.', 'speed-booster-pack' ) . '</p>' );
252
  }
253
  }
 
 
 
 
 
 
 
 
 
 
 
 
254
  }
includes/classes/class-sbp-newsletter.php CHANGED
@@ -22,12 +22,12 @@ class SBP_Newsletter {
22
  $display_time = strtotime( '+1 day' );
23
  update_user_meta( get_current_user_id(), 'sbp_newsletter_display_time', $display_time );
24
  }
25
- }
26
 
27
- if ( time() > $display_time && current_user_can( 'manage_options' ) && ! get_user_meta( get_current_user_id(), 'sbp_hide_newsletter_pointer', true ) ) {
28
- wp_enqueue_style( 'wp-pointer' );
29
- wp_enqueue_script( 'wp-pointer' );
30
- add_action( 'admin_print_footer_scripts', [ $this, 'my_admin_print_footer_scripts' ] );
 
31
  }
32
  }
33
 
22
  $display_time = strtotime( '+1 day' );
23
  update_user_meta( get_current_user_id(), 'sbp_newsletter_display_time', $display_time );
24
  }
 
25
 
26
+ if ( time() > $display_time && current_user_can( 'manage_options' ) && ! get_user_meta( get_current_user_id(), 'sbp_hide_newsletter_pointer', true ) ) {
27
+ wp_enqueue_style( 'wp-pointer' );
28
+ wp_enqueue_script( 'wp-pointer' );
29
+ add_action( 'admin_print_footer_scripts', [ $this, 'my_admin_print_footer_scripts' ] );
30
+ }
31
  }
32
  }
33
 
includes/classes/class-sbp-utils.php CHANGED
@@ -53,4 +53,48 @@ class SBP_Utils extends SBP_Abstract_Module {
53
  return in_array( $plugin, (array) get_option( 'active_plugins', array() ), true ) || $is_plugin_active_for_network;
54
  }
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  }
53
  return in_array( $plugin, (array) get_option( 'active_plugins', array() ), true ) || $is_plugin_active_for_network;
54
  }
55
 
56
+ public static function insert_to_htaccess( $marker_name, $content ) {
57
+ global $wp_filesystem;
58
+
59
+ require_once( ABSPATH . '/wp-admin/includes/file.php' );
60
+ WP_Filesystem();
61
+
62
+ $htaccess_file_path = get_home_path() . '/.htaccess';
63
+
64
+ if ( $wp_filesystem->exists( $htaccess_file_path ) ) {
65
+ $current_htaccess = trim( $wp_filesystem->get_contents( $htaccess_file_path ) );
66
+ $current_htaccess = preg_replace( '/(## BEGIN ' . $marker_name . '.*?## END ' . $marker_name . PHP_EOL . PHP_EOL . ')/msi', '', $current_htaccess );
67
+
68
+ if ( $content ) {
69
+ $current_htaccess = str_replace( "# BEGIN WordPress", '## BEGIN ' . $marker_name . PHP_EOL . $content . PHP_EOL . '## END ' . $marker_name . PHP_EOL . PHP_EOL . "# BEGIN WordPress", $current_htaccess );
70
+ }
71
+
72
+ $put_files = $wp_filesystem->put_contents( $htaccess_file_path, $current_htaccess );
73
+
74
+ return (bool) $put_files;
75
+ }
76
+
77
+ return false;
78
+ }
79
+
80
+ public static function is_litespeed() {
81
+ if ( ! defined( 'LITESPEED_SERVER_TYPE' ) ) {
82
+ if ( isset( $_SERVER['HTTP_X_LSCACHE'] ) && $_SERVER['HTTP_X_LSCACHE'] ) {
83
+ define( 'LITESPEED_SERVER_TYPE', 'LITESPEED_SERVER_ADC' );
84
+ } elseif ( isset( $_SERVER['LSWS_EDITION'] ) && strpos( $_SERVER['LSWS_EDITION'], 'Openlitespeed' ) === 0 ) {
85
+ define( 'LITESPEED_SERVER_TYPE', 'LITESPEED_SERVER_OLS' );
86
+ } elseif ( isset( $_SERVER['SERVER_SOFTWARE'] ) && $_SERVER['SERVER_SOFTWARE'] == 'LiteSpeed' ) {
87
+ define( 'LITESPEED_SERVER_TYPE', 'LITESPEED_SERVER_ENT' );
88
+ } else {
89
+ define( 'LITESPEED_SERVER_TYPE', 'NONE' );
90
+ }
91
+ }
92
+
93
+ // Checks if caching is allowed via server variable
94
+ if ( ! empty ( $_SERVER['X-LSCACHE'] ) || LITESPEED_SERVER_TYPE === 'LITESPEED_SERVER_ADC' || defined( 'LITESPEED_CLI' ) ) {
95
+ ! defined( 'LITESPEED_ALLOWED' ) && define( 'LITESPEED_ALLOWED', true );
96
+ }
97
+
98
+ return LITESPEED_SERVER_TYPE !== 'NONE' ? LITESPEED_SERVER_TYPE && LITESPEED_ALLOWED : false;
99
+ }
100
  }
includes/classes/class-sbp-warmup-process.php CHANGED
@@ -13,9 +13,6 @@ class SBP_Warmup_Process extends \WP_Background_Process {
13
 
14
  protected function task( $item ) {
15
  $item['url'] = SBP_Utils::clear_hashes_and_question_mark( $item['url'] );
16
- if ( in_array( $item['url'], $this->done ) ) {
17
- return false;
18
- }
19
 
20
  $options = isset( $item['options'] ) ? $item['options'] : [];
21
  $args = array_merge( [
13
 
14
  protected function task( $item ) {
15
  $item['url'] = SBP_Utils::clear_hashes_and_question_mark( $item['url'] );
 
 
 
16
 
17
  $options = isset( $item['options'] ) ? $item['options'] : [];
18
  $args = array_merge( [
includes/classes/class-sbp-wp-admin.php CHANGED
@@ -13,7 +13,7 @@ class SBP_WP_Admin {
13
  if ( is_admin() ) {
14
  require_once SBP_LIB_PATH . 'announce4wp/announce4wp-client.php';
15
  add_action( 'admin_init', [ $this, 'set_notices' ] );
16
- $this->initialize_announce4wp();
17
 
18
  add_action( 'admin_init', [ $this, 'timed_notifications' ] );
19
  add_action( 'admin_init', [ $this, 'welcome_notice' ] );
13
  if ( is_admin() ) {
14
  require_once SBP_LIB_PATH . 'announce4wp/announce4wp-client.php';
15
  add_action( 'admin_init', [ $this, 'set_notices' ] );
16
+ // $this->initialize_announce4wp();
17
 
18
  add_action( 'admin_init', [ $this, 'timed_notifications' ] );
19
  add_action( 'admin_init', [ $this, 'welcome_notice' ] );
includes/classes/class-sbp-wp-config-injector.php CHANGED
@@ -7,6 +7,7 @@ if ( ! defined( 'WPINC' ) ) {
7
  die;
8
  }
9
 
 
10
  class SBP_WP_Config_Injector {
11
  private static $options = [];
12
 
7
  die;
8
  }
9
 
10
+ /** @removal */
11
  class SBP_WP_Config_Injector {
12
  private static $options = [];
13
 
includes/sbp-helpers.php CHANGED
@@ -388,7 +388,7 @@ if ( ! function_exists( 'sbp_sanitize_caching_cookies' ) ) {
388
  }
389
  }
390
 
391
- if ( ! function_exists( 'sbp_sanitize_caching_included_query_strings' ) ) {
392
  /**
393
  * Sanitizes included query strings for caching
394
  *
@@ -398,7 +398,7 @@ if ( ! function_exists( 'sbp_sanitize_caching_included_query_strings' ) ) {
398
  * @since 4.2.0
399
  *
400
  */
401
- function sbp_sanitize_caching_included_query_strings( $urls ) {
402
  $urls = strip_tags( $urls );
403
  $urls = SBP_Utils::explode_lines( $urls );
404
  $urls = sbp_remove_duplicates_and_empty( $urls );
388
  }
389
  }
390
 
391
+ if ( ! function_exists( 'sbp_sanitize_query_strings' ) ) {
392
  /**
393
  * Sanitizes included query strings for caching
394
  *
398
  * @since 4.2.0
399
  *
400
  */
401
+ function sbp_sanitize_query_strings( $urls ) {
402
  $urls = strip_tags( $urls );
403
  $urls = SBP_Utils::explode_lines( $urls );
404
  $urls = sbp_remove_duplicates_and_empty( $urls );
speed-booster-pack.php CHANGED
@@ -6,7 +6,7 @@
6
  * Plugin Name: Speed Booster Pack
7
  * Plugin URI: https://speedboosterpack.com
8
  * Description: PageSpeed optimization is vital for SEO: A faster website equals better conversions. Optimize & cache your site with this smart plugin!
9
- * Version: 4.3.4.2
10
  * Author: Optimocha
11
  * Author URI: https://optimocha.com
12
  * License: GPLv3 or later
@@ -32,7 +32,7 @@ define( 'SBP_PLUGIN_NAME', 'Speed Booster Pack' );
32
  /**
33
  * Current plugin version.
34
  */
35
- define( 'SBP_VERSION', '4.3.4.2' );
36
 
37
  /**
38
  * Plugin website URL.
6
  * Plugin Name: Speed Booster Pack
7
  * Plugin URI: https://speedboosterpack.com
8
  * Description: PageSpeed optimization is vital for SEO: A faster website equals better conversions. Optimize & cache your site with this smart plugin!
9
+ * Version: 4.4.0
10
  * Author: Optimocha
11
  * Author URI: https://optimocha.com
12
  * License: GPLv3 or later
32
  /**
33
  * Current plugin version.
34
  */
35
+ define( 'SBP_VERSION', '4.4.0' );
36
 
37
  /**
38
  * Plugin website URL.
templates/cache/advanced-cache.php DELETED
@@ -1,132 +0,0 @@
1
- <?php
2
-
3
- define( 'SBP_ADVANCED_CACHE', true );
4
-
5
- // check if request method is GET
6
- if ( ! isset($_SERVER['REQUEST_METHOD']) || $_SERVER['REQUEST_METHOD'] != 'GET') {
7
- return false;
8
- }
9
-
10
- // Check if user logged in
11
- if ( ! empty($_COOKIE)) {
12
- $cookies = ['comment_author_', 'wordpress_logged_in_', 'wp-postpass_', '{{__CACHING_EXCLUDE_COOKIES__}}'];
13
- $cookies = array_map('addslashes', $cookies);
14
- $cookies = array_filter($cookies);
15
- $cookies_regex = '/^('.implode('|', $cookies).')/';
16
-
17
- foreach ($_COOKIE as $key => $value) {
18
- // Z_TODO: Need to decode each key before match
19
- if (preg_match($cookies_regex, $key)) {
20
- return false;
21
- }
22
- }
23
- }
24
-
25
- // Set default file name
26
- $filename = 'index.html';
27
-
28
- // Check for query strings
29
- if ( ! empty($_GET)) {
30
- // Get included rules
31
- $include_query_strings = sbp_explode_lines('{{__CACHING_QUERY_STRING_INCLUDES__}}');
32
-
33
- $query_string_file_name = '';
34
- // Put all query string parameters in order to generate same filename even if parameter order is different
35
- ksort($_GET);
36
-
37
- foreach ($_GET as $key => $value) {
38
- if (in_array($key, $include_query_strings)) {
39
- $query_string_file_name .= "$key-$value-";
40
- } else {
41
- return false;
42
- }
43
- }
44
-
45
- if ('' !== $query_string_file_name) {
46
- $filename = md5($query_string_file_name).'.html';
47
- }
48
- }
49
-
50
- // base path
51
- $cache_file_path = get_cache_file_path().$filename;
52
- if ( ! is_readable($cache_file_path)) {
53
- return false;
54
- }
55
-
56
- // Check if cache file is expired
57
- $caching_expiry = '{{__CACHING_EXPIRY__}}' * HOUR_IN_SECONDS;
58
- if ((filemtime($cache_file_path) + $caching_expiry) < time()) {
59
- return false;
60
- }
61
-
62
- $exclude_urls = sbp_explode_lines('{{__CACHING_EXCLUDE_URLS__}}');
63
- $current_url = rtrim($_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'], '/');
64
- if (count($exclude_urls) > 0 && in_array($current_url, $exclude_urls)) {
65
- return false;
66
- }
67
-
68
- // output cached file
69
- readfile($cache_file_path);
70
- exit;
71
-
72
- /**
73
- * Copied from WordPress wp_is_mobile
74
- *
75
- * @return bool
76
- */
77
- function sbp_is_mobile()
78
- {
79
- if (empty($_SERVER['HTTP_USER_AGENT'])) {
80
- $is_mobile = false;
81
- } elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // Many mobile devices (all iPhone, iPad, etc.)
82
- || strpos($_SERVER['HTTP_USER_AGENT'], 'Android') !== false
83
- || strpos($_SERVER['HTTP_USER_AGENT'], 'Silk/') !== false
84
- || strpos($_SERVER['HTTP_USER_AGENT'], 'Kindle') !== false
85
- || strpos($_SERVER['HTTP_USER_AGENT'], 'BlackBerry') !== false
86
- || strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mini') !== false
87
- || strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mobi') !== false) {
88
- $is_mobile = true;
89
- } else {
90
- $is_mobile = false;
91
- }
92
-
93
- return $is_mobile;
94
- }
95
-
96
-
97
- // generate cache path
98
- function get_cache_file_path()
99
- {
100
- $cache_dir = WP_CONTENT_DIR.'/cache/speed-booster';
101
-
102
- '__SEPARATE_MOBILE_CACHING__';
103
-
104
- $path = sprintf(
105
- '%s%s%s%s',
106
- $cache_dir,
107
- DIRECTORY_SEPARATOR,
108
- parse_url(
109
- 'http://'.strtolower($_SERVER['HTTP_HOST']),
110
- PHP_URL_HOST
111
- ),
112
- parse_url(
113
- $_SERVER['REQUEST_URI'],
114
- PHP_URL_PATH
115
- )
116
- );
117
-
118
- if (is_file($path) > 0) {
119
- wp_die('Error occured on SBP cache. Please contact you webmaster.');
120
- }
121
-
122
- return rtrim($path, "/")."/";
123
- }
124
-
125
- function sbp_explode_lines($text)
126
- {
127
- if ( ! $text ) {
128
- return [];
129
- }
130
-
131
- return array_map('trim', explode(PHP_EOL, $text));
132
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
uninstall.php CHANGED
@@ -116,7 +116,7 @@ foreach ( $users as $user ) {
116
  delete_user_meta( $user->ID, 'sbp_intro' );
117
  }
118
 
119
- // Z_TODO: let's make a tool called "Cleanup SBP metadata" in a future version
120
  // $posts = new WP_Query([
121
  // 'post_type' => 'any',
122
  // 'meta_key' => 'sbp_post_meta',
116
  delete_user_meta( $user->ID, 'sbp_intro' );
117
  }
118
 
119
+ // B_TODO: let's make a tool called "Cleanup SBP metadata" in a future version
120
  // $posts = new WP_Query([
121
  // 'post_type' => 'any',
122
  // 'meta_key' => 'sbp_post_meta',
vendor/codestar-framework/assets/css/style.css CHANGED
@@ -3782,31 +3782,6 @@
3782
  min-height: 32px;
3783
  }
3784
 
3785
- .csf-modal-inner {
3786
- width: 350px;
3787
- height: 400px;
3788
- }
3789
-
3790
- .csf-modal-content {
3791
- height: 237px;
3792
- }
3793
-
3794
- .csf-icon-dialog .csf-modal-inner {
3795
- width: 305px;
3796
- height: 380px;
3797
- }
3798
- .csf-icon-dialog .csf-modal-content {
3799
- height: 267px;
3800
- }
3801
-
3802
- .csf-modal-icon .csf-modal-inner {
3803
- width: 330px;
3804
- height: 385px;
3805
- }
3806
- .csf-modal-icon .csf-modal-content {
3807
- height: 252px;
3808
- }
3809
-
3810
  .csf-profile-options > .csf-field > .csf-title,
3811
  .csf-taxonomy-edit-fields > .csf-field > .csf-title {
3812
  float: none;
@@ -3827,6 +3802,19 @@
3827
  padding: 10px;
3828
  }
3829
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
3830
  /**
3831
  * Chosen JS Styles
3832
  */
3782
  min-height: 32px;
3783
  }
3784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3785
  .csf-profile-options > .csf-field > .csf-title,
3786
  .csf-taxonomy-edit-fields > .csf-field > .csf-title {
3787
  float: none;
3802
  padding: 10px;
3803
  }
3804
  }
3805
+ @media only screen and (max-width: 782px) {
3806
+ .csf-modal .csf-modal-inner {
3807
+ width: 90%;
3808
+ }
3809
+ }
3810
+ @media only screen and (max-height: 750px) {
3811
+ .csf-modal .csf-modal-inner {
3812
+ height: auto;
3813
+ }
3814
+ .csf-modal .csf-modal-content {
3815
+ height: calc(100vh - 200px);
3816
+ }
3817
+ }
3818
  /**
3819
  * Chosen JS Styles
3820
  */
vendor/codestar-framework/assets/css/style.min.css CHANGED
@@ -1 +1 @@
1
- .csf{position:relative}.csf label{padding:0;margin:0;display:inline-block}.csf-ab-icon{top:2px}#screen-meta-links+.csf-options{margin-top:40px}.csf-options{margin-top:20px;margin-right:20px}.csf-header{position:relative}.csf-header-inner{padding:25px;transition:box-shadow .3s ease}.csf-header-inner h1{float:left;font-size:1.5em;line-height:26px;font-weight:400;margin:0}.csf-header-inner h1 small{font-size:11px;font-weight:500}.csf-sticky .csf-header-inner{position:fixed;z-index:99;top:32px;box-shadow:0 5px 10px rgba(0,0,0,.1)}.csf-buttons{float:right}.csf-buttons .button{margin:0 2px;line-height:26px}.csf-buttons .button:focus{outline:0!important;box-shadow:none!important}.csf-buttons .csf-save{min-width:72px}.csf-header-left{float:left}.csf-header-right{float:right}.csf-nav{display:block;position:relative;z-index:10;float:left}.csf-nav ul{clear:left;margin:0;list-style-type:none}.csf-nav ul li{margin-bottom:0}.csf-nav ul li a{font-size:13px;position:relative;display:block;padding:14px 12px;text-decoration:none;transition-property:color,background;transition-duration:.2s;transition-timing-function:ease}.csf-nav ul li a:focus{outline:0;box-shadow:none}.csf-nav ul li .csf-arrow:after{content:"\f054";display:inline-block;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:9px;line-height:1;position:absolute;right:10px;top:50%;margin-top:-4px}.csf-nav ul li.csf-tab-expanded .csf-arrow:after{transform:rotate(90deg)}.csf-nav ul li.csf-tab-expanded ul{display:block}.csf-nav ul ul{display:none;position:relative}.csf-nav ul ul li a{font-size:12px;padding:12px 14px 12px 24px}.csf-nav .csf-tab-icon{width:20px;margin-right:5px;font-size:13px;text-align:center}.csf-nav .csf-label-error{margin-left:4px;vertical-align:top}.csf-nav-normal{width:225px}.csf-nav-normal+.csf-content{margin-left:225px}.csf-nav-inline{width:100%}.csf-nav-inline ul li{display:inline-block;vertical-align:top}.csf-nav-background{position:absolute;top:0;left:0;bottom:0;z-index:9;width:225px}.csf-wrapper{position:relative}.csf-content{position:relative;background-color:#fff}.csf-sections{float:left;width:100%}.csf-section-title{display:none;padding:20px 30px;background-color:#f5f5f5;border-top:1px solid #eee;border-bottom:1px solid #eee}.csf-section-title h3{margin:0;padding:0;font-size:13px;font-weight:700;text-transform:uppercase}.csf-section-title .csf-section-icon{margin-right:5px}.csf-footer{padding:20px;font-size:11px}.csf-copyright{float:left;margin-top:5px}.csf-search-all .csf-nav,.csf-search-all .csf-nav-background,.csf-show-all .csf-nav,.csf-show-all .csf-nav-background{display:none}.csf-search-all .csf-content,.csf-show-all .csf-content{margin-left:0}.csf-search-all .csf-section,.csf-search-all .csf-section-title,.csf-show-all .csf-section,.csf-show-all .csf-section-title{display:block!important}.csf-search-all .csf-section-title{display:none!important}.csf-expand-all{float:left;padding:0 8px;margin-right:4px;z-index:1;font-size:13px;line-height:30px;cursor:pointer;user-select:none;border-radius:2px;transition:all .2s}.csf-expand-all span{font-size:11px;vertical-align:middle}.csf-search{float:left}.csf-search input{margin:0 2px 0 0;border:none;font-size:12px;line-height:30px;min-height:30px;text-align:inherit;padding:0 10px;border-radius:2px;box-shadow:none}.csf-search input:focus{box-shadow:none}.csf-saving .csf-buttons,.csf-saving .csf-content{cursor:default;pointer-events:none;opacity:.5}.csf-metabox{margin:-6px -12px -12px -12px}.csf-metabox .csf-field{padding:20px}.csf-metabox .csf-section-title{padding:20px}.block-editor-page .csf-metabox{margin:-6px -14px -14px -14px}.block-editor-editor-skeleton__content .csf-metabox{border-left:1px solid #e2e4e7;border-right:1px solid #e2e4e7}.csf-sections-reset{float:left;width:100%;text-align:right;border-top:1px solid #eee}.csf-sections-reset .csf-button-cancel,.csf-sections-reset input{display:none}.csf-sections-reset label{padding:10px}.csf-sections-reset span{-webkit-user-select:none;user-select:none}.csf-sections-reset input:checked~.csf-button-reset{display:none}.csf-sections-reset input:checked~.csf-button-cancel{display:inline-block}#side-sortables .csf-section-title{padding:12px}#side-sortables .csf-field{padding:10px 15px}#side-sortables .csf-field .csf-title{float:none;width:100%;margin-bottom:6px}#side-sortables .csf-field .csf-fieldset{float:none;width:100%}#side-sortables .csf-field-text input{width:100%}#side-sortables .csf-notice{padding:10px 15px}.csf-comment-metabox{margin:-6px -12px -12px -12px}.csf-comment-metabox .csf-field{padding:20px}.csf-comment-metabox .csf-section-title{padding:20px}.csf-tooltip{position:absolute;z-index:5000001;font-size:12px;line-height:1.4;text-align:center;text-decoration:none;padding:6px 12px;max-width:200px;color:#fff;background-color:#000;background-color:rgba(0,0,0,.85);border-radius:4px}.csf-theme-dark .csf-header-inner{background-color:#050505}.csf-theme-dark .csf-header-inner h1{color:#fff}.csf-theme-dark .csf-header-inner h1 small{color:#555}.csf-theme-dark .csf-expand-all{color:#999;background-color:#222}.csf-theme-dark .csf-expand-all:hover{color:#fff;background-color:#333}.csf-theme-dark .csf-search input{color:#fff;background-color:#222}.csf-theme-dark .csf-search:focus{background-color:#444}.csf-theme-dark .csf-search::-webkit-input-placeholder{color:#666}.csf-theme-dark .csf-nav ul li a{color:#999;border-color:#2f2f2f;background-color:#222}.csf-theme-dark .csf-nav ul li a:hover{color:#fff}.csf-theme-dark .csf-nav ul li .csf-active{color:#fff;background-color:#111}.csf-theme-dark .csf-nav ul ul li a{border-color:#2f2f2f;background-color:#191919}.csf-theme-dark .csf-nav ul ul li .csf-active{background-color:#101010}.csf-theme-dark .csf-nav ul ul:before{background-color:rgba(34,34,34,.75)}.csf-theme-dark .csf-nav>ul>li:last-child>a{border:none}.csf-theme-dark .csf-nav-normal ul li a{border-bottom-width:1px;border-bottom-style:solid}.csf-theme-dark .csf-nav-normal ul li .csf-active:after{content:" ";position:absolute;right:0;top:50%;height:0;width:0;pointer-events:none;border:solid transparent;border-right-color:#fff;border-width:4px;margin-top:-4px}.csf-theme-dark .csf-nav-inline{background-color:#222}.csf-theme-dark .csf-nav-inline ul li a{text-align:center;border-right-width:1px;border-right-style:solid}.csf-theme-dark .csf-nav-inline ul li .csf-active:after{content:" ";position:absolute;left:50%;bottom:0;height:0;width:0;pointer-events:none;border:solid transparent;border-bottom-color:#fff;border-width:4px;margin-left:-4px}.csf-theme-dark .csf-nav-background{background-color:#222}.csf-theme-dark .csf-footer{color:#555;background-color:#050505}.csf-theme-light .csf-container{border:1px solid #ccd0d4;box-shadow:0 0 15 rgba(0,0,0,.04)}.csf-theme-light .csf-header-inner{border-bottom:1px solid #ccd0d4;background-color:#f5f5f5;background:linear-gradient(#fefefe,#f5f5f5)}.csf-theme-light .csf-header-inner h1 small{color:#999}.csf-theme-light .csf-expand-all{color:#999;background-color:#eee}.csf-theme-light .csf-expand-all:hover{color:#555}.csf-theme-light .csf-search input{color:#555;background-color:#eee}.csf-theme-light .csf-search input::-webkit-input-placeholder{color:#999}.csf-theme-light .csf-nav ul li a{font-weight:500;color:#444;background-color:#f5f5f5}.csf-theme-light .csf-nav ul li a:hover{color:#111;background-color:#fff}.csf-theme-light .csf-nav ul li .csf-active{color:#111;background-color:#fff}.csf-theme-light .csf-nav ul ul li a{background-color:#eee}.csf-theme-light .csf-nav-normal>ul{margin-right:-1px;margin-bottom:-1px}.csf-theme-light .csf-nav-normal>ul li a{border-bottom:1px solid #ccd0d4;border-right:1px solid #ccd0d4}.csf-theme-light .csf-nav-normal>ul li .csf-active{border-right-color:#fff}.csf-theme-light .csf-nav-inline{background-color:#f5f5f5;border-bottom:1px solid #ccd0d4}.csf-theme-light .csf-nav-inline>ul{margin-bottom:-1px}.csf-theme-light .csf-nav-inline>ul li a{text-align:center;border-right:1px solid #ccd0d4;border-bottom:1px solid #ccd0d4}.csf-theme-light .csf-nav-inline>ul li .csf-active{border-bottom-color:#fff}.csf-theme-light .csf-nav-inline>ul ul{display:none!important}.csf-theme-light .csf-nav-inline .csf-arrow:after{display:none}.csf-theme-light .csf-nav-background{background-color:#f5f5f5;border-right:1px solid #ccd0d4}.csf-theme-light .csf-footer{color:#555;border-top:1px solid #ccd0d4;background-color:#f5f5f5;background:linear-gradient(#fafafa,#f5f5f5)}.csf-field{position:relative;padding:30px}.csf-field+.csf-field{border-top:1px solid #eee}.csf-field p:first-child{margin-top:0}.csf-field p:last-child{margin-bottom:0}.csf-field:after,.csf-field:before{content:" ";display:table}.csf-field:after{clear:both}.csf-field h4{margin-top:0}.csf-field .csf-title{position:relative;width:20%;float:left}.csf-field .csf-title h4{margin:0;color:#23282d}.csf-field .csf-fieldset{float:right;width:calc(80% - 20px)}.csf-pseudo-field{padding:0 5px 0 0!important;display:inline-block}.csf-pseudo-field+.csf-pseudo-field{border:0}.csf-pseudo-field pre{display:none}.csf-field-accordion .csf-accordion-item{position:relative;margin-bottom:5px}.csf-field-accordion .csf-accordion-item:last-child{margin-bottom:0}.csf-field-accordion .csf-accordion-item h4{font-size:1em}.csf-field-accordion .csf-accordion-title{display:block;cursor:pointer;position:relative;margin:0;padding:15px;min-height:0;font-size:100%;user-select:none;border:1px solid #ccd0d4;background-color:#fafafa;box-shadow:0 1px 1px rgba(0,0,0,.04);transition:border-color .15s}.csf-field-accordion .csf-accordion-title:active,.csf-field-accordion .csf-accordion-title:focus,.csf-field-accordion .csf-accordion-title:hover{outline:0;border-color:#999}.csf-field-accordion .csf-accordion-title .csf--icon{width:20px;text-align:center;margin-right:2px}.csf-field-accordion .csf-accordion-icon{width:16px;text-align:center}.csf-field-accordion .csf-accordion-content{display:none;padding:0;border:1px solid #ccd0d4;border-top:none;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-accordion .csf-accordion-content>.csf-field{padding:15px}.csf-field-accordion .csf-accordion-open{display:block}.csf-field-background .csf-field{border:0!important;padding:0;margin-bottom:6px;margin-right:6px}.csf-field-background .csf--title{color:#777;font-size:12px}.csf-field-background .csf--background-colors{display:flex;flex-wrap:wrap}.csf-field-background .csf--background-attributes{display:flex;flex-wrap:wrap}.csf-field-background .csf--background-attributes select{min-width:100%;margin:0}.csf-field-background .csf--background-attributes .csf-field{flex:1}.csf-field-background .csf--attributes-hidden{display:none}.csf-field-backup textarea{width:100%;min-height:200px;margin-bottom:5px}.csf-field-backup small{display:inline-block;margin:5px}.csf-field-backup hr{margin:20px 0;border:none;border-bottom:1px solid #e5e5e5}.csf-field-border .csf--inputs,.csf-field-dimensions .csf--inputs,.csf-field-spacing .csf--inputs{float:left;display:flex;flex-wrap:wrap}.csf-field-border .csf--input,.csf-field-dimensions .csf--input,.csf-field-spacing .csf--input{display:flex;padding-right:6px;padding-bottom:4px;box-sizing:border-box}.csf-field-border .csf--input select,.csf-field-dimensions .csf--input select,.csf-field-spacing .csf--input select{margin:0}.csf-field-border .csf--input input,.csf-field-dimensions .csf--input input,.csf-field-spacing .csf--input input{position:relative;z-index:1;margin:0;width:65px;max-width:100%;text-align:center}.csf-field-border .csf--color,.csf-field-dimensions .csf--color,.csf-field-spacing .csf--color{float:left}.csf-field-border .csf--label,.csf-field-dimensions .csf--label,.csf-field-spacing .csf--label{display:flex;flex-direction:column;justify-content:center;user-select:none;min-width:20px;max-width:100%;padding:0 4px;font-size:12px;text-align:center;color:#555;border:1px solid #7b776c;background-color:#f5f5f5}.csf-field-border .csf--icon,.csf-field-dimensions .csf--icon,.csf-field-spacing .csf--icon{border-right:0;border-radius:4px 0 0 4px}.csf-field-border .csf--icon+input,.csf-field-dimensions .csf--icon+input,.csf-field-spacing .csf--icon+input{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.csf-field-border .csf--unit,.csf-field-dimensions .csf--unit,.csf-field-spacing .csf--unit{border-left:0;border-radius:0 4px 4px 0}.csf-field-border .csf--is-unit,.csf-field-dimensions .csf--is-unit,.csf-field-spacing .csf--is-unit{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.csf-field-button_set .csf--buttons{display:inline-block}.csf-field-button_set .csf--button{position:relative;z-index:1;float:left;cursor:pointer;padding:7px 14px;min-width:16px;text-align:center;color:#555;border:1px solid #ccc;background-color:#f7f7f7;user-select:none;box-shadow:0 1px 0 rgba(0,0,0,.1)}.csf-field-button_set .csf--button:first-child{border-radius:4px 0 0 4px}.csf-field-button_set .csf--button:last-child{border-radius:0 4px 4px 0}.csf-field-button_set .csf--button:not(:first-child){margin-left:-1px}.csf-field-button_set .csf--button:hover{background-color:#eee}.csf-field-button_set .csf--active,.csf-field-button_set .csf--active:hover{z-index:2;color:#fff;border-color:#006799;background-color:#0085ba}.csf-field-button_set input{display:none}.csf-field-checkbox ul,.csf-field-radio ul{margin:0;padding:0;list-style-type:none;overflow-y:auto;max-height:305px}.csf-field-checkbox ul li,.csf-field-radio ul li{margin-bottom:6px}.csf-field-checkbox ul ul,.csf-field-radio ul ul{max-height:none}.csf-field-checkbox ul ul li,.csf-field-radio ul ul li{margin-left:8px}.csf-field-checkbox ul ul li:first-child,.csf-field-radio ul ul li:first-child{margin-left:0}.csf-field-checkbox input,.csf-field-radio input{margin:0 1px}.csf-field-checkbox .csf--inline-list li,.csf-field-radio .csf--inline-list li{display:inline-block;margin-right:15px}.csf-field-checkbox .csf--text,.csf-field-radio .csf--text{margin-left:5px;vertical-align:middle}.csf-field-checkbox .csf-checker,.csf-field-radio .csf-checker{cursor:pointer}.csf-field-code_editor .CodeMirror{width:100%;height:400px}.csf-field-code_editor .cm-s-default{border:1px solid #ccd0d4}.csf-field-code_editor textarea{width:100%;height:400px}.csf-field-color>input{opacity:.75;width:115px;max-width:100%}.csf-field-color .button.wp-picker-clear{padding:0 8px;margin-left:6px;line-height:2.54545455;min-height:30px}.csf-field-color_group .csf--left{float:left;margin-right:10px;margin-bottom:5px}.csf-field-color_group .csf--title{color:#999;margin-bottom:5px}.csf-field-fieldset .csf-fieldset-content{border:1px solid #ccd0d4;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-fieldset .csf-fieldset-content>.csf-field{padding:15px}.csf-field-fieldset .csf-field-subheading{font-size:13px}.csf-field-date input{margin:0}.csf-field-date .csf--to{margin-left:7px}.csf-datepicker-wrapper{margin-top:5px;width:auto;background-color:#fff;z-index:9999999!important;box-shadow:0 0 30px rgba(0,0,0,.15)}.csf-datepicker-wrapper *{float:none;margin:0;padding:0;font-family:inherit;font-weight:400;font-style:normal;text-decoration:none;border:0;border-radius:0;box-shadow:none}.csf-datepicker-wrapper .ui-datepicker-header,.csf-datepicker-wrapper .ui-widget-header{color:#fff;background:#00a0d2}.csf-datepicker-wrapper .ui-datepicker-header .ui-state-hover{cursor:pointer}.csf-datepicker-wrapper .ui-datepicker-title{font-size:14px;line-height:40px;text-align:center}.csf-datepicker-wrapper .ui-datepicker-next,.csf-datepicker-wrapper .ui-datepicker-prev{position:static;top:auto;left:auto;right:auto;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:12px;text-align:center;width:41px;height:40px;line-height:40px;color:#fff;background-color:rgba(255,255,255,.1);text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.csf-datepicker-wrapper .ui-datepicker-next span,.csf-datepicker-wrapper .ui-datepicker-prev span{display:none}.csf-datepicker-wrapper .ui-datepicker-prev{float:left}.csf-datepicker-wrapper .ui-datepicker-next{float:right}.csf-datepicker-wrapper .ui-datepicker-prev:before{content:'\f053'}.csf-datepicker-wrapper .ui-datepicker-next:before{content:'\f054'}.csf-datepicker-wrapper .ui-datepicker-next-hover,.csf-datepicker-wrapper .ui-datepicker-prev-hover{opacity:.75}.csf-datepicker-wrapper tbody .ui-datepicker-week-col{background-color:#f7f7f7}.csf-datepicker-wrapper .ui-datepicker-buttonpane{padding:10px;text-align:center;background-color:#f7f7f7}.csf-datepicker-wrapper .ui-datepicker-buttonpane button{cursor:pointer;margin:0 5px;padding:7px 14px;border:1px solid #eee;background-color:#fff}.csf-datepicker-wrapper select{margin:0 4px}.csf-datepicker-wrapper select option{color:#555}.csf-datepicker-wrapper table{font-size:13px;border-collapse:collapse;width:100%}.csf-datepicker-wrapper thead{color:#fff;background:#32373c}.csf-datepicker-wrapper th{text-align:center;padding:7px;border:1px solid #444}.csf-datepicker-wrapper td{text-align:center;border:1px solid #f4f4f4}.csf-datepicker-wrapper td.ui-datepicker-other-month{border:transparent}.csf-datepicker-wrapper td .ui-state-default{color:#555;width:auto;display:block;padding:6px 12px}.csf-datepicker-wrapper td .ui-state-active,.csf-datepicker-wrapper td .ui-state-hover{color:#fff;background-color:#0073aa}.csf-datepicker-wrapper td.ui-state-disabled .ui-state-default{opacity:.5}.csf-field-gallery ul{margin:0;padding:0;list-style-type:none}.csf-field-gallery ul li{display:inline-block;position:relative;padding:4px;margin:0 5px 10px 0;border:1px solid #ccc;background-color:#f9f9f9;border-radius:2px;box-shadow:0 1px 0 rgba(0,0,0,.08)}.csf-field-gallery ul li img{max-height:60px;display:inline-block;vertical-align:middle}.csf-field-gallery .button{margin-right:5px;margin-bottom:5px}.csf-field-group .csf-cloneable-hidden{display:none!important}.csf-field-group .csf-cloneable-wrapper{position:relative}.csf-field-group .csf-cloneable-item{display:none;position:relative;margin-bottom:5px}.csf-field-group .csf-cloneable-item h4{font-size:1em}.csf-field-group .ui-accordion .csf-cloneable-item{display:block}.csf-field-group .csf-cloneable-content{border:1px solid #ccd0d4;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-group .csf-cloneable-content>.csf-field{padding:15px}.csf-field-group .csf-cloneable-title{display:block;cursor:pointer;position:relative;user-select:none;margin:0;padding:15px 65px 15px 10px;min-height:0;font-size:100%;border:1px solid #ccd0d4;background-color:#fafafa;box-shadow:0 1px 1px rgba(0,0,0,.04);transition:border-color .15s}.csf-field-group .csf-cloneable-title:active,.csf-field-group .csf-cloneable-title:focus,.csf-field-group .csf-cloneable-title:hover{border-color:#999;outline:0}.csf-field-group .csf-cloneable-helper{position:absolute;top:12px;right:10px;z-index:1;font-size:14px;line-height:1em}.csf-field-group .csf-cloneable-helper i{display:inline-block;cursor:pointer;padding:5px;color:#999}.csf-field-group .csf-cloneable-helper i:hover{color:#555}.csf-field-group .csf-cloneable-content{padding:0;border-top:0}.csf-field-group .csf-cloneable-title-number,.csf-field-group .csf-cloneable-title-prefix{margin-right:5px}.csf-field-group .csf-cloneable-alert{display:none;margin-bottom:5px;padding:10px 20px;color:#a94442;border:1px solid #ebccd1;background-color:#f2dede}.csf-field-group .widget-placeholder{margin-bottom:10px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-group .csf-cloneable-header-icon{display:inline-block;text-align:center;font-size:14px;width:17px;text-indent:0;vertical-align:text-top}.csf-field-group .csf-cloneable-placeholder{background-color:#ddd;margin-top:4px;width:100px;height:10px;font-size:10px;line-height:10px;display:inline-block;vertical-align:top;border-radius:2px}.csf-field-icon .button{margin-right:5px}.csf-field-icon .csf-icon-select{display:flex}.csf-field-icon .csf-icon-preview:not(.hidden){display:flex}.csf-field-icon .csf-icon-preview i{display:flex;justify-content:center;align-items:center;width:30px;font-size:14px;margin-right:5px;text-align:center;vertical-align:top;color:#555;border:1px solid #ccc;background-color:#f7f7f7;border-radius:3px;box-shadow:0 1px 0 rgba(0,0,0,.08)}.csf-field-image_select .csf--image{display:inline-block;margin:0 5px 5px 0}.csf-field-image_select .csf--inline-list .csf--image{display:block}.csf-field-image_select figure{cursor:pointer;position:relative;display:inline-block;max-width:100%;margin:0;vertical-align:bottom;border:2px solid transparent;background-color:#fff;user-select:none;transition:all .2s}.csf-field-image_select figure:before{position:absolute;top:0;left:0;text-align:center;font-size:10px;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;content:"\f00c";width:16px;height:16px;line-height:14px;opacity:0;color:#fff;background-color:#222;transition:opacity .2s}.csf-field-image_select .csf--active figure{border-color:#222;box-shadow:0 0 20px rgba(0,0,0,.2)}.csf-field-image_select .csf--active figure:before{opacity:1}.csf-field-image_select img{max-width:100%;height:auto;vertical-align:top}.csf-field-image_select input{display:none}.csf-field-link_color .csf--left{float:left;margin-right:10px;margin-bottom:5px}.csf-field-link_color .csf--title{color:#777;margin-bottom:5px}.csf-field-map input{width:100%}.csf-field-map input[type=text].ui-autocomplete-loading{background-position-x:calc(100% - 5px)}.csf-field-map .csf--map-search+.csf--map-osm-wrap{margin-top:10px}.csf-field-map .csf--map-osm-wrap{position:relative;padding:5px;border:1px solid #eee;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-map .csf--map-osm{position:relative;z-index:1;min-height:250px}.csf-field-map .csf--map-inputs{margin-top:10px;display:flex;justify-content:space-between}.csf-field-map .csf--map-input{flex:1}.csf-field-map .csf--map-input:last-child{padding-left:10px}.csf-field-map label{display:block;color:#777;font-size:12px;margin:0 0 2px 0}.csf-map-ui-autocomplate{z-index:999999;border-radius:4px;overflow:hidden}.csf-field-media .csf--placeholder{display:flex;align-items:flex-start}.csf-field-media .csf--placeholder input{width:100%;margin:0}.csf-field-media .button{margin-left:5px}.csf-field-media .hidden+.button{margin-left:0}.csf-field-media .csf--preview{position:relative}.csf-field-palette .csf--palette{position:relative;display:inline-block;cursor:pointer;border:2px solid #ddd;margin-right:10px;margin-bottom:10px;user-select:none;-webkit-user-select:none;transition:all .2s}.csf-field-palette .csf--palette span{vertical-align:middle;display:inline-block;width:22px;height:60px;line-height:60px;overflow:hidden;text-indent:-999px}.csf-field-palette .csf--palette:before{position:absolute;top:0;left:0;text-align:center;font-size:10px;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;content:"\f00c";width:16px;height:16px;line-height:14px;opacity:0;color:#fff;background-color:#222;transition:opacity .2s}.csf-field-palette .csf--active{border-color:#222;box-shadow:0 0 20px rgba(0,0,0,.2)}.csf-field-palette .csf--active:before{opacity:1}.csf-field-palette input{display:none}.csf-field-repeater .csf-field-text input{width:100%}.csf-field-repeater .csf-repeater-hidden{display:none!important}.csf-field-repeater .csf-repeater-wrapper .csf-repeater-item{display:table;width:100%;margin-bottom:5px;border:1px solid #eee}.csf-field-repeater .csf-repeater-wrapper .csf-repeater-item h4{font-size:1em}.csf-field-repeater .csf-repeater-content{width:100%;display:table-cell;vertical-align:middle;background-color:#fff}.csf-field-repeater .csf-repeater-content>.csf-field{padding:15px}.csf-field-repeater .csf-repeater-helper{width:100%;display:table-cell;vertical-align:middle;text-align:center;font-size:14px;line-height:1em;border-left:1px solid #eee;background-color:#f7f7f7}.csf-field-repeater .csf-repeater-helper i{display:inline-block;cursor:pointer;color:#999;padding:5px}.csf-field-repeater .csf-repeater-helper i:hover{color:#555}.csf-field-repeater .csf-repeater-helper-inner{width:75px}.csf-field-repeater .csf-repeater-alert{display:none;margin-bottom:5px;padding:10px 20px;color:#a94442;border:1px solid #ebccd1;background-color:#f2dede}.csf-field-repeater .widget-placeholder{height:50px;margin-bottom:3px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-repeater .ui-sortable-helper{height:50px!important;overflow:hidden!important;border-color:#ccc!important;background-color:#eee!important;opacity:.5}.csf-field-repeater .ui-sortable-helper .csf-repeater-content,.csf-field-repeater .ui-sortable-helper .csf-repeater-helper{display:none}.csf-field-select .csf-fieldset{min-height:30px}.csf-field-select .csf-chosen{display:none}.csf-field-select select{max-width:100%;margin:0}.csf-field-select .csf-hide-select{display:none!important}.csf-field-slider .csf--wrap{display:flex;align-items:center}.csf-field-slider .csf--input{display:flex}.csf-field-slider .csf--unit{display:flex;justify-content:center;flex-direction:column;user-select:none;padding:0 6px;font-size:11px;line-height:1;border-radius:0 4px 4px 0;color:#555;border:1px solid #7e8993;border-left:0;background-color:#f5f5f5}.csf-field-slider .csf-slider-ui{margin-right:15px}.csf-field-slider input[type=number]{position:relative;z-index:1;margin:0;width:50px;text-align:center}.csf-field-slider .csf--is-unit{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.csf-field-slider .ui-slider{position:relative;width:100%;height:3px;border:none;background:#ddd;border-radius:2px}.csf-field-slider .ui-slider-range{height:3px;border:none;background:#333;border-radius:2px}.csf-field-slider .ui-slider-handle{position:absolute;width:16px;height:16px;top:-7px;margin-left:-8px;border:none;background:#333;border-radius:2px}.csf-field-slider .ui-slider-handle:hover,.csf-field-slider .ui-state-active{cursor:pointer;background:#111}.csf-field-sortable .csf-field-text input{width:100%;max-width:100%}.csf-field-sortable .csf-sortable .csf-sortable-item{display:table;width:100%;margin-bottom:5px;border:1px solid #eee}.csf-field-sortable .csf-sortable .csf-sortable-item h4{font-size:1em}.csf-field-sortable .csf-sortable-content{width:100%;display:table-cell;vertical-align:middle;background-color:#fff}.csf-field-sortable .csf-sortable-content>.csf-field{padding:15px}.csf-field-sortable .csf-sortable-helper{width:100%;display:table-cell;vertical-align:middle;text-align:center;font-size:14px;line-height:1em;border-left:1px solid #eee;background-color:#f7f7f7}.csf-field-sortable .csf-sortable-helper i{display:inline-block;cursor:pointer;width:50px;color:#555}.csf-field-sortable .csf-sortable-helper i:hover{opacity:.5}.csf-field-sortable .widget-placeholder{height:50px;margin-bottom:3px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-sortable .ui-sortable-helper{height:50px!important;overflow:hidden!important;border-color:#ccc!important;background-color:#eee!important;opacity:.5}.csf-field-sortable .ui-sortable-helper .csf-sortable-content,.csf-field-sortable .ui-sortable-helper .csf-sortable-helper{display:none}.csf-field-sorter .ui-sortable-placeholder{height:20px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-sorter .csf-modules{float:left;width:50%;box-sizing:border-box}.csf-field-sorter .csf-modules:first-child{padding-right:15px}.csf-field-sorter .csf-modules:last-child{padding-left:15px}.csf-field-sorter .csf-disabled,.csf-field-sorter .csf-enabled{padding:5px 15px;border:1px dashed #ddd;background-color:#fff}.csf-field-sorter .csf-disabled li{opacity:.5;transition:opacity .15s}.csf-field-sorter .csf-disabled .ui-sortable-helper{opacity:1}.csf-field-sorter .csf-sorter-title{font-size:13px;font-weight:600;padding:10px;text-align:center;border:1px dashed #ddd;border-bottom:none;background-color:#f8f8f8;text-transform:uppercase}.csf-field-sorter ul{list-style-type:none;margin:0;padding:0;min-height:62px}.csf-field-sorter ul li{margin:10px 0;padding:10px 15px;cursor:move;font-weight:700;text-align:center;border:1px solid #e5e5e5;background-color:#fafafa;transition:border-color .15s}.csf-field-sorter ul li:hover{border-color:#bbb}.csf-field-spinner .csf--spin{display:flex}.csf-field-spinner .ui-spinner{display:flex}.csf-field-spinner .ui-button{display:flex;flex-direction:column;justify-content:center;text-align:center;min-width:20px;padding:0 4px;color:#555;border:1px solid #7e8993;background-color:#f5f5f5}.csf-field-spinner .ui-spinner-button{cursor:pointer}.csf-field-spinner .ui-spinner-button:hover{background-color:#e7e7e7}.csf-field-spinner .ui-spinner-button:active{background-color:#ddd}.csf-field-spinner .ui-spinner-button:before{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:14px;line-height:14px}.csf-field-spinner .ui-spinner-down{order:1;border-right:0;border-radius:4px 0 0 4px}.csf-field-spinner .ui-spinner-down:before{content:"\f0d9"}.csf-field-spinner .ui-spinner-input{order:2}.csf-field-spinner .csf--unit{order:3;border-left:0;user-select:none}.csf-field-spinner .ui-spinner-up{order:4;border-left:0;border-radius:0 4px 4px 0}.csf-field-spinner .ui-spinner-up:before{content:"\f0da"}.csf-field-spinner input{position:relative;z-index:1;width:50px;text-align:center;margin:0;padding:0 8px;border-radius:0}.csf-field-spinner .ui-button-icon,.csf-field-spinner .ui-button-icon-space,.csf-field-spinner .ui-button-text{display:none}.csf-field-switcher .csf--switcher{float:left;cursor:pointer;position:relative;width:60px;height:26px;padding:0;margin:0;overflow:hidden;border-radius:4px;background-color:#ed6f6f;user-select:none;-webkit-user-select:none}.csf-field-switcher .csf--ball{position:absolute;top:4px;left:4px;width:24px;height:18px;background-color:#fff;border-radius:4px;transition:all .1s;box-shadow:1px 1px 1px rgba(0,0,0,.15)}.csf-field-switcher .csf--off,.csf-field-switcher .csf--on{position:absolute;top:0;left:0;right:0;font-size:11px;line-height:26px;font-weight:500;font-style:normal;text-align:center;text-transform:uppercase;color:#fff;padding-right:28px;opacity:0;transition:all .1s}.csf-field-switcher .csf--off{padding-right:0;padding-left:28px;opacity:1}.csf-field-switcher .csf--active{background:#4fb845}.csf-field-switcher .csf--active .csf--on{opacity:1}.csf-field-switcher .csf--active .csf--off{opacity:0}.csf-field-switcher .csf--active .csf--ball{left:100%;margin-left:-28px}.csf-field-switcher .csf--label{float:left;margin-top:4px;margin-left:8px;font-weight:400;color:#999}.csf-field-tabbed .csf-tabbed-content{border:1px solid #ccd0d4;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-tabbed .csf-tabbed-content>.csf-field{padding:15px}.csf-field-tabbed .csf-tabbed-nav .csf--icon{padding-right:5px}.csf-field-tabbed .csf-tabbed-nav a{display:inline-block;padding:12px 15px;margin-top:1px;margin-right:5px;margin-bottom:-1px;position:relative;text-decoration:none;color:#444;font-weight:600;border:1px solid #ccd0d4;background-color:#f3f3f3;transition:all .2s}.csf-field-tabbed .csf-tabbed-nav a:hover{background-color:#f9f9f9}.csf-field-tabbed .csf-tabbed-nav a.csf-tabbed-active{background-color:#fff;border-bottom-color:#fff}.csf-field-tabbed .csf-tabbed-nav a:focus{outline:0;box-shadow:none}.csf-field-text input{width:50%;max-width:100%;margin:0}.csf-field-textarea textarea{width:100%;max-width:100%;min-height:125px}.csf-field-textarea .csf-shortcode-button{margin-bottom:10px;margin-right:5px}.csf-field-typography select,.csf-field-typography textarea{margin:0;min-width:100%;max-width:100%}.csf-field-typography .csf--title{color:#777;margin:0 0 2px 0;font-size:12px}.csf-field-typography .csf--title small{vertical-align:top}.csf-field-typography .csf--blocks{display:flex;flex-wrap:wrap}.csf-field-typography .csf--block{flex:1;max-width:100%;padding-right:6px;padding-bottom:6px}.csf-field-typography .csf--input{margin:0;min-width:100%}.csf-field-typography .csf--input-wrap{position:relative}.csf-field-typography .csf--unit{position:absolute;z-index:1;right:4px;top:4px;bottom:4px;padding:2px 6px;color:#666;font-size:11px;line-height:1;border-radius:2px;background:#eee;user-select:none;display:flex;justify-content:center;flex-direction:column}.csf-field-typography .csf--preview{font-size:16px;line-height:20px;padding:20px;color:#222;border:1px solid #eee;background-color:#fff;border-radius:2.5px;user-select:none;-webkit-user-select:none;transition:background-color .2s,border-color .2s}.csf-field-typography .csf--block-preview{cursor:pointer;position:relative;overflow:hidden;margin-top:10px;max-width:100%}.csf-field-typography .csf--black-background{border-color:#000;background-color:#000}.csf-field-typography .csf--toggle{position:absolute;top:5px;right:10px;color:#999}.csf-field-typography .csf--block-extra-styles{margin-top:5px}.csf-field-upload input{width:100%;margin:0}.csf-field-upload .csf--wrap{display:flex;align-items:flex-start}.csf-field-upload .button{margin-left:5px}.csf-field-upload .csf--preview{position:relative}.csf-field-wp_editor .csf-wp-editor{float:left;width:100%}.csf-field-wp_editor .mce-toolbar-grp{border:none}.csf-field-wp_editor .mce-btn.mce-active button,.csf-field-wp_editor .mce-btn.mce-active i,.csf-field-wp_editor .mce-btn.mce-active:hover button,.csf-field-wp_editor .mce-btn.mce-active:hover i{color:#23282d}.csf-field-wp_editor .wp-media-buttons{position:relative;z-index:2}.csf-field-wp_editor .wp-editor-tabs{position:relative;z-index:1}.csf-field-wp_editor .csf-no-tinymce{border:1px solid #e5e5e5}.csf-field-wp_editor .csf-no-quicktags .wp-media-buttons{float:none;display:block}.csf-field-wp_editor .csf-no-quicktags .mce-tinymce{box-shadow:none;border:1px solid #e5e5e5}.csf-field-wp_editor textarea{width:100%;max-width:100%;margin:0;box-shadow:none}.csf-field-heading{font-size:1.5em;font-weight:700;color:#23282d;background-color:#f5f5f5}.csf-field-subheading{font-size:14px;font-weight:700;padding-top:17px;padding-bottom:17px;color:#23282d;background-color:#f7f7f7}.csf-field-submessage{padding:0!important;border:0!important}.csf-field-submessage+.csf-field{border-top:0!important}.csf-submessage{font-size:12px;padding:17px 30px;border-top:1px solid transparent;border-bottom:1px solid transparent}.csf-submessage-success{color:#3c763d;border-color:#d6e9c6;background-color:#dff0d8}.csf-submessage-info{color:#31708f;border-color:#bce8f1;background-color:#d9edf7}.csf-submessage-warning{color:#8a6d3b;border-color:#faebcc;background-color:#fcf8e3}.csf-submessage-danger{color:#a94442;border-color:#ebccd1;background-color:#f2dede}.csf-submessage-normal{color:#23282d;border-color:#eee;background-color:#f7f7f7}.csf-field-notice{background-color:#f7f7f7}.csf-notice{padding:12px;background-color:#fff;border-left-style:solid;border-left-width:4px;box-shadow:0 1px 1px rgba(0,0,0,.1)}.csf-notice-success{border-color:#46b450}.csf-notice-info{border-color:#339fd4}.csf-notice-warning{border-color:#ffbc00}.csf-notice-danger{border-color:#dc3232}.csf-notice-normal{border-color:#222}.csf-field-number input{width:100%;margin:0}.csf-field-number .csf--wrap{position:relative;float:left;width:100px}.csf-field-number .csf--unit{position:absolute;z-index:1;right:4px;top:4px;bottom:4px;padding:2px 6px;color:#666;font-size:11px;line-height:1;border-radius:2px;background:#eee;user-select:none;display:flex;justify-content:center;flex-direction:column}.csf-field-link .csf--result{display:inline-block;font-size:12px;line-height:16px;padding:7px 10px;margin-bottom:7px;color:#777;border:1px solid #e5e5e5;background-color:#f5f5f5;border-radius:2px;world-break:break-word}.csf-field-link .csf--wrap{position:relative;float:left;width:100px}.csf-field-link .csf--unit{position:absolute;z-index:1;right:4px;top:4px;bottom:4px;padding:2px 6px;color:#666;font-size:11px;line-height:1;border-radius:2px;background:#eee;user-select:none;display:flex;justify-content:center;flex-direction:column}.csf-help{cursor:help;position:absolute;top:0;right:0;padding:5px;font-size:13px;color:#aaa}.csf-help .csf-help-text{display:none}.csf--preview{max-width:100%}.csf-image-preview{display:inline-flex;align-items:center;justify-content:center;flex-direction:column;position:relative;padding:6px;max-width:120px;max-height:120px;min-width:40px;min-height:40px;margin-bottom:10px;text-align:center;border-radius:2px;border:1px solid #ccc;background-color:#f9f9f9;box-shadow:0 1px 0 rgba(0,0,0,.08)}.csf-image-preview i{cursor:pointer;position:absolute;z-index:1;right:4px;top:4px;font-size:14px;width:22px;height:22px;line-height:22px;text-align:center;text-decoration:none;color:#fff;background-color:#d33;opacity:.75;border-radius:2px;transition:all .2s}.csf-image-preview i:hover{opacity:1}.csf-image-preview i:focus{box-shadow:none}.csf-image-preview span{position:relative;overflow:hidden;display:flex;height:100%;width:100%}.csf-image-preview img{max-width:100%;height:auto;object-fit:contain}.csf-field-custom .csf-field{padding:0}.csf-field .chosen-container-single .chosen-single{height:28px;line-height:26px}.csf-field .chosen-container-single .chosen-single abbr{top:0;right:20px;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:12px;height:100%;width:18px;color:#aaa;text-align:center;background:0 0}.csf-field .chosen-container-single .chosen-single abbr:before{content:"\f00d"}.csf-field .chosen-container-single .chosen-single abbr:hover{color:#555}.csf-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:12px;height:100%;width:18px;color:#aaa;text-align:center;background:0 0}.csf-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before{content:"\f00d";display:inline-block;padding-top:3px}.csf-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{color:#555}.csf-field .chosen-container-single .chosen-single div b{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:14px;color:#aaa;background:0 0}.csf-field .chosen-container-single .chosen-single div b:before{content:"\f107"}.csf-field .chosen-container-single .chosen-single div b:hover{color:#555}.csf-field .chosen-container-multi .chosen-choices li.search-choice-placeholder{border:1px dashed #aaa;margin:3px 5px 3px 0}.csf-field .chosen-container-multi .ui-sortable li.search-choice span{cursor:move}.csf-field .chosen-container-active.chosen-with-drop .chosen-single div b:before{content:"\f106"}.csf-field .chosen-container-single .chosen-single-with-deselect span{margin-right:40px}.csf-field .chosen-container-single .chosen-search input[type=text]{background:0 0}.csf-field .chosen-container-single .chosen-search:before{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:11px;content:"\f002";position:absolute;right:12px;top:10px;color:#aaa}.csf-field .wp-picker-container{display:inline-block}.csf-field .wp-picker-container .wp-color-result.button{margin-bottom:0}.csf-field .csf--transparent-wrap{display:none;position:relative;top:-1px;width:235px;padding:9px 10px;border:1px solid #dfdfdf;border-top:none;background-color:#fff}.csf-field .wp-picker-active .csf--transparent-wrap{display:block}.csf-field .csf--transparent-slider{position:absolute;width:190px;margin-left:2px;height:18px}.csf-field .csf--transparent-slider .ui-slider-handle{position:absolute;top:-3px;bottom:-3px;z-index:5;border-color:#aaa;border-style:solid;border-width:4px 3px;width:10px;height:16px;margin:0 -5px;background:0 0;cursor:ew-resize;opacity:.9;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.2)}.csf-field .csf--transparent-slider .ui-slider-handle:before{content:" ";position:absolute;left:-2px;right:-2px;top:-3px;bottom:-3px;border:2px solid #fff;border-radius:3px}.csf-field .csf--transparent-offset{height:18px;width:200px;background:url(../images/checkerboard.png) repeat-y center left scroll #fff;border-radius:2px;box-shadow:inset 0 0 5px rgba(0,0,0,.4)}.csf-field .csf--transparent-text{position:absolute;top:12px;right:10px;width:30px;font-size:12px;line-height:12px;text-align:center;color:#999}.csf-field .csf--transparent-button{cursor:pointer;user-select:none;margin-top:10px;font-size:11px;text-align:center;border-radius:2px;padding:3px 7px;box-shadow:0 1px 0 rgba(0,0,0,.1);letter-spacing:.2px;color:#777;border:1px solid #ccc;background-color:#f7f7f7;transition:background-color .2s,border-color .2s,color .2s}.csf-field .csf--transparent-active .wp-color-result{background-image:url(../images/checkerboard.png);background-size:135px;background-position:center left;background-color:transparent!important}.csf-field .csf--transparent-active .csf--transparent-button{color:#fff;border-color:#3ea032;background-color:#4fb845}.csf-field .csf--transparent-active .fa:before{content:"\f205"}.csf-widgets>.csf-field{position:relative;top:-1px;margin-left:-15px;margin-right:-15px;padding:12px 15px}.csf-widgets>.csf-field .csf-title{float:none;width:100%;margin-bottom:5px}.csf-widgets>.csf-field .csf-fieldset{float:none;width:100%}.csf-widgets .csf-field-text input{width:100%}.csf-widgets .csf-field-notice .csf-notice{padding:15px}.control-section .csf-widgets>.csf-field{margin-left:-10px;margin-right:-10px;padding:10px 12px}.wp-block .csf-widgets{font-size:13px}.wp-block .csf-widgets>.csf-field{margin-left:-10px;margin-right:-10px}.wp-block .csf-widgets>.csf-field .button-primary{color:#fff}.wp-block .csf-widgets>.csf-field>.csf-title>h4{font-size:13px}.control-section .csf-field{padding:0}.control-section .csf-field .csf-title{float:none;width:100%;margin-bottom:6px}.control-section .csf-field .csf-title h4{display:block;font-size:13px;line-height:1;font-weight:600;color:inherit}.control-section .csf-field .csf-fieldset{float:none;width:100%}.control-section .csf-help{top:-5px;right:-5px}.control-section .csf-field-select select{width:100%}.control-section .csf-field-heading{color:inherit;font-size:14px;line-height:1em;margin-right:-15px;margin-left:-15px;padding:15px}.control-section .csf-field-subheading{color:inherit;font-size:11px;margin-right:-15px;margin-left:-15px;padding:10px 15px}.control-section .csf-subtitle-text{margin-top:4px;font-size:12px}.control-section .csf-field-submessage .csf-submessage{margin-right:-15px;margin-left:-15px;padding:15px}.control-section .csf-fieldset .csf-field-heading,.control-section .csf-fieldset .csf-field-subheading,.control-section .csf-fieldset .csf-field-submessage .csf-submessage{margin-left:0;margin-right:0}.control-section .csf-field-date .csf--to{margin-left:0}.control-section .csf-field-sorter ul li{padding:5px}.control-section .csf-field-sorter .csf-modules{float:none;width:100%}.control-section .csf-field-sorter .csf-modules:first-child{padding-right:0;padding-bottom:15px}.control-section .csf-field-background .csf--background-attributes{flex-direction:column}.control-section .csf-field-spacing input{width:90px}.control-section .csf-field-border .csf--input{flex:1 50%}.control-section .csf-field-border input,.control-section .csf-field-border select{width:100%}.control-section .csf-field-spinner input{width:50px}.control-section .csf-field-number .csf--wrap{width:100%}.control-section .csf-field-backup .csf-export-data{display:none}.control-section .csf-field-fieldset .csf-fieldset-content{border-color:#e5e5e5}.control-section .csf-accordion-content>.csf-field,.control-section .csf-cloneable-content>.csf-field,.control-section .csf-fieldset-content>.csf-field,.control-section .csf-repeater-content>.csf-field,.control-section .csf-sortable-content>.csf-field,.control-section .csf-tabbed-content>.csf-field{padding:10px}.control-section .csf-accordion-content>.csf-field .csf-title,.control-section .csf-cloneable-content>.csf-field .csf-title,.control-section .csf-fieldset-content>.csf-field .csf-title,.control-section .csf-repeater-content>.csf-field .csf-title,.control-section .csf-sortable-content>.csf-field .csf-title,.control-section .csf-tabbed-content>.csf-field .csf-title{margin-bottom:5px}.control-section .csf-accordion-content>.csf-field h4,.control-section .csf-cloneable-content>.csf-field h4,.control-section .csf-fieldset-content>.csf-field h4,.control-section .csf-repeater-content>.csf-field h4,.control-section .csf-sortable-content>.csf-field h4,.control-section .csf-tabbed-content>.csf-field h4{font-size:12px}.control-section .csf-depend-hidden.csf-depend-on{display:none!important}.control-section .csf-depend-visible.csf-depend-on{border-top:0!important}.csf-taxonomy{max-width:95%}.csf-taxonomy>.csf-field{border-top:none!important}.csf-taxonomy>.csf-field-heading{font-size:1.1em;padding:20px!important;border:1px solid #ddd}.csf-taxonomy>.csf-field-subheading{font-size:12px;padding:15px!important;border:1px solid #ddd}.csf-taxonomy>.csf-field-submessage .csf-submessage{padding:15px;border-left-width:1px;border-left-style:solid;border-right-width:1px;border-right-style:solid}.csf-taxonomy>.csf-field-notice{background-color:transparent}.csf-taxonomy .csf-section-title{display:block;padding:15px;background-color:#f9f9f9;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-taxonomy-add-fields>.csf-field{padding:8px 0}.csf-taxonomy-add-fields>.csf-field>.csf-title{float:none;width:100%;padding:2px 2px 4px 0}.csf-taxonomy-add-fields>.csf-field>.csf-title h4{font-size:12px;font-weight:400}.csf-taxonomy-add-fields>.csf-field>.csf-fieldset{float:none;width:100%}.csf-taxonomy-add-fields>.csf-field>.csf-fieldset>.csf-help{right:-5px}.csf-taxonomy-add-fields+p.submit{margin-top:0}.csf-taxonomy-edit-fields>.csf-field{padding:20px 0}.csf-taxonomy-edit-fields>.csf-field>.csf-title{width:200px}.csf-taxonomy-edit-fields>.csf-field>.csf-title h4{font-size:14px;font-weight:600;line-height:1.3;display:inline-block;vertical-align:middle}.csf-taxonomy-edit-fields>.csf-field>.csf-fieldset{width:calc(100% - 220px)}.csf-taxonomy-edit-fields>.csf-field>.csf-fieldset>.csf-help{top:-5px;right:-5px}.csf-taxonomy-edit-fields>.csf-field-submessage{margin:20px 0}.csf-taxonomy-edit-fields>.csf-field-heading,.csf-taxonomy-edit-fields>.csf-field-subheading{margin:20px 0;border:1px solid #ddd}.csf-nav-menu-options{clear:both;float:left;width:100%}.csf-nav-menu-options>.csf-fields{margin-left:-10px;margin-top:10px;margin-bottom:10px;border-top:1px solid #eee;border-bottom:1px solid #eee}.csf-nav-menu-options>.csf-fields>.csf-field{padding:12px 14px 12px 12px}.csf-nav-menu-options>.csf-fields>.csf-field .csf-title{float:none;width:100%;margin-bottom:5px}.csf-nav-menu-options>.csf-fields>.csf-field .csf-fieldset{float:none;width:100%}.csf-nav-menu-options .csf-field-text input{width:100%}.csf-nav-menu-options .csf-field-notice .csf-notice{padding:15px}.csf-nav-menu-title{padding:12px 14px 12px 12px;background-color:#f5f5f5;border-top:1px solid #eee;border-bottom:1px solid #eee}.csf-nav-menu-title:first-child{border-top:0}.csf-nav-menu-title h4{margin:0;padding:0;color:#23282d}.csf-nav-menu-icon{margin-right:5px}.csf-profile-options>h2>.fa{padding-right:7px}.csf-profile-options>.csf-field{max-width:750px;padding:15px 0;border-top:none!important}.csf-profile-options>.csf-field>.csf-title{width:200px}.csf-profile-options>.csf-field>.csf-title h4{font-size:14px;font-weight:600;line-height:1.3;display:inline-block;vertical-align:middle}.csf-profile-options>.csf-field>.csf-fieldset{width:calc(100% - 220px)}.csf-profile-options>.csf-field>.csf-fieldset>.csf-help{top:-15px;right:-5px}.csf-profile-options>.csf-field-heading{font-size:1.1em}.csf-profile-options>.csf-field-subheading{font-size:12px}.csf-profile-options>.csf-field-heading,.csf-profile-options>.csf-field-subheading{margin:10px 0;padding:15px!important;border:1px solid #ddd}.csf-profile-options>.csf-field-submessage{margin:20px 0}.csf-profile-options>.csf-field-submessage .csf-submessage{padding:10px;border-left-width:1px;border-left-style:solid;border-right-width:1px;border-right-style:solid}.csf-profile-options>.csf-field-notice{background-color:transparent}.csf-modal{position:fixed;z-index:100101;top:0;left:0;width:100%;height:100%}.csf-modal.hidden{display:none}.csf-modal-icon{z-index:100102}.csf-modal-table{display:table;width:100%;height:100%}.csf-modal-table-cell{display:table-cell;vertical-align:middle;margin:100px 0}.csf-modal-inner{position:relative;z-index:10;width:760px;height:750px;margin:0 auto;background-color:#fff}.csf-modal-content{position:relative;overflow:hidden;overflow-y:auto;height:595px}.csf-modal-content .csf-shortcode-button{display:none}.csf-modal-content .csf-field{padding:15px 30px 15px 15px}.csf-modal-content a:active,.csf-modal-content a:focus{outline:0;box-shadow:none}.csf-modal-content h4{font-size:13px}.csf-modal-content h4 small{font-style:italic;font-weight:400;color:#aaa}.csf-modal-title{position:relative;background-color:#fcfcfc;border-bottom:1px solid #ddd;height:36px;font-size:16px;font-weight:600;line-height:36px;margin:0;padding:0 36px 0 16px}.csf-modal-header{width:100%;padding:14px 0;background-color:#f5f5f5;border-bottom:1px solid #ddd}.csf-modal-header select{display:block;width:250px;margin:0 auto;font-size:13px;line-height:1;height:30px;min-height:30px;background-color:#fff}.csf-modal-close{color:#666;padding:0;position:absolute;top:0;right:0;width:36px;height:36px;text-align:center;background:0 0;border:none;cursor:pointer}.csf-modal-close:before{font:normal 20px/36px dashicons;content:"\f158";vertical-align:top;width:36px;height:36px}.csf-modal-close:hover{opacity:.5}.csf-modal-insert-wrapper{text-align:center;width:100%;padding:15px 0;background-color:#f5f5f5;border-top:1px solid #ddd}.csf-modal-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:.5}.csf--repeatable{padding:15px 15px 0 15px}.csf--repeat-button-block{text-align:center;padding-bottom:15px}.csf--repeat-shortcode{position:relative;margin-bottom:15px;border:1px dashed #ddd}.csf--repeat-shortcode:first-child .csf-repeat-remove{display:none}.csf--repeat-shortcode .csf-repeat-remove{position:absolute;right:10px;top:10px;z-index:10;cursor:pointer;display:inline-block;font-size:11px;width:18px;height:18px;line-height:18px;text-align:center;border-radius:2px;color:#fff;background-color:#e14d43;opacity:.5}.csf--repeat-shortcode .csf-repeat-remove:hover{opacity:.5}.csf-shortcode-single .csf-modal-inner{height:750px}.csf-shortcode-single .csf-modal-content{height:652px}.elementor-editor-active .csf-shortcode-button{margin-left:5px}.elementor-editor-active .csf-modal .hidden{display:none!important}.csf-shortcode-block{text-align:center;padding:14px;font-size:13px;background-color:#f5f5f5;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.csf-shortcode-block .components-button{margin-bottom:10px}.csf-modal-icon .csf-icon-title{padding:15px 0;margin:4px;font-size:14px;font-weight:700;text-align:center;border:1px solid #eee;background-color:#f7f7f7}.csf-modal-icon .csf-modal-header{text-align:center}.csf-modal-icon .csf-icon-search{width:50%;height:40px;line-height:40px}.csf-modal-icon i{cursor:pointer;display:inline-block;margin:4px;width:35px;height:35px;line-height:35px;font-size:16px;color:#555;text-align:center;border:1px solid #ccc;background-color:#f7f7f7;border-radius:2px;box-shadow:1px 1px 0 rgba(0,0,0,.05)}.csf-modal-icon i:hover{color:#fff;border-color:#222;background-color:#222}.csf-modal-icon .csf-modal-content{padding:10px;height:618px}.csf-modal-icon .csf-error-text{padding:10px}.csf-modal-loading{display:none;position:absolute;left:15px;top:15px}.csf-loading{position:relative;width:20px;height:20px;background:#ccc;border-radius:20px;box-shadow:0 2px 5px rgba(0,0,0,.07)}.csf-loading:after{position:absolute;top:50%;left:50%;width:4px;height:4px;content:"";margin-top:-2px;margin-left:-2px;background-color:#fff;animation-duration:.5s;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:csfLoader;border-radius:4px}@keyframes csfLoader{0%{transform:rotate(0) translateX(-6px) rotate(0)}100%{transform:rotate(360deg) translateX(-6px) rotate(-360deg)}}.csf-subtitle-text{margin-top:6px;font-weight:400;color:#999}.csf-desc-text{clear:both;float:left;width:100%;margin-top:6px;font-weight:400;color:#999}.csf-error-text{margin-top:6px;color:#d02c21}.csf-before-text{margin-bottom:6px}.csf-after-text{margin-top:6px}.csf-metabox-hide{display:none!important}.csf-metabox-show{display:block!important}.csf-depend-hidden.csf-depend-on{display:none}.csf-depend-visible.csf-depend-on{display:block;opacity:.75;filter:grayscale(1);user-select:none;border-top:1px solid #eee}.csf-depend-visible.csf-depend-on .clear:before{content:"";left:0;top:0;right:0;bottom:0;position:absolute;background-color:#eee;opacity:.25;z-index:10}.csf-warning-primary{color:#fff!important;border-color:#dc3545!important;background:#dc3545!important}.csf-warning-primary:focus,.csf-warning-primary:hover{border-color:#bd2130!important;background:#bd2130!important}.csf-warning-primary:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px #bd2130!important}.csf-warning-primary:active{border-color:#bd2130!important;background:#bd2130!important}.csf-form-result{display:none;float:left;padding:0 8px;margin-right:4px;font-size:11px;line-height:30px;user-select:none;border-radius:2px}.csf-form-show{display:block}.csf-form-success{color:#fff;background-color:#46b450}.csf-form-warning{color:#8a6d3b;background-color:#faebcc}.csf-label-error{position:relative;top:-2px;display:inline-block;font-size:10px;line-height:10px;height:10px;width:10px;padding:1px;font-style:normal;text-align:center;color:#fff;vertical-align:middle;background-color:#e10000;border-radius:2px}.csf-no-option{padding:30px}.csf-input-number{-moz-appearance:textfield}.csf-input-number::-webkit-inner-spin-button,.csf-input-number::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.csf-fa5-shims .csf .fab,.csf-fa5-shims .csf .far,.csf-fa5-shims .csf .fas{font-family:FontAwesome;font-style:normal}.csf-welcome-wrap{position:relative;margin:25px 40px 0 20px;font-size:15px;max-width:1200px}.csf-welcome-wrap p{font-size:14px;line-height:1.5}.csf-welcome-wrap h1{margin:.2em 200px 0 0;padding:0;color:#32373c;line-height:1.2em;font-size:2.8em;font-weight:400}.csf-welcome-wrap .csf-logo{position:absolute;overflow:hidden;top:0;right:0;height:160px;width:140px;background-image:linear-gradient(45deg,#2d67cb,#ad19f3);box-shadow:0 1px 4px rgba(0,0,0,.25),inset 0 0 0 4px rgba(0,0,0,.25)}.csf-welcome-wrap .csf-logo .csf--effects i{position:absolute;width:200px;height:100px;background-color:rgba(0,0,0,.15);transform:rotate(-45deg)}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(1){bottom:-20px;right:-70px}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(2){bottom:-35px;right:-80px}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(3){bottom:-50px;right:-90px}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(4){bottom:-65px;right:-100px}.csf-welcome-wrap .csf-logo .csf--wp-logos{position:relative;padding-top:25px;text-align:center}.csf-welcome-wrap .csf-logo .csf--wp-logo{position:absolute;left:20px;width:20px;height:20px;background-repeat:no-repeat;background-position:center center;background-image:url(../images/wp-logo.svg)}.csf-welcome-wrap .csf-logo .csf--wp-plugin-logo{display:inline-block;width:50px;height:50px;border:3px solid #fff;background-size:40px;background-repeat:no-repeat;background-position:center center;background-image:url(../images/wp-plugin-logo.svg);border-radius:100%;vertical-align:middle}.csf-welcome-wrap .csf-logo .csf--text{position:absolute;left:0;right:0;top:90px;color:#fff;font-size:13px;line-height:1.2em;font-weight:600;text-align:center;text-transform:uppercase;text-shadow:1px 1px 0 rgba(0,0,0,.25)}.csf-welcome-wrap .csf-logo .csf--version{top:auto;left:auto;right:8px;bottom:4px;font-size:11px;text-transform:lowercase}.csf-welcome-wrap .csf-about-text{font-weight:400;line-height:1.6em;font-size:19px;margin:1em 200px 1em 0;color:#555d66}.csf-welcome-wrap .csf-demo-button{margin:1em 200px 2em 0}.csf-welcome-wrap .nav-tab-wrapper{margin-bottom:20px}.csf-welcome-wrap ul{list-style-type:disc;padding-left:15px}.csf-welcome-wrap .csf--col{float:left;padding-right:20px;box-sizing:border-box}.csf-welcome-wrap .csf--col-2{width:50%}.csf-welcome-wrap .csf--col-3{width:33.333%}.csf-welcome-wrap .csf--col-4{width:25%}.csf-welcome-wrap .csf--col-5{width:20%}.csf-welcome-wrap .csf--col-last{padding-right:0}.csf-welcome-wrap .csf--col-upgrade{padding:10px 0;text-align:center;border-top:1px solid #e5e5e5}.csf--table-compare tfoot td,.csf--table-compare thead td{text-align:center}.csf--table-compare td{font-size:14px;text-align:center;vertical-align:middle;padding:10px}.csf--table-compare td:first-child{text-align:left}.csf--table-compare tfoot td{padding:15px 0}.csf--table-compare .fa{font-size:18px}.csf--table-compare .fa-check-circle{color:#46b450}.csf--table-compare .fa-times-circle{color:#dc3232}.csf-welcome-cols{clear:both;margin:20px 0;background-color:#fff;padding:0 0;border-radius:2px;border:1px solid #e5e5e5}.csf-welcome-cols .csf--col{width:33.333%;float:left;padding:20px;text-align:center;box-sizing:border-box;min-height:200px;border-right:1px solid #e5e5e5}.csf-welcome-cols .csf--block,.csf-welcome-cols .csf--left{float:left;width:20%;padding:0 30px;text-align:center;box-sizing:border-box}.csf-welcome-cols .csf--block{width:80%}.csf-welcome-cols .csf--col-first{border-bottom:1px solid #e5e5e5}.csf-welcome-cols .csf--last{border-right:none}.csf-welcome-cols .csf--space{height:20px}.csf-welcome-cols .csf--icon{display:inline-block;font-size:20px;width:30px;height:30px;line-height:30px;text-align:center;margin-bottom:10px;color:#fff;background-color:#555;border-radius:30px}.csf-welcome-cols .csf--active{background-color:#5cb85c}.csf-welcome-cols .csf--deactive{background-color:#e14d43}.csf-welcome-cols .csf--title{font-weight:700;display:block}.csf-welcome-cols p:last-child{margin-bottom:0}.csf-features-cols .csf--key-features{width:30%}.csf-features-cols .csf--available-fields{width:70%}.csf-code-block{margin:20px 0;padding:5px 20px;background-color:#fff;border-radius:2px;box-shadow:0 1px 1px rgba(0,0,0,.15)}.csf-code-block pre{font-size:13px;color:#0073aa}.csf-code-block pre span{color:#999}.csf--table-fields td{font-size:14px}.csf--upgrade a{color:#5cb85c;font-weight:700}.csf--upgrade a:focus,.csf--upgrade a:hover{color:#4aa14a;outline:0;box-shadow:none}@media only screen and (max-width:782px){.csf-welcome-cols .csf--col{width:100%;min-height:auto;border-right:none;border-bottom:1px solid #e5e5e5}.csf-features-cols .csf--key-features{width:100%}.csf-features-cols .csf--available-fields{width:100%}}@media only screen and (max-width:1200px){.csf-metabox .csf-field .csf-title{float:none;width:100%;margin-bottom:10px}.csf-metabox .csf-field .csf-fieldset{float:none;width:100%}}@media only screen and (max-width:782px){.csf-header-inner{text-align:center}.csf-header-inner h1{width:100%;margin-bottom:10px}.csf-form-result{float:none;margin-right:0;margin-bottom:10px}.csf-header-left,.csf-header-right,.csf-search{width:100%}.csf-search{text-align:center;margin-bottom:15px}.csf-footer{text-align:center}.csf-buttons{float:none}.csf-copyright{float:none;margin-top:10px}.csf-expand-all,.csf-nav,.csf-nav-background,.csf-reset-section{display:none!important}.csf-nav-normal+.csf-content{margin-left:0}.csf-section,.csf-section-title{display:block!important}.csf-field .csf-title{float:none;width:100%;margin-bottom:10px}.csf-field .csf-fieldset{float:none;width:100%}.csf-field-color .button.wp-picker-clear{padding:0 8px;line-height:2.14285714;min-height:32px}.csf-modal-inner{width:350px;height:400px}.csf-modal-content{height:237px}.csf-icon-dialog .csf-modal-inner{width:305px;height:380px}.csf-icon-dialog .csf-modal-content{height:267px}.csf-modal-icon .csf-modal-inner{width:330px;height:385px}.csf-modal-icon .csf-modal-content{height:252px}.csf-profile-options>.csf-field>.csf-title,.csf-taxonomy-edit-fields>.csf-field>.csf-title{float:none;width:100%;margin-bottom:10px}.csf-profile-options>.csf-field>.csf-fieldset,.csf-taxonomy-edit-fields>.csf-field>.csf-fieldset{float:none;width:100%}.csf-nav-menu-options>.csf-fields{margin-left:-10px;margin-right:-10px}.csf-nav-menu-options>.csf-fields>.csf-field{padding:10px}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;user-select:none}.chosen-container *{box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;z-index:1010;width:100%;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15);clip:rect(0,0,0,0);clip-path:inset(100% 100%)}.chosen-container.chosen-with-drop .chosen-drop{clip:auto;clip-path:none}.chosen-container a{cursor:pointer}.chosen-container .chosen-single .group-name,.chosen-container .search-choice .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .chosen-single .group-name:after,.chosen-container .search-choice .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:24px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip:rect(0,0,0,0);clip-path:inset(100% 100%)}.chosen-container .chosen-results{color:#444;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border:1px solid #aaa;background-color:#fff;background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:0;outline:0;border:0!important;background:0 0!important;box-shadow:none;color:#999;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width:25px;height:25px;min-height:25px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 6px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:0;right:0;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:0 0}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;direction:rtl}
1
+ .csf{position:relative}.csf label{padding:0;margin:0;display:inline-block}.csf-ab-icon{top:2px}#screen-meta-links+.csf-options{margin-top:40px}.csf-options{margin-top:20px;margin-right:20px}.csf-header{position:relative}.csf-header-inner{padding:25px;transition:box-shadow .3s ease}.csf-header-inner h1{float:left;font-size:1.5em;line-height:26px;font-weight:400;margin:0}.csf-header-inner h1 small{font-size:11px;font-weight:500}.csf-sticky .csf-header-inner{position:fixed;z-index:99;top:32px;box-shadow:0 5px 10px rgba(0,0,0,.1)}.csf-buttons{float:right}.csf-buttons .button{margin:0 2px;line-height:26px}.csf-buttons .button:focus{outline:0!important;box-shadow:none!important}.csf-buttons .csf-save{min-width:72px}.csf-header-left{float:left}.csf-header-right{float:right}.csf-nav{display:block;position:relative;z-index:10;float:left}.csf-nav ul{clear:left;margin:0;list-style-type:none}.csf-nav ul li{margin-bottom:0}.csf-nav ul li a{font-size:13px;position:relative;display:block;padding:14px 12px;text-decoration:none;transition-property:color,background;transition-duration:.2s;transition-timing-function:ease}.csf-nav ul li a:focus{outline:0;box-shadow:none}.csf-nav ul li .csf-arrow:after{content:"\f054";display:inline-block;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:9px;line-height:1;position:absolute;right:10px;top:50%;margin-top:-4px}.csf-nav ul li.csf-tab-expanded .csf-arrow:after{transform:rotate(90deg)}.csf-nav ul li.csf-tab-expanded ul{display:block}.csf-nav ul ul{display:none;position:relative}.csf-nav ul ul li a{font-size:12px;padding:12px 14px 12px 24px}.csf-nav .csf-tab-icon{width:20px;margin-right:5px;font-size:13px;text-align:center}.csf-nav .csf-label-error{margin-left:4px;vertical-align:top}.csf-nav-normal{width:225px}.csf-nav-normal+.csf-content{margin-left:225px}.csf-nav-inline{width:100%}.csf-nav-inline ul li{display:inline-block;vertical-align:top}.csf-nav-background{position:absolute;top:0;left:0;bottom:0;z-index:9;width:225px}.csf-wrapper{position:relative}.csf-content{position:relative;background-color:#fff}.csf-sections{float:left;width:100%}.csf-section-title{display:none;padding:20px 30px;background-color:#f5f5f5;border-top:1px solid #eee;border-bottom:1px solid #eee}.csf-section-title h3{margin:0;padding:0;font-size:13px;font-weight:700;text-transform:uppercase}.csf-section-title .csf-section-icon{margin-right:5px}.csf-footer{padding:20px;font-size:11px}.csf-copyright{float:left;margin-top:5px}.csf-search-all .csf-nav,.csf-search-all .csf-nav-background,.csf-show-all .csf-nav,.csf-show-all .csf-nav-background{display:none}.csf-search-all .csf-content,.csf-show-all .csf-content{margin-left:0}.csf-search-all .csf-section,.csf-search-all .csf-section-title,.csf-show-all .csf-section,.csf-show-all .csf-section-title{display:block!important}.csf-search-all .csf-section-title{display:none!important}.csf-expand-all{float:left;padding:0 8px;margin-right:4px;z-index:1;font-size:13px;line-height:30px;cursor:pointer;user-select:none;border-radius:2px;transition:all .2s}.csf-expand-all span{font-size:11px;vertical-align:middle}.csf-search{float:left}.csf-search input{margin:0 2px 0 0;border:none;font-size:12px;line-height:30px;min-height:30px;text-align:inherit;padding:0 10px;border-radius:2px;box-shadow:none}.csf-search input:focus{box-shadow:none}.csf-saving .csf-buttons,.csf-saving .csf-content{cursor:default;pointer-events:none;opacity:.5}.csf-metabox{margin:-6px -12px -12px -12px}.csf-metabox .csf-field{padding:20px}.csf-metabox .csf-section-title{padding:20px}.block-editor-page .csf-metabox{margin:-6px -14px -14px -14px}.block-editor-editor-skeleton__content .csf-metabox{border-left:1px solid #e2e4e7;border-right:1px solid #e2e4e7}.csf-sections-reset{float:left;width:100%;text-align:right;border-top:1px solid #eee}.csf-sections-reset .csf-button-cancel,.csf-sections-reset input{display:none}.csf-sections-reset label{padding:10px}.csf-sections-reset span{-webkit-user-select:none;user-select:none}.csf-sections-reset input:checked~.csf-button-reset{display:none}.csf-sections-reset input:checked~.csf-button-cancel{display:inline-block}#side-sortables .csf-section-title{padding:12px}#side-sortables .csf-field{padding:10px 15px}#side-sortables .csf-field .csf-title{float:none;width:100%;margin-bottom:6px}#side-sortables .csf-field .csf-fieldset{float:none;width:100%}#side-sortables .csf-field-text input{width:100%}#side-sortables .csf-notice{padding:10px 15px}.csf-comment-metabox{margin:-6px -12px -12px -12px}.csf-comment-metabox .csf-field{padding:20px}.csf-comment-metabox .csf-section-title{padding:20px}.csf-tooltip{position:absolute;z-index:5000001;font-size:12px;line-height:1.4;text-align:center;text-decoration:none;padding:6px 12px;max-width:200px;color:#fff;background-color:#000;background-color:rgba(0,0,0,.85);border-radius:4px}.csf-theme-dark .csf-header-inner{background-color:#050505}.csf-theme-dark .csf-header-inner h1{color:#fff}.csf-theme-dark .csf-header-inner h1 small{color:#555}.csf-theme-dark .csf-expand-all{color:#999;background-color:#222}.csf-theme-dark .csf-expand-all:hover{color:#fff;background-color:#333}.csf-theme-dark .csf-search input{color:#fff;background-color:#222}.csf-theme-dark .csf-search:focus{background-color:#444}.csf-theme-dark .csf-search::-webkit-input-placeholder{color:#666}.csf-theme-dark .csf-nav ul li a{color:#999;border-color:#2f2f2f;background-color:#222}.csf-theme-dark .csf-nav ul li a:hover{color:#fff}.csf-theme-dark .csf-nav ul li .csf-active{color:#fff;background-color:#111}.csf-theme-dark .csf-nav ul ul li a{border-color:#2f2f2f;background-color:#191919}.csf-theme-dark .csf-nav ul ul li .csf-active{background-color:#101010}.csf-theme-dark .csf-nav ul ul:before{background-color:rgba(34,34,34,.75)}.csf-theme-dark .csf-nav>ul>li:last-child>a{border:none}.csf-theme-dark .csf-nav-normal ul li a{border-bottom-width:1px;border-bottom-style:solid}.csf-theme-dark .csf-nav-normal ul li .csf-active:after{content:" ";position:absolute;right:0;top:50%;height:0;width:0;pointer-events:none;border:solid transparent;border-right-color:#fff;border-width:4px;margin-top:-4px}.csf-theme-dark .csf-nav-inline{background-color:#222}.csf-theme-dark .csf-nav-inline ul li a{text-align:center;border-right-width:1px;border-right-style:solid}.csf-theme-dark .csf-nav-inline ul li .csf-active:after{content:" ";position:absolute;left:50%;bottom:0;height:0;width:0;pointer-events:none;border:solid transparent;border-bottom-color:#fff;border-width:4px;margin-left:-4px}.csf-theme-dark .csf-nav-background{background-color:#222}.csf-theme-dark .csf-footer{color:#555;background-color:#050505}.csf-theme-light .csf-container{border:1px solid #ccd0d4;box-shadow:0 0 15 rgba(0,0,0,.04)}.csf-theme-light .csf-header-inner{border-bottom:1px solid #ccd0d4;background-color:#f5f5f5;background:linear-gradient(#fefefe,#f5f5f5)}.csf-theme-light .csf-header-inner h1 small{color:#999}.csf-theme-light .csf-expand-all{color:#999;background-color:#eee}.csf-theme-light .csf-expand-all:hover{color:#555}.csf-theme-light .csf-search input{color:#555;background-color:#eee}.csf-theme-light .csf-search input::-webkit-input-placeholder{color:#999}.csf-theme-light .csf-nav ul li a{font-weight:500;color:#444;background-color:#f5f5f5}.csf-theme-light .csf-nav ul li a:hover{color:#111;background-color:#fff}.csf-theme-light .csf-nav ul li .csf-active{color:#111;background-color:#fff}.csf-theme-light .csf-nav ul ul li a{background-color:#eee}.csf-theme-light .csf-nav-normal>ul{margin-right:-1px;margin-bottom:-1px}.csf-theme-light .csf-nav-normal>ul li a{border-bottom:1px solid #ccd0d4;border-right:1px solid #ccd0d4}.csf-theme-light .csf-nav-normal>ul li .csf-active{border-right-color:#fff}.csf-theme-light .csf-nav-inline{background-color:#f5f5f5;border-bottom:1px solid #ccd0d4}.csf-theme-light .csf-nav-inline>ul{margin-bottom:-1px}.csf-theme-light .csf-nav-inline>ul li a{text-align:center;border-right:1px solid #ccd0d4;border-bottom:1px solid #ccd0d4}.csf-theme-light .csf-nav-inline>ul li .csf-active{border-bottom-color:#fff}.csf-theme-light .csf-nav-inline>ul ul{display:none!important}.csf-theme-light .csf-nav-inline .csf-arrow:after{display:none}.csf-theme-light .csf-nav-background{background-color:#f5f5f5;border-right:1px solid #ccd0d4}.csf-theme-light .csf-footer{color:#555;border-top:1px solid #ccd0d4;background-color:#f5f5f5;background:linear-gradient(#fafafa,#f5f5f5)}.csf-field{position:relative;padding:30px}.csf-field+.csf-field{border-top:1px solid #eee}.csf-field p:first-child{margin-top:0}.csf-field p:last-child{margin-bottom:0}.csf-field:after,.csf-field:before{content:" ";display:table}.csf-field:after{clear:both}.csf-field h4{margin-top:0}.csf-field .csf-title{position:relative;width:20%;float:left}.csf-field .csf-title h4{margin:0;color:#23282d}.csf-field .csf-fieldset{float:right;width:calc(80% - 20px)}.csf-pseudo-field{padding:0 5px 0 0!important;display:inline-block}.csf-pseudo-field+.csf-pseudo-field{border:0}.csf-pseudo-field pre{display:none}.csf-field-accordion .csf-accordion-item{position:relative;margin-bottom:5px}.csf-field-accordion .csf-accordion-item:last-child{margin-bottom:0}.csf-field-accordion .csf-accordion-item h4{font-size:1em}.csf-field-accordion .csf-accordion-title{display:block;cursor:pointer;position:relative;margin:0;padding:15px;min-height:0;font-size:100%;user-select:none;border:1px solid #ccd0d4;background-color:#fafafa;box-shadow:0 1px 1px rgba(0,0,0,.04);transition:border-color .15s}.csf-field-accordion .csf-accordion-title:active,.csf-field-accordion .csf-accordion-title:focus,.csf-field-accordion .csf-accordion-title:hover{outline:0;border-color:#999}.csf-field-accordion .csf-accordion-title .csf--icon{width:20px;text-align:center;margin-right:2px}.csf-field-accordion .csf-accordion-icon{width:16px;text-align:center}.csf-field-accordion .csf-accordion-content{display:none;padding:0;border:1px solid #ccd0d4;border-top:none;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-accordion .csf-accordion-content>.csf-field{padding:15px}.csf-field-accordion .csf-accordion-open{display:block}.csf-field-background .csf-field{border:0!important;padding:0;margin-bottom:6px;margin-right:6px}.csf-field-background .csf--title{color:#777;font-size:12px}.csf-field-background .csf--background-colors{display:flex;flex-wrap:wrap}.csf-field-background .csf--background-attributes{display:flex;flex-wrap:wrap}.csf-field-background .csf--background-attributes select{min-width:100%;margin:0}.csf-field-background .csf--background-attributes .csf-field{flex:1}.csf-field-background .csf--attributes-hidden{display:none}.csf-field-backup textarea{width:100%;min-height:200px;margin-bottom:5px}.csf-field-backup small{display:inline-block;margin:5px}.csf-field-backup hr{margin:20px 0;border:none;border-bottom:1px solid #e5e5e5}.csf-field-border .csf--inputs,.csf-field-dimensions .csf--inputs,.csf-field-spacing .csf--inputs{float:left;display:flex;flex-wrap:wrap}.csf-field-border .csf--input,.csf-field-dimensions .csf--input,.csf-field-spacing .csf--input{display:flex;padding-right:6px;padding-bottom:4px;box-sizing:border-box}.csf-field-border .csf--input select,.csf-field-dimensions .csf--input select,.csf-field-spacing .csf--input select{margin:0}.csf-field-border .csf--input input,.csf-field-dimensions .csf--input input,.csf-field-spacing .csf--input input{position:relative;z-index:1;margin:0;width:65px;max-width:100%;text-align:center}.csf-field-border .csf--color,.csf-field-dimensions .csf--color,.csf-field-spacing .csf--color{float:left}.csf-field-border .csf--label,.csf-field-dimensions .csf--label,.csf-field-spacing .csf--label{display:flex;flex-direction:column;justify-content:center;user-select:none;min-width:20px;max-width:100%;padding:0 4px;font-size:12px;text-align:center;color:#555;border:1px solid #7b776c;background-color:#f5f5f5}.csf-field-border .csf--icon,.csf-field-dimensions .csf--icon,.csf-field-spacing .csf--icon{border-right:0;border-radius:4px 0 0 4px}.csf-field-border .csf--icon+input,.csf-field-dimensions .csf--icon+input,.csf-field-spacing .csf--icon+input{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.csf-field-border .csf--unit,.csf-field-dimensions .csf--unit,.csf-field-spacing .csf--unit{border-left:0;border-radius:0 4px 4px 0}.csf-field-border .csf--is-unit,.csf-field-dimensions .csf--is-unit,.csf-field-spacing .csf--is-unit{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.csf-field-button_set .csf--buttons{display:inline-block}.csf-field-button_set .csf--button{position:relative;z-index:1;float:left;cursor:pointer;padding:7px 14px;min-width:16px;text-align:center;color:#555;border:1px solid #ccc;background-color:#f7f7f7;user-select:none;box-shadow:0 1px 0 rgba(0,0,0,.1)}.csf-field-button_set .csf--button:first-child{border-radius:4px 0 0 4px}.csf-field-button_set .csf--button:last-child{border-radius:0 4px 4px 0}.csf-field-button_set .csf--button:not(:first-child){margin-left:-1px}.csf-field-button_set .csf--button:hover{background-color:#eee}.csf-field-button_set .csf--active,.csf-field-button_set .csf--active:hover{z-index:2;color:#fff;border-color:#006799;background-color:#0085ba}.csf-field-button_set input{display:none}.csf-field-checkbox ul,.csf-field-radio ul{margin:0;padding:0;list-style-type:none;overflow-y:auto;max-height:305px}.csf-field-checkbox ul li,.csf-field-radio ul li{margin-bottom:6px}.csf-field-checkbox ul ul,.csf-field-radio ul ul{max-height:none}.csf-field-checkbox ul ul li,.csf-field-radio ul ul li{margin-left:8px}.csf-field-checkbox ul ul li:first-child,.csf-field-radio ul ul li:first-child{margin-left:0}.csf-field-checkbox input,.csf-field-radio input{margin:0 1px}.csf-field-checkbox .csf--inline-list li,.csf-field-radio .csf--inline-list li{display:inline-block;margin-right:15px}.csf-field-checkbox .csf--text,.csf-field-radio .csf--text{margin-left:5px;vertical-align:middle}.csf-field-checkbox .csf-checker,.csf-field-radio .csf-checker{cursor:pointer}.csf-field-code_editor .CodeMirror{width:100%;height:400px}.csf-field-code_editor .cm-s-default{border:1px solid #ccd0d4}.csf-field-code_editor textarea{width:100%;height:400px}.csf-field-color>input{opacity:.75;width:115px;max-width:100%}.csf-field-color .button.wp-picker-clear{padding:0 8px;margin-left:6px;line-height:2.54545455;min-height:30px}.csf-field-color_group .csf--left{float:left;margin-right:10px;margin-bottom:5px}.csf-field-color_group .csf--title{color:#999;margin-bottom:5px}.csf-field-fieldset .csf-fieldset-content{border:1px solid #ccd0d4;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-fieldset .csf-fieldset-content>.csf-field{padding:15px}.csf-field-fieldset .csf-field-subheading{font-size:13px}.csf-field-date input{margin:0}.csf-field-date .csf--to{margin-left:7px}.csf-datepicker-wrapper{margin-top:5px;width:auto;background-color:#fff;z-index:9999999!important;box-shadow:0 0 30px rgba(0,0,0,.15)}.csf-datepicker-wrapper *{float:none;margin:0;padding:0;font-family:inherit;font-weight:400;font-style:normal;text-decoration:none;border:0;border-radius:0;box-shadow:none}.csf-datepicker-wrapper .ui-datepicker-header,.csf-datepicker-wrapper .ui-widget-header{color:#fff;background:#00a0d2}.csf-datepicker-wrapper .ui-datepicker-header .ui-state-hover{cursor:pointer}.csf-datepicker-wrapper .ui-datepicker-title{font-size:14px;line-height:40px;text-align:center}.csf-datepicker-wrapper .ui-datepicker-next,.csf-datepicker-wrapper .ui-datepicker-prev{position:static;top:auto;left:auto;right:auto;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:12px;text-align:center;width:41px;height:40px;line-height:40px;color:#fff;background-color:rgba(255,255,255,.1);text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.csf-datepicker-wrapper .ui-datepicker-next span,.csf-datepicker-wrapper .ui-datepicker-prev span{display:none}.csf-datepicker-wrapper .ui-datepicker-prev{float:left}.csf-datepicker-wrapper .ui-datepicker-next{float:right}.csf-datepicker-wrapper .ui-datepicker-prev:before{content:'\f053'}.csf-datepicker-wrapper .ui-datepicker-next:before{content:'\f054'}.csf-datepicker-wrapper .ui-datepicker-next-hover,.csf-datepicker-wrapper .ui-datepicker-prev-hover{opacity:.75}.csf-datepicker-wrapper tbody .ui-datepicker-week-col{background-color:#f7f7f7}.csf-datepicker-wrapper .ui-datepicker-buttonpane{padding:10px;text-align:center;background-color:#f7f7f7}.csf-datepicker-wrapper .ui-datepicker-buttonpane button{cursor:pointer;margin:0 5px;padding:7px 14px;border:1px solid #eee;background-color:#fff}.csf-datepicker-wrapper select{margin:0 4px}.csf-datepicker-wrapper select option{color:#555}.csf-datepicker-wrapper table{font-size:13px;border-collapse:collapse;width:100%}.csf-datepicker-wrapper thead{color:#fff;background:#32373c}.csf-datepicker-wrapper th{text-align:center;padding:7px;border:1px solid #444}.csf-datepicker-wrapper td{text-align:center;border:1px solid #f4f4f4}.csf-datepicker-wrapper td.ui-datepicker-other-month{border:transparent}.csf-datepicker-wrapper td .ui-state-default{color:#555;width:auto;display:block;padding:6px 12px}.csf-datepicker-wrapper td .ui-state-active,.csf-datepicker-wrapper td .ui-state-hover{color:#fff;background-color:#0073aa}.csf-datepicker-wrapper td.ui-state-disabled .ui-state-default{opacity:.5}.csf-field-gallery ul{margin:0;padding:0;list-style-type:none}.csf-field-gallery ul li{display:inline-block;position:relative;padding:4px;margin:0 5px 10px 0;border:1px solid #ccc;background-color:#f9f9f9;border-radius:2px;box-shadow:0 1px 0 rgba(0,0,0,.08)}.csf-field-gallery ul li img{max-height:60px;display:inline-block;vertical-align:middle}.csf-field-gallery .button{margin-right:5px;margin-bottom:5px}.csf-field-group .csf-cloneable-hidden{display:none!important}.csf-field-group .csf-cloneable-wrapper{position:relative}.csf-field-group .csf-cloneable-item{display:none;position:relative;margin-bottom:5px}.csf-field-group .csf-cloneable-item h4{font-size:1em}.csf-field-group .ui-accordion .csf-cloneable-item{display:block}.csf-field-group .csf-cloneable-content{border:1px solid #ccd0d4;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-group .csf-cloneable-content>.csf-field{padding:15px}.csf-field-group .csf-cloneable-title{display:block;cursor:pointer;position:relative;user-select:none;margin:0;padding:15px 65px 15px 10px;min-height:0;font-size:100%;border:1px solid #ccd0d4;background-color:#fafafa;box-shadow:0 1px 1px rgba(0,0,0,.04);transition:border-color .15s}.csf-field-group .csf-cloneable-title:active,.csf-field-group .csf-cloneable-title:focus,.csf-field-group .csf-cloneable-title:hover{border-color:#999;outline:0}.csf-field-group .csf-cloneable-helper{position:absolute;top:12px;right:10px;z-index:1;font-size:14px;line-height:1em}.csf-field-group .csf-cloneable-helper i{display:inline-block;cursor:pointer;padding:5px;color:#999}.csf-field-group .csf-cloneable-helper i:hover{color:#555}.csf-field-group .csf-cloneable-content{padding:0;border-top:0}.csf-field-group .csf-cloneable-title-number,.csf-field-group .csf-cloneable-title-prefix{margin-right:5px}.csf-field-group .csf-cloneable-alert{display:none;margin-bottom:5px;padding:10px 20px;color:#a94442;border:1px solid #ebccd1;background-color:#f2dede}.csf-field-group .widget-placeholder{margin-bottom:10px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-group .csf-cloneable-header-icon{display:inline-block;text-align:center;font-size:14px;width:17px;text-indent:0;vertical-align:text-top}.csf-field-group .csf-cloneable-placeholder{background-color:#ddd;margin-top:4px;width:100px;height:10px;font-size:10px;line-height:10px;display:inline-block;vertical-align:top;border-radius:2px}.csf-field-icon .button{margin-right:5px}.csf-field-icon .csf-icon-select{display:flex}.csf-field-icon .csf-icon-preview:not(.hidden){display:flex}.csf-field-icon .csf-icon-preview i{display:flex;justify-content:center;align-items:center;width:30px;font-size:14px;margin-right:5px;text-align:center;vertical-align:top;color:#555;border:1px solid #ccc;background-color:#f7f7f7;border-radius:3px;box-shadow:0 1px 0 rgba(0,0,0,.08)}.csf-field-image_select .csf--image{display:inline-block;margin:0 5px 5px 0}.csf-field-image_select .csf--inline-list .csf--image{display:block}.csf-field-image_select figure{cursor:pointer;position:relative;display:inline-block;max-width:100%;margin:0;vertical-align:bottom;border:2px solid transparent;background-color:#fff;user-select:none;transition:all .2s}.csf-field-image_select figure:before{position:absolute;top:0;left:0;text-align:center;font-size:10px;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;content:"\f00c";width:16px;height:16px;line-height:14px;opacity:0;color:#fff;background-color:#222;transition:opacity .2s}.csf-field-image_select .csf--active figure{border-color:#222;box-shadow:0 0 20px rgba(0,0,0,.2)}.csf-field-image_select .csf--active figure:before{opacity:1}.csf-field-image_select img{max-width:100%;height:auto;vertical-align:top}.csf-field-image_select input{display:none}.csf-field-link_color .csf--left{float:left;margin-right:10px;margin-bottom:5px}.csf-field-link_color .csf--title{color:#777;margin-bottom:5px}.csf-field-map input{width:100%}.csf-field-map input[type=text].ui-autocomplete-loading{background-position-x:calc(100% - 5px)}.csf-field-map .csf--map-search+.csf--map-osm-wrap{margin-top:10px}.csf-field-map .csf--map-osm-wrap{position:relative;padding:5px;border:1px solid #eee;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-map .csf--map-osm{position:relative;z-index:1;min-height:250px}.csf-field-map .csf--map-inputs{margin-top:10px;display:flex;justify-content:space-between}.csf-field-map .csf--map-input{flex:1}.csf-field-map .csf--map-input:last-child{padding-left:10px}.csf-field-map label{display:block;color:#777;font-size:12px;margin:0 0 2px 0}.csf-map-ui-autocomplate{z-index:999999;border-radius:4px;overflow:hidden}.csf-field-media .csf--placeholder{display:flex;align-items:flex-start}.csf-field-media .csf--placeholder input{width:100%;margin:0}.csf-field-media .button{margin-left:5px}.csf-field-media .hidden+.button{margin-left:0}.csf-field-media .csf--preview{position:relative}.csf-field-palette .csf--palette{position:relative;display:inline-block;cursor:pointer;border:2px solid #ddd;margin-right:10px;margin-bottom:10px;user-select:none;-webkit-user-select:none;transition:all .2s}.csf-field-palette .csf--palette span{vertical-align:middle;display:inline-block;width:22px;height:60px;line-height:60px;overflow:hidden;text-indent:-999px}.csf-field-palette .csf--palette:before{position:absolute;top:0;left:0;text-align:center;font-size:10px;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;content:"\f00c";width:16px;height:16px;line-height:14px;opacity:0;color:#fff;background-color:#222;transition:opacity .2s}.csf-field-palette .csf--active{border-color:#222;box-shadow:0 0 20px rgba(0,0,0,.2)}.csf-field-palette .csf--active:before{opacity:1}.csf-field-palette input{display:none}.csf-field-repeater .csf-field-text input{width:100%}.csf-field-repeater .csf-repeater-hidden{display:none!important}.csf-field-repeater .csf-repeater-wrapper .csf-repeater-item{display:table;width:100%;margin-bottom:5px;border:1px solid #eee}.csf-field-repeater .csf-repeater-wrapper .csf-repeater-item h4{font-size:1em}.csf-field-repeater .csf-repeater-content{width:100%;display:table-cell;vertical-align:middle;background-color:#fff}.csf-field-repeater .csf-repeater-content>.csf-field{padding:15px}.csf-field-repeater .csf-repeater-helper{width:100%;display:table-cell;vertical-align:middle;text-align:center;font-size:14px;line-height:1em;border-left:1px solid #eee;background-color:#f7f7f7}.csf-field-repeater .csf-repeater-helper i{display:inline-block;cursor:pointer;color:#999;padding:5px}.csf-field-repeater .csf-repeater-helper i:hover{color:#555}.csf-field-repeater .csf-repeater-helper-inner{width:75px}.csf-field-repeater .csf-repeater-alert{display:none;margin-bottom:5px;padding:10px 20px;color:#a94442;border:1px solid #ebccd1;background-color:#f2dede}.csf-field-repeater .widget-placeholder{height:50px;margin-bottom:3px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-repeater .ui-sortable-helper{height:50px!important;overflow:hidden!important;border-color:#ccc!important;background-color:#eee!important;opacity:.5}.csf-field-repeater .ui-sortable-helper .csf-repeater-content,.csf-field-repeater .ui-sortable-helper .csf-repeater-helper{display:none}.csf-field-select .csf-fieldset{min-height:30px}.csf-field-select .csf-chosen{display:none}.csf-field-select select{max-width:100%;margin:0}.csf-field-select .csf-hide-select{display:none!important}.csf-field-slider .csf--wrap{display:flex;align-items:center}.csf-field-slider .csf--input{display:flex}.csf-field-slider .csf--unit{display:flex;justify-content:center;flex-direction:column;user-select:none;padding:0 6px;font-size:11px;line-height:1;border-radius:0 4px 4px 0;color:#555;border:1px solid #7e8993;border-left:0;background-color:#f5f5f5}.csf-field-slider .csf-slider-ui{margin-right:15px}.csf-field-slider input[type=number]{position:relative;z-index:1;margin:0;width:50px;text-align:center}.csf-field-slider .csf--is-unit{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.csf-field-slider .ui-slider{position:relative;width:100%;height:3px;border:none;background:#ddd;border-radius:2px}.csf-field-slider .ui-slider-range{height:3px;border:none;background:#333;border-radius:2px}.csf-field-slider .ui-slider-handle{position:absolute;width:16px;height:16px;top:-7px;margin-left:-8px;border:none;background:#333;border-radius:2px}.csf-field-slider .ui-slider-handle:hover,.csf-field-slider .ui-state-active{cursor:pointer;background:#111}.csf-field-sortable .csf-field-text input{width:100%;max-width:100%}.csf-field-sortable .csf-sortable .csf-sortable-item{display:table;width:100%;margin-bottom:5px;border:1px solid #eee}.csf-field-sortable .csf-sortable .csf-sortable-item h4{font-size:1em}.csf-field-sortable .csf-sortable-content{width:100%;display:table-cell;vertical-align:middle;background-color:#fff}.csf-field-sortable .csf-sortable-content>.csf-field{padding:15px}.csf-field-sortable .csf-sortable-helper{width:100%;display:table-cell;vertical-align:middle;text-align:center;font-size:14px;line-height:1em;border-left:1px solid #eee;background-color:#f7f7f7}.csf-field-sortable .csf-sortable-helper i{display:inline-block;cursor:pointer;width:50px;color:#555}.csf-field-sortable .csf-sortable-helper i:hover{opacity:.5}.csf-field-sortable .widget-placeholder{height:50px;margin-bottom:3px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-sortable .ui-sortable-helper{height:50px!important;overflow:hidden!important;border-color:#ccc!important;background-color:#eee!important;opacity:.5}.csf-field-sortable .ui-sortable-helper .csf-sortable-content,.csf-field-sortable .ui-sortable-helper .csf-sortable-helper{display:none}.csf-field-sorter .ui-sortable-placeholder{height:20px;border:1px dashed #f1c40f;background-color:#fffae4}.csf-field-sorter .csf-modules{float:left;width:50%;box-sizing:border-box}.csf-field-sorter .csf-modules:first-child{padding-right:15px}.csf-field-sorter .csf-modules:last-child{padding-left:15px}.csf-field-sorter .csf-disabled,.csf-field-sorter .csf-enabled{padding:5px 15px;border:1px dashed #ddd;background-color:#fff}.csf-field-sorter .csf-disabled li{opacity:.5;transition:opacity .15s}.csf-field-sorter .csf-disabled .ui-sortable-helper{opacity:1}.csf-field-sorter .csf-sorter-title{font-size:13px;font-weight:600;padding:10px;text-align:center;border:1px dashed #ddd;border-bottom:none;background-color:#f8f8f8;text-transform:uppercase}.csf-field-sorter ul{list-style-type:none;margin:0;padding:0;min-height:62px}.csf-field-sorter ul li{margin:10px 0;padding:10px 15px;cursor:move;font-weight:700;text-align:center;border:1px solid #e5e5e5;background-color:#fafafa;transition:border-color .15s}.csf-field-sorter ul li:hover{border-color:#bbb}.csf-field-spinner .csf--spin{display:flex}.csf-field-spinner .ui-spinner{display:flex}.csf-field-spinner .ui-button{display:flex;flex-direction:column;justify-content:center;text-align:center;min-width:20px;padding:0 4px;color:#555;border:1px solid #7e8993;background-color:#f5f5f5}.csf-field-spinner .ui-spinner-button{cursor:pointer}.csf-field-spinner .ui-spinner-button:hover{background-color:#e7e7e7}.csf-field-spinner .ui-spinner-button:active{background-color:#ddd}.csf-field-spinner .ui-spinner-button:before{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:14px;line-height:14px}.csf-field-spinner .ui-spinner-down{order:1;border-right:0;border-radius:4px 0 0 4px}.csf-field-spinner .ui-spinner-down:before{content:"\f0d9"}.csf-field-spinner .ui-spinner-input{order:2}.csf-field-spinner .csf--unit{order:3;border-left:0;user-select:none}.csf-field-spinner .ui-spinner-up{order:4;border-left:0;border-radius:0 4px 4px 0}.csf-field-spinner .ui-spinner-up:before{content:"\f0da"}.csf-field-spinner input{position:relative;z-index:1;width:50px;text-align:center;margin:0;padding:0 8px;border-radius:0}.csf-field-spinner .ui-button-icon,.csf-field-spinner .ui-button-icon-space,.csf-field-spinner .ui-button-text{display:none}.csf-field-switcher .csf--switcher{float:left;cursor:pointer;position:relative;width:60px;height:26px;padding:0;margin:0;overflow:hidden;border-radius:4px;background-color:#ed6f6f;user-select:none;-webkit-user-select:none}.csf-field-switcher .csf--ball{position:absolute;top:4px;left:4px;width:24px;height:18px;background-color:#fff;border-radius:4px;transition:all .1s;box-shadow:1px 1px 1px rgba(0,0,0,.15)}.csf-field-switcher .csf--off,.csf-field-switcher .csf--on{position:absolute;top:0;left:0;right:0;font-size:11px;line-height:26px;font-weight:500;font-style:normal;text-align:center;text-transform:uppercase;color:#fff;padding-right:28px;opacity:0;transition:all .1s}.csf-field-switcher .csf--off{padding-right:0;padding-left:28px;opacity:1}.csf-field-switcher .csf--active{background:#4fb845}.csf-field-switcher .csf--active .csf--on{opacity:1}.csf-field-switcher .csf--active .csf--off{opacity:0}.csf-field-switcher .csf--active .csf--ball{left:100%;margin-left:-28px}.csf-field-switcher .csf--label{float:left;margin-top:4px;margin-left:8px;font-weight:400;color:#999}.csf-field-tabbed .csf-tabbed-content{border:1px solid #ccd0d4;background-color:#fff;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-field-tabbed .csf-tabbed-content>.csf-field{padding:15px}.csf-field-tabbed .csf-tabbed-nav .csf--icon{padding-right:5px}.csf-field-tabbed .csf-tabbed-nav a{display:inline-block;padding:12px 15px;margin-top:1px;margin-right:5px;margin-bottom:-1px;position:relative;text-decoration:none;color:#444;font-weight:600;border:1px solid #ccd0d4;background-color:#f3f3f3;transition:all .2s}.csf-field-tabbed .csf-tabbed-nav a:hover{background-color:#f9f9f9}.csf-field-tabbed .csf-tabbed-nav a.csf-tabbed-active{background-color:#fff;border-bottom-color:#fff}.csf-field-tabbed .csf-tabbed-nav a:focus{outline:0;box-shadow:none}.csf-field-text input{width:50%;max-width:100%;margin:0}.csf-field-textarea textarea{width:100%;max-width:100%;min-height:125px}.csf-field-textarea .csf-shortcode-button{margin-bottom:10px;margin-right:5px}.csf-field-typography select,.csf-field-typography textarea{margin:0;min-width:100%;max-width:100%}.csf-field-typography .csf--title{color:#777;margin:0 0 2px 0;font-size:12px}.csf-field-typography .csf--title small{vertical-align:top}.csf-field-typography .csf--blocks{display:flex;flex-wrap:wrap}.csf-field-typography .csf--block{flex:1;max-width:100%;padding-right:6px;padding-bottom:6px}.csf-field-typography .csf--input{margin:0;min-width:100%}.csf-field-typography .csf--input-wrap{position:relative}.csf-field-typography .csf--unit{position:absolute;z-index:1;right:4px;top:4px;bottom:4px;padding:2px 6px;color:#666;font-size:11px;line-height:1;border-radius:2px;background:#eee;user-select:none;display:flex;justify-content:center;flex-direction:column}.csf-field-typography .csf--preview{font-size:16px;line-height:20px;padding:20px;color:#222;border:1px solid #eee;background-color:#fff;border-radius:2.5px;user-select:none;-webkit-user-select:none;transition:background-color .2s,border-color .2s}.csf-field-typography .csf--block-preview{cursor:pointer;position:relative;overflow:hidden;margin-top:10px;max-width:100%}.csf-field-typography .csf--black-background{border-color:#000;background-color:#000}.csf-field-typography .csf--toggle{position:absolute;top:5px;right:10px;color:#999}.csf-field-typography .csf--block-extra-styles{margin-top:5px}.csf-field-upload input{width:100%;margin:0}.csf-field-upload .csf--wrap{display:flex;align-items:flex-start}.csf-field-upload .button{margin-left:5px}.csf-field-upload .csf--preview{position:relative}.csf-field-wp_editor .csf-wp-editor{float:left;width:100%}.csf-field-wp_editor .mce-toolbar-grp{border:none}.csf-field-wp_editor .mce-btn.mce-active button,.csf-field-wp_editor .mce-btn.mce-active i,.csf-field-wp_editor .mce-btn.mce-active:hover button,.csf-field-wp_editor .mce-btn.mce-active:hover i{color:#23282d}.csf-field-wp_editor .wp-media-buttons{position:relative;z-index:2}.csf-field-wp_editor .wp-editor-tabs{position:relative;z-index:1}.csf-field-wp_editor .csf-no-tinymce{border:1px solid #e5e5e5}.csf-field-wp_editor .csf-no-quicktags .wp-media-buttons{float:none;display:block}.csf-field-wp_editor .csf-no-quicktags .mce-tinymce{box-shadow:none;border:1px solid #e5e5e5}.csf-field-wp_editor textarea{width:100%;max-width:100%;margin:0;box-shadow:none}.csf-field-heading{font-size:1.5em;font-weight:700;color:#23282d;background-color:#f5f5f5}.csf-field-subheading{font-size:14px;font-weight:700;padding-top:17px;padding-bottom:17px;color:#23282d;background-color:#f7f7f7}.csf-field-submessage{padding:0!important;border:0!important}.csf-field-submessage+.csf-field{border-top:0!important}.csf-submessage{font-size:12px;padding:17px 30px;border-top:1px solid transparent;border-bottom:1px solid transparent}.csf-submessage-success{color:#3c763d;border-color:#d6e9c6;background-color:#dff0d8}.csf-submessage-info{color:#31708f;border-color:#bce8f1;background-color:#d9edf7}.csf-submessage-warning{color:#8a6d3b;border-color:#faebcc;background-color:#fcf8e3}.csf-submessage-danger{color:#a94442;border-color:#ebccd1;background-color:#f2dede}.csf-submessage-normal{color:#23282d;border-color:#eee;background-color:#f7f7f7}.csf-field-notice{background-color:#f7f7f7}.csf-notice{padding:12px;background-color:#fff;border-left-style:solid;border-left-width:4px;box-shadow:0 1px 1px rgba(0,0,0,.1)}.csf-notice-success{border-color:#46b450}.csf-notice-info{border-color:#339fd4}.csf-notice-warning{border-color:#ffbc00}.csf-notice-danger{border-color:#dc3232}.csf-notice-normal{border-color:#222}.csf-field-number input{width:100%;margin:0}.csf-field-number .csf--wrap{position:relative;float:left;width:100px}.csf-field-number .csf--unit{position:absolute;z-index:1;right:4px;top:4px;bottom:4px;padding:2px 6px;color:#666;font-size:11px;line-height:1;border-radius:2px;background:#eee;user-select:none;display:flex;justify-content:center;flex-direction:column}.csf-field-link .csf--result{display:inline-block;font-size:12px;line-height:16px;padding:7px 10px;margin-bottom:7px;color:#777;border:1px solid #e5e5e5;background-color:#f5f5f5;border-radius:2px;world-break:break-word}.csf-field-link .csf--wrap{position:relative;float:left;width:100px}.csf-field-link .csf--unit{position:absolute;z-index:1;right:4px;top:4px;bottom:4px;padding:2px 6px;color:#666;font-size:11px;line-height:1;border-radius:2px;background:#eee;user-select:none;display:flex;justify-content:center;flex-direction:column}.csf-help{cursor:help;position:absolute;top:0;right:0;padding:5px;font-size:13px;color:#aaa}.csf-help .csf-help-text{display:none}.csf--preview{max-width:100%}.csf-image-preview{display:inline-flex;align-items:center;justify-content:center;flex-direction:column;position:relative;padding:6px;max-width:120px;max-height:120px;min-width:40px;min-height:40px;margin-bottom:10px;text-align:center;border-radius:2px;border:1px solid #ccc;background-color:#f9f9f9;box-shadow:0 1px 0 rgba(0,0,0,.08)}.csf-image-preview i{cursor:pointer;position:absolute;z-index:1;right:4px;top:4px;font-size:14px;width:22px;height:22px;line-height:22px;text-align:center;text-decoration:none;color:#fff;background-color:#d33;opacity:.75;border-radius:2px;transition:all .2s}.csf-image-preview i:hover{opacity:1}.csf-image-preview i:focus{box-shadow:none}.csf-image-preview span{position:relative;overflow:hidden;display:flex;height:100%;width:100%}.csf-image-preview img{max-width:100%;height:auto;object-fit:contain}.csf-field-custom .csf-field{padding:0}.csf-field .chosen-container-single .chosen-single{height:28px;line-height:26px}.csf-field .chosen-container-single .chosen-single abbr{top:0;right:20px;font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:12px;height:100%;width:18px;color:#aaa;text-align:center;background:0 0}.csf-field .chosen-container-single .chosen-single abbr:before{content:"\f00d"}.csf-field .chosen-container-single .chosen-single abbr:hover{color:#555}.csf-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:12px;height:100%;width:18px;color:#aaa;text-align:center;background:0 0}.csf-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before{content:"\f00d";display:inline-block;padding-top:3px}.csf-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{color:#555}.csf-field .chosen-container-single .chosen-single div b{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:14px;color:#aaa;background:0 0}.csf-field .chosen-container-single .chosen-single div b:before{content:"\f107"}.csf-field .chosen-container-single .chosen-single div b:hover{color:#555}.csf-field .chosen-container-multi .chosen-choices li.search-choice-placeholder{border:1px dashed #aaa;margin:3px 5px 3px 0}.csf-field .chosen-container-multi .ui-sortable li.search-choice span{cursor:move}.csf-field .chosen-container-active.chosen-with-drop .chosen-single div b:before{content:"\f106"}.csf-field .chosen-container-single .chosen-single-with-deselect span{margin-right:40px}.csf-field .chosen-container-single .chosen-search input[type=text]{background:0 0}.csf-field .chosen-container-single .chosen-search:before{font-family:"Font Awesome 5 Pro","Font Awesome 5 Free",FontAwesome;font-weight:900;font-size:11px;content:"\f002";position:absolute;right:12px;top:10px;color:#aaa}.csf-field .wp-picker-container{display:inline-block}.csf-field .wp-picker-container .wp-color-result.button{margin-bottom:0}.csf-field .csf--transparent-wrap{display:none;position:relative;top:-1px;width:235px;padding:9px 10px;border:1px solid #dfdfdf;border-top:none;background-color:#fff}.csf-field .wp-picker-active .csf--transparent-wrap{display:block}.csf-field .csf--transparent-slider{position:absolute;width:190px;margin-left:2px;height:18px}.csf-field .csf--transparent-slider .ui-slider-handle{position:absolute;top:-3px;bottom:-3px;z-index:5;border-color:#aaa;border-style:solid;border-width:4px 3px;width:10px;height:16px;margin:0 -5px;background:0 0;cursor:ew-resize;opacity:.9;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.2)}.csf-field .csf--transparent-slider .ui-slider-handle:before{content:" ";position:absolute;left:-2px;right:-2px;top:-3px;bottom:-3px;border:2px solid #fff;border-radius:3px}.csf-field .csf--transparent-offset{height:18px;width:200px;background:url(../images/checkerboard.png) repeat-y center left scroll #fff;border-radius:2px;box-shadow:inset 0 0 5px rgba(0,0,0,.4)}.csf-field .csf--transparent-text{position:absolute;top:12px;right:10px;width:30px;font-size:12px;line-height:12px;text-align:center;color:#999}.csf-field .csf--transparent-button{cursor:pointer;user-select:none;margin-top:10px;font-size:11px;text-align:center;border-radius:2px;padding:3px 7px;box-shadow:0 1px 0 rgba(0,0,0,.1);letter-spacing:.2px;color:#777;border:1px solid #ccc;background-color:#f7f7f7;transition:background-color .2s,border-color .2s,color .2s}.csf-field .csf--transparent-active .wp-color-result{background-image:url(../images/checkerboard.png);background-size:135px;background-position:center left;background-color:transparent!important}.csf-field .csf--transparent-active .csf--transparent-button{color:#fff;border-color:#3ea032;background-color:#4fb845}.csf-field .csf--transparent-active .fa:before{content:"\f205"}.csf-widgets>.csf-field{position:relative;top:-1px;margin-left:-15px;margin-right:-15px;padding:12px 15px}.csf-widgets>.csf-field .csf-title{float:none;width:100%;margin-bottom:5px}.csf-widgets>.csf-field .csf-fieldset{float:none;width:100%}.csf-widgets .csf-field-text input{width:100%}.csf-widgets .csf-field-notice .csf-notice{padding:15px}.control-section .csf-widgets>.csf-field{margin-left:-10px;margin-right:-10px;padding:10px 12px}.wp-block .csf-widgets{font-size:13px}.wp-block .csf-widgets>.csf-field{margin-left:-10px;margin-right:-10px}.wp-block .csf-widgets>.csf-field .button-primary{color:#fff}.wp-block .csf-widgets>.csf-field>.csf-title>h4{font-size:13px}.control-section .csf-field{padding:0}.control-section .csf-field .csf-title{float:none;width:100%;margin-bottom:6px}.control-section .csf-field .csf-title h4{display:block;font-size:13px;line-height:1;font-weight:600;color:inherit}.control-section .csf-field .csf-fieldset{float:none;width:100%}.control-section .csf-help{top:-5px;right:-5px}.control-section .csf-field-select select{width:100%}.control-section .csf-field-heading{color:inherit;font-size:14px;line-height:1em;margin-right:-15px;margin-left:-15px;padding:15px}.control-section .csf-field-subheading{color:inherit;font-size:11px;margin-right:-15px;margin-left:-15px;padding:10px 15px}.control-section .csf-subtitle-text{margin-top:4px;font-size:12px}.control-section .csf-field-submessage .csf-submessage{margin-right:-15px;margin-left:-15px;padding:15px}.control-section .csf-fieldset .csf-field-heading,.control-section .csf-fieldset .csf-field-subheading,.control-section .csf-fieldset .csf-field-submessage .csf-submessage{margin-left:0;margin-right:0}.control-section .csf-field-date .csf--to{margin-left:0}.control-section .csf-field-sorter ul li{padding:5px}.control-section .csf-field-sorter .csf-modules{float:none;width:100%}.control-section .csf-field-sorter .csf-modules:first-child{padding-right:0;padding-bottom:15px}.control-section .csf-field-background .csf--background-attributes{flex-direction:column}.control-section .csf-field-spacing input{width:90px}.control-section .csf-field-border .csf--input{flex:1 50%}.control-section .csf-field-border input,.control-section .csf-field-border select{width:100%}.control-section .csf-field-spinner input{width:50px}.control-section .csf-field-number .csf--wrap{width:100%}.control-section .csf-field-backup .csf-export-data{display:none}.control-section .csf-field-fieldset .csf-fieldset-content{border-color:#e5e5e5}.control-section .csf-accordion-content>.csf-field,.control-section .csf-cloneable-content>.csf-field,.control-section .csf-fieldset-content>.csf-field,.control-section .csf-repeater-content>.csf-field,.control-section .csf-sortable-content>.csf-field,.control-section .csf-tabbed-content>.csf-field{padding:10px}.control-section .csf-accordion-content>.csf-field .csf-title,.control-section .csf-cloneable-content>.csf-field .csf-title,.control-section .csf-fieldset-content>.csf-field .csf-title,.control-section .csf-repeater-content>.csf-field .csf-title,.control-section .csf-sortable-content>.csf-field .csf-title,.control-section .csf-tabbed-content>.csf-field .csf-title{margin-bottom:5px}.control-section .csf-accordion-content>.csf-field h4,.control-section .csf-cloneable-content>.csf-field h4,.control-section .csf-fieldset-content>.csf-field h4,.control-section .csf-repeater-content>.csf-field h4,.control-section .csf-sortable-content>.csf-field h4,.control-section .csf-tabbed-content>.csf-field h4{font-size:12px}.control-section .csf-depend-hidden.csf-depend-on{display:none!important}.control-section .csf-depend-visible.csf-depend-on{border-top:0!important}.csf-taxonomy{max-width:95%}.csf-taxonomy>.csf-field{border-top:none!important}.csf-taxonomy>.csf-field-heading{font-size:1.1em;padding:20px!important;border:1px solid #ddd}.csf-taxonomy>.csf-field-subheading{font-size:12px;padding:15px!important;border:1px solid #ddd}.csf-taxonomy>.csf-field-submessage .csf-submessage{padding:15px;border-left-width:1px;border-left-style:solid;border-right-width:1px;border-right-style:solid}.csf-taxonomy>.csf-field-notice{background-color:transparent}.csf-taxonomy .csf-section-title{display:block;padding:15px;background-color:#f9f9f9;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.csf-taxonomy-add-fields>.csf-field{padding:8px 0}.csf-taxonomy-add-fields>.csf-field>.csf-title{float:none;width:100%;padding:2px 2px 4px 0}.csf-taxonomy-add-fields>.csf-field>.csf-title h4{font-size:12px;font-weight:400}.csf-taxonomy-add-fields>.csf-field>.csf-fieldset{float:none;width:100%}.csf-taxonomy-add-fields>.csf-field>.csf-fieldset>.csf-help{right:-5px}.csf-taxonomy-add-fields+p.submit{margin-top:0}.csf-taxonomy-edit-fields>.csf-field{padding:20px 0}.csf-taxonomy-edit-fields>.csf-field>.csf-title{width:200px}.csf-taxonomy-edit-fields>.csf-field>.csf-title h4{font-size:14px;font-weight:600;line-height:1.3;display:inline-block;vertical-align:middle}.csf-taxonomy-edit-fields>.csf-field>.csf-fieldset{width:calc(100% - 220px)}.csf-taxonomy-edit-fields>.csf-field>.csf-fieldset>.csf-help{top:-5px;right:-5px}.csf-taxonomy-edit-fields>.csf-field-submessage{margin:20px 0}.csf-taxonomy-edit-fields>.csf-field-heading,.csf-taxonomy-edit-fields>.csf-field-subheading{margin:20px 0;border:1px solid #ddd}.csf-nav-menu-options{clear:both;float:left;width:100%}.csf-nav-menu-options>.csf-fields{margin-left:-10px;margin-top:10px;margin-bottom:10px;border-top:1px solid #eee;border-bottom:1px solid #eee}.csf-nav-menu-options>.csf-fields>.csf-field{padding:12px 14px 12px 12px}.csf-nav-menu-options>.csf-fields>.csf-field .csf-title{float:none;width:100%;margin-bottom:5px}.csf-nav-menu-options>.csf-fields>.csf-field .csf-fieldset{float:none;width:100%}.csf-nav-menu-options .csf-field-text input{width:100%}.csf-nav-menu-options .csf-field-notice .csf-notice{padding:15px}.csf-nav-menu-title{padding:12px 14px 12px 12px;background-color:#f5f5f5;border-top:1px solid #eee;border-bottom:1px solid #eee}.csf-nav-menu-title:first-child{border-top:0}.csf-nav-menu-title h4{margin:0;padding:0;color:#23282d}.csf-nav-menu-icon{margin-right:5px}.csf-profile-options>h2>.fa{padding-right:7px}.csf-profile-options>.csf-field{max-width:750px;padding:15px 0;border-top:none!important}.csf-profile-options>.csf-field>.csf-title{width:200px}.csf-profile-options>.csf-field>.csf-title h4{font-size:14px;font-weight:600;line-height:1.3;display:inline-block;vertical-align:middle}.csf-profile-options>.csf-field>.csf-fieldset{width:calc(100% - 220px)}.csf-profile-options>.csf-field>.csf-fieldset>.csf-help{top:-15px;right:-5px}.csf-profile-options>.csf-field-heading{font-size:1.1em}.csf-profile-options>.csf-field-subheading{font-size:12px}.csf-profile-options>.csf-field-heading,.csf-profile-options>.csf-field-subheading{margin:10px 0;padding:15px!important;border:1px solid #ddd}.csf-profile-options>.csf-field-submessage{margin:20px 0}.csf-profile-options>.csf-field-submessage .csf-submessage{padding:10px;border-left-width:1px;border-left-style:solid;border-right-width:1px;border-right-style:solid}.csf-profile-options>.csf-field-notice{background-color:transparent}.csf-modal{position:fixed;z-index:100101;top:0;left:0;width:100%;height:100%}.csf-modal.hidden{display:none}.csf-modal-icon{z-index:100102}.csf-modal-table{display:table;width:100%;height:100%}.csf-modal-table-cell{display:table-cell;vertical-align:middle;margin:100px 0}.csf-modal-inner{position:relative;z-index:10;width:760px;height:750px;margin:0 auto;background-color:#fff}.csf-modal-content{position:relative;overflow:hidden;overflow-y:auto;height:595px}.csf-modal-content .csf-shortcode-button{display:none}.csf-modal-content .csf-field{padding:15px 30px 15px 15px}.csf-modal-content a:active,.csf-modal-content a:focus{outline:0;box-shadow:none}.csf-modal-content h4{font-size:13px}.csf-modal-content h4 small{font-style:italic;font-weight:400;color:#aaa}.csf-modal-title{position:relative;background-color:#fcfcfc;border-bottom:1px solid #ddd;height:36px;font-size:16px;font-weight:600;line-height:36px;margin:0;padding:0 36px 0 16px}.csf-modal-header{width:100%;padding:14px 0;background-color:#f5f5f5;border-bottom:1px solid #ddd}.csf-modal-header select{display:block;width:250px;margin:0 auto;font-size:13px;line-height:1;height:30px;min-height:30px;background-color:#fff}.csf-modal-close{color:#666;padding:0;position:absolute;top:0;right:0;width:36px;height:36px;text-align:center;background:0 0;border:none;cursor:pointer}.csf-modal-close:before{font:normal 20px/36px dashicons;content:"\f158";vertical-align:top;width:36px;height:36px}.csf-modal-close:hover{opacity:.5}.csf-modal-insert-wrapper{text-align:center;width:100%;padding:15px 0;background-color:#f5f5f5;border-top:1px solid #ddd}.csf-modal-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:.5}.csf--repeatable{padding:15px 15px 0 15px}.csf--repeat-button-block{text-align:center;padding-bottom:15px}.csf--repeat-shortcode{position:relative;margin-bottom:15px;border:1px dashed #ddd}.csf--repeat-shortcode:first-child .csf-repeat-remove{display:none}.csf--repeat-shortcode .csf-repeat-remove{position:absolute;right:10px;top:10px;z-index:10;cursor:pointer;display:inline-block;font-size:11px;width:18px;height:18px;line-height:18px;text-align:center;border-radius:2px;color:#fff;background-color:#e14d43;opacity:.5}.csf--repeat-shortcode .csf-repeat-remove:hover{opacity:.5}.csf-shortcode-single .csf-modal-inner{height:750px}.csf-shortcode-single .csf-modal-content{height:652px}.elementor-editor-active .csf-shortcode-button{margin-left:5px}.elementor-editor-active .csf-modal .hidden{display:none!important}.csf-shortcode-block{text-align:center;padding:14px;font-size:13px;background-color:#f5f5f5;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.csf-shortcode-block .components-button{margin-bottom:10px}.csf-modal-icon .csf-icon-title{padding:15px 0;margin:4px;font-size:14px;font-weight:700;text-align:center;border:1px solid #eee;background-color:#f7f7f7}.csf-modal-icon .csf-modal-header{text-align:center}.csf-modal-icon .csf-icon-search{width:50%;height:40px;line-height:40px}.csf-modal-icon i{cursor:pointer;display:inline-block;margin:4px;width:35px;height:35px;line-height:35px;font-size:16px;color:#555;text-align:center;border:1px solid #ccc;background-color:#f7f7f7;border-radius:2px;box-shadow:1px 1px 0 rgba(0,0,0,.05)}.csf-modal-icon i:hover{color:#fff;border-color:#222;background-color:#222}.csf-modal-icon .csf-modal-content{padding:10px;height:618px}.csf-modal-icon .csf-error-text{padding:10px}.csf-modal-loading{display:none;position:absolute;left:15px;top:15px}.csf-loading{position:relative;width:20px;height:20px;background:#ccc;border-radius:20px;box-shadow:0 2px 5px rgba(0,0,0,.07)}.csf-loading:after{position:absolute;top:50%;left:50%;width:4px;height:4px;content:"";margin-top:-2px;margin-left:-2px;background-color:#fff;animation-duration:.5s;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:csfLoader;border-radius:4px}@keyframes csfLoader{0%{transform:rotate(0) translateX(-6px) rotate(0)}100%{transform:rotate(360deg) translateX(-6px) rotate(-360deg)}}.csf-subtitle-text{margin-top:6px;font-weight:400;color:#999}.csf-desc-text{clear:both;float:left;width:100%;margin-top:6px;font-weight:400;color:#999}.csf-error-text{margin-top:6px;color:#d02c21}.csf-before-text{margin-bottom:6px}.csf-after-text{margin-top:6px}.csf-metabox-hide{display:none!important}.csf-metabox-show{display:block!important}.csf-depend-hidden.csf-depend-on{display:none}.csf-depend-visible.csf-depend-on{display:block;opacity:.75;filter:grayscale(1);user-select:none;border-top:1px solid #eee}.csf-depend-visible.csf-depend-on .clear:before{content:"";left:0;top:0;right:0;bottom:0;position:absolute;background-color:#eee;opacity:.25;z-index:10}.csf-warning-primary{color:#fff!important;border-color:#dc3545!important;background:#dc3545!important}.csf-warning-primary:focus,.csf-warning-primary:hover{border-color:#bd2130!important;background:#bd2130!important}.csf-warning-primary:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px #bd2130!important}.csf-warning-primary:active{border-color:#bd2130!important;background:#bd2130!important}.csf-form-result{display:none;float:left;padding:0 8px;margin-right:4px;font-size:11px;line-height:30px;user-select:none;border-radius:2px}.csf-form-show{display:block}.csf-form-success{color:#fff;background-color:#46b450}.csf-form-warning{color:#8a6d3b;background-color:#faebcc}.csf-label-error{position:relative;top:-2px;display:inline-block;font-size:10px;line-height:10px;height:10px;width:10px;padding:1px;font-style:normal;text-align:center;color:#fff;vertical-align:middle;background-color:#e10000;border-radius:2px}.csf-no-option{padding:30px}.csf-input-number{-moz-appearance:textfield}.csf-input-number::-webkit-inner-spin-button,.csf-input-number::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.csf-fa5-shims .csf .fab,.csf-fa5-shims .csf .far,.csf-fa5-shims .csf .fas{font-family:FontAwesome;font-style:normal}.csf-welcome-wrap{position:relative;margin:25px 40px 0 20px;font-size:15px;max-width:1200px}.csf-welcome-wrap p{font-size:14px;line-height:1.5}.csf-welcome-wrap h1{margin:.2em 200px 0 0;padding:0;color:#32373c;line-height:1.2em;font-size:2.8em;font-weight:400}.csf-welcome-wrap .csf-logo{position:absolute;overflow:hidden;top:0;right:0;height:160px;width:140px;background-image:linear-gradient(45deg,#2d67cb,#ad19f3);box-shadow:0 1px 4px rgba(0,0,0,.25),inset 0 0 0 4px rgba(0,0,0,.25)}.csf-welcome-wrap .csf-logo .csf--effects i{position:absolute;width:200px;height:100px;background-color:rgba(0,0,0,.15);transform:rotate(-45deg)}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(1){bottom:-20px;right:-70px}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(2){bottom:-35px;right:-80px}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(3){bottom:-50px;right:-90px}.csf-welcome-wrap .csf-logo .csf--effects i:nth-child(4){bottom:-65px;right:-100px}.csf-welcome-wrap .csf-logo .csf--wp-logos{position:relative;padding-top:25px;text-align:center}.csf-welcome-wrap .csf-logo .csf--wp-logo{position:absolute;left:20px;width:20px;height:20px;background-repeat:no-repeat;background-position:center center;background-image:url(../images/wp-logo.svg)}.csf-welcome-wrap .csf-logo .csf--wp-plugin-logo{display:inline-block;width:50px;height:50px;border:3px solid #fff;background-size:40px;background-repeat:no-repeat;background-position:center center;background-image:url(../images/wp-plugin-logo.svg);border-radius:100%;vertical-align:middle}.csf-welcome-wrap .csf-logo .csf--text{position:absolute;left:0;right:0;top:90px;color:#fff;font-size:13px;line-height:1.2em;font-weight:600;text-align:center;text-transform:uppercase;text-shadow:1px 1px 0 rgba(0,0,0,.25)}.csf-welcome-wrap .csf-logo .csf--version{top:auto;left:auto;right:8px;bottom:4px;font-size:11px;text-transform:lowercase}.csf-welcome-wrap .csf-about-text{font-weight:400;line-height:1.6em;font-size:19px;margin:1em 200px 1em 0;color:#555d66}.csf-welcome-wrap .csf-demo-button{margin:1em 200px 2em 0}.csf-welcome-wrap .nav-tab-wrapper{margin-bottom:20px}.csf-welcome-wrap ul{list-style-type:disc;padding-left:15px}.csf-welcome-wrap .csf--col{float:left;padding-right:20px;box-sizing:border-box}.csf-welcome-wrap .csf--col-2{width:50%}.csf-welcome-wrap .csf--col-3{width:33.333%}.csf-welcome-wrap .csf--col-4{width:25%}.csf-welcome-wrap .csf--col-5{width:20%}.csf-welcome-wrap .csf--col-last{padding-right:0}.csf-welcome-wrap .csf--col-upgrade{padding:10px 0;text-align:center;border-top:1px solid #e5e5e5}.csf--table-compare tfoot td,.csf--table-compare thead td{text-align:center}.csf--table-compare td{font-size:14px;text-align:center;vertical-align:middle;padding:10px}.csf--table-compare td:first-child{text-align:left}.csf--table-compare tfoot td{padding:15px 0}.csf--table-compare .fa{font-size:18px}.csf--table-compare .fa-check-circle{color:#46b450}.csf--table-compare .fa-times-circle{color:#dc3232}.csf-welcome-cols{clear:both;margin:20px 0;background-color:#fff;padding:0 0;border-radius:2px;border:1px solid #e5e5e5}.csf-welcome-cols .csf--col{width:33.333%;float:left;padding:20px;text-align:center;box-sizing:border-box;min-height:200px;border-right:1px solid #e5e5e5}.csf-welcome-cols .csf--block,.csf-welcome-cols .csf--left{float:left;width:20%;padding:0 30px;text-align:center;box-sizing:border-box}.csf-welcome-cols .csf--block{width:80%}.csf-welcome-cols .csf--col-first{border-bottom:1px solid #e5e5e5}.csf-welcome-cols .csf--last{border-right:none}.csf-welcome-cols .csf--space{height:20px}.csf-welcome-cols .csf--icon{display:inline-block;font-size:20px;width:30px;height:30px;line-height:30px;text-align:center;margin-bottom:10px;color:#fff;background-color:#555;border-radius:30px}.csf-welcome-cols .csf--active{background-color:#5cb85c}.csf-welcome-cols .csf--deactive{background-color:#e14d43}.csf-welcome-cols .csf--title{font-weight:700;display:block}.csf-welcome-cols p:last-child{margin-bottom:0}.csf-features-cols .csf--key-features{width:30%}.csf-features-cols .csf--available-fields{width:70%}.csf-code-block{margin:20px 0;padding:5px 20px;background-color:#fff;border-radius:2px;box-shadow:0 1px 1px rgba(0,0,0,.15)}.csf-code-block pre{font-size:13px;color:#0073aa}.csf-code-block pre span{color:#999}.csf--table-fields td{font-size:14px}.csf--upgrade a{color:#5cb85c;font-weight:700}.csf--upgrade a:focus,.csf--upgrade a:hover{color:#4aa14a;outline:0;box-shadow:none}@media only screen and (max-width:782px){.csf-welcome-cols .csf--col{width:100%;min-height:auto;border-right:none;border-bottom:1px solid #e5e5e5}.csf-features-cols .csf--key-features{width:100%}.csf-features-cols .csf--available-fields{width:100%}}@media only screen and (max-width:1200px){.csf-metabox .csf-field .csf-title{float:none;width:100%;margin-bottom:10px}.csf-metabox .csf-field .csf-fieldset{float:none;width:100%}}@media only screen and (max-width:782px){.csf-header-inner{text-align:center}.csf-header-inner h1{width:100%;margin-bottom:10px}.csf-form-result{float:none;margin-right:0;margin-bottom:10px}.csf-header-left,.csf-header-right,.csf-search{width:100%}.csf-search{text-align:center;margin-bottom:15px}.csf-footer{text-align:center}.csf-buttons{float:none}.csf-copyright{float:none;margin-top:10px}.csf-expand-all,.csf-nav,.csf-nav-background,.csf-reset-section{display:none!important}.csf-nav-normal+.csf-content{margin-left:0}.csf-section,.csf-section-title{display:block!important}.csf-field .csf-title{float:none;width:100%;margin-bottom:10px}.csf-field .csf-fieldset{float:none;width:100%}.csf-field-color .button.wp-picker-clear{padding:0 8px;line-height:2.14285714;min-height:32px}.csf-profile-options>.csf-field>.csf-title,.csf-taxonomy-edit-fields>.csf-field>.csf-title{float:none;width:100%;margin-bottom:10px}.csf-profile-options>.csf-field>.csf-fieldset,.csf-taxonomy-edit-fields>.csf-field>.csf-fieldset{float:none;width:100%}.csf-nav-menu-options>.csf-fields{margin-left:-10px;margin-right:-10px}.csf-nav-menu-options>.csf-fields>.csf-field{padding:10px}}@media only screen and (max-width:782px){.csf-modal .csf-modal-inner{width:90%}}@media only screen and (max-height:750px){.csf-modal .csf-modal-inner{height:auto}.csf-modal .csf-modal-content{height:calc(100vh - 200px)}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;user-select:none}.chosen-container *{box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;z-index:1010;width:100%;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15);clip:rect(0,0,0,0);clip-path:inset(100% 100%)}.chosen-container.chosen-with-drop .chosen-drop{clip:auto;clip-path:none}.chosen-container a{cursor:pointer}.chosen-container .chosen-single .group-name,.chosen-container .search-choice .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .chosen-single .group-name:after,.chosen-container .search-choice .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:24px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip:rect(0,0,0,0);clip-path:inset(100% 100%)}.chosen-container .chosen-results{color:#444;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border:1px solid #aaa;background-color:#fff;background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:0;outline:0;border:0!important;background:0 0!important;box-shadow:none;color:#999;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width:25px;height:25px;min-height:25px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 6px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:0;right:0;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:0 0}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;direction:rtl}
vendor/codestar-framework/assets/js/main.min.js CHANGED
@@ -1,3 +1,3 @@
1
- /* Codestar Framework | A Simple and Lightweight WordPress Option Framework - v2.2.4*/
2
 
3
  !function(I,_,b,y){"use strict";var T=T||{};T.funcs={},T.vars={onloaded:!1,$body:I("body"),$window:I(_),$document:I(b),$form_warning:null,is_confirm:!1,form_modified:!1,code_themes:[],is_rtl:I("body").hasClass("rtl")},T.helper={uid:function(e){return(e||"")+Math.random().toString(36).substr(2,9)},preg_quote:function(e){return(e+"").replace(/(\[|\])/g,"\\$1")},name_nested_replace:function(e,t){var n=new RegExp(T.helper.preg_quote(t+"[\\d+]"),"g");e.find(":radio").each(function(){(this.checked||this.orginal_checked)&&(this.orginal_checked=!0)}),e.each(function(e){I(this).find(":input").each(function(){this.name=this.name.replace(n,t+"["+e+"]"),this.orginal_checked&&(this.checked=!0)})})},debounce:function(i,s,a){var c;return function(){var e=this,t=arguments,n=a&&!c;clearTimeout(c),c=setTimeout(function(){c=null,a||i.apply(e,t)},s),n&&i.apply(e,t)}}},I.fn.csf_clone=function(){for(var e=I.fn.clone.apply(this,arguments),t=this.find("select").add(this.filter("select")),n=e.find("select").add(e.filter("select")),i=0;i<t.length;++i)for(var s=0;s<t[i].options.length;++s)!0===t[i].options[s].selected&&(n[i].options[s].selected=!0);return this.find(":radio").each(function(){this.orginal_checked=this.checked}),e},I.fn.csf_expand_all=function(){return this.each(function(){I(this).on("click",function(e){e.preventDefault(),I(".csf-wrapper").toggleClass("csf-show-all"),I(".csf-section").csf_reload_script(),I(this).find(".fa").toggleClass("fa-indent").toggleClass("fa-outdent")})})},I.fn.csf_nav_options=function(){return this.each(function(){var s,e=I(this),t=I(_),a=I("#wpwrap"),c=e.find("a");t.on("hashchange csf.hashchange",function(){var e=_.location.hash.replace("#tab=",""),t=e||c.first().attr("href").replace("#tab=",""),n=I('[data-tab-id="'+t+'"]');if(n.length){n.closest(".csf-tab-item").addClass("csf-tab-expanded").siblings().removeClass("csf-tab-expanded"),n.next().is("ul")&&(t=(n=n.next().find("li").first().find("a")).data("tab-id")),c.removeClass("csf-active"),n.addClass("csf-active"),s&&s.addClass("hidden");var i=I('[data-section-id="'+t+'"]');i.removeClass("hidden"),i.csf_reload_script(),I(".csf-section-id").val(i.index()+1),s=i,a.hasClass("wp-responsive-open")&&(I("html, body").animate({scrollTop:i.offset().top-50},200),a.removeClass("wp-responsive-open"))}}).trigger("csf.hashchange")})},I.fn.csf_nav_metabox=function(){return this.each(function(){var s,e=I(this),a=e.find("a"),c=e.parent().find(".csf-section");a.each(function(i){I(this).on("click",function(e){e.preventDefault();var t=I(this);a.removeClass("csf-active"),t.addClass("csf-active"),s!==y&&s.addClass("hidden");var n=c.eq(i);n.removeClass("hidden"),n.csf_reload_script(),s=n})}),a.first().trigger("click")})},I.fn.csf_page_templates=function(){this.length&&I(b).on("change",".editor-page-attributes__template select, #page_template",function(){var e=I(this).val()||"default";I(".csf-page-templates").removeClass("csf-metabox-show").addClass("csf-metabox-hide"),I(".csf-page-"+e.toLowerCase().replace(/[^a-zA-Z0-9]+/g,"-")).removeClass("csf-metabox-hide").addClass("csf-metabox-show")})},I.fn.csf_post_formats=function(){this.length&&I(b).on("change",'.editor-post-format select, #formatdiv input[name="post_format"]',function(){var e=I(this).val()||"default";e="0"===e?"default":e,I(".csf-post-formats").removeClass("csf-metabox-show").addClass("csf-metabox-hide"),I(".csf-post-format-"+e).removeClass("csf-metabox-hide").addClass("csf-metabox-show")})},I.fn.csf_search=function(){return this.each(function(){I(this).find("input").on("change keyup",function(){var n=I(this).val(),e=I(".csf-wrapper"),t=e.find(".csf-section").find("> .csf-field:not(.csf-depend-on)"),i=t.find("> .csf-title, .csf-search-tags");3<n.length?(t.addClass("csf-metabox-hide"),e.addClass("csf-search-all"),i.each(function(){var e=I(this);if(e.text().match(new RegExp(".*?"+n+".*?","i"))){var t=e.closest(".csf-field");t.removeClass("csf-metabox-hide"),t.parent().csf_reload_script()}})):(t.removeClass("csf-metabox-hide"),e.removeClass("csf-search-all"))})})},I.fn.csf_sticky=function(){return this.each(function(){var i=I(this),s=I(_),a=i.find(".csf-header-inner"),c=parseInt(a.css("padding-left"))+parseInt(a.css("padding-right")),r=0,o=!1,e=function(){o||requestAnimationFrame(function(){var e,t,n;e=i.offset().top,t=Math.max(32,e-r),n=s.innerWidth(),t<=32&&782<n?(a.css({width:i.outerWidth()-c}),i.css({height:i.outerHeight()}).addClass("csf-sticky")):(a.removeAttr("style"),i.removeAttr("style").removeClass("csf-sticky")),o=!1}),o=!0},t=function(){r=s.scrollTop(),e()};s.on("scroll resize",t),t()})},I.fn.csf_dependency=function(){return this.each(function(){var e=I(this),t=e.children("[data-controller]");if(t.length){var n=I.csf_deps.createRuleset(),i=I.csf_deps.createRuleset(),f=[],l=[];t.each(function(){var s=I(this),e=s.data("controller").split("|"),a=s.data("condition").split("|"),c=s.data("value").toString().split("|"),r=!!s.data("depend-global"),o=r?i:n;I.each(e,function(e,t){var n=c[e]||"",i=a[e]||a[0];(o=o.createRule('[data-depend-id="'+t+'"]',i,n)).include(s),r?l.push(t):f.push(t)})}),f.length&&I.csf_deps.enable(e,n,f),l.length&&I.csf_deps.enable(T.vars.$body,i,l)}})},I.fn.csf_field_accordion=function(){return this.each(function(){I(this).find(".csf-accordion-title").on("click",function(){var e=I(this),t=e.find(".csf-accordion-icon"),n=e.next();t.hasClass("fa-angle-right")?t.removeClass("fa-angle-right").addClass("fa-angle-down"):t.removeClass("fa-angle-down").addClass("fa-angle-right"),n.data("opened")||(n.csf_reload_script(),n.data("opened",!0)),n.toggleClass("csf-accordion-open")})})},I.fn.csf_field_backup=function(){return this.each(function(){if(_.wp.customize!==y){var t=this,n=I(this),i=(I("body"),n.find(".csf-import")),s=n.find(".csf-reset");t.notificationOverlay=function(){wp.customize.notifications&&wp.customize.OverlayNotification&&(wp.customize.state("saved").get()||(wp.customize.state("changesetStatus").set("trash"),wp.customize.each(function(e){e._dirty=!1}),wp.customize.state("saved").set(!0)),wp.customize.notifications.add(new wp.customize.OverlayNotification("csf_field_backup_notification",{type:"default",message:"&nbsp;",loading:!0})))},s.on("click",function(e){e.preventDefault(),T.vars.is_confirm&&(t.notificationOverlay(),_.wp.ajax.post("csf-reset",{unique:s.data("unique"),nonce:s.data("nonce")}).done(function(e){_.location.reload(!0)}).fail(function(e){alert(e.error),wp.customize.notifications.remove("csf_field_backup_notification")}))}),i.on("click",function(e){e.preventDefault(),T.vars.is_confirm&&(t.notificationOverlay(),_.wp.ajax.post("csf-import",{unique:i.data("unique"),nonce:i.data("nonce"),data:n.find(".csf-import-data").val()}).done(function(e){_.location.reload(!0)}).fail(function(e){alert(e.error),wp.customize.notifications.remove("csf_field_backup_notification")}))})}})},I.fn.csf_field_background=function(){return this.each(function(){I(this).find(".csf--background-image").csf_reload_script()})},I.fn.csf_field_code_editor=function(){return this.each(function(){if("function"==typeof CodeMirror){var t=I(this),i=t.find("textarea"),e=t.find(".CodeMirror"),s=i.data("editor");e.length&&e.remove();var a=setInterval(function(){if(t.is(":visible")){var n=CodeMirror.fromTextArea(i[0],s);if("default"!==s.theme&&-1===T.vars.code_themes.indexOf(s.theme)){var e=I("<link>");I("#csf-codemirror-css").after(e),e.attr({rel:"stylesheet",id:"csf-codemirror-"+s.theme+"-css",href:s.cdnURL+"/theme/"+s.theme+".min.css",type:"text/css",media:"all"}),T.vars.code_themes.push(s.theme)}CodeMirror.modeURL=s.cdnURL+"/mode/%N/%N.min.js",CodeMirror.autoLoadMode(n,s.mode),n.on("change",function(e,t){i.val(n.getValue()).trigger("change")}),clearInterval(a)}})}})},I.fn.csf_field_date=function(){return this.each(function(){var e=I(this),i=e.find("input"),s=e.find(".csf-date-settings").data("settings"),t={showAnim:"",beforeShow:function(e,t){I(t.dpDiv).addClass("csf-datepicker-wrapper")},onClose:function(e,t){I(t.dpDiv).removeClass("csf-datepicker-wrapper")}};s=I.extend({},s,t),2===i.length&&(s=I.extend({},s,{onSelect:function(e){I(this),i.first();var t=i.first().attr("id")===I(this).attr("id")?"minDate":"maxDate",n=I.datepicker.parseDate(s.dateFormat,e);i.not(this).datepicker("option",t,n)}})),i.each(function(){var e=I(this);e.hasClass("hasDatepicker")&&e.removeAttr("id").removeClass("hasDatepicker"),e.datepicker(s)})})},I.fn.csf_field_fieldset=function(){return this.each(function(){I(this).find(".csf-fieldset-content").csf_reload_script()})},I.fn.csf_field_gallery=function(){return this.each(function(){var a,e=I(this),c=e.find(".csf-edit-gallery"),r=e.find(".csf-clear-gallery"),o=e.find("ul"),f=e.find("input");e.find("img");e.on("click",".csf-button, .csf-edit-gallery",function(e){var t=I(this),n=f.val(),i=t.hasClass("csf-edit-gallery")?"edit":"add",s="add"!==i||n.length?"gallery-edit":"gallery";e.preventDefault(),void 0!==_.wp&&_.wp.media&&_.wp.media.gallery&&("gallery"===s?(a=_.wp.media({library:{type:"image"},frame:"post",state:"gallery",multiple:!0})).open():(a=_.wp.media.gallery.edit('[gallery ids="'+n+'"]'),"add"===i&&a.setState("gallery-library")),a.on("update",function(e){o.empty();var t=e.models.map(function(e){var t=e.toJSON(),n=t.sizes&&t.sizes.thumbnail&&t.sizes.thumbnail.url?t.sizes.thumbnail.url:t.url;return o.append('<li><img src="'+n+'"></li>'),t.id});f.val(t.join(",")).trigger("change"),r.removeClass("hidden"),c.removeClass("hidden")}))}),r.on("click",function(e){e.preventDefault(),o.empty(),f.val("").trigger("change"),r.addClass("hidden"),c.addClass("hidden")})})},I.fn.csf_field_group=function(){return this.each(function(){var e=I(this),t=e.children(".csf-fieldset"),n=t.length?t:e,r=n.children(".csf-cloneable-wrapper"),i=n.children(".csf-cloneable-hidden"),o=n.children(".csf-cloneable-max"),f=n.children(".csf-cloneable-min"),l=r.data("field-id"),d=Boolean(Number(r.data("title-number"))),h=parseInt(r.data("max")),s=parseInt(r.data("min"));r.hasClass("ui-accordion")&&r.find(".ui-accordion-header-icon").remove();var p=function(e){e.find(".csf-cloneable-title-number").each(function(e){I(this).html(I(this).closest(".csf-cloneable-item").index()+1+".")})};r.accordion({header:"> .csf-cloneable-item > .csf-cloneable-title",collapsible:!0,active:!1,animate:!1,heightStyle:"content",icons:{header:"csf-cloneable-header-icon fas fa-angle-right",activeHeader:"csf-cloneable-header-icon fas fa-angle-down"},activate:function(e,t){var n=t.newPanel,i=t.newHeader;if(n.length&&!n.data("opened")){var s=n.children().first().find(":input").first(),a=i.find(".csf-cloneable-value");s.on("change keyup",function(e){a.text(s.val())}),n.csf_reload_script(),n.data("opened",!0),n.data("retry",!1)}else n.data("retry")&&(n.csf_reload_script_retry(),n.data("retry",!1))}}),r.sortable({axis:"y",handle:".csf-cloneable-title,.csf-cloneable-sort",helper:"original",cursor:"move",placeholder:"widget-placeholder",start:function(e,t){r.accordion({active:!1}),r.sortable("refreshPositions"),t.item.children(".csf-cloneable-content").data("retry",!0)},update:function(e,t){T.helper.name_nested_replace(r.children(".csf-cloneable-item"),l),r.csf_customizer_refresh(),d&&p(r)}}),n.children(".csf-cloneable-add").on("click",function(e){e.preventDefault();var t=r.children(".csf-cloneable-item").length;if(f.hide(),h&&h<t+1)o.show();else{var n=i.csf_clone(!0);n.removeClass("csf-cloneable-hidden"),n.find(':input[name!="_pseudo"]').each(function(){this.name=this.name.replace("___","").replace(l+"[0]",l+"["+t+"]")}),r.append(n),r.accordion("refresh"),r.accordion({active:t}),r.csf_customizer_refresh(),r.csf_customizer_listen({closest:!0}),d&&p(r)}});var a=function(e){e.preventDefault();var t=r.children(".csf-cloneable-item").length;if(f.hide(),h&&h<t+1)o.show();else{var n=I(this).parent().parent(),i=n.children(".csf-cloneable-helper").csf_clone(!0),s=n.children(".csf-cloneable-title").csf_clone(),a=n.children(".csf-cloneable-content").csf_clone(),c=I('<div class="csf-cloneable-item" />');c.append(i),c.append(s),c.append(a),r.children().eq(n.index()).after(c),T.helper.name_nested_replace(r.children(".csf-cloneable-item"),l),r.accordion("refresh"),r.csf_customizer_refresh(),r.csf_customizer_listen({closest:!0}),d&&p(r)}};r.children(".csf-cloneable-item").children(".csf-cloneable-helper").on("click",".csf-cloneable-clone",a),n.children(".csf-cloneable-hidden").children(".csf-cloneable-helper").on("click",".csf-cloneable-clone",a);var c=function(e){e.preventDefault();var t=r.children(".csf-cloneable-item").length;o.hide(),f.hide(),s&&t-1<s?f.show():(I(this).closest(".csf-cloneable-item").remove(),T.helper.name_nested_replace(r.children(".csf-cloneable-item"),l),r.csf_customizer_refresh(),d&&p(r))};r.children(".csf-cloneable-item").children(".csf-cloneable-helper").on("click",".csf-cloneable-remove",c),n.children(".csf-cloneable-hidden").children(".csf-cloneable-helper").on("click",".csf-cloneable-remove",c)})},I.fn.csf_field_icon=function(){return this.each(function(){var n=I(this);n.on("click",".csf-icon-add",function(e){e.preventDefault();var t=I(this),i=I("#csf-modal-icon");i.removeClass("hidden"),T.vars.$icon_target=n,T.vars.icon_modal_loaded||(i.find(".csf-modal-loading").show(),_.wp.ajax.post("csf-get-icons",{nonce:t.data("nonce")}).done(function(e){i.find(".csf-modal-loading").hide(),T.vars.icon_modal_loaded=!0;var n=i.find(".csf-modal-load").html(e.content);n.on("click","i",function(e){e.preventDefault();var t=I(this).attr("title");T.vars.$icon_target.find(".csf-icon-preview i").removeAttr("class").addClass(t),T.vars.$icon_target.find(".csf-icon-preview").removeClass("hidden"),T.vars.$icon_target.find(".csf-icon-remove").removeClass("hidden"),T.vars.$icon_target.find("input").val(t).trigger("change"),i.addClass("hidden")}),i.on("change keyup",".csf-icon-search",function(){var t=I(this).val();n.find("i").each(function(){var e=I(this);e.attr("title").search(new RegExp(t,"i"))<0?e.hide():e.show()})}),i.on("click",".csf-modal-close, .csf-modal-overlay",function(){i.addClass("hidden")})}).fail(function(e){i.find(".csf-modal-loading").hide(),i.find(".csf-modal-load").html(e.error),i.on("click",function(){i.addClass("hidden")})}))}),n.on("click",".csf-icon-remove",function(e){e.preventDefault(),n.find(".csf-icon-preview").addClass("hidden"),n.find("input").val("").trigger("change"),I(this).addClass("hidden")})})},I.fn.csf_field_map=function(){return this.each(function(){if("undefined"!=typeof L){var e=I(this),t=e.find(".csf--map-osm"),n=e.find(".csf--map-search input"),i=e.find(".csf--latitude"),s=e.find(".csf--longitude"),a=e.find(".csf--zoom"),c=t.data("map"),r=L.map(t.get(0),c);L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",{attribution:'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'}).addTo(r);var o=L.marker(c.center,{draggable:!0}).addTo(r),f=function(e){i.val(e.lat),s.val(e.lng),a.val(r.getZoom())};r.on("click",function(e){o.setLatLng(e.latlng),f(e.latlng)}),r.on("zoom",function(){f(o.getLatLng())}),o.on("drag",function(){f(o.getLatLng())}),n.length||(n=I('[data-depend-id="'+e.find(".csf--address-field").data("address-field")+'"]'));var l={};n.autocomplete({source:function(e,n){var i=e.term;i in l?n(l[i]):I.get("https://nominatim.openstreetmap.org/search",{format:"json",q:i},function(e){var t;t=e.length?e.map(function(e){return{value:e.display_name,label:e.display_name,lat:e.lat,lon:e.lon}},"json"):[{value:"no-data",label:"No Results."}],l[i]=t,n(t)})},select:function(e,t){if("no-data"===t.item.value)return!1;var n=L.latLng(t.item.lat,t.item.lon);r.panTo(n),o.setLatLng(n),f(n)},create:function(e,t){I(this).autocomplete("widget").addClass("csf-map-ui-autocomplate")}});var d=function(){var e=L.latLng(i.val(),s.val());r.panTo(e),o.setLatLng(e)};i.on("change",d),s.on("change",d)}})},I.fn.csf_field_link=function(){return this.each(function(){var s=I(this),e=s.find(".csf--link"),a=s.find(".csf--add"),c=s.find(".csf--edit"),r=s.find(".csf--remove"),o=s.find(".csf--result"),t=T.helper.uid("csf-wplink-textarea-");a.on("click",function(e){e.preventDefault(),_.wpLink.open(t)}),c.on("click",function(e){e.preventDefault(),a.trigger("click"),I("#wp-link-url").val(s.find(".csf--url").val()),I("#wp-link-text").val(s.find(".csf--text").val()),I("#wp-link-target").prop("checked","_blank"===s.find(".csf--target").val())}),r.on("click",function(e){e.preventDefault(),s.find(".csf--url").val("").trigger("change"),s.find(".csf--text").val(""),s.find(".csf--target").val(""),a.removeClass("hidden"),c.addClass("hidden"),r.addClass("hidden"),o.parent().addClass("hidden")}),e.attr("id",t).on("change",function(){var e=_.wpLink.getAttrs(),t=e.href,n=I("#wp-link-text").val(),i=e.target?e.target:"";s.find(".csf--url").val(t).trigger("change"),s.find(".csf--text").val(n),s.find(".csf--target").val(i),o.html('{url:"'+t+'", text:"'+n+'", target:"'+i+'"}'),a.addClass("hidden"),c.removeClass("hidden"),r.removeClass("hidden"),o.parent().removeClass("hidden")})})},I.fn.csf_field_media=function(){return this.each(function(){var i,s=I(this),a=s.find(".csf--button"),c=s.find(".csf--remove"),r=a.data("library")&&a.data("library").split(",")||"",o=!!s.hasClass("csf-assign-field-background")&&s.closest(".csf-field-background").find(".csf--auto-attributes");a.on("click",function(e){e.preventDefault(),void 0!==_.wp&&_.wp.media&&_.wp.media.gallery&&(i||(i=_.wp.media({library:{type:r}})).on("select",function(){var e,t=i.state().get("selection").first().attributes,n=a.data("preview-size")||"thumbnail";r.length&&-1===r.indexOf(t.subtype)&&-1===r.indexOf(t.type)||(s.find(".csf--id").val(t.id),s.find(".csf--width").val(t.width),s.find(".csf--height").val(t.height),s.find(".csf--alt").val(t.alt),s.find(".csf--title").val(t.title),s.find(".csf--description").val(t.description),e=void 0!==t.sizes&&void 0!==t.sizes.thumbnail&&"thumbnail"===n?t.sizes.thumbnail.url:void 0!==t.sizes&&void 0!==t.sizes.full?t.sizes.full.url:"image"===t.type?t.url:t.icon,console.log(t),o&&o.removeClass("csf--attributes-hidden"),c.removeClass("hidden"),s.find(".csf--preview").removeClass("hidden"),s.find(".csf--src").attr("src",e),s.find(".csf--thumbnail").val(e),s.find(".csf--url").val(t.url).trigger("change"))}),i.open())}),c.on("click",function(e){e.preventDefault(),o&&o.addClass("csf--attributes-hidden"),c.addClass("hidden"),s.find("input").val(""),s.find(".csf--preview").addClass("hidden"),s.find(".csf--url").trigger("change")})})},I.fn.csf_field_repeater=function(){return this.each(function(){var e=I(this),t=e.children(".csf-fieldset"),n=t.length?t:e,c=n.children(".csf-repeater-wrapper"),i=n.children(".csf-repeater-hidden"),r=n.children(".csf-repeater-max"),o=n.children(".csf-repeater-min"),f=c.data("field-id"),l=parseInt(c.data("max")),s=parseInt(c.data("min"));c.children(".csf-repeater-item").children(".csf-repeater-content").csf_reload_script(),c.sortable({axis:"y",handle:".csf-repeater-sort",helper:"original",cursor:"move",placeholder:"widget-placeholder",update:function(e,t){T.helper.name_nested_replace(c.children(".csf-repeater-item"),f),c.csf_customizer_refresh(),t.item.csf_reload_script_retry()}}),n.children(".csf-repeater-add").on("click",function(e){e.preventDefault();var t=c.children(".csf-repeater-item").length;if(o.hide(),l&&l<t+1)r.show();else{var n=i.csf_clone(!0);n.removeClass("csf-repeater-hidden"),n.find(':input[name!="_pseudo"]').each(function(){this.name=this.name.replace("___","").replace(f+"[0]",f+"["+t+"]")}),c.append(n),n.children(".csf-repeater-content").csf_reload_script(),c.csf_customizer_refresh(),c.csf_customizer_listen({closest:!0})}});var a=function(e){e.preventDefault();var t=c.children(".csf-repeater-item").length;if(o.hide(),l&&l<t+1)r.show();else{var n=I(this).parent().parent().parent(),i=n.children(".csf-repeater-content").csf_clone(),s=n.children(".csf-repeater-helper").csf_clone(!0),a=I('<div class="csf-repeater-item" />');a.append(i),a.append(s),c.children().eq(n.index()).after(a),a.children(".csf-repeater-content").csf_reload_script(),T.helper.name_nested_replace(c.children(".csf-repeater-item"),f),c.csf_customizer_refresh(),c.csf_customizer_listen({closest:!0})}};c.children(".csf-repeater-item").children(".csf-repeater-helper").on("click",".csf-repeater-clone",a),n.children(".csf-repeater-hidden").children(".csf-repeater-helper").on("click",".csf-repeater-clone",a);var d=function(e){e.preventDefault();var t=c.children(".csf-repeater-item").length;r.hide(),o.hide(),s&&t-1<s?o.show():(I(this).closest(".csf-repeater-item").remove(),T.helper.name_nested_replace(c.children(".csf-repeater-item"),f),c.csf_customizer_refresh())};c.children(".csf-repeater-item").children(".csf-repeater-helper").on("click",".csf-repeater-remove",d),n.children(".csf-repeater-hidden").children(".csf-repeater-helper").on("click",".csf-repeater-remove",d)})},I.fn.csf_field_slider=function(){return this.each(function(){var e=I(this),n=e.find("input"),t=e.find(".csf-slider-ui"),i=n.data(),s=n.val()||0;t.hasClass("ui-slider")&&t.empty(),t.slider({range:"min",value:s,min:i.min||0,max:i.max||100,step:i.step||1,slide:function(e,t){n.val(t.value).trigger("change")}}),n.on("keyup",function(){t.slider("value",n.val())})})},I.fn.csf_field_sortable=function(){return this.each(function(){var n=I(this).find(".csf-sortable");n.sortable({axis:"y",helper:"original",cursor:"move",placeholder:"widget-placeholder",update:function(e,t){n.csf_customizer_refresh()}}),n.find(".csf-sortable-content").csf_reload_script()})},I.fn.csf_field_sorter=function(){return this.each(function(){var i=I(this),e=i.find(".csf-enabled"),t=i.find(".csf-disabled"),n=!!t.length&&t;e.sortable({connectWith:n,placeholder:"ui-sortable-placeholder",update:function(e,t){var n=t.item.find("input");t.item.parent().hasClass("csf-enabled")?n.attr("name",n.attr("name").replace("disabled","enabled")):n.attr("name",n.attr("name").replace("enabled","disabled")),i.csf_customizer_refresh()}}),n&&n.sortable({connectWith:e,placeholder:"ui-sortable-placeholder",update:function(e,t){i.csf_customizer_refresh()}})})},I.fn.csf_field_spinner=function(){return this.each(function(){var e=I(this),n=e.find("input"),t=e.find(".ui-button"),i=n.data();t.length&&t.remove(),n.spinner({min:i.min||0,max:i.max||100,step:i.step||1,create:function(e,t){i.unit&&n.after('<span class="ui-button csf--unit">'+i.unit+"</span>")},spin:function(e,t){n.val(t.value).trigger("change")}})})},I.fn.csf_field_switcher=function(){return this.each(function(){var n=I(this).find(".csf--switcher");n.on("click",function(){var e=0,t=n.find("input");n.hasClass("csf--active")?n.removeClass("csf--active"):(e=1,n.addClass("csf--active")),t.val(e).trigger("change")})})},I.fn.csf_field_tabbed=function(){return this.each(function(){var e=I(this),t=e.find(".csf-tabbed-nav a"),s=e.find(".csf-tabbed-content");s.eq(0).csf_reload_script(),t.on("click",function(e){e.preventDefault();var t=I(this),n=t.index(),i=s.eq(n);t.addClass("csf-tabbed-active").siblings().removeClass("csf-tabbed-active"),i.csf_reload_script(),i.removeClass("hidden").siblings().addClass("hidden")})})},I.fn.csf_field_typography=function(){return this.each(function(){var j=this,L=I(this),i=[],A=csf_typography_json.webfonts,t=csf_typography_json.googlestyles,q=csf_typography_json.defaultstyles;j.sanitize_subset=function(e){return e=(e=e.replace("-ext"," Extended")).charAt(0).toUpperCase()+e.slice(1)},j.sanitize_style=function(e){return t[e]?t[e]:e},j.load_google_font=function(e,t,n){e&&"object"==typeof WebFont&&(t=t?t.replace("normal",""):"",n=n?n.replace("normal",""):"",(t||n)&&(e=e+":"+t+n),-1===i.indexOf(e)&&WebFont.load({google:{families:[e]}}),i.push(e))},j.append_select_options=function(e,t,s,a,c){e.find("option").not(":first").remove();var r="";I.each(t,function(e,t){var n,i=t;n=c?s&&-1!==s.indexOf(t)?" selected":"":s&&s===t?" selected":"","subset"===a?i=j.sanitize_subset(t):"style"===a&&(i=j.sanitize_style(t)),r+='<option value="'+t+'"'+n+">"+i+"</option>"}),e.append(r).trigger("csf.change").trigger("chosen:updated")},j.init=function(){var l=[],e=L.find(".csf--typography"),d=L.find(".csf--type"),h=L.find(".csf--block-font-style"),v=e.data("unit"),g=e.data("line-height-unit"),t=e.data("exclude")?e.data("exclude").split(","):[];L.find(".csf--chosen").length&&L.find("select").each(function(){var e=I(this),t=e.parent().find(".chosen-container");t.length&&t.remove(),e.chosen({allow_single_deselect:!0,disable_search_threshold:15,width:"100%"})});var m=L.find(".csf--font-family"),i=m.val();m.find("option").not(":first-child").remove();var s="";I.each(A,function(n,e){t&&-1!==t.indexOf(n)||(s+='<optgroup label="'+e.label+'">',I.each(e.fonts,function(e,t){s+='<option value="'+(t="object"==typeof t?e:t)+'" data-type="'+n+'"'+(t===i?" selected":"")+">"+t+"</option>"}),s+="</optgroup>")}),m.append(s).trigger("chosen:updated");var p=L.find(".csf--block-font-style");if(p.length){var u=L.find(".csf--font-style-select"),_=u.val()?u.val().replace(/normal/g,""):"";u.on("change csf.change",function(e){var t=u.val();!t&&l&&-1===l.indexOf("normal")&&(t=l[0]);var n=t&&"italic"!==t&&"normal"===t?"normal":"",i=t&&"italic"!==t&&"normal"!==t?t.replace("italic",""):n,s=t&&"italic"===t.substr(-6)?"italic":"";L.find(".csf--font-weight").val(i),L.find(".csf--font-style").val(s)});var b=L.find(".csf--block-extra-styles");if(b.length)var y=L.find(".csf--extra-styles"),w=y.val()}var C=L.find(".csf--block-subset");if(C.length)var k=L.find(".csf--subset"),x=k.val(),z=k.data("multiple")||!1;var D=L.find(".csf--block-backup-font-family");m.on("change csf.change",function(e){C.length&&C.addClass("hidden"),b.length&&b.addClass("hidden"),D.length&&D.addClass("hidden");var t=m.find(":selected"),n=t.val(),i=t.data("type");if(i&&n){if("google"!==i&&"custom"!==i||!D.length||D.removeClass("hidden"),p.length){var s=q;"google"===i&&A[i].fonts[n][0]?s=A[i].fonts[n][0]:"custom"===i&&A[i].fonts[n]&&(s=A[i].fonts[n]);var a=-1!==(l=s).indexOf("normal")?"normal":s[0],c=_&&-1!==s.indexOf(_)?_:a;j.append_select_options(u,s,c,"style"),_=!1,p.removeClass("hidden"),"google"===i&&b.length&&1<s.length&&(j.append_select_options(y,s,w,"style",!0),w=!1,b.removeClass("hidden"))}if("google"===i&&C.length&&A[i].fonts[n][1]){var r=A[i].fonts[n][1],o=r.length<2&&"latin"!==r[0]?r[0]:"",f=x&&-1!==r.indexOf(x)?x:o;f=z&&x?x:f,j.append_select_options(k,r,f,"subset",z),x=!1,C.removeClass("hidden")}}else h.find(":input").val(""),C.length&&(k.find("option").not(":first-child").remove(),k.trigger("chosen:updated")),p.length&&(u.find("option").not(":first-child").remove(),u.trigger("chosen:updated"));d.val(i)}).trigger("csf.change");var O=L.find(".csf--block-preview");if(O.length){var S=L.find(".csf--preview");L.on("change",T.helper.debounce(function(e){O.removeClass("hidden");var t=m.val(),n=L.find(".csf--font-weight").val(),i=L.find(".csf--font-style").val(),s=L.find(".csf--font-size").val(),a=L.find(".csf--font-variant").val(),c=L.find(".csf--line-height").val(),r=L.find(".csf--text-align").val(),o=L.find(".csf--text-transform").val(),f=L.find(".csf--text-decoration").val(),l=L.find(".csf--color").val(),d=L.find(".csf--word-spacing").val(),h=L.find(".csf--letter-spacing").val(),p=L.find(".csf--custom-style").val();"google"===L.find(".csf--type").val()&&j.load_google_font(t,n,i);var u={};t&&(u.fontFamily=t),n&&(u.fontWeight=n),i&&(u.fontStyle=i),a&&(u.fontVariant=a),s&&(u.fontSize=s+v),c&&(u.lineHeight=c+g),h&&(u.letterSpacing=h+v),d&&(u.wordSpacing=d+v),r&&(u.textAlign=r),o&&(u.textTransform=o),f&&(u.textDecoration=f),l&&(u.color=l),S.removeAttr("style"),p&&S.attr("style",p),S.css(u)},100)),O.on("click",function(){S.toggleClass("csf--black-background");var e=O.find(".csf--toggle");e.hasClass("fa-toggle-off")?e.removeClass("fa-toggle-off").addClass("fa-toggle-on"):e.removeClass("fa-toggle-on").addClass("fa-toggle-off")}),O.hasClass("hidden")||L.trigger("change")}},j.init()})},I.fn.csf_field_upload=function(){return this.each(function(){var t,e=I(this),n=e.find("input"),i=e.find(".csf--button"),s=e.find(".csf--remove"),a=e.find(".csf--preview"),c=e.find(".csf--src"),r=i.data("library")&&i.data("library").split(",")||"";i.on("click",function(e){e.preventDefault(),void 0!==_.wp&&_.wp.media&&_.wp.media.gallery&&(t||(t=_.wp.media({library:{type:r}})).on("select",function(){var e=t.state().get("selection").first().attributes;r.length&&-1===r.indexOf(e.subtype)&&-1===r.indexOf(e.type)||n.val(e.url).trigger("change")}),t.open())}),s.on("click",function(e){e.preventDefault(),n.val("").trigger("change")}),n.on("change",function(e){var t=n.val();t?s.removeClass("hidden"):s.addClass("hidden"),a.length&&(-1!==I.inArray(t.split(".").pop().toLowerCase(),["jpg","jpeg","gif","png","svg","webp"])?(a.removeClass("hidden"),c.attr("src",t)):a.addClass("hidden"))})})},I.fn.csf_field_wp_editor=function(){return this.each(function(){if(void 0!==_.wp.editor&&void 0!==_.tinyMCEPreInit&&void 0!==_.tinyMCEPreInit.mceInit.csf_wp_editor){var e=I(this),t=e.find(".csf-wp-editor"),n=e.find("textarea");(e.find(".wp-editor-wrap").length||e.find(".mce-container").length)&&(t.empty(),t.append(n),n.css("display",""));var i=T.helper.uid("csf-editor-");n.attr("id",i);var s={tinymce:_.tinyMCEPreInit.mceInit.csf_wp_editor,quicktags:_.tinyMCEPreInit.qtInit.csf_wp_editor},a=t.data("editor-settings"),c=wp.oldEditor?wp.oldEditor:wp.editor;c&&c.hasOwnProperty("autop")&&(wp.editor.autop=c.autop,wp.editor.removep=c.removep,wp.editor.initialize=c.initialize);s.tinymce=I.extend({},s.tinymce,{selector:"#"+i,setup:function(t){t.on("change keyup",function(){var e=a.wpautop?t.getContent():wp.editor.removep(t.getContent());n.val(e).trigger("change")})}}),!1===a.tinymce&&(s.tinymce=!1,t.addClass("csf-no-tinymce")),!1===a.quicktags&&(s.quicktags=!1,t.addClass("csf-no-quicktags"));var r=setInterval(function(){e.is(":visible")&&(_.wp.editor.initialize(i,s),clearInterval(r))});if(a.media_buttons&&_.csf_media_buttons){var o=t.find(".wp-media-buttons");if(o.length)o.find(".csf-shortcode-button").data("editor-id",i);else{var f=I(_.csf_media_buttons);f.find(".csf-shortcode-button").data("editor-id",i),t.prepend(f)}}}})},I.fn.csf_confirm=function(){return this.each(function(){I(this).on("click",function(e){var t=I(this).data("confirm")||_.csf_vars.i18n.confirm;if(!confirm(t))return e.preventDefault(),!1;T.vars.is_confirm=!0,T.vars.form_modified=!1})})},I.fn.serializeObject=function(){var s={};return I.each(this.serializeArray(),function(e,t){var n=t.name,i=t.value;s[n]=s[n]===y?i:I.isArray(s[n])?s[n].concat(i):[s[n],i]}),s},I.fn.csf_save=function(){return this.each(function(){var i,s=I(this),c=I(".csf-save"),r=I(".csf-options"),o=!1;s.on("click",function(e){if(!o){var t=s.data("save"),n=s.val();c.attr("value",t),s.hasClass("csf-save-ajax")?(e.preventDefault(),r.addClass("csf-saving"),c.prop("disabled",!0),_.wp.ajax.post("csf_"+r.data("unique")+"_ajax_save",{data:I("#csf-form").serializeJSONCSF()}).done(function(e){if(I(".csf-error").remove(),Object.keys(e.errors).length){var a='<i class="csf-label-error csf-error">!</i>';I.each(e.errors,function(e,t){var n=I('[data-depend-id="'+e+'"]'),i=I('a[href="#tab='+n.closest(".csf-section").data("section-id")+'"]'),s=i.closest(".csf-tab-item");n.closest(".csf-fieldset").append('<p class="csf-error csf-error-text">'+t+"</p>"),i.find(".csf-error").length||i.append(a),s.find(".csf-arrow .csf-error").length||s.find(".csf-arrow").append(a)})}r.removeClass("csf-saving"),c.prop("disabled",!1).attr("value",n),o=!1,T.vars.form_modified=!1,T.vars.$form_warning.hide(),clearTimeout(i);var t=I(".csf-form-success");t.empty().append(e.notice).fadeIn("fast",function(){i=setTimeout(function(){t.fadeOut("fast")},1e3)})}).fail(function(e){alert(e.error)})):T.vars.form_modified=!1}o=!0})})},I.fn.csf_options=function(){return this.each(function(){var e=I(this),t=e.find(".csf-content"),n=e.find(".csf-form-success"),i=e.find(".csf-form-warning"),s=e.find(".csf-header .csf-save");(T.vars.$form_warning=i).length&&(_.onbeforeunload=function(){return!!T.vars.form_modified||y},t.on("change keypress",":input",function(){T.vars.form_modified||(n.hide(),i.fadeIn("fast"),T.vars.form_modified=!0)})),n.hasClass("csf-form-show")&&setTimeout(function(){n.fadeOut("fast")},1e3),I(b).keydown(function(e){if((e.ctrlKey||e.metaKey)&&83===e.which)return s.trigger("click"),e.preventDefault(),!1})})},I.fn.csf_taxonomy=function(){return this.each(function(){var e=I(this),t=e.parents("form");if("addtag"===t.attr("id")){var n=t.find("#submit"),i=e.find(".csf-field").csf_clone();n.on("click",function(){t.find(".form-required").hasClass("form-invalid")||(e.data("inited",!1),e.empty(),e.html(i),i=i.csf_clone(),e.csf_reload_script())})}})},I.fn.csf_shortcode=function(){var m=this;return m.shortcode_parse=function(e,n){var i="";return I.each(e,function(e,t){i+="["+(n=n||e),I.each(t,function(e,t){"content"===e?(i+="]",i+=t,i+="[/"+n):i+=m.shortcode_tags(e,t)}),i+="]"}),i},m.shortcode_tags=function(e,t){var n="";return""!==t&&("object"!=typeof t||I.isArray(t)?n+=" "+e.replace("-","_")+'="'+t.toString()+'"':I.each(t,function(e,t){switch(e){case"background-image":t=t.url?t.url:""}""!==t&&(n+=" "+e.replace("-","_")+'="'+t.toString()+'"')})),n},m.insertAtChars=function(e,t){var n=void 0!==e[0].name?e[0]:e;return n.value.length&&void 0!==n.selectionStart?(n.focus(),n.value.substring(0,n.selectionStart)+t+n.value.substring(n.selectionEnd,n.value.length)):(n.focus(),t)},m.send_to_editor=function(e,t){var n;if("undefined"!=typeof tinymce&&(n=tinymce.get(t)),n&&!n.isHidden())n.execCommand("mceInsertContent",!1,e);else{var i=I("#"+t);i.val(m.insertAtChars(i,e)).trigger("change")}},this.each(function(){var c,r,o,n,f,l,d,s,h,p=I(this),i=p.find(".csf-modal-load"),u=(p.find(".csf-modal-content"),p.find(".csf-modal-insert")),a=p.find(".csf-modal-loading"),t=p.find("select"),v=p.data("modal-id"),g=p.data("nonce");I(b).on("click",'.csf-shortcode-button[data-modal-id="'+v+'"]',function(e){e.preventDefault(),h=I(this),c=h.data("editor-id")||!1,r=h.data("target-id")||!1,o=h.data("gutenberg-id")||!1,p.removeClass("hidden"),p.hasClass("csf-shortcode-single")&&f===y&&t.trigger("change")}),t.on("change",function(){var e=I(this),t=e.find(":selected");n=e.val(),f=t.data("shortcode"),l=t.data("view")||"normal",d=t.data("group")||f,i.empty(),n?(a.show(),_.wp.ajax.post("csf-get-shortcode-"+v,{shortcode_key:n,nonce:g}).done(function(e){a.hide();var t=I(e.content).appendTo(i);u.parent().removeClass("hidden"),s=t.find(".csf--repeat-shortcode").csf_clone(),t.csf_reload_script(),t.find(".csf-fields").csf_reload_script()})):u.parent().addClass("hidden")}),u.on("click",function(e){if(e.preventDefault(),!u.prop("disabled")&&!u.attr("disabled")){var i="",t=p.find(".csf-field:not(.csf-depend-on)").find(":input:not(.ignore)").serializeObjectCSF();switch(l){case"contents":var n=f?t[f]:t;I.each(n,function(e,t){var n=f||e;i+="["+n+"]"+t+"[/"+n+"]"});break;case"group":i+="["+f,I.each(t[f],function(e,t){i+=m.shortcode_tags(e,t)}),i+="]",i+=m.shortcode_parse(t[d],d),i+="[/"+f+"]";break;case"repeater":i+=m.shortcode_parse(t[d],d);break;default:i+=m.shortcode_parse(t)}if(i=""===i?"["+f+"]":i,o){var s=_.csf_gutenberg_props.attributes.hasOwnProperty("shortcode")?_.csf_gutenberg_props.attributes.shortcode:"";_.csf_gutenberg_props.setAttributes({shortcode:s+i})}else if(c)m.send_to_editor(i,c);else{var a=r?I(r):h.parent().find("textarea");a.val(m.insertAtChars(a,i)).trigger("change")}p.addClass("hidden")}}),p.on("click",".csf--repeat-button",function(e){e.preventDefault();var t=p.find(".csf--repeatable"),n=s.csf_clone(),i=n.find(".csf-repeat-remove");n.appendTo(t);n.find(".csf-fields").csf_reload_script(),T.helper.name_nested_replace(p.find(".csf--repeat-shortcode"),d),i.on("click",function(){n.remove(),T.helper.name_nested_replace(p.find(".csf--repeat-shortcode"),d)})}),p.on("click",".csf-modal-close, .csf-modal-overlay",function(){p.addClass("hidden")})})},"function"==typeof Color&&(Color.prototype.toString=function(){if(this._alpha<1)return this.toCSS("rgba",this._alpha).replace(/\s+/g,"");var e=parseInt(this._color,10).toString(16);if(this.error)return"";if(e.length<6)for(var t=6-e.length-1;0<=t;t--)e="0"+e;return"#"+e}),T.funcs.parse_color=function(e){var t=e.replace(/\s+/g,""),n=-1!==t.indexOf("rgba")?parseFloat(100*t.replace(/^.*,(.+)\)/,"$1")):100;return{value:t,transparent:n,rgba:n<100}},I.fn.csf_color=function(){return this.each(function(){var c,r=I(this),o=T.funcs.parse_color(r.val()),e=!_.csf_vars.color_palette.length||_.csf_vars.color_palette;r.hasClass("wp-color-picker")&&r.closest(".wp-picker-container").after(r).remove(),r.wpColorPicker({palettes:e,change:function(e,t){var n=t.color.toString();c.removeClass("csf--transparent-active"),c.find(".csf--transparent-offset").css("background-color",n),r.val(n).trigger("change")},create:function(){c=r.closest(".wp-picker-container");var i=r.data("a8cIris"),e=I('<div class="csf--transparent-wrap"><div class="csf--transparent-slider"></div><div class="csf--transparent-offset"></div><div class="csf--transparent-text"></div><div class="csf--transparent-button">transparent <i class="fas fa-toggle-off"></i></div></div>').appendTo(c.find(".wp-picker-holder")),s=e.find(".csf--transparent-slider"),a=e.find(".csf--transparent-text"),n=e.find(".csf--transparent-offset"),t=e.find(".csf--transparent-button");"transparent"===r.val()&&c.addClass("csf--transparent-active"),t.on("click",function(){"transparent"!==r.val()?(r.val("transparent").trigger("change").removeClass("iris-error"),c.addClass("csf--transparent-active")):(r.val(i._color.toString()).trigger("change"),c.removeClass("csf--transparent-active"))}),s.slider({value:o.transparent,step:1,min:0,max:100,slide:function(e,t){var n=parseFloat(t.value/100);i._color._alpha=n,r.wpColorPicker("color",i._color.toString()),a.text(1===n||0===n?"":n)},create:function(){var e=parseFloat(o.transparent/100),t=e<1?e:"";a.text(t),n.css("background-color",o.value),c.on("click",".wp-picker-clear",function(){i._color._alpha=1,a.text(""),s.slider("option","value",100),c.removeClass("csf--transparent-active"),r.trigger("change")}),c.on("click",".wp-picker-default",function(){var e=T.funcs.parse_color(r.data("default-color")),t=parseFloat(e.transparent/100),n=t<1?t:"";i._color._alpha=t,a.text(n),s.slider("option","value",e.transparent),"transparent"===e.value&&(r.removeClass("iris-error"),c.addClass("csf--transparent-active"))})}})}})})},I.fn.csf_chosen=function(){return this.each(function(){var a=I(this),e=a.parent().find(".chosen-container"),t=a.hasClass("csf-chosen-sortable")||!1,n=a.hasClass("csf-chosen-ajax")||!1,i=a.attr("multiple")||!1,s=i?"100%":"auto",c=I.extend({allow_single_deselect:!0,disable_search_threshold:10,width:s,no_results_text:_.csf_vars.i18n.no_results_text},a.data("chosen-settings"));if(e.length&&e.remove(),n){var r=I.extend({data:{type:"post",nonce:""},allow_single_deselect:!0,disable_search_threshold:-1,width:"100%",min_length:3,type_delay:500,typing_text:_.csf_vars.i18n.typing_text,searching_text:_.csf_vars.i18n.searching_text,no_results_text:_.csf_vars.i18n.no_results_text},a.data("chosen-settings"));a.CSFAjaxChosen(r)}else a.chosen(c);if(i){var o=a.parent().find(".csf-hide-select"),f=o.val()||[];a.on("change",function(e,t){t&&t.selected?o.append('<option value="'+t.selected+'" selected="selected">'+t.selected+"</option>"):t&&t.deselected&&o.find('option[value="'+t.deselected+'"]').remove(),_.wp.customize!==y&&0===o.children().length&&o.data("customize-setting-link")&&_.wp.customize.control(o.data("customize-setting-link")).setting.set(""),o.trigger("change")}),a.CSFChosenOrder(f,!0)}if(t){var l=a.parent().find(".chosen-container").find(".chosen-choices");l.bind("mousedown",function(e){I(e.target).is("span")&&e.stopPropagation()}),l.sortable({items:"li:not(.search-field)",helper:"orginal",cursor:"move",placeholder:"search-choice-placeholder",start:function(e,t){t.placeholder.width(t.item.innerWidth()),t.placeholder.height(t.item.innerHeight())},update:function(e,t){var i="",s=a.data("chosen"),n=a.parent().find(".csf-hide-select");l.find(".search-choice-close").each(function(){var n=I(this).data("option-array-index");I.each(s.results_data,function(e,t){t.array_index===n&&(i+='<option value="'+t.value+'" selected>'+t.value+"</option>")})}),n.children().remove(),n.append(i),n.trigger("change")}})}})},I.fn.csf_checkbox=function(){return this.each(function(){var e=I(this),t=e.find(".csf--input"),n=e.find(".csf--checkbox");n.on("click",function(){t.val(Number(n.prop("checked"))).trigger("change")})})},I.fn.csf_siblings=function(){return this.each(function(){var t=I(this),e=t.find(".csf--sibling"),n=t.data("multiple")||!1;e.on("click",function(){var e=I(this);n?e.hasClass("csf--active")?(e.removeClass("csf--active"),e.find("input").prop("checked",!1).trigger("change")):(e.addClass("csf--active"),e.find("input").prop("checked",!0).trigger("change")):(t.find("input").prop("checked",!1),e.find("input").prop("checked",!0).trigger("change"),e.addClass("csf--active").siblings().removeClass("csf--active"))})})},I.fn.csf_help=function(){return this.each(function(){var e,t,n=I(this);n.on({mouseenter:function(){e=I('<div class="csf-tooltip"></div>').html(n.find(".csf-help-text").html()).appendTo("body"),t=T.vars.is_rtl?n.offset().left+24:n.offset().left-e.outerWidth(),e.css({top:n.offset().top-(e.outerHeight()/2-14),left:t})},mouseleave:function(){e!==y&&e.remove()}})})},I.fn.csf_customizer_refresh=function(){return this.each(function(){var e=I(this),t=e.closest(".csf-customize-complex");if(t.length){var n=t.data("unique-id");if(n===y)return;var i=t.find(":input"),s=t.data("option-id"),a=i.serializeObjectCSF(),c=!I.isEmptyObject(a)&&a[n]&&a[n][s]?a[n][s]:"",r=_.wp.customize.control(n+"["+s+"]");r.setting._value=null,r.setting.set(c)}else e.find(":input").first().trigger("change");I(b).trigger("csf-customizer-refresh",e)})},I.fn.csf_customizer_listen=function(e){var t=I.extend({closest:!1},e);return this.each(function(){if(_.wp.customize!==y){var n=t.closest?I(this).closest(".csf-customize-complex"):I(this),e=n.find(":input"),i=n.data("unique-id"),s=n.data("option-id");i!==y&&e.on("change keyup",function(){var e=n.find(":input").serializeObjectCSF(),t=!I.isEmptyObject(e)&&e[i]&&e[i][s]?e[i][s]:"";_.wp.customize.control(i+"["+s+"]").setting.set(t)})}})},I(b).on("expanded",".control-section",function(){var e=I(this);if(e.hasClass("open")&&!e.data("inited")){var t=e.find(".csf-customize-field"),n=e.find(".csf-customize-complex");t.length&&(e.csf_dependency(),t.csf_reload_script({dependency:!1}),n.csf_customizer_listen()),e.data("inited",!0)}}),T.vars.$window.on("resize csf.resize",T.helper.debounce(function(e){(-1<navigator.userAgent.indexOf("AppleWebKit/")?T.vars.$window.width():_.innerWidth)<=782&&!T.vars.onloaded&&(I(".csf-section").csf_reload_script(),T.vars.onloaded=!0)},200)).trigger("csf.resize"),I.fn.csf_widgets=function(){return this.each(function(){I(b).on("widget-added widget-updated",function(e,t){var n=t.find(".csf-fields");n.length&&n.csf_reload_script()}),I(b).on("click",".widget-top",function(e){var t=I(this).parent().find(".csf-fields");t.length&&t.csf_reload_script()}),I(".widgets-sortables, .control-section-sidebar").on("sortstop",function(e,t){t.item.find(".csf-fields").csf_reload_script_retry()})})},I.fn.csf_nav_menu=function(){return this.each(function(){var e=I(this);e.on("click","a.item-edit",function(){I(this).closest("li.menu-item").find(".csf-fields").csf_reload_script()}),e.on("sortstop",function(e,t){t.item.find(".csf-fields").csf_reload_script_retry()})})},I.fn.csf_reload_script_retry=function(){return this.each(function(){var e=I(this);e.data("inited")&&e.children(".csf-field-wp_editor").csf_field_wp_editor()})},I.fn.csf_reload_script=function(e){var t=I.extend({dependency:!0},e);return this.each(function(){var e=I(this);e.data("inited")||(e.children(".csf-field-accordion").csf_field_accordion(),e.children(".csf-field-backup").csf_field_backup(),e.children(".csf-field-background").csf_field_background(),e.children(".csf-field-code_editor").csf_field_code_editor(),e.children(".csf-field-date").csf_field_date(),e.children(".csf-field-fieldset").csf_field_fieldset(),e.children(".csf-field-gallery").csf_field_gallery(),e.children(".csf-field-group").csf_field_group(),e.children(".csf-field-icon").csf_field_icon(),e.children(".csf-field-link").csf_field_link(),e.children(".csf-field-media").csf_field_media(),e.children(".csf-field-map").csf_field_map(),e.children(".csf-field-repeater").csf_field_repeater(),e.children(".csf-field-slider").csf_field_slider(),e.children(".csf-field-sortable").csf_field_sortable(),e.children(".csf-field-sorter").csf_field_sorter(),e.children(".csf-field-spinner").csf_field_spinner(),e.children(".csf-field-switcher").csf_field_switcher(),e.children(".csf-field-tabbed").csf_field_tabbed(),e.children(".csf-field-typography").csf_field_typography(),e.children(".csf-field-upload").csf_field_upload(),e.children(".csf-field-wp_editor").csf_field_wp_editor(),e.children(".csf-field-border").find(".csf-color").csf_color(),e.children(".csf-field-background").find(".csf-color").csf_color(),e.children(".csf-field-color").find(".csf-color").csf_color(),e.children(".csf-field-color_group").find(".csf-color").csf_color(),e.children(".csf-field-link_color").find(".csf-color").csf_color(),e.children(".csf-field-typography").find(".csf-color").csf_color(),e.children(".csf-field-select").find(".csf-chosen").csf_chosen(),e.children(".csf-field-checkbox").find(".csf-checkbox").csf_checkbox(),e.children(".csf-field-button_set").find(".csf-siblings").csf_siblings(),e.children(".csf-field-image_select").find(".csf-siblings").csf_siblings(),e.children(".csf-field-palette").find(".csf-siblings").csf_siblings(),e.children(".csf-field").find(".csf-help").csf_help(),t.dependency&&e.csf_dependency(),e.data("inited",!0),I(b).trigger("csf-reload-script",e))})},I(b).ready(function(){I(".csf-save").csf_save(),I(".csf-options").csf_options(),I(".csf-sticky-header").csf_sticky(),I(".csf-nav-options").csf_nav_options(),I(".csf-nav-metabox").csf_nav_metabox(),I(".csf-taxonomy").csf_taxonomy(),I(".csf-page-templates").csf_page_templates(),I(".csf-post-formats").csf_post_formats(),I(".csf-shortcode").csf_shortcode(),I(".csf-search").csf_search(),I(".csf-confirm").csf_confirm(),I(".csf-expand-all").csf_expand_all(),I(".csf-onload").csf_reload_script(),I("#widgets-editor").csf_widgets(),I("#widgets-right").csf_widgets(),I("#menu-to-edit").csf_nav_menu()})}(jQuery,window,document);
1
+ /* Codestar Framework | A Simple and Lightweight WordPress Option Framework - v2.2.5*/
2
 
3
  !function(I,_,b,y){"use strict";var T=T||{};T.funcs={},T.vars={onloaded:!1,$body:I("body"),$window:I(_),$document:I(b),$form_warning:null,is_confirm:!1,form_modified:!1,code_themes:[],is_rtl:I("body").hasClass("rtl")},T.helper={uid:function(e){return(e||"")+Math.random().toString(36).substr(2,9)},preg_quote:function(e){return(e+"").replace(/(\[|\])/g,"\\$1")},name_nested_replace:function(e,t){var n=new RegExp(T.helper.preg_quote(t+"[\\d+]"),"g");e.find(":radio").each(function(){(this.checked||this.orginal_checked)&&(this.orginal_checked=!0)}),e.each(function(e){I(this).find(":input").each(function(){this.name=this.name.replace(n,t+"["+e+"]"),this.orginal_checked&&(this.checked=!0)})})},debounce:function(i,s,a){var c;return function(){var e=this,t=arguments,n=a&&!c;clearTimeout(c),c=setTimeout(function(){c=null,a||i.apply(e,t)},s),n&&i.apply(e,t)}}},I.fn.csf_clone=function(){for(var e=I.fn.clone.apply(this,arguments),t=this.find("select").add(this.filter("select")),n=e.find("select").add(e.filter("select")),i=0;i<t.length;++i)for(var s=0;s<t[i].options.length;++s)!0===t[i].options[s].selected&&(n[i].options[s].selected=!0);return this.find(":radio").each(function(){this.orginal_checked=this.checked}),e},I.fn.csf_expand_all=function(){return this.each(function(){I(this).on("click",function(e){e.preventDefault(),I(".csf-wrapper").toggleClass("csf-show-all"),I(".csf-section").csf_reload_script(),I(this).find(".fa").toggleClass("fa-indent").toggleClass("fa-outdent")})})},I.fn.csf_nav_options=function(){return this.each(function(){var s,e=I(this),t=I(_),a=I("#wpwrap"),c=e.find("a");t.on("hashchange csf.hashchange",function(){var e=_.location.hash.replace("#tab=",""),t=e||c.first().attr("href").replace("#tab=",""),n=I('[data-tab-id="'+t+'"]');if(n.length){n.closest(".csf-tab-item").addClass("csf-tab-expanded").siblings().removeClass("csf-tab-expanded"),n.next().is("ul")&&(t=(n=n.next().find("li").first().find("a")).data("tab-id")),c.removeClass("csf-active"),n.addClass("csf-active"),s&&s.addClass("hidden");var i=I('[data-section-id="'+t+'"]');i.removeClass("hidden"),i.csf_reload_script(),I(".csf-section-id").val(i.index()+1),s=i,a.hasClass("wp-responsive-open")&&(I("html, body").animate({scrollTop:i.offset().top-50},200),a.removeClass("wp-responsive-open"))}}).trigger("csf.hashchange")})},I.fn.csf_nav_metabox=function(){return this.each(function(){var s,e=I(this),a=e.find("a"),c=e.parent().find(".csf-section");a.each(function(i){I(this).on("click",function(e){e.preventDefault();var t=I(this);a.removeClass("csf-active"),t.addClass("csf-active"),s!==y&&s.addClass("hidden");var n=c.eq(i);n.removeClass("hidden"),n.csf_reload_script(),s=n})}),a.first().trigger("click")})},I.fn.csf_page_templates=function(){this.length&&I(b).on("change",".editor-page-attributes__template select, #page_template",function(){var e=I(this).val()||"default";I(".csf-page-templates").removeClass("csf-metabox-show").addClass("csf-metabox-hide"),I(".csf-page-"+e.toLowerCase().replace(/[^a-zA-Z0-9]+/g,"-")).removeClass("csf-metabox-hide").addClass("csf-metabox-show")})},I.fn.csf_post_formats=function(){this.length&&I(b).on("change",'.editor-post-format select, #formatdiv input[name="post_format"]',function(){var e=I(this).val()||"default";e="0"===e?"default":e,I(".csf-post-formats").removeClass("csf-metabox-show").addClass("csf-metabox-hide"),I(".csf-post-format-"+e).removeClass("csf-metabox-hide").addClass("csf-metabox-show")})},I.fn.csf_search=function(){return this.each(function(){I(this).find("input").on("change keyup",function(){var n=I(this).val(),e=I(".csf-wrapper"),t=e.find(".csf-section").find("> .csf-field:not(.csf-depend-on)"),i=t.find("> .csf-title, .csf-search-tags");3<n.length?(t.addClass("csf-metabox-hide"),e.addClass("csf-search-all"),i.each(function(){var e=I(this);if(e.text().match(new RegExp(".*?"+n+".*?","i"))){var t=e.closest(".csf-field");t.removeClass("csf-metabox-hide"),t.parent().csf_reload_script()}})):(t.removeClass("csf-metabox-hide"),e.removeClass("csf-search-all"))})})},I.fn.csf_sticky=function(){return this.each(function(){var i=I(this),s=I(_),a=i.find(".csf-header-inner"),c=parseInt(a.css("padding-left"))+parseInt(a.css("padding-right")),r=0,o=!1,e=function(){o||requestAnimationFrame(function(){var e,t,n;e=i.offset().top,t=Math.max(32,e-r),n=s.innerWidth(),t<=32&&782<n?(a.css({width:i.outerWidth()-c}),i.css({height:i.outerHeight()}).addClass("csf-sticky")):(a.removeAttr("style"),i.removeAttr("style").removeClass("csf-sticky")),o=!1}),o=!0},t=function(){r=s.scrollTop(),e()};s.on("scroll resize",t),t()})},I.fn.csf_dependency=function(){return this.each(function(){var e=I(this),t=e.children("[data-controller]");if(t.length){var n=I.csf_deps.createRuleset(),i=I.csf_deps.createRuleset(),f=[],l=[];t.each(function(){var s=I(this),e=s.data("controller").split("|"),a=s.data("condition").split("|"),c=s.data("value").toString().split("|"),r=!!s.data("depend-global"),o=r?i:n;I.each(e,function(e,t){var n=c[e]||"",i=a[e]||a[0];(o=o.createRule('[data-depend-id="'+t+'"]',i,n)).include(s),r?l.push(t):f.push(t)})}),f.length&&I.csf_deps.enable(e,n,f),l.length&&I.csf_deps.enable(T.vars.$body,i,l)}})},I.fn.csf_field_accordion=function(){return this.each(function(){I(this).find(".csf-accordion-title").on("click",function(){var e=I(this),t=e.find(".csf-accordion-icon"),n=e.next();t.hasClass("fa-angle-right")?t.removeClass("fa-angle-right").addClass("fa-angle-down"):t.removeClass("fa-angle-down").addClass("fa-angle-right"),n.data("opened")||(n.csf_reload_script(),n.data("opened",!0)),n.toggleClass("csf-accordion-open")})})},I.fn.csf_field_backup=function(){return this.each(function(){if(_.wp.customize!==y){var t=this,n=I(this),i=(I("body"),n.find(".csf-import")),s=n.find(".csf-reset");t.notificationOverlay=function(){wp.customize.notifications&&wp.customize.OverlayNotification&&(wp.customize.state("saved").get()||(wp.customize.state("changesetStatus").set("trash"),wp.customize.each(function(e){e._dirty=!1}),wp.customize.state("saved").set(!0)),wp.customize.notifications.add(new wp.customize.OverlayNotification("csf_field_backup_notification",{type:"default",message:"&nbsp;",loading:!0})))},s.on("click",function(e){e.preventDefault(),T.vars.is_confirm&&(t.notificationOverlay(),_.wp.ajax.post("csf-reset",{unique:s.data("unique"),nonce:s.data("nonce")}).done(function(e){_.location.reload(!0)}).fail(function(e){alert(e.error),wp.customize.notifications.remove("csf_field_backup_notification")}))}),i.on("click",function(e){e.preventDefault(),T.vars.is_confirm&&(t.notificationOverlay(),_.wp.ajax.post("csf-import",{unique:i.data("unique"),nonce:i.data("nonce"),data:n.find(".csf-import-data").val()}).done(function(e){_.location.reload(!0)}).fail(function(e){alert(e.error),wp.customize.notifications.remove("csf_field_backup_notification")}))})}})},I.fn.csf_field_background=function(){return this.each(function(){I(this).find(".csf--background-image").csf_reload_script()})},I.fn.csf_field_code_editor=function(){return this.each(function(){if("function"==typeof CodeMirror){var t=I(this),i=t.find("textarea"),e=t.find(".CodeMirror"),s=i.data("editor");e.length&&e.remove();var a=setInterval(function(){if(t.is(":visible")){var n=CodeMirror.fromTextArea(i[0],s);if("default"!==s.theme&&-1===T.vars.code_themes.indexOf(s.theme)){var e=I("<link>");I("#csf-codemirror-css").after(e),e.attr({rel:"stylesheet",id:"csf-codemirror-"+s.theme+"-css",href:s.cdnURL+"/theme/"+s.theme+".min.css",type:"text/css",media:"all"}),T.vars.code_themes.push(s.theme)}CodeMirror.modeURL=s.cdnURL+"/mode/%N/%N.min.js",CodeMirror.autoLoadMode(n,s.mode),n.on("change",function(e,t){i.val(n.getValue()).trigger("change")}),clearInterval(a)}})}})},I.fn.csf_field_date=function(){return this.each(function(){var e=I(this),i=e.find("input"),s=e.find(".csf-date-settings").data("settings"),t={showAnim:"",beforeShow:function(e,t){I(t.dpDiv).addClass("csf-datepicker-wrapper")},onClose:function(e,t){I(t.dpDiv).removeClass("csf-datepicker-wrapper")}};s=I.extend({},s,t),2===i.length&&(s=I.extend({},s,{onSelect:function(e){I(this),i.first();var t=i.first().attr("id")===I(this).attr("id")?"minDate":"maxDate",n=I.datepicker.parseDate(s.dateFormat,e);i.not(this).datepicker("option",t,n)}})),i.each(function(){var e=I(this);e.hasClass("hasDatepicker")&&e.removeAttr("id").removeClass("hasDatepicker"),e.datepicker(s)})})},I.fn.csf_field_fieldset=function(){return this.each(function(){I(this).find(".csf-fieldset-content").csf_reload_script()})},I.fn.csf_field_gallery=function(){return this.each(function(){var a,e=I(this),c=e.find(".csf-edit-gallery"),r=e.find(".csf-clear-gallery"),o=e.find("ul"),f=e.find("input");e.find("img");e.on("click",".csf-button, .csf-edit-gallery",function(e){var t=I(this),n=f.val(),i=t.hasClass("csf-edit-gallery")?"edit":"add",s="add"!==i||n.length?"gallery-edit":"gallery";e.preventDefault(),void 0!==_.wp&&_.wp.media&&_.wp.media.gallery&&("gallery"===s?(a=_.wp.media({library:{type:"image"},frame:"post",state:"gallery",multiple:!0})).open():(a=_.wp.media.gallery.edit('[gallery ids="'+n+'"]'),"add"===i&&a.setState("gallery-library")),a.on("update",function(e){o.empty();var t=e.models.map(function(e){var t=e.toJSON(),n=t.sizes&&t.sizes.thumbnail&&t.sizes.thumbnail.url?t.sizes.thumbnail.url:t.url;return o.append('<li><img src="'+n+'"></li>'),t.id});f.val(t.join(",")).trigger("change"),r.removeClass("hidden"),c.removeClass("hidden")}))}),r.on("click",function(e){e.preventDefault(),o.empty(),f.val("").trigger("change"),r.addClass("hidden"),c.addClass("hidden")})})},I.fn.csf_field_group=function(){return this.each(function(){var e=I(this),t=e.children(".csf-fieldset"),n=t.length?t:e,r=n.children(".csf-cloneable-wrapper"),i=n.children(".csf-cloneable-hidden"),o=n.children(".csf-cloneable-max"),f=n.children(".csf-cloneable-min"),l=r.data("field-id"),d=Boolean(Number(r.data("title-number"))),h=parseInt(r.data("max")),s=parseInt(r.data("min"));r.hasClass("ui-accordion")&&r.find(".ui-accordion-header-icon").remove();var p=function(e){e.find(".csf-cloneable-title-number").each(function(e){I(this).html(I(this).closest(".csf-cloneable-item").index()+1+".")})};r.accordion({header:"> .csf-cloneable-item > .csf-cloneable-title",collapsible:!0,active:!1,animate:!1,heightStyle:"content",icons:{header:"csf-cloneable-header-icon fas fa-angle-right",activeHeader:"csf-cloneable-header-icon fas fa-angle-down"},activate:function(e,t){var n=t.newPanel,i=t.newHeader;if(n.length&&!n.data("opened")){var s=n.children().first().find(":input").first(),a=i.find(".csf-cloneable-value");s.on("change keyup",function(e){a.text(s.val())}),n.csf_reload_script(),n.data("opened",!0),n.data("retry",!1)}else n.data("retry")&&(n.csf_reload_script_retry(),n.data("retry",!1))}}),r.sortable({axis:"y",handle:".csf-cloneable-title,.csf-cloneable-sort",helper:"original",cursor:"move",placeholder:"widget-placeholder",start:function(e,t){r.accordion({active:!1}),r.sortable("refreshPositions"),t.item.children(".csf-cloneable-content").data("retry",!0)},update:function(e,t){T.helper.name_nested_replace(r.children(".csf-cloneable-item"),l),r.csf_customizer_refresh(),d&&p(r)}}),n.children(".csf-cloneable-add").on("click",function(e){e.preventDefault();var t=r.children(".csf-cloneable-item").length;if(f.hide(),h&&h<t+1)o.show();else{var n=i.csf_clone(!0);n.removeClass("csf-cloneable-hidden"),n.find(':input[name!="_pseudo"]').each(function(){this.name=this.name.replace("___","").replace(l+"[0]",l+"["+t+"]")}),r.append(n),r.accordion("refresh"),r.accordion({active:t}),r.csf_customizer_refresh(),r.csf_customizer_listen({closest:!0}),d&&p(r)}});var a=function(e){e.preventDefault();var t=r.children(".csf-cloneable-item").length;if(f.hide(),h&&h<t+1)o.show();else{var n=I(this).parent().parent(),i=n.children(".csf-cloneable-helper").csf_clone(!0),s=n.children(".csf-cloneable-title").csf_clone(),a=n.children(".csf-cloneable-content").csf_clone(),c=I('<div class="csf-cloneable-item" />');c.append(i),c.append(s),c.append(a),r.children().eq(n.index()).after(c),T.helper.name_nested_replace(r.children(".csf-cloneable-item"),l),r.accordion("refresh"),r.csf_customizer_refresh(),r.csf_customizer_listen({closest:!0}),d&&p(r)}};r.children(".csf-cloneable-item").children(".csf-cloneable-helper").on("click",".csf-cloneable-clone",a),n.children(".csf-cloneable-hidden").children(".csf-cloneable-helper").on("click",".csf-cloneable-clone",a);var c=function(e){e.preventDefault();var t=r.children(".csf-cloneable-item").length;o.hide(),f.hide(),s&&t-1<s?f.show():(I(this).closest(".csf-cloneable-item").remove(),T.helper.name_nested_replace(r.children(".csf-cloneable-item"),l),r.csf_customizer_refresh(),d&&p(r))};r.children(".csf-cloneable-item").children(".csf-cloneable-helper").on("click",".csf-cloneable-remove",c),n.children(".csf-cloneable-hidden").children(".csf-cloneable-helper").on("click",".csf-cloneable-remove",c)})},I.fn.csf_field_icon=function(){return this.each(function(){var n=I(this);n.on("click",".csf-icon-add",function(e){e.preventDefault();var t=I(this),i=I("#csf-modal-icon");i.removeClass("hidden"),T.vars.$icon_target=n,T.vars.icon_modal_loaded||(i.find(".csf-modal-loading").show(),_.wp.ajax.post("csf-get-icons",{nonce:t.data("nonce")}).done(function(e){i.find(".csf-modal-loading").hide(),T.vars.icon_modal_loaded=!0;var n=i.find(".csf-modal-load").html(e.content);n.on("click","i",function(e){e.preventDefault();var t=I(this).attr("title");T.vars.$icon_target.find(".csf-icon-preview i").removeAttr("class").addClass(t),T.vars.$icon_target.find(".csf-icon-preview").removeClass("hidden"),T.vars.$icon_target.find(".csf-icon-remove").removeClass("hidden"),T.vars.$icon_target.find("input").val(t).trigger("change"),i.addClass("hidden")}),i.on("change keyup",".csf-icon-search",function(){var t=I(this).val();n.find("i").each(function(){var e=I(this);e.attr("title").search(new RegExp(t,"i"))<0?e.hide():e.show()})}),i.on("click",".csf-modal-close, .csf-modal-overlay",function(){i.addClass("hidden")})}).fail(function(e){i.find(".csf-modal-loading").hide(),i.find(".csf-modal-load").html(e.error),i.on("click",function(){i.addClass("hidden")})}))}),n.on("click",".csf-icon-remove",function(e){e.preventDefault(),n.find(".csf-icon-preview").addClass("hidden"),n.find("input").val("").trigger("change"),I(this).addClass("hidden")})})},I.fn.csf_field_map=function(){return this.each(function(){if("undefined"!=typeof L){var e=I(this),t=e.find(".csf--map-osm"),n=e.find(".csf--map-search input"),i=e.find(".csf--latitude"),s=e.find(".csf--longitude"),a=e.find(".csf--zoom"),c=t.data("map"),r=L.map(t.get(0),c);L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",{attribution:'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'}).addTo(r);var o=L.marker(c.center,{draggable:!0}).addTo(r),f=function(e){i.val(e.lat),s.val(e.lng),a.val(r.getZoom())};r.on("click",function(e){o.setLatLng(e.latlng),f(e.latlng)}),r.on("zoom",function(){f(o.getLatLng())}),o.on("drag",function(){f(o.getLatLng())}),n.length||(n=I('[data-depend-id="'+e.find(".csf--address-field").data("address-field")+'"]'));var l={};n.autocomplete({source:function(e,n){var i=e.term;i in l?n(l[i]):I.get("https://nominatim.openstreetmap.org/search",{format:"json",q:i},function(e){var t;t=e.length?e.map(function(e){return{value:e.display_name,label:e.display_name,lat:e.lat,lon:e.lon}},"json"):[{value:"no-data",label:"No Results."}],l[i]=t,n(t)})},select:function(e,t){if("no-data"===t.item.value)return!1;var n=L.latLng(t.item.lat,t.item.lon);r.panTo(n),o.setLatLng(n),f(n)},create:function(e,t){I(this).autocomplete("widget").addClass("csf-map-ui-autocomplate")}});var d=function(){var e=L.latLng(i.val(),s.val());r.panTo(e),o.setLatLng(e)};i.on("change",d),s.on("change",d)}})},I.fn.csf_field_link=function(){return this.each(function(){var s=I(this),e=s.find(".csf--link"),a=s.find(".csf--add"),c=s.find(".csf--edit"),r=s.find(".csf--remove"),o=s.find(".csf--result"),t=T.helper.uid("csf-wplink-textarea-");a.on("click",function(e){e.preventDefault(),_.wpLink.open(t)}),c.on("click",function(e){e.preventDefault(),a.trigger("click"),I("#wp-link-url").val(s.find(".csf--url").val()),I("#wp-link-text").val(s.find(".csf--text").val()),I("#wp-link-target").prop("checked","_blank"===s.find(".csf--target").val())}),r.on("click",function(e){e.preventDefault(),s.find(".csf--url").val("").trigger("change"),s.find(".csf--text").val(""),s.find(".csf--target").val(""),a.removeClass("hidden"),c.addClass("hidden"),r.addClass("hidden"),o.parent().addClass("hidden")}),e.attr("id",t).on("change",function(){var e=_.wpLink.getAttrs(),t=e.href,n=I("#wp-link-text").val(),i=e.target?e.target:"";s.find(".csf--url").val(t).trigger("change"),s.find(".csf--text").val(n),s.find(".csf--target").val(i),o.html('{url:"'+t+'", text:"'+n+'", target:"'+i+'"}'),a.addClass("hidden"),c.removeClass("hidden"),r.removeClass("hidden"),o.parent().removeClass("hidden")})})},I.fn.csf_field_media=function(){return this.each(function(){var i,s=I(this),a=s.find(".csf--button"),c=s.find(".csf--remove"),r=a.data("library")&&a.data("library").split(",")||"",o=!!s.hasClass("csf-assign-field-background")&&s.closest(".csf-field-background").find(".csf--auto-attributes");a.on("click",function(e){e.preventDefault(),void 0!==_.wp&&_.wp.media&&_.wp.media.gallery&&(i||(i=_.wp.media({library:{type:r}})).on("select",function(){var e,t=i.state().get("selection").first().attributes,n=a.data("preview-size")||"thumbnail";r.length&&-1===r.indexOf(t.subtype)&&-1===r.indexOf(t.type)||(s.find(".csf--id").val(t.id),s.find(".csf--width").val(t.width),s.find(".csf--height").val(t.height),s.find(".csf--alt").val(t.alt),s.find(".csf--title").val(t.title),s.find(".csf--description").val(t.description),e=void 0!==t.sizes&&void 0!==t.sizes.thumbnail&&"thumbnail"===n?t.sizes.thumbnail.url:void 0!==t.sizes&&void 0!==t.sizes.full?t.sizes.full.url:"image"===t.type?t.url:t.icon,console.log(t),o&&o.removeClass("csf--attributes-hidden"),c.removeClass("hidden"),s.find(".csf--preview").removeClass("hidden"),s.find(".csf--src").attr("src",e),s.find(".csf--thumbnail").val(e),s.find(".csf--url").val(t.url).trigger("change"))}),i.open())}),c.on("click",function(e){e.preventDefault(),o&&o.addClass("csf--attributes-hidden"),c.addClass("hidden"),s.find("input").val(""),s.find(".csf--preview").addClass("hidden"),s.find(".csf--url").trigger("change")})})},I.fn.csf_field_repeater=function(){return this.each(function(){var e=I(this),t=e.children(".csf-fieldset"),n=t.length?t:e,c=n.children(".csf-repeater-wrapper"),i=n.children(".csf-repeater-hidden"),r=n.children(".csf-repeater-max"),o=n.children(".csf-repeater-min"),f=c.data("field-id"),l=parseInt(c.data("max")),s=parseInt(c.data("min"));c.children(".csf-repeater-item").children(".csf-repeater-content").csf_reload_script(),c.sortable({axis:"y",handle:".csf-repeater-sort",helper:"original",cursor:"move",placeholder:"widget-placeholder",update:function(e,t){T.helper.name_nested_replace(c.children(".csf-repeater-item"),f),c.csf_customizer_refresh(),t.item.csf_reload_script_retry()}}),n.children(".csf-repeater-add").on("click",function(e){e.preventDefault();var t=c.children(".csf-repeater-item").length;if(o.hide(),l&&l<t+1)r.show();else{var n=i.csf_clone(!0);n.removeClass("csf-repeater-hidden"),n.find(':input[name!="_pseudo"]').each(function(){this.name=this.name.replace("___","").replace(f+"[0]",f+"["+t+"]")}),c.append(n),n.children(".csf-repeater-content").csf_reload_script(),c.csf_customizer_refresh(),c.csf_customizer_listen({closest:!0})}});var a=function(e){e.preventDefault();var t=c.children(".csf-repeater-item").length;if(o.hide(),l&&l<t+1)r.show();else{var n=I(this).parent().parent().parent(),i=n.children(".csf-repeater-content").csf_clone(),s=n.children(".csf-repeater-helper").csf_clone(!0),a=I('<div class="csf-repeater-item" />');a.append(i),a.append(s),c.children().eq(n.index()).after(a),a.children(".csf-repeater-content").csf_reload_script(),T.helper.name_nested_replace(c.children(".csf-repeater-item"),f),c.csf_customizer_refresh(),c.csf_customizer_listen({closest:!0})}};c.children(".csf-repeater-item").children(".csf-repeater-helper").on("click",".csf-repeater-clone",a),n.children(".csf-repeater-hidden").children(".csf-repeater-helper").on("click",".csf-repeater-clone",a);var d=function(e){e.preventDefault();var t=c.children(".csf-repeater-item").length;r.hide(),o.hide(),s&&t-1<s?o.show():(I(this).closest(".csf-repeater-item").remove(),T.helper.name_nested_replace(c.children(".csf-repeater-item"),f),c.csf_customizer_refresh())};c.children(".csf-repeater-item").children(".csf-repeater-helper").on("click",".csf-repeater-remove",d),n.children(".csf-repeater-hidden").children(".csf-repeater-helper").on("click",".csf-repeater-remove",d)})},I.fn.csf_field_slider=function(){return this.each(function(){var e=I(this),n=e.find("input"),t=e.find(".csf-slider-ui"),i=n.data(),s=n.val()||0;t.hasClass("ui-slider")&&t.empty(),t.slider({range:"min",value:s,min:i.min||0,max:i.max||100,step:i.step||1,slide:function(e,t){n.val(t.value).trigger("change")}}),n.on("keyup",function(){t.slider("value",n.val())})})},I.fn.csf_field_sortable=function(){return this.each(function(){var n=I(this).find(".csf-sortable");n.sortable({axis:"y",helper:"original",cursor:"move",placeholder:"widget-placeholder",update:function(e,t){n.csf_customizer_refresh()}}),n.find(".csf-sortable-content").csf_reload_script()})},I.fn.csf_field_sorter=function(){return this.each(function(){var i=I(this),e=i.find(".csf-enabled"),t=i.find(".csf-disabled"),n=!!t.length&&t;e.sortable({connectWith:n,placeholder:"ui-sortable-placeholder",update:function(e,t){var n=t.item.find("input");t.item.parent().hasClass("csf-enabled")?n.attr("name",n.attr("name").replace("disabled","enabled")):n.attr("name",n.attr("name").replace("enabled","disabled")),i.csf_customizer_refresh()}}),n&&n.sortable({connectWith:e,placeholder:"ui-sortable-placeholder",update:function(e,t){i.csf_customizer_refresh()}})})},I.fn.csf_field_spinner=function(){return this.each(function(){var e=I(this),n=e.find("input"),t=e.find(".ui-button"),i=n.data();t.length&&t.remove(),n.spinner({min:i.min||0,max:i.max||100,step:i.step||1,create:function(e,t){i.unit&&n.after('<span class="ui-button csf--unit">'+i.unit+"</span>")},spin:function(e,t){n.val(t.value).trigger("change")}})})},I.fn.csf_field_switcher=function(){return this.each(function(){var n=I(this).find(".csf--switcher");n.on("click",function(){var e=0,t=n.find("input");n.hasClass("csf--active")?n.removeClass("csf--active"):(e=1,n.addClass("csf--active")),t.val(e).trigger("change")})})},I.fn.csf_field_tabbed=function(){return this.each(function(){var e=I(this),t=e.find(".csf-tabbed-nav a"),s=e.find(".csf-tabbed-content");s.eq(0).csf_reload_script(),t.on("click",function(e){e.preventDefault();var t=I(this),n=t.index(),i=s.eq(n);t.addClass("csf-tabbed-active").siblings().removeClass("csf-tabbed-active"),i.csf_reload_script(),i.removeClass("hidden").siblings().addClass("hidden")})})},I.fn.csf_field_typography=function(){return this.each(function(){var j=this,L=I(this),i=[],A=csf_typography_json.webfonts,t=csf_typography_json.googlestyles,q=csf_typography_json.defaultstyles;j.sanitize_subset=function(e){return e=(e=e.replace("-ext"," Extended")).charAt(0).toUpperCase()+e.slice(1)},j.sanitize_style=function(e){return t[e]?t[e]:e},j.load_google_font=function(e,t,n){e&&"object"==typeof WebFont&&(t=t?t.replace("normal",""):"",n=n?n.replace("normal",""):"",(t||n)&&(e=e+":"+t+n),-1===i.indexOf(e)&&WebFont.load({google:{families:[e]}}),i.push(e))},j.append_select_options=function(e,t,s,a,c){e.find("option").not(":first").remove();var r="";I.each(t,function(e,t){var n,i=t;n=c?s&&-1!==s.indexOf(t)?" selected":"":s&&s===t?" selected":"","subset"===a?i=j.sanitize_subset(t):"style"===a&&(i=j.sanitize_style(t)),r+='<option value="'+t+'"'+n+">"+i+"</option>"}),e.append(r).trigger("csf.change").trigger("chosen:updated")},j.init=function(){var l=[],e=L.find(".csf--typography"),d=L.find(".csf--type"),h=L.find(".csf--block-font-style"),v=e.data("unit"),g=e.data("line-height-unit"),t=e.data("exclude")?e.data("exclude").split(","):[];L.find(".csf--chosen").length&&L.find("select").each(function(){var e=I(this),t=e.parent().find(".chosen-container");t.length&&t.remove(),e.chosen({allow_single_deselect:!0,disable_search_threshold:15,width:"100%"})});var m=L.find(".csf--font-family"),i=m.val();m.find("option").not(":first-child").remove();var s="";I.each(A,function(n,e){t&&-1!==t.indexOf(n)||(s+='<optgroup label="'+e.label+'">',I.each(e.fonts,function(e,t){s+='<option value="'+(t="object"==typeof t?e:t)+'" data-type="'+n+'"'+(t===i?" selected":"")+">"+t+"</option>"}),s+="</optgroup>")}),m.append(s).trigger("chosen:updated");var p=L.find(".csf--block-font-style");if(p.length){var u=L.find(".csf--font-style-select"),_=u.val()?u.val().replace(/normal/g,""):"";u.on("change csf.change",function(e){var t=u.val();!t&&l&&-1===l.indexOf("normal")&&(t=l[0]);var n=t&&"italic"!==t&&"normal"===t?"normal":"",i=t&&"italic"!==t&&"normal"!==t?t.replace("italic",""):n,s=t&&"italic"===t.substr(-6)?"italic":"";L.find(".csf--font-weight").val(i),L.find(".csf--font-style").val(s)});var b=L.find(".csf--block-extra-styles");if(b.length)var y=L.find(".csf--extra-styles"),w=y.val()}var C=L.find(".csf--block-subset");if(C.length)var k=L.find(".csf--subset"),x=k.val(),z=k.data("multiple")||!1;var D=L.find(".csf--block-backup-font-family");m.on("change csf.change",function(e){C.length&&C.addClass("hidden"),b.length&&b.addClass("hidden"),D.length&&D.addClass("hidden");var t=m.find(":selected"),n=t.val(),i=t.data("type");if(i&&n){if("google"!==i&&"custom"!==i||!D.length||D.removeClass("hidden"),p.length){var s=q;"google"===i&&A[i].fonts[n][0]?s=A[i].fonts[n][0]:"custom"===i&&A[i].fonts[n]&&(s=A[i].fonts[n]);var a=-1!==(l=s).indexOf("normal")?"normal":s[0],c=_&&-1!==s.indexOf(_)?_:a;j.append_select_options(u,s,c,"style"),_=!1,p.removeClass("hidden"),"google"===i&&b.length&&1<s.length&&(j.append_select_options(y,s,w,"style",!0),w=!1,b.removeClass("hidden"))}if("google"===i&&C.length&&A[i].fonts[n][1]){var r=A[i].fonts[n][1],o=r.length<2&&"latin"!==r[0]?r[0]:"",f=x&&-1!==r.indexOf(x)?x:o;f=z&&x?x:f,j.append_select_options(k,r,f,"subset",z),x=!1,C.removeClass("hidden")}}else h.find(":input").val(""),C.length&&(k.find("option").not(":first-child").remove(),k.trigger("chosen:updated")),p.length&&(u.find("option").not(":first-child").remove(),u.trigger("chosen:updated"));d.val(i)}).trigger("csf.change");var O=L.find(".csf--block-preview");if(O.length){var S=L.find(".csf--preview");L.on("change",T.helper.debounce(function(e){O.removeClass("hidden");var t=m.val(),n=L.find(".csf--font-weight").val(),i=L.find(".csf--font-style").val(),s=L.find(".csf--font-size").val(),a=L.find(".csf--font-variant").val(),c=L.find(".csf--line-height").val(),r=L.find(".csf--text-align").val(),o=L.find(".csf--text-transform").val(),f=L.find(".csf--text-decoration").val(),l=L.find(".csf--color").val(),d=L.find(".csf--word-spacing").val(),h=L.find(".csf--letter-spacing").val(),p=L.find(".csf--custom-style").val();"google"===L.find(".csf--type").val()&&j.load_google_font(t,n,i);var u={};t&&(u.fontFamily=t),n&&(u.fontWeight=n),i&&(u.fontStyle=i),a&&(u.fontVariant=a),s&&(u.fontSize=s+v),c&&(u.lineHeight=c+g),h&&(u.letterSpacing=h+v),d&&(u.wordSpacing=d+v),r&&(u.textAlign=r),o&&(u.textTransform=o),f&&(u.textDecoration=f),l&&(u.color=l),S.removeAttr("style"),p&&S.attr("style",p),S.css(u)},100)),O.on("click",function(){S.toggleClass("csf--black-background");var e=O.find(".csf--toggle");e.hasClass("fa-toggle-off")?e.removeClass("fa-toggle-off").addClass("fa-toggle-on"):e.removeClass("fa-toggle-on").addClass("fa-toggle-off")}),O.hasClass("hidden")||L.trigger("change")}},j.init()})},I.fn.csf_field_upload=function(){return this.each(function(){var t,e=I(this),n=e.find("input"),i=e.find(".csf--button"),s=e.find(".csf--remove"),a=e.find(".csf--preview"),c=e.find(".csf--src"),r=i.data("library")&&i.data("library").split(",")||"";i.on("click",function(e){e.preventDefault(),void 0!==_.wp&&_.wp.media&&_.wp.media.gallery&&(t||(t=_.wp.media({library:{type:r}})).on("select",function(){var e=t.state().get("selection").first().attributes;r.length&&-1===r.indexOf(e.subtype)&&-1===r.indexOf(e.type)||n.val(e.url).trigger("change")}),t.open())}),s.on("click",function(e){e.preventDefault(),n.val("").trigger("change")}),n.on("change",function(e){var t=n.val();t?s.removeClass("hidden"):s.addClass("hidden"),a.length&&(-1!==I.inArray(t.split(".").pop().toLowerCase(),["jpg","jpeg","gif","png","svg","webp"])?(a.removeClass("hidden"),c.attr("src",t)):a.addClass("hidden"))})})},I.fn.csf_field_wp_editor=function(){return this.each(function(){if(void 0!==_.wp.editor&&void 0!==_.tinyMCEPreInit&&void 0!==_.tinyMCEPreInit.mceInit.csf_wp_editor){var e=I(this),t=e.find(".csf-wp-editor"),n=e.find("textarea");(e.find(".wp-editor-wrap").length||e.find(".mce-container").length)&&(t.empty(),t.append(n),n.css("display",""));var i=T.helper.uid("csf-editor-");n.attr("id",i);var s={tinymce:_.tinyMCEPreInit.mceInit.csf_wp_editor,quicktags:_.tinyMCEPreInit.qtInit.csf_wp_editor},a=t.data("editor-settings"),c=wp.oldEditor?wp.oldEditor:wp.editor;c&&c.hasOwnProperty("autop")&&(wp.editor.autop=c.autop,wp.editor.removep=c.removep,wp.editor.initialize=c.initialize);s.tinymce=I.extend({},s.tinymce,{selector:"#"+i,setup:function(t){t.on("change keyup",function(){var e=a.wpautop?t.getContent():wp.editor.removep(t.getContent());n.val(e).trigger("change")})}}),!1===a.tinymce&&(s.tinymce=!1,t.addClass("csf-no-tinymce")),!1===a.quicktags&&(s.quicktags=!1,t.addClass("csf-no-quicktags"));var r=setInterval(function(){e.is(":visible")&&(_.wp.editor.initialize(i,s),clearInterval(r))});if(a.media_buttons&&_.csf_media_buttons){var o=t.find(".wp-media-buttons");if(o.length)o.find(".csf-shortcode-button").data("editor-id",i);else{var f=I(_.csf_media_buttons);f.find(".csf-shortcode-button").data("editor-id",i),t.prepend(f)}}}})},I.fn.csf_confirm=function(){return this.each(function(){I(this).on("click",function(e){var t=I(this).data("confirm")||_.csf_vars.i18n.confirm;if(!confirm(t))return e.preventDefault(),!1;T.vars.is_confirm=!0,T.vars.form_modified=!1})})},I.fn.serializeObject=function(){var s={};return I.each(this.serializeArray(),function(e,t){var n=t.name,i=t.value;s[n]=s[n]===y?i:I.isArray(s[n])?s[n].concat(i):[s[n],i]}),s},I.fn.csf_save=function(){return this.each(function(){var i,s=I(this),c=I(".csf-save"),r=I(".csf-options"),o=!1;s.on("click",function(e){if(!o){var t=s.data("save"),n=s.val();c.attr("value",t),s.hasClass("csf-save-ajax")?(e.preventDefault(),r.addClass("csf-saving"),c.prop("disabled",!0),_.wp.ajax.post("csf_"+r.data("unique")+"_ajax_save",{data:I("#csf-form").serializeJSONCSF()}).done(function(e){if(I(".csf-error").remove(),Object.keys(e.errors).length){var a='<i class="csf-label-error csf-error">!</i>';I.each(e.errors,function(e,t){var n=I('[data-depend-id="'+e+'"]'),i=I('a[href="#tab='+n.closest(".csf-section").data("section-id")+'"]'),s=i.closest(".csf-tab-item");n.closest(".csf-fieldset").append('<p class="csf-error csf-error-text">'+t+"</p>"),i.find(".csf-error").length||i.append(a),s.find(".csf-arrow .csf-error").length||s.find(".csf-arrow").append(a)})}r.removeClass("csf-saving"),c.prop("disabled",!1).attr("value",n),o=!1,T.vars.form_modified=!1,T.vars.$form_warning.hide(),clearTimeout(i);var t=I(".csf-form-success");t.empty().append(e.notice).fadeIn("fast",function(){i=setTimeout(function(){t.fadeOut("fast")},1e3)})}).fail(function(e){alert(e.error)})):T.vars.form_modified=!1}o=!0})})},I.fn.csf_options=function(){return this.each(function(){var e=I(this),t=e.find(".csf-content"),n=e.find(".csf-form-success"),i=e.find(".csf-form-warning"),s=e.find(".csf-header .csf-save");(T.vars.$form_warning=i).length&&(_.onbeforeunload=function(){return!!T.vars.form_modified||y},t.on("change keypress",":input",function(){T.vars.form_modified||(n.hide(),i.fadeIn("fast"),T.vars.form_modified=!0)})),n.hasClass("csf-form-show")&&setTimeout(function(){n.fadeOut("fast")},1e3),I(b).keydown(function(e){if((e.ctrlKey||e.metaKey)&&83===e.which)return s.trigger("click"),e.preventDefault(),!1})})},I.fn.csf_taxonomy=function(){return this.each(function(){var e=I(this),t=e.parents("form");if("addtag"===t.attr("id")){var n=t.find("#submit"),i=e.find(".csf-field").csf_clone();n.on("click",function(){t.find(".form-required").hasClass("form-invalid")||(e.data("inited",!1),e.empty(),e.html(i),i=i.csf_clone(),e.csf_reload_script())})}})},I.fn.csf_shortcode=function(){var m=this;return m.shortcode_parse=function(e,n){var i="";return I.each(e,function(e,t){i+="["+(n=n||e),I.each(t,function(e,t){"content"===e?(i+="]",i+=t,i+="[/"+n):i+=m.shortcode_tags(e,t)}),i+="]"}),i},m.shortcode_tags=function(e,t){var n="";return""!==t&&("object"!=typeof t||I.isArray(t)?n+=" "+e.replace("-","_")+'="'+t.toString()+'"':I.each(t,function(e,t){switch(e){case"background-image":t=t.url?t.url:""}""!==t&&(n+=" "+e.replace("-","_")+'="'+t.toString()+'"')})),n},m.insertAtChars=function(e,t){var n=void 0!==e[0].name?e[0]:e;return n.value.length&&void 0!==n.selectionStart?(n.focus(),n.value.substring(0,n.selectionStart)+t+n.value.substring(n.selectionEnd,n.value.length)):(n.focus(),t)},m.send_to_editor=function(e,t){var n;if("undefined"!=typeof tinymce&&(n=tinymce.get(t)),n&&!n.isHidden())n.execCommand("mceInsertContent",!1,e);else{var i=I("#"+t);i.val(m.insertAtChars(i,e)).trigger("change")}},this.each(function(){var c,r,o,n,f,l,d,s,h,p=I(this),i=p.find(".csf-modal-load"),u=(p.find(".csf-modal-content"),p.find(".csf-modal-insert")),a=p.find(".csf-modal-loading"),t=p.find("select"),v=p.data("modal-id"),g=p.data("nonce");I(b).on("click",'.csf-shortcode-button[data-modal-id="'+v+'"]',function(e){e.preventDefault(),h=I(this),c=h.data("editor-id")||!1,r=h.data("target-id")||!1,o=h.data("gutenberg-id")||!1,p.removeClass("hidden"),p.hasClass("csf-shortcode-single")&&f===y&&t.trigger("change")}),t.on("change",function(){var e=I(this),t=e.find(":selected");n=e.val(),f=t.data("shortcode"),l=t.data("view")||"normal",d=t.data("group")||f,i.empty(),n?(a.show(),_.wp.ajax.post("csf-get-shortcode-"+v,{shortcode_key:n,nonce:g}).done(function(e){a.hide();var t=I(e.content).appendTo(i);u.parent().removeClass("hidden"),s=t.find(".csf--repeat-shortcode").csf_clone(),t.csf_reload_script(),t.find(".csf-fields").csf_reload_script()})):u.parent().addClass("hidden")}),u.on("click",function(e){if(e.preventDefault(),!u.prop("disabled")&&!u.attr("disabled")){var i="",t=p.find(".csf-field:not(.csf-depend-on)").find(":input:not(.ignore)").serializeObjectCSF();switch(l){case"contents":var n=f?t[f]:t;I.each(n,function(e,t){var n=f||e;i+="["+n+"]"+t+"[/"+n+"]"});break;case"group":i+="["+f,I.each(t[f],function(e,t){i+=m.shortcode_tags(e,t)}),i+="]",i+=m.shortcode_parse(t[d],d),i+="[/"+f+"]";break;case"repeater":i+=m.shortcode_parse(t[d],d);break;default:i+=m.shortcode_parse(t)}if(i=""===i?"["+f+"]":i,o){var s=_.csf_gutenberg_props.attributes.hasOwnProperty("shortcode")?_.csf_gutenberg_props.attributes.shortcode:"";_.csf_gutenberg_props.setAttributes({shortcode:s+i})}else if(c)m.send_to_editor(i,c);else{var a=r?I(r):h.parent().find("textarea");a.val(m.insertAtChars(a,i)).trigger("change")}p.addClass("hidden")}}),p.on("click",".csf--repeat-button",function(e){e.preventDefault();var t=p.find(".csf--repeatable"),n=s.csf_clone(),i=n.find(".csf-repeat-remove");n.appendTo(t);n.find(".csf-fields").csf_reload_script(),T.helper.name_nested_replace(p.find(".csf--repeat-shortcode"),d),i.on("click",function(){n.remove(),T.helper.name_nested_replace(p.find(".csf--repeat-shortcode"),d)})}),p.on("click",".csf-modal-close, .csf-modal-overlay",function(){p.addClass("hidden")})})},"function"==typeof Color&&(Color.prototype.toString=function(){if(this._alpha<1)return this.toCSS("rgba",this._alpha).replace(/\s+/g,"");var e=parseInt(this._color,10).toString(16);if(this.error)return"";if(e.length<6)for(var t=6-e.length-1;0<=t;t--)e="0"+e;return"#"+e}),T.funcs.parse_color=function(e){var t=e.replace(/\s+/g,""),n=-1!==t.indexOf("rgba")?parseFloat(100*t.replace(/^.*,(.+)\)/,"$1")):100;return{value:t,transparent:n,rgba:n<100}},I.fn.csf_color=function(){return this.each(function(){var c,r=I(this),o=T.funcs.parse_color(r.val()),e=!_.csf_vars.color_palette.length||_.csf_vars.color_palette;r.hasClass("wp-color-picker")&&r.closest(".wp-picker-container").after(r).remove(),r.wpColorPicker({palettes:e,change:function(e,t){var n=t.color.toString();c.removeClass("csf--transparent-active"),c.find(".csf--transparent-offset").css("background-color",n),r.val(n).trigger("change")},create:function(){c=r.closest(".wp-picker-container");var i=r.data("a8cIris"),e=I('<div class="csf--transparent-wrap"><div class="csf--transparent-slider"></div><div class="csf--transparent-offset"></div><div class="csf--transparent-text"></div><div class="csf--transparent-button">transparent <i class="fas fa-toggle-off"></i></div></div>').appendTo(c.find(".wp-picker-holder")),s=e.find(".csf--transparent-slider"),a=e.find(".csf--transparent-text"),n=e.find(".csf--transparent-offset"),t=e.find(".csf--transparent-button");"transparent"===r.val()&&c.addClass("csf--transparent-active"),t.on("click",function(){"transparent"!==r.val()?(r.val("transparent").trigger("change").removeClass("iris-error"),c.addClass("csf--transparent-active")):(r.val(i._color.toString()).trigger("change"),c.removeClass("csf--transparent-active"))}),s.slider({value:o.transparent,step:1,min:0,max:100,slide:function(e,t){var n=parseFloat(t.value/100);i._color._alpha=n,r.wpColorPicker("color",i._color.toString()),a.text(1===n||0===n?"":n)},create:function(){var e=parseFloat(o.transparent/100),t=e<1?e:"";a.text(t),n.css("background-color",o.value),c.on("click",".wp-picker-clear",function(){i._color._alpha=1,a.text(""),s.slider("option","value",100),c.removeClass("csf--transparent-active"),r.trigger("change")}),c.on("click",".wp-picker-default",function(){var e=T.funcs.parse_color(r.data("default-color")),t=parseFloat(e.transparent/100),n=t<1?t:"";i._color._alpha=t,a.text(n),s.slider("option","value",e.transparent),"transparent"===e.value&&(r.removeClass("iris-error"),c.addClass("csf--transparent-active"))})}})}})})},I.fn.csf_chosen=function(){return this.each(function(){var a=I(this),e=a.parent().find(".chosen-container"),t=a.hasClass("csf-chosen-sortable")||!1,n=a.hasClass("csf-chosen-ajax")||!1,i=a.attr("multiple")||!1,s=i?"100%":"auto",c=I.extend({allow_single_deselect:!0,disable_search_threshold:10,width:s,no_results_text:_.csf_vars.i18n.no_results_text},a.data("chosen-settings"));if(e.length&&e.remove(),n){var r=I.extend({data:{type:"post",nonce:""},allow_single_deselect:!0,disable_search_threshold:-1,width:"100%",min_length:3,type_delay:500,typing_text:_.csf_vars.i18n.typing_text,searching_text:_.csf_vars.i18n.searching_text,no_results_text:_.csf_vars.i18n.no_results_text},a.data("chosen-settings"));a.CSFAjaxChosen(r)}else a.chosen(c);if(i){var o=a.parent().find(".csf-hide-select"),f=o.val()||[];a.on("change",function(e,t){t&&t.selected?o.append('<option value="'+t.selected+'" selected="selected">'+t.selected+"</option>"):t&&t.deselected&&o.find('option[value="'+t.deselected+'"]').remove(),_.wp.customize!==y&&0===o.children().length&&o.data("customize-setting-link")&&_.wp.customize.control(o.data("customize-setting-link")).setting.set(""),o.trigger("change")}),a.CSFChosenOrder(f,!0)}if(t){var l=a.parent().find(".chosen-container").find(".chosen-choices");l.bind("mousedown",function(e){I(e.target).is("span")&&e.stopPropagation()}),l.sortable({items:"li:not(.search-field)",helper:"orginal",cursor:"move",placeholder:"search-choice-placeholder",start:function(e,t){t.placeholder.width(t.item.innerWidth()),t.placeholder.height(t.item.innerHeight())},update:function(e,t){var i="",s=a.data("chosen"),n=a.parent().find(".csf-hide-select");l.find(".search-choice-close").each(function(){var n=I(this).data("option-array-index");I.each(s.results_data,function(e,t){t.array_index===n&&(i+='<option value="'+t.value+'" selected>'+t.value+"</option>")})}),n.children().remove(),n.append(i),n.trigger("change")}})}})},I.fn.csf_checkbox=function(){return this.each(function(){var e=I(this),t=e.find(".csf--input"),n=e.find(".csf--checkbox");n.on("click",function(){t.val(Number(n.prop("checked"))).trigger("change")})})},I.fn.csf_siblings=function(){return this.each(function(){var t=I(this),e=t.find(".csf--sibling"),n=t.data("multiple")||!1;e.on("click",function(){var e=I(this);n?e.hasClass("csf--active")?(e.removeClass("csf--active"),e.find("input").prop("checked",!1).trigger("change")):(e.addClass("csf--active"),e.find("input").prop("checked",!0).trigger("change")):(t.find("input").prop("checked",!1),e.find("input").prop("checked",!0).trigger("change"),e.addClass("csf--active").siblings().removeClass("csf--active"))})})},I.fn.csf_help=function(){return this.each(function(){var e,t,n=I(this);n.on({mouseenter:function(){e=I('<div class="csf-tooltip"></div>').html(n.find(".csf-help-text").html()).appendTo("body"),t=T.vars.is_rtl?n.offset().left+24:n.offset().left-e.outerWidth(),e.css({top:n.offset().top-(e.outerHeight()/2-14),left:t})},mouseleave:function(){e!==y&&e.remove()}})})},I.fn.csf_customizer_refresh=function(){return this.each(function(){var e=I(this),t=e.closest(".csf-customize-complex");if(t.length){var n=t.data("unique-id");if(n===y)return;var i=t.find(":input"),s=t.data("option-id"),a=i.serializeObjectCSF(),c=!I.isEmptyObject(a)&&a[n]&&a[n][s]?a[n][s]:"",r=_.wp.customize.control(n+"["+s+"]");r.setting._value=null,r.setting.set(c)}else e.find(":input").first().trigger("change");I(b).trigger("csf-customizer-refresh",e)})},I.fn.csf_customizer_listen=function(e){var t=I.extend({closest:!1},e);return this.each(function(){if(_.wp.customize!==y){var n=t.closest?I(this).closest(".csf-customize-complex"):I(this),e=n.find(":input"),i=n.data("unique-id"),s=n.data("option-id");i!==y&&e.on("change keyup",function(){var e=n.find(":input").serializeObjectCSF(),t=!I.isEmptyObject(e)&&e[i]&&e[i][s]?e[i][s]:"";_.wp.customize.control(i+"["+s+"]").setting.set(t)})}})},I(b).on("expanded",".control-section",function(){var e=I(this);if(e.hasClass("open")&&!e.data("inited")){var t=e.find(".csf-customize-field"),n=e.find(".csf-customize-complex");t.length&&(e.csf_dependency(),t.csf_reload_script({dependency:!1}),n.csf_customizer_listen()),e.data("inited",!0)}}),T.vars.$window.on("resize csf.resize",T.helper.debounce(function(e){(-1<navigator.userAgent.indexOf("AppleWebKit/")?T.vars.$window.width():_.innerWidth)<=782&&!T.vars.onloaded&&(I(".csf-section").csf_reload_script(),T.vars.onloaded=!0)},200)).trigger("csf.resize"),I.fn.csf_widgets=function(){return this.each(function(){I(b).on("widget-added widget-updated",function(e,t){var n=t.find(".csf-fields");n.length&&n.csf_reload_script()}),I(b).on("click",".widget-top",function(e){var t=I(this).parent().find(".csf-fields");t.length&&t.csf_reload_script()}),I(".widgets-sortables, .control-section-sidebar").on("sortstop",function(e,t){t.item.find(".csf-fields").csf_reload_script_retry()})})},I.fn.csf_nav_menu=function(){return this.each(function(){var e=I(this);e.on("click","a.item-edit",function(){I(this).closest("li.menu-item").find(".csf-fields").csf_reload_script()}),e.on("sortstop",function(e,t){t.item.find(".csf-fields").csf_reload_script_retry()})})},I.fn.csf_reload_script_retry=function(){return this.each(function(){var e=I(this);e.data("inited")&&e.children(".csf-field-wp_editor").csf_field_wp_editor()})},I.fn.csf_reload_script=function(e){var t=I.extend({dependency:!0},e);return this.each(function(){var e=I(this);e.data("inited")||(e.children(".csf-field-accordion").csf_field_accordion(),e.children(".csf-field-backup").csf_field_backup(),e.children(".csf-field-background").csf_field_background(),e.children(".csf-field-code_editor").csf_field_code_editor(),e.children(".csf-field-date").csf_field_date(),e.children(".csf-field-fieldset").csf_field_fieldset(),e.children(".csf-field-gallery").csf_field_gallery(),e.children(".csf-field-group").csf_field_group(),e.children(".csf-field-icon").csf_field_icon(),e.children(".csf-field-link").csf_field_link(),e.children(".csf-field-media").csf_field_media(),e.children(".csf-field-map").csf_field_map(),e.children(".csf-field-repeater").csf_field_repeater(),e.children(".csf-field-slider").csf_field_slider(),e.children(".csf-field-sortable").csf_field_sortable(),e.children(".csf-field-sorter").csf_field_sorter(),e.children(".csf-field-spinner").csf_field_spinner(),e.children(".csf-field-switcher").csf_field_switcher(),e.children(".csf-field-tabbed").csf_field_tabbed(),e.children(".csf-field-typography").csf_field_typography(),e.children(".csf-field-upload").csf_field_upload(),e.children(".csf-field-wp_editor").csf_field_wp_editor(),e.children(".csf-field-border").find(".csf-color").csf_color(),e.children(".csf-field-background").find(".csf-color").csf_color(),e.children(".csf-field-color").find(".csf-color").csf_color(),e.children(".csf-field-color_group").find(".csf-color").csf_color(),e.children(".csf-field-link_color").find(".csf-color").csf_color(),e.children(".csf-field-typography").find(".csf-color").csf_color(),e.children(".csf-field-select").find(".csf-chosen").csf_chosen(),e.children(".csf-field-checkbox").find(".csf-checkbox").csf_checkbox(),e.children(".csf-field-button_set").find(".csf-siblings").csf_siblings(),e.children(".csf-field-image_select").find(".csf-siblings").csf_siblings(),e.children(".csf-field-palette").find(".csf-siblings").csf_siblings(),e.children(".csf-field").find(".csf-help").csf_help(),t.dependency&&e.csf_dependency(),e.data("inited",!0),I(b).trigger("csf-reload-script",e))})},I(b).ready(function(){I(".csf-save").csf_save(),I(".csf-options").csf_options(),I(".csf-sticky-header").csf_sticky(),I(".csf-nav-options").csf_nav_options(),I(".csf-nav-metabox").csf_nav_metabox(),I(".csf-taxonomy").csf_taxonomy(),I(".csf-page-templates").csf_page_templates(),I(".csf-post-formats").csf_post_formats(),I(".csf-shortcode").csf_shortcode(),I(".csf-search").csf_search(),I(".csf-confirm").csf_confirm(),I(".csf-expand-all").csf_expand_all(),I(".csf-onload").csf_reload_script(),I("#widgets-editor").csf_widgets(),I("#widgets-right").csf_widgets(),I("#menu-to-edit").csf_nav_menu()})}(jQuery,window,document);
vendor/codestar-framework/assets/js/plugins.min.js CHANGED
@@ -1,3 +1,3 @@
1
- /* Codestar Framework | A Simple and Lightweight WordPress Option Framework - v2.2.4*/
2
 
3
  !function(o){function e(t,e){this.element=o(t),this.options=e,this.init()}e.prototype.init=function(){this.element.chosen(this.options),this.container=this.element.next(".chosen-container"),this.search_field=this.container.find(".chosen-search-input"),this.is_multiple=this.container.hasClass("chosen-container-multi"),this.is_typing=!1,this.chosenXhr=null,this.events()},e.prototype.events=function(){var t=this;this.search_field.on("compositionstart",function(){t.is_typing=!0}),this.search_field.on("compositionend",function(){t.is_typing=!1,t.update_list()}),this.search_field.on("keyup",function(){t.update_list()}),this.search_field.on("focus",function(){t.search_field_focused()})},e.prototype.search_field_focused=function(){this.search_welcome_message(),0===this.options.min_length&&0===this.search_field.val().length&&this.update_list()},e.prototype.search_welcome_message=function(){var t=o.trim(this.search_field.val()),e=this.container.find(".chosen-results");0===e.children().length&&0===t.length&&e.html('<li class="no-results">'+this.options.typing_text.replace("%s",this.options.min_length-t.length)+"</li>")},e.prototype.update_list=function(){var e=this;if(this.search_welcome_message(),!this.is_typing){var t=o.trim(this.search_field.val()),s=t.length<this.options.min_length?this.options.typing_text.replace("%s",this.options.min_length-t.length):this.options.searching_text;this.container.find(".no-results").text(s),t!==this.search_field.data("prevVal")&&(this.search_field.data("prevVal",t),this.timer&&clearTimeout(this.timer),t.length<this.options.min_length||(this.timer=setTimeout(function(){e.chosenXhr&&e.chosenXhr.abort(),e.options.data.term=t,e.chosenXhr=window.wp.ajax.post("csf-chosen",e.options.data).done(function(t){e.show_results(t)}).fail(function(t){e.container.find(".no-results").text(t.error)})},this.options.type_delay)))}},e.prototype.show_results=function(t){var s=this;if(!this.is_typing&&null!==t){if(0===t.length)return this.element.data().chosen.no_results_clear(),void this.element.data().chosen.no_results(this.search_field.val());var i=[];this.element.find("option").each(function(){o(this).is(":selected")?i.push(o(this).val()+"-"+o(this).text()):o(this).attr("value").length&&o(this).remove()}),o.each(t,function(t,e){-1===o.inArray(e.value+"-"+e.text,i)&&o("<option />").attr("value",e.value).html(e.text).appendTo(s.element)});var e=this.search_field.val(),n=this.search_field.innerWidth();if(this.element.trigger("chosen:updated"),this.is_multiple){var r=this.element.parent().find(".csf-hide-select").val()||[];this.element.CSFChosenOrder(r,!0),this.search_field.css("width",n)}this.search_field.val(e),null!==this.chosenXhr.done&&this.chosenXhr.done(t)}},o.fn.CSFAjaxChosen=function(t){return this.each(function(){new e(this,t)})}}(jQuery),function(){var s,i,o=[].indexOf||function(t){for(var e=0,s=this.length;e<s;e++)if(e in this&&this[e]===t)return e;return-1},n={}.hasOwnProperty;i=function(){function t(){}return t.insertAt=function(t,e,s){return s.insertBefore(t,s.children[e].nextSibling)},t.getFlattenedOptionsAndGroups=function(t){var e,s,i,n,r,o,h,l,c;for(e=[],o=0,l=(i=Array.prototype.filter.call(t.childNodes,function(t){var e;return"OPTION"===(e=t.nodeName.toUpperCase())||"OPTGROUP"===e})).length;o<l;o++)if(s=i[o],e.push(s),"OPTGROUP"===s.nodeName.toUpperCase())for(h=0,c=(r=Array.prototype.filter.call(s.childNodes,function(t){return"OPTION"===t.nodeName.toUpperCase()})).length;h<c;h++)n=r[h],e.push(n);return e},t.isValidMultipleSelectElement=function(t){return null!=t&&"SELECT"===t.nodeName&&t.multiple},t.getChosenUIContainer=function(t){return""!==t.id?document.getElementById(t.id.replace(/-/g,"_")+"_chosen"):this.searchChosenUIContainer(t)},t.isChosenified=function(t){return null!=this.getChosenUIContainer(t)},t.forceSelection=function(t,e){var s,i,n,r;for(n=this.getFlattenedOptionsAndGroups(t),s=0;s<n.length;)r=(i=n[s]).getAttribute("value"),0<=o.call(e,r)?(i.selected=!0,i.setAttribute("selected","")):(i.selected=!1,i.removeAttribute("selected")),s++;return this.triggerEvent(t,"chosen:updated")},t.CSFChosenOrder=function(t,e,s){var i,n,r,o,h,l,c,a,u,_,d,p,f,g;if(null!=this.getDOMElement&&(t=this.getDOMElement(t)),this.isValidMultipleSelectElement(t)&&null!=(n=this.getChosenUIContainer(t))&&e instanceof Array){for(e=e.map(Function.prototype.call,String.prototype.trim),c=this.getFlattenedOptionsAndGroups(t),null!=s&&!0===s&&this.forceSelection(t,e),g=[],r=_=0,p=e.length;_<p;r=++_){for(h=e[r],a=null,o=d=0,f=c.length;d<f;o=++d)c[o].value===h&&(a=o);i=n.querySelectorAll(".search-choice"),u=this.relAttributeName,null!=(l=Array.prototype.filter.call(i,function(t){return null!=t.querySelector("a.search-choice-close["+u+'="'+a+'"]')})[0])&&(n.querySelector("ul.chosen-choices"),g.push(this.insertAt(l,r,n.querySelector("ul.chosen-choices"))))}return g}},t}(),(s=jQuery).fn.extend({CSFChosenOrder:function(t,e){return _CSFChosenOrder.CSFChosenOrder(this,t,e)}}),this._CSFChosenOrder=function(t){function e(){return e.__super__.constructor.apply(this,arguments)}return function(t,e){for(var s in e)n.call(e,s)&&(t[s]=e[s]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,i),e.relAttributeName="data-option-array-index",e.isjQueryObject=function(t){return"undefined"!=typeof jQuery&&null!==jQuery&&t instanceof jQuery},e.getDOMElement=function(t){return this.isjQueryObject(t)?t.get(0):t},e.searchChosenUIContainer=function(t){return null!=s(t).data("chosen")?s(t).data("chosen").container[0]:s(t).next(".chosen-container.chosen-container-multi").get(0)},e.triggerEvent=function(t,e){return s(t).trigger(e)},e}()}.call(this),function(){var h,s,n,o,r={}.hasOwnProperty;(o=function(){function t(){this.options_index=0,this.parsed=[]}return t.prototype.add_node=function(t){return"OPTGROUP"===t.nodeName.toUpperCase()?this.add_group(t):this.add_option(t)},t.prototype.add_group=function(t){var e,s,i,n,r,o;for(e=this.parsed.length,this.parsed.push({array_index:e,group:!0,label:t.label,title:t.title?t.title:void 0,children:0,disabled:t.disabled,classes:t.className}),o=[],s=0,i=(r=t.childNodes).length;s<i;s++)n=r[s],o.push(this.add_option(n,e,t.disabled));return o},t.prototype.add_option=function(t,e,s){if("OPTION"===t.nodeName.toUpperCase())return""!==t.text?(null!=e&&(this.parsed[e].children+=1),this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,value:t.value,text:t.text,html:t.innerHTML,title:t.title?t.title:void 0,selected:t.selected,disabled:!0===s?s:t.disabled,group_array_index:e,group_label:null!=e?this.parsed[e].label:null,classes:t.className,style:t.style.cssText})):this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,empty:!0}),this.options_index+=1},t}()).select_to_array=function(t){var e,s,i,n,r;for(n=new o,s=0,i=(r=t.childNodes).length;s<i;s++)e=r[s],n.add_node(e);return n.parsed},s=function(){function n(t,e){var s,i;this.form_field=t,this.options=null!=e?e:{},this.label_click_handler=(s=this.label_click_handler,i=this,function(){return s.apply(i,arguments)}),n.browser_is_supported()&&(this.is_multiple=this.form_field.multiple,this.set_default_text(),this.set_default_values(),this.setup(),this.set_up_html(),this.register_observers(),this.on_ready())}return n.prototype.set_default_values=function(){var e,s;return this.click_test_action=(e=this,function(t){return e.test_active_click(t)}),this.activate_action=(s=this,function(t){return s.activate_field(t)}),this.active_field=!1,this.mouse_on_container=!1,this.results_showing=!1,this.result_highlighted=null,this.is_rtl=this.options.rtl||/\bchosen-rtl\b/.test(this.form_field.className),this.allow_single_deselect=null!=this.options.allow_single_deselect&&null!=this.form_field.options[0]&&""===this.form_field.options[0].text&&this.options.allow_single_deselect,this.disable_search_threshold=this.options.disable_search_threshold||0,this.disable_search=this.options.disable_search||!1,this.enable_split_word_search=null==this.options.enable_split_word_search||this.options.enable_split_word_search,this.group_search=null==this.options.group_search||this.options.group_search,this.search_contains=this.options.search_contains||!1,this.single_backstroke_delete=null==this.options.single_backstroke_delete||this.options.single_backstroke_delete,this.max_selected_options=this.options.max_selected_options||1/0,this.inherit_select_classes=this.options.inherit_select_classes||!1,this.display_selected_options=null==this.options.display_selected_options||this.options.display_selected_options,this.display_disabled_options=null==this.options.display_disabled_options||this.options.display_disabled_options,this.include_group_label_in_selected=this.options.include_group_label_in_selected||!1,this.max_shown_results=this.options.max_shown_results||Number.POSITIVE_INFINITY,this.case_sensitive_search=this.options.case_sensitive_search||!1,this.hide_results_on_select=null==this.options.hide_results_on_select||this.options.hide_results_on_select},n.prototype.set_default_text=function(){return this.form_field.getAttribute("data-placeholder")?this.default_text=this.form_field.getAttribute("data-placeholder"):this.is_multiple?this.default_text=this.options.placeholder_text_multiple||this.options.placeholder_text||n.default_multiple_text:this.default_text=this.options.placeholder_text_single||this.options.placeholder_text||n.default_single_text,this.default_text=this.escape_html(this.default_text),this.results_none_found=this.form_field.getAttribute("data-no_results_text")||this.options.no_results_text||n.default_no_result_text},n.prototype.choice_label=function(t){return this.include_group_label_in_selected&&null!=t.group_label?"<b class='group-name'>"+this.escape_html(t.group_label)+"</b>"+t.html:t.html},n.prototype.mouse_enter=function(){return this.mouse_on_container=!0},n.prototype.mouse_leave=function(){return this.mouse_on_container=!1},n.prototype.input_focus=function(t){if(this.is_multiple){if(!this.active_field)return setTimeout((e=this,function(){return e.container_mousedown()}),50)}else if(!this.active_field)return this.activate_field();var e},n.prototype.input_blur=function(t){if(!this.mouse_on_container)return this.active_field=!1,setTimeout((e=this,function(){return e.blur_test()}),100);var e},n.prototype.label_click_handler=function(t){return this.is_multiple?this.container_mousedown(t):this.activate_field()},n.prototype.results_option_build=function(t){var e,s,i,n,r,o,h;for(e="",n=h=0,r=(o=this.results_data).length;n<r&&((i="")!==(i=(s=o[n]).group?this.result_add_group(s):this.result_add_option(s))&&(h++,e+=i),(null!=t?t.first:void 0)&&(s.selected&&this.is_multiple?this.choice_build(s):s.selected&&!this.is_multiple&&this.single_set_selected_text(this.choice_label(s))),!(h>=this.max_shown_results));n++);return e},n.prototype.result_add_option=function(t){var e,s;return t.search_match&&this.include_option_in_results(t)?(e=[],t.disabled||t.selected&&this.is_multiple||e.push("active-result"),!t.disabled||t.selected&&this.is_multiple||e.push("disabled-result"),t.selected&&e.push("result-selected"),null!=t.group_array_index&&e.push("group-option"),""!==t.classes&&e.push(t.classes),(s=document.createElement("li")).className=e.join(" "),t.style&&(s.style.cssText=t.style),s.setAttribute("data-option-array-index",t.array_index),s.innerHTML=t.highlighted_html||t.html,t.title&&(s.title=t.title),this.outerHTML(s)):""},n.prototype.result_add_group=function(t){var e,s;return(t.search_match||t.group_match)&&0<t.active_options?((e=[]).push("group-result"),t.classes&&e.push(t.classes),(s=document.createElement("li")).className=e.join(" "),s.innerHTML=t.highlighted_html||this.escape_html(t.label),t.title&&(s.title=t.title),this.outerHTML(s)):""},n.prototype.results_update_field=function(){if(this.set_default_text(),this.is_multiple||this.results_reset_cleanup(),this.result_clear_highlight(),this.results_build(),this.results_showing)return this.winnow_results()},n.prototype.reset_single_select_options=function(){var t,e,s,i,n;for(n=[],t=0,e=(s=this.results_data).length;t<e;t++)(i=s[t]).selected?n.push(i.selected=!1):n.push(void 0);return n},n.prototype.results_toggle=function(){return this.results_showing?this.results_hide():this.results_show()},n.prototype.results_search=function(t){return this.results_showing?this.winnow_results():this.results_show()},n.prototype.winnow_results=function(t){var e,s,i,n,r,o,h,l,c,a,u,_,d,p,f;for(this.no_results_clear(),a=0,e=(h=this.get_search_text()).replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),c=this.get_search_regex(e),i=0,n=(l=this.results_data).length;i<n;i++)(r=l[i]).search_match=!1,_=u=null,r.highlighted_html="",this.include_option_in_results(r)&&(r.group&&(r.group_match=!1,r.active_options=0),null!=r.group_array_index&&this.results_data[r.group_array_index]&&(0===(u=this.results_data[r.group_array_index]).active_options&&u.search_match&&(a+=1),u.active_options+=1),f=r.group?r.label:r.text,r.group&&!this.group_search||(_=this.search_string_match(f,c),r.search_match=null!=_,r.search_match&&!r.group&&(a+=1),r.search_match?(h.length&&(d=_.index,o=f.slice(0,d),s=f.slice(d,d+h.length),p=f.slice(d+h.length),r.highlighted_html=this.escape_html(o)+"<em>"+this.escape_html(s)+"</em>"+this.escape_html(p)),null!=u&&(u.group_match=!0)):null!=r.group_array_index&&this.results_data[r.group_array_index].search_match&&(r.search_match=!0)));return this.result_clear_highlight(),a<1&&h.length?(this.update_results_content(""),this.no_results(h)):(this.update_results_content(this.results_option_build()),(null!=t?t.skip_highlight:void 0)?void 0:this.winnow_results_set_highlight())},n.prototype.get_search_regex=function(t){var e,s;return s=this.search_contains?t:"(^|\\s|\\b)"+t+"[^\\s]*",this.enable_split_word_search||this.search_contains||(s="^"+s),e=this.case_sensitive_search?"":"i",new RegExp(s,e)},n.prototype.search_string_match=function(t,e){var s;return s=e.exec(t),!this.search_contains&&(null!=s?s[1]:void 0)&&(s.index+=1),s},n.prototype.choices_count=function(){var t,e,s;if(null!=this.selected_option_count)return this.selected_option_count;for(t=this.selected_option_count=0,e=(s=this.form_field.options).length;t<e;t++)s[t].selected&&(this.selected_option_count+=1);return this.selected_option_count},n.prototype.choices_click=function(t){if(t.preventDefault(),this.activate_field(),!this.results_showing&&!this.is_disabled)return this.results_show()},n.prototype.keydown_checker=function(t){var e,s;switch(s=null!=(e=t.which)?e:t.keyCode,this.search_field_scale(),8!==s&&this.pending_backstroke&&this.clear_backstroke(),s){case 8:this.backstroke_length=this.get_search_field_value().length;break;case 9:this.results_showing&&!this.is_multiple&&this.result_select(t),this.mouse_on_container=!1;break;case 13:case 27:this.results_showing&&t.preventDefault();break;case 32:this.disable_search&&t.preventDefault();break;case 38:t.preventDefault(),this.keyup_arrow();break;case 40:t.preventDefault(),this.keydown_arrow()}},n.prototype.keyup_checker=function(t){var e,s;switch(s=null!=(e=t.which)?e:t.keyCode,this.search_field_scale(),s){case 8:this.is_multiple&&this.backstroke_length<1&&0<this.choices_count()?this.keydown_backstroke():this.pending_backstroke||(this.result_clear_highlight(),this.results_search());break;case 13:t.preventDefault(),this.results_showing&&this.result_select(t);break;case 27:this.results_showing&&this.results_hide();break;case 9:case 16:case 17:case 18:case 38:case 40:case 91:break;default:this.results_search()}},n.prototype.clipboard_event_checker=function(t){var e;if(!this.is_disabled)return setTimeout((e=this,function(){return e.results_search()}),50)},n.prototype.container_width=function(){return null!=this.options.width?this.options.width:this.form_field.offsetWidth+"px"},n.prototype.include_option_in_results=function(t){return!(this.is_multiple&&!this.display_selected_options&&t.selected)&&(!(!this.display_disabled_options&&t.disabled)&&!t.empty)},n.prototype.search_results_touchstart=function(t){return this.touch_started=!0,this.search_results_mouseover(t)},n.prototype.search_results_touchmove=function(t){return this.touch_started=!1,this.search_results_mouseout(t)},n.prototype.search_results_touchend=function(t){if(this.touch_started)return this.search_results_mouseup(t)},n.prototype.outerHTML=function(t){var e;return t.outerHTML?t.outerHTML:((e=document.createElement("div")).appendChild(t),e.innerHTML)},n.prototype.get_single_html=function(){return'<a class="chosen-single chosen-default">\n <span>'+this.default_text+'</span>\n <div><b></b></div>\n</a>\n<div class="chosen-drop">\n <div class="chosen-search">\n <input class="chosen-search-input" type="text" autocomplete="off" />\n </div>\n <ul class="chosen-results"></ul>\n</div>'},n.prototype.get_multi_html=function(){return'<ul class="chosen-choices">\n <li class="search-field">\n <input class="chosen-search-input" type="text" autocomplete="off" value="'+this.default_text+'" />\n </li>\n</ul>\n<div class="chosen-drop">\n <ul class="chosen-results"></ul>\n</div>'},n.prototype.get_no_results_html=function(t){return'<li class="no-results">\n '+this.results_none_found+" <span>"+this.escape_html(t)+"</span>\n</li>"},n.browser_is_supported=function(){return"Microsoft Internet Explorer"===window.navigator.appName?8<=document.documentMode:!(/iP(od|hone)/i.test(window.navigator.userAgent)||/IEMobile/i.test(window.navigator.userAgent)||/Windows Phone/i.test(window.navigator.userAgent)||/BlackBerry/i.test(window.navigator.userAgent)||/BB10/i.test(window.navigator.userAgent)||/Android.*Mobile/i.test(window.navigator.userAgent))},n.default_multiple_text="Select Some Options",n.default_single_text="Select an Option",n.default_no_result_text="No results match",n}(),(h=jQuery).fn.extend({chosen:function(i){return s.browser_is_supported()?this.each(function(t){var e,s;s=(e=h(this)).data("chosen"),"destroy"!==i?s instanceof n||e.data("chosen",new n(this,i)):s instanceof n&&s.destroy()}):this}}),n=function(t){function e(){return e.__super__.constructor.apply(this,arguments)}return function(t,e){for(var s in e)r.call(e,s)&&(t[s]=e[s]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,s),e.prototype.setup=function(){return this.form_field_jq=h(this.form_field),this.current_selectedIndex=this.form_field.selectedIndex},e.prototype.set_up_html=function(){var t,e;return(t=["chosen-container"]).push("chosen-container-"+(this.is_multiple?"multi":"single")),this.inherit_select_classes&&this.form_field.className&&t.push(this.form_field.className),this.is_rtl&&t.push("chosen-rtl"),e={class:t.join(" "),title:this.form_field.title},this.form_field.id.length&&(e.id=this.form_field.id.replace(/[^\w]/g,"_")+"_chosen"),this.container=h("<div />",e),this.container.width(this.container_width()),this.is_multiple?this.container.html(this.get_multi_html()):this.container.html(this.get_single_html()),this.form_field_jq.hide().after(this.container),this.dropdown=this.container.find("div.chosen-drop").first(),this.search_field=this.container.find("input").first(),this.search_results=this.container.find("ul.chosen-results").first(),this.search_field_scale(),this.search_no_results=this.container.find("li.no-results").first(),this.is_multiple?(this.search_choices=this.container.find("ul.chosen-choices").first(),this.search_container=this.container.find("li.search-field").first()):(this.search_container=this.container.find("div.chosen-search").first(),this.selected_item=this.container.find(".chosen-single").first()),this.results_build(),this.set_tab_index(),this.set_label_behavior()},e.prototype.on_ready=function(){return this.form_field_jq.trigger("chosen:ready",{chosen:this})},e.prototype.register_observers=function(){var e,s,i,n,r,o,h,l,c,a,u,_,d,p,f,g,m,v,y,b,w,x,k,C;return this.container.on("touchstart.chosen",(e=this,function(t){e.container_mousedown(t)})),this.container.on("touchend.chosen",(s=this,function(t){s.container_mouseup(t)})),this.container.on("mousedown.chosen",(i=this,function(t){i.container_mousedown(t)})),this.container.on("mouseup.chosen",(n=this,function(t){n.container_mouseup(t)})),this.container.on("mouseenter.chosen",(r=this,function(t){r.mouse_enter(t)})),this.container.on("mouseleave.chosen",(o=this,function(t){o.mouse_leave(t)})),this.search_results.on("mouseup.chosen",(h=this,function(t){h.search_results_mouseup(t)})),this.search_results.on("mouseover.chosen",(l=this,function(t){l.search_results_mouseover(t)})),this.search_results.on("mouseout.chosen",(c=this,function(t){c.search_results_mouseout(t)})),this.search_results.on("mousewheel.chosen DOMMouseScroll.chosen",(a=this,function(t){a.search_results_mousewheel(t)})),this.search_results.on("touchstart.chosen",(u=this,function(t){u.search_results_touchstart(t)})),this.search_results.on("touchmove.chosen",(_=this,function(t){_.search_results_touchmove(t)})),this.search_results.on("touchend.chosen",(d=this,function(t){d.search_results_touchend(t)})),this.form_field_jq.on("chosen:updated.chosen",(p=this,function(t){p.results_update_field(t)})),this.form_field_jq.on("chosen:activate.chosen",(f=this,function(t){f.activate_field(t)})),this.form_field_jq.on("chosen:open.chosen",(g=this,function(t){g.container_mousedown(t)})),this.form_field_jq.on("chosen:close.chosen",(m=this,function(t){m.close_field(t)})),this.search_field.on("blur.chosen",(v=this,function(t){v.input_blur(t)})),this.search_field.on("keyup.chosen",(y=this,function(t){y.keyup_checker(t)})),this.search_field.on("keydown.chosen",(b=this,function(t){b.keydown_checker(t)})),this.search_field.on("focus.chosen",(w=this,function(t){w.input_focus(t)})),this.search_field.on("cut.chosen",(x=this,function(t){x.clipboard_event_checker(t)})),this.search_field.on("paste.chosen",(k=this,function(t){k.clipboard_event_checker(t)})),this.is_multiple?this.search_choices.on("click.chosen",(C=this,function(t){C.choices_click(t)})):this.container.on("click.chosen",function(t){t.preventDefault()})},e.prototype.destroy=function(){return h(this.container[0].ownerDocument).off("click.chosen",this.click_test_action),0<this.form_field_label.length&&this.form_field_label.off("click.chosen"),this.search_field[0].tabIndex&&(this.form_field_jq[0].tabIndex=this.search_field[0].tabIndex),this.container.remove(),this.form_field_jq.removeData("chosen"),this.form_field_jq.show()},e.prototype.search_field_disabled=function(){return this.is_disabled=this.form_field.disabled||this.form_field_jq.parents("fieldset").is(":disabled"),this.container.toggleClass("chosen-disabled",this.is_disabled),this.search_field[0].disabled=this.is_disabled,this.is_multiple||this.selected_item.off("focus.chosen",this.activate_field),this.is_disabled?this.close_field():this.is_multiple?void 0:this.selected_item.on("focus.chosen",this.activate_field)},e.prototype.container_mousedown=function(t){var e;if(!this.is_disabled)return!t||"mousedown"!==(e=t.type)&&"touchstart"!==e||this.results_showing||t.preventDefault(),null!=t&&h(t.target).hasClass("search-choice-close")?void 0:(this.active_field?this.is_multiple||!t||h(t.target)[0]!==this.selected_item[0]&&!h(t.target).parents("a.chosen-single").length||(t.preventDefault(),this.results_toggle()):(this.is_multiple&&this.search_field.val(""),h(this.container[0].ownerDocument).on("click.chosen",this.click_test_action),this.results_show()),this.activate_field())},e.prototype.container_mouseup=function(t){if("ABBR"===t.target.nodeName&&!this.is_disabled)return this.results_reset(t)},e.prototype.search_results_mousewheel=function(t){var e;if(t.originalEvent&&(e=t.originalEvent.deltaY||-t.originalEvent.wheelDelta||t.originalEvent.detail),null!=e)return t.preventDefault(),"DOMMouseScroll"===t.type&&(e*=40),this.search_results.scrollTop(e+this.search_results.scrollTop())},e.prototype.blur_test=function(t){if(!this.active_field&&this.container.hasClass("chosen-container-active"))return this.close_field()},e.prototype.close_field=function(){return h(this.container[0].ownerDocument).off("click.chosen",this.click_test_action),this.active_field=!1,this.results_hide(),this.container.removeClass("chosen-container-active"),this.clear_backstroke(),this.show_search_field_default(),this.search_field_scale(),this.search_field.blur()},e.prototype.activate_field=function(){if(!this.is_disabled)return this.container.addClass("chosen-container-active"),this.active_field=!0,this.search_field.val(this.search_field.val()),this.search_field.focus()},e.prototype.test_active_click=function(t){var e;return(e=h(t.target).closest(".chosen-container")).length&&this.container[0]===e[0]?this.active_field=!0:this.close_field()},e.prototype.results_build=function(){return this.parsing=!0,this.selected_option_count=null,this.results_data=o.select_to_array(this.form_field),this.is_multiple?this.search_choices.find("li.search-choice").remove():(this.single_set_selected_text(),this.disable_search||this.form_field.options.length<=this.disable_search_threshold?(this.search_field[0].readOnly=!0,this.container.addClass("chosen-container-single-nosearch")):(this.search_field[0].readOnly=!1,this.container.removeClass("chosen-container-single-nosearch"))),this.update_results_content(this.results_option_build({first:!0})),this.search_field_disabled(),this.show_search_field_default(),this.search_field_scale(),this.parsing=!1},e.prototype.result_do_highlight=function(t){var e,s,i,n;if(t.length){if(this.result_clear_highlight(),this.result_highlight=t,this.result_highlight.addClass("highlighted"),(i=parseInt(this.search_results.css("maxHeight"),10))+(n=this.search_results.scrollTop())<=(e=(s=this.result_highlight.position().top+this.search_results.scrollTop())+this.result_highlight.outerHeight()))return this.search_results.scrollTop(0<e-i?e-i:0);if(s<n)return this.search_results.scrollTop(s)}},e.prototype.result_clear_highlight=function(){return this.result_highlight&&this.result_highlight.removeClass("highlighted"),this.result_highlight=null},e.prototype.results_show=function(){return this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.container.addClass("chosen-with-drop"),this.results_showing=!0,this.search_field.focus(),this.search_field.val(this.get_search_field_value()),this.winnow_results(),this.form_field_jq.trigger("chosen:showing_dropdown",{chosen:this}))},e.prototype.update_results_content=function(t){return this.search_results.html(t)},e.prototype.results_hide=function(){return this.results_showing&&(this.result_clear_highlight(),this.container.removeClass("chosen-with-drop"),this.form_field_jq.trigger("chosen:hiding_dropdown",{chosen:this})),this.results_showing=!1},e.prototype.set_tab_index=function(t){var e;if(this.form_field.tabIndex)return e=this.form_field.tabIndex,this.form_field.tabIndex=-1,this.search_field[0].tabIndex=e},e.prototype.set_label_behavior=function(){if(this.form_field_label=this.form_field_jq.parents("label"),!this.form_field_label.length&&this.form_field.id.length&&(this.form_field_label=h("label[for='"+this.form_field.id+"']")),0<this.form_field_label.length)return this.form_field_label.on("click.chosen",this.label_click_handler)},e.prototype.show_search_field_default=function(){return this.is_multiple&&this.choices_count()<1&&!this.active_field?(this.search_field.val(this.default_text),this.search_field.addClass("default")):(this.search_field.val(""),this.search_field.removeClass("default"))},e.prototype.search_results_mouseup=function(t){var e;if((e=h(t.target).hasClass("active-result")?h(t.target):h(t.target).parents(".active-result").first()).length)return this.result_highlight=e,this.result_select(t),this.search_field.focus()},e.prototype.search_results_mouseover=function(t){var e;if(e=h(t.target).hasClass("active-result")?h(t.target):h(t.target).parents(".active-result").first())return this.result_do_highlight(e)},e.prototype.search_results_mouseout=function(t){if(h(t.target).hasClass("active-result")||h(t.target).parents(".active-result").first())return this.result_clear_highlight()},e.prototype.choice_build=function(t){var e,s,i;return e=h("<li />",{class:"search-choice"}).html("<span>"+this.choice_label(t)+"</span>"),t.disabled?e.addClass("search-choice-disabled"):((s=h("<a />",{class:"search-choice-close","data-option-array-index":t.array_index})).on("click.chosen",(i=this,function(t){return i.choice_destroy_link_click(t)})),e.append(s)),this.search_container.before(e)},e.prototype.choice_destroy_link_click=function(t){if(t.preventDefault(),t.stopPropagation(),!this.is_disabled)return this.choice_destroy(h(t.target))},e.prototype.choice_destroy=function(t){if(this.result_deselect(t[0].getAttribute("data-option-array-index")))return this.active_field?this.search_field.focus():this.show_search_field_default(),this.is_multiple&&0<this.choices_count()&&this.get_search_field_value().length<1&&this.results_hide(),t.parents("li").first().remove(),this.search_field_scale()},e.prototype.results_reset=function(){if(this.reset_single_select_options(),this.form_field.options[0].selected=!0,this.single_set_selected_text(),this.show_search_field_default(),this.results_reset_cleanup(),this.trigger_form_field_change(),this.active_field)return this.results_hide()},e.prototype.results_reset_cleanup=function(){return this.current_selectedIndex=this.form_field.selectedIndex,this.selected_item.find("abbr").remove()},e.prototype.result_select=function(t){var e,s;if(this.result_highlight)return e=this.result_highlight,this.result_clear_highlight(),this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.is_multiple?e.removeClass("active-result"):this.reset_single_select_options(),e.addClass("result-selected"),(s=this.results_data[e[0].getAttribute("data-option-array-index")]).selected=!0,this.form_field.options[s.options_index].selected=!0,this.selected_option_count=null,this.is_multiple?this.choice_build(s):this.single_set_selected_text(this.choice_label(s)),this.is_multiple&&(!this.hide_results_on_select||t.metaKey||t.ctrlKey)?t.metaKey||t.ctrlKey?this.winnow_results({skip_highlight:!0}):(this.search_field.val(""),this.winnow_results()):(this.results_hide(),this.show_search_field_default()),(this.is_multiple||this.form_field.selectedIndex!==this.current_selectedIndex)&&this.trigger_form_field_change({selected:this.form_field.options[s.options_index].value}),this.current_selectedIndex=this.form_field.selectedIndex,t.preventDefault(),this.search_field_scale())},e.prototype.single_set_selected_text=function(t){return null==t&&(t=this.default_text),t===this.default_text?this.selected_item.addClass("chosen-default"):(this.single_deselect_control_build(),this.selected_item.removeClass("chosen-default")),this.selected_item.find("span").html(t)},e.prototype.result_deselect=function(t){var e;return e=this.results_data[t],!this.form_field.options[e.options_index].disabled&&(e.selected=!1,this.form_field.options[e.options_index].selected=!1,this.selected_option_count=null,this.result_clear_highlight(),this.results_showing&&this.winnow_results(),this.trigger_form_field_change({deselected:this.form_field.options[e.options_index].value}),this.search_field_scale(),!0)},e.prototype.single_deselect_control_build=function(){if(this.allow_single_deselect)return this.selected_item.find("abbr").length||this.selected_item.find("span").first().after('<abbr class="search-choice-close"></abbr>'),this.selected_item.addClass("chosen-single-with-deselect")},e.prototype.get_search_field_value=function(){return this.search_field.val()},e.prototype.get_search_text=function(){return h.trim(this.get_search_field_value())},e.prototype.escape_html=function(t){return h("<div/>").text(t).html()},e.prototype.winnow_results_set_highlight=function(){var t,e;if(null!=(t=(e=this.is_multiple?[]:this.search_results.find(".result-selected.active-result")).length?e.first():this.search_results.find(".active-result").first()))return this.result_do_highlight(t)},e.prototype.no_results=function(t){var e;return e=this.get_no_results_html(t),this.search_results.append(e),this.form_field_jq.trigger("chosen:no_results",{chosen:this})},e.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()},e.prototype.keydown_arrow=function(){var t;return this.results_showing&&this.result_highlight?(t=this.result_highlight.nextAll("li.active-result").first())?this.result_do_highlight(t):void 0:this.results_show()},e.prototype.keyup_arrow=function(){var t;return this.results_showing||this.is_multiple?this.result_highlight?(t=this.result_highlight.prevAll("li.active-result")).length?this.result_do_highlight(t.first()):(0<this.choices_count()&&this.results_hide(),this.result_clear_highlight()):void 0:this.results_show()},e.prototype.keydown_backstroke=function(){var t;return this.pending_backstroke?(this.choice_destroy(this.pending_backstroke.find("a").first()),this.clear_backstroke()):(t=this.search_container.siblings("li.search-choice").last()).length&&!t.hasClass("search-choice-disabled")?(this.pending_backstroke=t,this.single_backstroke_delete?this.keydown_backstroke():this.pending_backstroke.addClass("search-choice-focus")):void 0},e.prototype.clear_backstroke=function(){return this.pending_backstroke&&this.pending_backstroke.removeClass("search-choice-focus"),this.pending_backstroke=null},e.prototype.search_field_scale=function(){var t,e,s,i,n,r,o;if(this.is_multiple){for(n={position:"absolute",left:"-1000px",top:"-1000px",display:"none",whiteSpace:"pre"},e=0,s=(r=["fontSize","fontStyle","fontWeight","fontFamily","lineHeight","textTransform","letterSpacing"]).length;e<s;e++)n[i=r[e]]=this.search_field.css(i);return(t=h("<div />").css(n)).text(this.get_search_field_value()),h("body").append(t),o=t.width()+25,t.remove(),this.container.is(":visible")&&(o=Math.min(this.container.outerWidth()-10,o)),this.search_field.width(o)}},e.prototype.trigger_form_field_change=function(t){return this.form_field_jq.trigger("input",t),this.form_field_jq.trigger("change",t)},e}()}.call(this),function(o){"use strict";function n(t,e,s){this.init(t,e,s)}function t(){this.rules=[]}o.extend(n.prototype,{init:function(t,e,s){this.controller=t,this.condition=e,this.value=s,this.rules=[],this.controls=[]},evalCondition:function(t,e,s,i,n){if("=="==s)return this.checkBoolean(i)==this.checkBoolean(n);if("!="==s)return this.checkBoolean(i)!=this.checkBoolean(n);if(">="==s)return Number(n)>=Number(i);if("<="==s)return Number(n)<=Number(i);if(">"==s)return Number(n)>Number(i);if("<"==s)return Number(n)<Number(i);if("()"==s)return window[i](t,e,n);if("any"==s){if(o.isArray(n)){for(var r=n.length-1;0<=r;r--)if(-1!==o.inArray(n[r],i.split(",")))return!0}else if(-1!==o.inArray(n,i.split(",")))return!0}else if("not-any"==s)if(o.isArray(n)){for(r=n.length-1;0<=r;r--)if(-1==o.inArray(n[r],i.split(",")))return!0}else if(-1==o.inArray(n,i.split(",")))return!0;return!1},checkBoolean:function(t){switch(t){case!0:case"true":case 1:case"1":t=!0;break;case null:case!1:case"false":case 0:case"0":t=!1}return t},checkCondition:function(t){if(!this.condition)return!0;var e=t.find(this.controller),s=this.getControlValue(t,e);return void 0!==s&&(s=this.normalizeValue(e,this.value,s),this.evalCondition(t,e,this.condition,this.value,s))},normalizeValue:function(t,e,s){return"number"==typeof e?parseFloat(s):s},getControlValue:function(t,e){return 1<e.length&&("radio"==e.attr("type")||"checkbox"==e.attr("type"))?e.filter(":checked").map(function(){return this.value}).get():"checkbox"==e.attr("type")||"radio"==e.attr("type")?e.is(":checked"):e.val()},createRule:function(t,e,s){var i=new n(t,e,s);return this.rules.push(i),i},include:function(t){this.controls.push(t)},applyRule:function(s,t){var e;e=void 0===t?this.checkCondition(s):t;var i=o.map(this.controls,function(t,e){return s.find(t)});e?(o(i).each(function(){o(this).removeClass("csf-depend-on")}),o(this.rules).each(function(){this.applyRule(s)})):(o(i).each(function(){o(this).addClass("csf-depend-on")}),o(this.rules).each(function(){this.applyRule(s,!1)}))}}),o.extend(t.prototype,{createRule:function(t,e,s){var i=new n(t,e,s);return this.rules.push(i),i},applyRules:function(t){o(this.rules).each(function(){this.applyRule(t)})}}),o.csf_deps={createRuleset:function(){return new t},enable:function(s,i,n){return s.on("change keyup",function(t){var e=t.target.getAttribute("data-depend-id")||t.target.getAttribute("data-sub-depend-id");-1!==n.indexOf(e)&&i.applyRules(s)}),i.applyRules(s),!0}}}(jQuery),function(t,s){if("function"==typeof define&&define.amd)define(["exports","jquery"],function(t,e){return s(t,e)});else if("undefined"!=typeof exports){var e=require("jquery");s(exports,e)}else s(t,t.jQuery||t.Zepto||t.ender||t.$)}(this,function(t,e){var h={validate:/^(?!(_nonce|_pseudo))[a-zA-Z0-9_-]*(?:\[(?:\d*|(?!(_nonce|_pseudo))[a-zA-Z0-9_-]+)\])*$/i,key:/[a-zA-Z0-9_-]+|(?=\[\])/g,named:/^[a-zA-Z0-9_-]+$/,push:/^$/,fixed:/^\d+$/};function s(i,t){var s={},r={};function o(t,e,s){return t[e]=s,t}function e(){return s}this.addPair=function(t){if(!h.validate.test(t.name))return this;var e=function(t,e){for(var s,i=t.match(h.key);void 0!==(s=i.pop());)h.push.test(s)?e=o([],(n=t.replace(/\[\]$/,""),void 0===r[n]&&(r[n]=0),r[n]++),e):h.fixed.test(s)?e=o([],s,e):h.named.test(s)&&(e=o({},s,e));var n;return e}(t.name,t.value);return s=i.extend(!0,s,e),this},this.addPairs=function(t){if(!i.isArray(t))throw new Error("formSerializer.addPairs expects an Array");for(var e=0,s=t.length;e<s;e++)this.addPair(t[e]);return this},this.serialize=e,this.serializeJSON=function(){return JSON.stringify(e())}}return s.patterns=h,s.serializeObject=function(){return new s(e,this).addPairs(this.serializeArray()).serialize()},s.serializeJSON=function(){return new s(e,this).addPairs(this.serializeArray()).serializeJSON()},void 0!==e.fn&&(e.fn.serializeObjectCSF=s.serializeObject,e.fn.serializeJSONCSF=s.serializeJSON),t.FormSerializer=s});
1
+ /* Codestar Framework | A Simple and Lightweight WordPress Option Framework - v2.2.5*/
2
 
3
  !function(o){function e(t,e){this.element=o(t),this.options=e,this.init()}e.prototype.init=function(){this.element.chosen(this.options),this.container=this.element.next(".chosen-container"),this.search_field=this.container.find(".chosen-search-input"),this.is_multiple=this.container.hasClass("chosen-container-multi"),this.is_typing=!1,this.chosenXhr=null,this.events()},e.prototype.events=function(){var t=this;this.search_field.on("compositionstart",function(){t.is_typing=!0}),this.search_field.on("compositionend",function(){t.is_typing=!1,t.update_list()}),this.search_field.on("keyup",function(){t.update_list()}),this.search_field.on("focus",function(){t.search_field_focused()})},e.prototype.search_field_focused=function(){this.search_welcome_message(),0===this.options.min_length&&0===this.search_field.val().length&&this.update_list()},e.prototype.search_welcome_message=function(){var t=o.trim(this.search_field.val()),e=this.container.find(".chosen-results");0===e.children().length&&0===t.length&&e.html('<li class="no-results">'+this.options.typing_text.replace("%s",this.options.min_length-t.length)+"</li>")},e.prototype.update_list=function(){var e=this;if(this.search_welcome_message(),!this.is_typing){var t=o.trim(this.search_field.val()),s=t.length<this.options.min_length?this.options.typing_text.replace("%s",this.options.min_length-t.length):this.options.searching_text;this.container.find(".no-results").text(s),t!==this.search_field.data("prevVal")&&(this.search_field.data("prevVal",t),this.timer&&clearTimeout(this.timer),t.length<this.options.min_length||(this.timer=setTimeout(function(){e.chosenXhr&&e.chosenXhr.abort(),e.options.data.term=t,e.chosenXhr=window.wp.ajax.post("csf-chosen",e.options.data).done(function(t){e.show_results(t)}).fail(function(t){e.container.find(".no-results").text(t.error)})},this.options.type_delay)))}},e.prototype.show_results=function(t){var s=this;if(!this.is_typing&&null!==t){if(0===t.length)return this.element.data().chosen.no_results_clear(),void this.element.data().chosen.no_results(this.search_field.val());var i=[];this.element.find("option").each(function(){o(this).is(":selected")?i.push(o(this).val()+"-"+o(this).text()):o(this).attr("value").length&&o(this).remove()}),o.each(t,function(t,e){-1===o.inArray(e.value+"-"+e.text,i)&&o("<option />").attr("value",e.value).html(e.text).appendTo(s.element)});var e=this.search_field.val(),n=this.search_field.innerWidth();if(this.element.trigger("chosen:updated"),this.is_multiple){var r=this.element.parent().find(".csf-hide-select").val()||[];this.element.CSFChosenOrder(r,!0),this.search_field.css("width",n)}this.search_field.val(e),null!==this.chosenXhr.done&&this.chosenXhr.done(t)}},o.fn.CSFAjaxChosen=function(t){return this.each(function(){new e(this,t)})}}(jQuery),function(){var s,i,o=[].indexOf||function(t){for(var e=0,s=this.length;e<s;e++)if(e in this&&this[e]===t)return e;return-1},n={}.hasOwnProperty;i=function(){function t(){}return t.insertAt=function(t,e,s){return s.insertBefore(t,s.children[e].nextSibling)},t.getFlattenedOptionsAndGroups=function(t){var e,s,i,n,r,o,h,l,c;for(e=[],o=0,l=(i=Array.prototype.filter.call(t.childNodes,function(t){var e;return"OPTION"===(e=t.nodeName.toUpperCase())||"OPTGROUP"===e})).length;o<l;o++)if(s=i[o],e.push(s),"OPTGROUP"===s.nodeName.toUpperCase())for(h=0,c=(r=Array.prototype.filter.call(s.childNodes,function(t){return"OPTION"===t.nodeName.toUpperCase()})).length;h<c;h++)n=r[h],e.push(n);return e},t.isValidMultipleSelectElement=function(t){return null!=t&&"SELECT"===t.nodeName&&t.multiple},t.getChosenUIContainer=function(t){return""!==t.id?document.getElementById(t.id.replace(/-/g,"_")+"_chosen"):this.searchChosenUIContainer(t)},t.isChosenified=function(t){return null!=this.getChosenUIContainer(t)},t.forceSelection=function(t,e){var s,i,n,r;for(n=this.getFlattenedOptionsAndGroups(t),s=0;s<n.length;)r=(i=n[s]).getAttribute("value"),0<=o.call(e,r)?(i.selected=!0,i.setAttribute("selected","")):(i.selected=!1,i.removeAttribute("selected")),s++;return this.triggerEvent(t,"chosen:updated")},t.CSFChosenOrder=function(t,e,s){var i,n,r,o,h,l,c,a,u,_,d,p,f,g;if(null!=this.getDOMElement&&(t=this.getDOMElement(t)),this.isValidMultipleSelectElement(t)&&null!=(n=this.getChosenUIContainer(t))&&e instanceof Array){for(e=e.map(Function.prototype.call,String.prototype.trim),c=this.getFlattenedOptionsAndGroups(t),null!=s&&!0===s&&this.forceSelection(t,e),g=[],r=_=0,p=e.length;_<p;r=++_){for(h=e[r],a=null,o=d=0,f=c.length;d<f;o=++d)c[o].value===h&&(a=o);i=n.querySelectorAll(".search-choice"),u=this.relAttributeName,null!=(l=Array.prototype.filter.call(i,function(t){return null!=t.querySelector("a.search-choice-close["+u+'="'+a+'"]')})[0])&&(n.querySelector("ul.chosen-choices"),g.push(this.insertAt(l,r,n.querySelector("ul.chosen-choices"))))}return g}},t}(),(s=jQuery).fn.extend({CSFChosenOrder:function(t,e){return _CSFChosenOrder.CSFChosenOrder(this,t,e)}}),this._CSFChosenOrder=function(t){function e(){return e.__super__.constructor.apply(this,arguments)}return function(t,e){for(var s in e)n.call(e,s)&&(t[s]=e[s]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,i),e.relAttributeName="data-option-array-index",e.isjQueryObject=function(t){return"undefined"!=typeof jQuery&&null!==jQuery&&t instanceof jQuery},e.getDOMElement=function(t){return this.isjQueryObject(t)?t.get(0):t},e.searchChosenUIContainer=function(t){return null!=s(t).data("chosen")?s(t).data("chosen").container[0]:s(t).next(".chosen-container.chosen-container-multi").get(0)},e.triggerEvent=function(t,e){return s(t).trigger(e)},e}()}.call(this),function(){var h,s,n,o,r={}.hasOwnProperty;(o=function(){function t(){this.options_index=0,this.parsed=[]}return t.prototype.add_node=function(t){return"OPTGROUP"===t.nodeName.toUpperCase()?this.add_group(t):this.add_option(t)},t.prototype.add_group=function(t){var e,s,i,n,r,o;for(e=this.parsed.length,this.parsed.push({array_index:e,group:!0,label:t.label,title:t.title?t.title:void 0,children:0,disabled:t.disabled,classes:t.className}),o=[],s=0,i=(r=t.childNodes).length;s<i;s++)n=r[s],o.push(this.add_option(n,e,t.disabled));return o},t.prototype.add_option=function(t,e,s){if("OPTION"===t.nodeName.toUpperCase())return""!==t.text?(null!=e&&(this.parsed[e].children+=1),this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,value:t.value,text:t.text,html:t.innerHTML,title:t.title?t.title:void 0,selected:t.selected,disabled:!0===s?s:t.disabled,group_array_index:e,group_label:null!=e?this.parsed[e].label:null,classes:t.className,style:t.style.cssText})):this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,empty:!0}),this.options_index+=1},t}()).select_to_array=function(t){var e,s,i,n,r;for(n=new o,s=0,i=(r=t.childNodes).length;s<i;s++)e=r[s],n.add_node(e);return n.parsed},s=function(){function n(t,e){var s,i;this.form_field=t,this.options=null!=e?e:{},this.label_click_handler=(s=this.label_click_handler,i=this,function(){return s.apply(i,arguments)}),n.browser_is_supported()&&(this.is_multiple=this.form_field.multiple,this.set_default_text(),this.set_default_values(),this.setup(),this.set_up_html(),this.register_observers(),this.on_ready())}return n.prototype.set_default_values=function(){var e,s;return this.click_test_action=(e=this,function(t){return e.test_active_click(t)}),this.activate_action=(s=this,function(t){return s.activate_field(t)}),this.active_field=!1,this.mouse_on_container=!1,this.results_showing=!1,this.result_highlighted=null,this.is_rtl=this.options.rtl||/\bchosen-rtl\b/.test(this.form_field.className),this.allow_single_deselect=null!=this.options.allow_single_deselect&&null!=this.form_field.options[0]&&""===this.form_field.options[0].text&&this.options.allow_single_deselect,this.disable_search_threshold=this.options.disable_search_threshold||0,this.disable_search=this.options.disable_search||!1,this.enable_split_word_search=null==this.options.enable_split_word_search||this.options.enable_split_word_search,this.group_search=null==this.options.group_search||this.options.group_search,this.search_contains=this.options.search_contains||!1,this.single_backstroke_delete=null==this.options.single_backstroke_delete||this.options.single_backstroke_delete,this.max_selected_options=this.options.max_selected_options||1/0,this.inherit_select_classes=this.options.inherit_select_classes||!1,this.display_selected_options=null==this.options.display_selected_options||this.options.display_selected_options,this.display_disabled_options=null==this.options.display_disabled_options||this.options.display_disabled_options,this.include_group_label_in_selected=this.options.include_group_label_in_selected||!1,this.max_shown_results=this.options.max_shown_results||Number.POSITIVE_INFINITY,this.case_sensitive_search=this.options.case_sensitive_search||!1,this.hide_results_on_select=null==this.options.hide_results_on_select||this.options.hide_results_on_select},n.prototype.set_default_text=function(){return this.form_field.getAttribute("data-placeholder")?this.default_text=this.form_field.getAttribute("data-placeholder"):this.is_multiple?this.default_text=this.options.placeholder_text_multiple||this.options.placeholder_text||n.default_multiple_text:this.default_text=this.options.placeholder_text_single||this.options.placeholder_text||n.default_single_text,this.default_text=this.escape_html(this.default_text),this.results_none_found=this.form_field.getAttribute("data-no_results_text")||this.options.no_results_text||n.default_no_result_text},n.prototype.choice_label=function(t){return this.include_group_label_in_selected&&null!=t.group_label?"<b class='group-name'>"+this.escape_html(t.group_label)+"</b>"+t.html:t.html},n.prototype.mouse_enter=function(){return this.mouse_on_container=!0},n.prototype.mouse_leave=function(){return this.mouse_on_container=!1},n.prototype.input_focus=function(t){if(this.is_multiple){if(!this.active_field)return setTimeout((e=this,function(){return e.container_mousedown()}),50)}else if(!this.active_field)return this.activate_field();var e},n.prototype.input_blur=function(t){if(!this.mouse_on_container)return this.active_field=!1,setTimeout((e=this,function(){return e.blur_test()}),100);var e},n.prototype.label_click_handler=function(t){return this.is_multiple?this.container_mousedown(t):this.activate_field()},n.prototype.results_option_build=function(t){var e,s,i,n,r,o,h;for(e="",n=h=0,r=(o=this.results_data).length;n<r&&((i="")!==(i=(s=o[n]).group?this.result_add_group(s):this.result_add_option(s))&&(h++,e+=i),(null!=t?t.first:void 0)&&(s.selected&&this.is_multiple?this.choice_build(s):s.selected&&!this.is_multiple&&this.single_set_selected_text(this.choice_label(s))),!(h>=this.max_shown_results));n++);return e},n.prototype.result_add_option=function(t){var e,s;return t.search_match&&this.include_option_in_results(t)?(e=[],t.disabled||t.selected&&this.is_multiple||e.push("active-result"),!t.disabled||t.selected&&this.is_multiple||e.push("disabled-result"),t.selected&&e.push("result-selected"),null!=t.group_array_index&&e.push("group-option"),""!==t.classes&&e.push(t.classes),(s=document.createElement("li")).className=e.join(" "),t.style&&(s.style.cssText=t.style),s.setAttribute("data-option-array-index",t.array_index),s.innerHTML=t.highlighted_html||t.html,t.title&&(s.title=t.title),this.outerHTML(s)):""},n.prototype.result_add_group=function(t){var e,s;return(t.search_match||t.group_match)&&0<t.active_options?((e=[]).push("group-result"),t.classes&&e.push(t.classes),(s=document.createElement("li")).className=e.join(" "),s.innerHTML=t.highlighted_html||this.escape_html(t.label),t.title&&(s.title=t.title),this.outerHTML(s)):""},n.prototype.results_update_field=function(){if(this.set_default_text(),this.is_multiple||this.results_reset_cleanup(),this.result_clear_highlight(),this.results_build(),this.results_showing)return this.winnow_results()},n.prototype.reset_single_select_options=function(){var t,e,s,i,n;for(n=[],t=0,e=(s=this.results_data).length;t<e;t++)(i=s[t]).selected?n.push(i.selected=!1):n.push(void 0);return n},n.prototype.results_toggle=function(){return this.results_showing?this.results_hide():this.results_show()},n.prototype.results_search=function(t){return this.results_showing?this.winnow_results():this.results_show()},n.prototype.winnow_results=function(t){var e,s,i,n,r,o,h,l,c,a,u,_,d,p,f;for(this.no_results_clear(),a=0,e=(h=this.get_search_text()).replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),c=this.get_search_regex(e),i=0,n=(l=this.results_data).length;i<n;i++)(r=l[i]).search_match=!1,_=u=null,r.highlighted_html="",this.include_option_in_results(r)&&(r.group&&(r.group_match=!1,r.active_options=0),null!=r.group_array_index&&this.results_data[r.group_array_index]&&(0===(u=this.results_data[r.group_array_index]).active_options&&u.search_match&&(a+=1),u.active_options+=1),f=r.group?r.label:r.text,r.group&&!this.group_search||(_=this.search_string_match(f,c),r.search_match=null!=_,r.search_match&&!r.group&&(a+=1),r.search_match?(h.length&&(d=_.index,o=f.slice(0,d),s=f.slice(d,d+h.length),p=f.slice(d+h.length),r.highlighted_html=this.escape_html(o)+"<em>"+this.escape_html(s)+"</em>"+this.escape_html(p)),null!=u&&(u.group_match=!0)):null!=r.group_array_index&&this.results_data[r.group_array_index].search_match&&(r.search_match=!0)));return this.result_clear_highlight(),a<1&&h.length?(this.update_results_content(""),this.no_results(h)):(this.update_results_content(this.results_option_build()),(null!=t?t.skip_highlight:void 0)?void 0:this.winnow_results_set_highlight())},n.prototype.get_search_regex=function(t){var e,s;return s=this.search_contains?t:"(^|\\s|\\b)"+t+"[^\\s]*",this.enable_split_word_search||this.search_contains||(s="^"+s),e=this.case_sensitive_search?"":"i",new RegExp(s,e)},n.prototype.search_string_match=function(t,e){var s;return s=e.exec(t),!this.search_contains&&(null!=s?s[1]:void 0)&&(s.index+=1),s},n.prototype.choices_count=function(){var t,e,s;if(null!=this.selected_option_count)return this.selected_option_count;for(t=this.selected_option_count=0,e=(s=this.form_field.options).length;t<e;t++)s[t].selected&&(this.selected_option_count+=1);return this.selected_option_count},n.prototype.choices_click=function(t){if(t.preventDefault(),this.activate_field(),!this.results_showing&&!this.is_disabled)return this.results_show()},n.prototype.keydown_checker=function(t){var e,s;switch(s=null!=(e=t.which)?e:t.keyCode,this.search_field_scale(),8!==s&&this.pending_backstroke&&this.clear_backstroke(),s){case 8:this.backstroke_length=this.get_search_field_value().length;break;case 9:this.results_showing&&!this.is_multiple&&this.result_select(t),this.mouse_on_container=!1;break;case 13:case 27:this.results_showing&&t.preventDefault();break;case 32:this.disable_search&&t.preventDefault();break;case 38:t.preventDefault(),this.keyup_arrow();break;case 40:t.preventDefault(),this.keydown_arrow()}},n.prototype.keyup_checker=function(t){var e,s;switch(s=null!=(e=t.which)?e:t.keyCode,this.search_field_scale(),s){case 8:this.is_multiple&&this.backstroke_length<1&&0<this.choices_count()?this.keydown_backstroke():this.pending_backstroke||(this.result_clear_highlight(),this.results_search());break;case 13:t.preventDefault(),this.results_showing&&this.result_select(t);break;case 27:this.results_showing&&this.results_hide();break;case 9:case 16:case 17:case 18:case 38:case 40:case 91:break;default:this.results_search()}},n.prototype.clipboard_event_checker=function(t){var e;if(!this.is_disabled)return setTimeout((e=this,function(){return e.results_search()}),50)},n.prototype.container_width=function(){return null!=this.options.width?this.options.width:this.form_field.offsetWidth+"px"},n.prototype.include_option_in_results=function(t){return!(this.is_multiple&&!this.display_selected_options&&t.selected)&&(!(!this.display_disabled_options&&t.disabled)&&!t.empty)},n.prototype.search_results_touchstart=function(t){return this.touch_started=!0,this.search_results_mouseover(t)},n.prototype.search_results_touchmove=function(t){return this.touch_started=!1,this.search_results_mouseout(t)},n.prototype.search_results_touchend=function(t){if(this.touch_started)return this.search_results_mouseup(t)},n.prototype.outerHTML=function(t){var e;return t.outerHTML?t.outerHTML:((e=document.createElement("div")).appendChild(t),e.innerHTML)},n.prototype.get_single_html=function(){return'<a class="chosen-single chosen-default">\n <span>'+this.default_text+'</span>\n <div><b></b></div>\n</a>\n<div class="chosen-drop">\n <div class="chosen-search">\n <input class="chosen-search-input" type="text" autocomplete="off" />\n </div>\n <ul class="chosen-results"></ul>\n</div>'},n.prototype.get_multi_html=function(){return'<ul class="chosen-choices">\n <li class="search-field">\n <input class="chosen-search-input" type="text" autocomplete="off" value="'+this.default_text+'" />\n </li>\n</ul>\n<div class="chosen-drop">\n <ul class="chosen-results"></ul>\n</div>'},n.prototype.get_no_results_html=function(t){return'<li class="no-results">\n '+this.results_none_found+" <span>"+this.escape_html(t)+"</span>\n</li>"},n.browser_is_supported=function(){return"Microsoft Internet Explorer"===window.navigator.appName?8<=document.documentMode:!(/iP(od|hone)/i.test(window.navigator.userAgent)||/IEMobile/i.test(window.navigator.userAgent)||/Windows Phone/i.test(window.navigator.userAgent)||/BlackBerry/i.test(window.navigator.userAgent)||/BB10/i.test(window.navigator.userAgent)||/Android.*Mobile/i.test(window.navigator.userAgent))},n.default_multiple_text="Select Some Options",n.default_single_text="Select an Option",n.default_no_result_text="No results match",n}(),(h=jQuery).fn.extend({chosen:function(i){return s.browser_is_supported()?this.each(function(t){var e,s;s=(e=h(this)).data("chosen"),"destroy"!==i?s instanceof n||e.data("chosen",new n(this,i)):s instanceof n&&s.destroy()}):this}}),n=function(t){function e(){return e.__super__.constructor.apply(this,arguments)}return function(t,e){for(var s in e)r.call(e,s)&&(t[s]=e[s]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,s),e.prototype.setup=function(){return this.form_field_jq=h(this.form_field),this.current_selectedIndex=this.form_field.selectedIndex},e.prototype.set_up_html=function(){var t,e;return(t=["chosen-container"]).push("chosen-container-"+(this.is_multiple?"multi":"single")),this.inherit_select_classes&&this.form_field.className&&t.push(this.form_field.className),this.is_rtl&&t.push("chosen-rtl"),e={class:t.join(" "),title:this.form_field.title},this.form_field.id.length&&(e.id=this.form_field.id.replace(/[^\w]/g,"_")+"_chosen"),this.container=h("<div />",e),this.container.width(this.container_width()),this.is_multiple?this.container.html(this.get_multi_html()):this.container.html(this.get_single_html()),this.form_field_jq.hide().after(this.container),this.dropdown=this.container.find("div.chosen-drop").first(),this.search_field=this.container.find("input").first(),this.search_results=this.container.find("ul.chosen-results").first(),this.search_field_scale(),this.search_no_results=this.container.find("li.no-results").first(),this.is_multiple?(this.search_choices=this.container.find("ul.chosen-choices").first(),this.search_container=this.container.find("li.search-field").first()):(this.search_container=this.container.find("div.chosen-search").first(),this.selected_item=this.container.find(".chosen-single").first()),this.results_build(),this.set_tab_index(),this.set_label_behavior()},e.prototype.on_ready=function(){return this.form_field_jq.trigger("chosen:ready",{chosen:this})},e.prototype.register_observers=function(){var e,s,i,n,r,o,h,l,c,a,u,_,d,p,f,g,m,v,y,b,w,x,k,C;return this.container.on("touchstart.chosen",(e=this,function(t){e.container_mousedown(t)})),this.container.on("touchend.chosen",(s=this,function(t){s.container_mouseup(t)})),this.container.on("mousedown.chosen",(i=this,function(t){i.container_mousedown(t)})),this.container.on("mouseup.chosen",(n=this,function(t){n.container_mouseup(t)})),this.container.on("mouseenter.chosen",(r=this,function(t){r.mouse_enter(t)})),this.container.on("mouseleave.chosen",(o=this,function(t){o.mouse_leave(t)})),this.search_results.on("mouseup.chosen",(h=this,function(t){h.search_results_mouseup(t)})),this.search_results.on("mouseover.chosen",(l=this,function(t){l.search_results_mouseover(t)})),this.search_results.on("mouseout.chosen",(c=this,function(t){c.search_results_mouseout(t)})),this.search_results.on("mousewheel.chosen DOMMouseScroll.chosen",(a=this,function(t){a.search_results_mousewheel(t)})),this.search_results.on("touchstart.chosen",(u=this,function(t){u.search_results_touchstart(t)})),this.search_results.on("touchmove.chosen",(_=this,function(t){_.search_results_touchmove(t)})),this.search_results.on("touchend.chosen",(d=this,function(t){d.search_results_touchend(t)})),this.form_field_jq.on("chosen:updated.chosen",(p=this,function(t){p.results_update_field(t)})),this.form_field_jq.on("chosen:activate.chosen",(f=this,function(t){f.activate_field(t)})),this.form_field_jq.on("chosen:open.chosen",(g=this,function(t){g.container_mousedown(t)})),this.form_field_jq.on("chosen:close.chosen",(m=this,function(t){m.close_field(t)})),this.search_field.on("blur.chosen",(v=this,function(t){v.input_blur(t)})),this.search_field.on("keyup.chosen",(y=this,function(t){y.keyup_checker(t)})),this.search_field.on("keydown.chosen",(b=this,function(t){b.keydown_checker(t)})),this.search_field.on("focus.chosen",(w=this,function(t){w.input_focus(t)})),this.search_field.on("cut.chosen",(x=this,function(t){x.clipboard_event_checker(t)})),this.search_field.on("paste.chosen",(k=this,function(t){k.clipboard_event_checker(t)})),this.is_multiple?this.search_choices.on("click.chosen",(C=this,function(t){C.choices_click(t)})):this.container.on("click.chosen",function(t){t.preventDefault()})},e.prototype.destroy=function(){return h(this.container[0].ownerDocument).off("click.chosen",this.click_test_action),0<this.form_field_label.length&&this.form_field_label.off("click.chosen"),this.search_field[0].tabIndex&&(this.form_field_jq[0].tabIndex=this.search_field[0].tabIndex),this.container.remove(),this.form_field_jq.removeData("chosen"),this.form_field_jq.show()},e.prototype.search_field_disabled=function(){return this.is_disabled=this.form_field.disabled||this.form_field_jq.parents("fieldset").is(":disabled"),this.container.toggleClass("chosen-disabled",this.is_disabled),this.search_field[0].disabled=this.is_disabled,this.is_multiple||this.selected_item.off("focus.chosen",this.activate_field),this.is_disabled?this.close_field():this.is_multiple?void 0:this.selected_item.on("focus.chosen",this.activate_field)},e.prototype.container_mousedown=function(t){var e;if(!this.is_disabled)return!t||"mousedown"!==(e=t.type)&&"touchstart"!==e||this.results_showing||t.preventDefault(),null!=t&&h(t.target).hasClass("search-choice-close")?void 0:(this.active_field?this.is_multiple||!t||h(t.target)[0]!==this.selected_item[0]&&!h(t.target).parents("a.chosen-single").length||(t.preventDefault(),this.results_toggle()):(this.is_multiple&&this.search_field.val(""),h(this.container[0].ownerDocument).on("click.chosen",this.click_test_action),this.results_show()),this.activate_field())},e.prototype.container_mouseup=function(t){if("ABBR"===t.target.nodeName&&!this.is_disabled)return this.results_reset(t)},e.prototype.search_results_mousewheel=function(t){var e;if(t.originalEvent&&(e=t.originalEvent.deltaY||-t.originalEvent.wheelDelta||t.originalEvent.detail),null!=e)return t.preventDefault(),"DOMMouseScroll"===t.type&&(e*=40),this.search_results.scrollTop(e+this.search_results.scrollTop())},e.prototype.blur_test=function(t){if(!this.active_field&&this.container.hasClass("chosen-container-active"))return this.close_field()},e.prototype.close_field=function(){return h(this.container[0].ownerDocument).off("click.chosen",this.click_test_action),this.active_field=!1,this.results_hide(),this.container.removeClass("chosen-container-active"),this.clear_backstroke(),this.show_search_field_default(),this.search_field_scale(),this.search_field.blur()},e.prototype.activate_field=function(){if(!this.is_disabled)return this.container.addClass("chosen-container-active"),this.active_field=!0,this.search_field.val(this.search_field.val()),this.search_field.focus()},e.prototype.test_active_click=function(t){var e;return(e=h(t.target).closest(".chosen-container")).length&&this.container[0]===e[0]?this.active_field=!0:this.close_field()},e.prototype.results_build=function(){return this.parsing=!0,this.selected_option_count=null,this.results_data=o.select_to_array(this.form_field),this.is_multiple?this.search_choices.find("li.search-choice").remove():(this.single_set_selected_text(),this.disable_search||this.form_field.options.length<=this.disable_search_threshold?(this.search_field[0].readOnly=!0,this.container.addClass("chosen-container-single-nosearch")):(this.search_field[0].readOnly=!1,this.container.removeClass("chosen-container-single-nosearch"))),this.update_results_content(this.results_option_build({first:!0})),this.search_field_disabled(),this.show_search_field_default(),this.search_field_scale(),this.parsing=!1},e.prototype.result_do_highlight=function(t){var e,s,i,n;if(t.length){if(this.result_clear_highlight(),this.result_highlight=t,this.result_highlight.addClass("highlighted"),(i=parseInt(this.search_results.css("maxHeight"),10))+(n=this.search_results.scrollTop())<=(e=(s=this.result_highlight.position().top+this.search_results.scrollTop())+this.result_highlight.outerHeight()))return this.search_results.scrollTop(0<e-i?e-i:0);if(s<n)return this.search_results.scrollTop(s)}},e.prototype.result_clear_highlight=function(){return this.result_highlight&&this.result_highlight.removeClass("highlighted"),this.result_highlight=null},e.prototype.results_show=function(){return this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.container.addClass("chosen-with-drop"),this.results_showing=!0,this.search_field.focus(),this.search_field.val(this.get_search_field_value()),this.winnow_results(),this.form_field_jq.trigger("chosen:showing_dropdown",{chosen:this}))},e.prototype.update_results_content=function(t){return this.search_results.html(t)},e.prototype.results_hide=function(){return this.results_showing&&(this.result_clear_highlight(),this.container.removeClass("chosen-with-drop"),this.form_field_jq.trigger("chosen:hiding_dropdown",{chosen:this})),this.results_showing=!1},e.prototype.set_tab_index=function(t){var e;if(this.form_field.tabIndex)return e=this.form_field.tabIndex,this.form_field.tabIndex=-1,this.search_field[0].tabIndex=e},e.prototype.set_label_behavior=function(){if(this.form_field_label=this.form_field_jq.parents("label"),!this.form_field_label.length&&this.form_field.id.length&&(this.form_field_label=h("label[for='"+this.form_field.id+"']")),0<this.form_field_label.length)return this.form_field_label.on("click.chosen",this.label_click_handler)},e.prototype.show_search_field_default=function(){return this.is_multiple&&this.choices_count()<1&&!this.active_field?(this.search_field.val(this.default_text),this.search_field.addClass("default")):(this.search_field.val(""),this.search_field.removeClass("default"))},e.prototype.search_results_mouseup=function(t){var e;if((e=h(t.target).hasClass("active-result")?h(t.target):h(t.target).parents(".active-result").first()).length)return this.result_highlight=e,this.result_select(t),this.search_field.focus()},e.prototype.search_results_mouseover=function(t){var e;if(e=h(t.target).hasClass("active-result")?h(t.target):h(t.target).parents(".active-result").first())return this.result_do_highlight(e)},e.prototype.search_results_mouseout=function(t){if(h(t.target).hasClass("active-result")||h(t.target).parents(".active-result").first())return this.result_clear_highlight()},e.prototype.choice_build=function(t){var e,s,i;return e=h("<li />",{class:"search-choice"}).html("<span>"+this.choice_label(t)+"</span>"),t.disabled?e.addClass("search-choice-disabled"):((s=h("<a />",{class:"search-choice-close","data-option-array-index":t.array_index})).on("click.chosen",(i=this,function(t){return i.choice_destroy_link_click(t)})),e.append(s)),this.search_container.before(e)},e.prototype.choice_destroy_link_click=function(t){if(t.preventDefault(),t.stopPropagation(),!this.is_disabled)return this.choice_destroy(h(t.target))},e.prototype.choice_destroy=function(t){if(this.result_deselect(t[0].getAttribute("data-option-array-index")))return this.active_field?this.search_field.focus():this.show_search_field_default(),this.is_multiple&&0<this.choices_count()&&this.get_search_field_value().length<1&&this.results_hide(),t.parents("li").first().remove(),this.search_field_scale()},e.prototype.results_reset=function(){if(this.reset_single_select_options(),this.form_field.options[0].selected=!0,this.single_set_selected_text(),this.show_search_field_default(),this.results_reset_cleanup(),this.trigger_form_field_change(),this.active_field)return this.results_hide()},e.prototype.results_reset_cleanup=function(){return this.current_selectedIndex=this.form_field.selectedIndex,this.selected_item.find("abbr").remove()},e.prototype.result_select=function(t){var e,s;if(this.result_highlight)return e=this.result_highlight,this.result_clear_highlight(),this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.is_multiple?e.removeClass("active-result"):this.reset_single_select_options(),e.addClass("result-selected"),(s=this.results_data[e[0].getAttribute("data-option-array-index")]).selected=!0,this.form_field.options[s.options_index].selected=!0,this.selected_option_count=null,this.is_multiple?this.choice_build(s):this.single_set_selected_text(this.choice_label(s)),this.is_multiple&&(!this.hide_results_on_select||t.metaKey||t.ctrlKey)?t.metaKey||t.ctrlKey?this.winnow_results({skip_highlight:!0}):(this.search_field.val(""),this.winnow_results()):(this.results_hide(),this.show_search_field_default()),(this.is_multiple||this.form_field.selectedIndex!==this.current_selectedIndex)&&this.trigger_form_field_change({selected:this.form_field.options[s.options_index].value}),this.current_selectedIndex=this.form_field.selectedIndex,t.preventDefault(),this.search_field_scale())},e.prototype.single_set_selected_text=function(t){return null==t&&(t=this.default_text),t===this.default_text?this.selected_item.addClass("chosen-default"):(this.single_deselect_control_build(),this.selected_item.removeClass("chosen-default")),this.selected_item.find("span").html(t)},e.prototype.result_deselect=function(t){var e;return e=this.results_data[t],!this.form_field.options[e.options_index].disabled&&(e.selected=!1,this.form_field.options[e.options_index].selected=!1,this.selected_option_count=null,this.result_clear_highlight(),this.results_showing&&this.winnow_results(),this.trigger_form_field_change({deselected:this.form_field.options[e.options_index].value}),this.search_field_scale(),!0)},e.prototype.single_deselect_control_build=function(){if(this.allow_single_deselect)return this.selected_item.find("abbr").length||this.selected_item.find("span").first().after('<abbr class="search-choice-close"></abbr>'),this.selected_item.addClass("chosen-single-with-deselect")},e.prototype.get_search_field_value=function(){return this.search_field.val()},e.prototype.get_search_text=function(){return h.trim(this.get_search_field_value())},e.prototype.escape_html=function(t){return h("<div/>").text(t).html()},e.prototype.winnow_results_set_highlight=function(){var t,e;if(null!=(t=(e=this.is_multiple?[]:this.search_results.find(".result-selected.active-result")).length?e.first():this.search_results.find(".active-result").first()))return this.result_do_highlight(t)},e.prototype.no_results=function(t){var e;return e=this.get_no_results_html(t),this.search_results.append(e),this.form_field_jq.trigger("chosen:no_results",{chosen:this})},e.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()},e.prototype.keydown_arrow=function(){var t;return this.results_showing&&this.result_highlight?(t=this.result_highlight.nextAll("li.active-result").first())?this.result_do_highlight(t):void 0:this.results_show()},e.prototype.keyup_arrow=function(){var t;return this.results_showing||this.is_multiple?this.result_highlight?(t=this.result_highlight.prevAll("li.active-result")).length?this.result_do_highlight(t.first()):(0<this.choices_count()&&this.results_hide(),this.result_clear_highlight()):void 0:this.results_show()},e.prototype.keydown_backstroke=function(){var t;return this.pending_backstroke?(this.choice_destroy(this.pending_backstroke.find("a").first()),this.clear_backstroke()):(t=this.search_container.siblings("li.search-choice").last()).length&&!t.hasClass("search-choice-disabled")?(this.pending_backstroke=t,this.single_backstroke_delete?this.keydown_backstroke():this.pending_backstroke.addClass("search-choice-focus")):void 0},e.prototype.clear_backstroke=function(){return this.pending_backstroke&&this.pending_backstroke.removeClass("search-choice-focus"),this.pending_backstroke=null},e.prototype.search_field_scale=function(){var t,e,s,i,n,r,o;if(this.is_multiple){for(n={position:"absolute",left:"-1000px",top:"-1000px",display:"none",whiteSpace:"pre"},e=0,s=(r=["fontSize","fontStyle","fontWeight","fontFamily","lineHeight","textTransform","letterSpacing"]).length;e<s;e++)n[i=r[e]]=this.search_field.css(i);return(t=h("<div />").css(n)).text(this.get_search_field_value()),h("body").append(t),o=t.width()+25,t.remove(),this.container.is(":visible")&&(o=Math.min(this.container.outerWidth()-10,o)),this.search_field.width(o)}},e.prototype.trigger_form_field_change=function(t){return this.form_field_jq.trigger("input",t),this.form_field_jq.trigger("change",t)},e}()}.call(this),function(o){"use strict";function n(t,e,s){this.init(t,e,s)}function t(){this.rules=[]}o.extend(n.prototype,{init:function(t,e,s){this.controller=t,this.condition=e,this.value=s,this.rules=[],this.controls=[]},evalCondition:function(t,e,s,i,n){if("=="==s)return this.checkBoolean(i)==this.checkBoolean(n);if("!="==s)return this.checkBoolean(i)!=this.checkBoolean(n);if(">="==s)return Number(n)>=Number(i);if("<="==s)return Number(n)<=Number(i);if(">"==s)return Number(n)>Number(i);if("<"==s)return Number(n)<Number(i);if("()"==s)return window[i](t,e,n);if("any"==s){if(o.isArray(n)){for(var r=n.length-1;0<=r;r--)if(-1!==o.inArray(n[r],i.split(",")))return!0}else if(-1!==o.inArray(n,i.split(",")))return!0}else if("not-any"==s)if(o.isArray(n)){for(r=n.length-1;0<=r;r--)if(-1==o.inArray(n[r],i.split(",")))return!0}else if(-1==o.inArray(n,i.split(",")))return!0;return!1},checkBoolean:function(t){switch(t){case!0:case"true":case 1:case"1":t=!0;break;case null:case!1:case"false":case 0:case"0":t=!1}return t},checkCondition:function(t){if(!this.condition)return!0;var e=t.find(this.controller),s=this.getControlValue(t,e);return void 0!==s&&(s=this.normalizeValue(e,this.value,s),this.evalCondition(t,e,this.condition,this.value,s))},normalizeValue:function(t,e,s){return"number"==typeof e?parseFloat(s):s},getControlValue:function(t,e){return 1<e.length&&("radio"==e.attr("type")||"checkbox"==e.attr("type"))?e.filter(":checked").map(function(){return this.value}).get():"checkbox"==e.attr("type")||"radio"==e.attr("type")?e.is(":checked"):e.val()},createRule:function(t,e,s){var i=new n(t,e,s);return this.rules.push(i),i},include:function(t){this.controls.push(t)},applyRule:function(s,t){var e;e=void 0===t?this.checkCondition(s):t;var i=o.map(this.controls,function(t,e){return s.find(t)});e?(o(i).each(function(){o(this).removeClass("csf-depend-on")}),o(this.rules).each(function(){this.applyRule(s)})):(o(i).each(function(){o(this).addClass("csf-depend-on")}),o(this.rules).each(function(){this.applyRule(s,!1)}))}}),o.extend(t.prototype,{createRule:function(t,e,s){var i=new n(t,e,s);return this.rules.push(i),i},applyRules:function(t){o(this.rules).each(function(){this.applyRule(t)})}}),o.csf_deps={createRuleset:function(){return new t},enable:function(s,i,n){return s.on("change keyup",function(t){var e=t.target.getAttribute("data-depend-id")||t.target.getAttribute("data-sub-depend-id");-1!==n.indexOf(e)&&i.applyRules(s)}),i.applyRules(s),!0}}}(jQuery),function(t,s){if("function"==typeof define&&define.amd)define(["exports","jquery"],function(t,e){return s(t,e)});else if("undefined"!=typeof exports){var e=require("jquery");s(exports,e)}else s(t,t.jQuery||t.Zepto||t.ender||t.$)}(this,function(t,e){var h={validate:/^(?!(_nonce|_pseudo))[a-zA-Z0-9_-]*(?:\[(?:\d*|(?!(_nonce|_pseudo))[a-zA-Z0-9_-]+)\])*$/i,key:/[a-zA-Z0-9_-]+|(?=\[\])/g,named:/^[a-zA-Z0-9_-]+$/,push:/^$/,fixed:/^\d+$/};function s(i,t){var s={},r={};function o(t,e,s){return t[e]=s,t}function e(){return s}this.addPair=function(t){if(!h.validate.test(t.name))return this;var e=function(t,e){for(var s,i=t.match(h.key);void 0!==(s=i.pop());)h.push.test(s)?e=o([],(n=t.replace(/\[\]$/,""),void 0===r[n]&&(r[n]=0),r[n]++),e):h.fixed.test(s)?e=o([],s,e):h.named.test(s)&&(e=o({},s,e));var n;return e}(t.name,t.value);return s=i.extend(!0,s,e),this},this.addPairs=function(t){if(!i.isArray(t))throw new Error("formSerializer.addPairs expects an Array");for(var e=0,s=t.length;e<s;e++)this.addPair(t[e]);return this},this.serialize=e,this.serializeJSON=function(){return JSON.stringify(e())}}return s.patterns=h,s.serializeObject=function(){return new s(e,this).addPairs(this.serializeArray()).serialize()},s.serializeJSON=function(){return new s(e,this).addPairs(this.serializeArray()).serializeJSON()},void 0!==e.fn&&(e.fn.serializeObjectCSF=s.serializeObject,e.fn.serializeJSONCSF=s.serializeJSON),t.FormSerializer=s});
vendor/codestar-framework/assets/scss/{vendor → partials}/_base.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_chosen.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_customizer.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_fields.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_helper.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_modal.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_navmenu.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_profile.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_responsive.scss RENAMED
@@ -101,39 +101,6 @@
101
  }
102
  }
103
 
104
- .csf-modal-inner{
105
- width: 350px;
106
- height: 400px;
107
- }
108
-
109
- .csf-modal-content{
110
- height: 237px;
111
- }
112
-
113
- .csf-icon-dialog{
114
-
115
- .csf-modal-inner{
116
- width: 305px;
117
- height: 380px;
118
- }
119
-
120
- .csf-modal-content{
121
- height: 267px;
122
- }
123
- }
124
-
125
- .csf-modal-icon{
126
-
127
- .csf-modal-inner{
128
- width: 330px;
129
- height: 385px;
130
- }
131
-
132
- .csf-modal-content{
133
- height: 252px;
134
- }
135
- }
136
-
137
  .csf-profile-options,
138
  .csf-taxonomy-edit-fields{
139
 
@@ -164,3 +131,27 @@
164
  }
165
  }
166
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  }
102
  }
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  .csf-profile-options,
105
  .csf-taxonomy-edit-fields{
106
 
131
  }
132
  }
133
  }
134
+
135
+ @media only screen and (max-width: 782px) {
136
+
137
+ .csf-modal{
138
+
139
+ .csf-modal-inner{
140
+ width: 90%;
141
+ }
142
+ }
143
+ }
144
+
145
+ @media only screen and (max-height: 750px) {
146
+
147
+ .csf-modal{
148
+
149
+ .csf-modal-inner{
150
+ height: auto;
151
+ }
152
+
153
+ .csf-modal-content{
154
+ height: calc(100vh - 200px);
155
+ }
156
+ }
157
+ }
vendor/codestar-framework/assets/scss/{vendor → partials}/_taxonomy.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_themes.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_welcome.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/{vendor → partials}/_widget.scss RENAMED
File without changes
vendor/codestar-framework/assets/scss/style.scss CHANGED
@@ -80,16 +80,16 @@
80
  * ---------------------------------------------------------
81
  *
82
  */
83
- @import "vendor/base";
84
- @import "vendor/themes";
85
- @import "vendor/fields";
86
- @import "vendor/widget";
87
- @import "vendor/customizer";
88
- @import "vendor/taxonomy";
89
- @import "vendor/navmenu";
90
- @import "vendor/profile";
91
- @import "vendor/modal";
92
- @import "vendor/helper";
93
- @import "vendor/welcome";
94
- @import "vendor/responsive";
95
- @import "vendor/chosen";
80
  * ---------------------------------------------------------
81
  *
82
  */
83
+ @import "partials/base";
84
+ @import "partials/themes";
85
+ @import "partials/fields";
86
+ @import "partials/widget";
87
+ @import "partials/customizer";
88
+ @import "partials/taxonomy";
89
+ @import "partials/navmenu";
90
+ @import "partials/profile";
91
+ @import "partials/modal";
92
+ @import "partials/helper";
93
+ @import "partials/welcome";
94
+ @import "partials/responsive";
95
+ @import "partials/chosen";
vendor/codestar-framework/classes/admin-options.class.php CHANGED
@@ -186,7 +186,11 @@ if ( ! class_exists( 'CSF_Options' ) ) {
186
  // add admin bar menu
187
  public function add_admin_bar_menu( $wp_admin_bar ) {
188
 
189
- if( is_network_admin() && ( $this->args['database'] !== 'network' || $this->args['show_in_network'] !== true ) ) {
 
 
 
 
190
  return;
191
  }
192
 
186
  // add admin bar menu
187
  public function add_admin_bar_menu( $wp_admin_bar ) {
188
 
189
+ if ( ! current_user_can( $this->args['menu_capability'] ) ) {
190
+ return;
191
+ }
192
+
193
+ if ( is_network_admin() && ( $this->args['database'] !== 'network' || $this->args['show_in_network'] !== true ) ) {
194
  return;
195
  }
196
 
vendor/codestar-framework/classes/setup.class.php CHANGED
@@ -12,7 +12,7 @@ if ( ! class_exists( 'CSF' ) ) {
12
 
13
  // Default constants
14
  public static $premium = true;
15
- public static $version = '2.2.4';
16
  public static $dir = '';
17
  public static $url = '';
18
  public static $css = '';
@@ -494,63 +494,67 @@ if ( ! class_exists( 'CSF' ) ) {
494
  // Enqueue admin and fields styles and scripts
495
  public static function add_admin_enqueue_scripts() {
496
 
497
- // Loads scripts and styles only when needed
498
- $wpscreen = get_current_screen();
499
 
500
- if ( ! empty( self::$args['admin_options'] ) ) {
501
- foreach ( self::$args['admin_options'] as $argument ) {
502
- if ( substr( $wpscreen->id, -strlen( $argument['menu_slug'] ) ) === $argument['menu_slug'] ) {
503
- self::$enqueue = true;
 
 
 
 
504
  }
505
  }
506
- }
507
 
508
- if ( ! empty( self::$args['metabox_options'] ) ) {
509
- foreach ( self::$args['metabox_options'] as $argument ) {
510
- if ( in_array( $wpscreen->post_type, (array) $argument['post_type'] ) ) {
511
- self::$enqueue = true;
 
512
  }
513
  }
514
- }
515
 
516
- if ( ! empty( self::$args['taxonomy_options'] ) ) {
517
- foreach ( self::$args['taxonomy_options'] as $argument ) {
518
- if ( in_array( $wpscreen->taxonomy, (array) $argument['taxonomy'] ) ) {
519
- self::$enqueue = true;
 
520
  }
521
  }
522
- }
523
 
524
- if ( ! empty( self::$shortcode_instances ) ) {
525
- foreach ( self::$shortcode_instances as $argument ) {
526
- if ( ( $argument['show_in_editor'] && $wpscreen->base === 'post' ) || $argument['show_in_custom'] ) {
527
- self::$enqueue = true;
 
528
  }
529
  }
530
- }
531
 
532
- if ( ! empty( self::$args['widget_options'] ) && ( $wpscreen->id === 'widgets' || $wpscreen->id === 'customize' ) ) {
533
- self::$enqueue = true;
534
- }
535
 
536
- if ( ! empty( self::$args['customize_options'] ) && $wpscreen->id === 'customize' ) {
537
- self::$enqueue = true;
538
- }
539
 
540
- if ( ! empty( self::$args['nav_menu_options'] ) && $wpscreen->id === 'nav-menus' ) {
541
- self::$enqueue = true;
542
- }
543
 
544
- if ( ! empty( self::$args['profile_options'] ) && ( $wpscreen->id === 'profile' || $wpscreen->id === 'user-edit' ) ) {
545
- self::$enqueue = true;
546
- }
547
 
548
- if ( ! empty( self::$args['comment_options'] ) && $wpscreen->id === 'comment' ) {
549
- self::$enqueue = true;
550
- }
 
 
 
 
551
 
552
- if ( $wpscreen->id === 'tools_page_csf-welcome' ) {
553
- self::$enqueue = true;
554
  }
555
 
556
  if ( ! apply_filters( 'csf_enqueue_assets', self::$enqueue ) ) {
12
 
13
  // Default constants
14
  public static $premium = true;
15
+ public static $version = '2.2.5';
16
  public static $dir = '';
17
  public static $url = '';
18
  public static $css = '';
494
  // Enqueue admin and fields styles and scripts
495
  public static function add_admin_enqueue_scripts() {
496
 
497
+ if ( ! self::$enqueue ) {
 
498
 
499
+ // Loads scripts and styles only when needed
500
+ $wpscreen = get_current_screen();
501
+
502
+ if ( ! empty( self::$args['admin_options'] ) ) {
503
+ foreach ( self::$args['admin_options'] as $argument ) {
504
+ if ( substr( $wpscreen->id, -strlen( $argument['menu_slug'] ) ) === $argument['menu_slug'] ) {
505
+ self::$enqueue = true;
506
+ }
507
  }
508
  }
 
509
 
510
+ if ( ! empty( self::$args['metabox_options'] ) ) {
511
+ foreach ( self::$args['metabox_options'] as $argument ) {
512
+ if ( in_array( $wpscreen->post_type, (array) $argument['post_type'] ) ) {
513
+ self::$enqueue = true;
514
+ }
515
  }
516
  }
 
517
 
518
+ if ( ! empty( self::$args['taxonomy_options'] ) ) {
519
+ foreach ( self::$args['taxonomy_options'] as $argument ) {
520
+ if ( in_array( $wpscreen->taxonomy, (array) $argument['taxonomy'] ) ) {
521
+ self::$enqueue = true;
522
+ }
523
  }
524
  }
 
525
 
526
+ if ( ! empty( self::$shortcode_instances ) ) {
527
+ foreach ( self::$shortcode_instances as $argument ) {
528
+ if ( ( $argument['show_in_editor'] && $wpscreen->base === 'post' ) || $argument['show_in_custom'] ) {
529
+ self::$enqueue = true;
530
+ }
531
  }
532
  }
 
533
 
534
+ if ( ! empty( self::$args['widget_options'] ) && ( $wpscreen->id === 'widgets' || $wpscreen->id === 'customize' ) ) {
535
+ self::$enqueue = true;
536
+ }
537
 
538
+ if ( ! empty( self::$args['customize_options'] ) && $wpscreen->id === 'customize' ) {
539
+ self::$enqueue = true;
540
+ }
541
 
542
+ if ( ! empty( self::$args['nav_menu_options'] ) && $wpscreen->id === 'nav-menus' ) {
543
+ self::$enqueue = true;
544
+ }
545
 
546
+ if ( ! empty( self::$args['profile_options'] ) && ( $wpscreen->id === 'profile' || $wpscreen->id === 'user-edit' ) ) {
547
+ self::$enqueue = true;
548
+ }
549
 
550
+ if ( ! empty( self::$args['comment_options'] ) && $wpscreen->id === 'comment' ) {
551
+ self::$enqueue = true;
552
+ }
553
+
554
+ if ( $wpscreen->id === 'tools_page_csf-welcome' ) {
555
+ self::$enqueue = true;
556
+ }
557
 
 
 
558
  }
559
 
560
  if ( ! apply_filters( 'csf_enqueue_assets', self::$enqueue ) ) {
vendor/codestar-framework/codestar-framework.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin URI: http://codestarframework.com/
12
  * Author: Codestar
13
  * Author URI: http://codestarthemes.com/
14
- * Version: 2.2.4
15
  * Description: A Simple and Lightweight WordPress Option Framework for Themes and Plugins
16
  * Text Domain: csf
17
  * Domain Path: /languages
11
  * Plugin URI: http://codestarframework.com/
12
  * Author: Codestar
13
  * Author URI: http://codestarthemes.com/
14
+ * Version: 2.2.5
15
  * Description: A Simple and Lightweight WordPress Option Framework for Themes and Plugins
16
  * Text Domain: csf
17
  * Domain Path: /languages
vendor/codestar-framework/fields/button_set/button_set.php CHANGED
@@ -1,67 +1,67 @@
1
- <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2
- /**
3
- *
4
- * Field: button_set
5
- *
6
- * @since 1.0.0
7
- * @version 1.0.0
8
- *
9
- */
10
- if ( ! class_exists( 'CSF_Field_button_set' ) ) {
11
- class CSF_Field_button_set extends CSF_Fields {
12
-
13
- public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
14
- parent::__construct( $field, $value, $unique, $where, $parent );
15
- }
16
-
17
- public function render() {
18
-
19
- $args = wp_parse_args( $this->field, array(
20
- 'multiple' => false,
21
- 'options' => array(),
22
- 'query_args' => array(),
23
- ) );
24
-
25
- $value = ( is_array( $this->value ) ) ? $this->value : array_filter( (array) $this->value );
26
-
27
- echo $this->field_before();
28
-
29
- if ( isset( $this->field['options'] ) ) {
30
-
31
- $options = $this->field['options'];
32
- $options = ( is_array( $options ) ) ? $options : array_filter( $this->field_data( $options, false, $args['query_args'] ) );
33
-
34
- if ( is_array( $options ) && ! empty( $options ) ) {
35
-
36
- echo '<div class="csf-siblings csf--button-group" data-multiple="'. esc_attr( $args['multiple'] ) .'">';
37
-
38
- foreach ( $options as $key => $option ) {
39
-
40
- $type = ( $args['multiple'] ) ? 'checkbox' : 'radio';
41
- $extra = ( $args['multiple'] ) ? '[]' : '';
42
- $active = ( in_array( $key, $value ) || ( empty( $value ) && empty( $key ) ) ) ? ' csf--active' : '';
43
- $checked = ( in_array( $key, $value ) || ( empty( $value ) && empty( $key ) ) ) ? ' checked' : '';
44
-
45
- echo '<div class="csf--sibling csf--button'. esc_attr( $active ) .'">';
46
- echo '<input type="'. esc_attr( $type ) .'" name="'. esc_attr( $this->field_name( $extra ) ) .'" value="'. esc_attr( $key ) .'"'. $this->field_attributes() . esc_attr( $checked ) .'/>';
47
- echo $option;
48
- echo '</div>';
49
-
50
- }
51
-
52
- echo '</div>';
53
-
54
- } else {
55
-
56
- echo ( ! empty( $this->field['empty_message'] ) ) ? esc_attr( $this->field['empty_message'] ) : esc_html__( 'No data available.', 'csf' );
57
-
58
- }
59
-
60
- }
61
-
62
- echo $this->field_after();
63
-
64
- }
65
-
66
- }
67
- }
1
+ <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2
+ /**
3
+ *
4
+ * Field: button_set
5
+ *
6
+ * @since 1.0.0
7
+ * @version 1.0.0
8
+ *
9
+ */
10
+ if ( ! class_exists( 'CSF_Field_button_set' ) ) {
11
+ class CSF_Field_button_set extends CSF_Fields {
12
+
13
+ public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
14
+ parent::__construct( $field, $value, $unique, $where, $parent );
15
+ }
16
+
17
+ public function render() {
18
+
19
+ $args = wp_parse_args( $this->field, array(
20
+ 'multiple' => false,
21
+ 'options' => array(),
22
+ 'query_args' => array(),
23
+ ) );
24
+
25
+ $value = ( is_array( $this->value ) ) ? $this->value : array_filter( (array) $this->value );
26
+
27
+ echo $this->field_before();
28
+
29
+ if ( isset( $this->field['options'] ) ) {
30
+
31
+ $options = $this->field['options'];
32
+ $options = ( is_array( $options ) ) ? $options : array_filter( $this->field_data( $options, false, $args['query_args'] ) );
33
+
34
+ if ( is_array( $options ) && ! empty( $options ) ) {
35
+
36
+ echo '<div class="csf-siblings csf--button-group" data-multiple="'. esc_attr( $args['multiple'] ) .'">';
37
+
38
+ foreach ( $options as $key => $option ) {
39
+
40
+ $type = ( $args['multiple'] ) ? 'checkbox' : 'radio';
41
+ $extra = ( $args['multiple'] ) ? '[]' : '';
42
+ $active = ( in_array( $key, $value ) || ( empty( $value ) && empty( $key ) ) ) ? ' csf--active' : '';
43
+ $checked = ( in_array( $key, $value ) || ( empty( $value ) && empty( $key ) ) ) ? ' checked' : '';
44
+
45
+ echo '<div class="csf--sibling csf--button'. esc_attr( $active ) .'">';
46
+ echo '<input type="'. esc_attr( $type ) .'" name="'. esc_attr( $this->field_name( $extra ) ) .'" value="'. esc_attr( $key ) .'"'. $this->field_attributes() . esc_attr( $checked ) .'/>';
47
+ echo $option;
48
+ echo '</div>';
49
+
50
+ }
51
+
52
+ echo '</div>';
53
+
54
+ } else {
55
+
56
+ echo ( ! empty( $this->field['empty_message'] ) ) ? esc_attr( $this->field['empty_message'] ) : esc_html__( 'No data available.', 'csf' );
57
+
58
+ }
59
+
60
+ }
61
+
62
+ echo $this->field_after();
63
+
64
+ }
65
+
66
+ }
67
+ }
vendor/codestar-framework/fields/checkbox/checkbox.php CHANGED
@@ -81,7 +81,7 @@ if ( ! class_exists( 'CSF_Field_checkbox' ) ) {
81
 
82
  echo '<label class="csf-checkbox">';
83
  echo '<input type="hidden" name="'. esc_attr( $this->field_name() ) .'" value="'. $this->value .'" class="csf--input"'. $this->field_attributes() .'/>';
84
- echo '<input type="checkbox" name="_pseudo" class="csf--checkbox"'. esc_attr( checked( $this->value, 1, false ) ) .'/>';
85
  echo ( ! empty( $this->field['label'] ) ) ? '<span class="csf--text">'. esc_attr( $this->field['label'] ) .'</span>' : '';
86
  echo '</label>';
87
 
81
 
82
  echo '<label class="csf-checkbox">';
83
  echo '<input type="hidden" name="'. esc_attr( $this->field_name() ) .'" value="'. $this->value .'" class="csf--input"'. $this->field_attributes() .'/>';
84
+ echo '<input type="checkbox" name="_pseudo" class="csf--checkbox"'. esc_attr( checked( $this->value, 1, false ) ) . $this->field_attributes() .'/>';
85
  echo ( ! empty( $this->field['label'] ) ) ? '<span class="csf--text">'. esc_attr( $this->field['label'] ) .'</span>' : '';
86
  echo '</label>';
87
 
vendor/codestar-framework/fields/code_editor/code_editor.php CHANGED
@@ -10,7 +10,7 @@
10
  if ( ! class_exists( 'CSF_Field_code_editor' ) ) {
11
  class CSF_Field_code_editor extends CSF_Fields {
12
 
13
- public $version = '5.62.2';
14
  public $cdn_url = 'https://cdn.jsdelivr.net/npm/codemirror@';
15
 
16
  public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
10
  if ( ! class_exists( 'CSF_Field_code_editor' ) ) {
11
  class CSF_Field_code_editor extends CSF_Fields {
12
 
13
+ public $version = '5.64.0';
14
  public $cdn_url = 'https://cdn.jsdelivr.net/npm/codemirror@';
15
 
16
  public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
vendor/codestar-framework/fields/index.php CHANGED
@@ -1 +1 @@
1
- <?php // Silence is golden.
1
+ <?php // Silence is golden.
vendor/codestar-framework/fields/spinner/spinner.php CHANGED
@@ -1,70 +1,70 @@
1
- <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2
- /**
3
- *
4
- * Field: spinner
5
- *
6
- * @since 1.0.0
7
- * @version 1.0.0
8
- *
9
- */
10
- if ( ! class_exists( 'CSF_Field_spinner' ) ) {
11
- class CSF_Field_spinner extends CSF_Fields {
12
-
13
- public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
14
- parent::__construct( $field, $value, $unique, $where, $parent );
15
- }
16
-
17
- public function render() {
18
-
19
- $args = wp_parse_args( $this->field, array(
20
- 'max' => 100,
21
- 'min' => 0,
22
- 'step' => 1,
23
- 'unit' => '',
24
- ) );
25
-
26
- echo $this->field_before();
27
-
28
- echo '<div class="csf--spin"><input type="number" name="'. esc_attr( $this->field_name() ) .'" value="'. esc_attr( $this->value ) .'"'. $this->field_attributes( array( 'class' => 'csf-input-number' ) ) .' data-min="'. esc_attr( $args['min'] ) .'" data-max="'. esc_attr( $args['max'] ) .'" data-step="'. esc_attr( $args['step'] ) .'" data-unit="'. esc_attr( $args['unit'] ) .'" step="any" /></div>';
29
-
30
- echo $this->field_after();
31
-
32
- }
33
-
34
- public function enqueue() {
35
-
36
- if ( ! wp_script_is( 'jquery-ui-spinner' ) ) {
37
- wp_enqueue_script( 'jquery-ui-spinner' );
38
- }
39
-
40
- }
41
-
42
- public function output() {
43
-
44
- $output = '';
45
- $elements = ( is_array( $this->field['output'] ) ) ? $this->field['output'] : array_filter( (array) $this->field['output'] );
46
- $important = ( ! empty( $this->field['output_important'] ) ) ? '!important' : '';
47
- $mode = ( ! empty( $this->field['output_mode'] ) ) ? $this->field['output_mode'] : 'width';
48
- $unit = ( ! empty( $this->field['unit'] ) ) ? $this->field['unit'] : 'px';
49
-
50
- if ( ! empty( $elements ) && isset( $this->value ) && $this->value !== '' ) {
51
- foreach ( $elements as $key_property => $element ) {
52
- if ( is_numeric( $key_property ) ) {
53
- if ( $mode ) {
54
- $output = implode( ',', $elements ) .'{'. $mode .':'. $this->value . $unit . $important .';}';
55
- }
56
- break;
57
- } else {
58
- $output .= $element .'{'. $key_property .':'. $this->value . $unit . $important .'}';
59
- }
60
- }
61
- }
62
-
63
- $this->parent->output_css .= $output;
64
-
65
- return $output;
66
-
67
- }
68
-
69
- }
70
- }
1
+ <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2
+ /**
3
+ *
4
+ * Field: spinner
5
+ *
6
+ * @since 1.0.0
7
+ * @version 1.0.0
8
+ *
9
+ */
10
+ if ( ! class_exists( 'CSF_Field_spinner' ) ) {
11
+ class CSF_Field_spinner extends CSF_Fields {
12
+
13
+ public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
14
+ parent::__construct( $field, $value, $unique, $where, $parent );
15
+ }
16
+
17
+ public function render() {
18
+
19
+ $args = wp_parse_args( $this->field, array(
20
+ 'max' => 100,
21
+ 'min' => 0,
22
+ 'step' => 1,
23
+ 'unit' => '',
24
+ ) );
25
+
26
+ echo $this->field_before();
27
+
28
+ echo '<div class="csf--spin"><input type="number" name="'. esc_attr( $this->field_name() ) .'" value="'. esc_attr( $this->value ) .'"'. $this->field_attributes( array( 'class' => 'csf-input-number' ) ) .' data-min="'. esc_attr( $args['min'] ) .'" data-max="'. esc_attr( $args['max'] ) .'" data-step="'. esc_attr( $args['step'] ) .'" data-unit="'. esc_attr( $args['unit'] ) .'" step="any" /></div>';
29
+
30
+ echo $this->field_after();
31
+
32
+ }
33
+
34
+ public function enqueue() {
35
+
36
+ if ( ! wp_script_is( 'jquery-ui-spinner' ) ) {
37
+ wp_enqueue_script( 'jquery-ui-spinner' );
38
+ }
39
+
40
+ }
41
+
42
+ public function output() {
43
+
44
+ $output = '';
45
+ $elements = ( is_array( $this->field['output'] ) ) ? $this->field['output'] : array_filter( (array) $this->field['output'] );
46
+ $important = ( ! empty( $this->field['output_important'] ) ) ? '!important' : '';
47
+ $mode = ( ! empty( $this->field['output_mode'] ) ) ? $this->field['output_mode'] : 'width';
48
+ $unit = ( ! empty( $this->field['unit'] ) ) ? $this->field['unit'] : 'px';
49
+
50
+ if ( ! empty( $elements ) && isset( $this->value ) && $this->value !== '' ) {
51
+ foreach ( $elements as $key_property => $element ) {
52
+ if ( is_numeric( $key_property ) ) {
53
+ if ( $mode ) {
54
+ $output = implode( ',', $elements ) .'{'. $mode .':'. $this->value . $unit . $important .';}';
55
+ }
56
+ break;
57
+ } else {
58
+ $output .= $element .'{'. $key_property .':'. $this->value . $unit . $important .'}';
59
+ }
60
+ }
61
+ }
62
+
63
+ $this->parent->output_css .= $output;
64
+
65
+ return $output;
66
+
67
+ }
68
+
69
+ }
70
+ }
vendor/codestar-framework/functions/walker.php CHANGED
@@ -1,28 +1,28 @@
1
- <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2
- /**
3
- *
4
- * Custom Walker for Nav Menu Edit
5
- *
6
- * @since 1.0.0
7
- * @version 1.0.0
8
- *
9
- */
10
- if ( ! class_exists( 'CSF_Walker_Nav_Menu_Edit' ) && class_exists( 'Walker_Nav_Menu_Edit' ) ) {
11
- class CSF_Walker_Nav_Menu_Edit extends Walker_Nav_Menu_Edit {
12
-
13
- public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
14
-
15
- $html = '';
16
-
17
- parent::start_el( $html, $item, $depth, $args, $id );
18
-
19
- ob_start();
20
- do_action( 'wp_nav_menu_item_custom_fields', $item->ID, $item, $depth, $args );
21
- $custom_fields = ob_get_clean();
22
-
23
- $output .= preg_replace( '/(?=<(fieldset|p)[^>]+class="[^"]*field-move)/', $custom_fields, $html );
24
-
25
- }
26
-
27
- }
28
- }
1
+ <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2
+ /**
3
+ *
4
+ * Custom Walker for Nav Menu Edit
5
+ *
6
+ * @since 1.0.0
7
+ * @version 1.0.0
8
+ *
9
+ */
10
+ if ( ! class_exists( 'CSF_Walker_Nav_Menu_Edit' ) && class_exists( 'Walker_Nav_Menu_Edit' ) ) {
11
+ class CSF_Walker_Nav_Menu_Edit extends Walker_Nav_Menu_Edit {
12
+
13
+ public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
14
+
15
+ $html = '';
16
+
17
+ parent::start_el( $html, $item, $depth, $args, $id );
18
+
19
+ ob_start();
20
+ do_action( 'wp_nav_menu_item_custom_fields', $item->ID, $item, $depth, $args );
21
+ $custom_fields = ob_get_clean();
22
+
23
+ $output .= preg_replace( '/(?=<(fieldset|p)[^>]+class="[^"]*field-move)/', $custom_fields, $html );
24
+
25
+ }
26
+
27
+ }
28
+ }
vendor/codestar-framework/languages/ar.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: ar\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "حصل خلل أثناء حفظ التغييرات."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "تم استرداد الإعدادات بنجاح."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "تمت استعادة الاعدادات الافتراضية."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "تمّ حفظ الإعدادات."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "لديك تعديلات غير محفظة، حفظ تعديلاتك!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "عرض جميع الإعدادات"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "بحث..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "حفظ"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "جاري الحفظ..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "إعادة الوضع الأصلي للقسم"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "هل أنت متأكد؟"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "إعادة الوضع الأصلي للكل"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "إعادة تعيين"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "هل تريد بالتأكيد إعادة تعيين جميع الإعدادات إلى القيم الافتراضية؟"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "لا بيانات متوفرة."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "تحديث المقالة"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "إلغاء"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "هل أنت متأكد؟"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "الرجاء ادخال حرف %s أو أكثر"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "جاري البحث..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "لا توجد نتائج."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "هذا غير مسموح."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "الحقل غير موجود!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "إضافة منتج جديد"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "خطأ: عملية التحقق الحالية غير صالحة."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "لم يتم اختياره"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "موضع الخلفية"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "تكرار الخلفية"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "خلفية ثابتة / متحركة"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "حجم الخلفية"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "أصل الخلفية"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "قصاصة الخلفية"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "استيراد"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "تصدير& تنزيل"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "أضف معرض صور"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "تحرير المعرض"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "مسح"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "خطأ: تعارض معرف الحقل."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "هل أنت متأكد من رغبتك في الحذف؟"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "لا يمكنك إضافة المزيد."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "لا يمكنك إزالة المزيد."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "إضافة أيقونة"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "إزالة الأيقونة"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "أضف رابطاً"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "تحرير الرابط"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "إزالة الرابط"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "خط العرض"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "خط الطول"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "رفع"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "إزالة"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "مُفعل"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "معطل"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "خطأ: مفتاح غير صالح."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "خطأ: الاستجابة لا تمثل رد JSON صحيح."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "خطأ: معرف (ID) العنصر غير صالح."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "\"خطأ: لا تملك الصلاحية للقيام بذلك."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "الرجاء إدخال عنوان بريد إلكتروني صالح."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "يُرجى إدخال رقم صالح."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "هذا الحقل مطلوب"
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "من فضلك، أدخل رابط صحيح."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "اضف كود مختصر"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "اختيار كود مختصر"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "ادراج كود مختصر"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "كتابة الكود القصير هنا…"
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: ar\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "حصل خلل أثناء حفظ التغييرات."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "تم استرداد الإعدادات بنجاح."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "تمت استعادة الاعدادات الافتراضية."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "تمّ حفظ الإعدادات."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "لديك تعديلات غير محفظة، حفظ تعديلاتك!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "عرض جميع الإعدادات"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "بحث..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "حفظ"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "جاري الحفظ..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "إعادة الوضع الأصلي للقسم"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "هل أنت متأكد؟"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "إعادة الوضع الأصلي للكل"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "إعادة تعيين"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "هل تريد بالتأكيد إعادة تعيين جميع الإعدادات إلى القيم الافتراضية؟"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "لا بيانات متوفرة."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "تحديث المقالة"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "إلغاء"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "هل أنت متأكد؟"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "الرجاء ادخال حرف %s أو أكثر"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "جاري البحث..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "لا توجد نتائج."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "هذا غير مسموح."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "الحقل غير موجود!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "إضافة منتج جديد"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "خطأ: عملية التحقق الحالية غير صالحة."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "لم يتم اختياره"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "موضع الخلفية"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "تكرار الخلفية"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "خلفية ثابتة / متحركة"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "حجم الخلفية"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "أصل الخلفية"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "قصاصة الخلفية"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "استيراد"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "تصدير& تنزيل"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "أضف معرض صور"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "تحرير المعرض"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "مسح"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "خطأ: تعارض معرف الحقل."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "هل أنت متأكد من رغبتك في الحذف؟"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "لا يمكنك إضافة المزيد."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "لا يمكنك إزالة المزيد."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "إضافة أيقونة"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "إزالة الأيقونة"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "أضف رابطاً"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "تحرير الرابط"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "إزالة الرابط"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "خط العرض"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "خط الطول"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "رفع"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "إزالة"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "مُفعل"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "معطل"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "خطأ: مفتاح غير صالح."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "خطأ: الاستجابة لا تمثل رد JSON صحيح."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "خطأ: معرف (ID) العنصر غير صالح."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "\"خطأ: لا تملك الصلاحية للقيام بذلك."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "الرجاء إدخال عنوان بريد إلكتروني صالح."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "يُرجى إدخال رقم صالح."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "هذا الحقل مطلوب"
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "من فضلك، أدخل رابط صحيح."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "اضف كود مختصر"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "اختيار كود مختصر"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "ادراج كود مختصر"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "كتابة الكود القصير هنا…"
vendor/codestar-framework/languages/az.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: az\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Dəyişiklikləri qeyd edərkən xəta baş verdi."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Parametrlər uğurla idxal edildi."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Mövcud parametrlər bərpa edildi."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Parametrlər qeyd edildi."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Dəyişməmisiniz, dəyişikliklərinizi qeyd edin!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "bütün parametrləri göstərin"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Axtar..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Qeyd et"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Yazılır..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Bölməyi Sıfırla"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Bu Bölmənin parametrlərini sıfırlamağa əminsiniz?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Hamısını Sıfırla"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Yenidən qur"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Bütün parametrlərini sıfırlamağa əminsiniz?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Məlumat yoxdur."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "mesajı yeniləmə"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Vaz geç"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Siz əminsinizmi?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Lütfən %s və ya daha çox simvol daxil edin"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Axtarılır..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Heç bir nəticə əldə edilmədi."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Əfsuslar! İcazəli deyildir."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Sahə tapılmadı."
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Yenisini əlavə et"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Xəta: Etibarsız doğrulama yoxlaması."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Seçilməyib"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Arxa fon mövqesi"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Arxa fonu təkrarla"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Arxa fon əlavəsi"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Arxa fon ölçüsü"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "Arxa fon mənşəyi"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "Arxa fon şablonu"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "İdxal"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "İxrac & Yükləyin"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Qalereya əlavə et"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Qalereyanı redaktə et"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Təmizlə"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Xəta: Sahə şəxsiyyət ziddiyyəti."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Bu elementi silmək istədiyinizə əminsiniz?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Daha çox əlavə edə bilməzsiniz."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Daha çoxunu çıxara bilməzsiniz."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "İkon Əlavə et"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "İkonu Sil"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Bağlantı əlavə et"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Bağlantını Dəiyşdir"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Bağlantını Sil"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Enlem"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Uzunluq"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Yüklə"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Çıxar"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Aktiv"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Aktiv deyil"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Xəta: Keçərsiz açar."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Xəta: Cavab düzgün JSON cavabı deyil."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Xəta: Xətalı termin ID."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Xəta: Bunu etməyə icazəniz yoxdur."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Lütfən keçərli bir e-poşt ünvanı daxil edin."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Lütfən keçərli bir nömrəni daxil edin."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Bu sahə tələb olunur."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Lütfən keçərli bir veb ünvanı daxil edin."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Qısal kod əlavə edin"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Qısa kod seçin"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Qısa kodu əlavə edin"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Qısa kodu buraya yazın..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: az\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Dəyişiklikləri qeyd edərkən xəta baş verdi."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Parametrlər uğurla idxal edildi."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Mövcud parametrlər bərpa edildi."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Parametrlər qeyd edildi."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Dəyişməmisiniz, dəyişikliklərinizi qeyd edin!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "bütün parametrləri göstərin"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Axtar..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Qeyd et"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Yazılır..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Bölməyi Sıfırla"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Bu Bölmənin parametrlərini sıfırlamağa əminsiniz?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Hamısını Sıfırla"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Yenidən qur"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Bütün parametrlərini sıfırlamağa əminsiniz?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Məlumat yoxdur."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "mesajı yeniləmə"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Vaz geç"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Siz əminsinizmi?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Lütfən %s və ya daha çox simvol daxil edin"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Axtarılır..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Heç bir nəticə əldə edilmədi."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Əfsuslar! İcazəli deyildir."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Sahə tapılmadı."
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Yenisini əlavə et"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Xəta: Etibarsız doğrulama yoxlaması."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Seçilməyib"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Arxa fon mövqesi"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Arxa fonu təkrarla"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Arxa fon əlavəsi"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Arxa fon ölçüsü"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "Arxa fon mənşəyi"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "Arxa fon şablonu"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "İdxal"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "İxrac & Yükləyin"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Qalereya əlavə et"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Qalereyanı redaktə et"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Təmizlə"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Xəta: Sahə şəxsiyyət ziddiyyəti."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Bu elementi silmək istədiyinizə əminsiniz?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Daha çox əlavə edə bilməzsiniz."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Daha çoxunu çıxara bilməzsiniz."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "İkon Əlavə et"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "İkonu Sil"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Bağlantı əlavə et"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Bağlantını Dəiyşdir"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Bağlantını Sil"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Enlem"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Uzunluq"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Yüklə"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Çıxar"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Aktiv"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Aktiv deyil"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Xəta: Keçərsiz açar."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Xəta: Cavab düzgün JSON cavabı deyil."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Xəta: Xətalı termin ID."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Xəta: Bunu etməyə icazəniz yoxdur."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Lütfən keçərli bir e-poşt ünvanı daxil edin."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Lütfən keçərli bir nömrəni daxil edin."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Bu sahə tələb olunur."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Lütfən keçərli bir veb ünvanı daxil edin."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Qısal kod əlavə edin"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Qısa kod seçin"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Qısa kodu əlavə edin"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Qısa kodu buraya yazın..."
vendor/codestar-framework/languages/bn_BD.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: bn_BD\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "পরিবর্তনগুলো সংরক্ষণের সময় কোন একটা সমস্যা হয়েছে।"
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "সেটিংস সফলভাবে আমদানি করা হয়েছে।"
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "ডিফল্ট সেটিংস পুনরুদ্ধার করা হয়েছে।"
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "সেটিংসমূহ সংরক্ষিত।"
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "আপনি অসংরক্ষিত পরিবর্তন আছে, আপনার পরিবর্তনসমূহ সংরক্ষণ করুন। "
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "সমস্ত সেটিংস প্রদর্শন করুন"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "অনুসন্ধান করুন..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "সংরক্ষণ"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "সংরক্ষণ হচ্ছে..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "সেকশন রিসেট করো"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "আপনি কি নিশ্চিত?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "সব রিসেট করো"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "রিসেট"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "আপনি কি নিশ্চিত?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "ডাটা নেই।"
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "আপডেট পোস্ট"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "বাতিল"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "আপনি কি নিশ্চিত?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "%s বা আরও অক্ষর লিখুন দয়া করে"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "অনুসন্ধান করা হচ্ছে..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "কোন ফলাফল পাওয়া যায়নি।"
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "ওহো! অনুমতি নেই।"
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "মাঠ পাওয়া গেল না!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "নতুন যুক্ত করুন"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "ত্রুটি: অবৈধ নন যাচাইকরণ।"
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "অনির্বাচিত"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "ব্যকগ্রাউন্ডের অবস্থান"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "ব্যকগ্রাউন্ড পুনরাবৃত্তি"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "ব্যকগ্রাউন্ড সংযুক্তি"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "পটভূমি উত্স"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "পটভূমি উত্স"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "পটভূমি ক্লিপ"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "আমদানী"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "রপ্তানী ও ডাউনলোড"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "গ্যালারী যুক্ত"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "গ্যালারি সম্পাদনা"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "মুছুন"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "ত্রুটি: ফিল্ড আইডি দ্বন্দ্ব।"
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "আপনি কি নিশ্চিত?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "আপনি আরও যোগ করতে পারবেন না।"
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "আপনি আরও সরাতে পারবেন না।"
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "আইকন যুক্ত"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "আইকন রিমোভ"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "লিংক যুক্ত করুন"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "লিংক এডিট"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "লিংক সরিয়ে ফেলুন"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "অক্ষাংশ"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "দ্রাঘিমাংশ"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "আপলোড"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "অপসারণ"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "সক্রিয়"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "নিষ্ক্রিয় করা আছে"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "ত্রুটি: অবৈধ কী।"
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "ত্রুটি: রেসপন্সটি সঠিক JSON রেসপন্স নয়।"
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "ত্রুটি: অবৈধ টার্ম আইডি।"
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "ত্রুটি: আপনার এটি করার অনুমতি নেই।"
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "অনুগ্রহ করে একটি সঠিক ইমেইল অ্যাড্রেস প্রদান করুন।"
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "দয়া করে একটি বৈধ নম্বর লিখুন।"
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "ঘরটি অবশ্যই পূরণ করতে হবে।"
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "দয়া করে একটি অনুমোদিত ইউআরএল লিখুন।"
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "শর্টকোড যুক্ত করুন"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "একটি শর্টকোড নির্বাচন করুন"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "যুক্ত করুন"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "এখানে শর্টকোড লিখুন..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: bn_BD\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "পরিবর্তনগুলো সংরক্ষণের সময় কোন একটা সমস্যা হয়েছে।"
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "সেটিংস সফলভাবে আমদানি করা হয়েছে।"
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "ডিফল্ট সেটিংস পুনরুদ্ধার করা হয়েছে।"
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "সেটিংসমূহ সংরক্ষিত।"
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "আপনি অসংরক্ষিত পরিবর্তন আছে, আপনার পরিবর্তনসমূহ সংরক্ষণ করুন। "
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "সমস্ত সেটিংস প্রদর্শন করুন"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "অনুসন্ধান করুন..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "সংরক্ষণ"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "সংরক্ষণ হচ্ছে..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "সেকশন রিসেট করো"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "আপনি কি নিশ্চিত?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "সব রিসেট করো"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "রিসেট"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "আপনি কি নিশ্চিত?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "ডাটা নেই।"
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "আপডেট পোস্ট"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "বাতিল"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "আপনি কি নিশ্চিত?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "%s বা আরও অক্ষর লিখুন দয়া করে"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "অনুসন্ধান করা হচ্ছে..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "কোন ফলাফল পাওয়া যায়নি।"
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "ওহো! অনুমতি নেই।"
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "মাঠ পাওয়া গেল না!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "নতুন যুক্ত করুন"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "ত্রুটি: অবৈধ নন যাচাইকরণ।"
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "অনির্বাচিত"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "ব্যকগ্রাউন্ডের অবস্থান"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "ব্যকগ্রাউন্ড পুনরাবৃত্তি"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "ব্যকগ্রাউন্ড সংযুক্তি"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "পটভূমি উত্স"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "পটভূমি উত্স"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "পটভূমি ক্লিপ"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "আমদানী"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "রপ্তানী ও ডাউনলোড"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "গ্যালারী যুক্ত"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "গ্যালারি সম্পাদনা"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "মুছুন"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "ত্রুটি: ফিল্ড আইডি দ্বন্দ্ব।"
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "আপনি কি নিশ্চিত?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "আপনি আরও যোগ করতে পারবেন না।"
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "আপনি আরও সরাতে পারবেন না।"
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "আইকন যুক্ত"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "আইকন রিমোভ"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "লিংক যুক্ত করুন"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "লিংক এডিট"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "লিংক সরিয়ে ফেলুন"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "অক্ষাংশ"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "দ্রাঘিমাংশ"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "আপলোড"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "অপসারণ"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "সক্রিয়"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "নিষ্ক্রিয় করা আছে"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "ত্রুটি: অবৈধ কী।"
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "ত্রুটি: রেসপন্সটি সঠিক JSON রেসপন্স নয়।"
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "ত্রুটি: অবৈধ টার্ম আইডি।"
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "ত্রুটি: আপনার এটি করার অনুমতি নেই।"
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "অনুগ্রহ করে একটি সঠিক ইমেইল অ্যাড্রেস প্রদান করুন।"
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "দয়া করে একটি বৈধ নম্বর লিখুন।"
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "ঘরটি অবশ্যই পূরণ করতে হবে।"
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "দয়া করে একটি অনুমোদিত ইউআরএল লিখুন।"
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "শর্টকোড যুক্ত করুন"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "একটি শর্টকোড নির্বাচন করুন"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "যুক্ত করুন"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "এখানে শর্টকোড লিখুন..."
vendor/codestar-framework/languages/de_DE.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: de_DE\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Fehler beim Speichern der Änderungen."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Einstellungen wurden erfolgreich importiert."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Standard-Einstellungen wiederhergestellt."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Einstellungen gespeichert."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Du hast ungespeicherte Änderungen, deine Änderungen speichern!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "zeige alle einstellungen"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Suche..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Speichern"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Speichere..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Abschnitt zurücksetzen"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Bist du dir sicher?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Alles zurücksetzen"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Zurücksetzen"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Möchtest du wirklich alle Einstellungen auf ihre Standardwerte zurücksetzen?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Keine Daten verfügbar."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "aktualisierter beitrag"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Abbrechen"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Bist du dir sicher?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Bitte %s oder mehr Buchstaben eingeben"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Suche nach..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Keine Ergebnisse."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Hoppla! Nicht zulässig."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Feld nicht gefunden!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Neue hinzufügen"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Fehler: Ungültige nonce-Prüfung."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Nicht ausgewählt"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Hintergrund-Position"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Hintergrund-Wiederholung"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Hintergrund-Anhang"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Hintergrund-Größe"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "Hintergrund-Quelle"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "Hintergrund-Clip"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "Daten importieren"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "Daten exportieren & Herunterladen"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Galerie Hinzufügen"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Galerie Bearbeiten"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Leeren"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Fehler: Feld-ID-Konflikt."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Bist du dir sicher, dass du es löschen möchtest?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Sie können nicht mehr hinzufügen."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Sie können nicht mehr entfernen."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "Icon Hinzufügen"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "Icon Entfernen"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Link hinzufügen"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Link bearbeiten"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Link entfernen"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Breitengrad"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Längengrad"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Hochladen"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Entfernen"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Aktiviert"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Deaktiviert"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Fehler: Ungültiger schlüssel."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Fehler: Die Antwort ist keine gültige JSON-Antwort."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Fehler: Ungültige Begriffs-ID."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Fehler: Du hast nicht die erforderlichen Rechte, um das zu tun."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Bitte gib eine gültige E-Mail-Adresse ein."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Bitte gib eine gültige Zahl ein."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Dieses Feld ist erforderlich."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Bitte gib eine gültige URL an."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Shortcode Hinzufügen"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Shortcode auswählen"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Füge Shortcode ein"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Schreibe hier den shortcode..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: de_DE\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Fehler beim Speichern der Änderungen."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Einstellungen wurden erfolgreich importiert."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Standard-Einstellungen wiederhergestellt."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Einstellungen gespeichert."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Du hast ungespeicherte Änderungen, deine Änderungen speichern!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "zeige alle einstellungen"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Suche..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Speichern"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Speichere..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Abschnitt zurücksetzen"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Bist du dir sicher?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Alles zurücksetzen"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Zurücksetzen"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Möchtest du wirklich alle Einstellungen auf ihre Standardwerte zurücksetzen?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Keine Daten verfügbar."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "aktualisierter beitrag"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Abbrechen"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Bist du dir sicher?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Bitte %s oder mehr Buchstaben eingeben"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Suche nach..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Keine Ergebnisse."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Hoppla! Nicht zulässig."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Feld nicht gefunden!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Neue hinzufügen"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Fehler: Ungültige nonce-Prüfung."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Nicht ausgewählt"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Hintergrund-Position"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Hintergrund-Wiederholung"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Hintergrund-Anhang"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Hintergrund-Größe"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "Hintergrund-Quelle"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "Hintergrund-Clip"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "Daten importieren"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "Daten exportieren & Herunterladen"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Galerie Hinzufügen"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Galerie Bearbeiten"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Leeren"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Fehler: Feld-ID-Konflikt."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Bist du dir sicher, dass du es löschen möchtest?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Sie können nicht mehr hinzufügen."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Sie können nicht mehr entfernen."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "Icon Hinzufügen"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "Icon Entfernen"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Link hinzufügen"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Link bearbeiten"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Link entfernen"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Breitengrad"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Längengrad"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Hochladen"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Entfernen"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Aktiviert"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Deaktiviert"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Fehler: Ungültiger schlüssel."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Fehler: Die Antwort ist keine gültige JSON-Antwort."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Fehler: Ungültige Begriffs-ID."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Fehler: Du hast nicht die erforderlichen Rechte, um das zu tun."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Bitte gib eine gültige E-Mail-Adresse ein."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Bitte gib eine gültige Zahl ein."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Dieses Feld ist erforderlich."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Bitte gib eine gültige URL an."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Shortcode Hinzufügen"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Shortcode auswählen"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Füge Shortcode ein"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Schreibe hier den shortcode..."
vendor/codestar-framework/languages/es_ES.po CHANGED
@@ -1,666 +1,666 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: es_ES\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Error al guardar los cambios."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Impostazioni importate con successo."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Ajustes por defecto restaurados."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Ajustes guardados."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Tienes cambios sin guardar, guarda tus cambios!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "ver todas las opciones"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Buscar..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Guardar"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Guardando..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Restablecer Sección"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "¿Está seguro de restablecer las opciones de esta sección?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Restablecer Todo"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Restaurar"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr ""
74
- "¿Estás seguro de que quieres restablecer todos los ajustes a los valores por "
75
- "defecto?"
76
-
77
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
78
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
79
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
80
- #: fields/select/select.php:113 functions/actions.php:41
81
- msgid "No data available."
82
- msgstr "No existen datos disponibles."
83
-
84
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
85
- msgid "update post"
86
- msgstr "actualizar la entrada"
87
-
88
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
89
- msgid "Cancel"
90
- msgstr "Cancelar"
91
-
92
- #: classes/setup.class.php:529
93
- msgid "Are you sure?"
94
- msgstr "¿Estás seguro?"
95
-
96
- #: classes/setup.class.php:530
97
- msgid "Please enter %s or more characters"
98
- msgstr "Por favor, introduce %s o más caracteres"
99
-
100
- #: classes/setup.class.php:531
101
- msgid "Searching..."
102
- msgstr "Buscando..."
103
-
104
- #: classes/setup.class.php:532
105
- msgid "No results found."
106
- msgstr "No se han encontrado resultados."
107
-
108
- #: classes/setup.class.php:615
109
- msgid "Oops! Not allowed."
110
- msgstr "Vaya! No permitido."
111
-
112
- #: classes/setup.class.php:689 classes/setup.class.php:693
113
- msgid "Field not found!"
114
- msgstr "Campo no encontrado!"
115
-
116
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
117
- msgid "Add New"
118
- msgstr "Añadir nuevo"
119
-
120
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
121
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
122
- #: functions/actions.php:170
123
- msgid "Error: Invalid nonce verification."
124
- msgstr "Error: Verificación no válida."
125
-
126
- #: fields/background/background.php:35 fields/media/media.php:57
127
- msgid "Not selected"
128
- msgstr "No seleccionado"
129
-
130
- #: fields/background/background.php:66 fields/date/date.php:31
131
- msgid "From"
132
- msgstr ""
133
-
134
- #: fields/background/background.php:84 fields/date/date.php:32
135
- msgid "To"
136
- msgstr ""
137
-
138
- #: fields/background/background.php:102
139
- msgid "Direction"
140
- msgstr ""
141
-
142
- #: fields/background/background.php:108
143
- msgid "Gradient Direction"
144
- msgstr ""
145
-
146
- #: fields/background/background.php:109
147
- msgid "&#8659; top to bottom"
148
- msgstr ""
149
-
150
- #: fields/background/background.php:110
151
- msgid "&#8658; left to right"
152
- msgstr ""
153
-
154
- #: fields/background/background.php:111
155
- msgid "&#8664; corner top to right"
156
- msgstr ""
157
-
158
- #: fields/background/background.php:112
159
- msgid "&#8665; corner top to left"
160
- msgstr ""
161
-
162
- #: fields/background/background.php:155
163
- msgid "Background Position"
164
- msgstr "Posición de fondo"
165
-
166
- #: fields/background/background.php:156
167
- msgid "Left Top"
168
- msgstr ""
169
-
170
- #: fields/background/background.php:157
171
- msgid "Left Center"
172
- msgstr ""
173
-
174
- #: fields/background/background.php:158
175
- msgid "Left Bottom"
176
- msgstr ""
177
-
178
- #: fields/background/background.php:159
179
- msgid "Center Top"
180
- msgstr ""
181
-
182
- #: fields/background/background.php:160
183
- msgid "Center Center"
184
- msgstr ""
185
-
186
- #: fields/background/background.php:161
187
- msgid "Center Bottom"
188
- msgstr ""
189
-
190
- #: fields/background/background.php:162
191
- msgid "Right Top"
192
- msgstr ""
193
-
194
- #: fields/background/background.php:163
195
- msgid "Right Center"
196
- msgstr ""
197
-
198
- #: fields/background/background.php:164
199
- msgid "Right Bottom"
200
- msgstr ""
201
-
202
- #: fields/background/background.php:178
203
- msgid "Background Repeat"
204
- msgstr "Repetición de fondo"
205
-
206
- #: fields/background/background.php:179
207
- msgid "Repeat"
208
- msgstr ""
209
-
210
- #: fields/background/background.php:180
211
- msgid "No Repeat"
212
- msgstr ""
213
-
214
- #: fields/background/background.php:181
215
- msgid "Repeat Horizontally"
216
- msgstr ""
217
-
218
- #: fields/background/background.php:182
219
- msgid "Repeat Vertically"
220
- msgstr ""
221
-
222
- #: fields/background/background.php:196
223
- msgid "Background Attachment"
224
- msgstr "Adjunto al fondo"
225
-
226
- #: fields/background/background.php:197
227
- msgid "Scroll"
228
- msgstr ""
229
-
230
- #: fields/background/background.php:198
231
- msgid "Fixed"
232
- msgstr ""
233
-
234
- #: fields/background/background.php:212
235
- msgid "Background Size"
236
- msgstr "Tamaño de fondo"
237
-
238
- #: fields/background/background.php:213
239
- msgid "Cover"
240
- msgstr ""
241
-
242
- #: fields/background/background.php:214
243
- msgid "Contain"
244
- msgstr ""
245
-
246
- #: fields/background/background.php:215
247
- msgid "Auto"
248
- msgstr ""
249
-
250
- #: fields/background/background.php:229
251
- msgid "Background Origin"
252
- msgstr "Origen de fondo"
253
-
254
- #: fields/background/background.php:230 fields/background/background.php:248
255
- msgid "Padding Box"
256
- msgstr ""
257
-
258
- #: fields/background/background.php:231 fields/background/background.php:247
259
- msgid "Border Box"
260
- msgstr ""
261
-
262
- #: fields/background/background.php:232 fields/background/background.php:249
263
- msgid "Content Box"
264
- msgstr ""
265
-
266
- #: fields/background/background.php:246
267
- msgid "Background Clip"
268
- msgstr "Clip de fondo"
269
-
270
- #: fields/background/background.php:263
271
- msgid "Background Blend Mode"
272
- msgstr ""
273
-
274
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
275
- #: fields/typography/typography.php:175
276
- msgid "Normal"
277
- msgstr ""
278
-
279
- #: fields/background/background.php:265
280
- msgid "Multiply"
281
- msgstr ""
282
-
283
- #: fields/background/background.php:266
284
- msgid "Screen"
285
- msgstr ""
286
-
287
- #: fields/background/background.php:267
288
- msgid "Overlay"
289
- msgstr ""
290
-
291
- #: fields/background/background.php:268
292
- msgid "Darken"
293
- msgstr ""
294
-
295
- #: fields/background/background.php:269
296
- msgid "Lighten"
297
- msgstr ""
298
-
299
- #: fields/background/background.php:270
300
- msgid "Color Dodge"
301
- msgstr ""
302
-
303
- #: fields/background/background.php:271
304
- msgid "Saturation"
305
- msgstr ""
306
-
307
- #: fields/background/background.php:272
308
- msgid "Color"
309
- msgstr ""
310
-
311
- #: fields/background/background.php:273
312
- msgid "Luminosity"
313
- msgstr ""
314
-
315
- #: fields/backup/backup.php:26
316
- msgid "Import"
317
- msgstr "Importar"
318
-
319
- #: fields/backup/backup.php:29
320
- msgid "Export & Download"
321
- msgstr "Exportar & Descarga"
322
-
323
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
324
- msgid "top"
325
- msgstr ""
326
-
327
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
328
- msgid "right"
329
- msgstr ""
330
-
331
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
332
- msgid "bottom"
333
- msgstr ""
334
-
335
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
336
- msgid "left"
337
- msgstr ""
338
-
339
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
340
- msgid "all"
341
- msgstr ""
342
-
343
- #: fields/border/border.php:51 fields/typography/typography.php:203
344
- msgid "Solid"
345
- msgstr ""
346
-
347
- #: fields/border/border.php:52 fields/typography/typography.php:206
348
- msgid "Dashed"
349
- msgstr ""
350
-
351
- #: fields/border/border.php:53 fields/typography/typography.php:205
352
- msgid "Dotted"
353
- msgstr ""
354
-
355
- #: fields/border/border.php:54 fields/typography/typography.php:204
356
- msgid "Double"
357
- msgstr ""
358
-
359
- #: fields/border/border.php:55
360
- msgid "Inset"
361
- msgstr ""
362
-
363
- #: fields/border/border.php:56
364
- msgid "Outset"
365
- msgstr ""
366
-
367
- #: fields/border/border.php:57
368
- msgid "Groove"
369
- msgstr ""
370
-
371
- #: fields/border/border.php:58
372
- msgid "ridge"
373
- msgstr ""
374
-
375
- #: fields/border/border.php:59 fields/typography/typography.php:188
376
- #: fields/typography/typography.php:202
377
- msgid "None"
378
- msgstr ""
379
-
380
- #: fields/dimensions/dimensions.php:22
381
- msgid "width"
382
- msgstr ""
383
-
384
- #: fields/dimensions/dimensions.php:23
385
- msgid "height"
386
- msgstr ""
387
-
388
- #: fields/gallery/gallery.php:20
389
- msgid "Add Gallery"
390
- msgstr "Añadir Galería"
391
-
392
- #: fields/gallery/gallery.php:21
393
- msgid "Edit Gallery"
394
- msgstr "Editar Galería"
395
-
396
- #: fields/gallery/gallery.php:22
397
- msgid "Clear"
398
- msgstr "Borrar"
399
-
400
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
401
- msgid "Error: Field ID conflict."
402
- msgstr "Error: ID de campo en conflicto."
403
-
404
- #: fields/group/group.php:46 fields/group/group.php:87
405
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
406
- msgid "Are you sure to delete this item?"
407
- msgstr "¿Estas seguro que quieres eliminar?"
408
-
409
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
410
- msgid "You cannot add more."
411
- msgstr "No puedes agregar más."
412
-
413
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
414
- msgid "You cannot remove more."
415
- msgstr "No puedes eliminar más."
416
-
417
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
418
- msgid "Add Icon"
419
- msgstr "Añadir Icono"
420
-
421
- #: fields/icon/icon.php:21
422
- msgid "Remove Icon"
423
- msgstr "Eliminar Icono"
424
-
425
- #: fields/link/link.php:20
426
- msgid "Add Link"
427
- msgstr "Adicionar Enlace"
428
-
429
- #: fields/link/link.php:21
430
- msgid "Edit Link"
431
- msgstr "Editar Enlace"
432
-
433
- #: fields/link/link.php:22
434
- msgid "Remove Link"
435
- msgstr "Borrar Enlace"
436
-
437
- #: fields/link_color/link_color.php:37
438
- msgid "Hover"
439
- msgstr ""
440
-
441
- #: fields/link_color/link_color.php:38
442
- msgid "Active"
443
- msgstr ""
444
-
445
- #: fields/link_color/link_color.php:39
446
- msgid "Visited"
447
- msgstr ""
448
-
449
- #: fields/link_color/link_color.php:40
450
- msgid "Focus"
451
- msgstr ""
452
-
453
- #: fields/map/map.php:24
454
- msgid "Latitude"
455
- msgstr "Latitud"
456
-
457
- #: fields/map/map.php:25
458
- msgid "Longitude"
459
- msgstr "Longitud"
460
-
461
- #: fields/media/media.php:23 fields/upload/upload.php:21
462
- msgid "Upload"
463
- msgstr "Subir"
464
-
465
- #: fields/media/media.php:24 fields/upload/upload.php:22
466
- msgid "Remove"
467
- msgstr "Eliminar"
468
-
469
- #: fields/sorter/sorter.php:21
470
- msgid "Enabled"
471
- msgstr "Activado"
472
-
473
- #: fields/sorter/sorter.php:22
474
- msgid "Disabled"
475
- msgstr "Desactivado"
476
-
477
- #: fields/switcher/switcher.php:20
478
- msgid "On"
479
- msgstr ""
480
-
481
- #: fields/switcher/switcher.php:21
482
- msgid "Off"
483
- msgstr ""
484
-
485
- #: fields/typography/typography.php:85
486
- msgid "Font Family"
487
- msgstr ""
488
-
489
- #: fields/typography/typography.php:86
490
- msgid "Select a font"
491
- msgstr ""
492
-
493
- #: fields/typography/typography.php:94
494
- msgid "Backup Font Family"
495
- msgstr ""
496
-
497
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
498
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
499
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
500
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
501
- msgid "Default"
502
- msgstr ""
503
-
504
- #: fields/typography/typography.php:119
505
- msgid "Font Style"
506
- msgstr ""
507
-
508
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
509
- msgid "Load Extra Styles"
510
- msgstr ""
511
-
512
- #: fields/typography/typography.php:147
513
- msgid "Subset"
514
- msgstr ""
515
-
516
- #: fields/typography/typography.php:157
517
- msgid "Text Align"
518
- msgstr ""
519
-
520
- #: fields/typography/typography.php:159
521
- msgid "Inherit"
522
- msgstr ""
523
-
524
- #: fields/typography/typography.php:160
525
- msgid "Left"
526
- msgstr ""
527
-
528
- #: fields/typography/typography.php:161
529
- msgid "Center"
530
- msgstr ""
531
-
532
- #: fields/typography/typography.php:162
533
- msgid "Right"
534
- msgstr ""
535
-
536
- #: fields/typography/typography.php:163
537
- msgid "Justify"
538
- msgstr ""
539
-
540
- #: fields/typography/typography.php:164
541
- msgid "Initial"
542
- msgstr ""
543
-
544
- #: fields/typography/typography.php:173
545
- msgid "Font Variant"
546
- msgstr ""
547
-
548
- #: fields/typography/typography.php:176
549
- msgid "Small Caps"
550
- msgstr ""
551
-
552
- #: fields/typography/typography.php:177
553
- msgid "All Small Caps"
554
- msgstr ""
555
-
556
- #: fields/typography/typography.php:186
557
- msgid "Text Transform"
558
- msgstr ""
559
-
560
- #: fields/typography/typography.php:189
561
- msgid "Capitalize"
562
- msgstr ""
563
-
564
- #: fields/typography/typography.php:190
565
- msgid "Uppercase"
566
- msgstr ""
567
-
568
- #: fields/typography/typography.php:191
569
- msgid "Lowercase"
570
- msgstr ""
571
-
572
- #: fields/typography/typography.php:200
573
- msgid "Text Decoration"
574
- msgstr ""
575
-
576
- #: fields/typography/typography.php:207
577
- msgid "Wavy"
578
- msgstr ""
579
-
580
- #: fields/typography/typography.php:208
581
- msgid "Overline"
582
- msgstr ""
583
-
584
- #: fields/typography/typography.php:209
585
- msgid "Line-through"
586
- msgstr ""
587
-
588
- #: fields/typography/typography.php:222
589
- msgid "Font Size"
590
- msgstr ""
591
-
592
- #: fields/typography/typography.php:234
593
- msgid "Line Height"
594
- msgstr ""
595
-
596
- #: fields/typography/typography.php:246
597
- msgid "Letter Spacing"
598
- msgstr ""
599
-
600
- #: fields/typography/typography.php:258
601
- msgid "Word Spacing"
602
- msgstr ""
603
-
604
- #: fields/typography/typography.php:273
605
- msgid "Font Color"
606
- msgstr ""
607
-
608
- #: fields/typography/typography.php:284
609
- msgid "Custom Style"
610
- msgstr ""
611
-
612
- #: fields/typography/typography.php:351
613
- msgid "Custom Web Fonts"
614
- msgstr ""
615
-
616
- #: fields/typography/typography.php:357
617
- msgid "Safe Web Fonts"
618
- msgstr ""
619
-
620
- #: fields/typography/typography.php:377
621
- msgid "Google Web Fonts"
622
- msgstr ""
623
-
624
- #: functions/actions.php:72 functions/actions.php:110
625
- msgid "Error: Invalid key."
626
- msgstr "Error: Clave no válida."
627
-
628
- #: functions/actions.php:114
629
- msgid "Error: The response is not a valid JSON response."
630
- msgstr "Error: Las respuesta no es una respuesta JSON válida."
631
-
632
- #: functions/actions.php:174
633
- msgid "Error: Invalid term ID."
634
- msgstr "Error: ID de término incorrecto."
635
-
636
- #: functions/actions.php:180
637
- msgid "Error: You do not have permission to do that."
638
- msgstr "Error: No tienes permiso para hacer eso."
639
-
640
- #: functions/validate.php:14 functions/validate.php:86
641
- msgid "Please enter a valid email address."
642
- msgstr "Por favor, introduce una dirección de correo electrónico válida."
643
-
644
- #: functions/validate.php:32 functions/validate.php:106
645
- msgid "Please enter a valid number."
646
- msgstr "Por favor, introduce un número válido."
647
-
648
- #: functions/validate.php:50 functions/validate.php:126
649
- msgid "This field is required."
650
- msgstr "Este campo es obligatorio."
651
-
652
- #: functions/validate.php:68 functions/validate.php:146
653
- msgid "Please enter a valid URL."
654
- msgstr "Por favor, introduce un URL válido."
655
-
656
- #~ msgid "Add Shortcode"
657
- #~ msgstr "Añadir Shortcode"
658
-
659
- #~ msgid "Select a shortcode"
660
- #~ msgstr "Selecciona un shortcode"
661
-
662
- #~ msgid "Insert Shortcode"
663
- #~ msgstr "Insertar Shortcode"
664
-
665
- #~ msgid "Write shortcode here..."
666
- #~ msgstr "Escribe aquí el shortcode..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: es_ES\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Error al guardar los cambios."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Impostazioni importate con successo."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Ajustes por defecto restaurados."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Ajustes guardados."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Tienes cambios sin guardar, guarda tus cambios!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "ver todas las opciones"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Buscar..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Guardar"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Guardando..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Restablecer Sección"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "¿Está seguro de restablecer las opciones de esta sección?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Restablecer Todo"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Restaurar"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr ""
74
+ "¿Estás seguro de que quieres restablecer todos los ajustes a los valores por "
75
+ "defecto?"
76
+
77
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
78
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
79
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
80
+ #: fields/select/select.php:113 functions/actions.php:41
81
+ msgid "No data available."
82
+ msgstr "No existen datos disponibles."
83
+
84
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
85
+ msgid "update post"
86
+ msgstr "actualizar la entrada"
87
+
88
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
89
+ msgid "Cancel"
90
+ msgstr "Cancelar"
91
+
92
+ #: classes/setup.class.php:529
93
+ msgid "Are you sure?"
94
+ msgstr "¿Estás seguro?"
95
+
96
+ #: classes/setup.class.php:530
97
+ msgid "Please enter %s or more characters"
98
+ msgstr "Por favor, introduce %s o más caracteres"
99
+
100
+ #: classes/setup.class.php:531
101
+ msgid "Searching..."
102
+ msgstr "Buscando..."
103
+
104
+ #: classes/setup.class.php:532
105
+ msgid "No results found."
106
+ msgstr "No se han encontrado resultados."
107
+
108
+ #: classes/setup.class.php:615
109
+ msgid "Oops! Not allowed."
110
+ msgstr "Vaya! No permitido."
111
+
112
+ #: classes/setup.class.php:689 classes/setup.class.php:693
113
+ msgid "Field not found!"
114
+ msgstr "Campo no encontrado!"
115
+
116
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
117
+ msgid "Add New"
118
+ msgstr "Añadir nuevo"
119
+
120
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
121
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
122
+ #: functions/actions.php:170
123
+ msgid "Error: Invalid nonce verification."
124
+ msgstr "Error: Verificación no válida."
125
+
126
+ #: fields/background/background.php:35 fields/media/media.php:57
127
+ msgid "Not selected"
128
+ msgstr "No seleccionado"
129
+
130
+ #: fields/background/background.php:66 fields/date/date.php:31
131
+ msgid "From"
132
+ msgstr ""
133
+
134
+ #: fields/background/background.php:84 fields/date/date.php:32
135
+ msgid "To"
136
+ msgstr ""
137
+
138
+ #: fields/background/background.php:102
139
+ msgid "Direction"
140
+ msgstr ""
141
+
142
+ #: fields/background/background.php:108
143
+ msgid "Gradient Direction"
144
+ msgstr ""
145
+
146
+ #: fields/background/background.php:109
147
+ msgid "&#8659; top to bottom"
148
+ msgstr ""
149
+
150
+ #: fields/background/background.php:110
151
+ msgid "&#8658; left to right"
152
+ msgstr ""
153
+
154
+ #: fields/background/background.php:111
155
+ msgid "&#8664; corner top to right"
156
+ msgstr ""
157
+
158
+ #: fields/background/background.php:112
159
+ msgid "&#8665; corner top to left"
160
+ msgstr ""
161
+
162
+ #: fields/background/background.php:155
163
+ msgid "Background Position"
164
+ msgstr "Posición de fondo"
165
+
166
+ #: fields/background/background.php:156
167
+ msgid "Left Top"
168
+ msgstr ""
169
+
170
+ #: fields/background/background.php:157
171
+ msgid "Left Center"
172
+ msgstr ""
173
+
174
+ #: fields/background/background.php:158
175
+ msgid "Left Bottom"
176
+ msgstr ""
177
+
178
+ #: fields/background/background.php:159
179
+ msgid "Center Top"
180
+ msgstr ""
181
+
182
+ #: fields/background/background.php:160
183
+ msgid "Center Center"
184
+ msgstr ""
185
+
186
+ #: fields/background/background.php:161
187
+ msgid "Center Bottom"
188
+ msgstr ""
189
+
190
+ #: fields/background/background.php:162
191
+ msgid "Right Top"
192
+ msgstr ""
193
+
194
+ #: fields/background/background.php:163
195
+ msgid "Right Center"
196
+ msgstr ""
197
+
198
+ #: fields/background/background.php:164
199
+ msgid "Right Bottom"
200
+ msgstr ""
201
+
202
+ #: fields/background/background.php:178
203
+ msgid "Background Repeat"
204
+ msgstr "Repetición de fondo"
205
+
206
+ #: fields/background/background.php:179
207
+ msgid "Repeat"
208
+ msgstr ""
209
+
210
+ #: fields/background/background.php:180
211
+ msgid "No Repeat"
212
+ msgstr ""
213
+
214
+ #: fields/background/background.php:181
215
+ msgid "Repeat Horizontally"
216
+ msgstr ""
217
+
218
+ #: fields/background/background.php:182
219
+ msgid "Repeat Vertically"
220
+ msgstr ""
221
+
222
+ #: fields/background/background.php:196
223
+ msgid "Background Attachment"
224
+ msgstr "Adjunto al fondo"
225
+
226
+ #: fields/background/background.php:197
227
+ msgid "Scroll"
228
+ msgstr ""
229
+
230
+ #: fields/background/background.php:198
231
+ msgid "Fixed"
232
+ msgstr ""
233
+
234
+ #: fields/background/background.php:212
235
+ msgid "Background Size"
236
+ msgstr "Tamaño de fondo"
237
+
238
+ #: fields/background/background.php:213
239
+ msgid "Cover"
240
+ msgstr ""
241
+
242
+ #: fields/background/background.php:214
243
+ msgid "Contain"
244
+ msgstr ""
245
+
246
+ #: fields/background/background.php:215
247
+ msgid "Auto"
248
+ msgstr ""
249
+
250
+ #: fields/background/background.php:229
251
+ msgid "Background Origin"
252
+ msgstr "Origen de fondo"
253
+
254
+ #: fields/background/background.php:230 fields/background/background.php:248
255
+ msgid "Padding Box"
256
+ msgstr ""
257
+
258
+ #: fields/background/background.php:231 fields/background/background.php:247
259
+ msgid "Border Box"
260
+ msgstr ""
261
+
262
+ #: fields/background/background.php:232 fields/background/background.php:249
263
+ msgid "Content Box"
264
+ msgstr ""
265
+
266
+ #: fields/background/background.php:246
267
+ msgid "Background Clip"
268
+ msgstr "Clip de fondo"
269
+
270
+ #: fields/background/background.php:263
271
+ msgid "Background Blend Mode"
272
+ msgstr ""
273
+
274
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
275
+ #: fields/typography/typography.php:175
276
+ msgid "Normal"
277
+ msgstr ""
278
+
279
+ #: fields/background/background.php:265
280
+ msgid "Multiply"
281
+ msgstr ""
282
+
283
+ #: fields/background/background.php:266
284
+ msgid "Screen"
285
+ msgstr ""
286
+
287
+ #: fields/background/background.php:267
288
+ msgid "Overlay"
289
+ msgstr ""
290
+
291
+ #: fields/background/background.php:268
292
+ msgid "Darken"
293
+ msgstr ""
294
+
295
+ #: fields/background/background.php:269
296
+ msgid "Lighten"
297
+ msgstr ""
298
+
299
+ #: fields/background/background.php:270
300
+ msgid "Color Dodge"
301
+ msgstr ""
302
+
303
+ #: fields/background/background.php:271
304
+ msgid "Saturation"
305
+ msgstr ""
306
+
307
+ #: fields/background/background.php:272
308
+ msgid "Color"
309
+ msgstr ""
310
+
311
+ #: fields/background/background.php:273
312
+ msgid "Luminosity"
313
+ msgstr ""
314
+
315
+ #: fields/backup/backup.php:26
316
+ msgid "Import"
317
+ msgstr "Importar"
318
+
319
+ #: fields/backup/backup.php:29
320
+ msgid "Export & Download"
321
+ msgstr "Exportar & Descarga"
322
+
323
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
324
+ msgid "top"
325
+ msgstr ""
326
+
327
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
328
+ msgid "right"
329
+ msgstr ""
330
+
331
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
332
+ msgid "bottom"
333
+ msgstr ""
334
+
335
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
336
+ msgid "left"
337
+ msgstr ""
338
+
339
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
340
+ msgid "all"
341
+ msgstr ""
342
+
343
+ #: fields/border/border.php:51 fields/typography/typography.php:203
344
+ msgid "Solid"
345
+ msgstr ""
346
+
347
+ #: fields/border/border.php:52 fields/typography/typography.php:206
348
+ msgid "Dashed"
349
+ msgstr ""
350
+
351
+ #: fields/border/border.php:53 fields/typography/typography.php:205
352
+ msgid "Dotted"
353
+ msgstr ""
354
+
355
+ #: fields/border/border.php:54 fields/typography/typography.php:204
356
+ msgid "Double"
357
+ msgstr ""
358
+
359
+ #: fields/border/border.php:55
360
+ msgid "Inset"
361
+ msgstr ""
362
+
363
+ #: fields/border/border.php:56
364
+ msgid "Outset"
365
+ msgstr ""
366
+
367
+ #: fields/border/border.php:57
368
+ msgid "Groove"
369
+ msgstr ""
370
+
371
+ #: fields/border/border.php:58
372
+ msgid "ridge"
373
+ msgstr ""
374
+
375
+ #: fields/border/border.php:59 fields/typography/typography.php:188
376
+ #: fields/typography/typography.php:202
377
+ msgid "None"
378
+ msgstr ""
379
+
380
+ #: fields/dimensions/dimensions.php:22
381
+ msgid "width"
382
+ msgstr ""
383
+
384
+ #: fields/dimensions/dimensions.php:23
385
+ msgid "height"
386
+ msgstr ""
387
+
388
+ #: fields/gallery/gallery.php:20
389
+ msgid "Add Gallery"
390
+ msgstr "Añadir Galería"
391
+
392
+ #: fields/gallery/gallery.php:21
393
+ msgid "Edit Gallery"
394
+ msgstr "Editar Galería"
395
+
396
+ #: fields/gallery/gallery.php:22
397
+ msgid "Clear"
398
+ msgstr "Borrar"
399
+
400
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
401
+ msgid "Error: Field ID conflict."
402
+ msgstr "Error: ID de campo en conflicto."
403
+
404
+ #: fields/group/group.php:46 fields/group/group.php:87
405
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
406
+ msgid "Are you sure to delete this item?"
407
+ msgstr "¿Estas seguro que quieres eliminar?"
408
+
409
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
410
+ msgid "You cannot add more."
411
+ msgstr "No puedes agregar más."
412
+
413
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
414
+ msgid "You cannot remove more."
415
+ msgstr "No puedes eliminar más."
416
+
417
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
418
+ msgid "Add Icon"
419
+ msgstr "Añadir Icono"
420
+
421
+ #: fields/icon/icon.php:21
422
+ msgid "Remove Icon"
423
+ msgstr "Eliminar Icono"
424
+
425
+ #: fields/link/link.php:20
426
+ msgid "Add Link"
427
+ msgstr "Adicionar Enlace"
428
+
429
+ #: fields/link/link.php:21
430
+ msgid "Edit Link"
431
+ msgstr "Editar Enlace"
432
+
433
+ #: fields/link/link.php:22
434
+ msgid "Remove Link"
435
+ msgstr "Borrar Enlace"
436
+
437
+ #: fields/link_color/link_color.php:37
438
+ msgid "Hover"
439
+ msgstr ""
440
+
441
+ #: fields/link_color/link_color.php:38
442
+ msgid "Active"
443
+ msgstr ""
444
+
445
+ #: fields/link_color/link_color.php:39
446
+ msgid "Visited"
447
+ msgstr ""
448
+
449
+ #: fields/link_color/link_color.php:40
450
+ msgid "Focus"
451
+ msgstr ""
452
+
453
+ #: fields/map/map.php:24
454
+ msgid "Latitude"
455
+ msgstr "Latitud"
456
+
457
+ #: fields/map/map.php:25
458
+ msgid "Longitude"
459
+ msgstr "Longitud"
460
+
461
+ #: fields/media/media.php:23 fields/upload/upload.php:21
462
+ msgid "Upload"
463
+ msgstr "Subir"
464
+
465
+ #: fields/media/media.php:24 fields/upload/upload.php:22
466
+ msgid "Remove"
467
+ msgstr "Eliminar"
468
+
469
+ #: fields/sorter/sorter.php:21
470
+ msgid "Enabled"
471
+ msgstr "Activado"
472
+
473
+ #: fields/sorter/sorter.php:22
474
+ msgid "Disabled"
475
+ msgstr "Desactivado"
476
+
477
+ #: fields/switcher/switcher.php:20
478
+ msgid "On"
479
+ msgstr ""
480
+
481
+ #: fields/switcher/switcher.php:21
482
+ msgid "Off"
483
+ msgstr ""
484
+
485
+ #: fields/typography/typography.php:85
486
+ msgid "Font Family"
487
+ msgstr ""
488
+
489
+ #: fields/typography/typography.php:86
490
+ msgid "Select a font"
491
+ msgstr ""
492
+
493
+ #: fields/typography/typography.php:94
494
+ msgid "Backup Font Family"
495
+ msgstr ""
496
+
497
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
498
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
499
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
500
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
501
+ msgid "Default"
502
+ msgstr ""
503
+
504
+ #: fields/typography/typography.php:119
505
+ msgid "Font Style"
506
+ msgstr ""
507
+
508
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
509
+ msgid "Load Extra Styles"
510
+ msgstr ""
511
+
512
+ #: fields/typography/typography.php:147
513
+ msgid "Subset"
514
+ msgstr ""
515
+
516
+ #: fields/typography/typography.php:157
517
+ msgid "Text Align"
518
+ msgstr ""
519
+
520
+ #: fields/typography/typography.php:159
521
+ msgid "Inherit"
522
+ msgstr ""
523
+
524
+ #: fields/typography/typography.php:160
525
+ msgid "Left"
526
+ msgstr ""
527
+
528
+ #: fields/typography/typography.php:161
529
+ msgid "Center"
530
+ msgstr ""
531
+
532
+ #: fields/typography/typography.php:162
533
+ msgid "Right"
534
+ msgstr ""
535
+
536
+ #: fields/typography/typography.php:163
537
+ msgid "Justify"
538
+ msgstr ""
539
+
540
+ #: fields/typography/typography.php:164
541
+ msgid "Initial"
542
+ msgstr ""
543
+
544
+ #: fields/typography/typography.php:173
545
+ msgid "Font Variant"
546
+ msgstr ""
547
+
548
+ #: fields/typography/typography.php:176
549
+ msgid "Small Caps"
550
+ msgstr ""
551
+
552
+ #: fields/typography/typography.php:177
553
+ msgid "All Small Caps"
554
+ msgstr ""
555
+
556
+ #: fields/typography/typography.php:186
557
+ msgid "Text Transform"
558
+ msgstr ""
559
+
560
+ #: fields/typography/typography.php:189
561
+ msgid "Capitalize"
562
+ msgstr ""
563
+
564
+ #: fields/typography/typography.php:190
565
+ msgid "Uppercase"
566
+ msgstr ""
567
+
568
+ #: fields/typography/typography.php:191
569
+ msgid "Lowercase"
570
+ msgstr ""
571
+
572
+ #: fields/typography/typography.php:200
573
+ msgid "Text Decoration"
574
+ msgstr ""
575
+
576
+ #: fields/typography/typography.php:207
577
+ msgid "Wavy"
578
+ msgstr ""
579
+
580
+ #: fields/typography/typography.php:208
581
+ msgid "Overline"
582
+ msgstr ""
583
+
584
+ #: fields/typography/typography.php:209
585
+ msgid "Line-through"
586
+ msgstr ""
587
+
588
+ #: fields/typography/typography.php:222
589
+ msgid "Font Size"
590
+ msgstr ""
591
+
592
+ #: fields/typography/typography.php:234
593
+ msgid "Line Height"
594
+ msgstr ""
595
+
596
+ #: fields/typography/typography.php:246
597
+ msgid "Letter Spacing"
598
+ msgstr ""
599
+
600
+ #: fields/typography/typography.php:258
601
+ msgid "Word Spacing"
602
+ msgstr ""
603
+
604
+ #: fields/typography/typography.php:273
605
+ msgid "Font Color"
606
+ msgstr ""
607
+
608
+ #: fields/typography/typography.php:284
609
+ msgid "Custom Style"
610
+ msgstr ""
611
+
612
+ #: fields/typography/typography.php:351
613
+ msgid "Custom Web Fonts"
614
+ msgstr ""
615
+
616
+ #: fields/typography/typography.php:357
617
+ msgid "Safe Web Fonts"
618
+ msgstr ""
619
+
620
+ #: fields/typography/typography.php:377
621
+ msgid "Google Web Fonts"
622
+ msgstr ""
623
+
624
+ #: functions/actions.php:72 functions/actions.php:110
625
+ msgid "Error: Invalid key."
626
+ msgstr "Error: Clave no válida."
627
+
628
+ #: functions/actions.php:114
629
+ msgid "Error: The response is not a valid JSON response."
630
+ msgstr "Error: Las respuesta no es una respuesta JSON válida."
631
+
632
+ #: functions/actions.php:174
633
+ msgid "Error: Invalid term ID."
634
+ msgstr "Error: ID de término incorrecto."
635
+
636
+ #: functions/actions.php:180
637
+ msgid "Error: You do not have permission to do that."
638
+ msgstr "Error: No tienes permiso para hacer eso."
639
+
640
+ #: functions/validate.php:14 functions/validate.php:86
641
+ msgid "Please enter a valid email address."
642
+ msgstr "Por favor, introduce una dirección de correo electrónico válida."
643
+
644
+ #: functions/validate.php:32 functions/validate.php:106
645
+ msgid "Please enter a valid number."
646
+ msgstr "Por favor, introduce un número válido."
647
+
648
+ #: functions/validate.php:50 functions/validate.php:126
649
+ msgid "This field is required."
650
+ msgstr "Este campo es obligatorio."
651
+
652
+ #: functions/validate.php:68 functions/validate.php:146
653
+ msgid "Please enter a valid URL."
654
+ msgstr "Por favor, introduce un URL válido."
655
+
656
+ #~ msgid "Add Shortcode"
657
+ #~ msgstr "Añadir Shortcode"
658
+
659
+ #~ msgid "Select a shortcode"
660
+ #~ msgstr "Selecciona un shortcode"
661
+
662
+ #~ msgid "Insert Shortcode"
663
+ #~ msgstr "Insertar Shortcode"
664
+
665
+ #~ msgid "Write shortcode here..."
666
+ #~ msgstr "Escribe aquí el shortcode..."
vendor/codestar-framework/languages/fr_FR.po CHANGED
@@ -1,667 +1,667 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: fr_FR\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Erreur lors de la sauvegarde des modifications."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Les réglages ont été importés."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Les réglages par défaut ont été restaurés."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Options enregistrées."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr ""
35
- "Vous avez des changements non enregistrés, enregistrer vos modifications!"
36
-
37
- #: classes/admin-options.class.php:563
38
- msgid "show all settings"
39
- msgstr "afficher toutes les options"
40
-
41
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
42
- #: fields/map/map.php:23
43
- msgid "Search..."
44
- msgstr "Recherche..."
45
-
46
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
47
- msgid "Save"
48
- msgstr "Enregistrer"
49
-
50
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
51
- msgid "Saving..."
52
- msgstr "Enregistrement..."
53
-
54
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
55
- msgid "Reset Section"
56
- msgstr "Réinitialiser la Section"
57
-
58
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
59
- msgid "Are you sure to reset this section options?"
60
- msgstr "Êtes-vous sûr?"
61
-
62
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
63
- msgid "Reset All"
64
- msgstr "Tout réinitialiser"
65
-
66
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
67
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
68
- #: fields/backup/backup.php:31
69
- msgid "Reset"
70
- msgstr "Réinitialiser"
71
-
72
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
73
- msgid "Are you sure you want to reset all settings to default values?"
74
- msgstr ""
75
- "Voulez-vous vraiment réinitialiser tous les paramètres sur leur valeur par "
76
- "défaut?"
77
-
78
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
79
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
80
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
81
- #: fields/select/select.php:113 functions/actions.php:41
82
- msgid "No data available."
83
- msgstr "Pas de données disponibles."
84
-
85
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
86
- msgid "update post"
87
- msgstr "màj de publication"
88
-
89
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
90
- msgid "Cancel"
91
- msgstr "Annuler"
92
-
93
- #: classes/setup.class.php:529
94
- msgid "Are you sure?"
95
- msgstr "Êtes-vous sûr?"
96
-
97
- #: classes/setup.class.php:530
98
- msgid "Please enter %s or more characters"
99
- msgstr "Por favor, introduce %s o más caracteres"
100
-
101
- #: classes/setup.class.php:531
102
- msgid "Searching..."
103
- msgstr "Recherche..."
104
-
105
- #: classes/setup.class.php:532
106
- msgid "No results found."
107
- msgstr "Aucun résultat."
108
-
109
- #: classes/setup.class.php:615
110
- msgid "Oops! Not allowed."
111
- msgstr "Oups! Non autorisé."
112
-
113
- #: classes/setup.class.php:689 classes/setup.class.php:693
114
- msgid "Field not found!"
115
- msgstr "Champ introuvable!"
116
-
117
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
118
- msgid "Add New"
119
- msgstr "Ajouter produit"
120
-
121
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
122
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
123
- #: functions/actions.php:170
124
- msgid "Error: Invalid nonce verification."
125
- msgstr "Erreur: Vérification de jeton invalide."
126
-
127
- #: fields/background/background.php:35 fields/media/media.php:57
128
- msgid "Not selected"
129
- msgstr "Non sélectionné"
130
-
131
- #: fields/background/background.php:66 fields/date/date.php:31
132
- msgid "From"
133
- msgstr ""
134
-
135
- #: fields/background/background.php:84 fields/date/date.php:32
136
- msgid "To"
137
- msgstr ""
138
-
139
- #: fields/background/background.php:102
140
- msgid "Direction"
141
- msgstr ""
142
-
143
- #: fields/background/background.php:108
144
- msgid "Gradient Direction"
145
- msgstr ""
146
-
147
- #: fields/background/background.php:109
148
- msgid "&#8659; top to bottom"
149
- msgstr ""
150
-
151
- #: fields/background/background.php:110
152
- msgid "&#8658; left to right"
153
- msgstr ""
154
-
155
- #: fields/background/background.php:111
156
- msgid "&#8664; corner top to right"
157
- msgstr ""
158
-
159
- #: fields/background/background.php:112
160
- msgid "&#8665; corner top to left"
161
- msgstr ""
162
-
163
- #: fields/background/background.php:155
164
- msgid "Background Position"
165
- msgstr "Position d&rsquo;arrière-plan"
166
-
167
- #: fields/background/background.php:156
168
- msgid "Left Top"
169
- msgstr ""
170
-
171
- #: fields/background/background.php:157
172
- msgid "Left Center"
173
- msgstr ""
174
-
175
- #: fields/background/background.php:158
176
- msgid "Left Bottom"
177
- msgstr ""
178
-
179
- #: fields/background/background.php:159
180
- msgid "Center Top"
181
- msgstr ""
182
-
183
- #: fields/background/background.php:160
184
- msgid "Center Center"
185
- msgstr ""
186
-
187
- #: fields/background/background.php:161
188
- msgid "Center Bottom"
189
- msgstr ""
190
-
191
- #: fields/background/background.php:162
192
- msgid "Right Top"
193
- msgstr ""
194
-
195
- #: fields/background/background.php:163
196
- msgid "Right Center"
197
- msgstr ""
198
-
199
- #: fields/background/background.php:164
200
- msgid "Right Bottom"
201
- msgstr ""
202
-
203
- #: fields/background/background.php:178
204
- msgid "Background Repeat"
205
- msgstr "Répétition de l&rsquo;arrière-plan"
206
-
207
- #: fields/background/background.php:179
208
- msgid "Repeat"
209
- msgstr ""
210
-
211
- #: fields/background/background.php:180
212
- msgid "No Repeat"
213
- msgstr ""
214
-
215
- #: fields/background/background.php:181
216
- msgid "Repeat Horizontally"
217
- msgstr ""
218
-
219
- #: fields/background/background.php:182
220
- msgid "Repeat Vertically"
221
- msgstr ""
222
-
223
- #: fields/background/background.php:196
224
- msgid "Background Attachment"
225
- msgstr "Image d&rsquo;arrière-plan"
226
-
227
- #: fields/background/background.php:197
228
- msgid "Scroll"
229
- msgstr ""
230
-
231
- #: fields/background/background.php:198
232
- msgid "Fixed"
233
- msgstr ""
234
-
235
- #: fields/background/background.php:212
236
- msgid "Background Size"
237
- msgstr "Dimension de l&rsquo;arrière-plan"
238
-
239
- #: fields/background/background.php:213
240
- msgid "Cover"
241
- msgstr ""
242
-
243
- #: fields/background/background.php:214
244
- msgid "Contain"
245
- msgstr ""
246
-
247
- #: fields/background/background.php:215
248
- msgid "Auto"
249
- msgstr ""
250
-
251
- #: fields/background/background.php:229
252
- msgid "Background Origin"
253
- msgstr "Origine de l&rsquo;arrière-plan"
254
-
255
- #: fields/background/background.php:230 fields/background/background.php:248
256
- msgid "Padding Box"
257
- msgstr ""
258
-
259
- #: fields/background/background.php:231 fields/background/background.php:247
260
- msgid "Border Box"
261
- msgstr ""
262
-
263
- #: fields/background/background.php:232 fields/background/background.php:249
264
- msgid "Content Box"
265
- msgstr ""
266
-
267
- #: fields/background/background.php:246
268
- msgid "Background Clip"
269
- msgstr "Limites de coloration l&rsquo;arrière-plan"
270
-
271
- #: fields/background/background.php:263
272
- msgid "Background Blend Mode"
273
- msgstr ""
274
-
275
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
276
- #: fields/typography/typography.php:175
277
- msgid "Normal"
278
- msgstr ""
279
-
280
- #: fields/background/background.php:265
281
- msgid "Multiply"
282
- msgstr ""
283
-
284
- #: fields/background/background.php:266
285
- msgid "Screen"
286
- msgstr ""
287
-
288
- #: fields/background/background.php:267
289
- msgid "Overlay"
290
- msgstr ""
291
-
292
- #: fields/background/background.php:268
293
- msgid "Darken"
294
- msgstr ""
295
-
296
- #: fields/background/background.php:269
297
- msgid "Lighten"
298
- msgstr ""
299
-
300
- #: fields/background/background.php:270
301
- msgid "Color Dodge"
302
- msgstr ""
303
-
304
- #: fields/background/background.php:271
305
- msgid "Saturation"
306
- msgstr ""
307
-
308
- #: fields/background/background.php:272
309
- msgid "Color"
310
- msgstr ""
311
-
312
- #: fields/background/background.php:273
313
- msgid "Luminosity"
314
- msgstr ""
315
-
316
- #: fields/backup/backup.php:26
317
- msgid "Import"
318
- msgstr "Importer"
319
-
320
- #: fields/backup/backup.php:29
321
- msgid "Export & Download"
322
- msgstr "Exporter & Télécharger"
323
-
324
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
325
- msgid "top"
326
- msgstr ""
327
-
328
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
329
- msgid "right"
330
- msgstr ""
331
-
332
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
333
- msgid "bottom"
334
- msgstr ""
335
-
336
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
337
- msgid "left"
338
- msgstr ""
339
-
340
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
341
- msgid "all"
342
- msgstr ""
343
-
344
- #: fields/border/border.php:51 fields/typography/typography.php:203
345
- msgid "Solid"
346
- msgstr ""
347
-
348
- #: fields/border/border.php:52 fields/typography/typography.php:206
349
- msgid "Dashed"
350
- msgstr ""
351
-
352
- #: fields/border/border.php:53 fields/typography/typography.php:205
353
- msgid "Dotted"
354
- msgstr ""
355
-
356
- #: fields/border/border.php:54 fields/typography/typography.php:204
357
- msgid "Double"
358
- msgstr ""
359
-
360
- #: fields/border/border.php:55
361
- msgid "Inset"
362
- msgstr ""
363
-
364
- #: fields/border/border.php:56
365
- msgid "Outset"
366
- msgstr ""
367
-
368
- #: fields/border/border.php:57
369
- msgid "Groove"
370
- msgstr ""
371
-
372
- #: fields/border/border.php:58
373
- msgid "ridge"
374
- msgstr ""
375
-
376
- #: fields/border/border.php:59 fields/typography/typography.php:188
377
- #: fields/typography/typography.php:202
378
- msgid "None"
379
- msgstr ""
380
-
381
- #: fields/dimensions/dimensions.php:22
382
- msgid "width"
383
- msgstr ""
384
-
385
- #: fields/dimensions/dimensions.php:23
386
- msgid "height"
387
- msgstr ""
388
-
389
- #: fields/gallery/gallery.php:20
390
- msgid "Add Gallery"
391
- msgstr "Ajouter une Gallerie"
392
-
393
- #: fields/gallery/gallery.php:21
394
- msgid "Edit Gallery"
395
- msgstr "Editer la Galerie"
396
-
397
- #: fields/gallery/gallery.php:22
398
- msgid "Clear"
399
- msgstr "Effacer"
400
-
401
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
402
- msgid "Error: Field ID conflict."
403
- msgstr "Conflit d'ID de champ."
404
-
405
- #: fields/group/group.php:46 fields/group/group.php:87
406
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
407
- msgid "Are you sure to delete this item?"
408
- msgstr "Confirmez-vous vouloir le supprimer?"
409
-
410
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
411
- msgid "You cannot add more."
412
- msgstr "Vous ne pouvez pas en ajouter davantage."
413
-
414
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
415
- msgid "You cannot remove more."
416
- msgstr "Vous ne pouvez plus en supprimer."
417
-
418
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
419
- msgid "Add Icon"
420
- msgstr "Ajouter Icône"
421
-
422
- #: fields/icon/icon.php:21
423
- msgid "Remove Icon"
424
- msgstr "Retirer Icône"
425
-
426
- #: fields/link/link.php:20
427
- msgid "Add Link"
428
- msgstr "Ajout de lien"
429
-
430
- #: fields/link/link.php:21
431
- msgid "Edit Link"
432
- msgstr "Lien d’édition"
433
-
434
- #: fields/link/link.php:22
435
- msgid "Remove Link"
436
- msgstr "Enlever le lien"
437
-
438
- #: fields/link_color/link_color.php:37
439
- msgid "Hover"
440
- msgstr ""
441
-
442
- #: fields/link_color/link_color.php:38
443
- msgid "Active"
444
- msgstr ""
445
-
446
- #: fields/link_color/link_color.php:39
447
- msgid "Visited"
448
- msgstr ""
449
-
450
- #: fields/link_color/link_color.php:40
451
- msgid "Focus"
452
- msgstr ""
453
-
454
- #: fields/map/map.php:24
455
- msgid "Latitude"
456
- msgstr "Latitude"
457
-
458
- #: fields/map/map.php:25
459
- msgid "Longitude"
460
- msgstr "Longitude"
461
-
462
- #: fields/media/media.php:23 fields/upload/upload.php:21
463
- msgid "Upload"
464
- msgstr "Téléverser"
465
-
466
- #: fields/media/media.php:24 fields/upload/upload.php:22
467
- msgid "Remove"
468
- msgstr "Retirer"
469
-
470
- #: fields/sorter/sorter.php:21
471
- msgid "Enabled"
472
- msgstr "Activé"
473
-
474
- #: fields/sorter/sorter.php:22
475
- msgid "Disabled"
476
- msgstr "Désactivée"
477
-
478
- #: fields/switcher/switcher.php:20
479
- msgid "On"
480
- msgstr ""
481
-
482
- #: fields/switcher/switcher.php:21
483
- msgid "Off"
484
- msgstr ""
485
-
486
- #: fields/typography/typography.php:85
487
- msgid "Font Family"
488
- msgstr ""
489
-
490
- #: fields/typography/typography.php:86
491
- msgid "Select a font"
492
- msgstr ""
493
-
494
- #: fields/typography/typography.php:94
495
- msgid "Backup Font Family"
496
- msgstr ""
497
-
498
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
499
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
500
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
501
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
502
- msgid "Default"
503
- msgstr ""
504
-
505
- #: fields/typography/typography.php:119
506
- msgid "Font Style"
507
- msgstr ""
508
-
509
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
510
- msgid "Load Extra Styles"
511
- msgstr ""
512
-
513
- #: fields/typography/typography.php:147
514
- msgid "Subset"
515
- msgstr ""
516
-
517
- #: fields/typography/typography.php:157
518
- msgid "Text Align"
519
- msgstr ""
520
-
521
- #: fields/typography/typography.php:159
522
- msgid "Inherit"
523
- msgstr ""
524
-
525
- #: fields/typography/typography.php:160
526
- msgid "Left"
527
- msgstr ""
528
-
529
- #: fields/typography/typography.php:161
530
- msgid "Center"
531
- msgstr ""
532
-
533
- #: fields/typography/typography.php:162
534
- msgid "Right"
535
- msgstr ""
536
-
537
- #: fields/typography/typography.php:163
538
- msgid "Justify"
539
- msgstr ""
540
-
541
- #: fields/typography/typography.php:164
542
- msgid "Initial"
543
- msgstr ""
544
-
545
- #: fields/typography/typography.php:173
546
- msgid "Font Variant"
547
- msgstr ""
548
-
549
- #: fields/typography/typography.php:176
550
- msgid "Small Caps"
551
- msgstr ""
552
-
553
- #: fields/typography/typography.php:177
554
- msgid "All Small Caps"
555
- msgstr ""
556
-
557
- #: fields/typography/typography.php:186
558
- msgid "Text Transform"
559
- msgstr ""
560
-
561
- #: fields/typography/typography.php:189
562
- msgid "Capitalize"
563
- msgstr ""
564
-
565
- #: fields/typography/typography.php:190
566
- msgid "Uppercase"
567
- msgstr ""
568
-
569
- #: fields/typography/typography.php:191
570
- msgid "Lowercase"
571
- msgstr ""
572
-
573
- #: fields/typography/typography.php:200
574
- msgid "Text Decoration"
575
- msgstr ""
576
-
577
- #: fields/typography/typography.php:207
578
- msgid "Wavy"
579
- msgstr ""
580
-
581
- #: fields/typography/typography.php:208
582
- msgid "Overline"
583
- msgstr ""
584
-
585
- #: fields/typography/typography.php:209
586
- msgid "Line-through"
587
- msgstr ""
588
-
589
- #: fields/typography/typography.php:222
590
- msgid "Font Size"
591
- msgstr ""
592
-
593
- #: fields/typography/typography.php:234
594
- msgid "Line Height"
595
- msgstr ""
596
-
597
- #: fields/typography/typography.php:246
598
- msgid "Letter Spacing"
599
- msgstr ""
600
-
601
- #: fields/typography/typography.php:258
602
- msgid "Word Spacing"
603
- msgstr ""
604
-
605
- #: fields/typography/typography.php:273
606
- msgid "Font Color"
607
- msgstr ""
608
-
609
- #: fields/typography/typography.php:284
610
- msgid "Custom Style"
611
- msgstr ""
612
-
613
- #: fields/typography/typography.php:351
614
- msgid "Custom Web Fonts"
615
- msgstr ""
616
-
617
- #: fields/typography/typography.php:357
618
- msgid "Safe Web Fonts"
619
- msgstr ""
620
-
621
- #: fields/typography/typography.php:377
622
- msgid "Google Web Fonts"
623
- msgstr ""
624
-
625
- #: functions/actions.php:72 functions/actions.php:110
626
- msgid "Error: Invalid key."
627
- msgstr "Erreur: Clé non valide."
628
-
629
- #: functions/actions.php:114
630
- msgid "Error: The response is not a valid JSON response."
631
- msgstr "Erreur: La réponse n’est pas une réponse JSON valide."
632
-
633
- #: functions/actions.php:174
634
- msgid "Error: Invalid term ID."
635
- msgstr "Erreur: ID du terme non valide."
636
-
637
- #: functions/actions.php:180
638
- msgid "Error: You do not have permission to do that."
639
- msgstr "Erreur: Vous n’avez pas l’autorisation d’effectuer cela."
640
-
641
- #: functions/validate.php:14 functions/validate.php:86
642
- msgid "Please enter a valid email address."
643
- msgstr "Veuillez saisir une adresse de messagerie valide."
644
-
645
- #: functions/validate.php:32 functions/validate.php:106
646
- msgid "Please enter a valid number."
647
- msgstr "Veuillez saisir un numéro valide."
648
-
649
- #: functions/validate.php:50 functions/validate.php:126
650
- msgid "This field is required."
651
- msgstr "Champ obligatoire."
652
-
653
- #: functions/validate.php:68 functions/validate.php:146
654
- msgid "Please enter a valid URL."
655
- msgstr "Veuillez saisir une adresse valide."
656
-
657
- #~ msgid "Add Shortcode"
658
- #~ msgstr "Ajouter le code court"
659
-
660
- #~ msgid "Select a shortcode"
661
- #~ msgstr "Sélectionner un code court"
662
-
663
- #~ msgid "Insert Shortcode"
664
- #~ msgstr "Insertion de code court"
665
-
666
- #~ msgid "Write shortcode here..."
667
- #~ msgstr "Placez le code court ici..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: fr_FR\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Erreur lors de la sauvegarde des modifications."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Les réglages ont été importés."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Les réglages par défaut ont été restaurés."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Options enregistrées."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr ""
35
+ "Vous avez des changements non enregistrés, enregistrer vos modifications!"
36
+
37
+ #: classes/admin-options.class.php:563
38
+ msgid "show all settings"
39
+ msgstr "afficher toutes les options"
40
+
41
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
42
+ #: fields/map/map.php:23
43
+ msgid "Search..."
44
+ msgstr "Recherche..."
45
+
46
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
47
+ msgid "Save"
48
+ msgstr "Enregistrer"
49
+
50
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
51
+ msgid "Saving..."
52
+ msgstr "Enregistrement..."
53
+
54
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
55
+ msgid "Reset Section"
56
+ msgstr "Réinitialiser la Section"
57
+
58
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
59
+ msgid "Are you sure to reset this section options?"
60
+ msgstr "Êtes-vous sûr?"
61
+
62
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
63
+ msgid "Reset All"
64
+ msgstr "Tout réinitialiser"
65
+
66
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
67
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
68
+ #: fields/backup/backup.php:31
69
+ msgid "Reset"
70
+ msgstr "Réinitialiser"
71
+
72
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
73
+ msgid "Are you sure you want to reset all settings to default values?"
74
+ msgstr ""
75
+ "Voulez-vous vraiment réinitialiser tous les paramètres sur leur valeur par "
76
+ "défaut?"
77
+
78
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
79
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
80
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
81
+ #: fields/select/select.php:113 functions/actions.php:41
82
+ msgid "No data available."
83
+ msgstr "Pas de données disponibles."
84
+
85
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
86
+ msgid "update post"
87
+ msgstr "màj de publication"
88
+
89
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
90
+ msgid "Cancel"
91
+ msgstr "Annuler"
92
+
93
+ #: classes/setup.class.php:529
94
+ msgid "Are you sure?"
95
+ msgstr "Êtes-vous sûr?"
96
+
97
+ #: classes/setup.class.php:530
98
+ msgid "Please enter %s or more characters"
99
+ msgstr "Por favor, introduce %s o más caracteres"
100
+
101
+ #: classes/setup.class.php:531
102
+ msgid "Searching..."
103
+ msgstr "Recherche..."
104
+
105
+ #: classes/setup.class.php:532
106
+ msgid "No results found."
107
+ msgstr "Aucun résultat."
108
+
109
+ #: classes/setup.class.php:615
110
+ msgid "Oops! Not allowed."
111
+ msgstr "Oups! Non autorisé."
112
+
113
+ #: classes/setup.class.php:689 classes/setup.class.php:693
114
+ msgid "Field not found!"
115
+ msgstr "Champ introuvable!"
116
+
117
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
118
+ msgid "Add New"
119
+ msgstr "Ajouter produit"
120
+
121
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
122
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
123
+ #: functions/actions.php:170
124
+ msgid "Error: Invalid nonce verification."
125
+ msgstr "Erreur: Vérification de jeton invalide."
126
+
127
+ #: fields/background/background.php:35 fields/media/media.php:57
128
+ msgid "Not selected"
129
+ msgstr "Non sélectionné"
130
+
131
+ #: fields/background/background.php:66 fields/date/date.php:31
132
+ msgid "From"
133
+ msgstr ""
134
+
135
+ #: fields/background/background.php:84 fields/date/date.php:32
136
+ msgid "To"
137
+ msgstr ""
138
+
139
+ #: fields/background/background.php:102
140
+ msgid "Direction"
141
+ msgstr ""
142
+
143
+ #: fields/background/background.php:108
144
+ msgid "Gradient Direction"
145
+ msgstr ""
146
+
147
+ #: fields/background/background.php:109
148
+ msgid "&#8659; top to bottom"
149
+ msgstr ""
150
+
151
+ #: fields/background/background.php:110
152
+ msgid "&#8658; left to right"
153
+ msgstr ""
154
+
155
+ #: fields/background/background.php:111
156
+ msgid "&#8664; corner top to right"
157
+ msgstr ""
158
+
159
+ #: fields/background/background.php:112
160
+ msgid "&#8665; corner top to left"
161
+ msgstr ""
162
+
163
+ #: fields/background/background.php:155
164
+ msgid "Background Position"
165
+ msgstr "Position d&rsquo;arrière-plan"
166
+
167
+ #: fields/background/background.php:156
168
+ msgid "Left Top"
169
+ msgstr ""
170
+
171
+ #: fields/background/background.php:157
172
+ msgid "Left Center"
173
+ msgstr ""
174
+
175
+ #: fields/background/background.php:158
176
+ msgid "Left Bottom"
177
+ msgstr ""
178
+
179
+ #: fields/background/background.php:159
180
+ msgid "Center Top"
181
+ msgstr ""
182
+
183
+ #: fields/background/background.php:160
184
+ msgid "Center Center"
185
+ msgstr ""
186
+
187
+ #: fields/background/background.php:161
188
+ msgid "Center Bottom"
189
+ msgstr ""
190
+
191
+ #: fields/background/background.php:162
192
+ msgid "Right Top"
193
+ msgstr ""
194
+
195
+ #: fields/background/background.php:163
196
+ msgid "Right Center"
197
+ msgstr ""
198
+
199
+ #: fields/background/background.php:164
200
+ msgid "Right Bottom"
201
+ msgstr ""
202
+
203
+ #: fields/background/background.php:178
204
+ msgid "Background Repeat"
205
+ msgstr "Répétition de l&rsquo;arrière-plan"
206
+
207
+ #: fields/background/background.php:179
208
+ msgid "Repeat"
209
+ msgstr ""
210
+
211
+ #: fields/background/background.php:180
212
+ msgid "No Repeat"
213
+ msgstr ""
214
+
215
+ #: fields/background/background.php:181
216
+ msgid "Repeat Horizontally"
217
+ msgstr ""
218
+
219
+ #: fields/background/background.php:182
220
+ msgid "Repeat Vertically"
221
+ msgstr ""
222
+
223
+ #: fields/background/background.php:196
224
+ msgid "Background Attachment"
225
+ msgstr "Image d&rsquo;arrière-plan"
226
+
227
+ #: fields/background/background.php:197
228
+ msgid "Scroll"
229
+ msgstr ""
230
+
231
+ #: fields/background/background.php:198
232
+ msgid "Fixed"
233
+ msgstr ""
234
+
235
+ #: fields/background/background.php:212
236
+ msgid "Background Size"
237
+ msgstr "Dimension de l&rsquo;arrière-plan"
238
+
239
+ #: fields/background/background.php:213
240
+ msgid "Cover"
241
+ msgstr ""
242
+
243
+ #: fields/background/background.php:214
244
+ msgid "Contain"
245
+ msgstr ""
246
+
247
+ #: fields/background/background.php:215
248
+ msgid "Auto"
249
+ msgstr ""
250
+
251
+ #: fields/background/background.php:229
252
+ msgid "Background Origin"
253
+ msgstr "Origine de l&rsquo;arrière-plan"
254
+
255
+ #: fields/background/background.php:230 fields/background/background.php:248
256
+ msgid "Padding Box"
257
+ msgstr ""
258
+
259
+ #: fields/background/background.php:231 fields/background/background.php:247
260
+ msgid "Border Box"
261
+ msgstr ""
262
+
263
+ #: fields/background/background.php:232 fields/background/background.php:249
264
+ msgid "Content Box"
265
+ msgstr ""
266
+
267
+ #: fields/background/background.php:246
268
+ msgid "Background Clip"
269
+ msgstr "Limites de coloration l&rsquo;arrière-plan"
270
+
271
+ #: fields/background/background.php:263
272
+ msgid "Background Blend Mode"
273
+ msgstr ""
274
+
275
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
276
+ #: fields/typography/typography.php:175
277
+ msgid "Normal"
278
+ msgstr ""
279
+
280
+ #: fields/background/background.php:265
281
+ msgid "Multiply"
282
+ msgstr ""
283
+
284
+ #: fields/background/background.php:266
285
+ msgid "Screen"
286
+ msgstr ""
287
+
288
+ #: fields/background/background.php:267
289
+ msgid "Overlay"
290
+ msgstr ""
291
+
292
+ #: fields/background/background.php:268
293
+ msgid "Darken"
294
+ msgstr ""
295
+
296
+ #: fields/background/background.php:269
297
+ msgid "Lighten"
298
+ msgstr ""
299
+
300
+ #: fields/background/background.php:270
301
+ msgid "Color Dodge"
302
+ msgstr ""
303
+
304
+ #: fields/background/background.php:271
305
+ msgid "Saturation"
306
+ msgstr ""
307
+
308
+ #: fields/background/background.php:272
309
+ msgid "Color"
310
+ msgstr ""
311
+
312
+ #: fields/background/background.php:273
313
+ msgid "Luminosity"
314
+ msgstr ""
315
+
316
+ #: fields/backup/backup.php:26
317
+ msgid "Import"
318
+ msgstr "Importer"
319
+
320
+ #: fields/backup/backup.php:29
321
+ msgid "Export & Download"
322
+ msgstr "Exporter & Télécharger"
323
+
324
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
325
+ msgid "top"
326
+ msgstr ""
327
+
328
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
329
+ msgid "right"
330
+ msgstr ""
331
+
332
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
333
+ msgid "bottom"
334
+ msgstr ""
335
+
336
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
337
+ msgid "left"
338
+ msgstr ""
339
+
340
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
341
+ msgid "all"
342
+ msgstr ""
343
+
344
+ #: fields/border/border.php:51 fields/typography/typography.php:203
345
+ msgid "Solid"
346
+ msgstr ""
347
+
348
+ #: fields/border/border.php:52 fields/typography/typography.php:206
349
+ msgid "Dashed"
350
+ msgstr ""
351
+
352
+ #: fields/border/border.php:53 fields/typography/typography.php:205
353
+ msgid "Dotted"
354
+ msgstr ""
355
+
356
+ #: fields/border/border.php:54 fields/typography/typography.php:204
357
+ msgid "Double"
358
+ msgstr ""
359
+
360
+ #: fields/border/border.php:55
361
+ msgid "Inset"
362
+ msgstr ""
363
+
364
+ #: fields/border/border.php:56
365
+ msgid "Outset"
366
+ msgstr ""
367
+
368
+ #: fields/border/border.php:57
369
+ msgid "Groove"
370
+ msgstr ""
371
+
372
+ #: fields/border/border.php:58
373
+ msgid "ridge"
374
+ msgstr ""
375
+
376
+ #: fields/border/border.php:59 fields/typography/typography.php:188
377
+ #: fields/typography/typography.php:202
378
+ msgid "None"
379
+ msgstr ""
380
+
381
+ #: fields/dimensions/dimensions.php:22
382
+ msgid "width"
383
+ msgstr ""
384
+
385
+ #: fields/dimensions/dimensions.php:23
386
+ msgid "height"
387
+ msgstr ""
388
+
389
+ #: fields/gallery/gallery.php:20
390
+ msgid "Add Gallery"
391
+ msgstr "Ajouter une Gallerie"
392
+
393
+ #: fields/gallery/gallery.php:21
394
+ msgid "Edit Gallery"
395
+ msgstr "Editer la Galerie"
396
+
397
+ #: fields/gallery/gallery.php:22
398
+ msgid "Clear"
399
+ msgstr "Effacer"
400
+
401
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
402
+ msgid "Error: Field ID conflict."
403
+ msgstr "Conflit d'ID de champ."
404
+
405
+ #: fields/group/group.php:46 fields/group/group.php:87
406
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
407
+ msgid "Are you sure to delete this item?"
408
+ msgstr "Confirmez-vous vouloir le supprimer?"
409
+
410
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
411
+ msgid "You cannot add more."
412
+ msgstr "Vous ne pouvez pas en ajouter davantage."
413
+
414
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
415
+ msgid "You cannot remove more."
416
+ msgstr "Vous ne pouvez plus en supprimer."
417
+
418
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
419
+ msgid "Add Icon"
420
+ msgstr "Ajouter Icône"
421
+
422
+ #: fields/icon/icon.php:21
423
+ msgid "Remove Icon"
424
+ msgstr "Retirer Icône"
425
+
426
+ #: fields/link/link.php:20
427
+ msgid "Add Link"
428
+ msgstr "Ajout de lien"
429
+
430
+ #: fields/link/link.php:21
431
+ msgid "Edit Link"
432
+ msgstr "Lien d’édition"
433
+
434
+ #: fields/link/link.php:22
435
+ msgid "Remove Link"
436
+ msgstr "Enlever le lien"
437
+
438
+ #: fields/link_color/link_color.php:37
439
+ msgid "Hover"
440
+ msgstr ""
441
+
442
+ #: fields/link_color/link_color.php:38
443
+ msgid "Active"
444
+ msgstr ""
445
+
446
+ #: fields/link_color/link_color.php:39
447
+ msgid "Visited"
448
+ msgstr ""
449
+
450
+ #: fields/link_color/link_color.php:40
451
+ msgid "Focus"
452
+ msgstr ""
453
+
454
+ #: fields/map/map.php:24
455
+ msgid "Latitude"
456
+ msgstr "Latitude"
457
+
458
+ #: fields/map/map.php:25
459
+ msgid "Longitude"
460
+ msgstr "Longitude"
461
+
462
+ #: fields/media/media.php:23 fields/upload/upload.php:21
463
+ msgid "Upload"
464
+ msgstr "Téléverser"
465
+
466
+ #: fields/media/media.php:24 fields/upload/upload.php:22
467
+ msgid "Remove"
468
+ msgstr "Retirer"
469
+
470
+ #: fields/sorter/sorter.php:21
471
+ msgid "Enabled"
472
+ msgstr "Activé"
473
+
474
+ #: fields/sorter/sorter.php:22
475
+ msgid "Disabled"
476
+ msgstr "Désactivée"
477
+
478
+ #: fields/switcher/switcher.php:20
479
+ msgid "On"
480
+ msgstr ""
481
+
482
+ #: fields/switcher/switcher.php:21
483
+ msgid "Off"
484
+ msgstr ""
485
+
486
+ #: fields/typography/typography.php:85
487
+ msgid "Font Family"
488
+ msgstr ""
489
+
490
+ #: fields/typography/typography.php:86
491
+ msgid "Select a font"
492
+ msgstr ""
493
+
494
+ #: fields/typography/typography.php:94
495
+ msgid "Backup Font Family"
496
+ msgstr ""
497
+
498
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
499
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
500
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
501
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
502
+ msgid "Default"
503
+ msgstr ""
504
+
505
+ #: fields/typography/typography.php:119
506
+ msgid "Font Style"
507
+ msgstr ""
508
+
509
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
510
+ msgid "Load Extra Styles"
511
+ msgstr ""
512
+
513
+ #: fields/typography/typography.php:147
514
+ msgid "Subset"
515
+ msgstr ""
516
+
517
+ #: fields/typography/typography.php:157
518
+ msgid "Text Align"
519
+ msgstr ""
520
+
521
+ #: fields/typography/typography.php:159
522
+ msgid "Inherit"
523
+ msgstr ""
524
+
525
+ #: fields/typography/typography.php:160
526
+ msgid "Left"
527
+ msgstr ""
528
+
529
+ #: fields/typography/typography.php:161
530
+ msgid "Center"
531
+ msgstr ""
532
+
533
+ #: fields/typography/typography.php:162
534
+ msgid "Right"
535
+ msgstr ""
536
+
537
+ #: fields/typography/typography.php:163
538
+ msgid "Justify"
539
+ msgstr ""
540
+
541
+ #: fields/typography/typography.php:164
542
+ msgid "Initial"
543
+ msgstr ""
544
+
545
+ #: fields/typography/typography.php:173
546
+ msgid "Font Variant"
547
+ msgstr ""
548
+
549
+ #: fields/typography/typography.php:176
550
+ msgid "Small Caps"
551
+ msgstr ""
552
+
553
+ #: fields/typography/typography.php:177
554
+ msgid "All Small Caps"
555
+ msgstr ""
556
+
557
+ #: fields/typography/typography.php:186
558
+ msgid "Text Transform"
559
+ msgstr ""
560
+
561
+ #: fields/typography/typography.php:189
562
+ msgid "Capitalize"
563
+ msgstr ""
564
+
565
+ #: fields/typography/typography.php:190
566
+ msgid "Uppercase"
567
+ msgstr ""
568
+
569
+ #: fields/typography/typography.php:191
570
+ msgid "Lowercase"
571
+ msgstr ""
572
+
573
+ #: fields/typography/typography.php:200
574
+ msgid "Text Decoration"
575
+ msgstr ""
576
+
577
+ #: fields/typography/typography.php:207
578
+ msgid "Wavy"
579
+ msgstr ""
580
+
581
+ #: fields/typography/typography.php:208
582
+ msgid "Overline"
583
+ msgstr ""
584
+
585
+ #: fields/typography/typography.php:209
586
+ msgid "Line-through"
587
+ msgstr ""
588
+
589
+ #: fields/typography/typography.php:222
590
+ msgid "Font Size"
591
+ msgstr ""
592
+
593
+ #: fields/typography/typography.php:234
594
+ msgid "Line Height"
595
+ msgstr ""
596
+
597
+ #: fields/typography/typography.php:246
598
+ msgid "Letter Spacing"
599
+ msgstr ""
600
+
601
+ #: fields/typography/typography.php:258
602
+ msgid "Word Spacing"
603
+ msgstr ""
604
+
605
+ #: fields/typography/typography.php:273
606
+ msgid "Font Color"
607
+ msgstr ""
608
+
609
+ #: fields/typography/typography.php:284
610
+ msgid "Custom Style"
611
+ msgstr ""
612
+
613
+ #: fields/typography/typography.php:351
614
+ msgid "Custom Web Fonts"
615
+ msgstr ""
616
+
617
+ #: fields/typography/typography.php:357
618
+ msgid "Safe Web Fonts"
619
+ msgstr ""
620
+
621
+ #: fields/typography/typography.php:377
622
+ msgid "Google Web Fonts"
623
+ msgstr ""
624
+
625
+ #: functions/actions.php:72 functions/actions.php:110
626
+ msgid "Error: Invalid key."
627
+ msgstr "Erreur: Clé non valide."
628
+
629
+ #: functions/actions.php:114
630
+ msgid "Error: The response is not a valid JSON response."
631
+ msgstr "Erreur: La réponse n’est pas une réponse JSON valide."
632
+
633
+ #: functions/actions.php:174
634
+ msgid "Error: Invalid term ID."
635
+ msgstr "Erreur: ID du terme non valide."
636
+
637
+ #: functions/actions.php:180
638
+ msgid "Error: You do not have permission to do that."
639
+ msgstr "Erreur: Vous n’avez pas l’autorisation d’effectuer cela."
640
+
641
+ #: functions/validate.php:14 functions/validate.php:86
642
+ msgid "Please enter a valid email address."
643
+ msgstr "Veuillez saisir une adresse de messagerie valide."
644
+
645
+ #: functions/validate.php:32 functions/validate.php:106
646
+ msgid "Please enter a valid number."
647
+ msgstr "Veuillez saisir un numéro valide."
648
+
649
+ #: functions/validate.php:50 functions/validate.php:126
650
+ msgid "This field is required."
651
+ msgstr "Champ obligatoire."
652
+
653
+ #: functions/validate.php:68 functions/validate.php:146
654
+ msgid "Please enter a valid URL."
655
+ msgstr "Veuillez saisir une adresse valide."
656
+
657
+ #~ msgid "Add Shortcode"
658
+ #~ msgstr "Ajouter le code court"
659
+
660
+ #~ msgid "Select a shortcode"
661
+ #~ msgstr "Sélectionner un code court"
662
+
663
+ #~ msgid "Insert Shortcode"
664
+ #~ msgstr "Insertion de code court"
665
+
666
+ #~ msgid "Write shortcode here..."
667
+ #~ msgstr "Placez le code court ici..."
vendor/codestar-framework/languages/hi_IN.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: hi_IN\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "परिवर्तन सहेजते समय त्रुटि।"
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "सेटिंग्स सफलतापूर्वक आयात की गईं।"
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "डिफ़ॉल्ट सेटिंग्स को पुनर्स्थापित किया।"
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "सेटिंग्स सहेजा गया।"
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "आपके बदलाव सहेजे नहीं गए हैं, बदलाव को सहेजें!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "सभी विकल्प दिखाएं"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "खोज..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "सहेजें"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "सहेजा जा रहा..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "रीसेट सेक्शन"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "क्या आप निश्चिंत है?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "सभी को रीसेट करे"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "रीसेट"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "क्या आप निश्चिंत है?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "डाटा अनुपलब्ध"
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "अपडेट पोस्ट"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "रद्द करें"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "क्या आप निश्चिंत है?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "कृपया %s या अधिक वर्ण दर्ज करें"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "खोज कर..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "कोई परिणाम नही मिला।"
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "उफ़! अनुमति नहीं हैं।"
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "मैदान नहीं मिला!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "नया जोड़ें"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "त्रुटि: अमान्य अस्थायी रूप से सत्यापन।"
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "नहीं चुने गए"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "पृष्ठभूमि की अवस्था"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "पृष्ठभूमि दोहराएँ"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "पृष्ठभूमि संलग्न"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "पृष्ठभूमि का आकार"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "पृष्ठभूमि की उत्पत्ति"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "पृष्ठभूमि क्लिप"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "आयात"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "निर्यात ও डाउनलोड"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "गैलरी में जोड़ें"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "गैलरी को संपादित करे"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "साफ़ करें"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "त्रुटि: फ़ील्ड आईडी संघर्ष।"
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "क्या आप निश्चिंत है?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "आप अधिक नहीं जोड़ सकते।"
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "आप अधिक नहीं निकाल सकते।"
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "चिह्न जोड़ें"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "चिह्न हटाएं"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "कड़ी जोडें"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "कड़ी का संपादन करे"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "कड़ी हटायें"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "अक्षांश"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "देशान्तर"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "अपलोड"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "अपलोड"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "सक्रिय करें"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "निष्क्रिय करें"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "त्रुटि: अमान्य कुंजी।"
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "त्रुटि: प्रतिक्रिया वैध JSON प्रतिक्रिया नहीं है।"
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "त्रुटि: अमान्य टर्म आईडी।"
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "त्रुटि: आपके पास यह कार्य करने कि अनुमति नहीं है।"
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "कृपया एक मान्य ईमेल पता दर्ज करें।"
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "कृपया एक सही संख्या डालिये।"
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "यह फील्ड अपेक्षित है।"
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "कृपया एक मान्य यूआरएल दर्ज कीजिए।"
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "शॉर्टकोड जोड़ें"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "एक शोर्ट का चयन करें"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "शॉर्टकोड डालें"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "यहां शोर्टकोड लिखें..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: hi_IN\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "परिवर्तन सहेजते समय त्रुटि।"
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "सेटिंग्स सफलतापूर्वक आयात की गईं।"
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "डिफ़ॉल्ट सेटिंग्स को पुनर्स्थापित किया।"
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "सेटिंग्स सहेजा गया।"
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "आपके बदलाव सहेजे नहीं गए हैं, बदलाव को सहेजें!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "सभी विकल्प दिखाएं"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "खोज..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "सहेजें"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "सहेजा जा रहा..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "रीसेट सेक्शन"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "क्या आप निश्चिंत है?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "सभी को रीसेट करे"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "रीसेट"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "क्या आप निश्चिंत है?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "डाटा अनुपलब्ध"
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "अपडेट पोस्ट"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "रद्द करें"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "क्या आप निश्चिंत है?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "कृपया %s या अधिक वर्ण दर्ज करें"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "खोज कर..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "कोई परिणाम नही मिला।"
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "उफ़! अनुमति नहीं हैं।"
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "मैदान नहीं मिला!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "नया जोड़ें"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "त्रुटि: अमान्य अस्थायी रूप से सत्यापन।"
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "नहीं चुने गए"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "पृष्ठभूमि की अवस्था"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "पृष्ठभूमि दोहराएँ"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "पृष्ठभूमि संलग्न"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "पृष्ठभूमि का आकार"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "पृष्ठभूमि की उत्पत्ति"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "पृष्ठभूमि क्लिप"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "आयात"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "निर्यात ও डाउनलोड"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "गैलरी में जोड़ें"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "गैलरी को संपादित करे"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "साफ़ करें"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "त्रुटि: फ़ील्ड आईडी संघर्ष।"
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "क्या आप निश्चिंत है?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "आप अधिक नहीं जोड़ सकते।"
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "आप अधिक नहीं निकाल सकते।"
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "चिह्न जोड़ें"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "चिह्न हटाएं"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "कड़ी जोडें"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "कड़ी का संपादन करे"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "कड़ी हटायें"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "अक्षांश"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "देशान्तर"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "अपलोड"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "अपलोड"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "सक्रिय करें"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "निष्क्रिय करें"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "त्रुटि: अमान्य कुंजी।"
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "त्रुटि: प्रतिक्रिया वैध JSON प्रतिक्रिया नहीं है।"
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "त्रुटि: अमान्य टर्म आईडी।"
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "त्रुटि: आपके पास यह कार्य करने कि अनुमति नहीं है।"
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "कृपया एक मान्य ईमेल पता दर्ज करें।"
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "कृपया एक सही संख्या डालिये।"
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "यह फील्ड अपेक्षित है।"
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "कृपया एक मान्य यूआरएल दर्ज कीजिए।"
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "शॉर्टकोड जोड़ें"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "एक शोर्ट का चयन करें"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "शॉर्टकोड डालें"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "यहां शोर्टकोड लिखें..."
vendor/codestar-framework/languages/id_ID.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: id_ID\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Galat ketika menyimpan perubahan."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Pengaturan berhasil diimpor."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Pengaturan default dipulihkan."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Pengaturan telah disimpan."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Ada perubahan yang belum disimpan, simpan perubahan Anda!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "perlihatkan semua seting"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Cari..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Simpan"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Menyimpan..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Atur ulang Bagian"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Apakah Anda yakin?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Reset Semua"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Atur ulang"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Apakah Anda yakin ingin mereset semua pengaturan ke nilai asal?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Tidak tersedia tanggal."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "perbarui pos"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Batal"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Apakah Anda yakin?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Silakan masukkan %s karakter atau lebih"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Mencari..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Tak ditemukan hasil apapun."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Ups! Tidak diizinkan."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Bidang tidak ditemukan!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Tambah baru"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Eror: Verifikasi nonce tidak valid."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Tidak terpilih"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Posisi Latar belakang"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Latar belakang berulang"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Lampiran Latar belakang"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Ukuran latar belakang"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "Asal latar belakang"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "Klip latar belakang"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "Impor"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "Ekspor & Unduh"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Tambahkan Galeri"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Edit Galeri"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Kosongkan"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Eror: Konflik ID lapangan."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Apakah Anda yakin?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Anda tidak dapat menambahkan lebih banyak."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Anda tidak dapat menghapus lebih banyak."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "Tambah Ikon"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "Hapus Ikon"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Tambah Tautan"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Edit Tautan"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Buang Tautan"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Garis lintang"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Garis bujur"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Unggah"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Singkirkan"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Diaktifkan"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Dinonaktifkan"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Eror: Kunci tidak sah."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Eror: Berkas JSON tidak sah"
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Eror: ID istilah tidak sah."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Eror: Anda tidak memiliki izin untuk melakukan itu."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Mohon masukan alamat email yang sah."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Masukkan nomor yang valid."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Kolom ini harus diisi."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Silakan masukkan URL yang sah."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Tambahkan Shortcode"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Pilih Shortcode"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Masukkan Shortcode"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Tulis shortcode di sini..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: id_ID\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Galat ketika menyimpan perubahan."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Pengaturan berhasil diimpor."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Pengaturan default dipulihkan."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Pengaturan telah disimpan."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Ada perubahan yang belum disimpan, simpan perubahan Anda!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "perlihatkan semua seting"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Cari..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Simpan"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Menyimpan..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Atur ulang Bagian"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Apakah Anda yakin?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Reset Semua"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Atur ulang"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Apakah Anda yakin ingin mereset semua pengaturan ke nilai asal?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Tidak tersedia tanggal."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "perbarui pos"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Batal"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Apakah Anda yakin?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Silakan masukkan %s karakter atau lebih"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Mencari..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Tak ditemukan hasil apapun."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Ups! Tidak diizinkan."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Bidang tidak ditemukan!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Tambah baru"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Eror: Verifikasi nonce tidak valid."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Tidak terpilih"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Posisi Latar belakang"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Latar belakang berulang"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Lampiran Latar belakang"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Ukuran latar belakang"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "Asal latar belakang"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "Klip latar belakang"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "Impor"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "Ekspor & Unduh"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Tambahkan Galeri"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Edit Galeri"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Kosongkan"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Eror: Konflik ID lapangan."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Apakah Anda yakin?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Anda tidak dapat menambahkan lebih banyak."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Anda tidak dapat menghapus lebih banyak."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "Tambah Ikon"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "Hapus Ikon"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Tambah Tautan"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Edit Tautan"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Buang Tautan"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Garis lintang"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Garis bujur"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Unggah"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Singkirkan"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Diaktifkan"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Dinonaktifkan"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Eror: Kunci tidak sah."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Eror: Berkas JSON tidak sah"
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Eror: ID istilah tidak sah."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Eror: Anda tidak memiliki izin untuk melakukan itu."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Mohon masukan alamat email yang sah."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Masukkan nomor yang valid."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Kolom ini harus diisi."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Silakan masukkan URL yang sah."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Tambahkan Shortcode"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Pilih Shortcode"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Masukkan Shortcode"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Tulis shortcode di sini..."
vendor/codestar-framework/languages/it_IT.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: it_IT\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Errore nel salvataggio delle modifiche."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Impostazioni importate con successo."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Impostazioni predefinite ripristinate."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Impostazioni salvate."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Hai delle modifiche non salvate, salva le tue modifiche!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "mostra tutte le impostazioni"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Cerca..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Salva"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Salvataggio in corso..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Resetta Sezione"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Apakah Anda yakin?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Resetta Tutto"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Reimpostare"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Desideri ripristinare tutte le impostazioni ai valori predefiniti?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Nessun dato disponibile."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "aggiorna articolo"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Annulla"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Apakah Anda yakin?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Inserire %s o più caratteri"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Sto cercando..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Nessun risultato trovato."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Oops! Non permesso."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Campo non trovato!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Aggiungi nuovo"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Errore: Verifica nonce non valida."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Non selezionato"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Posizione dello sfondo"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Ripetizione dello sfondo"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Fisso o scorrevole sfondo"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Dimensione dello sfondo"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "Origine dello sfondo"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "Taglio dello sfondo"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "Importa"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "Esporta & Scarica"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Aggiungi Galleria"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Modifica Galleria"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Pulisci"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Errore: Conflitto ID campo."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Sei sicuro di voler cancellare?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Non puoi aggiungere altro."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Non puoi rimuoverne di più."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "Aggiungi Icona"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "Rimuovi Icona"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Aggiungi Link"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Modifica Link"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Rimuovi Link"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Latitudine"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Longitudine"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Carica"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Rimuovi"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Abilitato"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Disabilitato"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Errore: Chiave non valida."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Errore: La risposta non è una risposta JSON valida."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Errore: ID del termine non valido."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Errore: Non hai i permessi per fare questo."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Inserire un indirizzo email valido."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Inserisci un numero valido."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Questo campo è obbligatorio."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Inserisci un URL valido."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Aggiungi Shortcode"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Seleziona uno shortcode"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Inserisci Shortcode"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Scrivi qui lo shortcode..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: it_IT\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Errore nel salvataggio delle modifiche."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Impostazioni importate con successo."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Impostazioni predefinite ripristinate."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Impostazioni salvate."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Hai delle modifiche non salvate, salva le tue modifiche!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "mostra tutte le impostazioni"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Cerca..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Salva"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Salvataggio in corso..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Resetta Sezione"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Apakah Anda yakin?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Resetta Tutto"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Reimpostare"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Desideri ripristinare tutte le impostazioni ai valori predefiniti?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Nessun dato disponibile."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "aggiorna articolo"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Annulla"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Apakah Anda yakin?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Inserire %s o più caratteri"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Sto cercando..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Nessun risultato trovato."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Oops! Non permesso."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Campo non trovato!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Aggiungi nuovo"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Errore: Verifica nonce non valida."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Non selezionato"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Posizione dello sfondo"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Ripetizione dello sfondo"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Fisso o scorrevole sfondo"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Dimensione dello sfondo"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "Origine dello sfondo"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "Taglio dello sfondo"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "Importa"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "Esporta & Scarica"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Aggiungi Galleria"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Modifica Galleria"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Pulisci"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Errore: Conflitto ID campo."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Sei sicuro di voler cancellare?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Non puoi aggiungere altro."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Non puoi rimuoverne di più."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "Aggiungi Icona"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "Rimuovi Icona"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Aggiungi Link"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Modifica Link"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Rimuovi Link"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Latitudine"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Longitudine"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Carica"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Rimuovi"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Abilitato"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Disabilitato"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Errore: Chiave non valida."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Errore: La risposta non è una risposta JSON valida."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Errore: ID del termine non valido."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Errore: Non hai i permessi per fare questo."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Inserire un indirizzo email valido."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Inserisci un numero valido."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Questo campo è obbligatorio."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Inserisci un URL valido."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Aggiungi Shortcode"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Seleziona uno shortcode"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Inserisci Shortcode"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Scrivi qui lo shortcode..."
vendor/codestar-framework/languages/ja.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: ja\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "変更を保存する際にエラーが発生しました。"
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "設定をインポートしました。"
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "既定の設定が復元されました。"
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "設定を保存しました。"
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "未保存の変更があります、変更を保存する!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "すべての設定を表示"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "検索..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "保存"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "保存中..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "セクションをリセット"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "本当に実行しますか?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "すべてリセット"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "リセット"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "すべての設定を初期値にリセットしても良いですか?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "表示できるデータがありません。"
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "投稿を更新"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "キャンセル"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "本当に実行しますか?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "%s つ以上の文字を入力してください"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "検索中..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "見つかりませんでした。"
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "おっと。許可されていません"
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "フィールドが見つかりません!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "新規追加"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "エラー: 無効なnonce検証."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "非選択"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "背景の位置"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "背景の繰り返し"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "背景スクロール"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "背景のサイズ"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "背景オリジン"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "背景クリップ"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "インポート"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "エクスポート & ダウンロード"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "ギャラリーの追加"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "ギャラリーを編集"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "クリア"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "エラー: フィールドIDが競合しています。"
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "本当に削除しますか?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "これ以上追加することはできません。"
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "これ以上削除することはできません。"
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "アイコンを追加"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "アイコンの削除"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "リンクを追加"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "リンクの編集"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "リンクの削除"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "緯度"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "経度"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "アップロード"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "削除"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "有効"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "無効化済み"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "エラー: 無効なキーです。"
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "エラー: 返答が正しい JSON レスポンスではありません。"
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "エラー: 無効なターム ID。"
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "エラー: この操作を行う権限がありません。"
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "有効なメールアドレスを入力してください。"
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "正しい番号を入力してください。"
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "このフィールドは必須です。"
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "正しい URL を記入してください。"
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "ショートコードの追加"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "ショートコードを選択"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "ショートコードを挿入"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "ショートコードをここに入力..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: ja\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "変更を保存する際にエラーが発生しました。"
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "設定をインポートしました。"
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "既定の設定が復元されました。"
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "設定を保存しました。"
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "未保存の変更があります、変更を保存する!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "すべての設定を表示"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "検索..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "保存"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "保存中..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "セクションをリセット"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "本当に実行しますか?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "すべてリセット"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "リセット"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "すべての設定を初期値にリセットしても良いですか?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "表示できるデータがありません。"
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "投稿を更新"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "キャンセル"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "本当に実行しますか?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "%s つ以上の文字を入力してください"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "検索中..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "見つかりませんでした。"
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "おっと。許可されていません"
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "フィールドが見つかりません!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "新規追加"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "エラー: 無効なnonce検証."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "非選択"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "背景の位置"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "背景の繰り返し"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "背景スクロール"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "背景のサイズ"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "背景オリジン"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "背景クリップ"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "インポート"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "エクスポート & ダウンロード"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "ギャラリーの追加"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "ギャラリーを編集"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "クリア"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "エラー: フィールドIDが競合しています。"
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "本当に削除しますか?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "これ以上追加することはできません。"
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "これ以上削除することはできません。"
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "アイコンを追加"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "アイコンの削除"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "リンクを追加"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "リンクの編集"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "リンクの削除"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "緯度"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "経度"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "アップロード"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "削除"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "有効"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "無効化済み"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "エラー: 無効なキーです。"
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "エラー: 返答が正しい JSON レスポンスではありません。"
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "エラー: 無効なターム ID。"
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "エラー: この操作を行う権限がありません。"
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "有効なメールアドレスを入力してください。"
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "正しい番号を入力してください。"
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "このフィールドは必須です。"
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "正しい URL を記入してください。"
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "ショートコードの追加"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "ショートコードを選択"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "ショートコードを挿入"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "ショートコードをここに入力..."
vendor/codestar-framework/languages/ko_KR.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: ko_KR\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "변경사항을 저장하는데 오류가 발생했습니다."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "설정을 가져 왔습니다."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "기본 옵션은 복원."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "설정을 저장했습니다."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "저장되지 않은 변경사항이 있습니다, 변경사항을 저장합니다!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "모든 설정표시"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "검색..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "저장하기"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "저장중..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "섹션 재설정"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "계속할까요?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "초기화"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "초기화"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "すべての設定を初期値にリセットしても良いですか?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "데이터가 없습니다."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "글 업데이트"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "취소"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "계속할까요?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "%s 이상의 글자를 입력하세요"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "검색중..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "결과가 없습니다."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "이런! 허용되지 않습니다."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "영역을 찾을 수 없음!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "추가하기"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "오류: 잘못된 nonce 확인."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "선택되지 않은"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "배경 포지션"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "배경 반복"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "배경 첨부"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "배경 사이즈"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "배경 기원"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "배경 클립"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "가져오기"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "내보내기 & 다운로드"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "갤러리 추가"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "갤러리 편집"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "지우기"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "오류: 필드 ID 충돌"
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "정말로 삭제하시겠습니까?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "더 추가 할 수 없습니다."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "더 이상 제거 할 수 없습니다."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "아이콘 추가"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "아이콘 제거"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "링크 추가"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "링크 편집"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "링크 삭제"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "위도"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "경도"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "アップロード"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "삭제"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "활성화"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "비활성"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "오류: 잘못된 키"
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "오류: 응답이 유효한 JSON 응답이 아닙니다."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "오류: 유효하지 않은 텀(term) ID."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "오류: 그렇게 할 수 있는 권한이 없습니다."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "유효한 이메일 주소를 입력하세요."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "올바른 번호를 입력해 주세요."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "필수 필드."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "유효한 URL을 입력하세요."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "단축 번호 추가"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "단축 코드 선택"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "단축코드 삽입"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "숏코드를 여기서 쓰기..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: ko_KR\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "변경사항을 저장하는데 오류가 발생했습니다."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "설정을 가져 왔습니다."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "기본 옵션은 복원."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "설정을 저장했습니다."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "저장되지 않은 변경사항이 있습니다, 변경사항을 저장합니다!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "모든 설정표시"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "검색..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "저장하기"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "저장중..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "섹션 재설정"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "계속할까요?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "초기화"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "초기화"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "すべての設定を初期値にリセットしても良いですか?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "데이터가 없습니다."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "글 업데이트"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "취소"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "계속할까요?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "%s 이상의 글자를 입력하세요"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "검색중..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "결과가 없습니다."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "이런! 허용되지 않습니다."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "영역을 찾을 수 없음!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "추가하기"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "오류: 잘못된 nonce 확인."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "선택되지 않은"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "배경 포지션"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "배경 반복"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "배경 첨부"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "배경 사이즈"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "배경 기원"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "배경 클립"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "가져오기"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "내보내기 & 다운로드"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "갤러리 추가"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "갤러리 편집"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "지우기"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "오류: 필드 ID 충돌"
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "정말로 삭제하시겠습니까?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "더 추가 할 수 없습니다."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "더 이상 제거 할 수 없습니다."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "아이콘 추가"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "아이콘 제거"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "링크 추가"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "링크 편집"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "링크 삭제"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "위도"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "경도"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "アップロード"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "삭제"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "활성화"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "비활성"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "오류: 잘못된 키"
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "오류: 응답이 유효한 JSON 응답이 아닙니다."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "오류: 유효하지 않은 텀(term) ID."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "오류: 그렇게 할 수 있는 권한이 없습니다."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "유효한 이메일 주소를 입력하세요."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "올바른 번호를 입력해 주세요."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "필수 필드."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "유효한 URL을 입력하세요."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "단축 번호 추가"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "단축 코드 선택"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "단축코드 삽입"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "숏코드를 여기서 쓰기..."
vendor/codestar-framework/languages/ne_NP.po CHANGED
@@ -1,655 +1,655 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: ne_NP\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "भिन्नताहरु बचत गर्दा त्रुटि भयो ।"
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr ""
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr ""
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "व्यवस्थापन बचत भयो ।"
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "तपाईसँग सुरक्षित नगरिएका परिवर्तनहरू छन्, परिवर्तनहरु सेभ गर्नुहोस!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr ""
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "खोज्नुस..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "बचत गर्नुहोस्"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "संचित गर्दै..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "खण्ड नष्ट गर्नुस"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "के तपाईँ निश्चित हुनुहुन्छ?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "सबै नष्ट गर्नुस"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "रिसेट गर्नुहोस्"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr ""
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr ""
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr ""
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "रद्द गर्नुहोस्"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "के तपाईँ निश्चित हुनुहुन्छ?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "कृपया %s वा बढी क्यारेक्टर प्रविष्ट गर्नुहोस्"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "खोजी हुँदैछ..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "केहि परिणाम भेटिएन ।"
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "उफ्! अनुमति छैन।"
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr ""
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "नयाँ थप्नुहोस्"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr ""
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr ""
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr ""
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr ""
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr ""
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr ""
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr ""
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr ""
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "आयात गर्नुहोस्"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "निर्यात & डाउनलोड"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "ग्यालरी थप्नुहोस्"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "ग्यालरी सम्पादन"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "सबै मेटाउनुहोस्"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr ""
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr ""
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr ""
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr ""
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr ""
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr ""
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "लिंक थप्नुहोस्"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "लिंक सम्पादन गर्नुहोस्"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "लिंक हटाउनुहोस्"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr ""
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr ""
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "अपलोड"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "हटाउनुहोस्"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr ""
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr ""
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "त्रुटि: अमान्य कि।"
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "त्रुटि: यो प्रतिक्रिया मान्य JSON प्रतिक्रिया होइन ।"
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "त्रुटि: अमान्य पद पहिचान ।"
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr ""
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "कृपया मान्य ईमेल ठेगाना हाल्नुहोस् ।"
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr ""
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr ""
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "कृपया मान्य युआरएल राख्नुहोस् ।"
653
-
654
- #~ msgid "Write shortcode here..."
655
- #~ msgstr "शोर्टकोड यहाँ लेख्नुहोस..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: ne_NP\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "भिन्नताहरु बचत गर्दा त्रुटि भयो ।"
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr ""
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr ""
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "व्यवस्थापन बचत भयो ।"
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "तपाईसँग सुरक्षित नगरिएका परिवर्तनहरू छन्, परिवर्तनहरु सेभ गर्नुहोस!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr ""
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "खोज्नुस..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "बचत गर्नुहोस्"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "संचित गर्दै..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "खण्ड नष्ट गर्नुस"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "के तपाईँ निश्चित हुनुहुन्छ?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "सबै नष्ट गर्नुस"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "रिसेट गर्नुहोस्"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr ""
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr ""
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr ""
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "रद्द गर्नुहोस्"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "के तपाईँ निश्चित हुनुहुन्छ?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "कृपया %s वा बढी क्यारेक्टर प्रविष्ट गर्नुहोस्"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "खोजी हुँदैछ..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "केहि परिणाम भेटिएन ।"
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "उफ्! अनुमति छैन।"
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr ""
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "नयाँ थप्नुहोस्"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr ""
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr ""
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr ""
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr ""
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr ""
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr ""
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr ""
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr ""
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "आयात गर्नुहोस्"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "निर्यात & डाउनलोड"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "ग्यालरी थप्नुहोस्"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "ग्यालरी सम्पादन"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "सबै मेटाउनुहोस्"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr ""
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr ""
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr ""
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr ""
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr ""
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr ""
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "लिंक थप्नुहोस्"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "लिंक सम्पादन गर्नुहोस्"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "लिंक हटाउनुहोस्"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr ""
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr ""
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "अपलोड"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "हटाउनुहोस्"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr ""
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr ""
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "त्रुटि: अमान्य कि।"
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "त्रुटि: यो प्रतिक्रिया मान्य JSON प्रतिक्रिया होइन ।"
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "त्रुटि: अमान्य पद पहिचान ।"
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr ""
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "कृपया मान्य ईमेल ठेगाना हाल्नुहोस् ।"
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr ""
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr ""
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "कृपया मान्य युआरएल राख्नुहोस् ।"
653
+
654
+ #~ msgid "Write shortcode here..."
655
+ #~ msgstr "शोर्टकोड यहाँ लेख्नुहोस..."
vendor/codestar-framework/languages/nl_NL.po CHANGED
@@ -1,667 +1,667 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: nl_NL\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Fout tijdens het opslaan van de wijzigingen."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "De instellingen zijn met succes geïmporteerd."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Standaard instellingen hersteld."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Instellingen opgeslagen."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr ""
35
- "Er zijn wijzigingen die je nog niet hebt opgeslagen, de aanpassingen opslaan!"
36
-
37
- #: classes/admin-options.class.php:563
38
- msgid "show all settings"
39
- msgstr "toon alle instellingen"
40
-
41
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
42
- #: fields/map/map.php:23
43
- msgid "Search..."
44
- msgstr "Zoeken..."
45
-
46
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
47
- msgid "Save"
48
- msgstr "Opslaan"
49
-
50
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
51
- msgid "Saving..."
52
- msgstr "Opslaan..."
53
-
54
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
55
- msgid "Reset Section"
56
- msgstr "Reset Sectie"
57
-
58
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
59
- msgid "Are you sure to reset this section options?"
60
- msgstr "Weet je het zeker?"
61
-
62
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
63
- msgid "Reset All"
64
- msgstr "Alles Resetten"
65
-
66
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
67
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
68
- #: fields/backup/backup.php:31
69
- msgid "Reset"
70
- msgstr "Herstellen"
71
-
72
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
73
- msgid "Are you sure you want to reset all settings to default values?"
74
- msgstr ""
75
- "Weet je zeker dat je alle instellingen terug wilt zetten naar de "
76
- "standaardwaarden?"
77
-
78
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
79
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
80
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
81
- #: fields/select/select.php:113 functions/actions.php:41
82
- msgid "No data available."
83
- msgstr "Geen gegevens beschikbaar."
84
-
85
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
86
- msgid "update post"
87
- msgstr "bericht bijwerken"
88
-
89
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
90
- msgid "Cancel"
91
- msgstr "Annuleren"
92
-
93
- #: classes/setup.class.php:529
94
- msgid "Are you sure?"
95
- msgstr "Weet je het zeker?"
96
-
97
- #: classes/setup.class.php:530
98
- msgid "Please enter %s or more characters"
99
- msgstr "Voer %s of meer tekens in"
100
-
101
- #: classes/setup.class.php:531
102
- msgid "Searching..."
103
- msgstr "Bezig met zoeken..."
104
-
105
- #: classes/setup.class.php:532
106
- msgid "No results found."
107
- msgstr "Niets gevonden."
108
-
109
- #: classes/setup.class.php:615
110
- msgid "Oops! Not allowed."
111
- msgstr "Oeps! Niet toegestaan."
112
-
113
- #: classes/setup.class.php:689 classes/setup.class.php:693
114
- msgid "Field not found!"
115
- msgstr "Veld niet gevonden!"
116
-
117
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
118
- msgid "Add New"
119
- msgstr "Nieuw toevoegen"
120
-
121
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
122
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
123
- #: functions/actions.php:170
124
- msgid "Error: Invalid nonce verification."
125
- msgstr "Fout: Ongeldige nonce verificatie."
126
-
127
- #: fields/background/background.php:35 fields/media/media.php:57
128
- msgid "Not selected"
129
- msgstr "Niet geselecteerd"
130
-
131
- #: fields/background/background.php:66 fields/date/date.php:31
132
- msgid "From"
133
- msgstr ""
134
-
135
- #: fields/background/background.php:84 fields/date/date.php:32
136
- msgid "To"
137
- msgstr ""
138
-
139
- #: fields/background/background.php:102
140
- msgid "Direction"
141
- msgstr ""
142
-
143
- #: fields/background/background.php:108
144
- msgid "Gradient Direction"
145
- msgstr ""
146
-
147
- #: fields/background/background.php:109
148
- msgid "&#8659; top to bottom"
149
- msgstr ""
150
-
151
- #: fields/background/background.php:110
152
- msgid "&#8658; left to right"
153
- msgstr ""
154
-
155
- #: fields/background/background.php:111
156
- msgid "&#8664; corner top to right"
157
- msgstr ""
158
-
159
- #: fields/background/background.php:112
160
- msgid "&#8665; corner top to left"
161
- msgstr ""
162
-
163
- #: fields/background/background.php:155
164
- msgid "Background Position"
165
- msgstr "Achtergrond Positie"
166
-
167
- #: fields/background/background.php:156
168
- msgid "Left Top"
169
- msgstr ""
170
-
171
- #: fields/background/background.php:157
172
- msgid "Left Center"
173
- msgstr ""
174
-
175
- #: fields/background/background.php:158
176
- msgid "Left Bottom"
177
- msgstr ""
178
-
179
- #: fields/background/background.php:159
180
- msgid "Center Top"
181
- msgstr ""
182
-
183
- #: fields/background/background.php:160
184
- msgid "Center Center"
185
- msgstr ""
186
-
187
- #: fields/background/background.php:161
188
- msgid "Center Bottom"
189
- msgstr ""
190
-
191
- #: fields/background/background.php:162
192
- msgid "Right Top"
193
- msgstr ""
194
-
195
- #: fields/background/background.php:163
196
- msgid "Right Center"
197
- msgstr ""
198
-
199
- #: fields/background/background.php:164
200
- msgid "Right Bottom"
201
- msgstr ""
202
-
203
- #: fields/background/background.php:178
204
- msgid "Background Repeat"
205
- msgstr "Achtergrond Herhaling"
206
-
207
- #: fields/background/background.php:179
208
- msgid "Repeat"
209
- msgstr ""
210
-
211
- #: fields/background/background.php:180
212
- msgid "No Repeat"
213
- msgstr ""
214
-
215
- #: fields/background/background.php:181
216
- msgid "Repeat Horizontally"
217
- msgstr ""
218
-
219
- #: fields/background/background.php:182
220
- msgid "Repeat Vertically"
221
- msgstr ""
222
-
223
- #: fields/background/background.php:196
224
- msgid "Background Attachment"
225
- msgstr "Achtergrond Bijlage"
226
-
227
- #: fields/background/background.php:197
228
- msgid "Scroll"
229
- msgstr ""
230
-
231
- #: fields/background/background.php:198
232
- msgid "Fixed"
233
- msgstr ""
234
-
235
- #: fields/background/background.php:212
236
- msgid "Background Size"
237
- msgstr "Achtergrond Grootte"
238
-
239
- #: fields/background/background.php:213
240
- msgid "Cover"
241
- msgstr ""
242
-
243
- #: fields/background/background.php:214
244
- msgid "Contain"
245
- msgstr ""
246
-
247
- #: fields/background/background.php:215
248
- msgid "Auto"
249
- msgstr ""
250
-
251
- #: fields/background/background.php:229
252
- msgid "Background Origin"
253
- msgstr "Achtergrond Oorsprong"
254
-
255
- #: fields/background/background.php:230 fields/background/background.php:248
256
- msgid "Padding Box"
257
- msgstr ""
258
-
259
- #: fields/background/background.php:231 fields/background/background.php:247
260
- msgid "Border Box"
261
- msgstr ""
262
-
263
- #: fields/background/background.php:232 fields/background/background.php:249
264
- msgid "Content Box"
265
- msgstr ""
266
-
267
- #: fields/background/background.php:246
268
- msgid "Background Clip"
269
- msgstr "Achtergrond Clip"
270
-
271
- #: fields/background/background.php:263
272
- msgid "Background Blend Mode"
273
- msgstr ""
274
-
275
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
276
- #: fields/typography/typography.php:175
277
- msgid "Normal"
278
- msgstr ""
279
-
280
- #: fields/background/background.php:265
281
- msgid "Multiply"
282
- msgstr ""
283
-
284
- #: fields/background/background.php:266
285
- msgid "Screen"
286
- msgstr ""
287
-
288
- #: fields/background/background.php:267
289
- msgid "Overlay"
290
- msgstr ""
291
-
292
- #: fields/background/background.php:268
293
- msgid "Darken"
294
- msgstr ""
295
-
296
- #: fields/background/background.php:269
297
- msgid "Lighten"
298
- msgstr ""
299
-
300
- #: fields/background/background.php:270
301
- msgid "Color Dodge"
302
- msgstr ""
303
-
304
- #: fields/background/background.php:271
305
- msgid "Saturation"
306
- msgstr ""
307
-
308
- #: fields/background/background.php:272
309
- msgid "Color"
310
- msgstr ""
311
-
312
- #: fields/background/background.php:273
313
- msgid "Luminosity"
314
- msgstr ""
315
-
316
- #: fields/backup/backup.php:26
317
- msgid "Import"
318
- msgstr "Importeren"
319
-
320
- #: fields/backup/backup.php:29
321
- msgid "Export & Download"
322
- msgstr "Exporteren & Downloaden"
323
-
324
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
325
- msgid "top"
326
- msgstr ""
327
-
328
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
329
- msgid "right"
330
- msgstr ""
331
-
332
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
333
- msgid "bottom"
334
- msgstr ""
335
-
336
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
337
- msgid "left"
338
- msgstr ""
339
-
340
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
341
- msgid "all"
342
- msgstr ""
343
-
344
- #: fields/border/border.php:51 fields/typography/typography.php:203
345
- msgid "Solid"
346
- msgstr ""
347
-
348
- #: fields/border/border.php:52 fields/typography/typography.php:206
349
- msgid "Dashed"
350
- msgstr ""
351
-
352
- #: fields/border/border.php:53 fields/typography/typography.php:205
353
- msgid "Dotted"
354
- msgstr ""
355
-
356
- #: fields/border/border.php:54 fields/typography/typography.php:204
357
- msgid "Double"
358
- msgstr ""
359
-
360
- #: fields/border/border.php:55
361
- msgid "Inset"
362
- msgstr ""
363
-
364
- #: fields/border/border.php:56
365
- msgid "Outset"
366
- msgstr ""
367
-
368
- #: fields/border/border.php:57
369
- msgid "Groove"
370
- msgstr ""
371
-
372
- #: fields/border/border.php:58
373
- msgid "ridge"
374
- msgstr ""
375
-
376
- #: fields/border/border.php:59 fields/typography/typography.php:188
377
- #: fields/typography/typography.php:202
378
- msgid "None"
379
- msgstr ""
380
-
381
- #: fields/dimensions/dimensions.php:22
382
- msgid "width"
383
- msgstr ""
384
-
385
- #: fields/dimensions/dimensions.php:23
386
- msgid "height"
387
- msgstr ""
388
-
389
- #: fields/gallery/gallery.php:20
390
- msgid "Add Gallery"
391
- msgstr "Galerij Toevoegen"
392
-
393
- #: fields/gallery/gallery.php:21
394
- msgid "Edit Gallery"
395
- msgstr "Galerij Bewerken"
396
-
397
- #: fields/gallery/gallery.php:22
398
- msgid "Clear"
399
- msgstr "Wissen"
400
-
401
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
402
- msgid "Error: Field ID conflict."
403
- msgstr "Fout: Veld-ID-conflict."
404
-
405
- #: fields/group/group.php:46 fields/group/group.php:87
406
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
407
- msgid "Are you sure to delete this item?"
408
- msgstr "Weet je zeker dat je dit wilt verwijderen?"
409
-
410
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
411
- msgid "You cannot add more."
412
- msgstr "Je kunt niet meer toevoegen."
413
-
414
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
415
- msgid "You cannot remove more."
416
- msgstr "Je kunt niet meer verwijderen."
417
-
418
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
419
- msgid "Add Icon"
420
- msgstr "Icoon Toevoegen"
421
-
422
- #: fields/icon/icon.php:21
423
- msgid "Remove Icon"
424
- msgstr "Icoon Verwijderen"
425
-
426
- #: fields/link/link.php:20
427
- msgid "Add Link"
428
- msgstr "Link Toevoegen"
429
-
430
- #: fields/link/link.php:21
431
- msgid "Edit Link"
432
- msgstr "Link Bewerken"
433
-
434
- #: fields/link/link.php:22
435
- msgid "Remove Link"
436
- msgstr "Link Verwijderen"
437
-
438
- #: fields/link_color/link_color.php:37
439
- msgid "Hover"
440
- msgstr ""
441
-
442
- #: fields/link_color/link_color.php:38
443
- msgid "Active"
444
- msgstr ""
445
-
446
- #: fields/link_color/link_color.php:39
447
- msgid "Visited"
448
- msgstr ""
449
-
450
- #: fields/link_color/link_color.php:40
451
- msgid "Focus"
452
- msgstr ""
453
-
454
- #: fields/map/map.php:24
455
- msgid "Latitude"
456
- msgstr "Breedtegraad"
457
-
458
- #: fields/map/map.php:25
459
- msgid "Longitude"
460
- msgstr "Lengtegraad"
461
-
462
- #: fields/media/media.php:23 fields/upload/upload.php:21
463
- msgid "Upload"
464
- msgstr "Uploaden"
465
-
466
- #: fields/media/media.php:24 fields/upload/upload.php:22
467
- msgid "Remove"
468
- msgstr "Verwijderen"
469
-
470
- #: fields/sorter/sorter.php:21
471
- msgid "Enabled"
472
- msgstr "Geactiveerd"
473
-
474
- #: fields/sorter/sorter.php:22
475
- msgid "Disabled"
476
- msgstr "Uitgeschakeld"
477
-
478
- #: fields/switcher/switcher.php:20
479
- msgid "On"
480
- msgstr ""
481
-
482
- #: fields/switcher/switcher.php:21
483
- msgid "Off"
484
- msgstr ""
485
-
486
- #: fields/typography/typography.php:85
487
- msgid "Font Family"
488
- msgstr ""
489
-
490
- #: fields/typography/typography.php:86
491
- msgid "Select a font"
492
- msgstr ""
493
-
494
- #: fields/typography/typography.php:94
495
- msgid "Backup Font Family"
496
- msgstr ""
497
-
498
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
499
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
500
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
501
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
502
- msgid "Default"
503
- msgstr ""
504
-
505
- #: fields/typography/typography.php:119
506
- msgid "Font Style"
507
- msgstr ""
508
-
509
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
510
- msgid "Load Extra Styles"
511
- msgstr ""
512
-
513
- #: fields/typography/typography.php:147
514
- msgid "Subset"
515
- msgstr ""
516
-
517
- #: fields/typography/typography.php:157
518
- msgid "Text Align"
519
- msgstr ""
520
-
521
- #: fields/typography/typography.php:159
522
- msgid "Inherit"
523
- msgstr ""
524
-
525
- #: fields/typography/typography.php:160
526
- msgid "Left"
527
- msgstr ""
528
-
529
- #: fields/typography/typography.php:161
530
- msgid "Center"
531
- msgstr ""
532
-
533
- #: fields/typography/typography.php:162
534
- msgid "Right"
535
- msgstr ""
536
-
537
- #: fields/typography/typography.php:163
538
- msgid "Justify"
539
- msgstr ""
540
-
541
- #: fields/typography/typography.php:164
542
- msgid "Initial"
543
- msgstr ""
544
-
545
- #: fields/typography/typography.php:173
546
- msgid "Font Variant"
547
- msgstr ""
548
-
549
- #: fields/typography/typography.php:176
550
- msgid "Small Caps"
551
- msgstr ""
552
-
553
- #: fields/typography/typography.php:177
554
- msgid "All Small Caps"
555
- msgstr ""
556
-
557
- #: fields/typography/typography.php:186
558
- msgid "Text Transform"
559
- msgstr ""
560
-
561
- #: fields/typography/typography.php:189
562
- msgid "Capitalize"
563
- msgstr ""
564
-
565
- #: fields/typography/typography.php:190
566
- msgid "Uppercase"
567
- msgstr ""
568
-
569
- #: fields/typography/typography.php:191
570
- msgid "Lowercase"
571
- msgstr ""
572
-
573
- #: fields/typography/typography.php:200
574
- msgid "Text Decoration"
575
- msgstr ""
576
-
577
- #: fields/typography/typography.php:207
578
- msgid "Wavy"
579
- msgstr ""
580
-
581
- #: fields/typography/typography.php:208
582
- msgid "Overline"
583
- msgstr ""
584
-
585
- #: fields/typography/typography.php:209
586
- msgid "Line-through"
587
- msgstr ""
588
-
589
- #: fields/typography/typography.php:222
590
- msgid "Font Size"
591
- msgstr ""
592
-
593
- #: fields/typography/typography.php:234
594
- msgid "Line Height"
595
- msgstr ""
596
-
597
- #: fields/typography/typography.php:246
598
- msgid "Letter Spacing"
599
- msgstr ""
600
-
601
- #: fields/typography/typography.php:258
602
- msgid "Word Spacing"
603
- msgstr ""
604
-
605
- #: fields/typography/typography.php:273
606
- msgid "Font Color"
607
- msgstr ""
608
-
609
- #: fields/typography/typography.php:284
610
- msgid "Custom Style"
611
- msgstr ""
612
-
613
- #: fields/typography/typography.php:351
614
- msgid "Custom Web Fonts"
615
- msgstr ""
616
-
617
- #: fields/typography/typography.php:357
618
- msgid "Safe Web Fonts"
619
- msgstr ""
620
-
621
- #: fields/typography/typography.php:377
622
- msgid "Google Web Fonts"
623
- msgstr ""
624
-
625
- #: functions/actions.php:72 functions/actions.php:110
626
- msgid "Error: Invalid key."
627
- msgstr "Fout: Ongeldige sleutel."
628
-
629
- #: functions/actions.php:114
630
- msgid "Error: The response is not a valid JSON response."
631
- msgstr "Fout: De reactie is geen geldige JSON-reactie."
632
-
633
- #: functions/actions.php:174
634
- msgid "Error: Invalid term ID."
635
- msgstr "Fout: Ongeldig term-ID."
636
-
637
- #: functions/actions.php:180
638
- msgid "Error: You do not have permission to do that."
639
- msgstr "Fout: Je hebt onvoldoende rechten om dit uit te voeren."
640
-
641
- #: functions/validate.php:14 functions/validate.php:86
642
- msgid "Please enter a valid email address."
643
- msgstr "Geef een geldig e-mailadres op."
644
-
645
- #: functions/validate.php:32 functions/validate.php:106
646
- msgid "Please enter a valid number."
647
- msgstr "Vul een geldig nummer in."
648
-
649
- #: functions/validate.php:50 functions/validate.php:126
650
- msgid "This field is required."
651
- msgstr "Dit veld is verplicht."
652
-
653
- #: functions/validate.php:68 functions/validate.php:146
654
- msgid "Please enter a valid URL."
655
- msgstr "Voer een geldige URL in."
656
-
657
- #~ msgid "Add Shortcode"
658
- #~ msgstr "Shortcode Toevoegen"
659
-
660
- #~ msgid "Select a shortcode"
661
- #~ msgstr "Selecteer een shortcode"
662
-
663
- #~ msgid "Insert Shortcode"
664
- #~ msgstr "Shortcode Invoegen"
665
-
666
- #~ msgid "Write shortcode here..."
667
- #~ msgstr "Hier een shortcode schrijven..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: nl_NL\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Fout tijdens het opslaan van de wijzigingen."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "De instellingen zijn met succes geïmporteerd."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Standaard instellingen hersteld."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Instellingen opgeslagen."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr ""
35
+ "Er zijn wijzigingen die je nog niet hebt opgeslagen, de aanpassingen opslaan!"
36
+
37
+ #: classes/admin-options.class.php:563
38
+ msgid "show all settings"
39
+ msgstr "toon alle instellingen"
40
+
41
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
42
+ #: fields/map/map.php:23
43
+ msgid "Search..."
44
+ msgstr "Zoeken..."
45
+
46
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
47
+ msgid "Save"
48
+ msgstr "Opslaan"
49
+
50
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
51
+ msgid "Saving..."
52
+ msgstr "Opslaan..."
53
+
54
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
55
+ msgid "Reset Section"
56
+ msgstr "Reset Sectie"
57
+
58
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
59
+ msgid "Are you sure to reset this section options?"
60
+ msgstr "Weet je het zeker?"
61
+
62
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
63
+ msgid "Reset All"
64
+ msgstr "Alles Resetten"
65
+
66
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
67
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
68
+ #: fields/backup/backup.php:31
69
+ msgid "Reset"
70
+ msgstr "Herstellen"
71
+
72
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
73
+ msgid "Are you sure you want to reset all settings to default values?"
74
+ msgstr ""
75
+ "Weet je zeker dat je alle instellingen terug wilt zetten naar de "
76
+ "standaardwaarden?"
77
+
78
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
79
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
80
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
81
+ #: fields/select/select.php:113 functions/actions.php:41
82
+ msgid "No data available."
83
+ msgstr "Geen gegevens beschikbaar."
84
+
85
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
86
+ msgid "update post"
87
+ msgstr "bericht bijwerken"
88
+
89
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
90
+ msgid "Cancel"
91
+ msgstr "Annuleren"
92
+
93
+ #: classes/setup.class.php:529
94
+ msgid "Are you sure?"
95
+ msgstr "Weet je het zeker?"
96
+
97
+ #: classes/setup.class.php:530
98
+ msgid "Please enter %s or more characters"
99
+ msgstr "Voer %s of meer tekens in"
100
+
101
+ #: classes/setup.class.php:531
102
+ msgid "Searching..."
103
+ msgstr "Bezig met zoeken..."
104
+
105
+ #: classes/setup.class.php:532
106
+ msgid "No results found."
107
+ msgstr "Niets gevonden."
108
+
109
+ #: classes/setup.class.php:615
110
+ msgid "Oops! Not allowed."
111
+ msgstr "Oeps! Niet toegestaan."
112
+
113
+ #: classes/setup.class.php:689 classes/setup.class.php:693
114
+ msgid "Field not found!"
115
+ msgstr "Veld niet gevonden!"
116
+
117
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
118
+ msgid "Add New"
119
+ msgstr "Nieuw toevoegen"
120
+
121
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
122
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
123
+ #: functions/actions.php:170
124
+ msgid "Error: Invalid nonce verification."
125
+ msgstr "Fout: Ongeldige nonce verificatie."
126
+
127
+ #: fields/background/background.php:35 fields/media/media.php:57
128
+ msgid "Not selected"
129
+ msgstr "Niet geselecteerd"
130
+
131
+ #: fields/background/background.php:66 fields/date/date.php:31
132
+ msgid "From"
133
+ msgstr ""
134
+
135
+ #: fields/background/background.php:84 fields/date/date.php:32
136
+ msgid "To"
137
+ msgstr ""
138
+
139
+ #: fields/background/background.php:102
140
+ msgid "Direction"
141
+ msgstr ""
142
+
143
+ #: fields/background/background.php:108
144
+ msgid "Gradient Direction"
145
+ msgstr ""
146
+
147
+ #: fields/background/background.php:109
148
+ msgid "&#8659; top to bottom"
149
+ msgstr ""
150
+
151
+ #: fields/background/background.php:110
152
+ msgid "&#8658; left to right"
153
+ msgstr ""
154
+
155
+ #: fields/background/background.php:111
156
+ msgid "&#8664; corner top to right"
157
+ msgstr ""
158
+
159
+ #: fields/background/background.php:112
160
+ msgid "&#8665; corner top to left"
161
+ msgstr ""
162
+
163
+ #: fields/background/background.php:155
164
+ msgid "Background Position"
165
+ msgstr "Achtergrond Positie"
166
+
167
+ #: fields/background/background.php:156
168
+ msgid "Left Top"
169
+ msgstr ""
170
+
171
+ #: fields/background/background.php:157
172
+ msgid "Left Center"
173
+ msgstr ""
174
+
175
+ #: fields/background/background.php:158
176
+ msgid "Left Bottom"
177
+ msgstr ""
178
+
179
+ #: fields/background/background.php:159
180
+ msgid "Center Top"
181
+ msgstr ""
182
+
183
+ #: fields/background/background.php:160
184
+ msgid "Center Center"
185
+ msgstr ""
186
+
187
+ #: fields/background/background.php:161
188
+ msgid "Center Bottom"
189
+ msgstr ""
190
+
191
+ #: fields/background/background.php:162
192
+ msgid "Right Top"
193
+ msgstr ""
194
+
195
+ #: fields/background/background.php:163
196
+ msgid "Right Center"
197
+ msgstr ""
198
+
199
+ #: fields/background/background.php:164
200
+ msgid "Right Bottom"
201
+ msgstr ""
202
+
203
+ #: fields/background/background.php:178
204
+ msgid "Background Repeat"
205
+ msgstr "Achtergrond Herhaling"
206
+
207
+ #: fields/background/background.php:179
208
+ msgid "Repeat"
209
+ msgstr ""
210
+
211
+ #: fields/background/background.php:180
212
+ msgid "No Repeat"
213
+ msgstr ""
214
+
215
+ #: fields/background/background.php:181
216
+ msgid "Repeat Horizontally"
217
+ msgstr ""
218
+
219
+ #: fields/background/background.php:182
220
+ msgid "Repeat Vertically"
221
+ msgstr ""
222
+
223
+ #: fields/background/background.php:196
224
+ msgid "Background Attachment"
225
+ msgstr "Achtergrond Bijlage"
226
+
227
+ #: fields/background/background.php:197
228
+ msgid "Scroll"
229
+ msgstr ""
230
+
231
+ #: fields/background/background.php:198
232
+ msgid "Fixed"
233
+ msgstr ""
234
+
235
+ #: fields/background/background.php:212
236
+ msgid "Background Size"
237
+ msgstr "Achtergrond Grootte"
238
+
239
+ #: fields/background/background.php:213
240
+ msgid "Cover"
241
+ msgstr ""
242
+
243
+ #: fields/background/background.php:214
244
+ msgid "Contain"
245
+ msgstr ""
246
+
247
+ #: fields/background/background.php:215
248
+ msgid "Auto"
249
+ msgstr ""
250
+
251
+ #: fields/background/background.php:229
252
+ msgid "Background Origin"
253
+ msgstr "Achtergrond Oorsprong"
254
+
255
+ #: fields/background/background.php:230 fields/background/background.php:248
256
+ msgid "Padding Box"
257
+ msgstr ""
258
+
259
+ #: fields/background/background.php:231 fields/background/background.php:247
260
+ msgid "Border Box"
261
+ msgstr ""
262
+
263
+ #: fields/background/background.php:232 fields/background/background.php:249
264
+ msgid "Content Box"
265
+ msgstr ""
266
+
267
+ #: fields/background/background.php:246
268
+ msgid "Background Clip"
269
+ msgstr "Achtergrond Clip"
270
+
271
+ #: fields/background/background.php:263
272
+ msgid "Background Blend Mode"
273
+ msgstr ""
274
+
275
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
276
+ #: fields/typography/typography.php:175
277
+ msgid "Normal"
278
+ msgstr ""
279
+
280
+ #: fields/background/background.php:265
281
+ msgid "Multiply"
282
+ msgstr ""
283
+
284
+ #: fields/background/background.php:266
285
+ msgid "Screen"
286
+ msgstr ""
287
+
288
+ #: fields/background/background.php:267
289
+ msgid "Overlay"
290
+ msgstr ""
291
+
292
+ #: fields/background/background.php:268
293
+ msgid "Darken"
294
+ msgstr ""
295
+
296
+ #: fields/background/background.php:269
297
+ msgid "Lighten"
298
+ msgstr ""
299
+
300
+ #: fields/background/background.php:270
301
+ msgid "Color Dodge"
302
+ msgstr ""
303
+
304
+ #: fields/background/background.php:271
305
+ msgid "Saturation"
306
+ msgstr ""
307
+
308
+ #: fields/background/background.php:272
309
+ msgid "Color"
310
+ msgstr ""
311
+
312
+ #: fields/background/background.php:273
313
+ msgid "Luminosity"
314
+ msgstr ""
315
+
316
+ #: fields/backup/backup.php:26
317
+ msgid "Import"
318
+ msgstr "Importeren"
319
+
320
+ #: fields/backup/backup.php:29
321
+ msgid "Export & Download"
322
+ msgstr "Exporteren & Downloaden"
323
+
324
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
325
+ msgid "top"
326
+ msgstr ""
327
+
328
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
329
+ msgid "right"
330
+ msgstr ""
331
+
332
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
333
+ msgid "bottom"
334
+ msgstr ""
335
+
336
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
337
+ msgid "left"
338
+ msgstr ""
339
+
340
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
341
+ msgid "all"
342
+ msgstr ""
343
+
344
+ #: fields/border/border.php:51 fields/typography/typography.php:203
345
+ msgid "Solid"
346
+ msgstr ""
347
+
348
+ #: fields/border/border.php:52 fields/typography/typography.php:206
349
+ msgid "Dashed"
350
+ msgstr ""
351
+
352
+ #: fields/border/border.php:53 fields/typography/typography.php:205
353
+ msgid "Dotted"
354
+ msgstr ""
355
+
356
+ #: fields/border/border.php:54 fields/typography/typography.php:204
357
+ msgid "Double"
358
+ msgstr ""
359
+
360
+ #: fields/border/border.php:55
361
+ msgid "Inset"
362
+ msgstr ""
363
+
364
+ #: fields/border/border.php:56
365
+ msgid "Outset"
366
+ msgstr ""
367
+
368
+ #: fields/border/border.php:57
369
+ msgid "Groove"
370
+ msgstr ""
371
+
372
+ #: fields/border/border.php:58
373
+ msgid "ridge"
374
+ msgstr ""
375
+
376
+ #: fields/border/border.php:59 fields/typography/typography.php:188
377
+ #: fields/typography/typography.php:202
378
+ msgid "None"
379
+ msgstr ""
380
+
381
+ #: fields/dimensions/dimensions.php:22
382
+ msgid "width"
383
+ msgstr ""
384
+
385
+ #: fields/dimensions/dimensions.php:23
386
+ msgid "height"
387
+ msgstr ""
388
+
389
+ #: fields/gallery/gallery.php:20
390
+ msgid "Add Gallery"
391
+ msgstr "Galerij Toevoegen"
392
+
393
+ #: fields/gallery/gallery.php:21
394
+ msgid "Edit Gallery"
395
+ msgstr "Galerij Bewerken"
396
+
397
+ #: fields/gallery/gallery.php:22
398
+ msgid "Clear"
399
+ msgstr "Wissen"
400
+
401
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
402
+ msgid "Error: Field ID conflict."
403
+ msgstr "Fout: Veld-ID-conflict."
404
+
405
+ #: fields/group/group.php:46 fields/group/group.php:87
406
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
407
+ msgid "Are you sure to delete this item?"
408
+ msgstr "Weet je zeker dat je dit wilt verwijderen?"
409
+
410
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
411
+ msgid "You cannot add more."
412
+ msgstr "Je kunt niet meer toevoegen."
413
+
414
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
415
+ msgid "You cannot remove more."
416
+ msgstr "Je kunt niet meer verwijderen."
417
+
418
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
419
+ msgid "Add Icon"
420
+ msgstr "Icoon Toevoegen"
421
+
422
+ #: fields/icon/icon.php:21
423
+ msgid "Remove Icon"
424
+ msgstr "Icoon Verwijderen"
425
+
426
+ #: fields/link/link.php:20
427
+ msgid "Add Link"
428
+ msgstr "Link Toevoegen"
429
+
430
+ #: fields/link/link.php:21
431
+ msgid "Edit Link"
432
+ msgstr "Link Bewerken"
433
+
434
+ #: fields/link/link.php:22
435
+ msgid "Remove Link"
436
+ msgstr "Link Verwijderen"
437
+
438
+ #: fields/link_color/link_color.php:37
439
+ msgid "Hover"
440
+ msgstr ""
441
+
442
+ #: fields/link_color/link_color.php:38
443
+ msgid "Active"
444
+ msgstr ""
445
+
446
+ #: fields/link_color/link_color.php:39
447
+ msgid "Visited"
448
+ msgstr ""
449
+
450
+ #: fields/link_color/link_color.php:40
451
+ msgid "Focus"
452
+ msgstr ""
453
+
454
+ #: fields/map/map.php:24
455
+ msgid "Latitude"
456
+ msgstr "Breedtegraad"
457
+
458
+ #: fields/map/map.php:25
459
+ msgid "Longitude"
460
+ msgstr "Lengtegraad"
461
+
462
+ #: fields/media/media.php:23 fields/upload/upload.php:21
463
+ msgid "Upload"
464
+ msgstr "Uploaden"
465
+
466
+ #: fields/media/media.php:24 fields/upload/upload.php:22
467
+ msgid "Remove"
468
+ msgstr "Verwijderen"
469
+
470
+ #: fields/sorter/sorter.php:21
471
+ msgid "Enabled"
472
+ msgstr "Geactiveerd"
473
+
474
+ #: fields/sorter/sorter.php:22
475
+ msgid "Disabled"
476
+ msgstr "Uitgeschakeld"
477
+
478
+ #: fields/switcher/switcher.php:20
479
+ msgid "On"
480
+ msgstr ""
481
+
482
+ #: fields/switcher/switcher.php:21
483
+ msgid "Off"
484
+ msgstr ""
485
+
486
+ #: fields/typography/typography.php:85
487
+ msgid "Font Family"
488
+ msgstr ""
489
+
490
+ #: fields/typography/typography.php:86
491
+ msgid "Select a font"
492
+ msgstr ""
493
+
494
+ #: fields/typography/typography.php:94
495
+ msgid "Backup Font Family"
496
+ msgstr ""
497
+
498
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
499
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
500
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
501
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
502
+ msgid "Default"
503
+ msgstr ""
504
+
505
+ #: fields/typography/typography.php:119
506
+ msgid "Font Style"
507
+ msgstr ""
508
+
509
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
510
+ msgid "Load Extra Styles"
511
+ msgstr ""
512
+
513
+ #: fields/typography/typography.php:147
514
+ msgid "Subset"
515
+ msgstr ""
516
+
517
+ #: fields/typography/typography.php:157
518
+ msgid "Text Align"
519
+ msgstr ""
520
+
521
+ #: fields/typography/typography.php:159
522
+ msgid "Inherit"
523
+ msgstr ""
524
+
525
+ #: fields/typography/typography.php:160
526
+ msgid "Left"
527
+ msgstr ""
528
+
529
+ #: fields/typography/typography.php:161
530
+ msgid "Center"
531
+ msgstr ""
532
+
533
+ #: fields/typography/typography.php:162
534
+ msgid "Right"
535
+ msgstr ""
536
+
537
+ #: fields/typography/typography.php:163
538
+ msgid "Justify"
539
+ msgstr ""
540
+
541
+ #: fields/typography/typography.php:164
542
+ msgid "Initial"
543
+ msgstr ""
544
+
545
+ #: fields/typography/typography.php:173
546
+ msgid "Font Variant"
547
+ msgstr ""
548
+
549
+ #: fields/typography/typography.php:176
550
+ msgid "Small Caps"
551
+ msgstr ""
552
+
553
+ #: fields/typography/typography.php:177
554
+ msgid "All Small Caps"
555
+ msgstr ""
556
+
557
+ #: fields/typography/typography.php:186
558
+ msgid "Text Transform"
559
+ msgstr ""
560
+
561
+ #: fields/typography/typography.php:189
562
+ msgid "Capitalize"
563
+ msgstr ""
564
+
565
+ #: fields/typography/typography.php:190
566
+ msgid "Uppercase"
567
+ msgstr ""
568
+
569
+ #: fields/typography/typography.php:191
570
+ msgid "Lowercase"
571
+ msgstr ""
572
+
573
+ #: fields/typography/typography.php:200
574
+ msgid "Text Decoration"
575
+ msgstr ""
576
+
577
+ #: fields/typography/typography.php:207
578
+ msgid "Wavy"
579
+ msgstr ""
580
+
581
+ #: fields/typography/typography.php:208
582
+ msgid "Overline"
583
+ msgstr ""
584
+
585
+ #: fields/typography/typography.php:209
586
+ msgid "Line-through"
587
+ msgstr ""
588
+
589
+ #: fields/typography/typography.php:222
590
+ msgid "Font Size"
591
+ msgstr ""
592
+
593
+ #: fields/typography/typography.php:234
594
+ msgid "Line Height"
595
+ msgstr ""
596
+
597
+ #: fields/typography/typography.php:246
598
+ msgid "Letter Spacing"
599
+ msgstr ""
600
+
601
+ #: fields/typography/typography.php:258
602
+ msgid "Word Spacing"
603
+ msgstr ""
604
+
605
+ #: fields/typography/typography.php:273
606
+ msgid "Font Color"
607
+ msgstr ""
608
+
609
+ #: fields/typography/typography.php:284
610
+ msgid "Custom Style"
611
+ msgstr ""
612
+
613
+ #: fields/typography/typography.php:351
614
+ msgid "Custom Web Fonts"
615
+ msgstr ""
616
+
617
+ #: fields/typography/typography.php:357
618
+ msgid "Safe Web Fonts"
619
+ msgstr ""
620
+
621
+ #: fields/typography/typography.php:377
622
+ msgid "Google Web Fonts"
623
+ msgstr ""
624
+
625
+ #: functions/actions.php:72 functions/actions.php:110
626
+ msgid "Error: Invalid key."
627
+ msgstr "Fout: Ongeldige sleutel."
628
+
629
+ #: functions/actions.php:114
630
+ msgid "Error: The response is not a valid JSON response."
631
+ msgstr "Fout: De reactie is geen geldige JSON-reactie."
632
+
633
+ #: functions/actions.php:174
634
+ msgid "Error: Invalid term ID."
635
+ msgstr "Fout: Ongeldig term-ID."
636
+
637
+ #: functions/actions.php:180
638
+ msgid "Error: You do not have permission to do that."
639
+ msgstr "Fout: Je hebt onvoldoende rechten om dit uit te voeren."
640
+
641
+ #: functions/validate.php:14 functions/validate.php:86
642
+ msgid "Please enter a valid email address."
643
+ msgstr "Geef een geldig e-mailadres op."
644
+
645
+ #: functions/validate.php:32 functions/validate.php:106
646
+ msgid "Please enter a valid number."
647
+ msgstr "Vul een geldig nummer in."
648
+
649
+ #: functions/validate.php:50 functions/validate.php:126
650
+ msgid "This field is required."
651
+ msgstr "Dit veld is verplicht."
652
+
653
+ #: functions/validate.php:68 functions/validate.php:146
654
+ msgid "Please enter a valid URL."
655
+ msgstr "Voer een geldige URL in."
656
+
657
+ #~ msgid "Add Shortcode"
658
+ #~ msgstr "Shortcode Toevoegen"
659
+
660
+ #~ msgid "Select a shortcode"
661
+ #~ msgstr "Selecteer een shortcode"
662
+
663
+ #~ msgid "Insert Shortcode"
664
+ #~ msgstr "Shortcode Invoegen"
665
+
666
+ #~ msgid "Write shortcode here..."
667
+ #~ msgstr "Hier een shortcode schrijven..."
vendor/codestar-framework/languages/pl_PL.po CHANGED
@@ -1,666 +1,666 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: pl_PL\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Błąd zapisu zmian."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Ustawienia zostały zaimportowane."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Domyślne ustawienia przywrócone."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Ustawienia zostały zapisane."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Zmiany nie zostały zapisane, zapisz zmiany!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "pokaż wszystkie ustawienia"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Szukaj..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Zapisz"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Zapisywanie..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Resetuj Sekcję"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Czy na pewno?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Resetuj Wszystko"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Resetuj"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr ""
74
- "Jesteś pewny, że chcesz przywrócić wszystkie ustawienia do domyślnych "
75
- "wartości?"
76
-
77
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
78
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
79
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
80
- #: fields/select/select.php:113 functions/actions.php:41
81
- msgid "No data available."
82
- msgstr "Brak dostępnych danych."
83
-
84
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
85
- msgid "update post"
86
- msgstr "aktualizacja postu"
87
-
88
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
89
- msgid "Cancel"
90
- msgstr "Anuluj"
91
-
92
- #: classes/setup.class.php:529
93
- msgid "Are you sure?"
94
- msgstr "Czy na pewno?"
95
-
96
- #: classes/setup.class.php:530
97
- msgid "Please enter %s or more characters"
98
- msgstr "Wpisz %s lub więcej znaków"
99
-
100
- #: classes/setup.class.php:531
101
- msgid "Searching..."
102
- msgstr "Szukam..."
103
-
104
- #: classes/setup.class.php:532
105
- msgid "No results found."
106
- msgstr "Brak wyników."
107
-
108
- #: classes/setup.class.php:615
109
- msgid "Oops! Not allowed."
110
- msgstr "Ups! Nie dozwolony."
111
-
112
- #: classes/setup.class.php:689 classes/setup.class.php:693
113
- msgid "Field not found!"
114
- msgstr "Nie znaleziono pola!"
115
-
116
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
117
- msgid "Add New"
118
- msgstr "Dodaj nowy"
119
-
120
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
121
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
122
- #: functions/actions.php:170
123
- msgid "Error: Invalid nonce verification."
124
- msgstr "Błąd: Nieprawidłowa weryfikacja nonce."
125
-
126
- #: fields/background/background.php:35 fields/media/media.php:57
127
- msgid "Not selected"
128
- msgstr "Nie wybrane"
129
-
130
- #: fields/background/background.php:66 fields/date/date.php:31
131
- msgid "From"
132
- msgstr ""
133
-
134
- #: fields/background/background.php:84 fields/date/date.php:32
135
- msgid "To"
136
- msgstr ""
137
-
138
- #: fields/background/background.php:102
139
- msgid "Direction"
140
- msgstr ""
141
-
142
- #: fields/background/background.php:108
143
- msgid "Gradient Direction"
144
- msgstr ""
145
-
146
- #: fields/background/background.php:109
147
- msgid "&#8659; top to bottom"
148
- msgstr ""
149
-
150
- #: fields/background/background.php:110
151
- msgid "&#8658; left to right"
152
- msgstr ""
153
-
154
- #: fields/background/background.php:111
155
- msgid "&#8664; corner top to right"
156
- msgstr ""
157
-
158
- #: fields/background/background.php:112
159
- msgid "&#8665; corner top to left"
160
- msgstr ""
161
-
162
- #: fields/background/background.php:155
163
- msgid "Background Position"
164
- msgstr "Pozycja Tła"
165
-
166
- #: fields/background/background.php:156
167
- msgid "Left Top"
168
- msgstr ""
169
-
170
- #: fields/background/background.php:157
171
- msgid "Left Center"
172
- msgstr ""
173
-
174
- #: fields/background/background.php:158
175
- msgid "Left Bottom"
176
- msgstr ""
177
-
178
- #: fields/background/background.php:159
179
- msgid "Center Top"
180
- msgstr ""
181
-
182
- #: fields/background/background.php:160
183
- msgid "Center Center"
184
- msgstr ""
185
-
186
- #: fields/background/background.php:161
187
- msgid "Center Bottom"
188
- msgstr ""
189
-
190
- #: fields/background/background.php:162
191
- msgid "Right Top"
192
- msgstr ""
193
-
194
- #: fields/background/background.php:163
195
- msgid "Right Center"
196
- msgstr ""
197
-
198
- #: fields/background/background.php:164
199
- msgid "Right Bottom"
200
- msgstr ""
201
-
202
- #: fields/background/background.php:178
203
- msgid "Background Repeat"
204
- msgstr "Powtarzanie Tła"
205
-
206
- #: fields/background/background.php:179
207
- msgid "Repeat"
208
- msgstr ""
209
-
210
- #: fields/background/background.php:180
211
- msgid "No Repeat"
212
- msgstr ""
213
-
214
- #: fields/background/background.php:181
215
- msgid "Repeat Horizontally"
216
- msgstr ""
217
-
218
- #: fields/background/background.php:182
219
- msgid "Repeat Vertically"
220
- msgstr ""
221
-
222
- #: fields/background/background.php:196
223
- msgid "Background Attachment"
224
- msgstr "Zaczepienie Tła"
225
-
226
- #: fields/background/background.php:197
227
- msgid "Scroll"
228
- msgstr ""
229
-
230
- #: fields/background/background.php:198
231
- msgid "Fixed"
232
- msgstr ""
233
-
234
- #: fields/background/background.php:212
235
- msgid "Background Size"
236
- msgstr "Rozmiar Tła"
237
-
238
- #: fields/background/background.php:213
239
- msgid "Cover"
240
- msgstr ""
241
-
242
- #: fields/background/background.php:214
243
- msgid "Contain"
244
- msgstr ""
245
-
246
- #: fields/background/background.php:215
247
- msgid "Auto"
248
- msgstr ""
249
-
250
- #: fields/background/background.php:229
251
- msgid "Background Origin"
252
- msgstr "Początek Tła"
253
-
254
- #: fields/background/background.php:230 fields/background/background.php:248
255
- msgid "Padding Box"
256
- msgstr ""
257
-
258
- #: fields/background/background.php:231 fields/background/background.php:247
259
- msgid "Border Box"
260
- msgstr ""
261
-
262
- #: fields/background/background.php:232 fields/background/background.php:249
263
- msgid "Content Box"
264
- msgstr ""
265
-
266
- #: fields/background/background.php:246
267
- msgid "Background Clip"
268
- msgstr "Obcięcie Tła"
269
-
270
- #: fields/background/background.php:263
271
- msgid "Background Blend Mode"
272
- msgstr ""
273
-
274
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
275
- #: fields/typography/typography.php:175
276
- msgid "Normal"
277
- msgstr ""
278
-
279
- #: fields/background/background.php:265
280
- msgid "Multiply"
281
- msgstr ""
282
-
283
- #: fields/background/background.php:266
284
- msgid "Screen"
285
- msgstr ""
286
-
287
- #: fields/background/background.php:267
288
- msgid "Overlay"
289
- msgstr ""
290
-
291
- #: fields/background/background.php:268
292
- msgid "Darken"
293
- msgstr ""
294
-
295
- #: fields/background/background.php:269
296
- msgid "Lighten"
297
- msgstr ""
298
-
299
- #: fields/background/background.php:270
300
- msgid "Color Dodge"
301
- msgstr ""
302
-
303
- #: fields/background/background.php:271
304
- msgid "Saturation"
305
- msgstr ""
306
-
307
- #: fields/background/background.php:272
308
- msgid "Color"
309
- msgstr ""
310
-
311
- #: fields/background/background.php:273
312
- msgid "Luminosity"
313
- msgstr ""
314
-
315
- #: fields/backup/backup.php:26
316
- msgid "Import"
317
- msgstr "Import"
318
-
319
- #: fields/backup/backup.php:29
320
- msgid "Export & Download"
321
- msgstr "Eksport & Pobierz"
322
-
323
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
324
- msgid "top"
325
- msgstr ""
326
-
327
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
328
- msgid "right"
329
- msgstr ""
330
-
331
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
332
- msgid "bottom"
333
- msgstr ""
334
-
335
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
336
- msgid "left"
337
- msgstr ""
338
-
339
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
340
- msgid "all"
341
- msgstr ""
342
-
343
- #: fields/border/border.php:51 fields/typography/typography.php:203
344
- msgid "Solid"
345
- msgstr ""
346
-
347
- #: fields/border/border.php:52 fields/typography/typography.php:206
348
- msgid "Dashed"
349
- msgstr ""
350
-
351
- #: fields/border/border.php:53 fields/typography/typography.php:205
352
- msgid "Dotted"
353
- msgstr ""
354
-
355
- #: fields/border/border.php:54 fields/typography/typography.php:204
356
- msgid "Double"
357
- msgstr ""
358
-
359
- #: fields/border/border.php:55
360
- msgid "Inset"
361
- msgstr ""
362
-
363
- #: fields/border/border.php:56
364
- msgid "Outset"
365
- msgstr ""
366
-
367
- #: fields/border/border.php:57
368
- msgid "Groove"
369
- msgstr ""
370
-
371
- #: fields/border/border.php:58
372
- msgid "ridge"
373
- msgstr ""
374
-
375
- #: fields/border/border.php:59 fields/typography/typography.php:188
376
- #: fields/typography/typography.php:202
377
- msgid "None"
378
- msgstr ""
379
-
380
- #: fields/dimensions/dimensions.php:22
381
- msgid "width"
382
- msgstr ""
383
-
384
- #: fields/dimensions/dimensions.php:23
385
- msgid "height"
386
- msgstr ""
387
-
388
- #: fields/gallery/gallery.php:20
389
- msgid "Add Gallery"
390
- msgstr "Dodaj Galerię"
391
-
392
- #: fields/gallery/gallery.php:21
393
- msgid "Edit Gallery"
394
- msgstr "Edytuj Galerię"
395
-
396
- #: fields/gallery/gallery.php:22
397
- msgid "Clear"
398
- msgstr "Wyczyść"
399
-
400
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
401
- msgid "Error: Field ID conflict."
402
- msgstr "Błąd: Konflikt identyfikatora pola."
403
-
404
- #: fields/group/group.php:46 fields/group/group.php:87
405
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
406
- msgid "Are you sure to delete this item?"
407
- msgstr "Czy na pewno chcesz usunąć?"
408
-
409
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
410
- msgid "You cannot add more."
411
- msgstr "Nie możesz dodać więcej."
412
-
413
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
414
- msgid "You cannot remove more."
415
- msgstr "Nie możesz usunąć więcej."
416
-
417
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
418
- msgid "Add Icon"
419
- msgstr "Dodaj Ikonę"
420
-
421
- #: fields/icon/icon.php:21
422
- msgid "Remove Icon"
423
- msgstr "Usuń Ikonę"
424
-
425
- #: fields/link/link.php:20
426
- msgid "Add Link"
427
- msgstr "Dodaj Link"
428
-
429
- #: fields/link/link.php:21
430
- msgid "Edit Link"
431
- msgstr "Edytuj Link"
432
-
433
- #: fields/link/link.php:22
434
- msgid "Remove Link"
435
- msgstr "Usuń Link"
436
-
437
- #: fields/link_color/link_color.php:37
438
- msgid "Hover"
439
- msgstr ""
440
-
441
- #: fields/link_color/link_color.php:38
442
- msgid "Active"
443
- msgstr ""
444
-
445
- #: fields/link_color/link_color.php:39
446
- msgid "Visited"
447
- msgstr ""
448
-
449
- #: fields/link_color/link_color.php:40
450
- msgid "Focus"
451
- msgstr ""
452
-
453
- #: fields/map/map.php:24
454
- msgid "Latitude"
455
- msgstr "Szerokość geograficzna"
456
-
457
- #: fields/map/map.php:25
458
- msgid "Longitude"
459
- msgstr "Długość geograficzna"
460
-
461
- #: fields/media/media.php:23 fields/upload/upload.php:21
462
- msgid "Upload"
463
- msgstr "Wyślij na serwer"
464
-
465
- #: fields/media/media.php:24 fields/upload/upload.php:22
466
- msgid "Remove"
467
- msgstr "Usuń"
468
-
469
- #: fields/sorter/sorter.php:21
470
- msgid "Enabled"
471
- msgstr "Włączony"
472
-
473
- #: fields/sorter/sorter.php:22
474
- msgid "Disabled"
475
- msgstr "Wyłączony"
476
-
477
- #: fields/switcher/switcher.php:20
478
- msgid "On"
479
- msgstr ""
480
-
481
- #: fields/switcher/switcher.php:21
482
- msgid "Off"
483
- msgstr ""
484
-
485
- #: fields/typography/typography.php:85
486
- msgid "Font Family"
487
- msgstr ""
488
-
489
- #: fields/typography/typography.php:86
490
- msgid "Select a font"
491
- msgstr ""
492
-
493
- #: fields/typography/typography.php:94
494
- msgid "Backup Font Family"
495
- msgstr ""
496
-
497
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
498
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
499
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
500
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
501
- msgid "Default"
502
- msgstr ""
503
-
504
- #: fields/typography/typography.php:119
505
- msgid "Font Style"
506
- msgstr ""
507
-
508
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
509
- msgid "Load Extra Styles"
510
- msgstr ""
511
-
512
- #: fields/typography/typography.php:147
513
- msgid "Subset"
514
- msgstr ""
515
-
516
- #: fields/typography/typography.php:157
517
- msgid "Text Align"
518
- msgstr ""
519
-
520
- #: fields/typography/typography.php:159
521
- msgid "Inherit"
522
- msgstr ""
523
-
524
- #: fields/typography/typography.php:160
525
- msgid "Left"
526
- msgstr ""
527
-
528
- #: fields/typography/typography.php:161
529
- msgid "Center"
530
- msgstr ""
531
-
532
- #: fields/typography/typography.php:162
533
- msgid "Right"
534
- msgstr ""
535
-
536
- #: fields/typography/typography.php:163
537
- msgid "Justify"
538
- msgstr ""
539
-
540
- #: fields/typography/typography.php:164
541
- msgid "Initial"
542
- msgstr ""
543
-
544
- #: fields/typography/typography.php:173
545
- msgid "Font Variant"
546
- msgstr ""
547
-
548
- #: fields/typography/typography.php:176
549
- msgid "Small Caps"
550
- msgstr ""
551
-
552
- #: fields/typography/typography.php:177
553
- msgid "All Small Caps"
554
- msgstr ""
555
-
556
- #: fields/typography/typography.php:186
557
- msgid "Text Transform"
558
- msgstr ""
559
-
560
- #: fields/typography/typography.php:189
561
- msgid "Capitalize"
562
- msgstr ""
563
-
564
- #: fields/typography/typography.php:190
565
- msgid "Uppercase"
566
- msgstr ""
567
-
568
- #: fields/typography/typography.php:191
569
- msgid "Lowercase"
570
- msgstr ""
571
-
572
- #: fields/typography/typography.php:200
573
- msgid "Text Decoration"
574
- msgstr ""
575
-
576
- #: fields/typography/typography.php:207
577
- msgid "Wavy"
578
- msgstr ""
579
-
580
- #: fields/typography/typography.php:208
581
- msgid "Overline"
582
- msgstr ""
583
-
584
- #: fields/typography/typography.php:209
585
- msgid "Line-through"
586
- msgstr ""
587
-
588
- #: fields/typography/typography.php:222
589
- msgid "Font Size"
590
- msgstr ""
591
-
592
- #: fields/typography/typography.php:234
593
- msgid "Line Height"
594
- msgstr ""
595
-
596
- #: fields/typography/typography.php:246
597
- msgid "Letter Spacing"
598
- msgstr ""
599
-
600
- #: fields/typography/typography.php:258
601
- msgid "Word Spacing"
602
- msgstr ""
603
-
604
- #: fields/typography/typography.php:273
605
- msgid "Font Color"
606
- msgstr ""
607
-
608
- #: fields/typography/typography.php:284
609
- msgid "Custom Style"
610
- msgstr ""
611
-
612
- #: fields/typography/typography.php:351
613
- msgid "Custom Web Fonts"
614
- msgstr ""
615
-
616
- #: fields/typography/typography.php:357
617
- msgid "Safe Web Fonts"
618
- msgstr ""
619
-
620
- #: fields/typography/typography.php:377
621
- msgid "Google Web Fonts"
622
- msgstr ""
623
-
624
- #: functions/actions.php:72 functions/actions.php:110
625
- msgid "Error: Invalid key."
626
- msgstr "Błąd: Nieprawidłowy klucz."
627
-
628
- #: functions/actions.php:114
629
- msgid "Error: The response is not a valid JSON response."
630
- msgstr "Błąd: Odpowiedź nie jest prawidłową odpowiedzią JSON."
631
-
632
- #: functions/actions.php:174
633
- msgid "Error: Invalid term ID."
634
- msgstr "Błąd: Nieprawidłowy identyfikator terminu."
635
-
636
- #: functions/actions.php:180
637
- msgid "Error: You do not have permission to do that."
638
- msgstr "Błąd: Nie posiadasz uprawnienia do wykonania tej operacji."
639
-
640
- #: functions/validate.php:14 functions/validate.php:86
641
- msgid "Please enter a valid email address."
642
- msgstr "Proszę wprowadzić prawidłowy adres email."
643
-
644
- #: functions/validate.php:32 functions/validate.php:106
645
- msgid "Please enter a valid number."
646
- msgstr "Proszę wprowadzić ważny numer."
647
-
648
- #: functions/validate.php:50 functions/validate.php:126
649
- msgid "This field is required."
650
- msgstr "To pole jest wymagane."
651
-
652
- #: functions/validate.php:68 functions/validate.php:146
653
- msgid "Please enter a valid URL."
654
- msgstr "Proszę wprowadzić prawidłowy adres URL."
655
-
656
- #~ msgid "Add Shortcode"
657
- #~ msgstr "Dodaj Shortcode"
658
-
659
- #~ msgid "Select a shortcode"
660
- #~ msgstr "Wybierz shortcode"
661
-
662
- #~ msgid "Insert Shortcode"
663
- #~ msgstr "Wstaw Shortcode"
664
-
665
- #~ msgid "Write shortcode here..."
666
- #~ msgstr "Wprowadź shortcode..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: pl_PL\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Błąd zapisu zmian."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Ustawienia zostały zaimportowane."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Domyślne ustawienia przywrócone."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Ustawienia zostały zapisane."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Zmiany nie zostały zapisane, zapisz zmiany!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "pokaż wszystkie ustawienia"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Szukaj..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Zapisz"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Zapisywanie..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Resetuj Sekcję"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Czy na pewno?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Resetuj Wszystko"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Resetuj"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr ""
74
+ "Jesteś pewny, że chcesz przywrócić wszystkie ustawienia do domyślnych "
75
+ "wartości?"
76
+
77
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
78
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
79
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
80
+ #: fields/select/select.php:113 functions/actions.php:41
81
+ msgid "No data available."
82
+ msgstr "Brak dostępnych danych."
83
+
84
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
85
+ msgid "update post"
86
+ msgstr "aktualizacja postu"
87
+
88
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
89
+ msgid "Cancel"
90
+ msgstr "Anuluj"
91
+
92
+ #: classes/setup.class.php:529
93
+ msgid "Are you sure?"
94
+ msgstr "Czy na pewno?"
95
+
96
+ #: classes/setup.class.php:530
97
+ msgid "Please enter %s or more characters"
98
+ msgstr "Wpisz %s lub więcej znaków"
99
+
100
+ #: classes/setup.class.php:531
101
+ msgid "Searching..."
102
+ msgstr "Szukam..."
103
+
104
+ #: classes/setup.class.php:532
105
+ msgid "No results found."
106
+ msgstr "Brak wyników."
107
+
108
+ #: classes/setup.class.php:615
109
+ msgid "Oops! Not allowed."
110
+ msgstr "Ups! Nie dozwolony."
111
+
112
+ #: classes/setup.class.php:689 classes/setup.class.php:693
113
+ msgid "Field not found!"
114
+ msgstr "Nie znaleziono pola!"
115
+
116
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
117
+ msgid "Add New"
118
+ msgstr "Dodaj nowy"
119
+
120
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
121
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
122
+ #: functions/actions.php:170
123
+ msgid "Error: Invalid nonce verification."
124
+ msgstr "Błąd: Nieprawidłowa weryfikacja nonce."
125
+
126
+ #: fields/background/background.php:35 fields/media/media.php:57
127
+ msgid "Not selected"
128
+ msgstr "Nie wybrane"
129
+
130
+ #: fields/background/background.php:66 fields/date/date.php:31
131
+ msgid "From"
132
+ msgstr ""
133
+
134
+ #: fields/background/background.php:84 fields/date/date.php:32
135
+ msgid "To"
136
+ msgstr ""
137
+
138
+ #: fields/background/background.php:102
139
+ msgid "Direction"
140
+ msgstr ""
141
+
142
+ #: fields/background/background.php:108
143
+ msgid "Gradient Direction"
144
+ msgstr ""
145
+
146
+ #: fields/background/background.php:109
147
+ msgid "&#8659; top to bottom"
148
+ msgstr ""
149
+
150
+ #: fields/background/background.php:110
151
+ msgid "&#8658; left to right"
152
+ msgstr ""
153
+
154
+ #: fields/background/background.php:111
155
+ msgid "&#8664; corner top to right"
156
+ msgstr ""
157
+
158
+ #: fields/background/background.php:112
159
+ msgid "&#8665; corner top to left"
160
+ msgstr ""
161
+
162
+ #: fields/background/background.php:155
163
+ msgid "Background Position"
164
+ msgstr "Pozycja Tła"
165
+
166
+ #: fields/background/background.php:156
167
+ msgid "Left Top"
168
+ msgstr ""
169
+
170
+ #: fields/background/background.php:157
171
+ msgid "Left Center"
172
+ msgstr ""
173
+
174
+ #: fields/background/background.php:158
175
+ msgid "Left Bottom"
176
+ msgstr ""
177
+
178
+ #: fields/background/background.php:159
179
+ msgid "Center Top"
180
+ msgstr ""
181
+
182
+ #: fields/background/background.php:160
183
+ msgid "Center Center"
184
+ msgstr ""
185
+
186
+ #: fields/background/background.php:161
187
+ msgid "Center Bottom"
188
+ msgstr ""
189
+
190
+ #: fields/background/background.php:162
191
+ msgid "Right Top"
192
+ msgstr ""
193
+
194
+ #: fields/background/background.php:163
195
+ msgid "Right Center"
196
+ msgstr ""
197
+
198
+ #: fields/background/background.php:164
199
+ msgid "Right Bottom"
200
+ msgstr ""
201
+
202
+ #: fields/background/background.php:178
203
+ msgid "Background Repeat"
204
+ msgstr "Powtarzanie Tła"
205
+
206
+ #: fields/background/background.php:179
207
+ msgid "Repeat"
208
+ msgstr ""
209
+
210
+ #: fields/background/background.php:180
211
+ msgid "No Repeat"
212
+ msgstr ""
213
+
214
+ #: fields/background/background.php:181
215
+ msgid "Repeat Horizontally"
216
+ msgstr ""
217
+
218
+ #: fields/background/background.php:182
219
+ msgid "Repeat Vertically"
220
+ msgstr ""
221
+
222
+ #: fields/background/background.php:196
223
+ msgid "Background Attachment"
224
+ msgstr "Zaczepienie Tła"
225
+
226
+ #: fields/background/background.php:197
227
+ msgid "Scroll"
228
+ msgstr ""
229
+
230
+ #: fields/background/background.php:198
231
+ msgid "Fixed"
232
+ msgstr ""
233
+
234
+ #: fields/background/background.php:212
235
+ msgid "Background Size"
236
+ msgstr "Rozmiar Tła"
237
+
238
+ #: fields/background/background.php:213
239
+ msgid "Cover"
240
+ msgstr ""
241
+
242
+ #: fields/background/background.php:214
243
+ msgid "Contain"
244
+ msgstr ""
245
+
246
+ #: fields/background/background.php:215
247
+ msgid "Auto"
248
+ msgstr ""
249
+
250
+ #: fields/background/background.php:229
251
+ msgid "Background Origin"
252
+ msgstr "Początek Tła"
253
+
254
+ #: fields/background/background.php:230 fields/background/background.php:248
255
+ msgid "Padding Box"
256
+ msgstr ""
257
+
258
+ #: fields/background/background.php:231 fields/background/background.php:247
259
+ msgid "Border Box"
260
+ msgstr ""
261
+
262
+ #: fields/background/background.php:232 fields/background/background.php:249
263
+ msgid "Content Box"
264
+ msgstr ""
265
+
266
+ #: fields/background/background.php:246
267
+ msgid "Background Clip"
268
+ msgstr "Obcięcie Tła"
269
+
270
+ #: fields/background/background.php:263
271
+ msgid "Background Blend Mode"
272
+ msgstr ""
273
+
274
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
275
+ #: fields/typography/typography.php:175
276
+ msgid "Normal"
277
+ msgstr ""
278
+
279
+ #: fields/background/background.php:265
280
+ msgid "Multiply"
281
+ msgstr ""
282
+
283
+ #: fields/background/background.php:266
284
+ msgid "Screen"
285
+ msgstr ""
286
+
287
+ #: fields/background/background.php:267
288
+ msgid "Overlay"
289
+ msgstr ""
290
+
291
+ #: fields/background/background.php:268
292
+ msgid "Darken"
293
+ msgstr ""
294
+
295
+ #: fields/background/background.php:269
296
+ msgid "Lighten"
297
+ msgstr ""
298
+
299
+ #: fields/background/background.php:270
300
+ msgid "Color Dodge"
301
+ msgstr ""
302
+
303
+ #: fields/background/background.php:271
304
+ msgid "Saturation"
305
+ msgstr ""
306
+
307
+ #: fields/background/background.php:272
308
+ msgid "Color"
309
+ msgstr ""
310
+
311
+ #: fields/background/background.php:273
312
+ msgid "Luminosity"
313
+ msgstr ""
314
+
315
+ #: fields/backup/backup.php:26
316
+ msgid "Import"
317
+ msgstr "Import"
318
+
319
+ #: fields/backup/backup.php:29
320
+ msgid "Export & Download"
321
+ msgstr "Eksport & Pobierz"
322
+
323
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
324
+ msgid "top"
325
+ msgstr ""
326
+
327
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
328
+ msgid "right"
329
+ msgstr ""
330
+
331
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
332
+ msgid "bottom"
333
+ msgstr ""
334
+
335
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
336
+ msgid "left"
337
+ msgstr ""
338
+
339
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
340
+ msgid "all"
341
+ msgstr ""
342
+
343
+ #: fields/border/border.php:51 fields/typography/typography.php:203
344
+ msgid "Solid"
345
+ msgstr ""
346
+
347
+ #: fields/border/border.php:52 fields/typography/typography.php:206
348
+ msgid "Dashed"
349
+ msgstr ""
350
+
351
+ #: fields/border/border.php:53 fields/typography/typography.php:205
352
+ msgid "Dotted"
353
+ msgstr ""
354
+
355
+ #: fields/border/border.php:54 fields/typography/typography.php:204
356
+ msgid "Double"
357
+ msgstr ""
358
+
359
+ #: fields/border/border.php:55
360
+ msgid "Inset"
361
+ msgstr ""
362
+
363
+ #: fields/border/border.php:56
364
+ msgid "Outset"
365
+ msgstr ""
366
+
367
+ #: fields/border/border.php:57
368
+ msgid "Groove"
369
+ msgstr ""
370
+
371
+ #: fields/border/border.php:58
372
+ msgid "ridge"
373
+ msgstr ""
374
+
375
+ #: fields/border/border.php:59 fields/typography/typography.php:188
376
+ #: fields/typography/typography.php:202
377
+ msgid "None"
378
+ msgstr ""
379
+
380
+ #: fields/dimensions/dimensions.php:22
381
+ msgid "width"
382
+ msgstr ""
383
+
384
+ #: fields/dimensions/dimensions.php:23
385
+ msgid "height"
386
+ msgstr ""
387
+
388
+ #: fields/gallery/gallery.php:20
389
+ msgid "Add Gallery"
390
+ msgstr "Dodaj Galerię"
391
+
392
+ #: fields/gallery/gallery.php:21
393
+ msgid "Edit Gallery"
394
+ msgstr "Edytuj Galerię"
395
+
396
+ #: fields/gallery/gallery.php:22
397
+ msgid "Clear"
398
+ msgstr "Wyczyść"
399
+
400
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
401
+ msgid "Error: Field ID conflict."
402
+ msgstr "Błąd: Konflikt identyfikatora pola."
403
+
404
+ #: fields/group/group.php:46 fields/group/group.php:87
405
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
406
+ msgid "Are you sure to delete this item?"
407
+ msgstr "Czy na pewno chcesz usunąć?"
408
+
409
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
410
+ msgid "You cannot add more."
411
+ msgstr "Nie możesz dodać więcej."
412
+
413
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
414
+ msgid "You cannot remove more."
415
+ msgstr "Nie możesz usunąć więcej."
416
+
417
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
418
+ msgid "Add Icon"
419
+ msgstr "Dodaj Ikonę"
420
+
421
+ #: fields/icon/icon.php:21
422
+ msgid "Remove Icon"
423
+ msgstr "Usuń Ikonę"
424
+
425
+ #: fields/link/link.php:20
426
+ msgid "Add Link"
427
+ msgstr "Dodaj Link"
428
+
429
+ #: fields/link/link.php:21
430
+ msgid "Edit Link"
431
+ msgstr "Edytuj Link"
432
+
433
+ #: fields/link/link.php:22
434
+ msgid "Remove Link"
435
+ msgstr "Usuń Link"
436
+
437
+ #: fields/link_color/link_color.php:37
438
+ msgid "Hover"
439
+ msgstr ""
440
+
441
+ #: fields/link_color/link_color.php:38
442
+ msgid "Active"
443
+ msgstr ""
444
+
445
+ #: fields/link_color/link_color.php:39
446
+ msgid "Visited"
447
+ msgstr ""
448
+
449
+ #: fields/link_color/link_color.php:40
450
+ msgid "Focus"
451
+ msgstr ""
452
+
453
+ #: fields/map/map.php:24
454
+ msgid "Latitude"
455
+ msgstr "Szerokość geograficzna"
456
+
457
+ #: fields/map/map.php:25
458
+ msgid "Longitude"
459
+ msgstr "Długość geograficzna"
460
+
461
+ #: fields/media/media.php:23 fields/upload/upload.php:21
462
+ msgid "Upload"
463
+ msgstr "Wyślij na serwer"
464
+
465
+ #: fields/media/media.php:24 fields/upload/upload.php:22
466
+ msgid "Remove"
467
+ msgstr "Usuń"
468
+
469
+ #: fields/sorter/sorter.php:21
470
+ msgid "Enabled"
471
+ msgstr "Włączony"
472
+
473
+ #: fields/sorter/sorter.php:22
474
+ msgid "Disabled"
475
+ msgstr "Wyłączony"
476
+
477
+ #: fields/switcher/switcher.php:20
478
+ msgid "On"
479
+ msgstr ""
480
+
481
+ #: fields/switcher/switcher.php:21
482
+ msgid "Off"
483
+ msgstr ""
484
+
485
+ #: fields/typography/typography.php:85
486
+ msgid "Font Family"
487
+ msgstr ""
488
+
489
+ #: fields/typography/typography.php:86
490
+ msgid "Select a font"
491
+ msgstr ""
492
+
493
+ #: fields/typography/typography.php:94
494
+ msgid "Backup Font Family"
495
+ msgstr ""
496
+
497
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
498
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
499
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
500
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
501
+ msgid "Default"
502
+ msgstr ""
503
+
504
+ #: fields/typography/typography.php:119
505
+ msgid "Font Style"
506
+ msgstr ""
507
+
508
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
509
+ msgid "Load Extra Styles"
510
+ msgstr ""
511
+
512
+ #: fields/typography/typography.php:147
513
+ msgid "Subset"
514
+ msgstr ""
515
+
516
+ #: fields/typography/typography.php:157
517
+ msgid "Text Align"
518
+ msgstr ""
519
+
520
+ #: fields/typography/typography.php:159
521
+ msgid "Inherit"
522
+ msgstr ""
523
+
524
+ #: fields/typography/typography.php:160
525
+ msgid "Left"
526
+ msgstr ""
527
+
528
+ #: fields/typography/typography.php:161
529
+ msgid "Center"
530
+ msgstr ""
531
+
532
+ #: fields/typography/typography.php:162
533
+ msgid "Right"
534
+ msgstr ""
535
+
536
+ #: fields/typography/typography.php:163
537
+ msgid "Justify"
538
+ msgstr ""
539
+
540
+ #: fields/typography/typography.php:164
541
+ msgid "Initial"
542
+ msgstr ""
543
+
544
+ #: fields/typography/typography.php:173
545
+ msgid "Font Variant"
546
+ msgstr ""
547
+
548
+ #: fields/typography/typography.php:176
549
+ msgid "Small Caps"
550
+ msgstr ""
551
+
552
+ #: fields/typography/typography.php:177
553
+ msgid "All Small Caps"
554
+ msgstr ""
555
+
556
+ #: fields/typography/typography.php:186
557
+ msgid "Text Transform"
558
+ msgstr ""
559
+
560
+ #: fields/typography/typography.php:189
561
+ msgid "Capitalize"
562
+ msgstr ""
563
+
564
+ #: fields/typography/typography.php:190
565
+ msgid "Uppercase"
566
+ msgstr ""
567
+
568
+ #: fields/typography/typography.php:191
569
+ msgid "Lowercase"
570
+ msgstr ""
571
+
572
+ #: fields/typography/typography.php:200
573
+ msgid "Text Decoration"
574
+ msgstr ""
575
+
576
+ #: fields/typography/typography.php:207
577
+ msgid "Wavy"
578
+ msgstr ""
579
+
580
+ #: fields/typography/typography.php:208
581
+ msgid "Overline"
582
+ msgstr ""
583
+
584
+ #: fields/typography/typography.php:209
585
+ msgid "Line-through"
586
+ msgstr ""
587
+
588
+ #: fields/typography/typography.php:222
589
+ msgid "Font Size"
590
+ msgstr ""
591
+
592
+ #: fields/typography/typography.php:234
593
+ msgid "Line Height"
594
+ msgstr ""
595
+
596
+ #: fields/typography/typography.php:246
597
+ msgid "Letter Spacing"
598
+ msgstr ""
599
+
600
+ #: fields/typography/typography.php:258
601
+ msgid "Word Spacing"
602
+ msgstr ""
603
+
604
+ #: fields/typography/typography.php:273
605
+ msgid "Font Color"
606
+ msgstr ""
607
+
608
+ #: fields/typography/typography.php:284
609
+ msgid "Custom Style"
610
+ msgstr ""
611
+
612
+ #: fields/typography/typography.php:351
613
+ msgid "Custom Web Fonts"
614
+ msgstr ""
615
+
616
+ #: fields/typography/typography.php:357
617
+ msgid "Safe Web Fonts"
618
+ msgstr ""
619
+
620
+ #: fields/typography/typography.php:377
621
+ msgid "Google Web Fonts"
622
+ msgstr ""
623
+
624
+ #: functions/actions.php:72 functions/actions.php:110
625
+ msgid "Error: Invalid key."
626
+ msgstr "Błąd: Nieprawidłowy klucz."
627
+
628
+ #: functions/actions.php:114
629
+ msgid "Error: The response is not a valid JSON response."
630
+ msgstr "Błąd: Odpowiedź nie jest prawidłową odpowiedzią JSON."
631
+
632
+ #: functions/actions.php:174
633
+ msgid "Error: Invalid term ID."
634
+ msgstr "Błąd: Nieprawidłowy identyfikator terminu."
635
+
636
+ #: functions/actions.php:180
637
+ msgid "Error: You do not have permission to do that."
638
+ msgstr "Błąd: Nie posiadasz uprawnienia do wykonania tej operacji."
639
+
640
+ #: functions/validate.php:14 functions/validate.php:86
641
+ msgid "Please enter a valid email address."
642
+ msgstr "Proszę wprowadzić prawidłowy adres email."
643
+
644
+ #: functions/validate.php:32 functions/validate.php:106
645
+ msgid "Please enter a valid number."
646
+ msgstr "Proszę wprowadzić ważny numer."
647
+
648
+ #: functions/validate.php:50 functions/validate.php:126
649
+ msgid "This field is required."
650
+ msgstr "To pole jest wymagane."
651
+
652
+ #: functions/validate.php:68 functions/validate.php:146
653
+ msgid "Please enter a valid URL."
654
+ msgstr "Proszę wprowadzić prawidłowy adres URL."
655
+
656
+ #~ msgid "Add Shortcode"
657
+ #~ msgstr "Dodaj Shortcode"
658
+
659
+ #~ msgid "Select a shortcode"
660
+ #~ msgstr "Wybierz shortcode"
661
+
662
+ #~ msgid "Insert Shortcode"
663
+ #~ msgstr "Wstaw Shortcode"
664
+
665
+ #~ msgid "Write shortcode here..."
666
+ #~ msgstr "Wprowadź shortcode..."
vendor/codestar-framework/languages/pt_PT.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: pt_PT\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Erro ao guardar as alterações."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Definições importadas com sucesso."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Opções predefinidas restauradas."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Opções guardadas."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Tem alterações por guardar, guarda as suas alterações!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "mostrar todas as definições"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Pesquisar..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Guardar"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "A guardar..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Restabelecer Secção"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Tem a certeza?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Restabelecer Todos"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Repor"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Tem a certeza?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Não há dados disponíveis."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "atualização post"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Cancelar"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Tem a certeza?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Por favor, insira %s ou mais caracteres"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Pesquisando..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Nenhum resultado encontrado."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Oops! Não permitido."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Campo não encontrado!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Adicionar novo"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Erro: Verificação nonce inválida."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Não selecionada"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Posição do fundo"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Repetir fundo"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Anexo do fundo"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Tamanho do fundo"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "Origem do fundo"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "Clipe de fundo"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "Importar"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "Exportar & Descarregar"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Adicionar Galeria"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Editar Galeria"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Limpar"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Erro: Conflito de identificação de campo."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Tem a certeza?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Você não pode adicionar mais."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Você não pode remover mais."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "Adicionar Icone"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "Remover Icone"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Adicionar Ligação"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Editar Ligação"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Remover Ligação"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Latitude"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Longitude"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Carregar"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Remover"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Activado"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Desactivado"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Erro: Chave inválida."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Erro: A resposta não é uma resposta JSON válida."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Erro: ID de termo inválido."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Erro: Não tem permissão para fazer isto."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Por favor, insira um endereço de email válido."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Por favor, insira um número válido."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Este campo é obrigatório."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Por favor, insira um URL válido."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Adicionar Shortcode"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Selecione um shortcode"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Inserir Shortcode"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Escreva aqui um shorcode..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: pt_PT\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Erro ao guardar as alterações."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Definições importadas com sucesso."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Opções predefinidas restauradas."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Opções guardadas."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Tem alterações por guardar, guarda as suas alterações!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "mostrar todas as definições"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Pesquisar..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Guardar"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "A guardar..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Restabelecer Secção"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Tem a certeza?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Restabelecer Todos"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Repor"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Tem a certeza?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Não há dados disponíveis."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "atualização post"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Cancelar"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Tem a certeza?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Por favor, insira %s ou mais caracteres"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Pesquisando..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Nenhum resultado encontrado."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Oops! Não permitido."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Campo não encontrado!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Adicionar novo"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Erro: Verificação nonce inválida."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Não selecionada"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Posição do fundo"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Repetir fundo"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Anexo do fundo"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Tamanho do fundo"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "Origem do fundo"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "Clipe de fundo"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "Importar"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "Exportar & Descarregar"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Adicionar Galeria"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Editar Galeria"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Limpar"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Erro: Conflito de identificação de campo."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Tem a certeza?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Você não pode adicionar mais."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Você não pode remover mais."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "Adicionar Icone"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "Remover Icone"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Adicionar Ligação"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Editar Ligação"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Remover Ligação"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Latitude"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Longitude"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Carregar"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Remover"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Activado"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Desactivado"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Erro: Chave inválida."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Erro: A resposta não é uma resposta JSON válida."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Erro: ID de termo inválido."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Erro: Não tem permissão para fazer isto."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Por favor, insira um endereço de email válido."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Por favor, insira um número válido."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Este campo é obrigatório."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Por favor, insira um URL válido."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Adicionar Shortcode"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Selecione um shortcode"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Inserir Shortcode"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Escreva aqui um shorcode..."
vendor/codestar-framework/languages/ru_RU.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: ru_RU\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Ошибка при сохранении изменений."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Настройки успешно импортированы."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Настройки по умолчанию восстановлены."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Настройки сохранены."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "У вас есть несохраненные изменения, сохранить изменения!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "показать все настройки"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Поиск..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Сохранить"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Сохранение..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Сброс раздела"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Вы уверены?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Сбросить все"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Сбросить"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Вы уверены, что хотите сбросить все настройки до значений по умолчанию?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Данные недоступны."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "oбновить запись"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Отмена"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Вы уверены?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Пожалуйста, введите %s или более символов"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Поиск..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Результатов не найдено."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Ой! Не положено."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Поле не найдено!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Добавить новое"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Ошибка: Некорректный код верификации."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Не выбрано"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Позиция фона"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Дублирование фона"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Привязка фона"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Размер фона"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "происхождение фона"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "клип фона"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "Импорт"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "Экспорт & Скачать"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Добавить галерею"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Редактировать галерею"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Сброс"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Ошибка: Конфликт идентификатора поля."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Вы уверены, что хотите удалить?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Вы не можете добавить больше."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Вы не можете удалить больше."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "Добавить иконку"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "Удалить иконку"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Добавить ссылку"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Изменить ссылку"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Удалить ссылку"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Широта"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Долгота"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Загрузить"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Удалить"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Включить"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Отключено"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Ошибка: Неверный ключ."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Ошибка: Ответ не является корректным JSON-ответом."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Ошибка: Неверный ID элемента."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Ошибка: У вас недостаточно прав для того, чтобы сделать это."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Пожалуйста, введите корректный адрес email."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Укажите действующий номер."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Обязательное поле."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Пожалуйста, введите корректный URL."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Добавить шорткод"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Выберите шорткод"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Вставить шорткод"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Введите шорткод здесь..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: ru_RU\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Ошибка при сохранении изменений."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Настройки успешно импортированы."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Настройки по умолчанию восстановлены."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Настройки сохранены."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "У вас есть несохраненные изменения, сохранить изменения!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "показать все настройки"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Поиск..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Сохранить"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Сохранение..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Сброс раздела"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Вы уверены?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Сбросить все"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Сбросить"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Вы уверены, что хотите сбросить все настройки до значений по умолчанию?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Данные недоступны."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "oбновить запись"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Отмена"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Вы уверены?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Пожалуйста, введите %s или более символов"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Поиск..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Результатов не найдено."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Ой! Не положено."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Поле не найдено!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Добавить новое"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Ошибка: Некорректный код верификации."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Не выбрано"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Позиция фона"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Дублирование фона"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Привязка фона"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Размер фона"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "происхождение фона"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "клип фона"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "Импорт"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "Экспорт & Скачать"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Добавить галерею"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Редактировать галерею"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Сброс"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Ошибка: Конфликт идентификатора поля."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Вы уверены, что хотите удалить?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Вы не можете добавить больше."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Вы не можете удалить больше."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "Добавить иконку"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "Удалить иконку"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Добавить ссылку"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Изменить ссылку"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Удалить ссылку"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Широта"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Долгота"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Загрузить"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Удалить"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Включить"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Отключено"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Ошибка: Неверный ключ."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Ошибка: Ответ не является корректным JSON-ответом."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Ошибка: Неверный ID элемента."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Ошибка: У вас недостаточно прав для того, чтобы сделать это."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Пожалуйста, введите корректный адрес email."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Укажите действующий номер."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Обязательное поле."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Пожалуйста, введите корректный URL."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Добавить шорткод"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Выберите шорткод"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Вставить шорткод"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Введите шорткод здесь..."
vendor/codestar-framework/languages/th.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: th\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "ผิดพลาดขณะบันทึกการเปลี่ยนแปล"
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "นำเข้าการตั้งค่าสำเร็จแล้"
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "กู้คืนตัวเลือกเริ่มต้นแล้"
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "บันทึกการตั้งค่าแล้"
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก บันทึกการเปลี่ยนแปลง"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "แสดงการตั้งค่าทั้งหมด"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "ค้นหา..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "บันทึก"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "กำลังบันทึก..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "รีเซ็ตส่วน"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "คุณแน่ใจหรือไม่?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "เคลียร์ทั้งหมด"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "ล้างค่า"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "คุณแน่ใจหรือไม่?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "ไม่มีข้อมูล"
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "อัปเดตโพสต์"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "ยกเลิก"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "คุณแน่ใจหรือไม่?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "กรุณาใส่มากกว่าหรือเท่ากับ %s ตัวอักษร"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "กำลังค้นหา..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "ไม่พบผลลัพท์ง"
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "โอ๊ะ ไม่ได้รับอนุญาต"
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "ไม่พบฟิลด์!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "เพิ่ม"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "ข้อผิดพลาด: การตรวจสอบ nonce ไม่ถูกต้อ"
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "ไม่ได้เลือก"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "ตำแหน่งพื้นหลัง"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "ทำซ้ำพื้นหลัง"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "ไฟล์แนบพื้นหลัง"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "ขนาดพื้นหลัง"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "พื้นหลังเริ่มต้น"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "คลิปพื้นหลัง"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "นำเข้า"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "นำออก & ดาวน์โหลด"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "เพิ่มคลังภาพ"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "แก้ไขคลังภาพ"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "ล้างค่า"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "ข้อผิดพลาด: ข้อขัดแย้ง ID ฟิลด์"
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "คุณแน่ใจหรือไม่?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "คุณไม่สามารถเพิ่มได้อีก"
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "คุณไม่สามารถลบเพิ่มเติมได้"
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "เพิ่ม ไอคอน"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "ลบ ไอคอน"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "เพิ่มลิงก์"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "แก้ไขลิงก์"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "เอาลิงก์ออก"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "ละติจูด"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "ลองจิจูด"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "อัปโหลด"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "ลบออก"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "เปิดใช้งาน"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "ปิดการใช้งาน"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "ข้อผิดพลาด: รหัสไม่ถูกต้อ"
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "ข้อผิดพลาด: ผลลัพธ์ไม่ใช่รูปแบบ JSON ที่ถูกต้อ"
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "ข้อผิดพลาด: เลขที่เฉพาะคำศัพท์ไม่ถูกต้อ"
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "ข้อผิดพลาด: คุณไม่ได้รับอนุญาตให้ทำเช่นนั้น"
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "โปรดใส่ที่อยู่อีเมลที่ใช้งานได้"
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "กรุณาใส่หมายเลขที่ถูกต้อ"
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "ช่องนี้จำเป็นต้องกรอกข้อมูล"
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "โปรดใส่ URL ที่ใช้งานได้"
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "เพิ่มรหัสย่อ"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "เลือกรหัสย่อ"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "เพิ่ม"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "เขียนรหัสย่อที่นี่..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: th\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "ผิดพลาดขณะบันทึกการเปลี่ยนแปล"
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "นำเข้าการตั้งค่าสำเร็จแล้"
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "กู้คืนตัวเลือกเริ่มต้นแล้"
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "บันทึกการตั้งค่าแล้"
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก บันทึกการเปลี่ยนแปลง"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "แสดงการตั้งค่าทั้งหมด"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "ค้นหา..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "บันทึก"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "กำลังบันทึก..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "รีเซ็ตส่วน"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "คุณแน่ใจหรือไม่?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "เคลียร์ทั้งหมด"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "ล้างค่า"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "คุณแน่ใจหรือไม่?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "ไม่มีข้อมูล"
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "อัปเดตโพสต์"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "ยกเลิก"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "คุณแน่ใจหรือไม่?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "กรุณาใส่มากกว่าหรือเท่ากับ %s ตัวอักษร"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "กำลังค้นหา..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "ไม่พบผลลัพท์ง"
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "โอ๊ะ ไม่ได้รับอนุญาต"
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "ไม่พบฟิลด์!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "เพิ่ม"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "ข้อผิดพลาด: การตรวจสอบ nonce ไม่ถูกต้อ"
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "ไม่ได้เลือก"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "ตำแหน่งพื้นหลัง"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "ทำซ้ำพื้นหลัง"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "ไฟล์แนบพื้นหลัง"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "ขนาดพื้นหลัง"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "พื้นหลังเริ่มต้น"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "คลิปพื้นหลัง"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "นำเข้า"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "นำออก & ดาวน์โหลด"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "เพิ่มคลังภาพ"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "แก้ไขคลังภาพ"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "ล้างค่า"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "ข้อผิดพลาด: ข้อขัดแย้ง ID ฟิลด์"
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "คุณแน่ใจหรือไม่?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "คุณไม่สามารถเพิ่มได้อีก"
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "คุณไม่สามารถลบเพิ่มเติมได้"
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "เพิ่ม ไอคอน"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "ลบ ไอคอน"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "เพิ่มลิงก์"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "แก้ไขลิงก์"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "เอาลิงก์ออก"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "ละติจูด"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "ลองจิจูด"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "อัปโหลด"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "ลบออก"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "เปิดใช้งาน"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "ปิดการใช้งาน"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "ข้อผิดพลาด: รหัสไม่ถูกต้อ"
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "ข้อผิดพลาด: ผลลัพธ์ไม่ใช่รูปแบบ JSON ที่ถูกต้อ"
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "ข้อผิดพลาด: เลขที่เฉพาะคำศัพท์ไม่ถูกต้อ"
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "ข้อผิดพลาด: คุณไม่ได้รับอนุญาตให้ทำเช่นนั้น"
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "โปรดใส่ที่อยู่อีเมลที่ใช้งานได้"
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "กรุณาใส่หมายเลขที่ถูกต้อ"
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "ช่องนี้จำเป็นต้องกรอกข้อมูล"
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "โปรดใส่ URL ที่ใช้งานได้"
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "เพิ่มรหัสย่อ"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "เลือกรหัสย่อ"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "เพิ่ม"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "เขียนรหัสย่อที่นี่..."
vendor/codestar-framework/languages/tr_TR.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: tr_TR\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Değişiklikleri kaydederken hata oluştu."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Ayarlar başarıyla içe aktarıldı."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Varsayılan seçenekler geri yüklendi."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "Ayarlar kaydedildi."
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Kaydedilmemiş değişiklikleriniz var, değişikliklerinizi kaydedin!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "tüm ayarları göster"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Arama..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Kaydet"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Kaydediliyor..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Bölümü Sıfırla"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Bu bölümün ayarlarını varsayılan değerlere sıfırlamak için emin misiniz?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Tümünü Sıfırla"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Sıfırla"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Tüm ayarları varsayılan değerlere sıfırlamak istediğinizden emin misiniz?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Veri yok."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "yazıyı güncelle"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Vazgeç"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Emin misiniz?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Lütfen %s veya daha fazla karakter girin"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Aranıyor..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Hiçbir sonuç bulunamadı."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Eyvah! İzin verilmedi."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Alan bulunamadı!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Yeni ekle"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Hata: Geçersiz özel doğrulama."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Seçili öğe yok"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Arkaplan Konumu"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Arkaplan Tekrarı"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Arkaplan Eki"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Arkaplan Boyutu"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "Arkaplan Orjini"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "Arkaplan Şablonu"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "İçe aktar"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "Dışa aktar & İndir"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Galeri Ekle"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Galeriyi Düzenle"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Temizle"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Hata: Alan kimliği çakışması."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Bu öğeyi silmek istediğinizden emin misiniz?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Daha fazlasını ekleyemezsiniz."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Daha fazlasını kaldıramazsınız."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "İkon Ekle"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "İkonu Kaldır"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Bağlantı Ekle"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Bağlantıyı Düzenle"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Bağlantıyı Kaldır"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Enlem"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Boylam"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Yükle"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Kaldır"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Etkin"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Devre dışı"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Hata: Geçersiz anahtar."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Hata: Yanıt geçerli bir JSON yanıtı değildir."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Hata: Geçersiz terim numarası."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Hata: Bunu yapmak için izniniz yok."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Lütfen geçerli bir e-posta adresi girin."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Lütfen geçerli bir sayı girin."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Bu alan zorunludur."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Lütfen geçerli bir web adresi girin."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Kısa Kod Ekle"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Kısa kod seçin"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Kısa Kodu Ekle"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Kısa kodu buraya yaz..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: tr_TR\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Değişiklikleri kaydederken hata oluştu."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Ayarlar başarıyla içe aktarıldı."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Varsayılan seçenekler geri yüklendi."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "Ayarlar kaydedildi."
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Kaydedilmemiş değişiklikleriniz var, değişikliklerinizi kaydedin!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "tüm ayarları göster"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Arama..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Kaydet"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Kaydediliyor..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Bölümü Sıfırla"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Bu bölümün ayarlarını varsayılan değerlere sıfırlamak için emin misiniz?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Tümünü Sıfırla"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Sıfırla"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Tüm ayarları varsayılan değerlere sıfırlamak istediğinizden emin misiniz?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Veri yok."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "yazıyı güncelle"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Vazgeç"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Emin misiniz?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Lütfen %s veya daha fazla karakter girin"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Aranıyor..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Hiçbir sonuç bulunamadı."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Eyvah! İzin verilmedi."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Alan bulunamadı!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Yeni ekle"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Hata: Geçersiz özel doğrulama."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Seçili öğe yok"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Arkaplan Konumu"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Arkaplan Tekrarı"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Arkaplan Eki"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Arkaplan Boyutu"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "Arkaplan Orjini"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "Arkaplan Şablonu"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "İçe aktar"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "Dışa aktar & İndir"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Galeri Ekle"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Galeriyi Düzenle"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Temizle"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Hata: Alan kimliği çakışması."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Bu öğeyi silmek istediğinizden emin misiniz?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Daha fazlasını ekleyemezsiniz."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Daha fazlasını kaldıramazsınız."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "İkon Ekle"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "İkonu Kaldır"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Bağlantı Ekle"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Bağlantıyı Düzenle"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Bağlantıyı Kaldır"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Enlem"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Boylam"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Yükle"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Kaldır"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Etkin"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Devre dışı"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Hata: Geçersiz anahtar."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Hata: Yanıt geçerli bir JSON yanıtı değildir."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Hata: Geçersiz terim numarası."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Hata: Bunu yapmak için izniniz yok."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Lütfen geçerli bir e-posta adresi girin."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Lütfen geçerli bir sayı girin."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Bu alan zorunludur."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Lütfen geçerli bir web adresi girin."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Kısa Kod Ekle"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Kısa kod seçin"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Kısa Kodu Ekle"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Kısa kodu buraya yaz..."
vendor/codestar-framework/languages/vi.po CHANGED
@@ -1,664 +1,664 @@
1
- # Copyright (C) 2021 Codestar
2
- # This file is distributed under the same license as the Codestar Framework package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Codestar Framework 2.2.1\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: vi\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=utf-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7.1\n"
15
-
16
- #: classes/admin-options.class.php:224
17
- msgid "Error while saving the changes."
18
- msgstr "Lỗi khi lưu các thay đổi."
19
-
20
- #: classes/admin-options.class.php:284
21
- msgid "Settings successfully imported."
22
- msgstr "Các thiết lập được nhập thành công."
23
-
24
- #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
- msgid "Default settings restored."
26
- msgstr "Các tùy chọn mặc định được khôi phục."
27
-
28
- #: classes/admin-options.class.php:383
29
- msgid "Settings saved."
30
- msgstr "các cài đặt đã được lưu lại"
31
-
32
- #: classes/admin-options.class.php:561
33
- msgid "You have unsaved changes, save your changes!"
34
- msgstr "Bạn có thay đổi chưa được lưu, lưu các thay đổi của bạn!"
35
-
36
- #: classes/admin-options.class.php:563
37
- msgid "show all settings"
38
- msgstr "xem tất cả thiết lập"
39
-
40
- #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
- #: fields/map/map.php:23
42
- msgid "Search..."
43
- msgstr "Tìm kiếm..."
44
-
45
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
- msgid "Save"
47
- msgstr "Lưu thay đổi"
48
-
49
- #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
- msgid "Saving..."
51
- msgstr "Đang lưu..."
52
-
53
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
- msgid "Reset Section"
55
- msgstr "Đặt lại Phần này"
56
-
57
- #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
- msgid "Are you sure to reset this section options?"
59
- msgstr "Bạn có chắc không?"
60
-
61
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
- msgid "Reset All"
63
- msgstr "Đặt lại tất cả"
64
-
65
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
- #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
- #: fields/backup/backup.php:31
68
- msgid "Reset"
69
- msgstr "Đặt lại"
70
-
71
- #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
- msgid "Are you sure you want to reset all settings to default values?"
73
- msgstr "Bạn có chắc không?"
74
-
75
- #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
- #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
- #: fields/select/select.php:113 functions/actions.php:41
79
- msgid "No data available."
80
- msgstr "Không có dữ liệu."
81
-
82
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
- msgid "update post"
84
- msgstr "cập nhật Bài viết"
85
-
86
- #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
- msgid "Cancel"
88
- msgstr "Hủy"
89
-
90
- #: classes/setup.class.php:529
91
- msgid "Are you sure?"
92
- msgstr "Bạn có chắc không?"
93
-
94
- #: classes/setup.class.php:530
95
- msgid "Please enter %s or more characters"
96
- msgstr "Vui lòng nhập %s hoặc nhiều ký tự"
97
-
98
- #: classes/setup.class.php:531
99
- msgid "Searching..."
100
- msgstr "Tìm kiếm..."
101
-
102
- #: classes/setup.class.php:532
103
- msgid "No results found."
104
- msgstr "Không tìm thấy kết quả."
105
-
106
- #: classes/setup.class.php:615
107
- msgid "Oops! Not allowed."
108
- msgstr "Ôi! Không cho phép."
109
-
110
- #: classes/setup.class.php:689 classes/setup.class.php:693
111
- msgid "Field not found!"
112
- msgstr "Không tìm thấy trường!"
113
-
114
- #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
- msgid "Add New"
116
- msgstr "Thêm mới"
117
-
118
- #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
- #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
- #: functions/actions.php:170
121
- msgid "Error: Invalid nonce verification."
122
- msgstr "Lỗi: Xác minh không hợp lệ."
123
-
124
- #: fields/background/background.php:35 fields/media/media.php:57
125
- msgid "Not selected"
126
- msgstr "Không được chọn"
127
-
128
- #: fields/background/background.php:66 fields/date/date.php:31
129
- msgid "From"
130
- msgstr ""
131
-
132
- #: fields/background/background.php:84 fields/date/date.php:32
133
- msgid "To"
134
- msgstr ""
135
-
136
- #: fields/background/background.php:102
137
- msgid "Direction"
138
- msgstr ""
139
-
140
- #: fields/background/background.php:108
141
- msgid "Gradient Direction"
142
- msgstr ""
143
-
144
- #: fields/background/background.php:109
145
- msgid "&#8659; top to bottom"
146
- msgstr ""
147
-
148
- #: fields/background/background.php:110
149
- msgid "&#8658; left to right"
150
- msgstr ""
151
-
152
- #: fields/background/background.php:111
153
- msgid "&#8664; corner top to right"
154
- msgstr ""
155
-
156
- #: fields/background/background.php:112
157
- msgid "&#8665; corner top to left"
158
- msgstr ""
159
-
160
- #: fields/background/background.php:155
161
- msgid "Background Position"
162
- msgstr "Vị trí ảnh nền"
163
-
164
- #: fields/background/background.php:156
165
- msgid "Left Top"
166
- msgstr ""
167
-
168
- #: fields/background/background.php:157
169
- msgid "Left Center"
170
- msgstr ""
171
-
172
- #: fields/background/background.php:158
173
- msgid "Left Bottom"
174
- msgstr ""
175
-
176
- #: fields/background/background.php:159
177
- msgid "Center Top"
178
- msgstr ""
179
-
180
- #: fields/background/background.php:160
181
- msgid "Center Center"
182
- msgstr ""
183
-
184
- #: fields/background/background.php:161
185
- msgid "Center Bottom"
186
- msgstr ""
187
-
188
- #: fields/background/background.php:162
189
- msgid "Right Top"
190
- msgstr ""
191
-
192
- #: fields/background/background.php:163
193
- msgid "Right Center"
194
- msgstr ""
195
-
196
- #: fields/background/background.php:164
197
- msgid "Right Bottom"
198
- msgstr ""
199
-
200
- #: fields/background/background.php:178
201
- msgid "Background Repeat"
202
- msgstr "Cách lặp lại ảnh nền"
203
-
204
- #: fields/background/background.php:179
205
- msgid "Repeat"
206
- msgstr ""
207
-
208
- #: fields/background/background.php:180
209
- msgid "No Repeat"
210
- msgstr ""
211
-
212
- #: fields/background/background.php:181
213
- msgid "Repeat Horizontally"
214
- msgstr ""
215
-
216
- #: fields/background/background.php:182
217
- msgid "Repeat Vertically"
218
- msgstr ""
219
-
220
- #: fields/background/background.php:196
221
- msgid "Background Attachment"
222
- msgstr "Ảnh dán nền"
223
-
224
- #: fields/background/background.php:197
225
- msgid "Scroll"
226
- msgstr ""
227
-
228
- #: fields/background/background.php:198
229
- msgid "Fixed"
230
- msgstr ""
231
-
232
- #: fields/background/background.php:212
233
- msgid "Background Size"
234
- msgstr "Kích thước ảnh nền"
235
-
236
- #: fields/background/background.php:213
237
- msgid "Cover"
238
- msgstr ""
239
-
240
- #: fields/background/background.php:214
241
- msgid "Contain"
242
- msgstr ""
243
-
244
- #: fields/background/background.php:215
245
- msgid "Auto"
246
- msgstr ""
247
-
248
- #: fields/background/background.php:229
249
- msgid "Background Origin"
250
- msgstr "Nguồn gốc xuất xứ"
251
-
252
- #: fields/background/background.php:230 fields/background/background.php:248
253
- msgid "Padding Box"
254
- msgstr ""
255
-
256
- #: fields/background/background.php:231 fields/background/background.php:247
257
- msgid "Border Box"
258
- msgstr ""
259
-
260
- #: fields/background/background.php:232 fields/background/background.php:249
261
- msgid "Content Box"
262
- msgstr ""
263
-
264
- #: fields/background/background.php:246
265
- msgid "Background Clip"
266
- msgstr "Clip nền"
267
-
268
- #: fields/background/background.php:263
269
- msgid "Background Blend Mode"
270
- msgstr ""
271
-
272
- #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
- #: fields/typography/typography.php:175
274
- msgid "Normal"
275
- msgstr ""
276
-
277
- #: fields/background/background.php:265
278
- msgid "Multiply"
279
- msgstr ""
280
-
281
- #: fields/background/background.php:266
282
- msgid "Screen"
283
- msgstr ""
284
-
285
- #: fields/background/background.php:267
286
- msgid "Overlay"
287
- msgstr ""
288
-
289
- #: fields/background/background.php:268
290
- msgid "Darken"
291
- msgstr ""
292
-
293
- #: fields/background/background.php:269
294
- msgid "Lighten"
295
- msgstr ""
296
-
297
- #: fields/background/background.php:270
298
- msgid "Color Dodge"
299
- msgstr ""
300
-
301
- #: fields/background/background.php:271
302
- msgid "Saturation"
303
- msgstr ""
304
-
305
- #: fields/background/background.php:272
306
- msgid "Color"
307
- msgstr ""
308
-
309
- #: fields/background/background.php:273
310
- msgid "Luminosity"
311
- msgstr ""
312
-
313
- #: fields/backup/backup.php:26
314
- msgid "Import"
315
- msgstr "Nhập vào"
316
-
317
- #: fields/backup/backup.php:29
318
- msgid "Export & Download"
319
- msgstr "Xuất ra & Tải xuống"
320
-
321
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
- msgid "top"
323
- msgstr ""
324
-
325
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
- msgid "right"
327
- msgstr ""
328
-
329
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
- msgid "bottom"
331
- msgstr ""
332
-
333
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
- msgid "left"
335
- msgstr ""
336
-
337
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
- msgid "all"
339
- msgstr ""
340
-
341
- #: fields/border/border.php:51 fields/typography/typography.php:203
342
- msgid "Solid"
343
- msgstr ""
344
-
345
- #: fields/border/border.php:52 fields/typography/typography.php:206
346
- msgid "Dashed"
347
- msgstr ""
348
-
349
- #: fields/border/border.php:53 fields/typography/typography.php:205
350
- msgid "Dotted"
351
- msgstr ""
352
-
353
- #: fields/border/border.php:54 fields/typography/typography.php:204
354
- msgid "Double"
355
- msgstr ""
356
-
357
- #: fields/border/border.php:55
358
- msgid "Inset"
359
- msgstr ""
360
-
361
- #: fields/border/border.php:56
362
- msgid "Outset"
363
- msgstr ""
364
-
365
- #: fields/border/border.php:57
366
- msgid "Groove"
367
- msgstr ""
368
-
369
- #: fields/border/border.php:58
370
- msgid "ridge"
371
- msgstr ""
372
-
373
- #: fields/border/border.php:59 fields/typography/typography.php:188
374
- #: fields/typography/typography.php:202
375
- msgid "None"
376
- msgstr ""
377
-
378
- #: fields/dimensions/dimensions.php:22
379
- msgid "width"
380
- msgstr ""
381
-
382
- #: fields/dimensions/dimensions.php:23
383
- msgid "height"
384
- msgstr ""
385
-
386
- #: fields/gallery/gallery.php:20
387
- msgid "Add Gallery"
388
- msgstr "Thêm thư Viện"
389
-
390
- #: fields/gallery/gallery.php:21
391
- msgid "Edit Gallery"
392
- msgstr "Sửa thư Viện"
393
-
394
- #: fields/gallery/gallery.php:22
395
- msgid "Clear"
396
- msgstr "Xóa"
397
-
398
- #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
- msgid "Error: Field ID conflict."
400
- msgstr "Lỗi: Xung đột ID trường."
401
-
402
- #: fields/group/group.php:46 fields/group/group.php:87
403
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
- msgid "Are you sure to delete this item?"
405
- msgstr "Bạn có chắc chắn muốn xóa?"
406
-
407
- #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
- msgid "You cannot add more."
409
- msgstr "Bạn không thể thêm nhiều hơn."
410
-
411
- #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
- msgid "You cannot remove more."
413
- msgstr "Bạn không thể loại bỏ nhiều hơn."
414
-
415
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
- msgid "Add Icon"
417
- msgstr "Thêm Biểu tượng"
418
-
419
- #: fields/icon/icon.php:21
420
- msgid "Remove Icon"
421
- msgstr "Bỏ Biểu tượng"
422
-
423
- #: fields/link/link.php:20
424
- msgid "Add Link"
425
- msgstr "Thêm liên kết"
426
-
427
- #: fields/link/link.php:21
428
- msgid "Edit Link"
429
- msgstr "Chỉnh sửa Liên kết"
430
-
431
- #: fields/link/link.php:22
432
- msgid "Remove Link"
433
- msgstr "Xóa đường dẫn"
434
-
435
- #: fields/link_color/link_color.php:37
436
- msgid "Hover"
437
- msgstr ""
438
-
439
- #: fields/link_color/link_color.php:38
440
- msgid "Active"
441
- msgstr ""
442
-
443
- #: fields/link_color/link_color.php:39
444
- msgid "Visited"
445
- msgstr ""
446
-
447
- #: fields/link_color/link_color.php:40
448
- msgid "Focus"
449
- msgstr ""
450
-
451
- #: fields/map/map.php:24
452
- msgid "Latitude"
453
- msgstr "Vĩ độ"
454
-
455
- #: fields/map/map.php:25
456
- msgid "Longitude"
457
- msgstr "Kinh độ"
458
-
459
- #: fields/media/media.php:23 fields/upload/upload.php:21
460
- msgid "Upload"
461
- msgstr "Tải lên"
462
-
463
- #: fields/media/media.php:24 fields/upload/upload.php:22
464
- msgid "Remove"
465
- msgstr "Xóa bỏ"
466
-
467
- #: fields/sorter/sorter.php:21
468
- msgid "Enabled"
469
- msgstr "Được bật"
470
-
471
- #: fields/sorter/sorter.php:22
472
- msgid "Disabled"
473
- msgstr "Vô hiệu hóa"
474
-
475
- #: fields/switcher/switcher.php:20
476
- msgid "On"
477
- msgstr ""
478
-
479
- #: fields/switcher/switcher.php:21
480
- msgid "Off"
481
- msgstr ""
482
-
483
- #: fields/typography/typography.php:85
484
- msgid "Font Family"
485
- msgstr ""
486
-
487
- #: fields/typography/typography.php:86
488
- msgid "Select a font"
489
- msgstr ""
490
-
491
- #: fields/typography/typography.php:94
492
- msgid "Backup Font Family"
493
- msgstr ""
494
-
495
- #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
- #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
- #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
- #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
- msgid "Default"
500
- msgstr ""
501
-
502
- #: fields/typography/typography.php:119
503
- msgid "Font Style"
504
- msgstr ""
505
-
506
- #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
- msgid "Load Extra Styles"
508
- msgstr ""
509
-
510
- #: fields/typography/typography.php:147
511
- msgid "Subset"
512
- msgstr ""
513
-
514
- #: fields/typography/typography.php:157
515
- msgid "Text Align"
516
- msgstr ""
517
-
518
- #: fields/typography/typography.php:159
519
- msgid "Inherit"
520
- msgstr ""
521
-
522
- #: fields/typography/typography.php:160
523
- msgid "Left"
524
- msgstr ""
525
-
526
- #: fields/typography/typography.php:161
527
- msgid "Center"
528
- msgstr ""
529
-
530
- #: fields/typography/typography.php:162
531
- msgid "Right"
532
- msgstr ""
533
-
534
- #: fields/typography/typography.php:163
535
- msgid "Justify"
536
- msgstr ""
537
-
538
- #: fields/typography/typography.php:164
539
- msgid "Initial"
540
- msgstr ""
541
-
542
- #: fields/typography/typography.php:173
543
- msgid "Font Variant"
544
- msgstr ""
545
-
546
- #: fields/typography/typography.php:176
547
- msgid "Small Caps"
548
- msgstr ""
549
-
550
- #: fields/typography/typography.php:177
551
- msgid "All Small Caps"
552
- msgstr ""
553
-
554
- #: fields/typography/typography.php:186
555
- msgid "Text Transform"
556
- msgstr ""
557
-
558
- #: fields/typography/typography.php:189
559
- msgid "Capitalize"
560
- msgstr ""
561
-
562
- #: fields/typography/typography.php:190
563
- msgid "Uppercase"
564
- msgstr ""
565
-
566
- #: fields/typography/typography.php:191
567
- msgid "Lowercase"
568
- msgstr ""
569
-
570
- #: fields/typography/typography.php:200
571
- msgid "Text Decoration"
572
- msgstr ""
573
-
574
- #: fields/typography/typography.php:207
575
- msgid "Wavy"
576
- msgstr ""
577
-
578
- #: fields/typography/typography.php:208
579
- msgid "Overline"
580
- msgstr ""
581
-
582
- #: fields/typography/typography.php:209
583
- msgid "Line-through"
584
- msgstr ""
585
-
586
- #: fields/typography/typography.php:222
587
- msgid "Font Size"
588
- msgstr ""
589
-
590
- #: fields/typography/typography.php:234
591
- msgid "Line Height"
592
- msgstr ""
593
-
594
- #: fields/typography/typography.php:246
595
- msgid "Letter Spacing"
596
- msgstr ""
597
-
598
- #: fields/typography/typography.php:258
599
- msgid "Word Spacing"
600
- msgstr ""
601
-
602
- #: fields/typography/typography.php:273
603
- msgid "Font Color"
604
- msgstr ""
605
-
606
- #: fields/typography/typography.php:284
607
- msgid "Custom Style"
608
- msgstr ""
609
-
610
- #: fields/typography/typography.php:351
611
- msgid "Custom Web Fonts"
612
- msgstr ""
613
-
614
- #: fields/typography/typography.php:357
615
- msgid "Safe Web Fonts"
616
- msgstr ""
617
-
618
- #: fields/typography/typography.php:377
619
- msgid "Google Web Fonts"
620
- msgstr ""
621
-
622
- #: functions/actions.php:72 functions/actions.php:110
623
- msgid "Error: Invalid key."
624
- msgstr "Lỗi: Key không hợp lệ."
625
-
626
- #: functions/actions.php:114
627
- msgid "Error: The response is not a valid JSON response."
628
- msgstr "Lỗi: Phản hồi không phải là một JSON hợp lệ."
629
-
630
- #: functions/actions.php:174
631
- msgid "Error: Invalid term ID."
632
- msgstr "Lỗi: ID term không hợp lệ."
633
-
634
- #: functions/actions.php:180
635
- msgid "Error: You do not have permission to do that."
636
- msgstr "Lỗi: Bạn không có quyền làm điều đó."
637
-
638
- #: functions/validate.php:14 functions/validate.php:86
639
- msgid "Please enter a valid email address."
640
- msgstr "Vui lòng nhập địa chỉ email hợp lệ."
641
-
642
- #: functions/validate.php:32 functions/validate.php:106
643
- msgid "Please enter a valid number."
644
- msgstr "Vui lòng nhập một số hợp lệ."
645
-
646
- #: functions/validate.php:50 functions/validate.php:126
647
- msgid "This field is required."
648
- msgstr "Mục này là bắt buộc."
649
-
650
- #: functions/validate.php:68 functions/validate.php:146
651
- msgid "Please enter a valid URL."
652
- msgstr "Hãy nhập lại đường dẫn hợp lệ."
653
-
654
- #~ msgid "Add Shortcode"
655
- #~ msgstr "Thêm Shortcode"
656
-
657
- #~ msgid "Select a shortcode"
658
- #~ msgstr "Lựa chọn shortcode"
659
-
660
- #~ msgid "Insert Shortcode"
661
- #~ msgstr "Chèn Shortcode"
662
-
663
- #~ msgid "Write shortcode here..."
664
- #~ msgstr "Nhập shortcode ở đây..."
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Codestar Framework 2.2.1\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: vi\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
+
16
+ #: classes/admin-options.class.php:224
17
+ msgid "Error while saving the changes."
18
+ msgstr "Lỗi khi lưu các thay đổi."
19
+
20
+ #: classes/admin-options.class.php:284
21
+ msgid "Settings successfully imported."
22
+ msgstr "Các thiết lập được nhập thành công."
23
+
24
+ #: classes/admin-options.class.php:296 classes/admin-options.class.php:312
25
+ msgid "Default settings restored."
26
+ msgstr "Các tùy chọn mặc định được khôi phục."
27
+
28
+ #: classes/admin-options.class.php:383
29
+ msgid "Settings saved."
30
+ msgstr "các cài đặt đã được lưu lại"
31
+
32
+ #: classes/admin-options.class.php:561
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "Bạn có thay đổi chưa được lưu, lưu các thay đổi của bạn!"
35
+
36
+ #: classes/admin-options.class.php:563
37
+ msgid "show all settings"
38
+ msgstr "xem tất cả thiết lập"
39
+
40
+ #: classes/admin-options.class.php:565 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "Tìm kiếm..."
44
+
45
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
46
+ msgid "Save"
47
+ msgstr "Lưu thay đổi"
48
+
49
+ #: classes/admin-options.class.php:568 classes/admin-options.class.php:691
50
+ msgid "Saving..."
51
+ msgstr "Đang lưu..."
52
+
53
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
54
+ msgid "Reset Section"
55
+ msgstr "Đặt lại Phần này"
56
+
57
+ #: classes/admin-options.class.php:569 classes/admin-options.class.php:692
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "Bạn có chắc không?"
60
+
61
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
62
+ msgid "Reset All"
63
+ msgstr "Đặt lại tất cả"
64
+
65
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
66
+ #: classes/comment-options.class.php:213 classes/metabox-options.class.php:282
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "Đặt lại"
70
+
71
+ #: classes/admin-options.class.php:570 classes/admin-options.class.php:693
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "Bạn có chắc không?"
74
+
75
+ #: classes/admin-options.class.php:668 classes/comment-options.class.php:196
76
+ #: classes/metabox-options.class.php:265 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "Không có dữ liệu."
81
+
82
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
83
+ msgid "update post"
84
+ msgstr "cập nhật Bài viết"
85
+
86
+ #: classes/comment-options.class.php:214 classes/metabox-options.class.php:283
87
+ msgid "Cancel"
88
+ msgstr "Hủy"
89
+
90
+ #: classes/setup.class.php:529
91
+ msgid "Are you sure?"
92
+ msgstr "Bạn có chắc không?"
93
+
94
+ #: classes/setup.class.php:530
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "Vui lòng nhập %s hoặc nhiều ký tự"
97
+
98
+ #: classes/setup.class.php:531
99
+ msgid "Searching..."
100
+ msgstr "Tìm kiếm..."
101
+
102
+ #: classes/setup.class.php:532
103
+ msgid "No results found."
104
+ msgstr "Không tìm thấy kết quả."
105
+
106
+ #: classes/setup.class.php:615
107
+ msgid "Oops! Not allowed."
108
+ msgstr "Ôi! Không cho phép."
109
+
110
+ #: classes/setup.class.php:689 classes/setup.class.php:693
111
+ msgid "Field not found!"
112
+ msgstr "Không tìm thấy trường!"
113
+
114
+ #: classes/shortcode-options.class.php:251 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "Thêm mới"
117
+
118
+ #: classes/shortcode-options.class.php:288 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "Lỗi: Xác minh không hợp lệ."
123
+
124
+ #: fields/background/background.php:35 fields/media/media.php:57
125
+ msgid "Not selected"
126
+ msgstr "Không được chọn"
127
+
128
+ #: fields/background/background.php:66 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr ""
131
+
132
+ #: fields/background/background.php:84 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr ""
135
+
136
+ #: fields/background/background.php:102
137
+ msgid "Direction"
138
+ msgstr ""
139
+
140
+ #: fields/background/background.php:108
141
+ msgid "Gradient Direction"
142
+ msgstr ""
143
+
144
+ #: fields/background/background.php:109
145
+ msgid "&#8659; top to bottom"
146
+ msgstr ""
147
+
148
+ #: fields/background/background.php:110
149
+ msgid "&#8658; left to right"
150
+ msgstr ""
151
+
152
+ #: fields/background/background.php:111
153
+ msgid "&#8664; corner top to right"
154
+ msgstr ""
155
+
156
+ #: fields/background/background.php:112
157
+ msgid "&#8665; corner top to left"
158
+ msgstr ""
159
+
160
+ #: fields/background/background.php:155
161
+ msgid "Background Position"
162
+ msgstr "Vị trí ảnh nền"
163
+
164
+ #: fields/background/background.php:156
165
+ msgid "Left Top"
166
+ msgstr ""
167
+
168
+ #: fields/background/background.php:157
169
+ msgid "Left Center"
170
+ msgstr ""
171
+
172
+ #: fields/background/background.php:158
173
+ msgid "Left Bottom"
174
+ msgstr ""
175
+
176
+ #: fields/background/background.php:159
177
+ msgid "Center Top"
178
+ msgstr ""
179
+
180
+ #: fields/background/background.php:160
181
+ msgid "Center Center"
182
+ msgstr ""
183
+
184
+ #: fields/background/background.php:161
185
+ msgid "Center Bottom"
186
+ msgstr ""
187
+
188
+ #: fields/background/background.php:162
189
+ msgid "Right Top"
190
+ msgstr ""
191
+
192
+ #: fields/background/background.php:163
193
+ msgid "Right Center"
194
+ msgstr ""
195
+
196
+ #: fields/background/background.php:164
197
+ msgid "Right Bottom"
198
+ msgstr ""
199
+
200
+ #: fields/background/background.php:178
201
+ msgid "Background Repeat"
202
+ msgstr "Cách lặp lại ảnh nền"
203
+
204
+ #: fields/background/background.php:179
205
+ msgid "Repeat"
206
+ msgstr ""
207
+
208
+ #: fields/background/background.php:180
209
+ msgid "No Repeat"
210
+ msgstr ""
211
+
212
+ #: fields/background/background.php:181
213
+ msgid "Repeat Horizontally"
214
+ msgstr ""
215
+
216
+ #: fields/background/background.php:182
217
+ msgid "Repeat Vertically"
218
+ msgstr ""
219
+
220
+ #: fields/background/background.php:196
221
+ msgid "Background Attachment"
222
+ msgstr "Ảnh dán nền"
223
+
224
+ #: fields/background/background.php:197
225
+ msgid "Scroll"
226
+ msgstr ""
227
+
228
+ #: fields/background/background.php:198
229
+ msgid "Fixed"
230
+ msgstr ""
231
+
232
+ #: fields/background/background.php:212
233
+ msgid "Background Size"
234
+ msgstr "Kích thước ảnh nền"
235
+
236
+ #: fields/background/background.php:213
237
+ msgid "Cover"
238
+ msgstr ""
239
+
240
+ #: fields/background/background.php:214
241
+ msgid "Contain"
242
+ msgstr ""
243
+
244
+ #: fields/background/background.php:215
245
+ msgid "Auto"
246
+ msgstr ""
247
+
248
+ #: fields/background/background.php:229
249
+ msgid "Background Origin"
250
+ msgstr "Nguồn gốc xuất xứ"
251
+
252
+ #: fields/background/background.php:230 fields/background/background.php:248
253
+ msgid "Padding Box"
254
+ msgstr ""
255
+
256
+ #: fields/background/background.php:231 fields/background/background.php:247
257
+ msgid "Border Box"
258
+ msgstr ""
259
+
260
+ #: fields/background/background.php:232 fields/background/background.php:249
261
+ msgid "Content Box"
262
+ msgstr ""
263
+
264
+ #: fields/background/background.php:246
265
+ msgid "Background Clip"
266
+ msgstr "Clip nền"
267
+
268
+ #: fields/background/background.php:263
269
+ msgid "Background Blend Mode"
270
+ msgstr ""
271
+
272
+ #: fields/background/background.php:264 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:175
274
+ msgid "Normal"
275
+ msgstr ""
276
+
277
+ #: fields/background/background.php:265
278
+ msgid "Multiply"
279
+ msgstr ""
280
+
281
+ #: fields/background/background.php:266
282
+ msgid "Screen"
283
+ msgstr ""
284
+
285
+ #: fields/background/background.php:267
286
+ msgid "Overlay"
287
+ msgstr ""
288
+
289
+ #: fields/background/background.php:268
290
+ msgid "Darken"
291
+ msgstr ""
292
+
293
+ #: fields/background/background.php:269
294
+ msgid "Lighten"
295
+ msgstr ""
296
+
297
+ #: fields/background/background.php:270
298
+ msgid "Color Dodge"
299
+ msgstr ""
300
+
301
+ #: fields/background/background.php:271
302
+ msgid "Saturation"
303
+ msgstr ""
304
+
305
+ #: fields/background/background.php:272
306
+ msgid "Color"
307
+ msgstr ""
308
+
309
+ #: fields/background/background.php:273
310
+ msgid "Luminosity"
311
+ msgstr ""
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "Nhập vào"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "Xuất ra & Tải xuống"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr ""
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr ""
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr ""
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr ""
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr ""
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:203
342
+ msgid "Solid"
343
+ msgstr ""
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:206
346
+ msgid "Dashed"
347
+ msgstr ""
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:205
350
+ msgid "Dotted"
351
+ msgstr ""
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:204
354
+ msgid "Double"
355
+ msgstr ""
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr ""
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr ""
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr ""
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr ""
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:188
374
+ #: fields/typography/typography.php:202
375
+ msgid "None"
376
+ msgstr ""
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr ""
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr ""
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "Thêm thư Viện"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "Sửa thư Viện"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "Xóa"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "Lỗi: Xung đột ID trường."
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "Bạn có chắc chắn muốn xóa?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "Bạn không thể thêm nhiều hơn."
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "Bạn không thể loại bỏ nhiều hơn."
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "Thêm Biểu tượng"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "Bỏ Biểu tượng"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "Thêm liên kết"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "Chỉnh sửa Liên kết"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "Xóa đường dẫn"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr ""
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr ""
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr ""
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr ""
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "Vĩ độ"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "Kinh độ"
458
+
459
+ #: fields/media/media.php:23 fields/upload/upload.php:21
460
+ msgid "Upload"
461
+ msgstr "Tải lên"
462
+
463
+ #: fields/media/media.php:24 fields/upload/upload.php:22
464
+ msgid "Remove"
465
+ msgstr "Xóa bỏ"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "Được bật"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "Vô hiệu hóa"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr ""
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr ""
482
+
483
+ #: fields/typography/typography.php:85
484
+ msgid "Font Family"
485
+ msgstr ""
486
+
487
+ #: fields/typography/typography.php:86
488
+ msgid "Select a font"
489
+ msgstr ""
490
+
491
+ #: fields/typography/typography.php:94
492
+ msgid "Backup Font Family"
493
+ msgstr ""
494
+
495
+ #: fields/typography/typography.php:108 fields/typography/typography.php:121
496
+ #: fields/typography/typography.php:134 fields/typography/typography.php:149
497
+ #: fields/typography/typography.php:165 fields/typography/typography.php:178
498
+ #: fields/typography/typography.php:192 fields/typography/typography.php:210
499
+ msgid "Default"
500
+ msgstr ""
501
+
502
+ #: fields/typography/typography.php:119
503
+ msgid "Font Style"
504
+ msgstr ""
505
+
506
+ #: fields/typography/typography.php:133 fields/typography/typography.php:134
507
+ msgid "Load Extra Styles"
508
+ msgstr ""
509
+
510
+ #: fields/typography/typography.php:147
511
+ msgid "Subset"
512
+ msgstr ""
513
+
514
+ #: fields/typography/typography.php:157
515
+ msgid "Text Align"
516
+ msgstr ""
517
+
518
+ #: fields/typography/typography.php:159
519
+ msgid "Inherit"
520
+ msgstr ""
521
+
522
+ #: fields/typography/typography.php:160
523
+ msgid "Left"
524
+ msgstr ""
525
+
526
+ #: fields/typography/typography.php:161
527
+ msgid "Center"
528
+ msgstr ""
529
+
530
+ #: fields/typography/typography.php:162
531
+ msgid "Right"
532
+ msgstr ""
533
+
534
+ #: fields/typography/typography.php:163
535
+ msgid "Justify"
536
+ msgstr ""
537
+
538
+ #: fields/typography/typography.php:164
539
+ msgid "Initial"
540
+ msgstr ""
541
+
542
+ #: fields/typography/typography.php:173
543
+ msgid "Font Variant"
544
+ msgstr ""
545
+
546
+ #: fields/typography/typography.php:176
547
+ msgid "Small Caps"
548
+ msgstr ""
549
+
550
+ #: fields/typography/typography.php:177
551
+ msgid "All Small Caps"
552
+ msgstr ""
553
+
554
+ #: fields/typography/typography.php:186
555
+ msgid "Text Transform"
556
+ msgstr ""
557
+
558
+ #: fields/typography/typography.php:189
559
+ msgid "Capitalize"
560
+ msgstr ""
561
+
562
+ #: fields/typography/typography.php:190
563
+ msgid "Uppercase"
564
+ msgstr ""
565
+
566
+ #: fields/typography/typography.php:191
567
+ msgid "Lowercase"
568
+ msgstr ""
569
+
570
+ #: fields/typography/typography.php:200
571
+ msgid "Text Decoration"
572
+ msgstr ""
573
+
574
+ #: fields/typography/typography.php:207
575
+ msgid "Wavy"
576
+ msgstr ""
577
+
578
+ #: fields/typography/typography.php:208
579
+ msgid "Overline"
580
+ msgstr ""
581
+
582
+ #: fields/typography/typography.php:209
583
+ msgid "Line-through"
584
+ msgstr ""
585
+
586
+ #: fields/typography/typography.php:222
587
+ msgid "Font Size"
588
+ msgstr ""
589
+
590
+ #: fields/typography/typography.php:234
591
+ msgid "Line Height"
592
+ msgstr ""
593
+
594
+ #: fields/typography/typography.php:246
595
+ msgid "Letter Spacing"
596
+ msgstr ""
597
+
598
+ #: fields/typography/typography.php:258
599
+ msgid "Word Spacing"
600
+ msgstr ""
601
+
602
+ #: fields/typography/typography.php:273
603
+ msgid "Font Color"
604
+ msgstr ""
605
+
606
+ #: fields/typography/typography.php:284
607
+ msgid "Custom Style"
608
+ msgstr ""
609
+
610
+ #: fields/typography/typography.php:351
611
+ msgid "Custom Web Fonts"
612
+ msgstr ""
613
+
614
+ #: fields/typography/typography.php:357
615
+ msgid "Safe Web Fonts"
616
+ msgstr ""
617
+
618
+ #: fields/typography/typography.php:377
619
+ msgid "Google Web Fonts"
620
+ msgstr ""
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "Lỗi: Key không hợp lệ."
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "Lỗi: Phản hồi không phải là một JSON hợp lệ."
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "Lỗi: ID term không hợp lệ."
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "Lỗi: Bạn không có quyền làm điều đó."
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "Vui lòng nhập địa chỉ email hợp lệ."
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "Vui lòng nhập một số hợp lệ."
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "Mục này là bắt buộc."
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "Hãy nhập lại đường dẫn hợp lệ."
653
+
654
+ #~ msgid "Add Shortcode"
655
+ #~ msgstr "Thêm Shortcode"
656
+
657
+ #~ msgid "Select a shortcode"
658
+ #~ msgstr "Lựa chọn shortcode"
659
+
660
+ #~ msgid "Insert Shortcode"
661
+ #~ msgstr "Chèn Shortcode"
662
+
663
+ #~ msgid "Write shortcode here..."
664
+ #~ msgstr "Nhập shortcode ở đây..."
vendor/codestar-framework/languages/zh_CN.mo CHANGED
Binary file
vendor/codestar-framework/languages/zh_CN.po CHANGED
@@ -1,14 +1,672 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2021-03-28 18:50+0300\n"
5
- "PO-Revision-Date: 2021-03-28 18:51+0300\n"
6
- "Last-Translator: \n"
7
  "Language-Team: \n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 2.3\n"
12
- "X-Poedit-Basepath: .\n"
13
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "Language: en\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 Codestar
2
+ # This file is distributed under the same license as the Codestar Framework package.
3
  msgid ""
4
  msgstr ""
5
+ "POT-Creation-Date: 2021-06-25 12:32:35+00:00\n"
6
+ "PO-Revision-Date: 2021-08-19 12:18+0800\n"
7
+ "Last-Translator: Seaton Jiang <seatonjiang@vtrois.com>\n"
 
8
  "Language-Team: \n"
9
+ "Language: zh_CN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.4.3\n"
14
+ "Project-Id-Version: \n"
15
+
16
+ #: classes/admin-options.class.php:226
17
+ msgid "Error while saving the changes."
18
+ msgstr "保存失败"
19
+
20
+ #: classes/admin-options.class.php:286
21
+ msgid "Settings successfully imported."
22
+ msgstr "导入成功"
23
+
24
+ #: classes/admin-options.class.php:298 classes/admin-options.class.php:314
25
+ msgid "Default settings restored."
26
+ msgstr "恢复完成"
27
+
28
+ #: classes/admin-options.class.php:385
29
+ msgid "Settings saved."
30
+ msgstr "保存成功"
31
+
32
+ #: classes/admin-options.class.php:565
33
+ msgid "You have unsaved changes, save your changes!"
34
+ msgstr "配置发生改变,请勿忘记保存!"
35
+
36
+ #: classes/admin-options.class.php:567
37
+ msgid "show all settings"
38
+ msgstr "显示所有设置"
39
+
40
+ #: classes/admin-options.class.php:569 fields/icon/icon.php:57
41
+ #: fields/map/map.php:23
42
+ msgid "Search..."
43
+ msgstr "请输入关键词"
44
+
45
+ #: classes/admin-options.class.php:572 classes/admin-options.class.php:695
46
+ msgid "Save"
47
+ msgstr "保存配置"
48
+
49
+ #: classes/admin-options.class.php:572 classes/admin-options.class.php:695
50
+ msgid "Saving..."
51
+ msgstr "正在保存"
52
+
53
+ #: classes/admin-options.class.php:573 classes/admin-options.class.php:696
54
+ msgid "Reset Section"
55
+ msgstr "恢复此页"
56
+
57
+ #: classes/admin-options.class.php:573 classes/admin-options.class.php:696
58
+ msgid "Are you sure to reset this section options?"
59
+ msgstr "单击「确定」进行恢复,当前页面的配置将会丢失!"
60
+
61
+ #: classes/admin-options.class.php:574 classes/admin-options.class.php:697
62
+ msgid "Reset All"
63
+ msgstr "恢复全部"
64
+
65
+ #: classes/admin-options.class.php:574 classes/admin-options.class.php:697
66
+ #: classes/comment-options.class.php:216 classes/metabox-options.class.php:294
67
+ #: fields/backup/backup.php:31
68
+ msgid "Reset"
69
+ msgstr "恢复默认"
70
+
71
+ #: classes/admin-options.class.php:574 classes/admin-options.class.php:697
72
+ msgid "Are you sure you want to reset all settings to default values?"
73
+ msgstr "单击「确定」进行恢复,所有页面的配置都将丢失!"
74
+
75
+ #: classes/admin-options.class.php:672 classes/comment-options.class.php:199
76
+ #: classes/metabox-options.class.php:277 fields/button_set/button_set.php:56
77
+ #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
78
+ #: fields/select/select.php:113 functions/actions.php:41
79
+ msgid "No data available."
80
+ msgstr "没有可用数据"
81
+
82
+ #: classes/comment-options.class.php:217 classes/metabox-options.class.php:295
83
+ msgid "update post"
84
+ msgstr "更新文章"
85
+
86
+ #: classes/comment-options.class.php:217 classes/metabox-options.class.php:295
87
+ msgid "Cancel"
88
+ msgstr "取消"
89
+
90
+ #: classes/setup.class.php:592
91
+ msgid "Are you sure?"
92
+ msgstr "单击「确定」进行下一步操作,该操作可能会丢失部分配置!"
93
+
94
+ #: classes/setup.class.php:593
95
+ msgid "Please enter %s or more characters"
96
+ msgstr "请输入 %s 或更多字符"
97
+
98
+ #: classes/setup.class.php:594
99
+ msgid "Searching..."
100
+ msgstr "搜索中..."
101
+
102
+ #: classes/setup.class.php:595
103
+ msgid "No results found."
104
+ msgstr "未找到结果。"
105
+
106
+ #: classes/setup.class.php:696
107
+ msgid "Oops! Not allowed."
108
+ msgstr "哎呀!不允许。"
109
+
110
+ #: classes/setup.class.php:768 classes/setup.class.php:772
111
+ msgid "Field not found!"
112
+ msgstr "没有找到任何数据"
113
+
114
+ #: classes/shortcode-options.class.php:253 fields/group/group.php:23
115
+ msgid "Add New"
116
+ msgstr "新增"
117
+
118
+ #: classes/shortcode-options.class.php:290 functions/actions.php:16
119
+ #: functions/actions.php:68 functions/actions.php:106 functions/actions.php:141
120
+ #: functions/actions.php:170
121
+ msgid "Error: Invalid nonce verification."
122
+ msgstr "错误: 无效的nonce验证。"
123
+
124
+ #: fields/background/background.php:36 fields/media/media.php:59
125
+ msgid "Not selected"
126
+ msgstr "未选择"
127
+
128
+ #: fields/background/background.php:72 fields/date/date.php:31
129
+ msgid "From"
130
+ msgstr "从"
131
+
132
+ #: fields/background/background.php:90 fields/date/date.php:32
133
+ msgid "To"
134
+ msgstr "到"
135
+
136
+ #: fields/background/background.php:108
137
+ msgid "Direction"
138
+ msgstr "方向"
139
+
140
+ #: fields/background/background.php:114
141
+ msgid "Gradient Direction"
142
+ msgstr "渐变方向"
143
+
144
+ #: fields/background/background.php:115
145
+ msgid "&#8659; top to bottom"
146
+ msgstr "&#8659; 从上到下"
147
+
148
+ #: fields/background/background.php:116
149
+ msgid "&#8658; left to right"
150
+ msgstr "&#8658;从左到右"
151
+
152
+ #: fields/background/background.php:117
153
+ msgid "&#8664; corner top to right"
154
+ msgstr "&#8664; 右上角"
155
+
156
+ #: fields/background/background.php:118
157
+ msgid "&#8665; corner top to left"
158
+ msgstr "&#8664; 左上角"
159
+
160
+ #: fields/background/background.php:161
161
+ msgid "Background Position"
162
+ msgstr "背景位置"
163
+
164
+ #: fields/background/background.php:162
165
+ msgid "Left Top"
166
+ msgstr "左上"
167
+
168
+ #: fields/background/background.php:163
169
+ msgid "Left Center"
170
+ msgstr "左中"
171
+
172
+ #: fields/background/background.php:164
173
+ msgid "Left Bottom"
174
+ msgstr "左下"
175
+
176
+ #: fields/background/background.php:165
177
+ msgid "Center Top"
178
+ msgstr "中上"
179
+
180
+ #: fields/background/background.php:166
181
+ msgid "Center Center"
182
+ msgstr "居中"
183
+
184
+ #: fields/background/background.php:167
185
+ msgid "Center Bottom"
186
+ msgstr "中下"
187
+
188
+ #: fields/background/background.php:168
189
+ msgid "Right Top"
190
+ msgstr "右上"
191
+
192
+ #: fields/background/background.php:169
193
+ msgid "Right Center"
194
+ msgstr "右中"
195
+
196
+ #: fields/background/background.php:170
197
+ msgid "Right Bottom"
198
+ msgstr "右下"
199
+
200
+ #: fields/background/background.php:184
201
+ msgid "Background Repeat"
202
+ msgstr "背景重复"
203
+
204
+ #: fields/background/background.php:185
205
+ msgid "Repeat"
206
+ msgstr "重复"
207
+
208
+ #: fields/background/background.php:186
209
+ msgid "No Repeat"
210
+ msgstr "不重复"
211
+
212
+ #: fields/background/background.php:187
213
+ msgid "Repeat Horizontally"
214
+ msgstr "水平重复"
215
+
216
+ #: fields/background/background.php:188
217
+ msgid "Repeat Vertically"
218
+ msgstr "垂直重复"
219
+
220
+ #: fields/background/background.php:202
221
+ msgid "Background Attachment"
222
+ msgstr "背景附件"
223
+
224
+ #: fields/background/background.php:203
225
+ msgid "Scroll"
226
+ msgstr "滚动"
227
+
228
+ #: fields/background/background.php:204
229
+ msgid "Fixed"
230
+ msgstr "固定"
231
+
232
+ #: fields/background/background.php:218
233
+ msgid "Background Size"
234
+ msgstr "背景大小"
235
+
236
+ #: fields/background/background.php:219
237
+ msgid "Cover"
238
+ msgstr "覆盖"
239
+
240
+ #: fields/background/background.php:220
241
+ msgid "Contain"
242
+ msgstr "包含"
243
+
244
+ #: fields/background/background.php:221
245
+ msgid "Auto"
246
+ msgstr "自动"
247
+
248
+ #: fields/background/background.php:235
249
+ msgid "Background Origin"
250
+ msgstr "背景起源"
251
+
252
+ #: fields/background/background.php:236 fields/background/background.php:254
253
+ msgid "Padding Box"
254
+ msgstr "框内边距"
255
+
256
+ #: fields/background/background.php:237 fields/background/background.php:253
257
+ msgid "Border Box"
258
+ msgstr "边框"
259
+
260
+ #: fields/background/background.php:238 fields/background/background.php:255
261
+ msgid "Content Box"
262
+ msgstr "内容框"
263
+
264
+ #: fields/background/background.php:252
265
+ msgid "Background Clip"
266
+ msgstr "背景剪辑"
267
+
268
+ #: fields/background/background.php:269
269
+ msgid "Background Blend Mode"
270
+ msgstr "背景混合模式"
271
+
272
+ #: fields/background/background.php:270 fields/link_color/link_color.php:36
273
+ #: fields/typography/typography.php:186
274
+ msgid "Normal"
275
+ msgstr "正常"
276
+
277
+ #: fields/background/background.php:271
278
+ msgid "Multiply"
279
+ msgstr "乘"
280
+
281
+ #: fields/background/background.php:272
282
+ msgid "Screen"
283
+ msgstr "屏幕"
284
+
285
+ #: fields/background/background.php:273
286
+ msgid "Overlay"
287
+ msgstr "覆盖"
288
+
289
+ #: fields/background/background.php:274
290
+ msgid "Darken"
291
+ msgstr "变黑"
292
+
293
+ #: fields/background/background.php:275
294
+ msgid "Lighten"
295
+ msgstr "减轻"
296
+
297
+ #: fields/background/background.php:276
298
+ msgid "Color Dodge"
299
+ msgstr "颜色减淡"
300
+
301
+ #: fields/background/background.php:277
302
+ msgid "Saturation"
303
+ msgstr "饱和度"
304
+
305
+ #: fields/background/background.php:278
306
+ msgid "Color"
307
+ msgstr "颜色"
308
+
309
+ #: fields/background/background.php:279
310
+ msgid "Luminosity"
311
+ msgstr "光度"
312
+
313
+ #: fields/backup/backup.php:26
314
+ msgid "Import"
315
+ msgstr "导入"
316
+
317
+ #: fields/backup/backup.php:29
318
+ msgid "Export & Download"
319
+ msgstr "导出和下载"
320
+
321
+ #: fields/border/border.php:25 fields/spacing/spacing.php:25
322
+ msgid "top"
323
+ msgstr "顶部"
324
+
325
+ #: fields/border/border.php:26 fields/spacing/spacing.php:26
326
+ msgid "right"
327
+ msgstr "右"
328
+
329
+ #: fields/border/border.php:27 fields/spacing/spacing.php:27
330
+ msgid "bottom"
331
+ msgstr "底部"
332
+
333
+ #: fields/border/border.php:28 fields/spacing/spacing.php:28
334
+ msgid "left"
335
+ msgstr "左"
336
+
337
+ #: fields/border/border.php:29 fields/spacing/spacing.php:29
338
+ msgid "all"
339
+ msgstr "所有"
340
+
341
+ #: fields/border/border.php:51 fields/typography/typography.php:214
342
+ msgid "Solid"
343
+ msgstr "实线"
344
+
345
+ #: fields/border/border.php:52 fields/typography/typography.php:217
346
+ msgid "Dashed"
347
+ msgstr "虚线"
348
+
349
+ #: fields/border/border.php:53 fields/typography/typography.php:216
350
+ msgid "Dotted"
351
+ msgstr "点线"
352
+
353
+ #: fields/border/border.php:54 fields/typography/typography.php:215
354
+ msgid "Double"
355
+ msgstr "双线"
356
+
357
+ #: fields/border/border.php:55
358
+ msgid "Inset"
359
+ msgstr "插入"
360
+
361
+ #: fields/border/border.php:56
362
+ msgid "Outset"
363
+ msgstr "开始"
364
+
365
+ #: fields/border/border.php:57
366
+ msgid "Groove"
367
+ msgstr "凹槽"
368
+
369
+ #: fields/border/border.php:58
370
+ msgid "ridge"
371
+ msgstr "凸出"
372
+
373
+ #: fields/border/border.php:59 fields/typography/typography.php:199
374
+ #: fields/typography/typography.php:213
375
+ msgid "None"
376
+ msgstr "无"
377
+
378
+ #: fields/dimensions/dimensions.php:22
379
+ msgid "width"
380
+ msgstr "宽度"
381
+
382
+ #: fields/dimensions/dimensions.php:23
383
+ msgid "height"
384
+ msgstr "高度"
385
+
386
+ #: fields/gallery/gallery.php:20
387
+ msgid "Add Gallery"
388
+ msgstr "添加图库"
389
+
390
+ #: fields/gallery/gallery.php:21
391
+ msgid "Edit Gallery"
392
+ msgstr "编辑图库"
393
+
394
+ #: fields/gallery/gallery.php:22
395
+ msgid "Clear"
396
+ msgstr "清除"
397
+
398
+ #: fields/group/group.php:35 fields/repeater/repeater.php:27
399
+ msgid "Error: Field ID conflict."
400
+ msgstr "错误:字段ID冲突。"
401
+
402
+ #: fields/group/group.php:46 fields/group/group.php:87
403
+ #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
404
+ msgid "Are you sure to delete this item?"
405
+ msgstr "确定要删除这个项目吗?"
406
+
407
+ #: fields/group/group.php:121 fields/repeater/repeater.php:89
408
+ msgid "You cannot add more."
409
+ msgstr "无法添加更多"
410
+
411
+ #: fields/group/group.php:122 fields/repeater/repeater.php:90
412
+ msgid "You cannot remove more."
413
+ msgstr "无法删除更多"
414
+
415
+ #: fields/icon/icon.php:20 fields/icon/icon.php:53
416
+ msgid "Add Icon"
417
+ msgstr "添加图标"
418
+
419
+ #: fields/icon/icon.php:21
420
+ msgid "Remove Icon"
421
+ msgstr "删除图标"
422
+
423
+ #: fields/link/link.php:20
424
+ msgid "Add Link"
425
+ msgstr "添加链接"
426
+
427
+ #: fields/link/link.php:21
428
+ msgid "Edit Link"
429
+ msgstr "编辑链接"
430
+
431
+ #: fields/link/link.php:22
432
+ msgid "Remove Link"
433
+ msgstr "移除链接"
434
+
435
+ #: fields/link_color/link_color.php:37
436
+ msgid "Hover"
437
+ msgstr "悬停"
438
+
439
+ #: fields/link_color/link_color.php:38
440
+ msgid "Active"
441
+ msgstr "启用"
442
+
443
+ #: fields/link_color/link_color.php:39
444
+ msgid "Visited"
445
+ msgstr "访问"
446
+
447
+ #: fields/link_color/link_color.php:40
448
+ msgid "Focus"
449
+ msgstr "焦点"
450
+
451
+ #: fields/map/map.php:24
452
+ msgid "Latitude"
453
+ msgstr "纬度"
454
+
455
+ #: fields/map/map.php:25
456
+ msgid "Longitude"
457
+ msgstr "经度"
458
+
459
+ #: fields/media/media.php:25 fields/upload/upload.php:25
460
+ msgid "Upload"
461
+ msgstr "上传"
462
+
463
+ #: fields/media/media.php:26 fields/upload/upload.php:26
464
+ msgid "Remove"
465
+ msgstr "删除"
466
+
467
+ #: fields/sorter/sorter.php:21
468
+ msgid "Enabled"
469
+ msgstr "启用"
470
+
471
+ #: fields/sorter/sorter.php:22
472
+ msgid "Disabled"
473
+ msgstr "禁用"
474
+
475
+ #: fields/switcher/switcher.php:20
476
+ msgid "On"
477
+ msgstr "启用"
478
+
479
+ #: fields/switcher/switcher.php:21
480
+ msgid "Off"
481
+ msgstr "禁用"
482
+
483
+ #: fields/typography/typography.php:96
484
+ msgid "Font Family"
485
+ msgstr "字体"
486
+
487
+ #: fields/typography/typography.php:97
488
+ msgid "Select a font"
489
+ msgstr "选择字体"
490
+
491
+ #: fields/typography/typography.php:105
492
+ msgid "Backup Font Family"
493
+ msgstr "备份字体系列"
494
+
495
+ #: fields/typography/typography.php:119 fields/typography/typography.php:132
496
+ #: fields/typography/typography.php:145 fields/typography/typography.php:160
497
+ #: fields/typography/typography.php:176 fields/typography/typography.php:189
498
+ #: fields/typography/typography.php:203 fields/typography/typography.php:221
499
+ msgid "Default"
500
+ msgstr "默认"
501
+
502
+ #: fields/typography/typography.php:130
503
+ msgid "Font Style"
504
+ msgstr "字体样式"
505
+
506
+ #: fields/typography/typography.php:144 fields/typography/typography.php:145
507
+ msgid "Load Extra Styles"
508
+ msgstr "加载额外样式"
509
+
510
+ #: fields/typography/typography.php:158
511
+ msgid "Subset"
512
+ msgstr "子集"
513
+
514
+ #: fields/typography/typography.php:168
515
+ msgid "Text Align"
516
+ msgstr "文本对齐"
517
+
518
+ #: fields/typography/typography.php:170
519
+ msgid "Inherit"
520
+ msgstr "继承"
521
+
522
+ #: fields/typography/typography.php:171
523
+ msgid "Left"
524
+ msgstr "左侧"
525
+
526
+ #: fields/typography/typography.php:172
527
+ msgid "Center"
528
+ msgstr "居中"
529
+
530
+ #: fields/typography/typography.php:173
531
+ msgid "Right"
532
+ msgstr "右侧"
533
+
534
+ #: fields/typography/typography.php:174
535
+ msgid "Justify"
536
+ msgstr "两端对齐"
537
+
538
+ #: fields/typography/typography.php:175
539
+ msgid "Initial"
540
+ msgstr "初始"
541
+
542
+ #: fields/typography/typography.php:184
543
+ msgid "Font Variant"
544
+ msgstr "字体变体"
545
+
546
+ #: fields/typography/typography.php:187
547
+ msgid "Small Caps"
548
+ msgstr "小写"
549
+
550
+ #: fields/typography/typography.php:188
551
+ msgid "All Small Caps"
552
+ msgstr "所有字母小写"
553
+
554
+ #: fields/typography/typography.php:197
555
+ msgid "Text Transform"
556
+ msgstr "文本转换"
557
+
558
+ #: fields/typography/typography.php:200
559
+ msgid "Capitalize"
560
+ msgstr "大写"
561
+
562
+ #: fields/typography/typography.php:201
563
+ msgid "Uppercase"
564
+ msgstr "大写"
565
+
566
+ #: fields/typography/typography.php:202
567
+ msgid "Lowercase"
568
+ msgstr "小写"
569
+
570
+ #: fields/typography/typography.php:211
571
+ msgid "Text Decoration"
572
+ msgstr "文本装饰"
573
+
574
+ #: fields/typography/typography.php:218
575
+ msgid "Wavy"
576
+ msgstr "波浪"
577
+
578
+ #: fields/typography/typography.php:219
579
+ msgid "Overline"
580
+ msgstr "上划线"
581
+
582
+ #: fields/typography/typography.php:220
583
+ msgid "Line-through"
584
+ msgstr "删除线"
585
+
586
+ #: fields/typography/typography.php:233
587
+ msgid "Font Size"
588
+ msgstr "字体大小"
589
+
590
+ #: fields/typography/typography.php:245
591
+ msgid "Line Height"
592
+ msgstr "线高度"
593
+
594
+ #: fields/typography/typography.php:257
595
+ msgid "Letter Spacing"
596
+ msgstr "字母间距"
597
+
598
+ #: fields/typography/typography.php:269
599
+ msgid "Word Spacing"
600
+ msgstr "字间距"
601
+
602
+ #: fields/typography/typography.php:284
603
+ msgid "Font Color"
604
+ msgstr "字体颜色"
605
+
606
+ #: fields/typography/typography.php:295
607
+ msgid "Custom Style"
608
+ msgstr "自定义样式"
609
+
610
+ #: fields/typography/typography.php:362
611
+ msgid "Custom Web Fonts"
612
+ msgstr "自定义 Web 字体"
613
+
614
+ #: fields/typography/typography.php:368
615
+ msgid "Safe Web Fonts"
616
+ msgstr "Web 安全字体"
617
+
618
+ #: fields/typography/typography.php:388
619
+ msgid "Google Web Fonts"
620
+ msgstr "Google Web 字体"
621
+
622
+ #: functions/actions.php:72 functions/actions.php:110
623
+ msgid "Error: Invalid key."
624
+ msgstr "错误:无效密钥。"
625
+
626
+ #: functions/actions.php:114
627
+ msgid "Error: The response is not a valid JSON response."
628
+ msgstr "错误:响应不是有效的 JSON 响应。"
629
+
630
+ #: functions/actions.php:174
631
+ msgid "Error: Invalid term ID."
632
+ msgstr "错误:无效的项目ID。"
633
+
634
+ #: functions/actions.php:180
635
+ msgid "Error: You do not have permission to do that."
636
+ msgstr "错误:您无权这样做。"
637
+
638
+ #: functions/validate.php:14 functions/validate.php:86
639
+ msgid "Please enter a valid email address."
640
+ msgstr "请输入正确的电子邮件地址。"
641
+
642
+ #: functions/validate.php:32 functions/validate.php:106
643
+ msgid "Please enter a valid number."
644
+ msgstr "请输入有效的数字"
645
+
646
+ #: functions/validate.php:50 functions/validate.php:126
647
+ msgid "This field is required."
648
+ msgstr "这是必填栏。"
649
+
650
+ #: functions/validate.php:68 functions/validate.php:146
651
+ msgid "Please enter a valid URL."
652
+ msgstr "请输入有效网址"
653
+
654
+ #. Plugin Name of the plugin/theme
655
+ msgid "Codestar Framework"
656
+ msgstr "Codestar Framework"
657
+
658
+ #. Plugin URI of the plugin/theme
659
+ msgid "http://codestarframework.com/"
660
+ msgstr "http://codestarframework.com/"
661
+
662
+ #. Description of the plugin/theme
663
+ msgid "A Simple and Lightweight WordPress Option Framework for Themes and Plugins"
664
+ msgstr "一个简单且轻量的 WordPress 主题和插件选项框架"
665
+
666
+ #. Author of the plugin/theme
667
+ msgid "Codestar"
668
+ msgstr "Codestar"
669
+
670
+ #. Author URI of the plugin/theme
671
+ msgid "http://codestarthemes.com/"
672
+ msgstr "http://codestarthemes.com/"
vendor/codestar-framework/samples/admin-options.php ADDED
@@ -0,0 +1,3588 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2
+
3
+ //
4
+ // Set a unique slug-like ID
5
+ //
6
+ $prefix = '_prefix_my_options';
7
+
8
+ //
9
+ // Create options
10
+ //
11
+ CSF::createOptions( $prefix, array(
12
+ 'menu_title' => 'CSF Demo',
13
+ 'menu_slug' => 'csf-demo',
14
+ ) );
15
+
16
+ //
17
+ // Create a section
18
+ //
19
+ CSF::createSection( $prefix, array(
20
+ 'title' => 'Overview',
21
+ 'icon' => 'fas fa-rocket',
22
+ 'fields' => array(
23
+
24
+ //
25
+ // A text field
26
+ //
27
+ array(
28
+ 'id' => 'opt-text',
29
+ 'type' => 'text',
30
+ 'title' => 'Text',
31
+ ),
32
+
33
+ array(
34
+ 'id' => 'opt-textarea',
35
+ 'type' => 'textarea',
36
+ 'title' => 'Textarea',
37
+ 'help' => 'The help text of the field.',
38
+ ),
39
+
40
+ array(
41
+ 'id' => 'opt-upload',
42
+ 'type' => 'upload',
43
+ 'title' => 'Upload',
44
+ ),
45
+
46
+ array(
47
+ 'id' => 'opt-switcher',
48
+ 'type' => 'switcher',
49
+ 'title' => 'Switcher',
50
+ 'label' => 'The label text of the switcher.',
51
+ ),
52
+
53
+ array(
54
+ 'id' => 'opt-color',
55
+ 'type' => 'color',
56
+ 'title' => 'Color',
57
+ 'default' => '#3498db',
58
+ ),
59
+
60
+ array(
61
+ 'id' => 'opt-checkbox',
62
+ 'type' => 'checkbox',
63
+ 'title' => 'Checkbox',
64
+ 'label' => 'The label text of the checkbox.',
65
+ ),
66
+
67
+ array(
68
+ 'id' => 'opt-radio',
69
+ 'type' => 'radio',
70
+ 'title' => 'Radio',
71
+ 'options' => array(
72
+ 'yes' => 'Yes, Please.',
73
+ 'no' => 'No, Thank you.',
74
+ ),
75
+ 'default' => 'yes',
76
+ ),
77
+
78
+ array(
79
+ 'id' => 'opt-select',
80
+ 'type' => 'select',
81
+ 'title' => 'Select',
82
+ 'placeholder' => 'Select an option',
83
+ 'options' => array(
84
+ 'opt-1' => 'Option 1',
85
+ 'opt-2' => 'Option 2',
86
+ 'opt-3' => 'Option 3',
87
+ ),
88
+ ),
89
+
90
+ array(
91
+ 'id' => 'opt-image-select',
92
+ 'type' => 'image_select',
93
+ 'title' => 'Image Select',
94
+ 'options' => array(
95
+ 'opt-1' => 'http://codestarframework.com/assets/images/placeholder/100x80-2ecc71.gif',
96
+ 'opt-2' => 'http://codestarframework.com/assets/images/placeholder/100x80-e74c3c.gif',
97
+ 'opt-3' => 'http://codestarframework.com/assets/images/placeholder/100x80-ffbc00.gif',
98
+ 'opt-4' => 'http://codestarframework.com/assets/images/placeholder/100x80-3498db.gif',
99
+ 'opt-5' => 'http://codestarframework.com/assets/images/placeholder/100x80-555555.gif',
100
+ ),
101
+ 'default' => 'opt-1',
102
+ ),
103
+
104
+ array(
105
+ 'id' => 'opt-background',
106
+ 'type' => 'background',
107
+ 'title' => 'Background',
108
+ ),
109
+
110
+ array(
111
+ 'type' => 'notice',
112
+ 'style' => 'success',
113
+ 'content' => 'A <strong>notice</strong> field with <strong>success</strong> style.',
114
+ ),
115
+
116
+ array(
117
+ 'id' => 'opt-icon',
118
+ 'type' => 'icon',
119
+ 'title' => 'Icon',
120
+ ),
121
+
122
+ array(
123
+ 'id' => 'opt-alt-text',
124
+ 'type' => 'text',
125
+ 'title' => 'Text',
126
+ ),
127
+
128
+ array(
129
+ 'id' => 'opt-alt-textarea',
130
+ 'type' => 'textarea',
131
+ 'title' => 'Textarea',
132
+ 'subtitle' => 'A textarea with shortcoder.',
133
+ 'shortcoder' => 'csf_demo_shortcodes',
134
+ ),
135
+
136
+ )
137
+ ) );
138
+
139
+ //
140
+ // Basic Fields
141
+ //
142
+ CSF::createSection( $prefix, array(
143
+ 'id' => 'basic_fields',
144
+ 'title' => 'Basic Fields',
145
+ 'icon' => 'fas fa-plus-circle',
146
+ ) );
147
+
148
+ //
149
+ // Field: text
150
+ //
151
+ CSF::createSection( $prefix, array(
152
+ 'parent' => 'basic_fields',
153
+ 'title' => 'Text',
154
+ 'icon' => 'far fa-square',
155
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=text" target="_blank">Field: text</a>',
156
+ 'fields' => array(
157
+
158
+ array(
159
+ 'id' => 'opt-text-1',
160
+ 'type' => 'text',
161
+ 'title' => 'Text',
162
+ ),
163
+
164
+ array(
165
+ 'id' => 'opt-text-2',
166
+ 'type' => 'text',
167
+ 'title' => 'Text with default',
168
+ 'default' => 'This is default value bla bla bla',
169
+ ),
170
+
171
+ array(
172
+ 'id' => 'opt-text-3',
173
+ 'type' => 'text',
174
+ 'title' => 'Text field ingenuity',
175
+ 'subtitle' => 'The field of subtitle text.',
176
+ 'help' => 'The field of help text.',
177
+ 'before' => '<p>The field of before text.</p>',
178
+ 'after' => '<p>The field of after text.</p>',
179
+ ),
180
+
181
+ array(
182
+ 'id' => 'opt-text-4',
183
+ 'type' => 'text',
184
+ 'title' => 'Text with placeholder',
185
+ 'placeholder' => 'Typed something...'
186
+ ),
187
+
188
+ array(
189
+ 'id' => 'opt-text-5',
190
+ 'type' => 'text',
191
+ 'title' => 'Text readonly',
192
+ 'attributes' => array(
193
+ 'readonly' => 'readonly'
194
+ ),
195
+ 'default' => 'readonly text field, can not be changed'
196
+ ),
197
+
198
+ array(
199
+ 'id' => 'opt-text-6',
200
+ 'type' => 'text',
201
+ 'title' => 'Text with maxlength (5)',
202
+ 'attributes' => array(
203
+ 'maxlength' => '5'
204
+ ),
205
+ 'default' => 'abc',
206
+ ),
207
+
208
+ array(
209
+ 'id' => 'opt-text-7',
210
+ 'type' => 'text',
211
+ 'title' => 'Text usign custom styles',
212
+ 'attributes' => array(
213
+ 'style' => 'width: 100%; height: 40px; border-color: #93C054;'
214
+ ),
215
+ ),
216
+
217
+ array(
218
+ 'id' => 'opt-text-8',
219
+ 'type' => 'text',
220
+ 'after' => '<p>It shows full width if there is no field of title.</p>',
221
+ ),
222
+
223
+ )
224
+ ) );
225
+
226
+ //
227
+ // Field: textarea
228
+ //
229
+ CSF::createSection( $prefix, array(
230
+ 'parent' => 'basic_fields',
231
+ 'title' => 'Textarea',
232
+ 'icon' => 'far fa-square',
233
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=textarea" target="_blank">Field: textrea</a>',
234
+ 'fields' => array(
235
+
236
+ array(
237
+ 'id' => 'opt-textarea-1',
238
+ 'type' => 'textarea',
239
+ 'title' => 'Textarea',
240
+ ),
241
+
242
+ array(
243
+ 'id' => 'opt-textarea-2',
244
+ 'type' => 'textarea',
245
+ 'title' => 'Textarea wtih default',
246
+ 'default' => 'This is default value bla bla bla',
247
+ ),
248
+
249
+ array(
250
+ 'id' => 'opt-textarea-3',
251
+ 'type' => 'textarea',
252
+ 'title' => 'Text with placeholder',
253
+ 'placeholder' => 'Typed something...'
254
+ ),
255
+
256
+ array(
257
+ 'id' => 'opt-textarea-4',
258
+ 'type' => 'textarea',
259
+ 'title' => 'Textarea with shortcoder',
260
+ 'shortcoder' => 'csf_demo_shortcodes',
261
+ ),
262
+
263
+ array(
264
+ 'id' => 'opt-textarea-5',
265
+ 'type' => 'textarea',
266
+ 'title' => 'Textarea field ingenuity',
267
+ 'subtitle' => 'The field of subtitle text.',
268
+ 'help' => 'The field of help text.',
269
+ 'before' => '<p>The field of before text.</p>',
270
+ 'after' => '<p>The field of after text.</p>',
271
+ ),
272
+
273
+ array(
274
+ 'id' => 'opt-textarea-6',
275
+ 'type' => 'textarea',
276
+ 'after' => '<p>It shows full width if there is no field of title.</p>',
277
+ ),
278
+
279
+ )
280
+ ) );
281
+
282
+ //
283
+ // Field: select
284
+ //
285
+ CSF::createSection( $prefix, array(
286
+ 'parent' => 'basic_fields',
287
+ 'title' => 'Select',
288
+ 'icon' => 'fas fa-list',
289
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=select" target="_blank">Field: select</a>',
290
+ 'fields' => array(
291
+
292
+ array(
293
+ 'id' => 'opt-select-1',
294
+ 'type' => 'select',
295
+ 'title' => 'Select',
296
+ 'placeholder' => 'Select an option',
297
+ 'options' => array(
298
+ 'opt-1' => 'Option 1',
299
+ 'opt-2' => 'Option 2',
300
+ 'opt-3' => 'Option 3',
301
+ ),
302
+ ),
303
+
304
+ array(
305
+ 'id' => 'opt-select-2',
306
+ 'type' => 'select',
307
+ 'title' => 'Select with default',
308
+ 'placeholder' => 'Select an option',
309
+ 'options' => array(
310
+ 'opt-1' => 'Option 1',
311
+ 'opt-2' => 'Option 2',
312
+ 'opt-3' => 'Option 3',
313
+ ),
314
+ 'default' => 'opt-2'
315
+ ),
316
+
317
+ array(
318
+ 'id' => 'opt-select-3',
319
+ 'type' => 'select',
320
+ 'title' => 'Select with group related options',
321
+ 'placeholder' => 'Select an option',
322
+ 'options' => array(
323
+ 'Group 1' => array(
324
+ 'opt-1' => 'Option 1',
325
+ 'opt-2' => 'Option 2',
326
+ 'opt-3' => 'Option 3',
327
+ ),
328
+ 'Group 2' => array(
329
+ 'opt-4' => 'Option 4',
330
+ 'opt-5' => 'Option 5',
331
+ 'opt-6' => 'Option 6',
332
+ ),
333
+ 'Group 3' => array(
334
+ 'opt-7' => 'Option 7',
335
+ 'opt-8' => 'Option 8',
336
+ 'opt-9' => 'Option 9',
337
+ ),
338
+ ),
339
+ ),
340
+
341
+ array(
342
+ 'id' => 'opt-select-4',
343
+ 'type' => 'select',
344
+ 'title' => 'Select with multiple choice',
345
+ 'multiple' => true,
346
+ 'attributes' => array(
347
+ 'style' => 'min-width: 200px;'
348
+ ),
349
+ 'options' => array(
350
+ 'opt-1' => 'Option 1',
351
+ 'opt-2' => 'Option 2',
352
+ 'opt-3' => 'Option 3',
353
+ 'opt-4' => 'Option 4',
354
+ 'opt-5' => 'Option 5',
355
+ 'opt-6' => 'Option 6',
356
+ ),
357
+ 'default' => array( 'opt-2', 'opt-3' ),
358
+ ),
359
+
360
+ array(
361
+ 'type' => 'notice',
362
+ 'style' => 'info',
363
+ 'content' => 'Select with <strong>chosen</strong> style.',
364
+ ),
365
+
366
+ array(
367
+ 'id' => 'opt-select-5',
368
+ 'type' => 'select',
369
+ 'title' => 'Select with Chosen',
370
+ 'chosen' => true,
371
+ 'placeholder' => 'Select an option',
372
+ 'options' => array(
373
+ 'opt-1' => 'Option 1',
374
+ 'opt-2' => 'Option 2',
375
+ 'opt-3' => 'Option 3',
376
+ 'opt-4' => 'Option 4',
377
+ 'opt-5' => 'Option 5',
378
+ 'opt-6' => 'Option 6',
379
+ ),
380
+ ),
381
+
382
+ array(
383
+ 'id' => 'opt-select-6',
384
+ 'type' => 'select',
385
+ 'title' => 'Select with multiple Chosen',
386
+ 'chosen' => true,
387
+ 'multiple' => true,
388
+ 'placeholder' => 'Select an option',
389
+ 'options' => array(
390
+ 'opt-1' => 'Option 1',
391
+ 'opt-2' => 'Option 2',
392
+ 'opt-3' => 'Option 3',
393
+ 'opt-4' => 'Option 4',
394
+ 'opt-5' => 'Option 5',
395
+ 'opt-6' => 'Option 6',
396
+ ),
397
+ ),
398
+
399
+ array(
400
+ 'id' => 'opt-select-7',
401
+ 'type' => 'select',
402
+ 'title' => 'Select with multiple Chosen and Sortable',
403
+ 'chosen' => true,
404
+ 'multiple' => true,
405
+ 'sortable' => true,
406
+ 'placeholder' => 'Select an option',
407
+ 'options' => array(
408
+ 'opt-1' => 'Option 1',
409
+ 'opt-2' => 'Option 2',
410
+ 'opt-3' => 'Option 3',
411
+ 'opt-4' => 'Option 4',
412
+ 'opt-5' => 'Option 5',
413
+ 'opt-6' => 'Option 6',
414
+ ),
415
+ 'default' => array( 'opt-1', 'opt-2', 'opt-3' )
416
+ ),
417
+
418
+ array(
419
+ 'id' => 'opt-select-8',
420
+ 'type' => 'select',
421
+ 'title' => 'Select with multiple AJAX search Pages',
422
+ 'chosen' => true,
423
+ 'multiple' => true,
424
+ 'sortable' => true,
425
+ 'ajax' => true,
426
+ 'options' => 'pages',
427
+ 'placeholder' => 'Select pages',
428
+ ),
429
+
430
+ array(
431
+ 'id' => 'opt-select-9',
432
+ 'type' => 'select',
433
+ 'title' => 'Select with multiple AJAX search Posts',
434
+ 'chosen' => true,
435
+ 'multiple' => true,
436
+ 'sortable' => true,
437
+ 'ajax' => true,
438
+ 'options' => 'posts',
439
+ 'placeholder' => 'Select posts',
440
+ ),
441
+
442
+ array(
443
+ 'id' => 'opt-select-10',
444
+ 'type' => 'select',
445
+ 'title' => 'Select with AJAX search Category',
446
+ 'chosen' => true,
447
+ 'ajax' => true,
448
+ 'options' => 'category',
449
+ 'placeholder' => 'Select a category',
450
+ ),
451
+
452
+ array(
453
+ 'type' => 'notice',
454
+ 'style' => 'info',
455
+ 'content' => 'Select with <strong>predefined wp query</strong> options.',
456
+ ),
457
+
458
+ array(
459
+ 'id' => 'opt-select-11',
460
+ 'type' => 'select',
461
+ 'title' => 'Select with pages',
462
+ 'placeholder' => 'Select a page',
463
+ 'options' => 'pages',
464
+ ),
465
+
466
+ array(
467
+ 'id' => 'opt-select-12',
468
+ 'type' => 'select',
469
+ 'title' => 'Select with posts',
470
+ 'placeholder' => 'Select a post',
471
+ 'options' => 'posts',
472
+ ),
473
+
474
+ array(
475
+ 'id' => 'opt-select-13',
476
+ 'type' => 'select',
477
+ 'title' => 'Select with categories',
478
+ 'placeholder' => 'Select a category',
479
+ 'options' => 'categories',
480
+ ),
481
+
482
+ array(
483
+ 'id' => 'opt-select-14',
484
+ 'type' => 'select',
485
+ 'title' => 'Select with menus',
486
+ 'placeholder' => 'Select a menu',
487
+ 'options' => 'menus',
488
+ ),
489
+
490
+ array(
491
+ 'id' => 'opt-select-15',
492
+ 'type' => 'select',
493
+ 'title' => 'Select with locations',
494
+ 'placeholder' => 'Select a location',
495
+ 'options' => 'locations',
496
+ ),
497
+
498
+ array(
499
+ 'id' => 'opt-select-16',
500
+ 'type' => 'select',
501
+ 'title' => 'Select with sidebars',
502
+ 'placeholder' => 'Select a sidebar',
503
+ 'options' => 'sidebars',
504
+ ),
505
+
506
+ array(
507
+ 'id' => 'opt-select-17',
508
+ 'type' => 'select',
509
+ 'title' => 'Select with wp roles',
510
+ 'placeholder' => 'Select a role',
511
+ 'options' => 'roles',
512
+ ),
513
+
514
+ array(
515
+ 'id' => 'opt-select-18',
516
+ 'type' => 'select',
517
+ 'title' => 'Select with users',
518
+ 'placeholder' => 'Select a user',
519
+ 'options' => 'users',
520
+ ),
521
+
522
+ array(
523
+ 'id' => 'opt-select-19',
524
+ 'type' => 'select',
525
+ 'title' => 'Select with post type',
526
+ 'placeholder' => 'Select a post type',
527
+ 'options' => 'post_types',
528
+ ),
529
+
530
+ array(
531
+ 'id' => 'opt-select-20',
532
+ 'type' => 'select',
533
+ 'title' => 'Select with CPT (custom post type) posts',
534
+ 'placeholder' => 'Select a post',
535
+ 'options' => 'posts',
536
+ 'query_args' => array(
537
+ 'post_type' => 'your_post_type_name',
538
+ ),
539
+ ),
540
+
541
+ array(
542
+ 'id' => 'opt-select-21',
543
+ 'type' => 'select',
544
+ 'title' => 'Select with CPT (custom post type) categories',
545
+ 'placeholder' => 'Select a category',
546
+ 'options' => 'categories',
547
+ 'query_args' => array(
548
+ 'taxonomy' => 'your_taxonomy_name',
549
+ ),
550
+ ),
551
+
552
+ )
553
+ ) );
554
+
555
+ //
556
+ // Field: checkbox
557
+ //
558
+ CSF::createSection( $prefix, array(
559
+ 'parent' => 'basic_fields',
560
+ 'title' => 'Checkbox',
561
+ 'icon' => 'fas fa-check-square',
562
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=checkbox" target="_blank">Field: checkbox</a>',
563
+ 'fields' => array(
564
+
565
+ array(
566
+ 'id' => 'opt-checkbox-1',
567
+ 'type' => 'checkbox',
568
+ 'title' => 'Checkbox',
569
+ 'label' => 'The label text of the checkbox.',
570
+ ),
571
+
572
+ array(
573
+ 'id' => 'opt-checkbox-2',
574
+ 'type' => 'checkbox',
575
+ 'title' => 'Checkbox with default',
576
+ 'label' => 'The label text of the checkbox.',
577
+ 'default' => true,
578
+ ),
579
+
580
+ array(
581
+ 'id' => 'opt-checkbox-3',
582
+ 'type' => 'checkbox',
583
+ 'title' => 'Checkbox with multiple choice',
584
+ 'options' => array(
585
+ 'opt-1' => 'Option 1',
586
+ 'opt-2' => 'Option 2',
587
+ 'opt-3' => 'Option 3',
588
+ ),
589
+ ),
590
+
591
+ array(
592
+ 'id' => 'opt-checkbox-4',
593
+ 'type' => 'checkbox',
594
+ 'title' => 'Checkbox inline with multiple choice',
595
+ 'inline' => true,
596
+ 'options' => array(
597
+ 'opt-1' => 'Option 1',
598
+ 'opt-2' => 'Option 2',
599
+ 'opt-3' => 'Option 3',
600
+ ),
601
+ ),
602
+
603
+ array(
604
+ 'id' => 'opt-checkbox-5',
605
+ 'type' => 'checkbox',
606
+ 'title' => 'Checkbox multiple choice with default',
607
+ 'options' => array(
608
+ 'opt-1' => 'Option 1',
609
+ 'opt-2' => 'Option 2',
610
+ 'opt-3' => 'Option 3',
611
+ ),
612
+ 'default' => array( 'opt-1', 'opt-2' )
613
+ ),
614
+
615
+ array(
616
+ 'id' => 'opt-checkbox-6',
617
+ 'type' => 'checkbox',
618
+ 'title' => 'Checkbox with group related options',
619
+ 'options' => array(
620
+ 'Group 1' => array(
621
+ 'opt-1' => 'Option 1',
622
+ 'opt-2' => 'Option 2',
623
+ 'opt-3' => 'Option 3',
624
+ ),
625
+ 'Group 2' => array(
626
+ 'opt-4' => 'Option 4',
627
+ 'opt-5' => 'Option 5',
628
+ 'opt-6' => 'Option 6',
629
+ ),
630
+ ),
631
+ ),
632
+
633
+ array(
634
+ 'id' => 'opt-checkbox-7',
635
+ 'type' => 'checkbox',
636
+ 'title' => 'Checkbox testing on many items',
637
+ 'options' => array(
638
+ 'opt-1' => 'Option 1',
639
+ 'opt-2' => 'Option 2',
640
+ 'opt-3' => 'Option 3',
641
+ 'opt-4' => 'Option 4',
642
+ 'opt-5' => 'Option 5',
643
+ 'opt-6' => 'Option 6',
644
+ 'opt-7' => 'Option 7',
645
+ 'opt-8' => 'Option 8',
646
+ 'opt-9' => 'Option 9',
647
+ 'opt-10' => 'Option 10',
648
+ 'opt-11' => 'Option 11',
649
+ 'opt-12' => 'Option 12',
650
+ 'opt-13' => 'Option 13',
651
+ 'opt-14' => 'Option 14',
652
+ 'opt-15' => 'Option 15',
653
+ ),
654
+ 'desc' => 'Vertical scroll showing automatically after add many items',
655
+ ),
656
+
657
+ array(
658
+ 'type' => 'notice',
659
+ 'style' => 'info',
660
+ 'content' => 'Checkbox with <strong>predefined wp query</strong> options similar like <strong>select</strong> field. (see select field for all options models.)',
661
+ ),
662
+
663
+ array(
664
+ 'id' => 'opt-checkbox-8',
665
+ 'type' => 'checkbox',
666
+ 'title' => 'Checkbox with categories',
667
+ 'options' => 'categories',
668
+ ),
669
+
670
+ )
671
+ ) );
672
+
673
+ //
674
+ // Field: radio
675
+ //
676
+ CSF::createSection( $prefix, array(
677
+ 'parent' => 'basic_fields',
678
+ 'title' => 'Radio',
679
+ 'icon' => 'fas fa-dot-circle',
680
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=radio" target="_blank">Field: radio</a>',
681
+ 'fields' => array(
682
+
683
+ array(
684
+ 'id' => 'opt-radio-1',
685
+ 'type' => 'radio',
686
+ 'title' => 'Radio',
687
+ 'options' => array(
688
+ 'opt-1' => 'Option 1',
689
+ 'opt-2' => 'Option 2',
690
+ 'opt-3' => 'Option 3',
691
+ ),
692
+ ),
693
+
694
+ array(
695
+ 'id' => 'opt-radio-2',
696
+ 'type' => 'radio',
697
+ 'title' => 'Radio with default',
698
+ 'options' => array(
699
+ 'opt-1' => 'Option 1',
700
+ 'opt-2' => 'Option 2',
701
+ 'opt-3' => 'Option 3',
702
+ ),
703
+ 'default' => 'opt-2',
704
+ ),
705
+
706
+ array(
707
+ 'id' => 'opt-radio-3',
708
+ 'type' => 'radio',
709
+ 'title' => 'Radio with inline style',
710
+ 'inline' => true,
711
+ 'options' => array(
712
+ 'opt-1' => 'Option 1',
713
+ 'opt-2' => 'Option 2',
714
+ 'opt-3' => 'Option 3',
715
+ ),
716
+ ),
717
+
718
+ array(
719
+ 'id' => 'opt-radio-4',
720
+ 'type' => 'radio',
721
+ 'title' => 'Radio with group related options',
722
+ 'options' => array(
723
+ 'Group 1' => array(
724
+ 'opt-1' => 'Option 1',
725
+ 'opt-2' => 'Option 2',
726
+ 'opt-3' => 'Option 3',
727
+ ),
728
+ 'Group 2' => array(
729
+ 'opt-4' => 'Option 4',
730
+ 'opt-5' => 'Option 5',
731
+ 'opt-6' => 'Option 6',
732
+ ),
733
+ ),
734
+ ),
735
+
736
+ array(
737
+ 'id' => 'opt-radio-5',
738
+ 'type' => 'radio',
739
+ 'title' => 'Radio testing on many items',
740
+ 'options' => array(
741
+ 'opt-1' => 'Option 1',
742
+ 'opt-2' => 'Option 2',
743
+ 'opt-3' => 'Option 3',
744
+ 'opt-4' => 'Option 4',
745
+ 'opt-5' => 'Option 5',
746
+ 'opt-6' => 'Option 6',
747
+ 'opt-7' => 'Option 7',
748
+ 'opt-8' => 'Option 8',
749
+ 'opt-9' => 'Option 9',
750
+ 'opt-10' => 'Option 10',
751
+ 'opt-11' => 'Option 11',
752
+ 'opt-12' => 'Option 12',
753
+ 'opt-13' => 'Option 13',
754
+ 'opt-14' => 'Option 14',
755
+ 'opt-15' => 'Option 15',
756
+ ),
757
+ 'desc' => 'Vertical scroll showing automatically after add many items'
758
+ ),
759
+
760
+ array(
761
+ 'type' => 'notice',
762
+ 'style' => 'info',
763
+ 'content' => 'Radio with <strong>predefined wp query</strong> options similar like <strong>select</strong> field. (see select field for all options models.)',
764
+ ),
765
+
766
+ array(
767
+ 'id' => 'opt-radio-6',
768
+ 'type' => 'radio',
769
+ 'title' => 'Radio with categories',
770
+ 'options' => 'categories',
771
+ ),
772
+
773
+ )
774
+ ) );
775
+
776
+ //
777
+ // Repeater Fields
778
+ //
779
+ CSF::createSection( $prefix, array(
780
+ 'id' => 'repeater_fields',
781
+ 'title' => 'Repeater Fields',
782
+ 'icon' => 'far fa-clone',
783
+ ) );
784
+
785
+ //
786
+ // Field: repeater
787
+ //
788
+ CSF::createSection( $prefix, array(
789
+ 'parent' => 'repeater_fields',
790
+ 'title' => 'Repeater',
791
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=repeater" target="_blank">Field: repeater</a>',
792
+ 'fields' => array(
793
+
794
+ array(
795
+ 'id' => 'opt-repeater-1',
796
+ 'type' => 'repeater',
797
+ 'title' => 'Repeater',
798
+ 'fields' => array(
799
+ array(
800
+ 'id' => 'opt-text',
801
+ 'type' => 'text',
802
+ 'title' => 'Text'
803
+ ),
804
+ ),
805
+ ),
806
+
807
+ array(
808
+ 'id' => 'opt-repeater-2',
809
+ 'type' => 'repeater',
810
+ 'title' => 'Repeater with default',
811
+ 'fields' => array(
812
+ array(
813
+ 'id' => 'opt-text',
814
+ 'type' => 'text',
815
+ 'title' => 'Text',
816
+ ),
817
+ ),
818
+ 'default' => array(
819
+ array(
820
+ 'opt-text' => 'Text default 1',
821
+ ),
822
+ array(
823
+ 'opt-text' => 'Text default 2',
824
+ ),
825
+ ),
826
+ ),
827
+
828
+ array(
829
+ 'id' => 'opt-repeater-3',
830
+ 'type' => 'repeater',
831
+ 'title' => 'Repeater with multiple fields',
832
+ 'fields' => array(
833
+ array(
834
+ 'id' => 'opt-switcher',
835
+ 'type' => 'switcher',
836
+ 'title' => 'Switcher',
837
+ ),
838
+ array(
839
+ 'id' => 'opt-color',
840
+ 'type' => 'color',
841
+ 'title' => 'Color',
842
+ ),
843
+ array(
844
+ 'id' => 'opt-text',
845
+ 'type' => 'text',
846
+ 'title' => 'Text',
847
+ ),
848
+ ),
849
+ 'default' => array(
850
+ array(
851
+ 'opt-switcher' => false,
852
+ 'opt-color' => '#3498db',
853
+ 'opt-text' => 'Text default 1',
854
+ ),
855
+ ),
856
+ ),
857
+
858
+ array(
859
+ 'id' => 'opt-repeater-4',
860
+ 'type' => 'repeater',
861
+ 'title' => 'Repeater with limited (min - max items)',
862
+ 'subtitle' => 'The maximum/minimum number of items the user can add. (In this example min:1, max:3)',
863
+ 'button_title' => 'Add Text',
864
+ 'min' => 1,
865
+ 'max' => 3,
866
+ 'fields' => array(
867
+ array(
868
+ 'id' => 'opt-text',
869
+ 'type' => 'text',
870
+ 'title' => 'Text',
871
+ ),
872
+ ),
873
+ 'default' => array(
874
+ array(
875
+ 'opt-text' => 'Text default 1',
876
+ ),
877
+ array(
878
+ 'opt-text' => 'Text default 2',
879
+ ),
880
+ ),
881
+ ),
882
+
883
+ array(
884
+ 'id' => 'opt-repeater-6',
885
+ 'type' => 'repeater',
886
+ 'title' => 'Repeater nested repeater',
887
+ 'subtitle' => 'Can be added unlimited nested repeater',
888
+ 'fields' => array(
889
+ array(
890
+ 'id' => 'opt-text',
891
+ 'type' => 'text',
892
+ 'title' => 'Text',
893
+ ),
894
+ array(
895
+ 'id' => 'opt-repeater-6-nested-1',
896
+ 'type' => 'repeater',
897
+ 'title' => 'Repeater',
898
+ 'fields' => array(
899
+ array(
900
+ 'id' => 'opt-text',
901
+ 'type' => 'text',
902
+ 'title' => 'Text'
903
+ ),
904
+ ),
905
+ ),
906
+ ),
907
+ 'default' => array(
908
+ array(
909
+ 'opt-text' => 'Text default 1',
910
+ 'opt-repeater-6-nested-1' => array(
911
+ array(
912
+ 'opt-text' => 'Text default 1',
913
+ ),
914
+ array(
915
+ 'opt-text' => 'Text default 2',
916
+ ),
917
+ ),
918
+ ),
919
+ ),
920
+ ),
921
+
922
+ )
923
+ ) );
924
+
925
+ //
926
+ // Field: group
927
+ //
928
+ CSF::createSection( $prefix, array(
929
+ 'parent' => 'repeater_fields',
930
+ 'title' => 'Group',
931
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=group" target="_blank">Field: group</a>',
932
+ 'fields' => array(
933
+
934
+ array(
935
+ 'id' => 'opt-group-1',
936
+ 'type' => 'group',
937
+ 'title' => 'Group',
938
+ 'fields' => array(
939
+ array(
940
+ 'id' => 'opt-text',
941
+ 'type' => 'text',
942
+ 'title' => 'Text',
943
+ ),
944
+ array(
945
+ 'id' => 'opt-switcher',
946
+ 'type' => 'switcher',
947
+ 'title' => 'Switcher',
948
+ ),
949
+ array(
950
+ 'id' => 'opt-textarea',
951
+ 'type' => 'textarea',
952
+ 'title' => 'Textarea',
953
+ ),
954
+ )
955
+ ),
956
+
957
+ array(
958
+ 'id' => 'opt-group-2',
959
+ 'type' => 'group',
960
+ 'title' => 'Group with default',
961
+ 'fields' => array(
962
+ array(
963
+ 'id' => 'opt-text',
964
+ 'type' => 'text',
965
+ 'title' => 'Text',
966
+ ),
967
+ array(
968
+ 'id' => 'opt-switcher',
969
+ 'type' => 'switcher',
970
+ 'title' => 'Switcher',
971
+ ),
972
+ array(
973
+ 'id' => 'opt-textarea',
974
+ 'type' => 'textarea',
975
+ 'title' => 'Textarea',
976
+ ),
977
+ ),
978
+ 'default' => array(
979
+ array(
980
+ 'opt-text' => 'Some text 1',
981
+ 'opt-switcher' => true,
982
+ 'opt-textarea' => 'Some textarea content 1',
983
+ ),
984
+ array(
985
+ 'opt-text' => 'Some text 2',
986
+ 'opt-switcher' => false,
987
+ 'opt-textarea' => 'Some textarea content 2',
988
+ ),
989
+ )
990
+ ),
991
+
992
+ array(
993
+ 'id' => 'opt-group-3',
994
+ 'type' => 'group',
995
+ 'title' => 'Group with limited (min - max items)',
996
+ 'subtitle' => 'The maximum/minimum number of items the user can add. (In this example min:1, max:3)',
997
+ 'min' => 1,
998
+ 'max' => 3,
999
+ 'fields' => array(
1000
+ array(
1001
+ 'id' => 'opt-text',
1002
+ 'type' => 'text',
1003
+ 'title' => 'Text',
1004
+ ),
1005
+ array(
1006
+ 'id' => 'opt-textarea',
1007
+ 'type' => 'textarea',
1008
+ 'title' => 'Textarea',
1009
+ ),
1010
+ ),
1011
+ 'default' => array(
1012
+ array(
1013
+ 'opt-text' => 'Limited text 1',
1014
+ 'opt-textarea' => 'Limited textarea content 1',
1015
+ ),
1016
+ array(
1017
+ 'opt-text' => 'Limited text 2',
1018
+ 'opt-textarea' => 'Limited textarea content 2',
1019
+ ),
1020
+ )
1021
+ ),
1022
+
1023
+ array(
1024
+ 'id' => 'opt-group-4',
1025
+ 'type' => 'group',
1026
+ 'title' => 'Group with WP Editor',
1027
+ 'subtitle' => 'WP Editor integrated for Ajax Call.',
1028
+ 'fields' => array(
1029
+ array(
1030
+ 'id' => 'opt-text',
1031
+ 'type' => 'text',
1032
+ 'title' => 'Text',
1033
+ ),
1034
+ array(
1035
+ 'id' => 'opt-editor',
1036
+ 'type' => 'wp_editor',
1037
+ 'title' => 'WP Editor',
1038
+ ),
1039
+ ),
1040
+ 'default' => array(
1041
+ array(
1042
+ 'opt-text' => 'WP Editor 1',
1043
+ 'opt-editor' => 'Editor content 1',
1044
+ ),
1045
+ array(
1046
+ 'opt-text' => 'WP Editor 2',
1047
+ 'opt-editor' => 'Editor content 2',
1048
+ ),
1049
+ )
1050
+ ),
1051
+
1052
+ array(
1053
+ 'id' => 'opt-group-5',
1054
+ 'type' => 'group',
1055
+ 'title' => 'Group nested',
1056
+ 'subtitle' => 'Can be added unlimited nested groups',
1057
+ 'fields' => array(
1058
+ array(
1059
+ 'id' => 'opt-text',
1060
+ 'type' => 'text',
1061
+ 'title' => 'Text',
1062
+ ),
1063
+ array(
1064
+ 'id' => 'opt-group-5-sublevel-1',
1065
+ 'type' => 'group',
1066
+ 'title' => 'Group Nested',
1067
+ 'fields' => array(
1068
+ array(
1069
+ 'id' => 'opt-text',
1070
+ 'type' => 'text',
1071
+ 'title' => 'Text',
1072
+ ),
1073
+ array(
1074
+ 'id' => 'opt-group-5-sublevel-2',
1075
+ 'type' => 'group',
1076
+ 'title' => 'Group Nested',
1077
+ 'fields' => array(
1078
+ array(
1079
+ 'id' => 'opt-text',
1080
+ 'type' => 'text',
1081
+ 'title' => 'Text',
1082
+ ),
1083
+ array(
1084
+ 'id' => 'opt-switcher',
1085
+ 'type' => 'switcher',
1086
+ 'title' => 'Switcher',
1087
+ ),
1088
+ array(
1089
+ 'id' => 'opt-textarea',
1090
+ 'type' => 'textarea',
1091
+ 'title' => 'Textarea',
1092
+ ),
1093
+ )
1094
+ ),
1095
+ array(
1096
+ 'id' => 'opt-switcher',
1097
+ 'type' => 'switcher',
1098
+ 'title' => 'Switcher',
1099
+ ),
1100
+ array(
1101
+ 'id' => 'opt-textarea',
1102
+ 'type' => 'textarea',
1103
+ 'title' => 'Textarea',
1104
+ ),
1105
+ )
1106
+ ),
1107
+ array(
1108
+ 'id' => 'opt-switcher',
1109
+ 'type' => 'switcher',
1110
+ 'title' => 'Switcher',
1111
+ ),
1112
+ array(
1113
+ 'id' => 'opt-textarea',
1114
+ 'type' => 'textarea',
1115
+ 'title' => 'Textarea',
1116
+ ),
1117
+ ),
1118
+ 'default' => array(
1119
+
1120
+ // top level defaults
1121
+ array(
1122
+ 'opt-text' => 'Top Level 1',
1123
+
1124
+ // sub level 1 defaults
1125
+ 'opt-group-5-sublevel-1' => array(
1126
+ array(
1127
+ 'opt-text' => 'Sub Level 1',
1128
+
1129
+ // sub level 2 defaults
1130
+ 'opt-group-5-sublevel-2' => array(
1131
+ array(
1132
+ 'opt-text' => 'Sub Sub Level 1',
1133
+ ),
1134
+ array(
1135
+ 'opt-text' => 'Sub Sub Level 2',
1136
+ )
1137
+ ),
1138
+ ),
1139
+ array(
1140
+ 'opt-text' => 'Sub Level 2',
1141
+ )
1142
+ ),
1143
+ ),
1144
+
1145
+ // top level defaults
1146
+ array(
1147
+ 'opt-text' => 'Top Level 2',
1148
+ ),
1149
+ )
1150
+ ),
1151
+
1152
+ array(
1153
+ 'id' => 'opt-group-6',
1154
+ 'type' => 'group',
1155
+ 'title' => 'Group with Repeater Field',
1156
+ 'fields' => array(
1157
+ array(
1158
+ 'id' => 'opt-text',
1159
+ 'type' => 'text',
1160
+ 'title' => 'Text',
1161
+ ),
1162
+ array(
1163
+ 'id' => 'opt-group-6-repeater',
1164
+ 'type' => 'repeater',
1165
+ 'title' => 'Repeater',
1166
+ 'fields' => array(
1167
+ array(
1168
+ 'id' => 'opt-text',
1169
+ 'type' => 'text',
1170
+ 'title' => 'Text'
1171
+ ),
1172
+ ),
1173
+ ),
1174
+ array(
1175
+ 'id' => 'opt-switcher',
1176
+ 'type' => 'switcher',
1177
+ 'title' => 'Switcher',
1178
+ ),
1179
+ array(
1180
+ 'id' => 'opt-textarea',
1181
+ 'type' => 'textarea',
1182
+ 'title' => 'Textarea',
1183
+ ),
1184
+ ),
1185
+ 'default' => array(
1186
+ array(
1187
+ 'opt-text' => 'Some text 1',
1188
+ 'opt-group-6-repeater' => array(
1189
+ array(
1190
+ 'opt-text' => 'Some text 1',
1191
+ ),
1192
+ array(
1193
+ 'opt-text' => 'Some text 2',
1194
+ ),
1195
+ )
1196
+ ),
1197
+ )
1198
+ ),
1199
+
1200
+ array(
1201
+ 'id' => 'opt-group-7',
1202
+ 'type' => 'group',
1203
+ 'title' => 'Group with static prefix of title',
1204
+ 'subtitle' => 'accordion_title_prefix => "Static Prefix:"',
1205
+ 'accordion_title_prefix' => 'Static Prefix:',
1206
+ 'fields' => array(
1207
+ array(
1208
+ 'id' => 'opt-text',
1209
+ 'type' => 'text',
1210
+ 'title' => 'Text',
1211
+ ),
1212
+ array(
1213
+ 'id' => 'opt-switcher',
1214
+ 'type' => 'switcher',
1215
+ 'title' => 'Switcher',
1216
+ ),
1217
+ array(
1218
+ 'id' => 'opt-textarea',
1219
+ 'type' => 'textarea',
1220
+ 'title' => 'Textarea',
1221
+ ),
1222
+ ),
1223
+ 'default' => array(
1224
+ array(
1225
+ 'opt-text' => 'Some text 1',
1226
+ 'opt-switcher' => true,
1227
+ 'opt-textarea' => 'Some textarea content 1',
1228
+ ),
1229
+ array(
1230
+ 'opt-text' => 'Some text 2',
1231
+ 'opt-switcher' => false,
1232
+ 'opt-textarea' => 'Some textarea content 2',
1233
+ ),
1234
+ )
1235
+ ),
1236
+
1237
+ array(
1238
+ 'id' => 'opt-group-8',
1239
+ 'type' => 'group',
1240
+ 'title' => 'Group with title numbers',
1241
+ 'subtitle' => 'accordion_title_number => true',
1242
+ 'accordion_title_number' => true,
1243
+ 'fields' => array(
1244
+ array(
1245
+ 'id' => 'opt-text',
1246
+ 'type' => 'text',
1247
+ 'title' => 'Text',
1248
+ ),
1249
+ array(
1250
+ 'id' => 'opt-switcher',
1251
+ 'type' => 'switcher',
1252
+ 'title' => 'Switcher',
1253
+ ),
1254
+ array(
1255
+ 'id' => 'opt-textarea',
1256
+ 'type' => 'textarea',
1257
+ 'title' => 'Textarea',
1258
+ ),
1259
+ ),
1260
+ 'default' => array(
1261
+ array(
1262
+ 'opt-text' => 'Some text 1',
1263
+ 'opt-switcher' => true,
1264
+ 'opt-textarea' => 'Some textarea content 1',
1265
+ ),
1266
+ array(
1267
+ 'opt-text' => 'Some text 2',
1268
+ 'opt-switcher' => false,
1269
+ 'opt-textarea' => 'Some textarea content 2',
1270
+ ),
1271
+ )
1272
+ ),
1273
+
1274
+ )
1275
+ ) );
1276
+
1277
+ //
1278
+ // Combine Fields
1279
+ //
1280
+ CSF::createSection( $prefix, array(
1281
+ 'id' => 'combine_fields',
1282
+ 'title' => 'Combine Fields',
1283
+ 'icon' => 'fas fa-bars',
1284
+ ) );
1285
+
1286
+ //
1287
+ // Field: accordion
1288
+ //
1289
+ CSF::createSection( $prefix, array(
1290
+ 'parent' => 'combine_fields',
1291
+ 'title' => 'Accordion',
1292
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=accordion" target="_blank">Field: accordion</a>',
1293
+ 'fields' => array(
1294
+
1295
+ array(
1296
+ 'id' => 'opt-accordion-1',
1297
+ 'type' => 'accordion',
1298
+ 'title' => 'Accordion',
1299
+ 'accordions' => array(
1300
+
1301
+ array(
1302
+ 'title' => 'Accordion 1',
1303
+ 'fields' => array(
1304
+ array(
1305
+ 'id' => 'opt-text-1',
1306
+ 'type' => 'text',
1307
+ 'title' => 'Text',
1308
+ ),
1309
+ array(
1310
+ 'id' => 'opt-switcher-1',
1311
+ 'type' => 'switcher',
1312
+ 'title' => 'Switcher',
1313
+ ),
1314
+ array(
1315
+ 'id' => 'opt-textarea-1',
1316
+ 'type' => 'textarea',
1317
+ 'title' => 'Textarea',
1318
+ ),
1319
+ )
1320
+ ),
1321
+
1322
+ array(
1323
+ 'title' => 'Accordion 2',
1324
+ 'fields' => array(
1325
+ array(
1326
+ 'id' => 'opt-text-2',
1327
+ 'type' => 'text',
1328
+ 'title' => 'Text',
1329
+ ),
1330
+ array(
1331
+ 'id' => 'opt-color-1',
1332
+ 'type' => 'color',
1333
+ 'title' => 'Color',
1334
+ ),
1335
+ )
1336
+ ),
1337
+
1338
+ )
1339
+ ),
1340
+
1341
+ array(
1342
+ 'id' => 'opt-accordion-2',
1343
+ 'type' => 'accordion',
1344
+ 'title' => 'Accordion with default',
1345
+ 'accordions' => array(
1346
+
1347
+ array(
1348
+ 'title' => 'Fields 1',
1349
+ 'fields' => array(
1350
+ array(
1351
+ 'id' => 'opt-text-1',
1352
+ 'type' => 'text',
1353
+ 'title' => 'Text 1',
1354
+ ),
1355
+ array(
1356
+ 'id' => 'opt-text-2',
1357
+ 'type' => 'text',
1358
+ 'title' => 'Text 2',
1359
+ ),
1360
+ )
1361
+ ),
1362
+
1363
+ array(
1364
+ 'title' => 'Fields 2',
1365
+ 'fields' => array(
1366
+ array(
1367
+ 'id' => 'opt-color-1',
1368
+ 'type' => 'color',
1369
+ 'title' => 'Color 1',
1370
+ ),
1371
+ array(
1372
+ 'id' => 'opt-color-2',
1373
+ 'type' => 'color',
1374
+ 'title' => 'Color 2',
1375
+ ),
1376
+ )
1377
+ ),
1378
+
1379
+ array(
1380
+ 'title' => 'Fields 3',
1381
+ 'fields' => array(
1382
+ array(
1383
+ 'id' => 'opt-textarea-1',
1384
+ 'type' => 'textarea',
1385
+ 'title' => 'Textarea 3',
1386
+ ),
1387
+ array(
1388
+ 'id' => 'opt-textarea-2',
1389
+ 'type' => 'textarea',
1390
+ 'title' => 'Textarea 4',
1391
+ ),
1392
+ )
1393
+ ),
1394
+
1395
+ ),
1396
+ 'default' => array(
1397
+ 'opt-text-1' => 'This is text 1 default value',
1398
+ 'opt-text-2' => 'This is text 2 default value',
1399
+ 'opt-color-1' => '#1e73be',
1400
+ 'opt-color-2' => '#ffbc00',
1401
+ 'opt-textarea-1' => 'This is textarea 1 default value',
1402
+ 'opt-textarea-2' => 'This is textarea 2 default value',
1403
+ )
1404
+ ),
1405
+
1406
+ array(
1407
+ 'id' => 'accordion_3',
1408
+ 'type' => 'accordion',
1409
+ 'title' => 'Accordion with custom icons',
1410
+ 'accordions' => array(
1411
+
1412
+ array(
1413
+ 'title' => 'Other 1',
1414
+ 'icon' => 'fas fa-check',
1415
+ 'fields' => array(
1416
+ array(
1417
+ 'id' => 'opt-text-1',
1418
+ 'type' => 'text',
1419
+ 'title' => 'Text 1',
1420
+ ),
1421
+ )
1422
+ ),
1423
+
1424
+ array(
1425
+ 'title' => 'Other 2',
1426
+ 'icon' => 'fas fa-star',
1427
+ 'fields' => array(
1428
+ array(
1429
+ 'id' => 'opt-text-2',
1430
+ 'type' => 'text',
1431
+ 'title' => 'Text 2',
1432
+ ),
1433
+ )
1434
+ ),
1435
+
1436
+ )
1437
+ ),
1438
+
1439
+ )
1440
+ ) );
1441
+
1442
+ //
1443
+ // Field: tabbed
1444
+ //
1445
+ CSF::createSection( $prefix, array(
1446
+ 'parent' => 'combine_fields',
1447
+ 'title' => 'Tabbed',
1448
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=tabbed" target="_blank">Field: tabbed</a>',
1449
+ 'fields' => array(
1450
+
1451
+ array(
1452
+ 'id' => 'opt-tabbed-1',
1453
+ 'type' => 'tabbed',
1454
+ 'title' => 'Tabbed',
1455
+ 'tabs' => array(
1456
+
1457
+ array(
1458
+ 'title' => 'Tab 1',
1459
+ 'fields' => array(
1460
+ array(
1461
+ 'id' => 'opt-text-1',
1462
+ 'type' => 'text',
1463
+ 'title' => 'Text 1',
1464
+ ),
1465
+ array(
1466
+ 'id' => 'opt-textarea-1',
1467
+ 'type' => 'textarea',
1468
+ 'title' => 'Textarea 1',
1469
+ ),
1470
+ ),
1471
+ ),
1472
+
1473
+ array(
1474
+ 'title' => 'Tab 2',
1475
+ 'fields' => array(
1476
+ array(
1477
+ 'id' => 'opt-text-2',
1478
+ 'type' => 'text',
1479
+ 'title' => 'Text 2',
1480
+ ),
1481
+ array(
1482
+ 'id' => 'opt-textarea-2',
1483
+ 'type' => 'textarea',
1484
+ 'title' => 'Textarea 2',
1485
+ ),
1486
+ ),
1487
+ ),
1488
+
1489
+ ),
1490
+ ),
1491
+
1492
+ array(
1493
+ 'id' => 'opt-tabbed-2',
1494
+ 'type' => 'tabbed',
1495
+ 'title' => 'Tabbed with default and icons',
1496
+ 'tabs' => array(
1497
+ array(
1498
+ 'title' => 'Fields 1',
1499
+ 'icon' => 'fas fa-check',
1500
+ 'fields' => array(
1501
+ array(
1502
+ 'id' => 'opt-text-1',
1503
+ 'type' => 'text',
1504
+ 'title' => 'Text 1',
1505
+ ),
1506
+ array(
1507
+ 'id' => 'opt-text-2',
1508
+ 'type' => 'text',
1509
+ 'title' => 'Text 2',
1510
+ ),
1511
+ ),
1512
+ ),
1513
+ array(
1514
+ 'title' => 'Fields 2',
1515
+ 'icon' => 'fas fa-star',
1516
+ 'fields' => array(
1517
+ array(
1518
+ 'id' => 'opt-color-1',
1519
+ 'type' => 'color',
1520
+ 'title' => 'Color 1',
1521
+ ),
1522
+ array(
1523
+ 'id' => 'opt-color-2',
1524
+ 'type' => 'color',
1525
+ 'title' => 'Color 2',
1526
+ ),
1527
+ ),
1528
+ ),
1529
+ array(
1530
+ 'title' => 'Fields 3',
1531
+ 'icon' => 'fas fa-cog',
1532
+ 'fields' => array(
1533
+ array(
1534
+ 'id' => 'opt-textarea-1',
1535
+ 'type' => 'textarea',
1536
+ 'title' => 'Textarea 1',
1537
+ ),
1538
+ array(
1539
+ 'id' => 'opt-textarea-2',
1540
+ 'type' => 'textarea',
1541
+ 'title' => 'Textarea 2',
1542
+ ),
1543
+ ),
1544
+ ),
1545
+ ),
1546
+ 'default' => array(
1547
+ 'opt-text-1' => 'This is text 1 default value',
1548
+ 'opt-text-2' => 'This is text 2 default value',
1549
+ 'opt-color-1' => '#1e73be',
1550
+ 'opt-color-2' => '#ffbc00',
1551
+ 'opt-textarea-1' => 'This is textarea 1 default value',
1552
+ 'opt-textarea-2' => 'This is textarea 2 default value',
1553
+ )
1554
+ ),
1555
+
1556
+ )
1557
+ ) );
1558
+
1559
+ //
1560
+ // Field: fieldset
1561
+ //
1562
+ CSF::createSection( $prefix, array(
1563
+ 'parent' => 'combine_fields',
1564
+ 'title' => 'Fieldset',
1565
+ 'fields' => array(
1566
+
1567
+ array(
1568
+ 'id' => 'opt-fieldset-1',
1569
+ 'type' => 'fieldset',
1570
+ 'title' => 'Fieldset',
1571
+ 'fields' => array(
1572
+ array(
1573
+ 'id' => 'opt-color',
1574
+ 'type' => 'color',
1575
+ 'title' => 'Color',
1576
+ ),
1577
+ array(
1578
+ 'id' => 'opt-text',
1579
+ 'type' => 'text',
1580
+ 'title' => 'Text',
1581
+ ),
1582
+ array(
1583
+ 'id' => 'opt-textarea',
1584
+ 'type' => 'textarea',
1585
+ 'title' => 'Textarea',
1586
+ ),
1587
+ ),
1588
+ ),
1589
+
1590
+ array(
1591
+ 'id' => 'opt-fieldset-2',
1592
+ 'type' => 'fieldset',
1593
+ 'title' => 'Fieldset with default',
1594
+ 'fields' => array(
1595
+ array(
1596
+ 'type' => 'subheading',
1597
+ 'content' => 'Title of the fieldset',
1598
+ ),
1599
+ array(
1600
+ 'id' => 'opt-color',
1601
+ 'type' => 'color',
1602
+ 'title' => 'Color',
1603
+ ),
1604
+ array(
1605
+ 'id' => 'opt-text',
1606
+ 'type' => 'text',
1607
+ 'title' => 'Text',
1608
+ ),
1609
+ array(
1610
+ 'id' => 'opt-textarea',
1611
+ 'type' => 'textarea',
1612
+ 'title' => 'Textarea',
1613
+ ),
1614
+ ),
1615
+ 'default' => array(
1616
+ 'opt-color' => '#1e73be',
1617
+ 'opt-text' => 'This is text default value',
1618
+ 'opt-textarea' => 'This is textarea default value',
1619
+ )
1620
+ ),
1621
+
1622
+ )
1623
+ ) );
1624
+
1625
+ //
1626
+ // Media and Upload Fields
1627
+ //
1628
+ CSF::createSection( $prefix, array(
1629
+ 'id' => 'media_fields',
1630
+ 'title' => 'Media and Upload Fields',
1631
+ 'icon' => 'fas fa-upload',
1632
+ ) );
1633
+
1634
+ //
1635
+ // Field: media
1636
+ //
1637
+ CSF::createSection( $prefix, array(
1638
+ 'parent' => 'media_fields',
1639
+ 'title' => 'Media',
1640
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=media" target="_blank">Field: media</a>',
1641
+ 'fields' => array(
1642
+
1643
+ array(
1644
+ 'id' => 'opt-media-1',
1645
+ 'type' => 'media',
1646
+ 'title' => 'Media',
1647
+ ),
1648
+
1649
+ array(
1650
+ 'id' => 'opt-media-2',
1651
+ 'type' => 'media',
1652
+ 'title' => 'Media without preview',
1653
+ 'preview' => false,
1654
+ ),
1655
+
1656
+ array(
1657
+ 'id' => 'opt-media-3',
1658
+ 'type' => 'media',
1659
+ 'title' => 'Media without url',
1660
+ 'url' => false,
1661
+ ),
1662
+
1663
+ array(
1664
+ 'id' => 'opt-media-4',
1665
+ 'type' => 'media',
1666
+ 'title' => 'Media with only image type',
1667
+ 'library' => 'image',
1668
+ ),
1669
+
1670
+ array(
1671
+ 'id' => 'opt-media-5',
1672
+ 'type' => 'media',
1673
+ 'title' => 'Media with only video type',
1674
+ 'library' => 'video',
1675
+ ),
1676
+
1677
+ array(
1678
+ 'id' => 'opt-media-6',
1679
+ 'type' => 'media',
1680
+ 'title' => 'Media with only audio type',
1681
+ 'library' => 'audio',
1682
+ ),
1683
+
1684
+ )
1685
+ ) );
1686
+
1687
+ //
1688
+ // Field: upload
1689
+ //
1690
+ CSF::createSection( $prefix, array(
1691
+ 'parent' => 'media_fields',
1692
+ 'title' => 'Upload',
1693
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=upload" target="_blank">Field: upload</a>',
1694
+ 'fields' => array(
1695
+
1696
+ array(
1697
+ 'id' => 'opt-upload-1',
1698
+ 'type' => 'upload',
1699
+ 'title' => 'Upload',
1700
+ ),
1701
+
1702
+ array(
1703
+ 'id' => 'opt-upload-2',
1704
+ 'type' => 'upload',
1705
+ 'title' => 'Upload with preview',
1706
+ 'preview' => true,
1707
+ ),
1708
+
1709
+ array(
1710
+ 'id' => 'opt-upload-3',
1711
+ 'type' => 'upload',
1712
+ 'title' => 'Upload with placeholder',
1713
+ 'placeholder' => 'http://'
1714
+ ),
1715
+
1716
+ array(
1717
+ 'id' => 'opt-upload-4',
1718
+ 'type' => 'upload',
1719
+ 'title' => 'Upload with only image type',
1720
+ 'library' => 'image',
1721
+ 'button_title' => 'Upload Image',
1722
+ ),
1723
+
1724
+ array(
1725
+ 'id' => 'opt-upload-5',
1726
+ 'type' => 'upload',
1727
+ 'title' => 'Upload with only video type',
1728
+ 'library' => 'video',
1729
+ 'button_title' => 'Upload Video',
1730
+ ),
1731
+
1732
+ array(
1733
+ 'id' => 'opt-upload-6',
1734
+ 'type' => 'upload',
1735
+ 'title' => 'Upload with only audio type',
1736
+ 'library' => 'audio',
1737
+ 'button_title' => 'Upload Audio',
1738
+ ),
1739
+
1740
+ )
1741
+ ) );
1742
+
1743
+ //
1744
+ // Field: gallery
1745
+ //
1746
+ CSF::createSection( $prefix, array(
1747
+ 'parent' => 'media_fields',
1748
+ 'title' => 'Gallery',
1749
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=gallery" target="_blank">Field: gallery</a>',
1750
+ 'fields' => array(
1751
+
1752
+ array(
1753
+ 'id' => 'opt-gallery-1',
1754
+ 'type' => 'gallery',
1755
+ 'title' => 'Gallery',
1756
+ ),
1757
+
1758
+ array(
1759
+ 'id' => 'opt-gallery-2',
1760
+ 'type' => 'gallery',
1761
+ 'title' => 'Gallery with custom button names',
1762
+ 'add_title' => 'Add Image(s)',
1763
+ 'edit_title' => 'Edit Images',
1764
+ 'clear_title' => 'Remove Images',
1765
+ ),
1766
+
1767
+ )
1768
+ ) );
1769
+
1770
+ //
1771
+ // Editor Fields
1772
+ //
1773
+ CSF::createSection( $prefix, array(
1774
+ 'id' => 'editor_fields',
1775
+ 'title' => 'Editor Fields',
1776
+ 'icon' => 'fas fa-code',
1777
+ ) );
1778
+
1779
+ //
1780
+ // Field: code_editor
1781
+ //
1782
+ CSF::createSection( $prefix, array(
1783
+ 'parent' => 'editor_fields',
1784
+ 'title' => 'Code Editor',
1785
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=code-editor" target="_blank">Field: code_editor</a>',
1786
+ 'fields' => array(
1787
+
1788
+ array(
1789
+ 'id' => 'opt-code-editor-1',
1790
+ 'type' => 'code_editor',
1791
+ 'title' => 'Code Editor',
1792
+ 'subtitle' => '<strong>Default Editor</strong> Using: theme: default and mode: htmlmixed',
1793
+ ),
1794
+
1795
+ array(
1796
+ 'id' => 'code_editor_2',
1797
+ 'type' => 'code_editor',
1798
+ 'title' => 'Code Editor',
1799
+ 'subtitle' => '<strong>HTML Editor</strong> Using: theme: shadowfox and mode: htmlmixed',
1800
+ 'settings' => array(
1801
+ 'theme' => 'shadowfox',
1802
+ 'mode' => 'htmlmixed',
1803
+ ),
1804
+ 'default' =>'<div class="wrapper">
1805
+ <h1>Hello world</h1>
1806
+ <p>Lorem <strong>ipsum</strong> dollar.</p>
1807
+ </div>',
1808
+ ),
1809
+
1810
+ array(
1811
+ 'id' => 'opt-code-editor-2',
1812
+ 'type' => 'code_editor',
1813
+ 'title' => 'Code Editor',
1814
+ 'subtitle' => '<strong>JS Editor</strong> Using: theme: dracula and mode: javascript',
1815
+ 'settings' => array(
1816
+ 'theme' => 'dracula',
1817
+ 'mode' => 'javascript',
1818
+ ),
1819
+ 'default' =>';(function( $, window, document, undefined ) {
1820
+ "use strict";
1821
+
1822
+ $(document).ready( function() {
1823
+
1824
+ // do stuff
1825
+
1826
+ });
1827
+
1828
+ })( jQuery, window, document );',
1829
+ ),
1830
+
1831
+ array(
1832
+ 'id' => 'opt-code-editor-3',
1833
+ 'type' => 'code_editor',
1834
+ 'desc' => '<strong>CSS Editor</strong> It shows full width if there is no field of title and using: theme: mbo and mode: css',
1835
+ 'settings' => array(
1836
+ 'theme' => 'mbo',
1837
+ 'mode' => 'css',
1838
+ ),
1839
+ 'default' =>'.wrapper {
1840
+ font-family: "Open Sans";
1841
+ font-size: 13px;
1842
+ width: 250px;
1843
+ height: 100px;
1844
+ color: #fff;
1845
+ background-color: #555;
1846
+ }',
1847
+ ),
1848
+
1849
+ )
1850
+ ) );
1851
+
1852
+ //
1853
+ // Field: wp_editor
1854
+ //
1855
+ CSF::createSection( $prefix, array(
1856
+ 'parent' => 'editor_fields',
1857
+ 'title' => 'WP Editor',
1858
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=wp-editor" target="_blank">Field: wp_editor</a>',
1859
+ 'fields' => array(
1860
+
1861
+ array(
1862
+ 'id' => 'opt-wp-editor-1',
1863
+ 'type' => 'wp_editor',
1864
+ 'title' => 'WP Editor',
1865
+ ),
1866
+
1867
+ array(
1868
+ 'id' => 'opt-wp-editor-2',
1869
+ 'type' => 'wp_editor',
1870
+ 'title' => 'WP Editor with Custom Height and No Media Buttons',
1871
+ 'subtitle' => 'Settings:<br />height => 100px,<br />media_buttons => false',
1872
+ 'height' => '100px',
1873
+ 'media_buttons' => false,
1874
+ ),
1875
+
1876
+ array(
1877
+ 'id' => 'opt-wp-editor-3',
1878
+ 'type' => 'wp_editor',
1879
+ 'title' => 'WP Editor without QuickTags and Media Buttons',
1880
+ 'subtitle' => 'Settings:<br />height => 100px,<br />media_buttons => false,<br />quicktags => false',
1881
+ 'height' => '100px',
1882
+ 'media_buttons' => false,
1883
+ 'quicktags' => false,
1884
+ ),
1885
+
1886
+ array(
1887
+ 'id' => 'opt-wp-editor-4',
1888
+ 'type' => 'wp_editor',
1889
+ 'title' => 'WP Editor without Tinymce and Media Buttons',
1890
+ 'subtitle' => 'Settings:<br />height => 100px,<br />media_buttons => false,<br />tinymce => false',
1891
+ 'height' => '100px',
1892
+ 'media_buttons' => false,
1893
+ 'tinymce' => false,
1894
+ ),
1895
+
1896
+ )
1897
+ ) );
1898
+
1899
+ //
1900
+ // Color Fields
1901
+ //
1902
+ CSF::createSection( $prefix, array(
1903
+ 'id' => 'color_fields',
1904
+ 'title' => 'Color Fields',
1905
+ 'icon' => 'fas fa-tint',
1906
+ ) );
1907
+
1908
+ //
1909
+ // Field: color
1910
+ //
1911
+ CSF::createSection( $prefix, array(
1912
+ 'parent' => 'color_fields',
1913
+ 'title' => 'Color',
1914
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=color" target="_blank">Field: color</a>',
1915
+ 'fields' => array(
1916
+
1917
+ array(
1918
+ 'id' => 'opt-color-1',
1919
+ 'type' => 'color',
1920
+ 'title' => 'Color',
1921
+ ),
1922
+
1923
+ array(
1924
+ 'id' => 'opt-color-2',
1925
+ 'type' => 'color',
1926
+ 'title' => 'Color with default (hex)',
1927
+ 'default' => '#3498db',
1928
+ ),
1929
+
1930
+ array(
1931
+ 'id' => 'opt-color-3',
1932
+ 'type' => 'color',
1933
+ 'title' => 'Color with default (rgba)',
1934
+ 'default' => 'rgba(255,255,0,0.25)',
1935
+ ),
1936
+
1937
+ array(
1938
+ 'id' => 'opt-color-4',
1939
+ 'type' => 'color',
1940
+ 'title' => 'Color with default (transparent)',
1941
+ 'default' => 'transparent',
1942
+ ),
1943
+
1944
+ )
1945
+ ) );
1946
+
1947
+ //
1948
+ // Field: link_color
1949
+ //
1950
+ CSF::createSection( $prefix, array(
1951
+ 'parent' => 'color_fields',
1952
+ 'title' => 'Link Color',
1953
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=link-color" target="_blank">Field: link_color</a>',
1954
+ 'fields' => array(
1955
+
1956
+ array(
1957
+ 'id' => 'opt-link-color-1',
1958
+ 'type' => 'link_color',
1959
+ 'title' => 'Link Color',
1960
+ ),
1961
+
1962
+ array(
1963
+ 'id' => 'opt-link-color-2',
1964
+ 'type' => 'link_color',
1965
+ 'title' => 'Link Color with default',
1966
+ 'default' => array(
1967
+ 'color' => '#1e73be',
1968
+ 'hover' => '#259ded',
1969
+ ),
1970
+ ),
1971
+
1972
+ array(
1973
+ 'id' => 'opt-link-color-3',
1974
+ 'type' => 'link_color',
1975
+ 'title' => 'Link Color with more color options',
1976
+ 'color' => true,
1977
+ 'hover' => true,
1978
+ 'visited' => true,
1979
+ 'active' => true,
1980
+ 'focus' => true,
1981
+ ),
1982
+
1983
+ )
1984
+ ) );
1985
+
1986
+ //
1987
+ // Field: color_group
1988
+ //
1989
+ CSF::createSection( $prefix, array(
1990
+ 'parent' => 'color_fields',
1991
+ 'title' => 'Color Group',
1992
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=color-group" target="_blank">Field: color_group</a>',
1993
+ 'fields' => array(
1994
+
1995
+ array(
1996
+ 'id' => 'opt-color-group-1',
1997
+ 'type' => 'color_group',
1998
+ 'title' => 'Color Group',
1999
+ 'options' => array(
2000
+ 'color-1' => 'Color 1',
2001
+ 'color-2' => 'Color 2',
2002
+ )
2003
+ ),
2004
+
2005
+ array(
2006
+ 'id' => 'opt-color-group-2',
2007
+ 'type' => 'color_group',
2008
+ 'title' => 'Color Group',
2009
+ 'options' => array(
2010
+ 'color-1' => 'Color 1',
2011
+ 'color-2' => 'Color 2',
2012
+ 'color-3' => 'Color 3',
2013
+ )
2014
+ ),
2015
+
2016
+ array(
2017
+ 'id' => 'opt-color-group-3',
2018
+ 'type' => 'color_group',
2019
+ 'title' => 'Color Group with default',
2020
+ 'subtitle' => 'Can be add unlimited color options.',
2021
+ 'options' => array(
2022
+ 'color-1' => 'Color 1',
2023
+ 'color-2' => 'Color 2',
2024
+ 'color-3' => 'Color 3',
2025
+ 'color-4' => 'Color 4',
2026
+ 'color-5' => 'Color 5',
2027
+ ),
2028
+ 'default' => array(
2029
+ 'color-1' => '#000100',
2030
+ 'color-2' => '#002642',
2031
+ 'color-3' => '#ffce4b',
2032
+ 'color-4' => '#ff595e',
2033
+ 'color-5' => '#0052cc',
2034
+ )
2035
+ ),
2036
+
2037
+ )
2038
+ ) );
2039
+
2040
+ //
2041
+ // Field: palette
2042
+ //
2043
+ CSF::createSection( $prefix, array(
2044
+ 'parent' => 'color_fields',
2045
+ 'title' => 'Color Palette',
2046
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=palette" target="_blank">Field: palette</a>',
2047
+ 'fields' => array(
2048
+
2049
+ array(
2050
+ 'id' => 'opt-palette-1',
2051
+ 'type' => 'palette',
2052
+ 'title' => 'Palette',
2053
+ 'subtitle' => 'Three set colors',
2054
+ 'options' => array(
2055
+ 'set-1' => array( '#f36e27', '#f3d430', '#ed1683' ),
2056
+ 'set-2' => array( '#4153ab', '#6e86c7', '#211f27' ),
2057
+ 'set-3' => array( '#162526', '#508486', '#C8C6CE' ),
2058
+ 'set-4' => array( '#ccab5e', '#fff55f', '#197c5d' ),
2059
+ ),
2060
+ 'default' => 'set-1',
2061
+ ),
2062
+
2063
+ array(
2064
+ 'id' => 'opt-palette-2',
2065
+ 'type' => 'palette',
2066
+ 'title' => 'Palette',
2067
+ 'subtitle' => 'Four set colors',
2068
+ 'options' => array(
2069
+ 'set-1' => array( '#f04e36', '#f36e27', '#f3d430', '#ed1683' ),
2070
+ 'set-2' => array( '#f9ca06', '#b5b546', '#2f4d48', '#212b2f' ),
2071
+ 'set-3' => array( '#4153ab', '#6e86c7', '#211f27', '#d69762' ),
2072
+ 'set-4' => array( '#162526', '#508486', '#C8C6CE', '#B45F1A' ),
2073
+ 'set-5' => array( '#bbd5ff', '#ccab5e', '#fff55f', '#197c5d' ),
2074
+ ),
2075
+ 'default' => 'set-3',
2076
+ ),
2077
+
2078
+ array(
2079
+ 'id' => 'opt-palette-3',
2080
+ 'type' => 'palette',
2081
+ 'title' => 'Palette',
2082
+ 'subtitle' => 'Five set colors',
2083
+ 'options' => array(
2084
+ 'set-1' => array( '#bbd5ff', '#ccab5e', '#fff55f', '#197c5d', '#bce2c4' ),
2085
+ 'set-2' => array( '#6d3264', '#edf7f6', '#fde8e9', '#006675', '#e49ab0' ),
2086
+ 'set-3' => array( '#000100', '#002642', '#ffce4b', '#ff595e', '#0052cc' ),
2087
+ ),
2088
+ 'default' => 'set-1',
2089
+ ),
2090
+
2091
+ )
2092
+ ) );
2093
+
2094
+ //
2095
+ // Design Fields
2096
+ //
2097
+ CSF::createSection( $prefix, array(
2098
+ 'id' => 'design_fields',
2099
+ 'title' => 'Design Fields',
2100
+ 'icon' => 'fas fa-adjust',
2101
+ ) );
2102
+
2103
+ //
2104
+ // Field: background
2105
+ //
2106
+ CSF::createSection( $prefix, array(
2107
+ 'parent' => 'design_fields',
2108
+ 'title' => 'Background',
2109
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=background" target="_blank">Field: background</a>',
2110
+ 'fields' => array(
2111
+
2112
+ array(
2113
+ 'id' => 'opt-background-1',
2114
+ 'type' => 'background',
2115
+ 'title' => 'Background',
2116
+ ),
2117
+
2118
+ array(
2119
+ 'id' => 'opt-background-2',
2120
+ 'type' => 'background',
2121
+ 'title' => 'Background with default',
2122
+ 'default' => array(
2123
+ 'background-color' => '#e80000',
2124
+ 'background-position' => 'center center',
2125
+ 'background-repeat' => 'repeat-x',
2126
+ 'background-attachment' => 'fixed',
2127
+ 'background-size' => 'cover',
2128
+ )
2129
+ ),
2130
+
2131
+ array(
2132
+ 'id' => 'opt-background-3',
2133
+ 'type' => 'background',
2134
+ 'title' => 'Background with all features',
2135
+ 'background_color' => true,
2136
+ 'background_image' => true,
2137
+ 'background-position' => true,
2138
+ 'background_repeat' => true,
2139
+ 'background_attachment' => true,
2140
+ 'background_size' => true,
2141
+ 'background_origin' => true,
2142
+ 'background_clip' => true,
2143
+ 'background_blend_mode' => true,
2144
+ 'background_gradient' => true,
2145
+ 'default' => array(
2146
+ 'background-color' => '#009e44',
2147
+ 'background-gradient-color' => '#81d742',
2148
+ 'background-gradient-direction' => '135deg',
2149
+ 'background-position' => 'center center',
2150
+ 'background-repeat' => 'repeat-x',
2151
+ 'background-attachment' => 'fixed',
2152
+ 'background-size' => 'cover',
2153
+ 'background-origin' => 'border-box',
2154
+ 'background-clip' => 'padding-box',
2155
+ 'background-blend-mode' => 'normal',
2156
+ )
2157
+ ),
2158
+
2159
+ )
2160
+ ) );
2161
+
2162
+ //
2163
+ // Field: typography
2164
+ //
2165
+ CSF::createSection( $prefix, array(
2166
+ 'parent' => 'design_fields',
2167
+ 'title' => 'Typography',
2168
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=typography" target="_blank">Field: typography</a>',
2169
+ 'fields' => array(
2170
+
2171
+ array(
2172
+ 'id' => 'opt-typography-1',
2173
+ 'type' => 'typography',
2174
+ 'title' => 'Typography',
2175
+ ),
2176
+
2177
+ array(
2178
+ 'id' => 'opt-typography-2',
2179
+ 'type' => 'typography',
2180
+ 'title' => 'Typography with default',
2181
+ 'default' => array(
2182
+ 'font-family' => 'Barlow',
2183
+ 'font-weight' => '600',
2184
+ 'subset' => 'latin-ext',
2185
+ 'type' => 'google',
2186
+ 'text-align' => 'center',
2187
+ 'text-transform' => 'capitalize',
2188
+ 'font-size' => '18',
2189
+ 'line-height' => '20',
2190
+ 'letter-spacing' => '-1',
2191
+ 'color' => '#009e44',
2192
+ ),
2193
+ ),
2194
+
2195
+ array(
2196
+ 'id' => 'opt-typography-3',
2197
+ 'type' => 'typography',
2198
+ 'title' => 'Typography with few features',
2199
+ 'text_align' => false,
2200
+ 'text_transform' => false,
2201
+ 'font_size' => false,
2202
+ 'line_height' => false,
2203
+ 'letter_spacing' => false,
2204
+ 'color' => false,
2205
+ 'default' => array(
2206
+ 'font-family' => 'Lato',
2207
+ 'font-weight' => '900',
2208
+ 'subset' => 'latin',
2209
+ 'type' => 'google',
2210
+ ),
2211
+ ),
2212
+
2213
+
2214
+ array(
2215
+ 'id' => 'opt-typography-4',
2216
+ 'type' => 'typography',
2217
+ 'title' => 'Typography with all features',
2218
+ 'font_family' => true,
2219
+ 'font_weight' => true,
2220
+ 'font_style' => true,
2221
+ 'font_size' => true,
2222
+ 'line_height' => true,
2223
+ 'letter_spacing' => true,
2224
+ 'text_align' => true,
2225
+ 'text-transform' => true,
2226
+ 'color' => true,
2227
+ 'subset' => true,
2228
+ 'backup_font_family' => true,
2229
+ 'font_variant' => true,
2230
+ 'word_spacing' => true,
2231
+ 'text_decoration' => true,
2232
+ 'default' => array(
2233
+ 'font-family' => 'Old Standard TT',
2234
+ 'type' => 'google',
2235
+ ),
2236
+ ),
2237
+
2238
+ )
2239
+ ) );
2240
+
2241
+ //
2242
+ // Field: dimensions
2243
+ //
2244
+ CSF::createSection( $prefix, array(
2245
+ 'parent' => 'design_fields',
2246
+ 'title' => 'Dimensions',
2247
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=dimensions" target="_blank">Field: dimensions</a>',
2248
+ 'fields' => array(
2249
+
2250
+ array(
2251
+ 'id' => 'opt-dimensions-1',
2252
+ 'type' => 'dimensions',
2253
+ 'title' => 'Dimensions',
2254
+ ),
2255
+
2256
+ array(
2257
+ 'id' => 'opt-dimensions-2',
2258
+ 'type' => 'dimensions',
2259
+ 'title' => 'Dimensions with default',
2260
+ 'default' => array(
2261
+ 'width' => '100',
2262
+ 'height' => '250',
2263
+ 'unit' => 'px',
2264
+ ),
2265
+ ),
2266
+
2267
+ array(
2268
+ 'id' => 'opt-dimensions-3',
2269
+ 'type' => 'dimensions',
2270
+ 'title' => 'Dimensions with custom text and units',
2271
+ 'width_icon' => 'width',
2272
+ 'height_icon' => 'height',
2273
+ 'units' => array( 'px', '%', 'em', 'rem', 'pt' ),
2274
+ 'default' => array(
2275
+ 'width' => '100',
2276
+ 'height' => '50',
2277
+ 'unit' => '%',
2278
+ ),
2279
+ ),
2280
+
2281
+ array(
2282
+ 'id' => 'opt-dimensions-4',
2283
+ 'type' => 'dimensions',
2284
+ 'title' => 'Dimensions with single unit',
2285
+ 'units' => array( 'px' ),
2286
+ ),
2287
+
2288
+ array(
2289
+ 'id' => 'opt-dimensions-5',
2290
+ 'type' => 'dimensions',
2291
+ 'title' => 'Dimensions without unit selector',
2292
+ 'unit' => false,
2293
+ ),
2294
+
2295
+ array(
2296
+ 'id' => 'opt-dimensions-6',
2297
+ 'type' => 'dimensions',
2298
+ 'title' => 'Dimensions with only width',
2299
+ 'height' => false,
2300
+ ),
2301
+
2302
+ array(
2303
+ 'id' => 'opt-dimensions-7',
2304
+ 'type' => 'dimensions',
2305
+ 'title' => 'Dimensions with only width and single unit',
2306
+ 'height' => false,
2307
+ 'units' => array( 'px' ),
2308
+ ),
2309
+
2310
+ )
2311
+ ) );
2312
+
2313
+ //
2314
+ // Field: spacing
2315
+ //
2316
+ CSF::createSection( $prefix, array(
2317
+ 'parent' => 'design_fields',
2318
+ 'title' => 'Spacing',
2319
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=spacing" target="_blank">Field: spacing</a>',
2320
+ 'fields' => array(
2321
+
2322
+ array(
2323
+ 'id' => 'opt-spacing-1',
2324
+ 'type' => 'spacing',
2325
+ 'title' => 'Spacing',
2326
+ ),
2327
+
2328
+ array(
2329
+ 'id' => 'opt-spacing-2',
2330
+ 'type' => 'spacing',
2331
+ 'title' => 'Spacing with default',
2332
+ 'default' => array(
2333
+ 'top' => '50',
2334
+ 'right' => '100',
2335
+ 'bottom' => '50',
2336
+ 'left' => '100',
2337
+ 'unit' => 'px',
2338
+ ),
2339
+ ),
2340
+
2341
+ array(
2342
+ 'id' => 'opt-spacing-2',
2343
+ 'type' => 'spacing',
2344
+ 'title' => 'Spacing without unit selector',
2345
+ 'units' => array( 'px' ),
2346
+ 'default' => array(
2347
+ 'top' => '50',
2348
+ 'right' => '100',
2349
+ 'bottom' => '50',
2350
+ 'left' => '100',
2351
+ 'unit' => 'px',
2352
+ ),
2353
+ ),
2354
+
2355
+ array(
2356
+ 'id' => 'opt-spacing-3',
2357
+ 'type' => 'spacing',
2358
+ 'title' => 'Spacing with only left and right',
2359
+ 'top' => false,
2360
+ 'bottom' => false,
2361
+ ),
2362
+
2363
+ array(
2364
+ 'id' => 'opt-spacing-4',
2365
+ 'type' => 'spacing',
2366
+ 'title' => 'Spacing with only top and bottom',
2367
+ 'left' => false,
2368
+ 'right' => false,
2369
+ ),
2370
+
2371
+ array(
2372
+ 'id' => 'opt-spacing-5',
2373
+ 'type' => 'spacing',
2374
+ 'title' => 'Spacing with all directions',
2375
+ 'all' => true,
2376
+ ),
2377
+
2378
+ )
2379
+ ) );
2380
+
2381
+ //
2382
+ // Field: border
2383
+ //
2384
+ CSF::createSection( $prefix, array(
2385
+ 'parent' => 'design_fields',
2386
+ 'title' => 'Border',
2387
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=border" target="_blank">Field: border</a>',
2388
+ 'fields' => array(
2389
+
2390
+ array(
2391
+ 'id' => 'opt-border-1',
2392
+ 'type' => 'border',
2393
+ 'title' => 'Border',
2394
+ ),
2395
+
2396
+ array(
2397
+ 'id' => 'opt-border-2',
2398
+ 'type' => 'border',
2399
+ 'title' => 'Border with default',
2400
+ 'default' => array(
2401
+ 'top' => '4',
2402
+ 'right' => '8',
2403
+ 'bottom' => '4',
2404
+ 'left' => '8',
2405
+ 'style' => 'dashed',
2406
+ 'color' => '#1e73be',
2407
+ )
2408
+ ),
2409
+
2410
+ array(
2411
+ 'id' => 'opt-border-3',
2412
+ 'type' => 'border',
2413
+ 'title' => 'Border with only left and right',
2414
+ 'top' => false,
2415
+ 'bottom' => false,
2416
+ ),
2417
+
2418
+ array(
2419
+ 'id' => 'opt-border-4',
2420
+ 'type' => 'border',
2421
+ 'title' => 'Border with only top and bottom',
2422
+ 'left' => false,
2423
+ 'right' => false,
2424
+ ),
2425
+
2426
+ array(
2427
+ 'id' => 'opt-border-5',
2428
+ 'type' => 'border',
2429
+ 'title' => 'Border with all directions',
2430
+ 'all' => true,
2431
+ ),
2432
+
2433
+ )
2434
+ ) );
2435
+
2436
+ //
2437
+ // Field: spinner
2438
+ //
2439
+ CSF::createSection( $prefix, array(
2440
+ 'parent' => 'design_fields',
2441
+ 'title' => 'Spinner',
2442
+ 'description' => 'Visit documentation for more details on this field: <a href="http://codestarframework.com/documentation/#/fields?id=spinner" target="_blank">Field: spinner</a>',
2443
+ 'fields' => array(
2444
+
2445
+ array(
2446
+ 'id' => 'opt-spinner-1',
2447
+ 'type' => 'spinner',
2448
+ 'title' => 'Spinner',
2449
+ 'subtitle' => 'max:100 | min:0 | step:1',
2450
+ 'max' => 100,
2451
+ 'min' => 0,
2452
+ 'step' => 1,
2453
+ 'default' => 25,
2454
+ ),
2455
+
2456
+ array(
2457
+ 'id' => 'opt-spinner-2',
2458
+ 'type' => 'spinner',
2459
+ 'title' => 'Spinner',
2460
+ 'subtitle' => 'max:200 | min:100 | step:10',
2461
+ 'max' => 200,
2462
+ 'min' => 100,
2463
+ 'step' => 10,
2464
+ 'default' => 100,
2465
+ ),
2466
+
2467
+ array(
2468
+ 'id' => 'opt-spinner-3',
2469
+ 'type' => 'spinner',
2470
+ 'title' => 'Spinner',
2471
+ 'subtitle' => 'max:1 | min:0 | step:0.1 | unit:px',
2472
+ 'max' => 1,
2473
+ 'min' => 0,
2474
+ 'ste