Changeset 3446163
- Timestamp:
- 01/24/2026 02:47:52 PM (2 months ago)
- Location:
- gallery-lightbox-slider/trunk
- Files:
-
- 18 added
- 25 edited
-
gallery-lightbox-lite.php (modified) (3 diffs)
-
inc/functions/ajax/glg-admin-ajax.php (modified) (9 diffs)
-
inc/functions/glg-functions.php (modified) (7 diffs)
-
inc/gfg-metabox.php (modified) (4 diffs)
-
inc/js/settings/iosCheckbox.js (modified) (4 diffs)
-
inc/js/settings/option-tab.js (modified) (3 diffs)
-
inc/settings/glg-global-settings.php (modified) (2 diffs)
-
inc/settings/glg-lightbox-settings.php (modified) (1 diff)
-
inc/settings/pages/glg-docs.php (modified) (1 diff)
-
inc/settings/pages/glg-free-plugins.php (modified) (1 diff)
-
inc/settings/pages/glg-premium-plugins.php (modified) (1 diff)
-
languages/gallery-lightbox-slider-de_DE.l10n.php (added)
-
languages/gallery-lightbox-slider-de_DE.mo (modified) (previous)
-
languages/gallery-lightbox-slider-de_DE.po (modified) (12 diffs)
-
languages/gallery-lightbox-slider-es_ES.l10n.php (added)
-
languages/gallery-lightbox-slider-es_ES.mo (modified) (previous)
-
languages/gallery-lightbox-slider-es_ES.po (modified) (12 diffs)
-
languages/gallery-lightbox-slider-fr_FR.l10n.php (added)
-
languages/gallery-lightbox-slider-fr_FR.mo (modified) (previous)
-
languages/gallery-lightbox-slider-fr_FR.po (modified) (9 diffs)
-
languages/gallery-lightbox-slider-hi_IN.l10n.php (added)
-
languages/gallery-lightbox-slider-hi_IN.mo (added)
-
languages/gallery-lightbox-slider-hi_IN.po (added)
-
languages/gallery-lightbox-slider-id_ID.l10n.php (added)
-
languages/gallery-lightbox-slider-id_ID.mo (modified) (previous)
-
languages/gallery-lightbox-slider-id_ID.po (modified) (10 diffs)
-
languages/gallery-lightbox-slider-it_IT.l10n.php (added)
-
languages/gallery-lightbox-slider-it_IT.mo (modified) (previous)
-
languages/gallery-lightbox-slider-it_IT.po (modified) (8 diffs)
-
languages/gallery-lightbox-slider-ms_MY.l10n.php (added)
-
languages/gallery-lightbox-slider-ms_MY.mo (modified) (previous)
-
languages/gallery-lightbox-slider-ms_MY.po (modified) (6 diffs)
-
languages/gallery-lightbox-slider-nl_NL.l10n.php (added)
-
languages/gallery-lightbox-slider-nl_NL.mo (added)
-
languages/gallery-lightbox-slider-nl_NL.po (added)
-
languages/gallery-lightbox-slider-ro_RO.l10n.php (added)
-
languages/gallery-lightbox-slider-ro_RO.mo (added)
-
languages/gallery-lightbox-slider-ro_RO.po (added)
-
languages/gallery-lightbox-slider-ru_RU.l10n.php (added)
-
languages/gallery-lightbox-slider-ru_RU.mo (added)
-
languages/gallery-lightbox-slider-ru_RU.po (added)
-
languages/gallery-lightbox-slider.pot (modified) (6 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gallery-lightbox-slider/trunk/gallery-lightbox-lite.php
r3210318 r3446163 5 5 Plugin URI: https://ghozylab.com/plugins/ 6 6 Description: Displays your images gallery into the awesome and responsive lightbox slider with very easy 7 Author: PT. GHOZY LAB LLC 7 Author: PT. GHOZY LAB LLC. 8 8 Text Domain: gallery-lightbox-slider 9 9 Domain Path: /languages 10 Version: 1.0.0.4 110 Version: 1.0.0.43 11 11 Author URI: https://ghozylab.com/plugins/ 12 12 */ 13 13 14 14 15 if ( ! defined( 'ABSPATH') ) {16 die( 'Please do not load this file directly.');15 if ( ! defined( 'ABSPATH' ) ) { 16 die( 'Please do not load this file directly.' ); 17 17 } 18 18 19 19 20 /*-------------------------------------------------------------------------------*/ 21 /* All DEFINES 20 /* 21 -------------------------------------------------------------------------------*/ 22 /* 23 All DEFINES 22 24 /*-------------------------------------------------------------------------------*/ 23 25 $glg_plugin_url = substr( plugin_dir_url( __FILE__ ), 0, -1 ); … … 25 27 26 28 define( 'GLG_ITEM_NAME', 'Gallery Lightbox Lite' ); 27 define( 'GLG_VERSION', '1.0.0.4 1' );29 define( 'GLG_VERSION', '1.0.0.43' ); 28 30 define( 'GLG_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 29 31 define( 'GLG_URL', $glg_plugin_url ); 30 32 define( 'GLG_DIR', $glg_plugin_dir ); 31 define( 'GLG_PLUGIN_SLUG', 'gallery-lightbox-slider/gallery-lightbox-lite.php' );33 define( 'GLG_PLUGIN_SLUG', 'gallery-lightbox-slider/gallery-lightbox-lite.php' ); 32 34 33 /*-------------------------------------------------------------------------------*/ 34 /* Plugin Init 35 /* 36 -------------------------------------------------------------------------------*/ 37 /* 38 Plugin Init 35 39 /*-------------------------------------------------------------------------------*/ 36 40 add_action( 'init', 'glg_general_init' ); 37 41 38 42 function glg_general_init() { 39 43 40 44 // Make sure jQuery loaded on frontend 41 if( !is_admin() ) { 42 45 if ( ! is_admin() ) { 43 46 wp_enqueue_script( 'jquery' ); 44 45 } 46 47 } 48 47 49 // Global 48 50 load_plugin_textdomain( 'gallery-lightbox-slider', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 49 50 include_once ( GLG_PLUGIN_DIR . 'inc/functions/glg-functions.php' );51 51 52 include_once GLG_PLUGIN_DIR . 'inc/functions/glg-functions.php'; 53 52 54 // Only in Admin Area 53 55 if ( is_admin() ) { 54 56 55 57 add_action( 'admin_menu', 'glg_menu_page' ); 56 58 add_action( 'admin_enqueue_scripts', 'glg_admin_enqueue_scripts' ); 57 59 add_filter( 'plugin_action_links', 'glg_settings_link', 10, 2 ); 58 59 include_once ( GLG_PLUGIN_DIR . 'inc/gfg-metabox.php' );60 include_once ( GLG_PLUGIN_DIR . 'inc/settings/glg-global-settings.php' );61 include_once ( GLG_PLUGIN_DIR . 'inc/functions/ajax/glg-admin-ajax.php' );62 60 61 include_once GLG_PLUGIN_DIR . 'inc/gfg-metabox.php'; 62 include_once GLG_PLUGIN_DIR . 'inc/settings/glg-global-settings.php'; 63 include_once GLG_PLUGIN_DIR . 'inc/functions/ajax/glg-admin-ajax.php'; 64 63 65 } 64 66 65 67 // Outside Admin Area 66 68 if ( ! is_admin() ) { 67 68 include_once ( GLG_PLUGIN_DIR . 'inc/functions/ajax/glg-frontend-ajax.php' );69 69 70 include_once GLG_PLUGIN_DIR . 'inc/functions/ajax/glg-frontend-ajax.php'; 71 70 72 add_action( 'wp_enqueue_scripts', 'glg_frontend_enqueue_scripts' ); 71 add_filter( 'the_content', 'glg_post_page_hook' ); 72 73 add_filter( 'the_content', 'glg_post_page_hook' ); 74 73 75 } 74 75 76 } 76 77 77 78 78 /*-------------------------------------------------------------------------------*/ 79 /* Plugin Settings Link @since 1.0.0.15 79 /* 80 -------------------------------------------------------------------------------*/ 81 /* 82 Plugin Settings Link @since 1.0.0.15 80 83 /*-------------------------------------------------------------------------------*/ 81 84 function glg_settings_link( $link, $file ) { 82 85 83 86 static $this_plugin; 84 85 if ( ! $this_plugin )87 88 if ( ! $this_plugin ) { 86 89 $this_plugin = plugin_basename( __FILE__ ); 90 } 87 91 88 92 if ( $file == $this_plugin ) { 89 $settings_link = '<a href="' . admin_url( 'admin.php?page=gallery-lightbox-settings' ) . '"><span class="glg_settings_icon dashicons dashicons-admin-generic"></span> ' . __( 'Settings', 'gallery-lightbox-slider' ) . '</a>';93 $settings_link = '<a href="' . admin_url( 'admin.php?page=gallery-lightbox-settings' ) . '"><span class="glg_settings_icon dashicons dashicons-admin-generic"></span> ' . esc_html__( 'Settings', 'gallery-lightbox-slider' ) . '</a>'; 90 94 array_unshift( $link, $settings_link ); 91 95 } 92 96 93 97 return $link; 94 95 98 } 96 99 97 100 function glg_current_screen( $current_screen ) { 98 99 if ( 'plugins' == $current_screen->id ) add_action( 'admin_head', 'glg_custom_admin_head' ); 100 101 102 if ( 'plugins' == $current_screen->id ) { 103 add_action( 'admin_head', 'glg_custom_admin_head' ); 104 } 101 105 } 102 106 add_action( 'current_screen', 'glg_current_screen' ); 103 107 104 108 function glg_custom_admin_head() { 105 109 106 110 echo '<style>.glg_settings_icon:before {font-size: 20px !important;background-color: rgba(0, 0, 0, 0) !important;padding: 0 !important;box-shadow: none !important;width: 20px !important;height: 20px !important;}.glg_settings_icon.dashicons {width: 20px !important;height: 20px !important;padding: 0 !important;position: relative;top: 1.3px;}</style>'; 107 108 111 } 109 112 110 /*-------------------------------------------------------------------------------*/ 111 /* Redirect on Activation 113 /* 114 -------------------------------------------------------------------------------*/ 115 /* 116 Redirect on Activation 112 117 /*-------------------------------------------------------------------------------*/ 113 118 function glg_plugin_activate() { 114 119 115 add_option( 'activated_glg_plugin', 'glg-activate' ); 116 120 add_option( 'activated_glg_plugin', 'glg-activate' ); 117 121 } 118 122 register_activation_hook( __FILE__, 'glg_plugin_activate' ); … … 120 124 function glg_load_plugin() { 121 125 122 if ( is_admin() && get_option( 'activated_glg_plugin' ) == 'glg-activate' ) { 123 124 delete_option( 'activated_glg_plugin' ); 125 126 if ( !is_network_admin() ) { 127 128 wp_redirect("admin.php?page=gallery-lightbox-settings"); 129 130 } 131 132 } 133 126 if ( is_admin() && get_option( 'activated_glg_plugin' ) == 'glg-activate' ) { 127 128 delete_option( 'activated_glg_plugin' ); 129 130 if ( ! is_network_admin() ) { 131 132 wp_redirect( 'admin.php?page=gallery-lightbox-settings' ); 133 134 } 135 } 134 136 } 135 137 add_action( 'admin_init', 'glg_load_plugin' ); -
gallery-lightbox-slider/trunk/inc/functions/ajax/glg-admin-ajax.php
r3267993 r3446163 1 1 <?php 2 2 3 4 3 if ( ! defined( 'ABSPATH' ) ) exit; 5 4 6 7 8 5 /*-------------------------------------------------------------------------------*/ 9 6 /* Ajax Settings Page … … 12 9 13 10 $res = array(); 14 15 11 16 12 // run a quick security check 17 if( ! check_ajax_referer( 'glg_form_settings', 'security' ) )13 if( ! check_ajax_referer( 'glg_form_settings', 'security' ) || ! current_user_can( 'manage_options' ) ) 18 14 return; 19 15 … … 22 18 23 19 foreach ( $_POST['fieldsdata'] as $key => $val ) { 24 25 update_option( $val['name'], esc_html( $val['value'] ) ); 26 27 } 28 29 $res['ok'] = true; 20 update_option( sanitize_text_field( $val['name'] ), sanitize_text_field( $val['value'] ) ); 21 } 22 23 $res['ok'] = true; 30 24 31 25 } 32 33 34 35 echo json_encode( $res ); 36 wp_die(); 26 27 echo json_encode( $res ); 28 wp_die(); 37 29 38 30 } … … 124 116 if ( $status['url'] ) { 125 117 /* translators: 1: Plugin name and version. */ 126 $action_links[] = '<a class="install-now button-secondary glg-button-install" href="' . $status['url']. '" aria-label="' . esc_attr( sprintf( __( 'Install %s now' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';118 $action_links[] = '<a class="install-now button-secondary glg-button-install" href="' . esc_url( $status['url'] ) . '" aria-label="' . esc_attr( sprintf( __( 'Install %s now' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>'; 127 119 } 128 120 … … 131 123 if ( $status['url'] ) { 132 124 /* translators: 1: Plugin name and version */ 133 $action_links[] = '<a class="button glg-button-update" href="' . $status['url']. '" aria-label="' . esc_attr( sprintf( __( 'Update %s now' ), $name ) ) . '">' . __( 'Update Now' ) . '</a>';125 $action_links[] = '<a class="button glg-button-update" href="' . esc_url( $status['url'] ) . '" aria-label="' . esc_attr( sprintf( __( 'Update %s now' ), $name ) ) . '">' . __( 'Update Now' ) . '</a>'; 134 126 } 135 127 … … 188 180 switch( $plugin["slug"] ){ 189 181 case "easy-media-gallery" : 190 echo '<li><a class="button" aria-label="PRO VERSION DEMO" href="http ://ghozylab.com/plugins/easy-media-gallery-pro/demo/" target="_blank">PRO VERSION DEMO</a></li>';182 echo '<li><a class="button" aria-label="PRO VERSION DEMO" href="https://ghozylab.com/plugins/easy-media-gallery-pro/demo/" target="_blank">PRO VERSION DEMO</a></li>'; 191 183 break; 192 184 … … 196 188 197 189 case "easy-notify-lite" : 198 echo '<li><a class="button" aria-label="PRO VERSION DEMO" href="http ://ghozylab.com/plugins/easy-notify-pro/demo/" target="_blank">PRO VERSION DEMO</a></li>';190 echo '<li><a class="button" aria-label="PRO VERSION DEMO" href="https://ghozylab.com/plugins/easy-notify-pro/demo/" target="_blank">PRO VERSION DEMO</a></li>'; 199 191 break; 200 192 201 193 case "contact-form-lite" : 202 echo '<li><a class="button" aria-label="PRO VERSION DEMO" href="http ://demo.ghozylab.com/plugins/easy-contact-form-plugin/contact-form-recaptcha/" target="_blank">PRO VERSION DEMO</a></li>';194 echo '<li><a class="button" aria-label="PRO VERSION DEMO" href="https://demo.ghozylab.com/plugins/easy-contact-form-plugin/contact-form-recaptcha/" target="_blank">PRO VERSION DEMO</a></li>'; 203 195 break; 204 196 … … 299 291 300 292 if ( false === ( $cache = get_transient( 'glg_premium_plugins' ) ) ) { 301 $feed = wp_remote_get( 'http ://content.ghozylab.com/feed.php?c=featuredplugins', array( 'sslverify' => false ) );293 $feed = wp_remote_get( 'https://content.ghozylab.com/feed.php?c=featuredplugins', array( 'sslverify' => false ) ); 302 294 if ( ! is_wp_error( $feed ) ) { 303 295 if ( isset( $feed['body'] ) && strlen( $feed['body'] ) > 0 ) { … … 306 298 } 307 299 } else { 308 $cache = '<div class="error"><p>' . __( 'There was an error retrieving the list from the server. Please try again later.', 'gallery-lightbox-slider' ) . '</div>';300 $cache = '<div class="error"><p>' . esc_html__( 'There was an error retrieving the list from the server. Please try again later.', 'gallery-lightbox-slider' ) . '</div>'; 309 301 } 310 302 } -
gallery-lightbox-slider/trunk/inc/functions/glg-functions.php
r3154211 r3446163 2 2 3 3 if ( ! defined( 'ABSPATH' ) ) { 4 die( 'Please do not load this file directly.' ); 5 } 6 7 /*-------------------------------------------------------------------------------*/ 8 /* Enqueue when option on each post/page is ON ( Yes ) 9 /*-------------------------------------------------------------------------------*/ 10 function glg_post_page_hook( $content ) 11 { 12 13 global $post; 14 15 if ( trim( get_option( 'glg_gallery_active' ) ) != 'off' ) { 16 17 if ( trim( get_post_meta( $post->ID, 'glg_meta_options', true ) ) != 'no' ) { 18 19 add_shortcode( 'gallery', 'glg_make_sure_link_to_media_file' ); 20 21 add_action( 'print_footer_scripts', 'glg_frontend_wp_footer' ); 22 23 wp_enqueue_script( 'glg-photobox' ); 24 25 wp_enqueue_style( 'glg-photobox-style' ); 26 27 if ( has_filter( 'glg_frontend_enqueue_filter' ) ) { 28 29 apply_filters( 'glg_frontend_enqueue_filter', '' ); 30 31 } 32 33 } 34 35 } 36 37 return $content; 38 39 } 40 41 /*-------------------------------------------------------------------------------*/ 42 /* Make sure to set the "Link to" to Media File 43 /*-------------------------------------------------------------------------------*/ 44 function glg_make_sure_link_to_media_file( $atts ) 45 { 46 47 if ( isset( $atts ) ) { 48 $atts[ 'link' ] = 'file'; 49 } 50 51 return gallery_shortcode( $atts ); 52 53 } 54 55 /*-------------------------------------------------------------------------------*/ 56 /* Enqueue Admin Script 57 /*-------------------------------------------------------------------------------*/ 58 function glg_admin_enqueue_scripts() 59 { 60 61 $is_rtl = ( is_rtl() ? '-rtl' : '' ); 62 63 wp_register_style( 'glg-settings', plugins_url( 'css/glg-settings'.$is_rtl.'.css', dirname( __FILE__ ) ), false, GLG_VERSION ); 64 wp_register_script( 'glg-settings-tab', plugins_url( 'js/settings/option-tab.js', dirname( __FILE__ ) ), false, GLG_VERSION ); 65 66 wp_register_style( 'glg-checkbox-style', plugins_url( 'css/iosCheckbox.css', dirname( __FILE__ ) ), false, GLG_VERSION ); 67 wp_register_script( 'glg-checkbox', plugins_url( 'js/settings/iosCheckbox.js', dirname( __FILE__ ) ), false, GLG_VERSION ); 68 69 } 70 71 /*-------------------------------------------------------------------------------*/ 72 /* Enqueue Frontend Script 73 /*-------------------------------------------------------------------------------*/ 74 function glg_frontend_enqueue_scripts() 75 { 76 77 wp_register_script( 'glg-photobox', GLG_URL.'/js/jquery/photobox/jquery.photobox.min.js', [ ], GLG_VERSION, false ); 78 wp_register_style( 'glg-photobox-style', GLG_URL.'/css/photobox/photobox.min.css', [ ], GLG_VERSION, false ); 79 4 die( 'Please do not load this file directly.' ); 5 } 6 7 /* 8 -------------------------------------------------------------------------------*/ 9 /* 10 Enqueue when option on each post/page is ON ( Yes ) 11 /*-------------------------------------------------------------------------------*/ 12 function glg_post_page_hook( $content ) { 13 14 global $post; 15 16 if ( trim( get_option( 'glg_gallery_active' ) ) != 'off' ) { 17 18 if ( trim( get_post_meta( $post->ID, 'glg_meta_options', true ) ) != 'no' ) { 19 20 add_shortcode( 'gallery', 'glg_make_sure_link_to_media_file' ); 21 add_action( 'print_footer_scripts', 'glg_frontend_wp_footer' ); 22 23 wp_enqueue_script( 'glg-photobox' ); 24 wp_enqueue_style( 'glg-photobox-style' ); 25 26 if ( has_filter( 'glg_frontend_enqueue_filter' ) ) { 27 apply_filters( 'glg_frontend_enqueue_filter', '' ); 28 } 29 } 30 } 31 32 return $content; 33 } 34 35 /* 36 -------------------------------------------------------------------------------*/ 37 /* 38 Make sure to set the "Link to" to Media File 39 /*-------------------------------------------------------------------------------*/ 40 function glg_make_sure_link_to_media_file( $atts ) { 41 42 if ( isset( $atts ) ) { 43 $atts['link'] = 'file'; 44 } 45 46 return gallery_shortcode( $atts ); 47 } 48 49 /* 50 -------------------------------------------------------------------------------*/ 51 /* 52 Enqueue Admin Script 53 /*-------------------------------------------------------------------------------*/ 54 function glg_admin_enqueue_scripts() { 55 56 $is_rtl = ( is_rtl() ? '-rtl' : '' ); 57 58 wp_register_style( 'glg-settings', plugins_url( 'css/glg-settings' . $is_rtl . '.css', __DIR__ ), false, esc_html( GLG_VERSION ) ); 59 wp_register_script( 'glg-settings-tab', plugins_url( 'js/settings/option-tab.js', __DIR__ ), false, esc_html( GLG_VERSION ) ); 60 61 wp_register_style( 'glg-checkbox-style', plugins_url( 'css/iosCheckbox.css', __DIR__ ), false, esc_html( GLG_VERSION ) ); 62 wp_register_script( 'glg-checkbox', plugins_url( 'js/settings/iosCheckbox.js', __DIR__ ), false, esc_html( GLG_VERSION ) ); 63 } 64 65 /* 66 -------------------------------------------------------------------------------*/ 67 /* 68 Enqueue Frontend Script 69 /*-------------------------------------------------------------------------------*/ 70 function glg_frontend_enqueue_scripts() { 71 72 wp_register_script( 'glg-photobox', esc_url( GLG_URL ) . '/js/jquery/photobox/jquery.photobox.min.js', array(), esc_html( GLG_VERSION ), false ); 73 wp_register_style( 'glg-photobox-style', esc_url( GLG_URL ) . '/css/photobox/photobox.min.css', array(), esc_html( GLG_VERSION ), false ); 80 74 } 81 75 82 76 // Add PB Script in Footer 83 function glg_frontend_wp_footer() 84 { 85 86 $isauto = ( get_option( 'glg_gallery_autoplay' ) ? get_option( 'glg_gallery_autoplay' ) : 'true' ); 87 $time = ( get_option( 'ecf_slide_every' ) ? get_option( 'ecf_slide_every' ) : '3' ); 88 $isthumb = ( get_option( 'glg_gallery_thumbnails' ) ? get_option( 'glg_gallery_thumbnails' ) : 'true' ); 89 90 ob_start();?> 91 92 <!--[if lt IE 9]><link rel="stylesheet" href="<?php echo GLG_URL; ?> '/css/photobox/photobox.ie.css'.'"><![endif]--> 77 function glg_frontend_wp_footer() { 78 79 $isauto = ( get_option( 'glg_gallery_autoplay' ) ? get_option( 'glg_gallery_autoplay' ) : 'true' ); 80 $time = ( get_option( 'ecf_slide_every' ) ? get_option( 'ecf_slide_every' ) : '3' ); 81 $isthumb = ( get_option( 'glg_gallery_thumbnails' ) ? get_option( 'glg_gallery_thumbnails' ) : 'true' ); 82 83 ob_start();?> 84 85 <!--[if lt IE 9]><link rel="stylesheet" href="<?php echo esc_html( GLG_URL ); ?> '/css/photobox/photobox.ie.css'.'"><![endif]--> 93 86 94 87 <style type="text/css"> 95 #pbOverlay { background:<?php 96 if ( get_option( 'glg_gallery_overlay_color' ) ) {echo 'rgba('.glg_hex2rgb( get_option( 'glg_gallery_overlay_color' ) ).',.90)';} else {echo 'rgba(0,0,0,.90)';} 97 ?> none repeat scroll 0% 0% !important; } 98 <?php 99 if ( get_option( 'glg_gallery_show_captions' ) == 'true' ) {echo '.gallery-caption, .blocks-gallery-item figcaption {}';} else {echo '.gallery-caption, .blocks-gallery-item figcaption { display: none !important; }';} 100 ?> 88 #pbOverlay { background: 89 <?php 90 if ( get_option( 'glg_gallery_overlay_color' ) ) { 91 echo 'rgba(' . glg_hex2rgb( esc_html( get_option( 'glg_gallery_overlay_color' ) ) ) . ',.90)'; 92 } else { 93 echo 'rgba(0,0,0,.90)';} 94 ?> 95 none repeat scroll 0% 0% !important; } 96 <?php 97 if ( get_option( 'glg_gallery_show_captions' ) == 'true' ) { 98 echo '.gallery-caption, .blocks-gallery-item figcaption {}'; 99 } else { 100 echo '.gallery-caption, .blocks-gallery-item figcaption { display: none !important; }';} 101 ?> 101 102 .pbWrapper > img{display: inline;} 102 103 #pbThumbsToggler {display: none !important;} … … 105 106 <script type="text/javascript">// <![CDATA[ 106 107 jQuery(document).ready(function($) { 107 /* START --- <?php echo GLG_ITEM_NAME; ?> --- */ 108 <?php 109 if ( get_option( 'glg_gallery_fancy_caption' ) == 'true' ) {?> 108 /* START --- <?php echo esc_html( GLG_ITEM_NAME ); ?> --- */ 109 <?php 110 if ( get_option( 'glg_gallery_fancy_caption' ) == 'true' ) { 111 ?> 110 112 111 113 /* Replace default title to more fancy :) */ … … 113 115 114 116 $alt = $(this).attr('alt'); 115 116 117 $(this).attr('alt', $alt.replace(/-|_/g, ' ')); 117 118 118 $altnew = $(this).attr('alt').replace(/\b[a-z]/g, function(letter) { 119 120 return letter.toUpperCase(); 121 122 }); 119 return letter.toUpperCase(); 120 }); 123 121 124 122 $(this).attr('alt', $altnew ); … … 126 124 }); 127 125 128 <?php } 129 130 if ( trim( get_option( 'glg_gallery_active' ) ) != 'off' ) { 131 global $post; 132 133 if ( trim( get_post_meta( $post->ID, 'glg_meta_options', true ) ) != 'no' ) { 134 ?> 135 136 function escapeHtml(unsafe) { 137 return unsafe 138 .replace(/&/g, "&") 139 .replace(/</g, "<") 140 .replace(/>/g, ">") 141 .replace(/"/g, """) 142 .replace(/'/g, "'"); 143 } 126 <?php 127 } 128 129 if ( trim( get_option( 'glg_gallery_active' ) ) != 'off' ) { 130 global $post; 131 132 if ( trim( get_post_meta( $post->ID, 'glg_meta_options', true ) ) != 'no' ) { 133 ?> 134 135 function escapeHtml(unsafe) { 136 return unsafe 137 .replace(/&/g, "&") 138 .replace(/</g, "<") 139 .replace(/>/g, ">") 140 .replace(/"/g, """) 141 .replace(/'/g, "'"); 142 } 144 143 /* Gutenberg Adaptive */ 145 144 $('.blocks-gallery-item, .wp-block-image').each(function(i) { … … 155 154 } 156 155 157 /* Sanitize */158 if (typeof $blck.attr('alt') !== 'undefined' && $blck.attr('alt') !== '') {159 $blck.attr('alt', escapeHtml($blck.attr('alt')));160 }156 /* Sanitize */ 157 if (typeof $blck.attr('alt') !== 'undefined' && $blck.attr('alt') !== '') { 158 $blck.attr('alt', escapeHtml($blck.attr('alt'))); 159 } 161 160 162 161 }); 163 162 164 <?php 165 } 166 167 } 168 169 ?> 163 <?php 164 } 165 } 166 167 ?> 170 168 171 169 /* Initialize! … … 175 173 $('.gallery, .ghozylab-gallery, .wp-block-gallery') 176 174 .photobox('.carousel-item > a:not(".icp_custom_link"),a.glg-a-custom-wrap, .gallery-item > dt > a, .gallery-item > div > a',{ 177 autoplay: <?php echo $isauto; ?>,178 time: <?php echo $time.'000'; ?>,179 thumbs: <?php echo $isthumb; ?>,175 autoplay: <?php echo esc_html( $isauto ); ?>, 176 time: <?php echo esc_html( $time . '000' ); ?>, 177 thumbs: <?php echo esc_html( $isthumb ); ?>, 180 178 counter: '' 181 179 }, callback); … … 185 183 }); 186 184 187 /* END --- <?php echo GLG_ITEM_NAME; ?> --- */185 /* END --- <?php echo esc_html( GLG_ITEM_NAME ); ?> --- */ 188 186 189 187 // ]]></script> 190 188 191 189 192 <?php 193 194 if ( has_filter( 'glg_footer_frontend_filter' ) ) { 195 196 apply_filters( 'glg_footer_frontend_filter', '' ); 197 198 } 199 200 $glg_pb = ob_get_clean(); 201 echo $glg_pb; 202 203 } 204 205 /*-------------------------------------------------------------------------------*/ 206 /* HEX to RGB 207 /*-------------------------------------------------------------------------------*/ 208 function glg_hex2rgb( $hex ) 209 { 210 211 $hex = str_replace( '#', '', $hex ); 212 213 if ( strlen( $hex ) == 3 ) { 214 215 $r = hexdec( substr( $hex, 0, 1 ).substr( $hex, 0, 1 ) ); 216 $g = hexdec( substr( $hex, 1, 1 ).substr( $hex, 1, 1 ) ); 217 $b = hexdec( substr( $hex, 2, 1 ).substr( $hex, 2, 1 ) ); 218 219 } else { 220 221 $r = hexdec( substr( $hex, 0, 2 ) ); 222 $g = hexdec( substr( $hex, 2, 2 ) ); 223 $b = hexdec( substr( $hex, 4, 2 ) ); 224 225 } 226 227 $rgb = [ $r, $g, $b ]; 228 229 return implode( ',', $rgb ); // returns an array with the rgb values 230 231 } 232 233 function glg_trial_notify() 234 { 235 236 if ( get_option( 'glg_trial_notify' ) == '' ) { 237 238 $current_user = wp_get_current_user(); 239 $cnt = '<span class="cd_pp_img"><a class="glg_go" href="https://trial.ghozylab.com/" target="_blank"></a><img src="'.plugins_url( 'images/banners/trial_banner.png', dirname( __FILE__ ) ).'"></span>'; 240 241 wp_enqueue_style( 'glg-popup-css', plugins_url( 'css/popup.css', dirname( __FILE__ ) ) ); 242 wp_enqueue_script( 'glg-popup', plugins_url( 'js/settings/popup.js', dirname( __FILE__ ) ) ); 243 wp_localize_script( 'glg-popup', 'glg_popup', [ 'content' => $cnt ] ); 244 245 } 246 247 } 248 249 function glg_hide_notify() 250 { 251 252 update_option( 'glg_trial_notify', 'done' ); 253 wp_die(); 254 190 <?php 191 192 if ( has_filter( 'glg_footer_frontend_filter' ) ) { 193 apply_filters( 'glg_footer_frontend_filter', '' ); 194 } 195 196 $glg_pb = ob_get_clean(); 197 echo $glg_pb; 198 } 199 200 /* 201 -------------------------------------------------------------------------------*/ 202 /* 203 HEX to RGB 204 /*-------------------------------------------------------------------------------*/ 205 function glg_hex2rgb( $hex ) { 206 207 $hex = str_replace( '#', '', $hex ); 208 209 if ( strlen( $hex ) == 3 ) { 210 211 $r = hexdec( substr( $hex, 0, 1 ) . substr( $hex, 0, 1 ) ); 212 $g = hexdec( substr( $hex, 1, 1 ) . substr( $hex, 1, 1 ) ); 213 $b = hexdec( substr( $hex, 2, 1 ) . substr( $hex, 2, 1 ) ); 214 215 } else { 216 217 $r = hexdec( substr( $hex, 0, 2 ) ); 218 $g = hexdec( substr( $hex, 2, 2 ) ); 219 $b = hexdec( substr( $hex, 4, 2 ) ); 220 221 } 222 223 $rgb = array( $r, $g, $b ); 224 225 return implode( ',', $rgb ); // returns an array with the rgb values 226 } 227 228 function glg_trial_notify() { 229 230 if ( get_option( 'glg_trial_notify' ) == '' ) { 231 232 $current_user = wp_get_current_user(); 233 $cnt = '<span class="cd_pp_img"><a class="glg_go" href="https://trial.ghozylab.com/" target="_blank"></a><img src="' . plugins_url( 'images/banners/trial_banner.png', __DIR__ ) . '"></span>'; 234 235 wp_enqueue_style( 'glg-popup-css', plugins_url( 'css/popup.css', __DIR__ ) ); 236 wp_enqueue_script( 'glg-popup', plugins_url( 'js/settings/popup.js', __DIR__ ) ); 237 wp_localize_script( 'glg-popup', 'glg_popup', array( 'content' => $cnt ) ); 238 239 } 240 } 241 242 function glg_hide_notify() { 243 244 update_option( 'glg_trial_notify', 'done' ); 245 wp_die(); 255 246 } 256 247 -
gallery-lightbox-slider/trunk/inc/gfg-metabox.php
r2229284 r3446163 2 2 3 3 4 if ( ! defined( 'ABSPATH') ) {5 die( 'Please do not load this file directly.');4 if ( ! defined( 'ABSPATH' ) ) { 5 die( 'Please do not load this file directly.' ); 6 6 } 7 7 … … 28 28 /** 29 29 * Prints the box content. 30 * 30 * 31 31 * @param WP_Post $post The object for the current post/page. 32 32 */ … … 43 43 44 44 echo '<label for="glg_activate_lightbox">'; 45 _e( 'Use Lightbox?', 'gallery-lightbox-slider' );45 esc_html_e( 'Use Lightbox?', 'gallery-lightbox-slider' ); 46 46 echo '</label>'; ?> 47 <select name="glg_activate_lightbox" id="glg_activate_lightbox"> 48 <option value="yes" <?php selected( esc_attr( $value ), 'yes' ); ?>>Yes</option> 49 <option value="no" <?php selected( esc_attr( $value ), 'no' ); ?>>No</option> 50 <?php echo '</select><p style="font-size: 13px;font-style: italic;color:#9d9d9d;font-weight: normal;margin: 5px 0 0 0;">'.__( 'If set to YES, all galleries on this page/post will be opened in the lightbox', 'gallery-lightbox-slider' ).'</p>'; 47 <select name="glg_activate_lightbox" id="glg_activate_lightbox"> 48 <option value="yes" <?php selected( esc_attr( $value ), 'yes' ); ?>>Yes</option> 49 <option value="no" <?php selected( esc_attr( $value ), 'no' ); ?>>No</option> 50 <?php 51 echo '</select><p style="font-size: 13px;font-style: italic;color:#9d9d9d;font-weight: normal;margin: 5px 0 0 0;">' . esc_html__( 'If set to YES, all galleries on this page/post will be opened in the lightbox', 'gallery-lightbox-slider' ) . '</p>'; 51 52 } 52 53 … … 84 85 return; 85 86 } 87 } elseif ( ! current_user_can( 'edit_post', $post_id ) ) { 86 88 87 } else {88 89 if ( ! current_user_can( 'edit_post', $post_id ) ) {90 89 return; 91 }92 90 } 93 91 94 92 /* OK, it's safe for us to save the data now. */ 95 93 96 94 // Make sure that it is set. 97 95 if ( ! isset( $_POST['glg_activate_lightbox'] ) ) { -
gallery-lightbox-slider/trunk/inc/js/settings/iosCheckbox.js
r2356221 r3446163 4 4 * Author: Ron Masas 5 5 */ 6 (function ($) {6 (function ($) { 7 7 $.fn.extend({ 8 iosCheckbox: function () {9 this.destroy = function (){10 $(this).each(function () {11 $(this).next('.ios-ui-select').remove();8 iosCheckbox: function () { 9 this.destroy = function () { 10 $(this).each(function () { 11 $(this).next('.ios-ui-select').remove(); 12 12 }); 13 13 }; … … 16 16 } 17 17 $(this).attr('data-ios-checkbox', 'true'); 18 $(this).each(function () {18 $(this).each(function () { 19 19 /** 20 20 * Original checkbox element … … 37 37 org_checkbox.hide().after(ios_checkbox); 38 38 // Add click event listener to the ios checkbox 39 ios_checkbox.click(function () {39 ios_checkbox.click(function () { 40 40 // Toggel the check state 41 41 ios_checkbox.toggleClass("checked"); … … 44 44 // Update state 45 45 org_checkbox.prop('checked', true) 46 $('.'+org_checkbox.attr('id')).val('true').trigger('change');46 $('.' + org_checkbox.attr('id')).val('true').trigger('change'); 47 47 } else { 48 48 // Update state 49 49 org_checkbox.prop('checked', false).val('false').trigger('change'); 50 $('.'+org_checkbox.attr('id')).val('false').trigger('change');50 $('.' + org_checkbox.attr('id')).val('false').trigger('change'); 51 51 } 52 52 53 if ( org_checkbox.attr('id') == 'glg_gallery_active') {54 55 if (org_checkbox.is(":checked")) {56 57 org_checkbox.val('active');58 $('.'+org_checkbox.attr('id')).val('active');59 return;60 61 } else {62 63 org_checkbox.val('off');64 $('.'+org_checkbox.attr('id')).val('off');65 return;66 67 }68 69 } 70 53 if (org_checkbox.attr('id') == 'glg_gallery_active') { 54 55 if (org_checkbox.is(":checked")) { 56 57 org_checkbox.val('active'); 58 $('.' + org_checkbox.attr('id')).val('active'); 59 return; 60 61 } else { 62 63 org_checkbox.val('off'); 64 $('.' + org_checkbox.attr('id')).val('off'); 65 return; 66 67 } 68 69 } 70 71 71 }); 72 72 }); -
gallery-lightbox-slider/trunk/inc/js/settings/option-tab.js
r2229284 r3446163 1 1 var glgloader; 2 2 3 jQuery(document).ready(function($) { 4 5 var ytIsLoaded = false, freeLoaded = false, preLoaded = false; 3 jQuery(document).ready(function ($) { 4 5 var ytIsLoaded = false, 6 freeLoaded = false, 7 preLoaded = false; 6 8 // Activate checkbox 7 9 $(".ios-checkbox").iosCheckbox(); 8 10 9 11 // Animate Settings Page on Load 10 12 jQuery(".panelloader").removeClass("ploader").hide(); 11 13 jQuery("#page-settings").fadeIn(1000); 12 14 13 15 // Apply WP ColorPicker 14 16 $('#glg_gallery_overlay_color').wpColorPicker(); 15 17 16 18 // Submit handler 17 $(".glg_form_submit").bind("click",function (e) { 18 19 $(".glg_form_submit").bind("click", function (e) { 19 20 e.preventDefault(); 20 21 21 $('.glg_save_status').hide(); 22 23 var formData = $('#'+$(this).data('formname')).serializeArray(); 24 25 glg_form_save( formData, $(this).data('formname'), $(this).data('nonce'), $(this) ); 26 27 }); 28 29 22 var formData = $('#' + $(this).data('formname')).serializeArray(); 23 glg_form_save(formData, $(this).data('formname'), $(this).data('nonce'), $(this)); 24 }); 25 26 30 27 // SAVE DATA AJAX 31 function glg_form_save( fdata, fid, nnc, smbt) {32 33 jQuery('.set_' +fid).css('color', '#148919');34 jQuery('.set_' +fid).hide();35 28 function glg_form_save(fdata, fid, nnc, smbt) { 29 30 jQuery('.set_' + fid).css('color', '#148919'); 31 jQuery('.set_' + fid).hide(); 32 36 33 window.clearTimeout(glgloader); 37 38 jQuery(smbt).attr('disabled', 'disabled');39 jQuery('#loader_' +fid).addClass('button_loading');40 34 35 jQuery(smbt).attr('disabled', 'disabled'); 36 jQuery('#loader_' + fid).addClass('button_loading'); 37 41 38 loading(fid); 42 39 43 40 dat = {}; 44 41 dat['action'] = 'glg_ajax_save_settings'; 45 42 dat['fieldsdata'] = fdata; 46 43 dat['security'] = nnc; 47 44 48 45 jQuery.ajax({ 49 46 url: ajaxurl, … … 51 48 dataType: 'json', 52 49 data: dat, 53 54 success: function( response ) { 55 56 switch ( response.ok ) { 57 58 case true: 59 60 glg_cleanup(smbt, fid); 50 success: function (response) { 51 switch (response.ok) { 52 case true: 53 glg_cleanup(smbt, fid); 54 break; 61 55 62 break; 63 64 default: 65 66 alert('Failed! Please refresh the page and try again.'); 67 glg_cleanup(smbt, fid); 56 default: 57 alert('Failed! Please refresh the page and try again.'); 58 glg_cleanup(smbt, fid); 68 59 69 60 } 70 71 // end success-72 61 } 73 74 // end ajax75 62 }); 76 63 77 64 78 65 } 79 66 80 67 // Restore element to default 81 function glg_cleanup( smbt, fid ) { 82 68 function glg_cleanup(smbt, fid) { 83 69 $('#overlay').remove(); 84 70 jQuery(smbt).removeAttr('disabled'); 85 jQuery('#loader_'+fid).removeClass('button_loading'); 86 jQuery('.set_'+fid).fadeIn(500); 87 88 glgloader = window.setTimeout(function() { 89 90 jQuery('.set_'+fid).fadeOut(); 91 71 jQuery('#loader_' + fid).removeClass('button_loading'); 72 jQuery('.set_' + fid).fadeIn(500); 73 74 glgloader = window.setTimeout(function () { 75 jQuery('.set_' + fid).fadeOut(); 92 76 }, 4000); 93 77 }; … … 96 80 // Create animate on Save 97 81 function loading(fid) { 98 // add the overlay with loading image to the page99 var over = '<div id="overlay">' +100 '<img id="loading">' +101 '</div>';102 $(over).appendTo('#'+fid);103 };104 105 82 // add the overlay with loading image to the page 83 var over = '<div id="overlay">' + 84 '<img id="loading">' + 85 '</div>'; 86 $(over).appendTo('#' + fid); 87 }; 88 89 106 90 // AJAX Get Free Plugins 107 $('body').on('click', '.glg_ajax_caller', function(event){ 108 91 $('body').on('click', '.glg_ajax_caller', function (event) { 109 92 glg_ajax_caller_func($(this)); 93 event.preventDefault(); 94 }); 110 95 111 event.preventDefault(); 112 113 }); 114 115 $('body').on('click', '#glg-docs', function(event){ 116 96 $('body').on('click', '#glg-docs', function (event) { 117 97 if (!ytIsLoaded) { 118 $(".glg-iframe").attr('src', function (index, attr){119 return attr;98 $(".glg-iframe").attr('src', function (index, attr) { 99 return attr; 120 100 }); 121 101 } 122 102 123 103 ytIsLoaded = true; 124 104 event.preventDefault(); 125 126 105 }); 127 128 106 107 129 108 // RETRIEVE FREE PLUGINS LIST 130 function glg_ajax_caller_func( elmnt) {131 109 function glg_ajax_caller_func(elmnt) { 110 132 111 if (elmnt.data('act') == 'glg_free_plugins_page' && freeLoaded) return false; 133 112 if (elmnt.data('act') == 'glg_pro_plugins_page' && preLoaded) return false; 134 135 $(".glgloader").removeClass("glgloaderclass"); 136 $('#' +elmnt.data('act')).empty().hide();113 114 $(".glgloader").removeClass("glgloaderclass"); 115 $('#' + elmnt.data('act')).empty().hide(); 137 116 $(".glgloader").fadeIn(300).addClass("glgloaderclass"); 138 117 139 118 dat = {}; 140 119 dat['action'] = elmnt.data('act'); 141 120 dat['security'] = elmnt.data('nonce'); 142 121 143 122 jQuery.ajax({ 144 123 url: ajaxurl, 145 124 type: 'POST', 146 125 data: dat, 147 148 success: function( response ) { 149 150 151 if ( response ) { 152 126 success: function (response) { 127 if (response) { 153 128 $(".glgloader").removeClass("glgloaderclass").hide(); 154 $('#' +elmnt.data('act')).html(response).fadeIn(1000);129 $('#' + elmnt.data('act')).html(response).fadeIn(1000); 155 130 if (elmnt.data('act') == 'glg_free_plugins_page') freeLoaded = true; 156 131 if (elmnt.data('act') == 'glg_pro_plugins_page') preLoaded = true; 132 } else { 133 alert('Failed! Please refresh the page and try again.'); 134 } 135 } 136 }); 157 137 158 } else {159 160 alert('Failed! Please refresh the page and try again.');161 162 }163 164 }165 166 // end ajax167 });168 169 138 } 170 139 // Option tabs 171 $( "#option-tree-settings-api" ).tabs().addClass( "ui-tabs-vertical ui-helper-clearfix");172 $( "#option-tree-settings-api li" ).removeClass( "ui-corner-top" ).addClass( "ui-corner-left");140 $("#option-tree-settings-api").tabs().addClass("ui-tabs-vertical ui-helper-clearfix"); 141 $("#option-tree-settings-api li").removeClass("ui-corner-top").addClass("ui-corner-left"); 173 142 174 143 }); 175 -
gallery-lightbox-slider/trunk/inc/settings/glg-global-settings.php
r2229284 r3446163 1 1 <?php 2 2 3 if ( ! defined( 'ABSPATH' ) ) exit; 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; 5 } 4 6 5 7 6 8 function glg_menu_page() { 7 9 8 10 add_menu_page( 'Gallery Lightbox Settings', 'Gallery Lightbox', 'manage_options', 'gallery-lightbox-settings', 'glg_settings_page', 'dashicons-format-gallery', 20 ); 9 10 11 } 11 12 12 13 13 14 function glg_settings_page() { 14 15 if( has_filter( 'glg_admin_settings_filter' ) ) apply_filters( 'glg_admin_settings_filter', '' ); 15 16 if ( has_filter( 'glg_admin_settings_filter' ) ) { 17 apply_filters( 'glg_admin_settings_filter', '' ); 18 } 16 19 17 20 wp_enqueue_style( 'glg-settings' ); … … 24 27 wp_enqueue_style( 'glg-checkbox-style' ); 25 28 add_thickbox(); 26 29 27 30 glg_trial_notify(); 28 29 ob_start();30 31 ?>31 32 ob_start(); 33 34 ?> 32 35 <div class="wrap"> 33 <div style="height:250px;display:block;" class="panelloader ploader"></div> 34 <div class="settings-wrap" id="page-settings" style="display:none;"> 35 <div id="option-tree-header-wrap"> 36 <ul id="option-tree-header"> 37 <li id="option-tree-version"><span><?php echo GLG_ITEM_NAME; ?></span></li> 38 <li style="float:right;" id="option-tree-version"><span>v <?php echo GLG_VERSION; ?></span></li> 39 </ul> 40 </div> 41 <div id="option-tree-settings-api"> 42 <div class="ui-tabs ui-widget ui-widget-content ui-corner-all"> 43 <ul > 44 <li class="glg_tab_items"><a href="#section_lightbox">Lightbox Settings</a></li> 45 <li class="glg_tab_items" id="glg-docs"><a href="#section_documentation">Documentation</a></li> 46 <li data-act="glg_free_plugins_page" data-nonce="<?php echo wp_create_nonce( "glg_free_plugins_nonce" ); ?>" class="glg_tab_items glg_ajax_caller"><a href="#section_freeplugins">Free Install Plugins</a></li> 47 <li data-act="glg_pro_plugins_page" data-nonce="<?php echo wp_create_nonce( "glg_pro_plugins_nonce" ); ?>" class="glg_tab_items glg_ajax_caller"><a href="#section_premiumplugins">Premium Plugins</a></li> 48 <?php 49 if( has_filter( 'glg_admin_settings_menu_filter' ) ) { 50 51 apply_filters( 'glg_admin_settings_menu_filter', '' ); 52 53 } 54 ?> 55 56 </ul> 57 <div id="poststuff" class="metabox-holder"> 58 <div id="post-body"> 59 <div id="post-body-content"> 60 61 <?php 62 63 require_once( 'glg-lightbox-settings.php'); 64 require_once( 'pages/glg-docs.php'); 65 require_once( 'pages/glg-free-plugins.php'); 66 require_once( 'pages/glg-premium-plugins.php'); 67 68 if( has_filter( 'glg_admin_settings_container_filter' ) ) { 69 70 apply_filters( 'glg_admin_settings_container_filter', '' ); 71 72 } 73 74 ?> 75 76 77 </div> 78 </div> 79 </div> 80 <div class="clear"></div> 81 </div> 82 </div> 83 </div> 36 <div style="height:250px;display:block;" class="panelloader ploader"></div> 37 <div class="settings-wrap" id="page-settings" style="display:none;"> 38 <div id="option-tree-header-wrap"> 39 <ul id="option-tree-header"> 40 <li id="option-tree-version"><span><?php echo esc_html( GLG_ITEM_NAME ); ?></span></li> 41 <li style="float:right;" id="option-tree-version"><span>v <?php echo esc_html( GLG_VERSION ); ?></span> 42 </li> 43 </ul> 44 </div> 45 <div id="option-tree-settings-api"> 46 <div class="ui-tabs ui-widget ui-widget-content ui-corner-all"> 47 <ul> 48 <li class="glg_tab_items"><a href="#section_lightbox">Lightbox Settings</a></li> 49 <li class="glg_tab_items" id="glg-docs"><a href="#section_documentation">Documentation</a></li> 50 <li data-act="glg_free_plugins_page" 51 data-nonce="<?php echo wp_create_nonce( 'glg_free_plugins_nonce' ); ?>" 52 class="glg_tab_items glg_ajax_caller"><a href="#section_freeplugins">Free Install Plugins</a> 53 </li> 54 <li data-act="glg_pro_plugins_page" 55 data-nonce="<?php echo wp_create_nonce( 'glg_pro_plugins_nonce' ); ?>" 56 class="glg_tab_items glg_ajax_caller"><a href="#section_premiumplugins">Premium Plugins</a></li> 57 <?php 58 if ( has_filter( 'glg_admin_settings_menu_filter' ) ) { 59 apply_filters( 'glg_admin_settings_menu_filter', '' ); 60 } 61 ?> 62 63 </ul> 64 <div id="poststuff" class="metabox-holder"> 65 <div id="post-body"> 66 <div id="post-body-content"> 67 <?php 68 require_once 'glg-lightbox-settings.php'; 69 require_once 'pages/glg-docs.php'; 70 require_once 'pages/glg-free-plugins.php'; 71 require_once 'pages/glg-premium-plugins.php'; 72 73 if ( has_filter( 'glg_admin_settings_container_filter' ) ) { 74 apply_filters( 'glg_admin_settings_container_filter', '' ); 75 } 76 ?> 77 </div> 78 </div> 79 </div> 80 <div class="clear"></div> 81 </div> 82 </div> 83 </div> 84 84 </div> 85 85 86 <?php86 <?php 87 87 88 $content = ob_get_clean(); 89 echo $content; 90 88 $content = ob_get_clean(); 89 echo $content; 91 90 } 92 93 ?> -
gallery-lightbox-slider/trunk/inc/settings/glg-lightbox-settings.php
r2229284 r3446163 1 1 <?php 2 2 3 if ( ! defined( 'ABSPATH' ) ) exit; 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; 5 } 4 6 5 7 ?> 6 8 7 <div id="section_lightbox" class= "postbox"> 8 <div class="inside"> 9 <div id="design_customization_settings" class="format-settings"> 10 <div class="format-setting-wrap"> 11 12 <h2><?php _e('General','gallery-lightbox-slider');?></h2><hr> 13 14 <form id="glg_lightbox_form" method="post" action="#"> 9 <div id="section_lightbox" class="postbox"> 10 <div class="inside"> 11 <div id="design_customization_settings" class="format-settings"> 12 <div class="format-setting-wrap"> 15 13 16 <table class="tbl_custom"> 17 18 <div class="glg-info">If you use Gallery Lightbox Lite and found it useful then please consider rating it and leaving your positive feedback <a href="https://wordpress.org/support/plugin/gallery-lightbox-slider/reviews/?filter=5" target="_blank" style="color: #06F !important;">here</a></div> 19 20 <tr valign="top" class="glg_tr"> 21 <th><?php _e('Enable Lightbox in All Post/Page', 'gallery-lightbox-slider');?></th> 22 <td> 23 24 <?php 25 26 if ( get_option('glg_gallery_active') ) { 27 28 $isactive = get_option('glg_gallery_active'); 29 30 } else { 31 32 $isactive = 'active'; 33 34 } 35 ?> 36 <input class="ios-checkbox" type="checkbox" id="glg_gallery_active" <?php checked('active', $isactive);?> value='active' /> 37 <input name="glg_gallery_active" type="hidden" class="glg_gallery_active" value='<?php print( $isactive ); ?>' /> 38 <p class="description"><?php _e('Use this option to Enable or Disable the Lightbox in all Post or Page', 'gallery-lightbox-slider'); ?></p> 39 </td> 40 </tr> 14 <h2><?php esc_html_e( 'General', 'gallery-lightbox-slider' ); ?></h2> 15 <hr> 41 16 42 <tr valign="top" class="glg_tr"> 43 <th scope="row"><?php _e('Slideshow Auto Play', 'gallery-lightbox-slider');?></th> 44 <td><input class="ios-checkbox" type="checkbox" id="glg_gallery_autoplay" <?php checked( 'true', get_option('glg_gallery_autoplay', 'true'));?>/> 45 <input name="glg_gallery_autoplay" type="hidden" class="glg_gallery_autoplay" value='<?php print(get_option('glg_gallery_autoplay', 'true')); ?>' /> 46 <p class="description"><?php _e('Should the lightbox gallery autoplay on start or not', 'gallery-lightbox-slider'); ?></p> 47 </td> 48 </tr> 49 50 <tr valign="top" class="glg_tr"> 51 <th scope="row"><?php _e('Slideshow Interval', 'gallery-lightbox-slider');?></th> 52 <td><select name="ecf_slide_every" id="ecf_slide_every"> 17 <form id="glg_lightbox_form" method="post" action="#"> 18 19 <table class="tbl_custom"> 20 <div class="glg-info"> 53 21 <?php 54 55 if ( get_option('ecf_slide_every') != '' ) { 56 57 $slideinterval = get_option('ecf_slide_every'); 58 22 echo wp_kses_post( 23 sprintf( 24 /* translators: %s: review link */ 25 __( 'If you use Gallery Lightbox Lite and found it useful then please consider rating it and leaving your positive feedback %s.', 'gallery-lightbox-slider' ), 26 '<a href="' . esc_url( 'https://wordpress.org/support/plugin/gallery-lightbox-slider/reviews/?filter=5' ) . '" target="_blank" rel="noopener noreferrer">' . 27 esc_html__( 'here', 'gallery-lightbox-slider' ) . 28 '</a>' 29 ) 30 ); 31 ?> 32 </div> 33 <tr valign="top" class="glg_tr"> 34 <th><?php esc_html_e( 'Enable Lightbox in All Post/Page', 'gallery-lightbox-slider' ); ?> 35 </th> 36 <td> 37 38 <?php 39 40 if ( get_option( 'glg_gallery_active' ) ) { 41 $isactive = get_option( 'glg_gallery_active' ); 59 42 } else { 60 61 $slideinterval = '3'; 62 43 $isactive = 'active'; 44 } 45 ?> 46 <input class="ios-checkbox" type="checkbox" id="glg_gallery_active" 47 <?php checked( 'active', $isactive ); ?> value='active' /> 48 <input name="glg_gallery_active" type="hidden" class="glg_gallery_active" 49 value='<?php echo esc_attr( $isactive ); ?>' /> 50 <p class="description"> 51 <?php esc_html_e( 'Use this option to Enable or Disable the Lightbox in all Post or Page', 'gallery-lightbox-slider' ); ?> 52 </p> 53 </td> 54 </tr> 55 56 <tr valign="top" class="glg_tr"> 57 <th scope="row"><?php esc_html_e( 'Slideshow Auto Play', 'gallery-lightbox-slider' ); ?> 58 </th> 59 <td><input class="ios-checkbox" type="checkbox" id="glg_gallery_autoplay" 60 <?php checked( 'true', get_option( 'glg_gallery_autoplay', 'true' ) ); ?> /> 61 <input name="glg_gallery_autoplay" type="hidden" class="glg_gallery_autoplay" 62 value='<?php echo esc_attr( get_option( 'glg_gallery_autoplay', 'true' ) ); ?>' /> 63 <p class="description"> 64 <?php esc_html_e( 'Should the lightbox gallery autoplay on start or not', 'gallery-lightbox-slider' ); ?> 65 </p> 66 </td> 67 </tr> 68 69 <tr valign="top" class="glg_tr"> 70 <th scope="row"><?php esc_html_e( 'Slideshow Interval', 'gallery-lightbox-slider' ); ?></th> 71 <td><select name="ecf_slide_every" id="ecf_slide_every"> 72 <?php 73 74 if ( get_option( 'ecf_slide_every' ) != '' ) { 75 $slideinterval = get_option( 'ecf_slide_every' ); 76 } else { 77 $slideinterval = '3'; 63 78 } 64 65 foreach ( range( 1, 60 ) as $i ) {66 67 $every[$i] = $i;68 69 }70 71 foreach ( $every as $key => $value ): ?>72 <option value="<?php esc_attr_e( $key ); ?>"<?php esc_attr_e( $key == $slideinterval ? ' selected="selected"' : '' ); ?>><?php esc_attr_e( $value ); ?></option>73 <?php endforeach;?>74 </select> <span> seconds</span>75 <p class="description"><?php _e('The time in seconds when autoplaying a gallery. Default 3 seconds', 'gallery-lightbox-slider'); ?></p>76 </td>77 </tr>78 79 79 <tr valign="top" class="glg_tr"> 80 <th scope="row"><?php _e('Show Thumbnails on Bottom', 'gallery-lightbox-slider');?></th> 81 <td> 82 <input class="ios-checkbox" type="checkbox" id="glg_gallery_thumbnails" <?php checked( 'true', get_option('glg_gallery_thumbnails', 'true'));?>/> 83 <input name="glg_gallery_thumbnails" type="hidden" class="glg_gallery_thumbnails" value='<?php print(get_option('glg_gallery_thumbnails', 'true')); ?>' /> 84 <p class="description"><?php _e('Use this option to show / hide gallery thumbnails', 'gallery-lightbox-slider'); ?></p> 85 </td> 86 </tr> 87 88 <tr valign="top" class="glg_tr"> 89 <th scope="row"><?php _e('Show Thumbnails Caption', 'gallery-lightbox-slider');?></th> 90 <td> 91 <input class="ios-checkbox" type="checkbox" id="glg_gallery_show_captions" <?php checked( 'true', get_option('glg_gallery_show_captions', 'true'));?>/> 92 <input name="glg_gallery_show_captions" type="hidden" class="glg_gallery_show_captions" value='<?php print(get_option('glg_gallery_show_captions', 'true')); ?>' /> 93 <p class="description"><?php _e('Use this option to show / hide gallery thumbnails caption', 'gallery-lightbox-slider'); ?></p> 94 </td> 95 </tr> 96 97 <tr valign="top" class="glg_tr"> 98 <th scope="row"><?php _e('Fancy Lightbox Caption', 'gallery-lightbox-slider');?></th> 99 <td> 100 <input class="ios-checkbox" type="checkbox" id="glg_gallery_fancy_caption" <?php checked( 'true', get_option('glg_gallery_fancy_caption', 'true'));?>/> 101 <input name="glg_gallery_fancy_caption" type="hidden" class="glg_gallery_fancy_caption" value='<?php print(get_option('glg_gallery_fancy_caption', 'true')); ?>' /> 102 <p class="description"><?php _e('If Enabled the plugin will automatically convert uppercase the first character of each word and replace - with spaces in a title. For example : ferrari-f12-berlinetta will change to Ferrari F12 Berlinetta', 'gallery-lightbox-slider'); ?></p> 103 </td> 104 </tr> 105 106 <tr valign="top" class="glg_tr"> 107 <th scope="row"><?php _e('Overlay Color', 'gallery-lightbox-slider');?></th> 108 <td><input type="text" name="glg_gallery_overlay_color" id="glg_gallery_overlay_color" maxlength="255" size="25" value="<?php print(get_option('glg_gallery_overlay_color', '#000000')); ?>" data-default-color="#000000"> 109 <p class="description"><?php _e('Set your gallery overlay color. Default: #000000 ', 'gallery-lightbox-slider'); ?></p> 110 </td> 111 </tr> 112 113 <tr valign="top"> 114 <td> 115 <a href="https://ghozylab.com/plugins/easy-media-gallery-pro/demo/best-gallery-and-photo-albums-demo/" target="_blank"><img src="<?php echo plugins_url( 'images/banners/next_level_banner.png', dirname( __FILE__ ) ); ?>" width="877" height="158" /></a> 116 </td> 117 </tr> 118 119 </table> 120 <table class="tbl_custom tbl_custom_save"> 121 <tr valign="top"> 122 <td><input data-formname="glg_lightbox_form" data-nonce="<?php echo wp_create_nonce( "glg_form_settings" ); ?>" type="submit" value="<?php _e('Save Changes'); ?>" class="button button-primary glg_form_submit" /><span id="loader_glg_lightbox_form"></span><span style="display:none;position:relative;color:#148919; margin-left:11px; top:6px;" class="set_glg_lightbox_form glg_save_status">Settings Saved</span></td> 123 </tr> 124 125 </table> 80 foreach ( range( 1, 60 ) as $i ) { 81 $every[ $i ] = $i; 82 } 126 83 127 </form> 84 foreach ( $every as $key => $value ) : 85 ?> 86 <option value="<?php echo esc_attr( $key ); ?>" 87 <?php echo esc_html( $key == $slideinterval ? ' selected="selected"' : '' ); ?>> 88 <?php echo esc_html( $value ); ?></option> 89 <?php endforeach; ?> 90 </select> <span> seconds</span> 91 <p class="description"> 92 <?php esc_html_e( 'The time in seconds when autoplaying a gallery. Default 3 seconds', 'gallery-lightbox-slider' ); ?> 93 </p> 94 </td> 95 </tr> 128 96 129 </div> 97 <tr valign="top" class="glg_tr"> 98 <th scope="row"> 99 <?php esc_html_e( 'Show Thumbnails on Bottom', 'gallery-lightbox-slider' ); ?></th> 100 <td> 101 <input class="ios-checkbox" type="checkbox" id="glg_gallery_thumbnails" 102 <?php checked( 'true', get_option( 'glg_gallery_thumbnails', 'true' ) ); ?> /> 103 <input name="glg_gallery_thumbnails" type="hidden" class="glg_gallery_thumbnails" 104 value='<?php echo esc_attr( get_option( 'glg_gallery_thumbnails', 'true' ) ); ?>' /> 105 <p class="description"> 106 <?php esc_html_e( 'Use this option to show / hide gallery thumbnails', 'gallery-lightbox-slider' ); ?> 107 </p> 108 </td> 109 </tr> 110 111 <tr valign="top" class="glg_tr"> 112 <th scope="row"><?php esc_html_e( 'Show Thumbnails Caption', 'gallery-lightbox-slider' ); ?> 113 </th> 114 <td> 115 <input class="ios-checkbox" type="checkbox" id="glg_gallery_show_captions" 116 <?php checked( 'true', get_option( 'glg_gallery_show_captions', 'true' ) ); ?> /> 117 <input name="glg_gallery_show_captions" type="hidden" class="glg_gallery_show_captions" 118 value='<?php echo esc_attr( get_option( 'glg_gallery_show_captions', 'true' ) ); ?>' /> 119 <p class="description"> 120 <?php esc_html_e( 'Use this option to show / hide gallery thumbnails caption', 'gallery-lightbox-slider' ); ?> 121 </p> 122 </td> 123 </tr> 124 125 <tr valign="top" class="glg_tr"> 126 <th scope="row"><?php esc_html_e( 'Fancy Lightbox Caption', 'gallery-lightbox-slider' ); ?> 127 </th> 128 <td> 129 <input class="ios-checkbox" type="checkbox" id="glg_gallery_fancy_caption" 130 <?php checked( 'true', get_option( 'glg_gallery_fancy_caption', 'true' ) ); ?> /> 131 <input name="glg_gallery_fancy_caption" type="hidden" class="glg_gallery_fancy_caption" 132 value='<?php echo esc_attr( get_option( 'glg_gallery_fancy_caption', 'true' ) ); ?>' /> 133 <p class="description"> 134 <?php esc_html_e( 'If Enabled the plugin will automatically convert uppercase the first character of each word and replace - with spaces in a title. For example : ferrari-f12-berlinetta will change to Ferrari F12 Berlinetta', 'gallery-lightbox-slider' ); ?> 135 </p> 136 </td> 137 </tr> 138 139 <tr valign="top" class="glg_tr"> 140 <th scope="row"><?php esc_html_e( 'Overlay Color', 'gallery-lightbox-slider' ); ?></th> 141 <td><input type="text" name="glg_gallery_overlay_color" id="glg_gallery_overlay_color" 142 maxlength="255" size="25" 143 value="<?php echo esc_attr( get_option( 'glg_gallery_overlay_color', '#000000' ) ); ?>" 144 data-default-color="#000000"> 145 <p class="description"> 146 <?php esc_html_e( 'Set your gallery overlay color. Default: #000000 ', 'gallery-lightbox-slider' ); ?> 147 </p> 148 </td> 149 </tr> 150 151 <tr valign="top"> 152 <td> 153 <a href="https://ghozylab.com/plugins/easy-media-gallery-pro/demo/best-gallery-and-photo-albums-demo/" 154 target="_blank"><img 155 src="<?php echo plugins_url( 'images/banners/next_level_banner.png', __DIR__ ); ?>" 156 width="877" height="158" /></a> 157 </td> 158 </tr> 159 160 </table> 161 <table class="tbl_custom tbl_custom_save"> 162 <tr valign="top"> 163 <td><input data-formname="glg_lightbox_form" 164 data-nonce="<?php echo wp_create_nonce( 'glg_form_settings' ); ?>" type="submit" 165 value="<?php echo esc_attr__( 'Save Changes', 'gallery-lightbox-slider' ); ?>" 166 class="button button-primary glg_form_submit" /><span 167 id="loader_glg_lightbox_form"></span><span 168 style="display:none;position:relative;color:#148919; margin-left:11px; top:6px;" 169 class="set_glg_lightbox_form glg_save_status"><?php echo esc_html__( 'Settings Saved', 'gallery-lightbox-slider' ); ?></span> 170 </td> 171 </tr> 172 </table> 173 174 </form> 175 130 176 </div> 131 177 </div> 132 </div> 178 </div> 179 </div> -
gallery-lightbox-slider/trunk/inc/settings/pages/glg-docs.php
r2229503 r3446163 1 1 <?php 2 2 3 if ( ! defined( 'ABSPATH' ) ) exit; 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; 5 } 4 6 5 7 ?> 6 8 7 <div id="section_documentation" class= "postbox"> 8 <div class="inside"> 9 <div id="design_customization_settings" class="format-settings"> 10 <div class="format-setting-wrap"> 11 12 <h2><?php _e('Documentation','gallery-lightbox-slider');?></h2><hr> 13 14 <p class="docs-p"><?php _e('There are no complicated instructions for using Gallery Lightbox Lite because this plugin designed to make all easy. Please watch the following video and we believe that you will easily to understand it just in minutes.', 'gallery-lightbox-slider'); ?></p> 15 <hr /> 16 <h3><?php _e('For WordPress with Gallery Block','gallery-lightbox-slider');?></h3> 17 <p><iframe class="glg-iframe" width="853" height="480" src="https://www.youtube.com/embed/NTli93b3i2I?rel=0" frameborder="0" allowfullscreen></iframe></p> 18 <h3><?php _e('For WordPress with Classic Editor','gallery-lightbox-slider');?></h3> 19 <p><iframe class="glg-iframe" width="853" height="480" src="https://www.youtube.com/embed/-64V-cthkes?rel=0" frameborder="0" allowfullscreen></iframe></p> 20 </div> 21 </div> 22 </div> 9 <div id="section_documentation" class="postbox"> 10 <div class="inside"> 11 <div id="design_customization_settings" class="format-settings"> 12 <div class="format-setting-wrap"> 13 14 <h2><?php esc_html_e( 'Documentation', 'gallery-lightbox-slider' ); ?></h2> 15 <hr> 16 17 <p class="docs-p"> 18 <?php esc_html_e( 'There are no complicated instructions for using Gallery Lightbox Lite because this plugin designed to make all easy. Please watch the following video and we believe that you will easily to understand it just in minutes.', 'gallery-lightbox-slider' ); ?> 19 </p> 20 <hr /> 21 <h3><?php esc_html_e( 'For WordPress with Gallery Block', 'gallery-lightbox-slider' ); ?></h3> 22 <p><iframe class="glg-iframe" width="853" height="480" 23 src="https://www.youtube.com/embed/NTli93b3i2I?rel=0" frameborder="0" allowfullscreen></iframe> 24 </p> 25 <h3><?php esc_html_e( 'For WordPress with Classic Editor', 'gallery-lightbox-slider' ); ?></h3> 26 <p><iframe class="glg-iframe" width="853" height="480" 27 src="https://www.youtube.com/embed/-64V-cthkes?rel=0" frameborder="0" allowfullscreen></iframe> 28 </p> 29 </div> 30 </div> 23 31 </div> 32 </div> -
gallery-lightbox-slider/trunk/inc/settings/pages/glg-free-plugins.php
r1338717 r3446163 1 1 <?php 2 2 3 if ( ! defined( 'ABSPATH' ) ) exit; 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; 5 } 4 6 5 7 ?> 6 8 7 <div id="section_freeplugins" class= "postbox"> 8 <div class="inside"> 9 <div id="design_customization_settings" class="format-settings"> 10 <div class="format-setting-wrap"> 11 12 <h2><?php _e('Free Install Plugins','gallery-lightbox-slider');?></h2><hr> 13 14 <?php // glg_free_plugin_page(); ?> 15 16 <div style="height:250px;display:block;" class="glgloader glgloaderclass"><span style="font-size:12px;position:relative;top:145px;"><?php _e('Retrieving data from server, please wait...','gallery-lightbox-slider');?></span></div> 17 <div style="display:none;" id="glg_free_plugins_page"></div> 9 <div id="section_freeplugins" class="postbox"> 10 <div class="inside"> 11 <div id="design_customization_settings" class="format-settings"> 12 <div class="format-setting-wrap"> 18 13 14 <h2><?php esc_html_e( 'Free Install Plugins', 'gallery-lightbox-slider' ); ?></h2> 15 <hr> 16 <div style="height:250px;display:block;" class="glgloader glgloaderclass"><span 17 style="font-size:12px;position:relative;top:145px;"><?php esc_html_e( 'Retrieving data from server, please wait...', 'gallery-lightbox-slider' ); ?></span> 19 18 </div> 19 <div style="display:none;" id="glg_free_plugins_page"></div> 20 20 21 </div> 21 22 </div> 22 </div> 23 </div> 24 </div> -
gallery-lightbox-slider/trunk/inc/settings/pages/glg-premium-plugins.php
r1338717 r3446163 1 1 <?php 2 2 3 if ( ! defined( 'ABSPATH' ) ) exit; 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; 5 } 4 6 ?> 5 7 6 <div id="section_premiumplugins" class= "postbox"> 7 <div class="inside"> 8 <div id="design_customization_settings" class="format-settings"> 9 <div class="format-setting-wrap"> 10 11 <h2><?php _e('Premium Plugins','gallery-lightbox-slider');?></h2><hr> 12 13 <p class="docs-p"><?php _e('Take your website to the next level with our Premium Plugins, which gives you additional features more than you expected.', 'gallery-lightbox-slider'); ?></p> 14 <hr /> 15 <div style="margin-top:30px;" id="ghozy-featured"> 16 <div class="feature-section"> 17 18 <?php //echo glg_get_premium_plugins(); ?> 19 20 <div style="height:250px;display:block;" class="glgloader glgloaderclass"><span style="font-size:12px;position:relative;top:145px;"><?php _e('Retrieving data from server, please wait...','gallery-lightbox-slider');?></span></div> 21 <div style="display:none;" id="glg_pro_plugins_page"></div> 22 8 <div id="section_premiumplugins" class="postbox"> 9 <div class="inside"> 10 <div id="design_customization_settings" class="format-settings"> 11 <div class="format-setting-wrap"> 12 13 <h2><?php esc_html_e( 'Premium Plugins', 'gallery-lightbox-slider' ); ?></h2> 14 <hr> 15 16 <p class="docs-p"> 17 <?php esc_html_e( 'Take your website to the next level with our Premium Plugins, which gives you additional features more than you expected.', 'gallery-lightbox-slider' ); ?> 18 </p> 19 <hr /> 20 <div style="margin-top:30px;" id="ghozy-featured"> 21 <div class="feature-section"> 22 <div style="height:250px;display:block;" class="glgloader glgloaderclass"><span 23 style="font-size:12px;position:relative;top:145px;"><?php esc_html_e( 'Retrieving data from server, please wait...', 'gallery-lightbox-slider' ); ?></span> 23 24 </div> 25 <div style="display:none;" id="glg_pro_plugins_page"></div> 26 24 27 </div> 25 28 </div> 26 29 </div> 27 30 </div> 28 </div> 29 30 31 31 </div> 32 </div> -
gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-de_DE.po
r2229284 r3446163 2 2 msgstr "" 3 3 "Project-Id-Version: Gallery Lightbox Lite\n" 4 "POT-Creation-Date: 202 0-01-17 21:30+0700\n"5 "PO-Revision-Date: 202 0-01-17 21:31+0700\n"4 "POT-Creation-Date: 2026-01-20 12:16+0700\n" 5 "PO-Revision-Date: 2026-01-20 12:16+0700\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 2.2.4\n" 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 "X-Generator: Poedit 3.8\n" 13 14 "X-Poedit-Basepath: ..\n" 14 15 "X-Poedit-WPHeader: gallery-lightbox-lite.php\n" 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n"16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 17 "X-Poedit-KeywordsList: " 18 "__;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 19 "X-Poedit-SearchPath-0: .\n" 21 20 "X-Poedit-SearchPathExcluded-0: *.js\n" … … 25 24 msgstr "Einstellungen" 26 25 27 #: inc/functions/ajax/glg-admin-ajax.php:1 0426 #: inc/functions/ajax/glg-admin-ajax.php:114 28 27 #, php-format 29 28 msgid "By %s" 30 29 msgstr "Von %s" 31 30 32 #: inc/functions/ajax/glg-admin-ajax.php:1 1631 #: inc/functions/ajax/glg-admin-ajax.php:126 33 32 #, php-format 34 33 msgid "Install %s now" 35 34 msgstr "Install %s now" 36 35 37 #: inc/functions/ajax/glg-admin-ajax.php:1 1636 #: inc/functions/ajax/glg-admin-ajax.php:126 38 37 msgid "Install Now" 39 38 msgstr "Install" 40 39 41 #: inc/functions/ajax/glg-admin-ajax.php:1 2340 #: inc/functions/ajax/glg-admin-ajax.php:133 42 41 #, php-format 43 42 msgid "Update %s now" 44 43 msgstr "Aktualisieren %s Jetzt" 45 44 46 #: inc/functions/ajax/glg-admin-ajax.php:1 2345 #: inc/functions/ajax/glg-admin-ajax.php:133 47 46 msgid "Update Now" 48 47 msgstr "Update" 49 48 50 #: inc/functions/ajax/glg-admin-ajax.php:1 2949 #: inc/functions/ajax/glg-admin-ajax.php:139 51 50 msgid "This plugin is already installed and is up to date" 52 51 msgstr "Dieses Plugin ist bereits installiert und auf dem neuesten Stand" 53 52 54 #: inc/functions/ajax/glg-admin-ajax.php:1 2953 #: inc/functions/ajax/glg-admin-ajax.php:139 55 54 msgctxt "plugin" 56 55 msgid "Installed" 57 56 msgstr "Installiert" 58 57 59 #: inc/functions/ajax/glg-admin-ajax.php:1 3858 #: inc/functions/ajax/glg-admin-ajax.php:148 60 59 #, php-format 61 60 msgid "More information about %s" 62 61 msgstr "Mehr Information über %s" 63 62 64 #: inc/functions/ajax/glg-admin-ajax.php:1 3863 #: inc/functions/ajax/glg-admin-ajax.php:148 65 64 msgid "More Details" 66 65 msgstr "Mehr Details" 67 66 68 #: inc/functions/ajax/glg-admin-ajax.php:2 0667 #: inc/functions/ajax/glg-admin-ajax.php:220 69 68 msgid "Last Updated:" 70 69 msgstr "Zuletzt Geändert:" 71 70 72 #: inc/functions/ajax/glg-admin-ajax.php:2 0771 #: inc/functions/ajax/glg-admin-ajax.php:221 73 72 #, php-format 74 73 msgid "%s ago" 75 74 msgstr "%s Tagen" 76 75 77 #: inc/functions/ajax/glg-admin-ajax.php:2 1176 #: inc/functions/ajax/glg-admin-ajax.php:225 78 77 #, php-format 79 78 msgid "%s download" … … 82 81 msgstr[1] "%s Tagen" 83 82 84 #: inc/functions/ajax/glg-admin-ajax.php:2 1683 #: inc/functions/ajax/glg-admin-ajax.php:230 85 84 msgid "Untested with your version of WordPress" 86 85 msgstr "Ungeprüfte mit Ihrer Version von Wordpress" 87 86 88 #: inc/functions/ajax/glg-admin-ajax.php:2 1887 #: inc/functions/ajax/glg-admin-ajax.php:232 89 88 msgid "<strong>Incompatible</strong> with your version of WordPress" 90 89 msgstr "<strong>Inkompatibel</strong> mit Ihrer WordPress-Version" 91 90 92 #: inc/functions/ajax/glg-admin-ajax.php:2 2091 #: inc/functions/ajax/glg-admin-ajax.php:234 93 92 msgid "<strong>Compatible</strong> with your version of WordPress" 94 93 msgstr "<strong>Kompatibel</strong> mit Ihrer WordPress-Version" 95 94 96 #: inc/functions/ajax/glg-admin-ajax.php: 29495 #: inc/functions/ajax/glg-admin-ajax.php:308 97 96 msgid "" 98 97 "There was an error retrieving the list from the server. Please try again " … … 113 112 "in der Lightbox geöffnet" 114 113 115 #: inc/settings/glg-lightbox-settings.php:1 2114 #: inc/settings/glg-lightbox-settings.php:14 116 115 msgid "General" 117 116 msgstr "Allgemein" 118 117 119 #: inc/settings/glg-lightbox-settings.php:21 118 #: inc/settings/glg-lightbox-settings.php:24 119 #, fuzzy, php-format 120 #| msgid "" 121 #| "If you use Gallery Lightbox Lite and found it useful then please consider " 122 #| "rating it and leaving your positive feedback <a href=\"%s\" " 123 #| "target=\"_blank\" rel=\"noopener noreferrer\">here</a>." 124 msgid "" 125 "If you use Gallery Lightbox Lite and found it useful then please consider " 126 "rating it and leaving your positive feedback %s." 127 msgstr "" 128 "Wenn Sie Gallery Lightbox Lite nutzen und es nützlich fanden, sollten Sie es " 129 "bitte bewerten und Ihr positives Feedback <a href=\"%s\" target=\"_blank\" " 130 "rel=\"noopener noreferrer\">hier</a> hinterlassen." 131 132 #: inc/settings/glg-lightbox-settings.php:26 133 msgid "here" 134 msgstr "hier" 135 136 #: inc/settings/glg-lightbox-settings.php:33 120 137 msgid "Enable Lightbox in All Post/Page" 121 138 msgstr "Leuchtkasten in allen Post-Seite aktivieren" 122 139 123 #: inc/settings/glg-lightbox-settings.php: 39140 #: inc/settings/glg-lightbox-settings.php:50 124 141 msgid "Use this option to Enable or Disable the Lightbox in all Post or Page" 125 142 msgstr "" … … 127 144 "allen Post oder Seite" 128 145 129 #: inc/settings/glg-lightbox-settings.php: 44146 #: inc/settings/glg-lightbox-settings.php:55 130 147 msgid "Slideshow Auto Play" 131 148 msgstr "Slideshow-automatische Wiedergabe" 132 149 133 #: inc/settings/glg-lightbox-settings.php: 49150 #: inc/settings/glg-lightbox-settings.php:58 134 151 msgid "Should the lightbox gallery autoplay on start or not" 135 152 msgstr "Sollte das Lightbox Galerie Autoplay auf Start oder nicht" 136 153 137 #: inc/settings/glg-lightbox-settings.php: 54154 #: inc/settings/glg-lightbox-settings.php:63 138 155 msgid "Slideshow Interval" 139 156 msgstr "Diaschau-Intervall" 140 157 141 #: inc/settings/glg-lightbox-settings.php:75 142 msgid " selected=\"selected\"" 143 msgstr "" 144 145 #: inc/settings/glg-lightbox-settings.php:78 158 #: inc/settings/glg-lightbox-settings.php:88 146 159 msgid "The time in seconds when autoplaying a gallery. Default 3 seconds" 147 160 msgstr "" … … 149 162 "Standard: 3 Sekunden" 150 163 151 #: inc/settings/glg-lightbox-settings.php: 83164 #: inc/settings/glg-lightbox-settings.php:93 152 165 msgid "Show Thumbnails on Bottom" 153 166 msgstr "Vorschaubilder unten" 154 167 155 #: inc/settings/glg-lightbox-settings.php: 88168 #: inc/settings/glg-lightbox-settings.php:97 156 169 msgid "Use this option to show / hide gallery thumbnails" 157 170 msgstr "" 158 171 "Verwenden Sie diese Option zum Anzeigen / Verbergen der Galerie Miniaturen" 159 172 160 #: inc/settings/glg-lightbox-settings.php: 93173 #: inc/settings/glg-lightbox-settings.php:102 161 174 msgid "Show Thumbnails Caption" 162 175 msgstr "Thumbnails-Beschriftung anzeigen" 163 176 164 #: inc/settings/glg-lightbox-settings.php: 98177 #: inc/settings/glg-lightbox-settings.php:106 165 178 msgid "Use this option to show / hide gallery thumbnails caption" 166 179 msgstr "" … … 168 181 "Beschriftung" 169 182 170 #: inc/settings/glg-lightbox-settings.php:1 03183 #: inc/settings/glg-lightbox-settings.php:111 171 184 msgid "Fancy Lightbox Caption" 172 msgstr " "173 174 #: inc/settings/glg-lightbox-settings.php:1 08185 msgstr "Schicke Lightbox-Bildunterschrift" 186 187 #: inc/settings/glg-lightbox-settings.php:115 175 188 msgid "" 176 189 "If Enabled the plugin will automatically convert uppercase the first " … … 183 196 "Interior ändern" 184 197 185 #: inc/settings/glg-lightbox-settings.php:1 13198 #: inc/settings/glg-lightbox-settings.php:120 186 199 msgid "Overlay Color" 187 200 msgstr "Überlagerungs-Farbe" 188 201 189 #: inc/settings/glg-lightbox-settings.php:1 15202 #: inc/settings/glg-lightbox-settings.php:122 190 203 msgid "Set your gallery overlay color. Default: #000000 " 191 204 msgstr "Sie Ihre Galerie-Overlay-Farbe. Standard: #000000 " 192 205 193 #: inc/settings/glg-lightbox-settings.php:1 28206 #: inc/settings/glg-lightbox-settings.php:135 194 207 msgid "Save Changes" 195 208 msgstr "Änderungen speichern" 209 210 #: inc/settings/glg-lightbox-settings.php:135 211 msgid "Settings Saved" 212 msgstr "Einstellungen gespeichert" 196 213 197 214 #: inc/settings/pages/glg-docs.php:12 … … 210 227 "Minuten zu verstehen." 211 228 229 #: inc/settings/pages/glg-docs.php:16 230 msgid "For WordPress with Gallery Block" 231 msgstr "Für WordPress mit Galerie-Block" 232 233 #: inc/settings/pages/glg-docs.php:18 234 msgid "For WordPress with Classic Editor" 235 msgstr "Für WordPress mit Classic Editor" 236 212 237 #: inc/settings/pages/glg-free-plugins.php:12 213 238 msgid "Free Install Plugins" … … 233 258 #. Plugin Name of the plugin/theme 234 259 msgid "Gallery Lightbox Lite" 235 msgstr " "260 msgstr "Galerie Lightbox Lite" 236 261 237 262 #. Plugin URI of the plugin/theme 238 263 #. Author URI of the plugin/theme 239 msgid "http ://www.ghozylab.com/plugins/"240 msgstr " "264 msgid "https://ghozylab.com/plugins/" 265 msgstr "https://ghozylab.com/plugins/" 241 266 242 267 #. Description of the plugin/theme … … 245 270 "with very easy" 246 271 msgstr "" 272 "Zeigt deine Bildergalerie ganz einfach in den großartigen und " 273 "reaktionsschnellen Lightbox-Schieberegler an" 247 274 248 275 #. Author of the plugin/theme 249 276 msgid "GhozyLab, Inc." 250 msgstr " "277 msgstr "GhozyLab, Inc." 251 278 252 279 #~ msgid "Use this option to mass Enable or Disable the Lightbox" -
gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-es_ES.po
r2229284 r3446163 2 2 msgstr "" 3 3 "Project-Id-Version: Gallery Lightbox Lite\n" 4 "POT-Creation-Date: 202 0-01-17 21:32+0700\n"5 "PO-Revision-Date: 202 0-01-17 21:33+0700\n"4 "POT-Creation-Date: 2026-01-20 12:16+0700\n" 5 "PO-Revision-Date: 2026-01-20 12:17+0700\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 2.2.4\n" 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 "X-Generator: Poedit 3.8\n" 13 14 "X-Poedit-Basepath: ..\n" 14 15 "X-Poedit-WPHeader: gallery-lightbox-lite.php\n" 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n"16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 17 "X-Poedit-KeywordsList: " 18 "__;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 19 "X-Poedit-SearchPath-0: .\n" 21 20 "X-Poedit-SearchPathExcluded-0: *.js\n" … … 25 24 msgstr "Configuración" 26 25 27 #: inc/functions/ajax/glg-admin-ajax.php:1 0426 #: inc/functions/ajax/glg-admin-ajax.php:114 28 27 #, php-format 29 28 msgid "By %s" 30 29 msgstr "Por %s" 31 30 32 #: inc/functions/ajax/glg-admin-ajax.php:1 1631 #: inc/functions/ajax/glg-admin-ajax.php:126 33 32 #, php-format 34 33 msgid "Install %s now" 35 34 msgstr "Instalar %s ahora" 36 35 37 #: inc/functions/ajax/glg-admin-ajax.php:1 1636 #: inc/functions/ajax/glg-admin-ajax.php:126 38 37 msgid "Install Now" 39 38 msgstr "Instalación Nueva" 40 39 41 #: inc/functions/ajax/glg-admin-ajax.php:1 2340 #: inc/functions/ajax/glg-admin-ajax.php:133 42 41 #, php-format 43 42 msgid "Update %s now" 44 43 msgstr "Actualizar %s ahora" 45 44 46 #: inc/functions/ajax/glg-admin-ajax.php:1 2345 #: inc/functions/ajax/glg-admin-ajax.php:133 47 46 msgid "Update Now" 48 47 msgstr "Actualizar" 49 48 50 #: inc/functions/ajax/glg-admin-ajax.php:1 2949 #: inc/functions/ajax/glg-admin-ajax.php:139 51 50 msgid "This plugin is already installed and is up to date" 52 51 msgstr "Este plugin ya está instalado y está actualizado" 53 52 54 #: inc/functions/ajax/glg-admin-ajax.php:1 2953 #: inc/functions/ajax/glg-admin-ajax.php:139 55 54 msgctxt "plugin" 56 55 msgid "Installed" 57 56 msgstr "Instalado" 58 57 59 #: inc/functions/ajax/glg-admin-ajax.php:1 3858 #: inc/functions/ajax/glg-admin-ajax.php:148 60 59 #, php-format 61 60 msgid "More information about %s" 62 61 msgstr "Mas Información sobre %s" 63 62 64 #: inc/functions/ajax/glg-admin-ajax.php:1 3863 #: inc/functions/ajax/glg-admin-ajax.php:148 65 64 msgid "More Details" 66 65 msgstr "Más Detalles" 67 66 68 #: inc/functions/ajax/glg-admin-ajax.php:2 0667 #: inc/functions/ajax/glg-admin-ajax.php:220 69 68 msgid "Last Updated:" 70 69 msgstr "Última Actualización:" 71 70 72 #: inc/functions/ajax/glg-admin-ajax.php:2 0771 #: inc/functions/ajax/glg-admin-ajax.php:221 73 72 #, php-format 74 73 msgid "%s ago" 75 74 msgstr "Hace %s" 76 75 77 #: inc/functions/ajax/glg-admin-ajax.php:2 1176 #: inc/functions/ajax/glg-admin-ajax.php:225 78 77 #, php-format 79 78 msgid "%s download" … … 82 81 msgstr[1] "Por %s" 83 82 84 #: inc/functions/ajax/glg-admin-ajax.php:2 1683 #: inc/functions/ajax/glg-admin-ajax.php:230 85 84 msgid "Untested with your version of WordPress" 86 85 msgstr "No comprobado con tu versión de WordPress" 87 86 88 #: inc/functions/ajax/glg-admin-ajax.php:2 1887 #: inc/functions/ajax/glg-admin-ajax.php:232 89 88 msgid "<strong>Incompatible</strong> with your version of WordPress" 90 89 msgstr "<strong>Incompatible</strong> con tu versión de WordPress" 91 90 92 #: inc/functions/ajax/glg-admin-ajax.php:2 2091 #: inc/functions/ajax/glg-admin-ajax.php:234 93 92 msgid "<strong>Compatible</strong> with your version of WordPress" 94 93 msgstr "<strong>Compatible</strong> con tu versión de WordPress" 95 94 96 #: inc/functions/ajax/glg-admin-ajax.php: 29495 #: inc/functions/ajax/glg-admin-ajax.php:308 97 96 msgid "" 98 97 "There was an error retrieving the list from the server. Please try again " … … 113 112 "abrirán en la caja de luz" 114 113 115 #: inc/settings/glg-lightbox-settings.php:1 2114 #: inc/settings/glg-lightbox-settings.php:14 116 115 msgid "General" 117 116 msgstr "General" 118 117 119 #: inc/settings/glg-lightbox-settings.php:21 118 #: inc/settings/glg-lightbox-settings.php:24 119 #, php-format 120 msgid "" 121 "If you use Gallery Lightbox Lite and found it useful then please consider " 122 "rating it and leaving your positive feedback %s." 123 msgstr "" 124 "Si usas Gallery Lightbox Lite y te ha resultado útil, por favor considera " 125 "valorarlo y dejar tu feedback positivo %s." 126 127 #: inc/settings/glg-lightbox-settings.php:26 128 msgid "here" 129 msgstr "aquí" 130 131 #: inc/settings/glg-lightbox-settings.php:33 120 132 msgid "Enable Lightbox in All Post/Page" 121 133 msgstr "Habilitar toda la mesa de luz en Post / Página" 122 134 123 #: inc/settings/glg-lightbox-settings.php: 39135 #: inc/settings/glg-lightbox-settings.php:50 124 136 msgid "Use this option to Enable or Disable the Lightbox in all Post or Page" 125 137 msgstr "" … … 127 139 "Post o página" 128 140 129 #: inc/settings/glg-lightbox-settings.php: 44141 #: inc/settings/glg-lightbox-settings.php:55 130 142 msgid "Slideshow Auto Play" 131 143 msgstr "Auto reproducir" 132 144 133 #: inc/settings/glg-lightbox-settings.php: 49145 #: inc/settings/glg-lightbox-settings.php:58 134 146 msgid "Should the lightbox gallery autoplay on start or not" 135 147 msgstr "" … … 137 149 "no" 138 150 139 #: inc/settings/glg-lightbox-settings.php: 54151 #: inc/settings/glg-lightbox-settings.php:63 140 152 msgid "Slideshow Interval" 141 153 msgstr "Presentación Intervalo" 142 154 143 #: inc/settings/glg-lightbox-settings.php:75 144 msgid " selected=\"selected\"" 145 msgstr "" 146 147 #: inc/settings/glg-lightbox-settings.php:78 155 #: inc/settings/glg-lightbox-settings.php:88 148 156 msgid "The time in seconds when autoplaying a gallery. Default 3 seconds" 149 157 msgstr "" … … 151 159 "segundos" 152 160 153 #: inc/settings/glg-lightbox-settings.php: 83161 #: inc/settings/glg-lightbox-settings.php:93 154 162 msgid "Show Thumbnails on Bottom" 155 163 msgstr "Galeria con Fotos al Abajo" 156 164 157 #: inc/settings/glg-lightbox-settings.php: 88165 #: inc/settings/glg-lightbox-settings.php:97 158 166 msgid "Use this option to show / hide gallery thumbnails" 159 167 msgstr "Utilice esta opción para mostrar la galería / ocultar miniaturas" 160 168 161 #: inc/settings/glg-lightbox-settings.php: 93169 #: inc/settings/glg-lightbox-settings.php:102 162 170 msgid "Show Thumbnails Caption" 163 msgstr " "164 165 #: inc/settings/glg-lightbox-settings.php: 98171 msgstr "Pie de foto de las miniaturas de mostrar" 172 173 #: inc/settings/glg-lightbox-settings.php:106 166 174 msgid "Use this option to show / hide gallery thumbnails caption" 167 175 msgstr "Utilice esta opción para mostrar la galería / ocultar miniaturas" 168 176 169 #: inc/settings/glg-lightbox-settings.php:1 03177 #: inc/settings/glg-lightbox-settings.php:111 170 178 msgid "Fancy Lightbox Caption" 171 msgstr " "172 173 #: inc/settings/glg-lightbox-settings.php:1 08179 msgstr "Pie de foto elegante de la caja de luz" 180 181 #: inc/settings/glg-lightbox-settings.php:115 174 182 msgid "" 175 183 "If Enabled the plugin will automatically convert uppercase the first " … … 181 189 "ferrari-f12 berlinetta cambiará a Ferrari F12 Berlinetta" 182 190 183 #: inc/settings/glg-lightbox-settings.php:1 13191 #: inc/settings/glg-lightbox-settings.php:120 184 192 msgid "Overlay Color" 185 193 msgstr "Color de Superposición" 186 194 187 #: inc/settings/glg-lightbox-settings.php:1 15195 #: inc/settings/glg-lightbox-settings.php:122 188 196 msgid "Set your gallery overlay color. Default: #000000 " 189 197 msgstr "Establezca su color de superposición. Por defecto: # 000000 " 190 198 191 #: inc/settings/glg-lightbox-settings.php:1 28199 #: inc/settings/glg-lightbox-settings.php:135 192 200 msgid "Save Changes" 193 201 msgstr "Guardar los cambios" 202 203 #: inc/settings/glg-lightbox-settings.php:135 204 msgid "Settings Saved" 205 msgstr "Configuración Guardada" 194 206 195 207 #: inc/settings/pages/glg-docs.php:12 … … 206 218 "este plugin diseñado para facilitar todo. Por favor ver el siguiente video y " 207 219 "creemos que podrá fácilmente entender en minutos." 220 221 #: inc/settings/pages/glg-docs.php:16 222 msgid "For WordPress with Gallery Block" 223 msgstr "Para WordPress con bloque de galería" 224 225 #: inc/settings/pages/glg-docs.php:18 226 msgid "For WordPress with Classic Editor" 227 msgstr "Para WordPress con Classic Editor" 208 228 209 229 #: inc/settings/pages/glg-free-plugins.php:12 … … 230 250 #. Plugin Name of the plugin/theme 231 251 msgid "Gallery Lightbox Lite" 232 msgstr " "252 msgstr "Galería Lightbox Lite" 233 253 234 254 #. Plugin URI of the plugin/theme 235 255 #. Author URI of the plugin/theme 236 msgid "http ://www.ghozylab.com/plugins/"237 msgstr " "256 msgid "https://ghozylab.com/plugins/" 257 msgstr "https://ghozylab.com/plugins/" 238 258 239 259 #. Description of the plugin/theme … … 242 262 "with very easy" 243 263 msgstr "" 264 "Muestra tu galería de imágenes en el increíble y responsivo control " 265 "deslizante de la caja de luz con mucha facilidad" 244 266 245 267 #. Author of the plugin/theme 246 268 msgid "GhozyLab, Inc." 247 msgstr " "269 msgstr "GhozyLab, Inc." 248 270 249 271 #~ msgid "Use this option to mass Enable or Disable the Lightbox" -
gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-fr_FR.po
r2229284 r3446163 1 # Copyright (C) 2015 Gallery Lightbox Lite 2 # This file is distributed under the same license as the Gallery Lightbox Lite package. 3 msgid "" 4 msgstr "" 5 "Project-Id-Version: Gallery Lightbox Lite 1.0.0.3\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gallery-lightbox-" 7 "slider\n" 8 "POT-Creation-Date: 2016-03-13 06:47+0700\n" 9 "PO-Revision-Date: 2020-01-17 21:33+0700\n" 1 msgid "" 2 msgstr "" 3 "Project-Id-Version: Gallery Lightbox Lite\n" 4 "POT-Creation-Date: 2026-01-20 12:24+0700\n" 5 "PO-Revision-Date: 2026-01-20 12:24+0700\n" 10 6 "Last-Translator: \n" 11 7 "Language-Team: \n" 12 "Language: fr \n"8 "Language: fr_FR\n" 13 9 "MIME-Version: 1.0\n" 14 10 "Content-Type: text/plain; charset=UTF-8\n" 15 11 "Content-Transfer-Encoding: 8bit\n" 16 "X-Generator: Poedit 2.2.4\n"17 12 "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 19 #: gallery-lightbox-lite.php:90 13 "X-Generator: Poedit 3.8\n" 14 "X-Poedit-Basepath: ..\n" 15 "X-Poedit-Flags-xgettext: --add-comments=translators:\n" 16 "X-Poedit-WPHeader: gallery-lightbox-lite.php\n" 17 "X-Poedit-SourceCharset: UTF-8\n" 18 "X-Poedit-KeywordsList: " 19 "__;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 "X-Poedit-SearchPath-0: .\n" 21 "X-Poedit-SearchPathExcluded-0: *.min.js\n" 22 23 #: gallery-lightbox-lite.php:89 20 24 msgid "Settings" 21 25 msgstr "Paramètres" 22 26 23 #: inc/functions/ajax/glg-admin-ajax.php:1 0427 #: inc/functions/ajax/glg-admin-ajax.php:114 24 28 #, php-format 25 29 msgid "By %s" 26 30 msgstr "Par %s" 27 31 28 #: inc/functions/ajax/glg-admin-ajax.php:116 32 #. translators: 1: Plugin name and version. 33 #: inc/functions/ajax/glg-admin-ajax.php:126 29 34 #, php-format 30 35 msgid "Install %s now" 31 msgstr "" 32 33 #: inc/functions/ajax/glg-admin-ajax.php:116 36 msgstr "Installer %s maintenant" 37 38 #: inc/functions/ajax/glg-admin-ajax.php:126 39 #, fuzzy 34 40 msgid "Install Now" 35 41 msgstr "Installer Maintenant" 36 42 37 #: inc/functions/ajax/glg-admin-ajax.php:123 43 #. translators: 1: Plugin name and version 44 #: inc/functions/ajax/glg-admin-ajax.php:133 38 45 #, php-format 39 46 msgid "Update %s now" 40 msgstr " "41 42 #: inc/functions/ajax/glg-admin-ajax.php:1 2347 msgstr "Mise à jour %s maintenant" 48 49 #: inc/functions/ajax/glg-admin-ajax.php:133 43 50 msgid "Update Now" 44 51 msgstr "Mettre à jour maintenant" 45 52 46 #: inc/functions/ajax/glg-admin-ajax.php:1 2953 #: inc/functions/ajax/glg-admin-ajax.php:139 47 54 msgid "This plugin is already installed and is up to date" 48 55 msgstr "Ce plugin est déjà installé et à jour" 49 56 50 #: inc/functions/ajax/glg-admin-ajax.php:129 57 #: inc/functions/ajax/glg-admin-ajax.php:139 58 #, fuzzy 51 59 msgctxt "plugin" 52 60 msgid "Installed" 53 61 msgstr "Installé" 54 62 55 #: inc/functions/ajax/glg-admin-ajax.php:138 63 #. translators: 1: Plugin name and version. 64 #: inc/functions/ajax/glg-admin-ajax.php:148 56 65 #, php-format 57 66 msgid "More information about %s" 58 msgstr "" 59 60 #: inc/functions/ajax/glg-admin-ajax.php:138 67 msgstr "Des informations supplémentaires sur les %s" 68 69 #: inc/functions/ajax/glg-admin-ajax.php:148 70 #, fuzzy 61 71 msgid "More Details" 62 72 msgstr "Plus de détails" 63 73 64 #: inc/functions/ajax/glg-admin-ajax.php:206 74 #: inc/functions/ajax/glg-admin-ajax.php:220 75 #, fuzzy 65 76 msgid "Last Updated:" 66 77 msgstr "Dernière mise à jour:" 67 78 68 #: inc/functions/ajax/glg-admin-ajax.php:2 0769 #, php-format79 #: inc/functions/ajax/glg-admin-ajax.php:221 80 #, fuzzy, php-format 70 81 msgid "%s ago" 71 msgstr " "72 73 #: inc/functions/ajax/glg-admin-ajax.php:2 1174 #, php-format82 msgstr "%s ago" 83 84 #: inc/functions/ajax/glg-admin-ajax.php:225 85 #, fuzzy, php-format 75 86 msgid "%s download" 76 87 msgid_plural "%s downloads" 77 msgstr[0] " "78 msgstr[1] " "79 80 #: inc/functions/ajax/glg-admin-ajax.php:2 1688 msgstr[0] "%s download" 89 msgstr[1] "%s downloads" 90 91 #: inc/functions/ajax/glg-admin-ajax.php:230 81 92 msgid "Untested with your version of WordPress" 82 93 msgstr "Non testé avec votre version de WordPress" 83 94 84 #: inc/functions/ajax/glg-admin-ajax.php:2 1895 #: inc/functions/ajax/glg-admin-ajax.php:232 85 96 msgid "<strong>Incompatible</strong> with your version of WordPress" 86 97 msgstr "<strong>Incompatible</strong> avec votre version de WordPress" 87 98 88 #: inc/functions/ajax/glg-admin-ajax.php:2 2099 #: inc/functions/ajax/glg-admin-ajax.php:234 89 100 msgid "<strong>Compatible</strong> with your version of WordPress" 90 101 msgstr "<strong>Compatible</strong> avec votre version de WordPress" 91 102 92 #: inc/functions/ajax/glg-admin-ajax.php: 265103 #: inc/functions/ajax/glg-admin-ajax.php:308 93 104 msgid "" 94 105 "There was an error retrieving the list from the server. Please try again " … … 99 110 100 111 #: inc/gfg-metabox.php:45 101 msgid "Activate Lightbox?" 102 msgstr "Activer la lightbox?" 103 104 #: inc/settings/glg-lightbox-settings.php:12 112 msgid "Use Lightbox?" 113 msgstr "Utiliser Lightbox ?" 114 115 #: inc/gfg-metabox.php:50 116 msgid "" 117 "If set to YES, all galleries on this page/post will be opened in the lightbox" 118 msgstr "" 119 "Si la mise est sur OUI, toutes les galeries de cette page/post s’ouvriront " 120 "dans la lightbox" 121 122 #: inc/settings/glg-lightbox-settings.php:14 105 123 msgid "General" 106 124 msgstr "Général" 107 125 108 #: inc/settings/glg-lightbox-settings.php:21 126 #. translators: %s: review link 127 #: inc/settings/glg-lightbox-settings.php:24 128 #, php-format 129 msgid "" 130 "If you use Gallery Lightbox Lite and found it useful then please consider " 131 "rating it and leaving your positive feedback %s." 132 msgstr "" 133 "Si vous utilisez Gallery Lightbox Lite et que vous l’avez trouvé utile, " 134 "alors merci de le noter et de laisser vos retours positifs %s." 135 136 #: inc/settings/glg-lightbox-settings.php:26 137 msgid "here" 138 msgstr "ici" 139 140 #: inc/settings/glg-lightbox-settings.php:33 109 141 msgid "Enable Lightbox in All Post/Page" 110 142 msgstr "Activer Lightbox dans tous les Post/Page" 111 143 112 #: inc/settings/glg-lightbox-settings.php: 39144 #: inc/settings/glg-lightbox-settings.php:50 113 145 msgid "Use this option to Enable or Disable the Lightbox in all Post or Page" 114 146 msgstr "" … … 116 148 "Post ou Page" 117 149 118 #: inc/settings/glg-lightbox-settings.php: 44150 #: inc/settings/glg-lightbox-settings.php:55 119 151 msgid "Slideshow Auto Play" 120 152 msgstr "Lecture diaporama automatique" 121 153 122 #: inc/settings/glg-lightbox-settings.php: 49154 #: inc/settings/glg-lightbox-settings.php:58 123 155 msgid "Should the lightbox gallery autoplay on start or not" 124 156 msgstr "Devrait l'autoplay de Galerie lightbox sur Démarrer ou non" 125 157 126 #: inc/settings/glg-lightbox-settings.php: 54158 #: inc/settings/glg-lightbox-settings.php:63 127 159 msgid "Slideshow Interval" 128 160 msgstr "Intervalles du diaporama" 129 161 130 #: inc/settings/glg-lightbox-settings.php:75 131 msgid " selected=\"selected\"" 132 msgstr "" 133 134 #: inc/settings/glg-lightbox-settings.php:78 162 #: inc/settings/glg-lightbox-settings.php:88 135 163 msgid "The time in seconds when autoplaying a gallery. Default 3 seconds" 136 164 msgstr "" … … 138 166 "3 secondes" 139 167 140 #: inc/settings/glg-lightbox-settings.php: 83168 #: inc/settings/glg-lightbox-settings.php:93 141 169 msgid "Show Thumbnails on Bottom" 142 170 msgstr "Galerie avec des vignettes dans le bas" 143 171 144 #: inc/settings/glg-lightbox-settings.php: 88172 #: inc/settings/glg-lightbox-settings.php:97 145 173 msgid "Use this option to show / hide gallery thumbnails" 146 174 msgstr "Cette option permet d'afficher / masquer les vignettes de la Galerie" 147 175 148 #: inc/settings/glg-lightbox-settings.php: 93176 #: inc/settings/glg-lightbox-settings.php:102 149 177 msgid "Show Thumbnails Caption" 150 178 msgstr "Voir la légende de vignettes" 151 179 152 #: inc/settings/glg-lightbox-settings.php: 98180 #: inc/settings/glg-lightbox-settings.php:106 153 181 msgid "Use this option to show / hide gallery thumbnails caption" 154 182 msgstr "Cette option permet d'afficher / masquer la légende miniatures Galerie" 155 183 156 #: inc/settings/glg-lightbox-settings.php:1 03184 #: inc/settings/glg-lightbox-settings.php:111 157 185 msgid "Fancy Lightbox Caption" 158 msgstr " "159 160 #: inc/settings/glg-lightbox-settings.php:1 08186 msgstr "Légende élégante de la boîte lumineuse" 187 188 #: inc/settings/glg-lightbox-settings.php:115 161 189 msgid "" 162 190 "If Enabled the plugin will automatically convert uppercase the first " … … 168 196 "Par exemple : ferrari-f12-berlinetta passera à Ferrari Berlinetta F12" 169 197 170 #: inc/settings/glg-lightbox-settings.php:1 13198 #: inc/settings/glg-lightbox-settings.php:120 171 199 msgid "Overlay Color" 172 200 msgstr "Couleur de superposition" 173 201 174 #: inc/settings/glg-lightbox-settings.php:115 202 #: inc/settings/glg-lightbox-settings.php:122 203 #, fuzzy 175 204 msgid "Set your gallery overlay color. Default: #000000 " 176 205 msgstr "" 177 206 "Définissez votre couleur de superposition de Galerie. Par défaut: #000000 " 178 207 179 #: inc/settings/glg-lightbox-settings.php:130 208 #: inc/settings/glg-lightbox-settings.php:135 209 #, fuzzy 180 210 msgid "Save Changes" 181 211 msgstr "Sauvegarder les modifications" 212 213 #: inc/settings/glg-lightbox-settings.php:135 214 msgid "Settings Saved" 215 msgstr "Paramètres sauvegardés" 182 216 183 217 #: inc/settings/pages/glg-docs.php:12 … … 186 220 187 221 #: inc/settings/pages/glg-docs.php:14 222 #, fuzzy 188 223 msgid "" 189 224 "There are no complicated instructions for using Gallery Lightbox Lite " … … 196 231 "comprendre juste en quelques minutes." 197 232 233 #: inc/settings/pages/glg-docs.php:16 234 msgid "For WordPress with Gallery Block" 235 msgstr "Pour WordPress avec bloc de galerie" 236 237 #: inc/settings/pages/glg-docs.php:18 238 msgid "For WordPress with Classic Editor" 239 msgstr "Pour WordPress avec Classic Editor" 240 198 241 #: inc/settings/pages/glg-free-plugins.php:12 199 242 msgid "Free Install Plugins" … … 219 262 #. Plugin Name of the plugin/theme 220 263 msgid "Gallery Lightbox Lite" 221 msgstr " "264 msgstr "Gallery Lightbox Lite" 222 265 223 266 #. Plugin URI of the plugin/theme 224 267 #. Author URI of the plugin/theme 225 msgid "http ://www.ghozylab.com/plugins/"226 msgstr " "268 msgid "https://ghozylab.com/plugins/" 269 msgstr "https://ghozylab.com/plugins/" 227 270 228 271 #. Description of the plugin/theme … … 231 274 "with very easy" 232 275 msgstr "" 276 "Affiche votre galerie d’images dans le curseur de boîte à lumière, génial et " 277 "réactif, avec une facilité très simple" 233 278 234 279 #. Author of the plugin/theme 235 280 msgid "GhozyLab, Inc." 236 msgstr "" 237 238 #~ msgid "Use this option to mass Enable or Disable the Lightbox" 239 #~ msgstr "Cette option permet de masse, activer ou désactiver Lightbox" 281 msgstr "GhozyLab, Inc." -
gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-id_ID.po
r2229284 r3446163 1 # Copyright (C) 2015 Gallery Lightbox Lite 2 # This file is distributed under the same license as the Gallery Lightbox Lite package. 3 msgid "" 4 msgstr "" 5 "Project-Id-Version: Gallery Lightbox Lite 1.0.0.3\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gallery-lightbox-" 7 "slider\n" 8 "POT-Creation-Date: 2016-03-13 06:50+0700\n" 9 "PO-Revision-Date: 2020-01-17 21:34+0700\n" 1 msgid "" 2 msgstr "" 3 "Project-Id-Version: Gallery Lightbox Lite\n" 4 "POT-Creation-Date: 2026-01-20 12:20+0700\n" 5 "PO-Revision-Date: 2026-01-20 12:20+0700\n" 10 6 "Last-Translator: \n" 11 7 "Language-Team: \n" … … 14 10 "Content-Type: text/plain; charset=UTF-8\n" 15 11 "Content-Transfer-Encoding: 8bit\n" 16 "X-Generator: Poedit 2.2.4\n"17 12 "Plural-Forms: nplurals=1; plural=0;\n" 18 19 #: gallery-lightbox-lite.php:90 13 "X-Generator: Poedit 3.8\n" 14 "X-Poedit-Basepath: ..\n" 15 "X-Poedit-Flags-xgettext: --add-comments=translators:\n" 16 "X-Poedit-WPHeader: gallery-lightbox-lite.php\n" 17 "X-Poedit-SourceCharset: UTF-8\n" 18 "X-Poedit-KeywordsList: " 19 "__;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 "X-Poedit-SearchPath-0: .\n" 21 "X-Poedit-SearchPathExcluded-0: *.min.js\n" 22 23 #: gallery-lightbox-lite.php:89 20 24 msgid "Settings" 21 25 msgstr "Pengaturan" 22 26 23 #: inc/functions/ajax/glg-admin-ajax.php:1 0427 #: inc/functions/ajax/glg-admin-ajax.php:114 24 28 #, php-format 25 29 msgid "By %s" 26 30 msgstr "Oleh %s" 27 31 28 #: inc/functions/ajax/glg-admin-ajax.php:116 32 #. translators: 1: Plugin name and version. 33 #: inc/functions/ajax/glg-admin-ajax.php:126 29 34 #, php-format 30 35 msgid "Install %s now" 31 36 msgstr "Menginstal %s sekarang" 32 37 33 #: inc/functions/ajax/glg-admin-ajax.php:116 38 #: inc/functions/ajax/glg-admin-ajax.php:126 39 #, fuzzy 34 40 msgid "Install Now" 35 41 msgstr "Pasang sekarang" 36 42 37 #: inc/functions/ajax/glg-admin-ajax.php:123 43 #. translators: 1: Plugin name and version 44 #: inc/functions/ajax/glg-admin-ajax.php:133 38 45 #, php-format 39 46 msgid "Update %s now" 40 47 msgstr "Perbarui %s sekarang" 41 48 42 #: inc/functions/ajax/glg-admin-ajax.php:123 49 #: inc/functions/ajax/glg-admin-ajax.php:133 50 #, fuzzy 43 51 msgid "Update Now" 44 52 msgstr "Memperbarui sekarang" 45 53 46 #: inc/functions/ajax/glg-admin-ajax.php:1 2954 #: inc/functions/ajax/glg-admin-ajax.php:139 47 55 msgid "This plugin is already installed and is up to date" 48 56 msgstr "Plugin ini sudah terinstal dan up to date" 49 57 50 #: inc/functions/ajax/glg-admin-ajax.php:129 58 #: inc/functions/ajax/glg-admin-ajax.php:139 59 #, fuzzy 51 60 msgctxt "plugin" 52 61 msgid "Installed" 53 62 msgstr "Sudah Terinstall" 54 63 55 #: inc/functions/ajax/glg-admin-ajax.php:138 64 #. translators: 1: Plugin name and version. 65 #: inc/functions/ajax/glg-admin-ajax.php:148 56 66 #, php-format 57 67 msgid "More information about %s" 58 68 msgstr "Informasi lebih lanjut tentang %s" 59 69 60 #: inc/functions/ajax/glg-admin-ajax.php:138 70 #: inc/functions/ajax/glg-admin-ajax.php:148 71 #, fuzzy 61 72 msgid "More Details" 62 73 msgstr "Lebih detail" 63 74 64 #: inc/functions/ajax/glg-admin-ajax.php:2 0675 #: inc/functions/ajax/glg-admin-ajax.php:220 65 76 msgid "Last Updated:" 66 77 msgstr "Terakhir Diperbarui:" 67 78 68 #: inc/functions/ajax/glg-admin-ajax.php:2 0779 #: inc/functions/ajax/glg-admin-ajax.php:221 69 80 #, php-format 70 81 msgid "%s ago" 71 82 msgstr "%s yang lalu" 72 83 73 #: inc/functions/ajax/glg-admin-ajax.php:2 1174 #, php-format84 #: inc/functions/ajax/glg-admin-ajax.php:225 85 #, fuzzy, php-format 75 86 msgid "%s download" 76 87 msgid_plural "%s downloads" 77 msgstr[0] "%s Unduhan"78 79 #: inc/functions/ajax/glg-admin-ajax.php:2 1688 msgstr[0] "%s download" 89 90 #: inc/functions/ajax/glg-admin-ajax.php:230 80 91 msgid "Untested with your version of WordPress" 81 92 msgstr "Belum diuji dengan versi WordPress Anda" 82 93 83 #: inc/functions/ajax/glg-admin-ajax.php:2 1894 #: inc/functions/ajax/glg-admin-ajax.php:232 84 95 msgid "<strong>Incompatible</strong> with your version of WordPress" 85 96 msgstr "<strong>Tidak Kompatibel</strong> dengan versi WordPress" 86 97 87 #: inc/functions/ajax/glg-admin-ajax.php:2 2098 #: inc/functions/ajax/glg-admin-ajax.php:234 88 99 msgid "<strong>Compatible</strong> with your version of WordPress" 89 100 msgstr "<strong>Kompatibel</strong> dengan versi WordPress" 90 101 91 #: inc/functions/ajax/glg-admin-ajax.php:265 102 #: inc/functions/ajax/glg-admin-ajax.php:308 103 #, fuzzy 92 104 msgid "" 93 105 "There was an error retrieving the list from the server. Please try again " 94 106 "later." 95 msgstr "Ada kesalahan mengambil daftar dari server. Silakan coba lagi nanti." 107 msgstr "" 108 "Terjadi kesalahan saat mengambil data dari server. Silahkan coba lagi nanti." 96 109 97 110 #: inc/gfg-metabox.php:45 98 msgid "Activate Lightbox?" 99 msgstr "Aktifkan Lightbox?" 100 101 #: inc/settings/glg-lightbox-settings.php:12 111 msgid "Use Lightbox?" 112 msgstr "Gunakan Lightbox?" 113 114 #: inc/gfg-metabox.php:50 115 msgid "" 116 "If set to YES, all galleries on this page/post will be opened in the lightbox" 117 msgstr "" 118 "Jika diatur ke YA, semua galeri di halaman/posting ini akan dibuka di " 119 "lightbox" 120 121 #: inc/settings/glg-lightbox-settings.php:14 102 122 msgid "General" 103 123 msgstr "Umum" 104 124 105 #: inc/settings/glg-lightbox-settings.php:21 125 #. translators: %s: review link 126 #: inc/settings/glg-lightbox-settings.php:24 127 #, php-format 128 msgid "" 129 "If you use Gallery Lightbox Lite and found it useful then please consider " 130 "rating it and leaving your positive feedback %s." 131 msgstr "" 132 "Jika Anda menggunakan Gallery Lightbox Lite dan menganggapnya berguna, " 133 "silakan pertimbangkan untuk menilainya dan meninggalkan umpan balik positif " 134 "Anda %s." 135 136 #: inc/settings/glg-lightbox-settings.php:26 137 msgid "here" 138 msgstr "disini" 139 140 #: inc/settings/glg-lightbox-settings.php:33 106 141 msgid "Enable Lightbox in All Post/Page" 107 142 msgstr "Aktifkan Lightbox di Semua Post / Page" 108 143 109 #: inc/settings/glg-lightbox-settings.php: 39144 #: inc/settings/glg-lightbox-settings.php:50 110 145 msgid "Use this option to Enable or Disable the Lightbox in all Post or Page" 111 146 msgstr "" … … 113 148 "Post atau Page" 114 149 115 #: inc/settings/glg-lightbox-settings.php: 44150 #: inc/settings/glg-lightbox-settings.php:55 116 151 msgid "Slideshow Auto Play" 117 152 msgstr "Slideshow Auto Play" 118 153 119 #: inc/settings/glg-lightbox-settings.php: 49154 #: inc/settings/glg-lightbox-settings.php:58 120 155 msgid "Should the lightbox gallery autoplay on start or not" 121 156 msgstr "Haruskah autoplay galeri lightbox pada awal atau tidak" 122 157 123 #: inc/settings/glg-lightbox-settings.php: 54158 #: inc/settings/glg-lightbox-settings.php:63 124 159 msgid "Slideshow Interval" 125 160 msgstr "Interval slideshow" 126 161 127 #: inc/settings/glg-lightbox-settings.php:75 128 msgid " selected=\"selected\"" 129 msgstr "" 130 131 #: inc/settings/glg-lightbox-settings.php:78 162 #: inc/settings/glg-lightbox-settings.php:88 132 163 msgid "The time in seconds when autoplaying a gallery. Default 3 seconds" 133 164 msgstr "Waktu dalam detik ketika autoplaying galeri. Standar 3 detik" 134 165 135 #: inc/settings/glg-lightbox-settings.php: 83166 #: inc/settings/glg-lightbox-settings.php:93 136 167 msgid "Show Thumbnails on Bottom" 137 168 msgstr "Tampilkan Thumbnail di Bawah" 138 169 139 #: inc/settings/glg-lightbox-settings.php: 88170 #: inc/settings/glg-lightbox-settings.php:97 140 171 msgid "Use this option to show / hide gallery thumbnails" 141 172 msgstr "Gunakan opsi ini untuk menunjukkan galeri / menyembunyikan thumbnail" 142 173 143 #: inc/settings/glg-lightbox-settings.php: 93174 #: inc/settings/glg-lightbox-settings.php:102 144 175 msgid "Show Thumbnails Caption" 145 176 msgstr "Tampilkan Thumbnail di Bawah" 146 177 147 #: inc/settings/glg-lightbox-settings.php: 98178 #: inc/settings/glg-lightbox-settings.php:106 148 179 msgid "Use this option to show / hide gallery thumbnails caption" 149 180 msgstr "" … … 151 182 "thumbnail Galeri" 152 183 153 #: inc/settings/glg-lightbox-settings.php:1 03184 #: inc/settings/glg-lightbox-settings.php:111 154 185 msgid "Fancy Lightbox Caption" 155 msgstr "" 156 157 #: inc/settings/glg-lightbox-settings.php:108 186 msgstr "Keterangan Lightbox Mewah" 187 188 #: inc/settings/glg-lightbox-settings.php:115 189 #, fuzzy 158 190 msgid "" 159 191 "If Enabled the plugin will automatically convert uppercase the first " … … 161 193 "ferrari-f12-berlinetta will change to Ferrari F12 Berlinetta" 162 194 msgstr "" 163 "Jika ON plugin akan secara otomatis mengkonversi huruf besar karakter " 164 "pertama dari setiap kata dan mengganti - dengan spasi dalam judul. Sebagai " 165 "contoh: ferrari-f12-Sport-interior akan berubah ke Ferrari F12 Sport Interior" 166 167 #: inc/settings/glg-lightbox-settings.php:113 195 "Jika diaktifkan plugin akan secara otomatis mengkonversi huruf besar " 196 "karakter pertama dari setiap kata dan mengganti - dengan spasi dalam judul. " 197 "Sebagai contoh: ferrari-f12-berlinetta akan berubah menjadi Ferrari F12 " 198 "Berlinetta" 199 200 #: inc/settings/glg-lightbox-settings.php:120 168 201 msgid "Overlay Color" 169 202 msgstr "Warna Overlay" 170 203 171 #: inc/settings/glg-lightbox-settings.php:115 204 #: inc/settings/glg-lightbox-settings.php:122 205 #, fuzzy 172 206 msgid "Set your gallery overlay color. Default: #000000 " 173 207 msgstr "Mengatur warna overlay galeri. Standar: # 000000 " 174 208 175 #: inc/settings/glg-lightbox-settings.php:13 0209 #: inc/settings/glg-lightbox-settings.php:135 176 210 msgid "Save Changes" 177 211 msgstr "Simpan Perubahan" 212 213 #: inc/settings/glg-lightbox-settings.php:135 214 msgid "Settings Saved" 215 msgstr "Pengaturan Tersimpan" 178 216 179 217 #: inc/settings/pages/glg-docs.php:12 … … 182 220 183 221 #: inc/settings/pages/glg-docs.php:14 222 #, fuzzy 184 223 msgid "" 185 224 "There are no complicated instructions for using Gallery Lightbox Lite " … … 192 231 "menit." 193 232 233 #: inc/settings/pages/glg-docs.php:16 234 msgid "For WordPress with Gallery Block" 235 msgstr "Untuk WordPress dengan Blok Galeri" 236 237 #: inc/settings/pages/glg-docs.php:18 238 msgid "For WordPress with Classic Editor" 239 msgstr "Untuk WordPress dengan Editor Klasik" 240 194 241 #: inc/settings/pages/glg-free-plugins.php:12 195 242 msgid "Free Install Plugins" … … 202 249 203 250 #: inc/settings/pages/glg-premium-plugins.php:11 251 #, fuzzy 204 252 msgid "Premium Plugins" 205 253 msgstr "Plugin Premium" … … 215 263 #. Plugin Name of the plugin/theme 216 264 msgid "Gallery Lightbox Lite" 217 msgstr " "265 msgstr "Galeri Lightbox Lite" 218 266 219 267 #. Plugin URI of the plugin/theme 220 268 #. Author URI of the plugin/theme 221 msgid "http ://www.ghozylab.com/plugins/"222 msgstr " "269 msgid "https://ghozylab.com/plugins/" 270 msgstr "https://ghozylab.com/plugins/" 223 271 224 272 #. Description of the plugin/theme … … 227 275 "with very easy" 228 276 msgstr "" 277 "Menampilkan galeri gambar Anda ke dalam penggeser lightbox yang mengagumkan " 278 "dan responsif dengan sangat mudah" 229 279 230 280 #. Author of the plugin/theme 231 281 msgid "GhozyLab, Inc." 232 msgstr "" 233 234 #~ msgid "Use this option to mass Enable or Disable the Lightbox" 235 #~ msgstr "" 236 #~ "Gunakan opsi ini untuk Aktifkan atau Nonaktifkan Lightbox secara bersamaan" 237 238 #~ msgid "" 239 #~ "Displays all gallery images into the lightbox slider in just a few seconds" 240 #~ msgstr "Menampilkan gambar gallery pada lightbox hanya dalam beberapa detik" 282 msgstr "GhozyLab, Inc." -
gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-it_IT.po
r1369979 r3446163 1 # Copyright (C) 2015 Gallery Lightbox Lite 2 # This file is distributed under the same license as the Gallery Lightbox Lite package. 3 msgid "" 4 msgstr "" 5 "Project-Id-Version: Gallery Lightbox Lite 1.0.0.3\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gallery-lightbox-" 7 "slider\n" 8 "POT-Creation-Date: 2016-03-13 06:52+0700\n" 9 "PO-Revision-Date: 2016-03-13 06:53+0700\n" 1 msgid "" 2 msgstr "" 3 "Project-Id-Version: Gallery Lightbox Lite\n" 4 "POT-Creation-Date: 2026-01-20 12:21+0700\n" 5 "PO-Revision-Date: 2026-01-20 12:22+0700\n" 10 6 "Last-Translator: \n" 11 7 "Language-Team: \n" 12 "Language: it \n"8 "Language: it_IT\n" 13 9 "MIME-Version: 1.0\n" 14 10 "Content-Type: text/plain; charset=UTF-8\n" 15 11 "Content-Transfer-Encoding: 8bit\n" 16 "X-Generator: Poedit 1.8.7\n"17 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 19 #: gallery-lightbox-lite.php:90 13 "X-Generator: Poedit 3.8\n" 14 "X-Poedit-Basepath: ..\n" 15 "X-Poedit-Flags-xgettext: --add-comments=translators:\n" 16 "X-Poedit-WPHeader: gallery-lightbox-lite.php\n" 17 "X-Poedit-SourceCharset: UTF-8\n" 18 "X-Poedit-KeywordsList: " 19 "__;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 "X-Poedit-SearchPath-0: .\n" 21 "X-Poedit-SearchPathExcluded-0: *.min.js\n" 22 23 #: gallery-lightbox-lite.php:89 20 24 msgid "Settings" 21 25 msgstr "Impostazioni" 22 26 23 #: inc/functions/ajax/glg-admin-ajax.php:1 0424 #, php-format27 #: inc/functions/ajax/glg-admin-ajax.php:114 28 #, fuzzy, php-format 25 29 msgid "By %s" 26 msgstr "" 27 28 #: inc/functions/ajax/glg-admin-ajax.php:116 30 msgstr "Da %s" 31 32 #. translators: 1: Plugin name and version. 33 #: inc/functions/ajax/glg-admin-ajax.php:126 29 34 #, php-format 30 35 msgid "Install %s now" 31 36 msgstr "Installare %s ora" 32 37 33 #: inc/functions/ajax/glg-admin-ajax.php:116 38 #: inc/functions/ajax/glg-admin-ajax.php:126 39 #, fuzzy 34 40 msgid "Install Now" 35 msgstr "Installa ora" 36 37 #: inc/functions/ajax/glg-admin-ajax.php:123 41 msgstr "Installa Ora" 42 43 #. translators: 1: Plugin name and version 44 #: inc/functions/ajax/glg-admin-ajax.php:133 38 45 #, php-format 39 46 msgid "Update %s now" 40 47 msgstr "Aggiornare %s ora" 41 48 42 #: inc/functions/ajax/glg-admin-ajax.php:1 2349 #: inc/functions/ajax/glg-admin-ajax.php:133 43 50 msgid "Update Now" 44 51 msgstr "Aggiorna ora" 45 52 46 #: inc/functions/ajax/glg-admin-ajax.php:1 2953 #: inc/functions/ajax/glg-admin-ajax.php:139 47 54 msgid "This plugin is already installed and is up to date" 48 55 msgstr "Questo plugin è già installato ed è fino ad oggi" 49 56 50 #: inc/functions/ajax/glg-admin-ajax.php:1 2957 #: inc/functions/ajax/glg-admin-ajax.php:139 51 58 msgctxt "plugin" 52 59 msgid "Installed" 53 60 msgstr "Installato" 54 61 55 #: inc/functions/ajax/glg-admin-ajax.php:138 62 #. translators: 1: Plugin name and version. 63 #: inc/functions/ajax/glg-admin-ajax.php:148 56 64 #, php-format 57 65 msgid "More information about %s" 58 66 msgstr "Maggiori informazioni su %s" 59 67 60 #: inc/functions/ajax/glg-admin-ajax.php:138 68 #: inc/functions/ajax/glg-admin-ajax.php:148 69 #, fuzzy 61 70 msgid "More Details" 62 msgstr " Piùdettagli"63 64 #: inc/functions/ajax/glg-admin-ajax.php:2 0671 msgstr "Maggiori dettagli" 72 73 #: inc/functions/ajax/glg-admin-ajax.php:220 65 74 msgid "Last Updated:" 66 75 msgstr "Ultimo aggiornamento:" 67 76 68 #: inc/functions/ajax/glg-admin-ajax.php:2 0777 #: inc/functions/ajax/glg-admin-ajax.php:221 69 78 #, php-format 70 79 msgid "%s ago" 71 80 msgstr "%s fà" 72 81 73 #: inc/functions/ajax/glg-admin-ajax.php:2 1182 #: inc/functions/ajax/glg-admin-ajax.php:225 74 83 #, php-format 75 84 msgid "%s download" 76 85 msgid_plural "%s downloads" 77 msgstr[0] " Da %s"78 msgstr[1] "%s download "79 80 #: inc/functions/ajax/glg-admin-ajax.php:2 1686 msgstr[0] "%s download" 87 msgstr[1] "%s downloads" 88 89 #: inc/functions/ajax/glg-admin-ajax.php:230 81 90 msgid "Untested with your version of WordPress" 82 91 msgstr "Non testato con la tua versione di WordPress" 83 92 84 #: inc/functions/ajax/glg-admin-ajax.php:2 1893 #: inc/functions/ajax/glg-admin-ajax.php:232 85 94 msgid "<strong>Incompatible</strong> with your version of WordPress" 86 95 msgstr "<strong>Incompatibile</strong> con la versione di WordPress" 87 96 88 #: inc/functions/ajax/glg-admin-ajax.php:2 2097 #: inc/functions/ajax/glg-admin-ajax.php:234 89 98 msgid "<strong>Compatible</strong> with your version of WordPress" 90 99 msgstr "<strong>Compatibile</strong> con la versione di Wordpress" 91 100 92 #: inc/functions/ajax/glg-admin-ajax.php:265 101 #: inc/functions/ajax/glg-admin-ajax.php:308 102 #, fuzzy 93 103 msgid "" 94 104 "There was an error retrieving the list from the server. Please try again " 95 105 "later." 96 106 msgstr "" 97 "C era un errore durante il recupero l'elenco dal server. Si prega di "107 "C'era un errore durante il recupero l'elenco dal server. Si prega di " 98 108 "riprovare più tardi." 99 109 100 110 #: inc/gfg-metabox.php:45 101 msgid "Activate Lightbox?" 102 msgstr "Attivare il Lightbox?" 103 104 #: inc/settings/glg-lightbox-settings.php:12 111 msgid "Use Lightbox?" 112 msgstr "Usare Lightbox?" 113 114 #: inc/gfg-metabox.php:50 115 msgid "" 116 "If set to YES, all galleries on this page/post will be opened in the lightbox" 117 msgstr "" 118 "Se impostato su SÌ, tutte le gallerie di questa pagina/post verranno aperte " 119 "nella lightbox" 120 121 #: inc/settings/glg-lightbox-settings.php:14 105 122 msgid "General" 106 123 msgstr "Generale" 107 124 108 #: inc/settings/glg-lightbox-settings.php:21 125 #. translators: %s: review link 126 #: inc/settings/glg-lightbox-settings.php:24 127 #, php-format 128 msgid "" 129 "If you use Gallery Lightbox Lite and found it useful then please consider " 130 "rating it and leaving your positive feedback %s." 131 msgstr "" 132 "Se usi Gallery Lightbox Lite e l'hai trovato utile, considera di valutarlo e " 133 "lasciare il tuo feedback positivo %s." 134 135 #: inc/settings/glg-lightbox-settings.php:26 136 msgid "here" 137 msgstr "qui" 138 139 #: inc/settings/glg-lightbox-settings.php:33 109 140 msgid "Enable Lightbox in All Post/Page" 110 141 msgstr "Abilitare la Lightbox in tutti i Post/Pagina" 111 142 112 #: inc/settings/glg-lightbox-settings.php: 39143 #: inc/settings/glg-lightbox-settings.php:50 113 144 msgid "Use this option to Enable or Disable the Lightbox in all Post or Page" 114 145 msgstr "" … … 116 147 "i Post o pagina" 117 148 118 #: inc/settings/glg-lightbox-settings.php: 44149 #: inc/settings/glg-lightbox-settings.php:55 119 150 msgid "Slideshow Auto Play" 120 151 msgstr "Riproduzione automatica di slideshow" 121 152 122 #: inc/settings/glg-lightbox-settings.php: 49153 #: inc/settings/glg-lightbox-settings.php:58 123 154 msgid "Should the lightbox gallery autoplay on start or not" 124 155 msgstr "Dovrebbe la lightbox Galleria autoplay su start o non" 125 156 126 #: inc/settings/glg-lightbox-settings.php: 54157 #: inc/settings/glg-lightbox-settings.php:63 127 158 msgid "Slideshow Interval" 128 159 msgstr "Intervallo di presentazione" 129 160 130 #: inc/settings/glg-lightbox-settings.php:75 131 msgid " selected=\"selected\"" 132 msgstr "" 133 134 #: inc/settings/glg-lightbox-settings.php:78 161 #: inc/settings/glg-lightbox-settings.php:88 135 162 msgid "The time in seconds when autoplaying a gallery. Default 3 seconds" 136 163 msgstr "" … … 138 165 "3 secondi" 139 166 140 #: inc/settings/glg-lightbox-settings.php: 83167 #: inc/settings/glg-lightbox-settings.php:93 141 168 msgid "Show Thumbnails on Bottom" 142 169 msgstr "Visualizza le miniature sulla parte inferiore" 143 170 144 #: inc/settings/glg-lightbox-settings.php: 88171 #: inc/settings/glg-lightbox-settings.php:97 145 172 msgid "Use this option to show / hide gallery thumbnails" 146 173 msgstr "" 147 174 "Utilizzare questa opzione per mostrare / nascondere le miniature Galleria" 148 175 149 #: inc/settings/glg-lightbox-settings.php: 93176 #: inc/settings/glg-lightbox-settings.php:102 150 177 msgid "Show Thumbnails Caption" 151 178 msgstr "Visualizza miniature didascalia" 152 179 153 #: inc/settings/glg-lightbox-settings.php: 98180 #: inc/settings/glg-lightbox-settings.php:106 154 181 msgid "Use this option to show / hide gallery thumbnails caption" 155 182 msgstr "" … … 157 184 "galleria miniature" 158 185 159 #: inc/settings/glg-lightbox-settings.php:1 03186 #: inc/settings/glg-lightbox-settings.php:111 160 187 msgid "Fancy Lightbox Caption" 161 msgstr " "162 163 #: inc/settings/glg-lightbox-settings.php:1 08188 msgstr "Didascalia elegante della Lightbox" 189 190 #: inc/settings/glg-lightbox-settings.php:115 164 191 msgid "" 165 192 "If Enabled the plugin will automatically convert uppercase the first " … … 171 198 "ferrari-f12-berlinetta-interior cambierà in Ferrari F12 Berlinetta interni" 172 199 173 #: inc/settings/glg-lightbox-settings.php:1 13200 #: inc/settings/glg-lightbox-settings.php:120 174 201 msgid "Overlay Color" 175 202 msgstr "Colore della sovrapposizione" 176 203 177 #: inc/settings/glg-lightbox-settings.php:1 15204 #: inc/settings/glg-lightbox-settings.php:122 178 205 msgid "Set your gallery overlay color. Default: #000000 " 179 206 msgstr "" 180 207 "Impostare il colore di sovrapposizione di Galleria. Valore predefinito: " 181 "#000000 "182 183 #: inc/settings/glg-lightbox-settings.php:13 0208 "#000000 " 209 210 #: inc/settings/glg-lightbox-settings.php:135 184 211 msgid "Save Changes" 185 212 msgstr "Salva le modifiche" 213 214 #: inc/settings/glg-lightbox-settings.php:135 215 msgid "Settings Saved" 216 msgstr "Impostazioni salvate" 186 217 187 218 #: inc/settings/pages/glg-docs.php:12 … … 198 229 "perché questo plugin è progettato per rendere tutto facile. Si prega di " 199 230 "guardare il seguente video e crediamo che si sarà facilmente per " 200 "comprenderlo in minuti:" 231 "comprenderlo in minuti." 232 233 #: inc/settings/pages/glg-docs.php:16 234 msgid "For WordPress with Gallery Block" 235 msgstr "Per WordPress con blocco galleria" 236 237 #: inc/settings/pages/glg-docs.php:18 238 msgid "For WordPress with Classic Editor" 239 msgstr "Per WordPress con Classic Editor" 201 240 202 241 #: inc/settings/pages/glg-free-plugins.php:12 242 #, fuzzy 203 243 msgid "Free Install Plugins" 204 msgstr "Installa reI Plugin"244 msgstr "Installa I Plugin" 205 245 206 246 #: inc/settings/pages/glg-free-plugins.php:16 … … 223 263 #. Plugin Name of the plugin/theme 224 264 msgid "Gallery Lightbox Lite" 225 msgstr " "265 msgstr "Galleria Lightbox Lite" 226 266 227 267 #. Plugin URI of the plugin/theme 228 268 #. Author URI of the plugin/theme 229 msgid "http ://www.ghozylab.com/plugins/"230 msgstr " "269 msgid "https://ghozylab.com/plugins/" 270 msgstr "https://ghozylab.com/plugins/" 231 271 232 272 #. Description of the plugin/theme … … 235 275 "with very easy" 236 276 msgstr "" 277 "Visualizza la tua galleria di immagini nel fantastico e reattivo slider " 278 "lightbox con una facilità molto semplice" 237 279 238 280 #. Author of the plugin/theme 239 281 msgid "GhozyLab, Inc." 240 msgstr "" 241 242 #~ msgid "Use this option to mass Enable or Disable the Lightbox" 243 #~ msgstr "" 244 #~ "Utilizzare questa opzione per massa abilitare o disabilitare il Lightbox" 282 msgstr "GhozyLab, Inc." -
gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-ms_MY.po
r1376309 r3446163 1 1 msgid "" 2 2 msgstr "" 3 "Plural-Forms: nplurals=1; plural=0;\n"4 3 "Project-Id-Version: Gallery Lightbox Lite\n" 5 "POT-Creation-Date: 2016-03-22 19:34+0700\n" 6 "PO-Revision-Date: 2016-03-22 19:38+0700\n" 4 "POT-Creation-Date: 2026-01-20 12:32+0700\n" 5 "PO-Revision-Date: 2026-01-20 12:33+0700\n" 6 "Last-Translator: \n" 7 7 "Language-Team: \n" 8 "Language: ms_MY\n" 8 9 "MIME-Version: 1.0\n" 9 10 "Content-Type: text/plain; charset=UTF-8\n" 10 11 "Content-Transfer-Encoding: 8bit\n" 11 "X-Generator: Poedit 1.8.7\n" 12 "Plural-Forms: nplurals=1; plural=0;\n" 13 "X-Generator: Poedit 3.8\n" 12 14 "X-Poedit-Basepath: ..\n" 15 "X-Poedit-Flags-xgettext: --add-comments=translators:\n" 13 16 "X-Poedit-WPHeader: gallery-lightbox-lite.php\n" 14 17 "X-Poedit-SourceCharset: UTF-8\n" 15 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 16 "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 17 "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 18 "Last-Translator: \n" 19 "Language: ms\n" 18 "X-Poedit-KeywordsList: " 19 "__;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 20 "X-Poedit-SearchPath-0: .\n" 21 "X-Poedit-SearchPathExcluded-0: *. js\n"22 23 #: gallery-lightbox-lite.php: 9021 "X-Poedit-SearchPathExcluded-0: *.min.js\n" 22 23 #: gallery-lightbox-lite.php:89 24 24 msgid "Settings" 25 25 msgstr "Tetapan" 26 26 27 #: inc/functions/ajax/glg-admin-ajax.php:1 0427 #: inc/functions/ajax/glg-admin-ajax.php:114 28 28 #, php-format 29 29 msgid "By %s" 30 30 msgstr "Mengikut %s" 31 31 32 #: inc/functions/ajax/glg-admin-ajax.php:116 32 #. translators: 1: Plugin name and version. 33 #: inc/functions/ajax/glg-admin-ajax.php:126 33 34 #, php-format 34 35 msgid "Install %s now" 35 36 msgstr "Memasang %s sekarang" 36 37 37 #: inc/functions/ajax/glg-admin-ajax.php:1 1638 #: inc/functions/ajax/glg-admin-ajax.php:126 38 39 msgid "Install Now" 39 40 msgstr "Memasang sekarang" 40 41 41 #: inc/functions/ajax/glg-admin-ajax.php:123 42 #. translators: 1: Plugin name and version 43 #: inc/functions/ajax/glg-admin-ajax.php:133 42 44 #, php-format 43 45 msgid "Update %s now" 44 46 msgstr "Kemas kinikan %s sekarang" 45 47 46 #: inc/functions/ajax/glg-admin-ajax.php:1 2348 #: inc/functions/ajax/glg-admin-ajax.php:133 47 49 msgid "Update Now" 48 50 msgstr "Kemas Kini Sekarang" 49 51 50 #: inc/functions/ajax/glg-admin-ajax.php:1 2952 #: inc/functions/ajax/glg-admin-ajax.php:139 51 53 msgid "This plugin is already installed and is up to date" 52 54 msgstr "Plugin ini telah dipasang dan sehingga kini" 53 55 54 #: inc/functions/ajax/glg-admin-ajax.php:1 2956 #: inc/functions/ajax/glg-admin-ajax.php:139 55 57 msgctxt "plugin" 56 58 msgid "Installed" 57 59 msgstr "Dipasang" 58 60 59 #: inc/functions/ajax/glg-admin-ajax.php:138 61 #. translators: 1: Plugin name and version. 62 #: inc/functions/ajax/glg-admin-ajax.php:148 60 63 #, php-format 61 64 msgid "More information about %s" 62 65 msgstr "Maklumat lanjut mengenai %s" 63 66 64 #: inc/functions/ajax/glg-admin-ajax.php:1 3867 #: inc/functions/ajax/glg-admin-ajax.php:148 65 68 msgid "More Details" 66 69 msgstr "Maklumat lanjut" 67 70 68 #: inc/functions/ajax/glg-admin-ajax.php:2 0671 #: inc/functions/ajax/glg-admin-ajax.php:220 69 72 msgid "Last Updated:" 70 73 msgstr "Terakhir dikemaskini:" 71 74 72 #: inc/functions/ajax/glg-admin-ajax.php:2 0775 #: inc/functions/ajax/glg-admin-ajax.php:221 73 76 #, php-format 74 77 msgid "%s ago" 75 78 msgstr "%s yang lalu" 76 79 77 #: inc/functions/ajax/glg-admin-ajax.php:2 1178 #, php-format80 #: inc/functions/ajax/glg-admin-ajax.php:225 81 #, fuzzy, php-format 79 82 msgid "%s download" 80 83 msgid_plural "%s downloads" 81 msgstr[0] " "82 83 #: inc/functions/ajax/glg-admin-ajax.php:2 1684 msgstr[0] "%s muat turun" 85 86 #: inc/functions/ajax/glg-admin-ajax.php:230 84 87 msgid "Untested with your version of WordPress" 85 88 msgstr "Belum dicuba dengan versi WordPress" 86 89 87 #: inc/functions/ajax/glg-admin-ajax.php:2 1890 #: inc/functions/ajax/glg-admin-ajax.php:232 88 91 msgid "<strong>Incompatible</strong> with your version of WordPress" 89 92 msgstr "<strong>Tidak serasi</strong> dengan versi WordPress" 90 93 91 #: inc/functions/ajax/glg-admin-ajax.php:2 2094 #: inc/functions/ajax/glg-admin-ajax.php:234 92 95 msgid "<strong>Compatible</strong> with your version of WordPress" 93 96 msgstr "<strong>Serasi</strong> dengan versi WordPress" 94 97 95 #: inc/functions/ajax/glg-admin-ajax.php: 26598 #: inc/functions/ajax/glg-admin-ajax.php:308 96 99 msgid "" 97 100 "There was an error retrieving the list from the server. Please try again " … … 101 104 102 105 #: inc/gfg-metabox.php:45 103 msgid "Activate Lightbox?" 104 msgstr "Aktifkan Lightbox?" 105 106 #: inc/settings/glg-lightbox-settings.php:12 106 msgid "Use Lightbox?" 107 msgstr "Gunakan Peti Cahaya?" 108 109 #: inc/gfg-metabox.php:50 110 msgid "" 111 "If set to YES, all galleries on this page/post will be opened in the lightbox" 112 msgstr "" 113 "Jika ditetapkan kepada YA, semua galeri di halaman/siaran ini akan dibuka " 114 "dalam peti cahaya" 115 116 #: inc/settings/glg-lightbox-settings.php:14 107 117 msgid "General" 108 118 msgstr "Umum" 109 119 110 #: inc/settings/glg-lightbox-settings.php:21 120 #. translators: %s: review link 121 #: inc/settings/glg-lightbox-settings.php:24 122 #, php-format 123 msgid "" 124 "If you use Gallery Lightbox Lite and found it useful then please consider " 125 "rating it and leaving your positive feedback %s." 126 msgstr "" 127 "Jika anda menggunakan Galeri Lightbox Lite dan mendapati ia berguna maka " 128 "sila pertimbangkan untuk menilainya dan meninggalkan maklum balas positif " 129 "anda %s." 130 131 #: inc/settings/glg-lightbox-settings.php:26 132 msgid "here" 133 msgstr "di sini" 134 135 #: inc/settings/glg-lightbox-settings.php:33 111 136 msgid "Enable Lightbox in All Post/Page" 112 137 msgstr "Membolehkan Lightbox di semua selepas/halaman" 113 138 114 #: inc/settings/glg-lightbox-settings.php: 39139 #: inc/settings/glg-lightbox-settings.php:50 115 140 msgid "Use this option to Enable or Disable the Lightbox in all Post or Page" 116 141 msgstr "" … … 118 143 "atau Laman" 119 144 120 #: inc/settings/glg-lightbox-settings.php: 44145 #: inc/settings/glg-lightbox-settings.php:55 121 146 msgid "Slideshow Auto Play" 122 147 msgstr "Tayangan slaid Auto Main" 123 148 124 #: inc/settings/glg-lightbox-settings.php: 49149 #: inc/settings/glg-lightbox-settings.php:58 125 150 msgid "Should the lightbox gallery autoplay on start or not" 126 151 msgstr "Harus AutoMain Galeri lightbox pada mula atau tidak" 127 152 128 #: inc/settings/glg-lightbox-settings.php: 54153 #: inc/settings/glg-lightbox-settings.php:63 129 154 msgid "Slideshow Interval" 130 155 msgstr "Tempoh tayangan slaid" 131 156 132 #: inc/settings/glg-lightbox-settings.php:75 133 msgid " selected=\"selected\"" 134 msgstr " selected=\"selected\"" 135 136 #: inc/settings/glg-lightbox-settings.php:78 157 #: inc/settings/glg-lightbox-settings.php:88 137 158 msgid "The time in seconds when autoplaying a gallery. Default 3 seconds" 138 159 msgstr "Masa saat apabila autoplaying sebuah galeri. Lalai 3 saat" 139 160 140 #: inc/settings/glg-lightbox-settings.php: 83161 #: inc/settings/glg-lightbox-settings.php:93 141 162 msgid "Show Thumbnails on Bottom" 142 163 msgstr "Tayangkan lakaran kenit di bawah" 143 164 144 #: inc/settings/glg-lightbox-settings.php: 88165 #: inc/settings/glg-lightbox-settings.php:97 145 166 msgid "Use this option to show / hide gallery thumbnails" 146 167 msgstr "Gunakan pilihan ini untuk Papar / Sembunyi Galeri thumbnails" 147 168 148 #: inc/settings/glg-lightbox-settings.php: 93169 #: inc/settings/glg-lightbox-settings.php:102 149 170 msgid "Show Thumbnails Caption" 150 171 msgstr "Tayang kapsyen lakaran kenit" 151 172 152 #: inc/settings/glg-lightbox-settings.php: 98173 #: inc/settings/glg-lightbox-settings.php:106 153 174 msgid "Use this option to show / hide gallery thumbnails caption" 154 175 msgstr "" 155 176 "Gunakan pilihan ini untuk Papar / Sembunyi kapsyen lakaran kenit Galeri" 156 177 157 #: inc/settings/glg-lightbox-settings.php:1 03178 #: inc/settings/glg-lightbox-settings.php:111 158 179 msgid "Fancy Lightbox Caption" 159 180 msgstr "Fancy Lightbox kapsyen" 160 181 161 #: inc/settings/glg-lightbox-settings.php:1 08182 #: inc/settings/glg-lightbox-settings.php:115 162 183 msgid "" 163 184 "If Enabled the plugin will automatically convert uppercase the first " … … 169 190 "contoh: ferrari-f12-berlinetta akan bertukar kepada Ferrari F12 Berlinetta" 170 191 171 #: inc/settings/glg-lightbox-settings.php:1 13192 #: inc/settings/glg-lightbox-settings.php:120 172 193 msgid "Overlay Color" 173 194 msgstr "Warna bertindih" 174 195 175 #: inc/settings/glg-lightbox-settings.php:1 15196 #: inc/settings/glg-lightbox-settings.php:122 176 197 msgid "Set your gallery overlay color. Default: #000000 " 177 msgstr "Menetapkan warna bertindih Galeri anda. Lalai: #000000 "178 179 #: inc/settings/glg-lightbox-settings.php:13 0198 msgstr "Menetapkan warna bertindih Galeri anda. Lalai: #000000 " 199 200 #: inc/settings/glg-lightbox-settings.php:135 180 201 msgid "Save Changes" 181 202 msgstr "Save Perubahan" 182 203 204 #: inc/settings/glg-lightbox-settings.php:135 205 msgid "Settings Saved" 206 msgstr "Tetapan Disimpan" 207 183 208 #: inc/settings/pages/glg-docs.php:12 184 209 msgid "Documentation" 185 msgstr " dokumentasi"210 msgstr "Dokumentasi" 186 211 187 212 #: inc/settings/pages/glg-docs.php:14 … … 194 219 "plugin ini direka untuk memudahkan semua. Sila menonton berikut video dan " 195 220 "kami percaya bahawa anda akan dengan mudah memahami ia hanya dalam minit." 221 222 #: inc/settings/pages/glg-docs.php:16 223 msgid "For WordPress with Gallery Block" 224 msgstr "Untuk WordPress dengan Blok Galeri" 225 226 #: inc/settings/pages/glg-docs.php:18 227 msgid "For WordPress with Classic Editor" 228 msgstr "Untuk WordPress dengan Editor Klasik" 196 229 197 230 #: inc/settings/pages/glg-free-plugins.php:12 … … 222 255 #. Plugin URI of the plugin/theme 223 256 #. Author URI of the plugin/theme 224 msgid "http ://www.ghozylab.com/plugins/"225 msgstr "http ://www.ghozylab.com/plugins/"257 msgid "https://ghozylab.com/plugins/" 258 msgstr "https://ghozylab.com/plugins/" 226 259 227 260 #. Description of the plugin/theme -
gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider.pot
r2229503 r3446163 2 2 msgid "" 3 3 msgstr "" 4 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"5 4 "Project-Id-Version: Gallery Lightbox Lite\n" 6 "POT-Creation-Date: 202 0-01-18 11:38+0700\n"5 "POT-Creation-Date: 2026-01-20 12:16+0700\n" 7 6 "PO-Revision-Date: 2016-03-13 06:42+0700\n" 8 7 "Last-Translator: \n" … … 11 10 "Content-Type: text/plain; charset=UTF-8\n" 12 11 "Content-Transfer-Encoding: 8bit\n" 13 "X-Generator: Poedit 2.2.4\n" 12 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 13 "X-Generator: Poedit 3.8\n" 14 14 "X-Poedit-Basepath: ..\n" 15 15 "X-Poedit-WPHeader: gallery-lightbox-lite.php\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 17 "X-Poedit-KeywordsList: " 18 "__;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 19 "X-Poedit-SearchPath-0: .\n" 21 20 "X-Poedit-SearchPathExcluded-0: *.js\n" … … 25 24 msgstr "" 26 25 27 #: inc/functions/ajax/glg-admin-ajax.php:1 0426 #: inc/functions/ajax/glg-admin-ajax.php:114 28 27 #, php-format 29 28 msgid "By %s" 30 29 msgstr "" 31 30 32 #: inc/functions/ajax/glg-admin-ajax.php:1 1631 #: inc/functions/ajax/glg-admin-ajax.php:126 33 32 #, php-format 34 33 msgid "Install %s now" 35 34 msgstr "" 36 35 37 #: inc/functions/ajax/glg-admin-ajax.php:1 1636 #: inc/functions/ajax/glg-admin-ajax.php:126 38 37 msgid "Install Now" 39 38 msgstr "" 40 39 41 #: inc/functions/ajax/glg-admin-ajax.php:1 2340 #: inc/functions/ajax/glg-admin-ajax.php:133 42 41 #, php-format 43 42 msgid "Update %s now" 44 43 msgstr "" 45 44 46 #: inc/functions/ajax/glg-admin-ajax.php:1 2345 #: inc/functions/ajax/glg-admin-ajax.php:133 47 46 msgid "Update Now" 48 47 msgstr "" 49 48 50 #: inc/functions/ajax/glg-admin-ajax.php:1 2949 #: inc/functions/ajax/glg-admin-ajax.php:139 51 50 msgid "This plugin is already installed and is up to date" 52 51 msgstr "" 53 52 54 #: inc/functions/ajax/glg-admin-ajax.php:1 2953 #: inc/functions/ajax/glg-admin-ajax.php:139 55 54 msgctxt "plugin" 56 55 msgid "Installed" 57 56 msgstr "" 58 57 59 #: inc/functions/ajax/glg-admin-ajax.php:1 3858 #: inc/functions/ajax/glg-admin-ajax.php:148 60 59 #, php-format 61 60 msgid "More information about %s" 62 61 msgstr "" 63 62 64 #: inc/functions/ajax/glg-admin-ajax.php:1 3863 #: inc/functions/ajax/glg-admin-ajax.php:148 65 64 msgid "More Details" 66 65 msgstr "" 67 66 68 #: inc/functions/ajax/glg-admin-ajax.php:2 0667 #: inc/functions/ajax/glg-admin-ajax.php:220 69 68 msgid "Last Updated:" 70 69 msgstr "" 71 70 72 #: inc/functions/ajax/glg-admin-ajax.php:2 0771 #: inc/functions/ajax/glg-admin-ajax.php:221 73 72 #, php-format 74 73 msgid "%s ago" 75 74 msgstr "" 76 75 77 #: inc/functions/ajax/glg-admin-ajax.php:2 1176 #: inc/functions/ajax/glg-admin-ajax.php:225 78 77 #, php-format 79 78 msgid "%s download" … … 82 81 msgstr[1] "" 83 82 84 #: inc/functions/ajax/glg-admin-ajax.php:2 1683 #: inc/functions/ajax/glg-admin-ajax.php:230 85 84 msgid "Untested with your version of WordPress" 86 85 msgstr "" 87 86 88 #: inc/functions/ajax/glg-admin-ajax.php:2 1887 #: inc/functions/ajax/glg-admin-ajax.php:232 89 88 msgid "<strong>Incompatible</strong> with your version of WordPress" 90 89 msgstr "" 91 90 92 #: inc/functions/ajax/glg-admin-ajax.php:2 2091 #: inc/functions/ajax/glg-admin-ajax.php:234 93 92 msgid "<strong>Compatible</strong> with your version of WordPress" 94 93 msgstr "" 95 94 96 #: inc/functions/ajax/glg-admin-ajax.php: 29495 #: inc/functions/ajax/glg-admin-ajax.php:308 97 96 msgid "" 98 97 "There was an error retrieving the list from the server. Please try again " … … 109 108 msgstr "" 110 109 111 #: inc/settings/glg-lightbox-settings.php:1 2110 #: inc/settings/glg-lightbox-settings.php:14 112 111 msgid "General" 113 112 msgstr "" 114 113 115 #: inc/settings/glg-lightbox-settings.php:21 114 #: inc/settings/glg-lightbox-settings.php:24 115 #, php-format 116 msgid "" 117 "If you use Gallery Lightbox Lite and found it useful then please consider " 118 "rating it and leaving your positive feedback %s." 119 msgstr "" 120 121 #: inc/settings/glg-lightbox-settings.php:26 122 msgid "here" 123 msgstr "" 124 125 #: inc/settings/glg-lightbox-settings.php:33 116 126 msgid "Enable Lightbox in All Post/Page" 117 127 msgstr "" 118 128 119 #: inc/settings/glg-lightbox-settings.php: 38129 #: inc/settings/glg-lightbox-settings.php:50 120 130 msgid "Use this option to Enable or Disable the Lightbox in all Post or Page" 121 131 msgstr "" 122 132 123 #: inc/settings/glg-lightbox-settings.php: 43133 #: inc/settings/glg-lightbox-settings.php:55 124 134 msgid "Slideshow Auto Play" 125 135 msgstr "" 126 136 127 #: inc/settings/glg-lightbox-settings.php: 46137 #: inc/settings/glg-lightbox-settings.php:58 128 138 msgid "Should the lightbox gallery autoplay on start or not" 129 139 msgstr "" 130 140 131 #: inc/settings/glg-lightbox-settings.php: 51141 #: inc/settings/glg-lightbox-settings.php:63 132 142 msgid "Slideshow Interval" 133 143 msgstr "" 134 144 135 #: inc/settings/glg-lightbox-settings.php:72 136 msgid " selected=\"selected\"" 137 msgstr "" 138 139 #: inc/settings/glg-lightbox-settings.php:75 145 #: inc/settings/glg-lightbox-settings.php:88 140 146 msgid "The time in seconds when autoplaying a gallery. Default 3 seconds" 141 147 msgstr "" 142 148 143 #: inc/settings/glg-lightbox-settings.php: 80149 #: inc/settings/glg-lightbox-settings.php:93 144 150 msgid "Show Thumbnails on Bottom" 145 151 msgstr "" 146 152 147 #: inc/settings/glg-lightbox-settings.php: 84153 #: inc/settings/glg-lightbox-settings.php:97 148 154 msgid "Use this option to show / hide gallery thumbnails" 149 155 msgstr "" 150 156 151 #: inc/settings/glg-lightbox-settings.php: 89157 #: inc/settings/glg-lightbox-settings.php:102 152 158 msgid "Show Thumbnails Caption" 153 159 msgstr "" 154 160 155 #: inc/settings/glg-lightbox-settings.php: 93161 #: inc/settings/glg-lightbox-settings.php:106 156 162 msgid "Use this option to show / hide gallery thumbnails caption" 157 163 msgstr "" 158 164 159 #: inc/settings/glg-lightbox-settings.php: 98165 #: inc/settings/glg-lightbox-settings.php:111 160 166 msgid "Fancy Lightbox Caption" 161 167 msgstr "" 162 168 163 #: inc/settings/glg-lightbox-settings.php:1 02169 #: inc/settings/glg-lightbox-settings.php:115 164 170 msgid "" 165 171 "If Enabled the plugin will automatically convert uppercase the first " … … 168 174 msgstr "" 169 175 170 #: inc/settings/glg-lightbox-settings.php:1 07176 #: inc/settings/glg-lightbox-settings.php:120 171 177 msgid "Overlay Color" 172 178 msgstr "" 173 179 174 #: inc/settings/glg-lightbox-settings.php:1 09180 #: inc/settings/glg-lightbox-settings.php:122 175 181 msgid "Set your gallery overlay color. Default: #000000 " 176 182 msgstr "" 177 183 178 #: inc/settings/glg-lightbox-settings.php:1 22184 #: inc/settings/glg-lightbox-settings.php:135 179 185 msgid "Save Changes" 186 msgstr "" 187 188 #: inc/settings/glg-lightbox-settings.php:135 189 msgid "Settings Saved" 180 190 msgstr "" 181 191 -
gallery-lightbox-slider/trunk/readme.txt
r3407399 r3446163 5 5 Requires at least: 3.3 6 6 Tested up to: 6.9 7 Stable tag: 1.0.0.4 17 Stable tag: 1.0.0.43 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 54 54 * Polish 55 55 56 and many more... 57 56 58 > #### **NOTE** 57 59 > If you would like to create your own language pack or update the existing one, you can send <a href="https://codex.wordpress.org/Translating_WordPress" title="Translating WordPress" target="_blank">the text of PO and MO files</a> for <a href="https://ghozylab.com/plugins/" title="GhozyLab" target="_blank">GhozyLab</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="https://poedit.net/download" title="Download Poedit" target="_blank">Poedit</a>. … … 88 90 = How to use Gallery Lightbox Plugin? = 89 91 90 There are no complicated instructions for using Gallery Lightbox plugin because this Lightbox plugin designed to make all easy. Please watch the video above and we believe that you will easily to understand it just in minutes. 92 There are no complicated instructions for using Gallery Lightbox plugin because this Lightbox plugin designed to make all easy. Please watch the following video and we believe that you will easily to understand it just in minutes : 93 94 This is for WordPress with Gallery Block 95 [youtube https://www.youtube.com/watch?v=NTli93b3i2I] 96 97 This is for WordPress with Classic Editor 98 [youtube https://www.youtube.com/watch?v=-64V-cthkes] 91 99 92 100 = How can I get support? = … … 109 117 2. On Backend 110 118 119 == Other Notes == 120 121 = Gallery Lightbox step by step guide = 122 123 There are no complicated instructions for using Gallery Lightbox plugin because this Lightbox plugin designed to make all easy. Please watch the following video and we believe that you will easily to understand it just in minutes : 124 125 126 [youtube https://www.youtube.com/watch?v=NTli93b3i2I] 127 128 [youtube https://www.youtube.com/watch?v=-64V-cthkes] 129 111 130 == Upgrade Notice == 112 131 113 = 1.0.0.4 1=132 = 1.0.0.43 = 114 133 115 134 IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW! 116 135 117 136 == Changelog == 137 138 = 1.0.0.43 = 139 140 * Update : WordPress 6.9 compatibility 141 * Update : PHP 8.5 compatibility 142 * Fixed : XSS issue, thanks to patchstack.com 143 * Fixed : Many other PHP and CSS clean and optimization 118 144 119 145 = 1.0.0.41 =
Note: See TracChangeset
for help on using the changeset viewer.