Plugin Directory

Changeset 3446163


Ignore:
Timestamp:
01/24/2026 02:47:52 PM (2 months ago)
Author:
GhozyLab
Message:

Release new version

Location:
gallery-lightbox-slider/trunk
Files:
18 added
25 edited

Legend:

Unmodified
Added
Removed
  • gallery-lightbox-slider/trunk/gallery-lightbox-lite.php

    r3210318 r3446163  
    55Plugin URI: https://ghozylab.com/plugins/
    66Description: Displays your images gallery into the awesome and responsive lightbox slider with very easy
    7 Author: PT. GHOZY LAB LLC
     7Author: PT. GHOZY LAB LLC.
    88Text Domain: gallery-lightbox-slider
    99Domain Path: /languages
    10 Version: 1.0.0.41
     10Version: 1.0.0.43
    1111Author URI: https://ghozylab.com/plugins/
    1212*/
    1313
    1414
    15 if ( ! defined('ABSPATH') ) {
    16     die('Please do not load this file directly.');
     15if ( ! defined( 'ABSPATH' ) ) {
     16    die( 'Please do not load this file directly.' );
    1717}
    1818
    1919
    20 /*-------------------------------------------------------------------------------*/
    21 /*   All DEFINES
     20/*
     21-------------------------------------------------------------------------------*/
     22/*
     23    All DEFINES
    2224/*-------------------------------------------------------------------------------*/
    2325$glg_plugin_url = substr( plugin_dir_url( __FILE__ ), 0, -1 );
     
    2527
    2628define( 'GLG_ITEM_NAME', 'Gallery Lightbox Lite' );
    27 define( 'GLG_VERSION', '1.0.0.41' );
     29define( 'GLG_VERSION', '1.0.0.43' );
    2830define( 'GLG_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    2931define( 'GLG_URL', $glg_plugin_url );
    3032define( 'GLG_DIR', $glg_plugin_dir );
    31 define( 'GLG_PLUGIN_SLUG','gallery-lightbox-slider/gallery-lightbox-lite.php' );
     33define( 'GLG_PLUGIN_SLUG', 'gallery-lightbox-slider/gallery-lightbox-lite.php' );
    3234
    33 /*-------------------------------------------------------------------------------*/
    34 /*   Plugin Init
     35/*
     36-------------------------------------------------------------------------------*/
     37/*
     38    Plugin Init
    3539/*-------------------------------------------------------------------------------*/
    3640add_action( 'init', 'glg_general_init' );
    3741
    3842function glg_general_init() {
    39    
     43
    4044    // Make sure jQuery loaded on frontend
    41     if( !is_admin() ) {
    42        
     45    if ( ! is_admin() ) {
    4346        wp_enqueue_script( 'jquery' );
    44        
    45         }
    46    
     47    }
     48
    4749    // Global
    4850    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
    5254    // Only in Admin Area
    5355    if ( is_admin() ) {
    54        
     56
    5557        add_action( 'admin_menu', 'glg_menu_page' );
    5658        add_action( 'admin_enqueue_scripts', 'glg_admin_enqueue_scripts' );
    5759        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
    6365    }
    64    
     66
    6567    // Outside Admin Area
    6668    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
    7072        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
    7375    }
    74    
    7576}
    7677
    7778
    78 /*-------------------------------------------------------------------------------*/
    79 /*  Plugin Settings Link @since 1.0.0.15
     79/*
     80-------------------------------------------------------------------------------*/
     81/*
     82    Plugin Settings Link @since 1.0.0.15
    8083/*-------------------------------------------------------------------------------*/
    8184function glg_settings_link( $link, $file ) {
    82    
     85
    8386    static $this_plugin;
    84    
    85     if ( !$this_plugin )
     87
     88    if ( ! $this_plugin ) {
    8689        $this_plugin = plugin_basename( __FILE__ );
     90    }
    8791
    8892    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>&nbsp;' . __( '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>&nbsp;' . esc_html__( 'Settings', 'gallery-lightbox-slider' ) . '</a>';
    9094        array_unshift( $link, $settings_link );
    9195    }
    92    
     96
    9397    return $link;
    94    
    9598}
    9699
    97100function 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    }
    101105}
    102106add_action( 'current_screen', 'glg_current_screen' );
    103107
    104108function glg_custom_admin_head() {
    105    
     109
    106110    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    
    108111}
    109112
    110 /*-------------------------------------------------------------------------------*/
    111 /*   Redirect on Activation
     113/*
     114-------------------------------------------------------------------------------*/
     115/*
     116    Redirect on Activation
    112117/*-------------------------------------------------------------------------------*/
    113118function glg_plugin_activate() {
    114119
    115   add_option( 'activated_glg_plugin', 'glg-activate' );
    116 
     120    add_option( 'activated_glg_plugin', 'glg-activate' );
    117121}
    118122register_activation_hook( __FILE__, 'glg_plugin_activate' );
     
    120124function glg_load_plugin() {
    121125
    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    }
    134136}
    135137add_action( 'admin_init', 'glg_load_plugin' );
  • gallery-lightbox-slider/trunk/inc/functions/ajax/glg-admin-ajax.php

    r3267993 r3446163  
    11<?php
    22
    3 
    43if ( ! defined( 'ABSPATH' ) ) exit;
    54
    6 
    7 
    85/*-------------------------------------------------------------------------------*/
    96/* Ajax Settings Page
     
    129   
    1310    $res = array();
    14    
    15    
     11
    1612    // 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' ) )
    1814        return;
    1915   
     
    2218       
    2319        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;
    3024               
    3125    }
    32        
    33 
    34 
    35 echo json_encode( $res );
    36 wp_die();
     26   
     27    echo json_encode( $res );
     28    wp_die();
    3729   
    3830}
     
    124116                        if ( $status['url'] ) {
    125117                            /* 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>';
    127119                        }
    128120
     
    131123                        if ( $status['url'] ) {
    132124                            /* 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>';
    134126                        }
    135127
     
    188180                            switch( $plugin["slug"] ){
    189181                                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>';
    191183                                break;
    192184                               
     
    196188                               
    197189                                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>';
    199191                                break;
    200192                               
    201193                                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>';
    203195                                break;
    204196
     
    299291   
    300292    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 ) );
    302294        if ( ! is_wp_error( $feed ) ) {
    303295            if ( isset( $feed['body'] ) && strlen( $feed['body'] ) > 0 ) {
     
    306298            }
    307299        } 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>';
    309301        }
    310302    }
  • gallery-lightbox-slider/trunk/inc/functions/glg-functions.php

    r3154211 r3446163  
    22
    33if ( ! 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/*-------------------------------------------------------------------------------*/
     12function 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/*-------------------------------------------------------------------------------*/
     40function 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/*-------------------------------------------------------------------------------*/
     54function 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/*-------------------------------------------------------------------------------*/
     70function 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 );
    8074}
    8175
    8276// 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]-->
     77function 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]-->
    9386
    9487<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    ?>
     95none 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    ?>
    101102    .pbWrapper > img{display: inline;}
    102103    #pbThumbsToggler {display: none !important;}
     
    105106<script type="text/javascript">// <![CDATA[
    106107jQuery(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        ?>
    110112
    111113    /* Replace default title to more fancy :) */
     
    113115
    114116        $alt = $(this).attr('alt');
    115 
    116117        $(this).attr('alt', $alt.replace(/-|_/g, ' '));
    117 
    118118        $altnew = $(this).attr('alt').replace(/\b[a-z]/g, function(letter) {
    119 
    120                 return letter.toUpperCase();
    121 
    122             });
     119            return letter.toUpperCase();
     120        });
    123121
    124122        $(this).attr('alt', $altnew );
     
    126124    });
    127125
    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, "&amp;")
    139             .replace(/</g, "&lt;")
    140             .replace(/>/g, "&gt;")
    141             .replace(/"/g, "&quot;")
    142             .replace(/'/g, "&#039;");
    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, "&amp;")
     138            .replace(/</g, "&lt;")
     139            .replace(/>/g, "&gt;")
     140            .replace(/"/g, "&quot;")
     141            .replace(/'/g, "&#039;");
     142    }
    144143    /* Gutenberg Adaptive */
    145144    $('.blocks-gallery-item, .wp-block-image').each(function(i) {
     
    155154        }
    156155
    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        }
    161160
    162161    });
    163162
    164     <?php
    165 }
    166 
    167     }
    168 
    169     ?>
     163            <?php
     164        }
     165    }
     166
     167    ?>
    170168
    171169    /* Initialize!
     
    175173    $('.gallery, .ghozylab-gallery, .wp-block-gallery')
    176174        .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 ); ?>,
    180178            counter: ''
    181179        }, callback);
     
    185183});
    186184
    187 /* END --- <?php echo GLG_ITEM_NAME; ?> --- */
     185/* END --- <?php echo esc_html( GLG_ITEM_NAME ); ?> --- */
    188186
    189187// ]]></script>
    190188
    191189
    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/*-------------------------------------------------------------------------------*/
     205function 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
     228function 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
     242function glg_hide_notify() {
     243
     244    update_option( 'glg_trial_notify', 'done' );
     245    wp_die();
    255246}
    256247
  • gallery-lightbox-slider/trunk/inc/gfg-metabox.php

    r2229284 r3446163  
    22
    33
    4 if ( ! defined('ABSPATH') ) {
    5     die('Please do not load this file directly.');
     4if ( ! defined( 'ABSPATH' ) ) {
     5    die( 'Please do not load this file directly.' );
    66}
    77
     
    2828/**
    2929 * Prints the box content.
    30  * 
     30 *
    3131 * @param WP_Post $post The object for the current post/page.
    3232 */
     
    4343
    4444    echo '<label for="glg_activate_lightbox">';
    45     _e( 'Use Lightbox?', 'gallery-lightbox-slider' );
     45    esc_html_e( 'Use Lightbox?', 'gallery-lightbox-slider' );
    4646    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>';
    5152}
    5253
     
    8485            return;
    8586        }
     87    } elseif ( ! current_user_can( 'edit_post', $post_id ) ) {
    8688
    87     } else {
    88 
    89         if ( ! current_user_can( 'edit_post', $post_id ) ) {
    9089            return;
    91         }
    9290    }
    9391
    9492    /* OK, it's safe for us to save the data now. */
    95    
     93
    9694    // Make sure that it is set.
    9795    if ( ! isset( $_POST['glg_activate_lightbox'] ) ) {
  • gallery-lightbox-slider/trunk/inc/js/settings/iosCheckbox.js

    r2356221 r3446163  
    44 * Author: Ron Masas
    55 */
    6 (function($) {
     6(function ($) {
    77    $.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();
    1212                });
    1313            };
     
    1616            }
    1717            $(this).attr('data-ios-checkbox', 'true');
    18             $(this).each(function() {
     18            $(this).each(function () {
    1919                /**
    2020                 * Original checkbox element
     
    3737                org_checkbox.hide().after(ios_checkbox);
    3838                // Add click event listener to the ios checkbox
    39                 ios_checkbox.click(function() {
     39                ios_checkbox.click(function () {
    4040                    // Toggel the check state
    4141                    ios_checkbox.toggleClass("checked");
     
    4444                        // Update state
    4545                        org_checkbox.prop('checked', true)
    46                         $('.'+org_checkbox.attr('id')).val('true').trigger('change');
     46                        $('.' + org_checkbox.attr('id')).val('true').trigger('change');
    4747                    } else {
    4848                        // Update state
    4949                        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');
    5151                    }
    5252
    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
    7171                });
    7272            });
  • gallery-lightbox-slider/trunk/inc/js/settings/option-tab.js

    r2229284 r3446163  
    11var glgloader;
    22
    3 jQuery(document).ready(function($) {
    4    
    5     var ytIsLoaded = false, freeLoaded = false, preLoaded = false;
     3jQuery(document).ready(function ($) {
     4
     5    var ytIsLoaded = false,
     6        freeLoaded = false,
     7        preLoaded = false;
    68    // Activate checkbox
    79    $(".ios-checkbox").iosCheckbox();
    8    
     10
    911    // Animate Settings Page on Load
    1012    jQuery(".panelloader").removeClass("ploader").hide();
    1113    jQuery("#page-settings").fadeIn(1000);
    12    
     14
    1315    // Apply WP ColorPicker
    1416    $('#glg_gallery_overlay_color').wpColorPicker();
    15        
     17
    1618    // Submit handler
    17     $(".glg_form_submit").bind("click",function (e) {
    18        
     19    $(".glg_form_submit").bind("click", function (e) {
    1920        e.preventDefault();
    20        
    2121        $('.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
    3027    // 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
    3633        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
    4138        loading(fid);
    42    
     39
    4340        dat = {};
    4441        dat['action'] = 'glg_ajax_save_settings';
    4542        dat['fieldsdata'] = fdata;
    4643        dat['security'] = nnc;
    47    
     44
    4845        jQuery.ajax({
    4946            url: ajaxurl,
     
    5148            dataType: 'json',
    5249            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;
    6155
    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);
    6859
    6960                }
    70            
    71             // end success-     
    7261            }
    73            
    74         // end ajax
    7562        });
    7663
    77    
     64
    7865    }
    79    
     66
    8067    // Restore element to default
    81     function glg_cleanup( smbt, fid ) {
    82    
     68    function glg_cleanup(smbt, fid) {
    8369        $('#overlay').remove();
    8470        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();
    9276        }, 4000);
    9377    };
     
    9680    // Create animate on Save
    9781    function loading(fid) {
    98         // add the overlay with loading image to the page
    99         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
    10690    // AJAX Get Free Plugins
    107     $('body').on('click', '.glg_ajax_caller', function(event){
    108        
     91    $('body').on('click', '.glg_ajax_caller', function (event) {
    10992        glg_ajax_caller_func($(this));
     93        event.preventDefault();
     94    });
    11095
    111         event.preventDefault();
    112        
    113     });
    114        
    115     $('body').on('click', '#glg-docs', function(event){
    116        
     96    $('body').on('click', '#glg-docs', function (event) {
    11797        if (!ytIsLoaded) {
    118             $(".glg-iframe").attr('src', function(index, attr){
    119               return attr;
     98            $(".glg-iframe").attr('src', function (index, attr) {
     99                return attr;
    120100            });
    121101        }
    122        
     102
    123103        ytIsLoaded = true;
    124104        event.preventDefault();
    125        
    126105    });
    127        
    128        
     106
     107
    129108    // RETRIEVE FREE PLUGINS LIST
    130     function glg_ajax_caller_func( elmnt ) {
    131        
     109    function glg_ajax_caller_func(elmnt) {
     110
    132111        if (elmnt.data('act') == 'glg_free_plugins_page' && freeLoaded) return false;
    133112        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();
    137116        $(".glgloader").fadeIn(300).addClass("glgloaderclass");
    138    
     117
    139118        dat = {};
    140119        dat['action'] = elmnt.data('act');
    141120        dat['security'] = elmnt.data('nonce');
    142    
     121
    143122        jQuery.ajax({
    144123            url: ajaxurl,
    145124            type: 'POST',
    146125            data: dat,
    147        
    148             success: function( response ) {
    149                
    150                
    151                 if ( response ) {
    152                    
     126            success: function (response) {
     127                if (response) {
    153128                    $(".glgloader").removeClass("glgloaderclass").hide();
    154                     $('#'+elmnt.data('act')).html(response).fadeIn(1000);
     129                    $('#' + elmnt.data('act')).html(response).fadeIn(1000);
    155130                    if (elmnt.data('act') == 'glg_free_plugins_page') freeLoaded = true;
    156131                    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        });
    157137
    158                 } else {
    159                    
    160                     alert('Failed! Please refresh the page and try again.');
    161                    
    162                     }
    163 
    164             }
    165            
    166         // end ajax
    167         });
    168    
    169138    }
    170139    // 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");
    173142
    174143});
    175 
  • gallery-lightbox-slider/trunk/inc/settings/glg-global-settings.php

    r2229284 r3446163  
    11<?php
    22
    3 if ( ! defined( 'ABSPATH' ) ) exit;
     3if ( ! defined( 'ABSPATH' ) ) {
     4    exit;
     5}
    46
    57
    68function glg_menu_page() {
    7    
     9
    810    add_menu_page( 'Gallery Lightbox Settings', 'Gallery Lightbox', 'manage_options', 'gallery-lightbox-settings', 'glg_settings_page', 'dashicons-format-gallery', 20 );
    9    
    1011}
    1112
    1213
    1314function 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    }
    1619
    1720    wp_enqueue_style( 'glg-settings' );
     
    2427    wp_enqueue_style( 'glg-checkbox-style' );
    2528    add_thickbox();
    26    
     29
    2730    glg_trial_notify();
    28    
    29 ob_start();
    30    
    31 ?>
     31
     32    ob_start();
     33
     34    ?>
    3235<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>
    8484</div>
    8585
    86 <?php
     86    <?php
    8787
    88 $content = ob_get_clean();
    89 echo $content;
    90 
     88    $content = ob_get_clean();
     89    echo $content;
    9190}
    92 
    93 ?>
  • gallery-lightbox-slider/trunk/inc/settings/glg-lightbox-settings.php

    r2229284 r3446163  
    11<?php
    22
    3 if ( ! defined( 'ABSPATH' ) ) exit;
     3if ( ! defined( 'ABSPATH' ) ) {
     4    exit;
     5}
    46
    57?>
    68
    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">
    1513
    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>
    4116
    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">
    5321                            <?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' );
    5942                                } 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';
    6378                                    }
    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>
    7879
    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                                    }
    12683
    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>
    12896
    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
    130176            </div>
    131177        </div>
    132     </div>
     178    </div>
     179</div>
  • gallery-lightbox-slider/trunk/inc/settings/pages/glg-docs.php

    r2229503 r3446163  
    11<?php
    22
    3 if ( ! defined( 'ABSPATH' ) ) exit;
     3if ( ! defined( 'ABSPATH' ) ) {
     4exit;
     5}
    46
    57?>
    68
    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>
    2331    </div>
     32</div>
  • gallery-lightbox-slider/trunk/inc/settings/pages/glg-free-plugins.php

    r1338717 r3446163  
    11<?php
    22
    3 if ( ! defined( 'ABSPATH' ) ) exit;
     3if ( ! defined( 'ABSPATH' ) ) {
     4    exit;
     5}
    46
    57?>
    68
    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">
    1813
     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>
    1918                </div>
     19                <div style="display:none;" id="glg_free_plugins_page"></div>
     20
    2021            </div>
    2122        </div>
    22     </div>
     23    </div>
     24</div>
  • gallery-lightbox-slider/trunk/inc/settings/pages/glg-premium-plugins.php

    r1338717 r3446163  
    11<?php
    22
    3 if ( ! defined( 'ABSPATH' ) ) exit;
     3if ( ! defined( 'ABSPATH' ) ) {
     4    exit;
     5}
    46?>
    57
    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>
    2324                        </div>
     25                        <div style="display:none;" id="glg_pro_plugins_page"></div>
     26
    2427                    </div>
    2528                </div>
    2629            </div>
    2730        </div>
    28     </div>
    29    
    30    
    31    
     31    </div>
     32</div>
  • gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-de_DE.po

    r2229284 r3446163  
    22msgstr ""
    33"Project-Id-Version: Gallery Lightbox Lite\n"
    4 "POT-Creation-Date: 2020-01-17 21:30+0700\n"
    5 "PO-Revision-Date: 2020-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"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"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"
    1314"X-Poedit-Basepath: ..\n"
    1415"X-Poedit-WPHeader: gallery-lightbox-lite.php\n"
    15 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1616"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"
    2019"X-Poedit-SearchPath-0: .\n"
    2120"X-Poedit-SearchPathExcluded-0: *.js\n"
     
    2524msgstr "Einstellungen"
    2625
    27 #: inc/functions/ajax/glg-admin-ajax.php:104
     26#: inc/functions/ajax/glg-admin-ajax.php:114
    2827#, php-format
    2928msgid "By %s"
    3029msgstr "Von %s"
    3130
    32 #: inc/functions/ajax/glg-admin-ajax.php:116
     31#: inc/functions/ajax/glg-admin-ajax.php:126
    3332#, php-format
    3433msgid "Install %s now"
    3534msgstr "Install %s now"
    3635
    37 #: inc/functions/ajax/glg-admin-ajax.php:116
     36#: inc/functions/ajax/glg-admin-ajax.php:126
    3837msgid "Install Now"
    3938msgstr "Install"
    4039
    41 #: inc/functions/ajax/glg-admin-ajax.php:123
     40#: inc/functions/ajax/glg-admin-ajax.php:133
    4241#, php-format
    4342msgid "Update %s now"
    4443msgstr "Aktualisieren %s Jetzt"
    4544
    46 #: inc/functions/ajax/glg-admin-ajax.php:123
     45#: inc/functions/ajax/glg-admin-ajax.php:133
    4746msgid "Update Now"
    4847msgstr "Update"
    4948
    50 #: inc/functions/ajax/glg-admin-ajax.php:129
     49#: inc/functions/ajax/glg-admin-ajax.php:139
    5150msgid "This plugin is already installed and is up to date"
    5251msgstr "Dieses Plugin ist bereits installiert und auf dem neuesten Stand"
    5352
    54 #: inc/functions/ajax/glg-admin-ajax.php:129
     53#: inc/functions/ajax/glg-admin-ajax.php:139
    5554msgctxt "plugin"
    5655msgid "Installed"
    5756msgstr "Installiert"
    5857
    59 #: inc/functions/ajax/glg-admin-ajax.php:138
     58#: inc/functions/ajax/glg-admin-ajax.php:148
    6059#, php-format
    6160msgid "More information about %s"
    6261msgstr "Mehr Information über %s"
    6362
    64 #: inc/functions/ajax/glg-admin-ajax.php:138
     63#: inc/functions/ajax/glg-admin-ajax.php:148
    6564msgid "More Details"
    6665msgstr "Mehr Details"
    6766
    68 #: inc/functions/ajax/glg-admin-ajax.php:206
     67#: inc/functions/ajax/glg-admin-ajax.php:220
    6968msgid "Last Updated:"
    7069msgstr "Zuletzt Geändert:"
    7170
    72 #: inc/functions/ajax/glg-admin-ajax.php:207
     71#: inc/functions/ajax/glg-admin-ajax.php:221
    7372#, php-format
    7473msgid "%s ago"
    7574msgstr "%s Tagen"
    7675
    77 #: inc/functions/ajax/glg-admin-ajax.php:211
     76#: inc/functions/ajax/glg-admin-ajax.php:225
    7877#, php-format
    7978msgid "%s download"
     
    8281msgstr[1] "%s Tagen"
    8382
    84 #: inc/functions/ajax/glg-admin-ajax.php:216
     83#: inc/functions/ajax/glg-admin-ajax.php:230
    8584msgid "Untested with your version of WordPress"
    8685msgstr "Ungeprüfte mit Ihrer Version von Wordpress"
    8786
    88 #: inc/functions/ajax/glg-admin-ajax.php:218
     87#: inc/functions/ajax/glg-admin-ajax.php:232
    8988msgid "<strong>Incompatible</strong> with your version of WordPress"
    9089msgstr "<strong>Inkompatibel</strong> mit Ihrer WordPress-Version"
    9190
    92 #: inc/functions/ajax/glg-admin-ajax.php:220
     91#: inc/functions/ajax/glg-admin-ajax.php:234
    9392msgid "<strong>Compatible</strong> with your version of WordPress"
    9493msgstr "<strong>Kompatibel</strong> mit Ihrer WordPress-Version"
    9594
    96 #: inc/functions/ajax/glg-admin-ajax.php:294
     95#: inc/functions/ajax/glg-admin-ajax.php:308
    9796msgid ""
    9897"There was an error retrieving the list from the server. Please try again "
     
    113112"in der Lightbox geöffnet"
    114113
    115 #: inc/settings/glg-lightbox-settings.php:12
     114#: inc/settings/glg-lightbox-settings.php:14
    116115msgid "General"
    117116msgstr "Allgemein"
    118117
    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>."
     124msgid ""
     125"If you use Gallery Lightbox Lite and found it useful then please consider "
     126"rating it and leaving your positive feedback %s."
     127msgstr ""
     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
     133msgid "here"
     134msgstr "hier"
     135
     136#: inc/settings/glg-lightbox-settings.php:33
    120137msgid "Enable Lightbox in All Post/Page"
    121138msgstr "Leuchtkasten in allen Post-Seite aktivieren"
    122139
    123 #: inc/settings/glg-lightbox-settings.php:39
     140#: inc/settings/glg-lightbox-settings.php:50
    124141msgid "Use this option to Enable or Disable the Lightbox in all Post or Page"
    125142msgstr ""
     
    127144"allen Post oder Seite"
    128145
    129 #: inc/settings/glg-lightbox-settings.php:44
     146#: inc/settings/glg-lightbox-settings.php:55
    130147msgid "Slideshow Auto Play"
    131148msgstr "Slideshow-automatische Wiedergabe"
    132149
    133 #: inc/settings/glg-lightbox-settings.php:49
     150#: inc/settings/glg-lightbox-settings.php:58
    134151msgid "Should the lightbox gallery autoplay on start or not"
    135152msgstr "Sollte das Lightbox Galerie Autoplay auf Start oder nicht"
    136153
    137 #: inc/settings/glg-lightbox-settings.php:54
     154#: inc/settings/glg-lightbox-settings.php:63
    138155msgid "Slideshow Interval"
    139156msgstr "Diaschau-Intervall"
    140157
    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
    146159msgid "The time in seconds when autoplaying a gallery. Default 3 seconds"
    147160msgstr ""
     
    149162"Standard: 3 Sekunden"
    150163
    151 #: inc/settings/glg-lightbox-settings.php:83
     164#: inc/settings/glg-lightbox-settings.php:93
    152165msgid "Show Thumbnails on Bottom"
    153166msgstr "Vorschaubilder unten"
    154167
    155 #: inc/settings/glg-lightbox-settings.php:88
     168#: inc/settings/glg-lightbox-settings.php:97
    156169msgid "Use this option to show / hide gallery thumbnails"
    157170msgstr ""
    158171"Verwenden Sie diese Option zum Anzeigen / Verbergen der Galerie Miniaturen"
    159172
    160 #: inc/settings/glg-lightbox-settings.php:93
     173#: inc/settings/glg-lightbox-settings.php:102
    161174msgid "Show Thumbnails Caption"
    162175msgstr "Thumbnails-Beschriftung anzeigen"
    163176
    164 #: inc/settings/glg-lightbox-settings.php:98
     177#: inc/settings/glg-lightbox-settings.php:106
    165178msgid "Use this option to show / hide gallery thumbnails caption"
    166179msgstr ""
     
    168181"Beschriftung"
    169182
    170 #: inc/settings/glg-lightbox-settings.php:103
     183#: inc/settings/glg-lightbox-settings.php:111
    171184msgid "Fancy Lightbox Caption"
    172 msgstr ""
    173 
    174 #: inc/settings/glg-lightbox-settings.php:108
     185msgstr "Schicke Lightbox-Bildunterschrift"
     186
     187#: inc/settings/glg-lightbox-settings.php:115
    175188msgid ""
    176189"If Enabled the plugin will automatically convert uppercase the first "
     
    183196"Interior ändern"
    184197
    185 #: inc/settings/glg-lightbox-settings.php:113
     198#: inc/settings/glg-lightbox-settings.php:120
    186199msgid "Overlay Color"
    187200msgstr "Überlagerungs-Farbe"
    188201
    189 #: inc/settings/glg-lightbox-settings.php:115
     202#: inc/settings/glg-lightbox-settings.php:122
    190203msgid "Set your gallery overlay color. Default: #000000 "
    191204msgstr "Sie Ihre Galerie-Overlay-Farbe. Standard: #000000 "
    192205
    193 #: inc/settings/glg-lightbox-settings.php:128
     206#: inc/settings/glg-lightbox-settings.php:135
    194207msgid "Save Changes"
    195208msgstr "Änderungen speichern"
     209
     210#: inc/settings/glg-lightbox-settings.php:135
     211msgid "Settings Saved"
     212msgstr "Einstellungen gespeichert"
    196213
    197214#: inc/settings/pages/glg-docs.php:12
     
    210227"Minuten zu verstehen."
    211228
     229#: inc/settings/pages/glg-docs.php:16
     230msgid "For WordPress with Gallery Block"
     231msgstr "Für WordPress mit Galerie-Block"
     232
     233#: inc/settings/pages/glg-docs.php:18
     234msgid "For WordPress with Classic Editor"
     235msgstr "Für WordPress mit Classic Editor"
     236
    212237#: inc/settings/pages/glg-free-plugins.php:12
    213238msgid "Free Install Plugins"
     
    233258#. Plugin Name of the plugin/theme
    234259msgid "Gallery Lightbox Lite"
    235 msgstr ""
     260msgstr "Galerie Lightbox Lite"
    236261
    237262#. Plugin URI of the plugin/theme
    238263#. Author URI of the plugin/theme
    239 msgid "http://www.ghozylab.com/plugins/"
    240 msgstr ""
     264msgid "https://ghozylab.com/plugins/"
     265msgstr "https://ghozylab.com/plugins/"
    241266
    242267#. Description of the plugin/theme
     
    245270"with very easy"
    246271msgstr ""
     272"Zeigt deine Bildergalerie ganz einfach in den großartigen und "
     273"reaktionsschnellen Lightbox-Schieberegler an"
    247274
    248275#. Author of the plugin/theme
    249276msgid "GhozyLab, Inc."
    250 msgstr ""
     277msgstr "GhozyLab, Inc."
    251278
    252279#~ msgid "Use this option to mass Enable or Disable the Lightbox"
  • gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-es_ES.po

    r2229284 r3446163  
    22msgstr ""
    33"Project-Id-Version: Gallery Lightbox Lite\n"
    4 "POT-Creation-Date: 2020-01-17 21:32+0700\n"
    5 "PO-Revision-Date: 2020-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"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"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"
    1314"X-Poedit-Basepath: ..\n"
    1415"X-Poedit-WPHeader: gallery-lightbox-lite.php\n"
    15 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1616"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"
    2019"X-Poedit-SearchPath-0: .\n"
    2120"X-Poedit-SearchPathExcluded-0: *.js\n"
     
    2524msgstr "Configuración"
    2625
    27 #: inc/functions/ajax/glg-admin-ajax.php:104
     26#: inc/functions/ajax/glg-admin-ajax.php:114
    2827#, php-format
    2928msgid "By %s"
    3029msgstr "Por %s"
    3130
    32 #: inc/functions/ajax/glg-admin-ajax.php:116
     31#: inc/functions/ajax/glg-admin-ajax.php:126
    3332#, php-format
    3433msgid "Install %s now"
    3534msgstr "Instalar %s ahora"
    3635
    37 #: inc/functions/ajax/glg-admin-ajax.php:116
     36#: inc/functions/ajax/glg-admin-ajax.php:126
    3837msgid "Install Now"
    3938msgstr "Instalación Nueva"
    4039
    41 #: inc/functions/ajax/glg-admin-ajax.php:123
     40#: inc/functions/ajax/glg-admin-ajax.php:133
    4241#, php-format
    4342msgid "Update %s now"
    4443msgstr "Actualizar %s ahora"
    4544
    46 #: inc/functions/ajax/glg-admin-ajax.php:123
     45#: inc/functions/ajax/glg-admin-ajax.php:133
    4746msgid "Update Now"
    4847msgstr "Actualizar"
    4948
    50 #: inc/functions/ajax/glg-admin-ajax.php:129
     49#: inc/functions/ajax/glg-admin-ajax.php:139
    5150msgid "This plugin is already installed and is up to date"
    5251msgstr "Este plugin ya está instalado y está actualizado"
    5352
    54 #: inc/functions/ajax/glg-admin-ajax.php:129
     53#: inc/functions/ajax/glg-admin-ajax.php:139
    5554msgctxt "plugin"
    5655msgid "Installed"
    5756msgstr "Instalado"
    5857
    59 #: inc/functions/ajax/glg-admin-ajax.php:138
     58#: inc/functions/ajax/glg-admin-ajax.php:148
    6059#, php-format
    6160msgid "More information about %s"
    6261msgstr "Mas Información sobre %s"
    6362
    64 #: inc/functions/ajax/glg-admin-ajax.php:138
     63#: inc/functions/ajax/glg-admin-ajax.php:148
    6564msgid "More Details"
    6665msgstr "Más Detalles"
    6766
    68 #: inc/functions/ajax/glg-admin-ajax.php:206
     67#: inc/functions/ajax/glg-admin-ajax.php:220
    6968msgid "Last Updated:"
    7069msgstr "Última Actualización:"
    7170
    72 #: inc/functions/ajax/glg-admin-ajax.php:207
     71#: inc/functions/ajax/glg-admin-ajax.php:221
    7372#, php-format
    7473msgid "%s ago"
    7574msgstr "Hace %s"
    7675
    77 #: inc/functions/ajax/glg-admin-ajax.php:211
     76#: inc/functions/ajax/glg-admin-ajax.php:225
    7877#, php-format
    7978msgid "%s download"
     
    8281msgstr[1] "Por %s"
    8382
    84 #: inc/functions/ajax/glg-admin-ajax.php:216
     83#: inc/functions/ajax/glg-admin-ajax.php:230
    8584msgid "Untested with your version of WordPress"
    8685msgstr "No comprobado con tu versión de WordPress"
    8786
    88 #: inc/functions/ajax/glg-admin-ajax.php:218
     87#: inc/functions/ajax/glg-admin-ajax.php:232
    8988msgid "<strong>Incompatible</strong> with your version of WordPress"
    9089msgstr "<strong>Incompatible</strong> con tu versión de WordPress"
    9190
    92 #: inc/functions/ajax/glg-admin-ajax.php:220
     91#: inc/functions/ajax/glg-admin-ajax.php:234
    9392msgid "<strong>Compatible</strong> with your version of WordPress"
    9493msgstr "<strong>Compatible</strong> con tu versión de WordPress"
    9594
    96 #: inc/functions/ajax/glg-admin-ajax.php:294
     95#: inc/functions/ajax/glg-admin-ajax.php:308
    9796msgid ""
    9897"There was an error retrieving the list from the server. Please try again "
     
    113112"abrirán en la caja de luz"
    114113
    115 #: inc/settings/glg-lightbox-settings.php:12
     114#: inc/settings/glg-lightbox-settings.php:14
    116115msgid "General"
    117116msgstr "General"
    118117
    119 #: inc/settings/glg-lightbox-settings.php:21
     118#: inc/settings/glg-lightbox-settings.php:24
     119#, php-format
     120msgid ""
     121"If you use Gallery Lightbox Lite and found it useful then please consider "
     122"rating it and leaving your positive feedback %s."
     123msgstr ""
     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
     128msgid "here"
     129msgstr "aquí"
     130
     131#: inc/settings/glg-lightbox-settings.php:33
    120132msgid "Enable Lightbox in All Post/Page"
    121133msgstr "Habilitar toda la mesa de luz en Post / Página"
    122134
    123 #: inc/settings/glg-lightbox-settings.php:39
     135#: inc/settings/glg-lightbox-settings.php:50
    124136msgid "Use this option to Enable or Disable the Lightbox in all Post or Page"
    125137msgstr ""
     
    127139"Post o página"
    128140
    129 #: inc/settings/glg-lightbox-settings.php:44
     141#: inc/settings/glg-lightbox-settings.php:55
    130142msgid "Slideshow Auto Play"
    131143msgstr "Auto reproducir"
    132144
    133 #: inc/settings/glg-lightbox-settings.php:49
     145#: inc/settings/glg-lightbox-settings.php:58
    134146msgid "Should the lightbox gallery autoplay on start or not"
    135147msgstr ""
     
    137149"no"
    138150
    139 #: inc/settings/glg-lightbox-settings.php:54
     151#: inc/settings/glg-lightbox-settings.php:63
    140152msgid "Slideshow Interval"
    141153msgstr "Presentación Intervalo"
    142154
    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
    148156msgid "The time in seconds when autoplaying a gallery. Default 3 seconds"
    149157msgstr ""
     
    151159"segundos"
    152160
    153 #: inc/settings/glg-lightbox-settings.php:83
     161#: inc/settings/glg-lightbox-settings.php:93
    154162msgid "Show Thumbnails on Bottom"
    155163msgstr "Galeria con Fotos al Abajo"
    156164
    157 #: inc/settings/glg-lightbox-settings.php:88
     165#: inc/settings/glg-lightbox-settings.php:97
    158166msgid "Use this option to show / hide gallery thumbnails"
    159167msgstr "Utilice esta opción para mostrar la galería / ocultar miniaturas"
    160168
    161 #: inc/settings/glg-lightbox-settings.php:93
     169#: inc/settings/glg-lightbox-settings.php:102
    162170msgid "Show Thumbnails Caption"
    163 msgstr ""
    164 
    165 #: inc/settings/glg-lightbox-settings.php:98
     171msgstr "Pie de foto de las miniaturas de mostrar"
     172
     173#: inc/settings/glg-lightbox-settings.php:106
    166174msgid "Use this option to show / hide gallery thumbnails caption"
    167175msgstr "Utilice esta opción para mostrar la galería / ocultar miniaturas"
    168176
    169 #: inc/settings/glg-lightbox-settings.php:103
     177#: inc/settings/glg-lightbox-settings.php:111
    170178msgid "Fancy Lightbox Caption"
    171 msgstr ""
    172 
    173 #: inc/settings/glg-lightbox-settings.php:108
     179msgstr "Pie de foto elegante de la caja de luz"
     180
     181#: inc/settings/glg-lightbox-settings.php:115
    174182msgid ""
    175183"If Enabled the plugin will automatically convert uppercase the first "
     
    181189"ferrari-f12 berlinetta cambiará a Ferrari F12 Berlinetta"
    182190
    183 #: inc/settings/glg-lightbox-settings.php:113
     191#: inc/settings/glg-lightbox-settings.php:120
    184192msgid "Overlay Color"
    185193msgstr "Color de Superposición"
    186194
    187 #: inc/settings/glg-lightbox-settings.php:115
     195#: inc/settings/glg-lightbox-settings.php:122
    188196msgid "Set your gallery overlay color. Default: #000000 "
    189197msgstr "Establezca su color de superposición. Por defecto: # 000000 "
    190198
    191 #: inc/settings/glg-lightbox-settings.php:128
     199#: inc/settings/glg-lightbox-settings.php:135
    192200msgid "Save Changes"
    193201msgstr "Guardar los cambios"
     202
     203#: inc/settings/glg-lightbox-settings.php:135
     204msgid "Settings Saved"
     205msgstr "Configuración Guardada"
    194206
    195207#: inc/settings/pages/glg-docs.php:12
     
    206218"este plugin diseñado para facilitar todo. Por favor ver el siguiente video y "
    207219"creemos que podrá fácilmente entender en minutos."
     220
     221#: inc/settings/pages/glg-docs.php:16
     222msgid "For WordPress with Gallery Block"
     223msgstr "Para WordPress con bloque de galería"
     224
     225#: inc/settings/pages/glg-docs.php:18
     226msgid "For WordPress with Classic Editor"
     227msgstr "Para WordPress con Classic Editor"
    208228
    209229#: inc/settings/pages/glg-free-plugins.php:12
     
    230250#. Plugin Name of the plugin/theme
    231251msgid "Gallery Lightbox Lite"
    232 msgstr ""
     252msgstr "Galería Lightbox Lite"
    233253
    234254#. Plugin URI of the plugin/theme
    235255#. Author URI of the plugin/theme
    236 msgid "http://www.ghozylab.com/plugins/"
    237 msgstr ""
     256msgid "https://ghozylab.com/plugins/"
     257msgstr "https://ghozylab.com/plugins/"
    238258
    239259#. Description of the plugin/theme
     
    242262"with very easy"
    243263msgstr ""
     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"
    244266
    245267#. Author of the plugin/theme
    246268msgid "GhozyLab, Inc."
    247 msgstr ""
     269msgstr "GhozyLab, Inc."
    248270
    249271#~ 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"
     1msgid ""
     2msgstr ""
     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"
    106"Last-Translator: \n"
    117"Language-Team: \n"
    12 "Language: fr\n"
     8"Language: fr_FR\n"
    139"MIME-Version: 1.0\n"
    1410"Content-Type: text/plain; charset=UTF-8\n"
    1511"Content-Transfer-Encoding: 8bit\n"
    16 "X-Generator: Poedit 2.2.4\n"
    1712"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
    2024msgid "Settings"
    2125msgstr "Paramètres"
    2226
    23 #: inc/functions/ajax/glg-admin-ajax.php:104
     27#: inc/functions/ajax/glg-admin-ajax.php:114
    2428#, php-format
    2529msgid "By %s"
    2630msgstr "Par %s"
    2731
    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
    2934#, php-format
    3035msgid "Install %s now"
    31 msgstr ""
    32 
    33 #: inc/functions/ajax/glg-admin-ajax.php:116
     36msgstr "Installer %s maintenant"
     37
     38#: inc/functions/ajax/glg-admin-ajax.php:126
     39#, fuzzy
    3440msgid "Install Now"
    3541msgstr "Installer Maintenant"
    3642
    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
    3845#, php-format
    3946msgid "Update %s now"
    40 msgstr ""
    41 
    42 #: inc/functions/ajax/glg-admin-ajax.php:123
     47msgstr "Mise à jour %s maintenant"
     48
     49#: inc/functions/ajax/glg-admin-ajax.php:133
    4350msgid "Update Now"
    4451msgstr "Mettre à jour maintenant"
    4552
    46 #: inc/functions/ajax/glg-admin-ajax.php:129
     53#: inc/functions/ajax/glg-admin-ajax.php:139
    4754msgid "This plugin is already installed and is up to date"
    4855msgstr "Ce plugin est déjà installé et à jour"
    4956
    50 #: inc/functions/ajax/glg-admin-ajax.php:129
     57#: inc/functions/ajax/glg-admin-ajax.php:139
     58#, fuzzy
    5159msgctxt "plugin"
    5260msgid "Installed"
    5361msgstr "Installé"
    5462
    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
    5665#, php-format
    5766msgid "More information about %s"
    58 msgstr ""
    59 
    60 #: inc/functions/ajax/glg-admin-ajax.php:138
     67msgstr "Des informations supplémentaires sur les %s"
     68
     69#: inc/functions/ajax/glg-admin-ajax.php:148
     70#, fuzzy
    6171msgid "More Details"
    6272msgstr "Plus de détails"
    6373
    64 #: inc/functions/ajax/glg-admin-ajax.php:206
     74#: inc/functions/ajax/glg-admin-ajax.php:220
     75#, fuzzy
    6576msgid "Last Updated:"
    6677msgstr "Dernière mise à jour:"
    6778
    68 #: inc/functions/ajax/glg-admin-ajax.php:207
    69 #, php-format
     79#: inc/functions/ajax/glg-admin-ajax.php:221
     80#, fuzzy, php-format
    7081msgid "%s ago"
    71 msgstr ""
    72 
    73 #: inc/functions/ajax/glg-admin-ajax.php:211
    74 #, php-format
     82msgstr "%s ago"
     83
     84#: inc/functions/ajax/glg-admin-ajax.php:225
     85#, fuzzy, php-format
    7586msgid "%s download"
    7687msgid_plural "%s downloads"
    77 msgstr[0] ""
    78 msgstr[1] ""
    79 
    80 #: inc/functions/ajax/glg-admin-ajax.php:216
     88msgstr[0] "%s download"
     89msgstr[1] "%s downloads"
     90
     91#: inc/functions/ajax/glg-admin-ajax.php:230
    8192msgid "Untested with your version of WordPress"
    8293msgstr "Non testé avec votre version de WordPress"
    8394
    84 #: inc/functions/ajax/glg-admin-ajax.php:218
     95#: inc/functions/ajax/glg-admin-ajax.php:232
    8596msgid "<strong>Incompatible</strong> with your version of WordPress"
    8697msgstr "<strong>Incompatible</strong> avec votre version de WordPress"
    8798
    88 #: inc/functions/ajax/glg-admin-ajax.php:220
     99#: inc/functions/ajax/glg-admin-ajax.php:234
    89100msgid "<strong>Compatible</strong> with your version of WordPress"
    90101msgstr "<strong>Compatible</strong> avec votre version de WordPress"
    91102
    92 #: inc/functions/ajax/glg-admin-ajax.php:265
     103#: inc/functions/ajax/glg-admin-ajax.php:308
    93104msgid ""
    94105"There was an error retrieving the list from the server. Please try again "
     
    99110
    100111#: inc/gfg-metabox.php:45
    101 msgid "Activate Lightbox?"
    102 msgstr "Activer la lightbox?"
    103 
    104 #: inc/settings/glg-lightbox-settings.php:12
     112msgid "Use Lightbox?"
     113msgstr "Utiliser Lightbox ?"
     114
     115#: inc/gfg-metabox.php:50
     116msgid ""
     117"If set to YES, all galleries on this page/post will be opened in the lightbox"
     118msgstr ""
     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
    105123msgid "General"
    106124msgstr "Général"
    107125
    108 #: inc/settings/glg-lightbox-settings.php:21
     126#. translators: %s: review link
     127#: inc/settings/glg-lightbox-settings.php:24
     128#, php-format
     129msgid ""
     130"If you use Gallery Lightbox Lite and found it useful then please consider "
     131"rating it and leaving your positive feedback %s."
     132msgstr ""
     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
     137msgid "here"
     138msgstr "ici"
     139
     140#: inc/settings/glg-lightbox-settings.php:33
    109141msgid "Enable Lightbox in All Post/Page"
    110142msgstr "Activer Lightbox dans tous les Post/Page"
    111143
    112 #: inc/settings/glg-lightbox-settings.php:39
     144#: inc/settings/glg-lightbox-settings.php:50
    113145msgid "Use this option to Enable or Disable the Lightbox in all Post or Page"
    114146msgstr ""
     
    116148"Post ou Page"
    117149
    118 #: inc/settings/glg-lightbox-settings.php:44
     150#: inc/settings/glg-lightbox-settings.php:55
    119151msgid "Slideshow Auto Play"
    120152msgstr "Lecture diaporama automatique"
    121153
    122 #: inc/settings/glg-lightbox-settings.php:49
     154#: inc/settings/glg-lightbox-settings.php:58
    123155msgid "Should the lightbox gallery autoplay on start or not"
    124156msgstr "Devrait l'autoplay de Galerie lightbox sur Démarrer ou non"
    125157
    126 #: inc/settings/glg-lightbox-settings.php:54
     158#: inc/settings/glg-lightbox-settings.php:63
    127159msgid "Slideshow Interval"
    128160msgstr "Intervalles du diaporama"
    129161
    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
    135163msgid "The time in seconds when autoplaying a gallery. Default 3 seconds"
    136164msgstr ""
     
    138166"3 secondes"
    139167
    140 #: inc/settings/glg-lightbox-settings.php:83
     168#: inc/settings/glg-lightbox-settings.php:93
    141169msgid "Show Thumbnails on Bottom"
    142170msgstr "Galerie avec des vignettes dans le bas"
    143171
    144 #: inc/settings/glg-lightbox-settings.php:88
     172#: inc/settings/glg-lightbox-settings.php:97
    145173msgid "Use this option to show / hide gallery thumbnails"
    146174msgstr "Cette option permet d'afficher / masquer les vignettes de la Galerie"
    147175
    148 #: inc/settings/glg-lightbox-settings.php:93
     176#: inc/settings/glg-lightbox-settings.php:102
    149177msgid "Show Thumbnails Caption"
    150178msgstr "Voir la légende de vignettes"
    151179
    152 #: inc/settings/glg-lightbox-settings.php:98
     180#: inc/settings/glg-lightbox-settings.php:106
    153181msgid "Use this option to show / hide gallery thumbnails caption"
    154182msgstr "Cette option permet d'afficher / masquer la légende miniatures Galerie"
    155183
    156 #: inc/settings/glg-lightbox-settings.php:103
     184#: inc/settings/glg-lightbox-settings.php:111
    157185msgid "Fancy Lightbox Caption"
    158 msgstr ""
    159 
    160 #: inc/settings/glg-lightbox-settings.php:108
     186msgstr "Légende élégante de la boîte lumineuse"
     187
     188#: inc/settings/glg-lightbox-settings.php:115
    161189msgid ""
    162190"If Enabled the plugin will automatically convert uppercase the first "
     
    168196"Par exemple : ferrari-f12-berlinetta passera à Ferrari Berlinetta F12"
    169197
    170 #: inc/settings/glg-lightbox-settings.php:113
     198#: inc/settings/glg-lightbox-settings.php:120
    171199msgid "Overlay Color"
    172200msgstr "Couleur de superposition"
    173201
    174 #: inc/settings/glg-lightbox-settings.php:115
     202#: inc/settings/glg-lightbox-settings.php:122
     203#, fuzzy
    175204msgid "Set your gallery overlay color. Default: #000000 "
    176205msgstr ""
    177206"Définissez votre couleur de superposition de Galerie. Par défaut: #000000 "
    178207
    179 #: inc/settings/glg-lightbox-settings.php:130
     208#: inc/settings/glg-lightbox-settings.php:135
     209#, fuzzy
    180210msgid "Save Changes"
    181211msgstr "Sauvegarder les modifications"
     212
     213#: inc/settings/glg-lightbox-settings.php:135
     214msgid "Settings Saved"
     215msgstr "Paramètres sauvegardés"
    182216
    183217#: inc/settings/pages/glg-docs.php:12
     
    186220
    187221#: inc/settings/pages/glg-docs.php:14
     222#, fuzzy
    188223msgid ""
    189224"There are no complicated instructions for using Gallery Lightbox Lite "
     
    196231"comprendre juste en quelques minutes."
    197232
     233#: inc/settings/pages/glg-docs.php:16
     234msgid "For WordPress with Gallery Block"
     235msgstr "Pour WordPress avec bloc de galerie"
     236
     237#: inc/settings/pages/glg-docs.php:18
     238msgid "For WordPress with Classic Editor"
     239msgstr "Pour WordPress avec Classic Editor"
     240
    198241#: inc/settings/pages/glg-free-plugins.php:12
    199242msgid "Free Install Plugins"
     
    219262#. Plugin Name of the plugin/theme
    220263msgid "Gallery Lightbox Lite"
    221 msgstr ""
     264msgstr "Gallery Lightbox Lite"
    222265
    223266#. Plugin URI of the plugin/theme
    224267#. Author URI of the plugin/theme
    225 msgid "http://www.ghozylab.com/plugins/"
    226 msgstr ""
     268msgid "https://ghozylab.com/plugins/"
     269msgstr "https://ghozylab.com/plugins/"
    227270
    228271#. Description of the plugin/theme
     
    231274"with very easy"
    232275msgstr ""
     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"
    233278
    234279#. Author of the plugin/theme
    235280msgid "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"
     281msgstr "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"
     1msgid ""
     2msgstr ""
     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"
    106"Last-Translator: \n"
    117"Language-Team: \n"
     
    1410"Content-Type: text/plain; charset=UTF-8\n"
    1511"Content-Transfer-Encoding: 8bit\n"
    16 "X-Generator: Poedit 2.2.4\n"
    1712"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
    2024msgid "Settings"
    2125msgstr "Pengaturan"
    2226
    23 #: inc/functions/ajax/glg-admin-ajax.php:104
     27#: inc/functions/ajax/glg-admin-ajax.php:114
    2428#, php-format
    2529msgid "By %s"
    2630msgstr "Oleh %s"
    2731
    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
    2934#, php-format
    3035msgid "Install %s now"
    3136msgstr "Menginstal %s sekarang"
    3237
    33 #: inc/functions/ajax/glg-admin-ajax.php:116
     38#: inc/functions/ajax/glg-admin-ajax.php:126
     39#, fuzzy
    3440msgid "Install Now"
    3541msgstr "Pasang sekarang"
    3642
    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
    3845#, php-format
    3946msgid "Update %s now"
    4047msgstr "Perbarui %s sekarang"
    4148
    42 #: inc/functions/ajax/glg-admin-ajax.php:123
     49#: inc/functions/ajax/glg-admin-ajax.php:133
     50#, fuzzy
    4351msgid "Update Now"
    4452msgstr "Memperbarui sekarang"
    4553
    46 #: inc/functions/ajax/glg-admin-ajax.php:129
     54#: inc/functions/ajax/glg-admin-ajax.php:139
    4755msgid "This plugin is already installed and is up to date"
    4856msgstr "Plugin ini sudah terinstal dan up to date"
    4957
    50 #: inc/functions/ajax/glg-admin-ajax.php:129
     58#: inc/functions/ajax/glg-admin-ajax.php:139
     59#, fuzzy
    5160msgctxt "plugin"
    5261msgid "Installed"
    5362msgstr "Sudah Terinstall"
    5463
    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
    5666#, php-format
    5767msgid "More information about %s"
    5868msgstr "Informasi lebih lanjut tentang %s"
    5969
    60 #: inc/functions/ajax/glg-admin-ajax.php:138
     70#: inc/functions/ajax/glg-admin-ajax.php:148
     71#, fuzzy
    6172msgid "More Details"
    6273msgstr "Lebih detail"
    6374
    64 #: inc/functions/ajax/glg-admin-ajax.php:206
     75#: inc/functions/ajax/glg-admin-ajax.php:220
    6576msgid "Last Updated:"
    6677msgstr "Terakhir Diperbarui:"
    6778
    68 #: inc/functions/ajax/glg-admin-ajax.php:207
     79#: inc/functions/ajax/glg-admin-ajax.php:221
    6980#, php-format
    7081msgid "%s ago"
    7182msgstr "%s yang lalu"
    7283
    73 #: inc/functions/ajax/glg-admin-ajax.php:211
    74 #, php-format
     84#: inc/functions/ajax/glg-admin-ajax.php:225
     85#, fuzzy, php-format
    7586msgid "%s download"
    7687msgid_plural "%s downloads"
    77 msgstr[0] "%s Unduhan"
    78 
    79 #: inc/functions/ajax/glg-admin-ajax.php:216
     88msgstr[0] "%s download"
     89
     90#: inc/functions/ajax/glg-admin-ajax.php:230
    8091msgid "Untested with your version of WordPress"
    8192msgstr "Belum diuji dengan versi WordPress Anda"
    8293
    83 #: inc/functions/ajax/glg-admin-ajax.php:218
     94#: inc/functions/ajax/glg-admin-ajax.php:232
    8495msgid "<strong>Incompatible</strong> with your version of WordPress"
    8596msgstr "<strong>Tidak Kompatibel</strong> dengan versi WordPress"
    8697
    87 #: inc/functions/ajax/glg-admin-ajax.php:220
     98#: inc/functions/ajax/glg-admin-ajax.php:234
    8899msgid "<strong>Compatible</strong> with your version of WordPress"
    89100msgstr "<strong>Kompatibel</strong> dengan versi WordPress"
    90101
    91 #: inc/functions/ajax/glg-admin-ajax.php:265
     102#: inc/functions/ajax/glg-admin-ajax.php:308
     103#, fuzzy
    92104msgid ""
    93105"There was an error retrieving the list from the server. Please try again "
    94106"later."
    95 msgstr "Ada kesalahan mengambil daftar dari server. Silakan coba lagi nanti."
     107msgstr ""
     108"Terjadi kesalahan saat mengambil data dari server. Silahkan coba lagi nanti."
    96109
    97110#: inc/gfg-metabox.php:45
    98 msgid "Activate Lightbox?"
    99 msgstr "Aktifkan Lightbox?"
    100 
    101 #: inc/settings/glg-lightbox-settings.php:12
     111msgid "Use Lightbox?"
     112msgstr "Gunakan Lightbox?"
     113
     114#: inc/gfg-metabox.php:50
     115msgid ""
     116"If set to YES, all galleries on this page/post will be opened in the lightbox"
     117msgstr ""
     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
    102122msgid "General"
    103123msgstr "Umum"
    104124
    105 #: inc/settings/glg-lightbox-settings.php:21
     125#. translators: %s: review link
     126#: inc/settings/glg-lightbox-settings.php:24
     127#, php-format
     128msgid ""
     129"If you use Gallery Lightbox Lite and found it useful then please consider "
     130"rating it and leaving your positive feedback %s."
     131msgstr ""
     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
     137msgid "here"
     138msgstr "disini"
     139
     140#: inc/settings/glg-lightbox-settings.php:33
    106141msgid "Enable Lightbox in All Post/Page"
    107142msgstr "Aktifkan Lightbox di Semua Post / Page"
    108143
    109 #: inc/settings/glg-lightbox-settings.php:39
     144#: inc/settings/glg-lightbox-settings.php:50
    110145msgid "Use this option to Enable or Disable the Lightbox in all Post or Page"
    111146msgstr ""
     
    113148"Post  atau Page"
    114149
    115 #: inc/settings/glg-lightbox-settings.php:44
     150#: inc/settings/glg-lightbox-settings.php:55
    116151msgid "Slideshow Auto Play"
    117152msgstr "Slideshow Auto Play"
    118153
    119 #: inc/settings/glg-lightbox-settings.php:49
     154#: inc/settings/glg-lightbox-settings.php:58
    120155msgid "Should the lightbox gallery autoplay on start or not"
    121156msgstr "Haruskah autoplay galeri lightbox pada awal atau tidak"
    122157
    123 #: inc/settings/glg-lightbox-settings.php:54
     158#: inc/settings/glg-lightbox-settings.php:63
    124159msgid "Slideshow Interval"
    125160msgstr "Interval slideshow"
    126161
    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
    132163msgid "The time in seconds when autoplaying a gallery. Default 3 seconds"
    133164msgstr "Waktu dalam detik ketika autoplaying galeri. Standar 3 detik"
    134165
    135 #: inc/settings/glg-lightbox-settings.php:83
     166#: inc/settings/glg-lightbox-settings.php:93
    136167msgid "Show Thumbnails on Bottom"
    137168msgstr "Tampilkan Thumbnail di Bawah"
    138169
    139 #: inc/settings/glg-lightbox-settings.php:88
     170#: inc/settings/glg-lightbox-settings.php:97
    140171msgid "Use this option to show / hide gallery thumbnails"
    141172msgstr "Gunakan opsi ini untuk menunjukkan galeri / menyembunyikan thumbnail"
    142173
    143 #: inc/settings/glg-lightbox-settings.php:93
     174#: inc/settings/glg-lightbox-settings.php:102
    144175msgid "Show Thumbnails Caption"
    145176msgstr "Tampilkan Thumbnail di Bawah"
    146177
    147 #: inc/settings/glg-lightbox-settings.php:98
     178#: inc/settings/glg-lightbox-settings.php:106
    148179msgid "Use this option to show / hide gallery thumbnails caption"
    149180msgstr ""
     
    151182"thumbnail Galeri"
    152183
    153 #: inc/settings/glg-lightbox-settings.php:103
     184#: inc/settings/glg-lightbox-settings.php:111
    154185msgid "Fancy Lightbox Caption"
    155 msgstr ""
    156 
    157 #: inc/settings/glg-lightbox-settings.php:108
     186msgstr "Keterangan Lightbox Mewah"
     187
     188#: inc/settings/glg-lightbox-settings.php:115
     189#, fuzzy
    158190msgid ""
    159191"If Enabled the plugin will automatically convert uppercase the first "
     
    161193"ferrari-f12-berlinetta will change to Ferrari F12 Berlinetta"
    162194msgstr ""
    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
    168201msgid "Overlay Color"
    169202msgstr "Warna Overlay"
    170203
    171 #: inc/settings/glg-lightbox-settings.php:115
     204#: inc/settings/glg-lightbox-settings.php:122
     205#, fuzzy
    172206msgid "Set your gallery overlay color. Default: #000000 "
    173207msgstr "Mengatur warna overlay galeri. Standar: # 000000 "
    174208
    175 #: inc/settings/glg-lightbox-settings.php:130
     209#: inc/settings/glg-lightbox-settings.php:135
    176210msgid "Save Changes"
    177211msgstr "Simpan Perubahan"
     212
     213#: inc/settings/glg-lightbox-settings.php:135
     214msgid "Settings Saved"
     215msgstr "Pengaturan Tersimpan"
    178216
    179217#: inc/settings/pages/glg-docs.php:12
     
    182220
    183221#: inc/settings/pages/glg-docs.php:14
     222#, fuzzy
    184223msgid ""
    185224"There are no complicated instructions for using Gallery Lightbox Lite "
     
    192231"menit."
    193232
     233#: inc/settings/pages/glg-docs.php:16
     234msgid "For WordPress with Gallery Block"
     235msgstr "Untuk WordPress dengan Blok Galeri"
     236
     237#: inc/settings/pages/glg-docs.php:18
     238msgid "For WordPress with Classic Editor"
     239msgstr "Untuk WordPress dengan Editor Klasik"
     240
    194241#: inc/settings/pages/glg-free-plugins.php:12
    195242msgid "Free Install Plugins"
     
    202249
    203250#: inc/settings/pages/glg-premium-plugins.php:11
     251#, fuzzy
    204252msgid "Premium Plugins"
    205253msgstr "Plugin Premium"
     
    215263#. Plugin Name of the plugin/theme
    216264msgid "Gallery Lightbox Lite"
    217 msgstr ""
     265msgstr "Galeri Lightbox Lite"
    218266
    219267#. Plugin URI of the plugin/theme
    220268#. Author URI of the plugin/theme
    221 msgid "http://www.ghozylab.com/plugins/"
    222 msgstr ""
     269msgid "https://ghozylab.com/plugins/"
     270msgstr "https://ghozylab.com/plugins/"
    223271
    224272#. Description of the plugin/theme
     
    227275"with very easy"
    228276msgstr ""
     277"Menampilkan galeri gambar Anda ke dalam penggeser lightbox yang mengagumkan "
     278"dan responsif dengan sangat mudah"
    229279
    230280#. Author of the plugin/theme
    231281msgid "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"
     282msgstr "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"
     1msgid ""
     2msgstr ""
     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"
    106"Last-Translator: \n"
    117"Language-Team: \n"
    12 "Language: it\n"
     8"Language: it_IT\n"
    139"MIME-Version: 1.0\n"
    1410"Content-Type: text/plain; charset=UTF-8\n"
    1511"Content-Transfer-Encoding: 8bit\n"
    16 "X-Generator: Poedit 1.8.7\n"
    1712"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
    2024msgid "Settings"
    2125msgstr "Impostazioni"
    2226
    23 #: inc/functions/ajax/glg-admin-ajax.php:104
    24 #, php-format
     27#: inc/functions/ajax/glg-admin-ajax.php:114
     28#, fuzzy, php-format
    2529msgid "By %s"
    26 msgstr ""
    27 
    28 #: inc/functions/ajax/glg-admin-ajax.php:116
     30msgstr "Da %s"
     31
     32#. translators: 1: Plugin name and version.
     33#: inc/functions/ajax/glg-admin-ajax.php:126
    2934#, php-format
    3035msgid "Install %s now"
    3136msgstr "Installare %s ora"
    3237
    33 #: inc/functions/ajax/glg-admin-ajax.php:116
     38#: inc/functions/ajax/glg-admin-ajax.php:126
     39#, fuzzy
    3440msgid "Install Now"
    35 msgstr "Installa ora"
    36 
    37 #: inc/functions/ajax/glg-admin-ajax.php:123
     41msgstr "Installa Ora"
     42
     43#. translators: 1: Plugin name and version
     44#: inc/functions/ajax/glg-admin-ajax.php:133
    3845#, php-format
    3946msgid "Update %s now"
    4047msgstr "Aggiornare %s ora"
    4148
    42 #: inc/functions/ajax/glg-admin-ajax.php:123
     49#: inc/functions/ajax/glg-admin-ajax.php:133
    4350msgid "Update Now"
    4451msgstr "Aggiorna ora"
    4552
    46 #: inc/functions/ajax/glg-admin-ajax.php:129
     53#: inc/functions/ajax/glg-admin-ajax.php:139
    4754msgid "This plugin is already installed and is up to date"
    4855msgstr "Questo plugin è già installato ed è fino ad oggi"
    4956
    50 #: inc/functions/ajax/glg-admin-ajax.php:129
     57#: inc/functions/ajax/glg-admin-ajax.php:139
    5158msgctxt "plugin"
    5259msgid "Installed"
    5360msgstr "Installato"
    5461
    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
    5664#, php-format
    5765msgid "More information about %s"
    5866msgstr "Maggiori informazioni su %s"
    5967
    60 #: inc/functions/ajax/glg-admin-ajax.php:138
     68#: inc/functions/ajax/glg-admin-ajax.php:148
     69#, fuzzy
    6170msgid "More Details"
    62 msgstr "Più dettagli"
    63 
    64 #: inc/functions/ajax/glg-admin-ajax.php:206
     71msgstr "Maggiori dettagli"
     72
     73#: inc/functions/ajax/glg-admin-ajax.php:220
    6574msgid "Last Updated:"
    6675msgstr "Ultimo aggiornamento:"
    6776
    68 #: inc/functions/ajax/glg-admin-ajax.php:207
     77#: inc/functions/ajax/glg-admin-ajax.php:221
    6978#, php-format
    7079msgid "%s ago"
    7180msgstr "%s fà"
    7281
    73 #: inc/functions/ajax/glg-admin-ajax.php:211
     82#: inc/functions/ajax/glg-admin-ajax.php:225
    7483#, php-format
    7584msgid "%s download"
    7685msgid_plural "%s downloads"
    77 msgstr[0] "Da %s"
    78 msgstr[1] "%s download"
    79 
    80 #: inc/functions/ajax/glg-admin-ajax.php:216
     86msgstr[0] "%s download"
     87msgstr[1] "%s downloads"
     88
     89#: inc/functions/ajax/glg-admin-ajax.php:230
    8190msgid "Untested with your version of WordPress"
    8291msgstr "Non testato con la tua versione di WordPress"
    8392
    84 #: inc/functions/ajax/glg-admin-ajax.php:218
     93#: inc/functions/ajax/glg-admin-ajax.php:232
    8594msgid "<strong>Incompatible</strong> with your version of WordPress"
    8695msgstr "<strong>Incompatibile</strong> con la versione di WordPress"
    8796
    88 #: inc/functions/ajax/glg-admin-ajax.php:220
     97#: inc/functions/ajax/glg-admin-ajax.php:234
    8998msgid "<strong>Compatible</strong> with your version of WordPress"
    9099msgstr "<strong>Compatibile</strong> con la versione di Wordpress"
    91100
    92 #: inc/functions/ajax/glg-admin-ajax.php:265
     101#: inc/functions/ajax/glg-admin-ajax.php:308
     102#, fuzzy
    93103msgid ""
    94104"There was an error retrieving the list from the server. Please try again "
    95105"later."
    96106msgstr ""
    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 "
    98108"riprovare più tardi."
    99109
    100110#: inc/gfg-metabox.php:45
    101 msgid "Activate Lightbox?"
    102 msgstr "Attivare il Lightbox?"
    103 
    104 #: inc/settings/glg-lightbox-settings.php:12
     111msgid "Use Lightbox?"
     112msgstr "Usare Lightbox?"
     113
     114#: inc/gfg-metabox.php:50
     115msgid ""
     116"If set to YES, all galleries on this page/post will be opened in the lightbox"
     117msgstr ""
     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
    105122msgid "General"
    106123msgstr "Generale"
    107124
    108 #: inc/settings/glg-lightbox-settings.php:21
     125#. translators: %s: review link
     126#: inc/settings/glg-lightbox-settings.php:24
     127#, php-format
     128msgid ""
     129"If you use Gallery Lightbox Lite and found it useful then please consider "
     130"rating it and leaving your positive feedback %s."
     131msgstr ""
     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
     136msgid "here"
     137msgstr "qui"
     138
     139#: inc/settings/glg-lightbox-settings.php:33
    109140msgid "Enable Lightbox in All Post/Page"
    110141msgstr "Abilitare la Lightbox in tutti i Post/Pagina"
    111142
    112 #: inc/settings/glg-lightbox-settings.php:39
     143#: inc/settings/glg-lightbox-settings.php:50
    113144msgid "Use this option to Enable or Disable the Lightbox in all Post or Page"
    114145msgstr ""
     
    116147"i Post o pagina"
    117148
    118 #: inc/settings/glg-lightbox-settings.php:44
     149#: inc/settings/glg-lightbox-settings.php:55
    119150msgid "Slideshow Auto Play"
    120151msgstr "Riproduzione automatica di slideshow"
    121152
    122 #: inc/settings/glg-lightbox-settings.php:49
     153#: inc/settings/glg-lightbox-settings.php:58
    123154msgid "Should the lightbox gallery autoplay on start or not"
    124155msgstr "Dovrebbe la lightbox Galleria autoplay su start o non"
    125156
    126 #: inc/settings/glg-lightbox-settings.php:54
     157#: inc/settings/glg-lightbox-settings.php:63
    127158msgid "Slideshow Interval"
    128159msgstr "Intervallo di presentazione"
    129160
    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
    135162msgid "The time in seconds when autoplaying a gallery. Default 3 seconds"
    136163msgstr ""
     
    138165"3 secondi"
    139166
    140 #: inc/settings/glg-lightbox-settings.php:83
     167#: inc/settings/glg-lightbox-settings.php:93
    141168msgid "Show Thumbnails on Bottom"
    142169msgstr "Visualizza le miniature sulla parte inferiore"
    143170
    144 #: inc/settings/glg-lightbox-settings.php:88
     171#: inc/settings/glg-lightbox-settings.php:97
    145172msgid "Use this option to show / hide gallery thumbnails"
    146173msgstr ""
    147174"Utilizzare questa opzione per mostrare / nascondere le miniature Galleria"
    148175
    149 #: inc/settings/glg-lightbox-settings.php:93
     176#: inc/settings/glg-lightbox-settings.php:102
    150177msgid "Show Thumbnails Caption"
    151178msgstr "Visualizza miniature didascalia"
    152179
    153 #: inc/settings/glg-lightbox-settings.php:98
     180#: inc/settings/glg-lightbox-settings.php:106
    154181msgid "Use this option to show / hide gallery thumbnails caption"
    155182msgstr ""
     
    157184"galleria miniature"
    158185
    159 #: inc/settings/glg-lightbox-settings.php:103
     186#: inc/settings/glg-lightbox-settings.php:111
    160187msgid "Fancy Lightbox Caption"
    161 msgstr ""
    162 
    163 #: inc/settings/glg-lightbox-settings.php:108
     188msgstr "Didascalia elegante della Lightbox"
     189
     190#: inc/settings/glg-lightbox-settings.php:115
    164191msgid ""
    165192"If Enabled the plugin will automatically convert uppercase the first "
     
    171198"ferrari-f12-berlinetta-interior cambierà in Ferrari F12 Berlinetta interni"
    172199
    173 #: inc/settings/glg-lightbox-settings.php:113
     200#: inc/settings/glg-lightbox-settings.php:120
    174201msgid "Overlay Color"
    175202msgstr "Colore della sovrapposizione"
    176203
    177 #: inc/settings/glg-lightbox-settings.php:115
     204#: inc/settings/glg-lightbox-settings.php:122
    178205msgid "Set your gallery overlay color. Default: #000000 "
    179206msgstr ""
    180207"Impostare il colore di sovrapposizione di Galleria. Valore predefinito: "
    181 "#000000"
    182 
    183 #: inc/settings/glg-lightbox-settings.php:130
     208"#000000 "
     209
     210#: inc/settings/glg-lightbox-settings.php:135
    184211msgid "Save Changes"
    185212msgstr "Salva le modifiche"
     213
     214#: inc/settings/glg-lightbox-settings.php:135
     215msgid "Settings Saved"
     216msgstr "Impostazioni salvate"
    186217
    187218#: inc/settings/pages/glg-docs.php:12
     
    198229"perché questo plugin è progettato per rendere tutto facile. Si prega di "
    199230"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
     234msgid "For WordPress with Gallery Block"
     235msgstr "Per WordPress con blocco galleria"
     236
     237#: inc/settings/pages/glg-docs.php:18
     238msgid "For WordPress with Classic Editor"
     239msgstr "Per WordPress con Classic Editor"
    201240
    202241#: inc/settings/pages/glg-free-plugins.php:12
     242#, fuzzy
    203243msgid "Free Install Plugins"
    204 msgstr "Installare I Plugin"
     244msgstr "Installa I Plugin"
    205245
    206246#: inc/settings/pages/glg-free-plugins.php:16
     
    223263#. Plugin Name of the plugin/theme
    224264msgid "Gallery Lightbox Lite"
    225 msgstr ""
     265msgstr "Galleria Lightbox Lite"
    226266
    227267#. Plugin URI of the plugin/theme
    228268#. Author URI of the plugin/theme
    229 msgid "http://www.ghozylab.com/plugins/"
    230 msgstr ""
     269msgid "https://ghozylab.com/plugins/"
     270msgstr "https://ghozylab.com/plugins/"
    231271
    232272#. Description of the plugin/theme
     
    235275"with very easy"
    236276msgstr ""
     277"Visualizza la tua galleria di immagini nel fantastico e reattivo slider "
     278"lightbox con una facilità molto semplice"
    237279
    238280#. Author of the plugin/theme
    239281msgid "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"
     282msgstr "GhozyLab, Inc."
  • gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider-ms_MY.po

    r1376309 r3446163  
    11msgid ""
    22msgstr ""
    3 "Plural-Forms: nplurals=1; plural=0;\n"
    43"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"
    77"Language-Team: \n"
     8"Language: ms_MY\n"
    89"MIME-Version: 1.0\n"
    910"Content-Type: text/plain; charset=UTF-8\n"
    1011"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"
    1214"X-Poedit-Basepath: ..\n"
     15"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
    1316"X-Poedit-WPHeader: gallery-lightbox-lite.php\n"
    1417"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"
    2020"X-Poedit-SearchPath-0: .\n"
    21 "X-Poedit-SearchPathExcluded-0: *.js\n"
    22 
    23 #: gallery-lightbox-lite.php:90
     21"X-Poedit-SearchPathExcluded-0: *.min.js\n"
     22
     23#: gallery-lightbox-lite.php:89
    2424msgid "Settings"
    2525msgstr "Tetapan"
    2626
    27 #: inc/functions/ajax/glg-admin-ajax.php:104
     27#: inc/functions/ajax/glg-admin-ajax.php:114
    2828#, php-format
    2929msgid "By %s"
    3030msgstr "Mengikut %s"
    3131
    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
    3334#, php-format
    3435msgid "Install %s now"
    3536msgstr "Memasang %s sekarang"
    3637
    37 #: inc/functions/ajax/glg-admin-ajax.php:116
     38#: inc/functions/ajax/glg-admin-ajax.php:126
    3839msgid "Install Now"
    3940msgstr "Memasang sekarang"
    4041
    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
    4244#, php-format
    4345msgid "Update %s now"
    4446msgstr "Kemas kinikan %s sekarang"
    4547
    46 #: inc/functions/ajax/glg-admin-ajax.php:123
     48#: inc/functions/ajax/glg-admin-ajax.php:133
    4749msgid "Update Now"
    4850msgstr "Kemas Kini Sekarang"
    4951
    50 #: inc/functions/ajax/glg-admin-ajax.php:129
     52#: inc/functions/ajax/glg-admin-ajax.php:139
    5153msgid "This plugin is already installed and is up to date"
    5254msgstr "Plugin ini telah dipasang dan sehingga kini"
    5355
    54 #: inc/functions/ajax/glg-admin-ajax.php:129
     56#: inc/functions/ajax/glg-admin-ajax.php:139
    5557msgctxt "plugin"
    5658msgid "Installed"
    5759msgstr "Dipasang"
    5860
    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
    6063#, php-format
    6164msgid "More information about %s"
    6265msgstr "Maklumat lanjut mengenai %s"
    6366
    64 #: inc/functions/ajax/glg-admin-ajax.php:138
     67#: inc/functions/ajax/glg-admin-ajax.php:148
    6568msgid "More Details"
    6669msgstr "Maklumat lanjut"
    6770
    68 #: inc/functions/ajax/glg-admin-ajax.php:206
     71#: inc/functions/ajax/glg-admin-ajax.php:220
    6972msgid "Last Updated:"
    7073msgstr "Terakhir dikemaskini:"
    7174
    72 #: inc/functions/ajax/glg-admin-ajax.php:207
     75#: inc/functions/ajax/glg-admin-ajax.php:221
    7376#, php-format
    7477msgid "%s ago"
    7578msgstr "%s yang lalu"
    7679
    77 #: inc/functions/ajax/glg-admin-ajax.php:211
    78 #, php-format
     80#: inc/functions/ajax/glg-admin-ajax.php:225
     81#, fuzzy, php-format
    7982msgid "%s download"
    8083msgid_plural "%s downloads"
    81 msgstr[0] ""
    82 
    83 #: inc/functions/ajax/glg-admin-ajax.php:216
     84msgstr[0] "%s muat turun"
     85
     86#: inc/functions/ajax/glg-admin-ajax.php:230
    8487msgid "Untested with your version of WordPress"
    8588msgstr "Belum dicuba dengan versi WordPress"
    8689
    87 #: inc/functions/ajax/glg-admin-ajax.php:218
     90#: inc/functions/ajax/glg-admin-ajax.php:232
    8891msgid "<strong>Incompatible</strong> with your version of WordPress"
    8992msgstr "<strong>Tidak serasi</strong> dengan versi WordPress"
    9093
    91 #: inc/functions/ajax/glg-admin-ajax.php:220
     94#: inc/functions/ajax/glg-admin-ajax.php:234
    9295msgid "<strong>Compatible</strong> with your version of WordPress"
    9396msgstr "<strong>Serasi</strong> dengan versi WordPress"
    9497
    95 #: inc/functions/ajax/glg-admin-ajax.php:265
     98#: inc/functions/ajax/glg-admin-ajax.php:308
    9699msgid ""
    97100"There was an error retrieving the list from the server. Please try again "
     
    101104
    102105#: inc/gfg-metabox.php:45
    103 msgid "Activate Lightbox?"
    104 msgstr "Aktifkan Lightbox?"
    105 
    106 #: inc/settings/glg-lightbox-settings.php:12
     106msgid "Use Lightbox?"
     107msgstr "Gunakan Peti Cahaya?"
     108
     109#: inc/gfg-metabox.php:50
     110msgid ""
     111"If set to YES, all galleries on this page/post will be opened in the lightbox"
     112msgstr ""
     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
    107117msgid "General"
    108118msgstr "Umum"
    109119
    110 #: inc/settings/glg-lightbox-settings.php:21
     120#. translators: %s: review link
     121#: inc/settings/glg-lightbox-settings.php:24
     122#, php-format
     123msgid ""
     124"If you use Gallery Lightbox Lite and found it useful then please consider "
     125"rating it and leaving your positive feedback %s."
     126msgstr ""
     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
     132msgid "here"
     133msgstr "di sini"
     134
     135#: inc/settings/glg-lightbox-settings.php:33
    111136msgid "Enable Lightbox in All Post/Page"
    112137msgstr "Membolehkan Lightbox di semua selepas/halaman"
    113138
    114 #: inc/settings/glg-lightbox-settings.php:39
     139#: inc/settings/glg-lightbox-settings.php:50
    115140msgid "Use this option to Enable or Disable the Lightbox in all Post or Page"
    116141msgstr ""
     
    118143"atau Laman"
    119144
    120 #: inc/settings/glg-lightbox-settings.php:44
     145#: inc/settings/glg-lightbox-settings.php:55
    121146msgid "Slideshow Auto Play"
    122147msgstr "Tayangan slaid Auto Main"
    123148
    124 #: inc/settings/glg-lightbox-settings.php:49
     149#: inc/settings/glg-lightbox-settings.php:58
    125150msgid "Should the lightbox gallery autoplay on start or not"
    126151msgstr "Harus AutoMain Galeri lightbox pada mula atau tidak"
    127152
    128 #: inc/settings/glg-lightbox-settings.php:54
     153#: inc/settings/glg-lightbox-settings.php:63
    129154msgid "Slideshow Interval"
    130155msgstr "Tempoh tayangan slaid"
    131156
    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
    137158msgid "The time in seconds when autoplaying a gallery. Default 3 seconds"
    138159msgstr "Masa saat apabila autoplaying sebuah galeri. Lalai 3 saat"
    139160
    140 #: inc/settings/glg-lightbox-settings.php:83
     161#: inc/settings/glg-lightbox-settings.php:93
    141162msgid "Show Thumbnails on Bottom"
    142163msgstr "Tayangkan lakaran kenit di bawah"
    143164
    144 #: inc/settings/glg-lightbox-settings.php:88
     165#: inc/settings/glg-lightbox-settings.php:97
    145166msgid "Use this option to show / hide gallery thumbnails"
    146167msgstr "Gunakan pilihan ini untuk Papar / Sembunyi Galeri thumbnails"
    147168
    148 #: inc/settings/glg-lightbox-settings.php:93
     169#: inc/settings/glg-lightbox-settings.php:102
    149170msgid "Show Thumbnails Caption"
    150171msgstr "Tayang kapsyen lakaran kenit"
    151172
    152 #: inc/settings/glg-lightbox-settings.php:98
     173#: inc/settings/glg-lightbox-settings.php:106
    153174msgid "Use this option to show / hide gallery thumbnails caption"
    154175msgstr ""
    155176"Gunakan pilihan ini untuk Papar / Sembunyi kapsyen lakaran kenit Galeri"
    156177
    157 #: inc/settings/glg-lightbox-settings.php:103
     178#: inc/settings/glg-lightbox-settings.php:111
    158179msgid "Fancy Lightbox Caption"
    159180msgstr "Fancy Lightbox kapsyen"
    160181
    161 #: inc/settings/glg-lightbox-settings.php:108
     182#: inc/settings/glg-lightbox-settings.php:115
    162183msgid ""
    163184"If Enabled the plugin will automatically convert uppercase the first "
     
    169190"contoh: ferrari-f12-berlinetta akan bertukar kepada Ferrari F12 Berlinetta"
    170191
    171 #: inc/settings/glg-lightbox-settings.php:113
     192#: inc/settings/glg-lightbox-settings.php:120
    172193msgid "Overlay Color"
    173194msgstr "Warna bertindih"
    174195
    175 #: inc/settings/glg-lightbox-settings.php:115
     196#: inc/settings/glg-lightbox-settings.php:122
    176197msgid "Set your gallery overlay color. Default: #000000 "
    177 msgstr "Menetapkan warna bertindih Galeri anda. Lalai: #000000"
    178 
    179 #: inc/settings/glg-lightbox-settings.php:130
     198msgstr "Menetapkan warna bertindih Galeri anda. Lalai: #000000 "
     199
     200#: inc/settings/glg-lightbox-settings.php:135
    180201msgid "Save Changes"
    181202msgstr "Save Perubahan"
    182203
     204#: inc/settings/glg-lightbox-settings.php:135
     205msgid "Settings Saved"
     206msgstr "Tetapan Disimpan"
     207
    183208#: inc/settings/pages/glg-docs.php:12
    184209msgid "Documentation"
    185 msgstr "dokumentasi"
     210msgstr "Dokumentasi"
    186211
    187212#: inc/settings/pages/glg-docs.php:14
     
    194219"plugin ini direka untuk memudahkan semua. Sila menonton berikut video dan "
    195220"kami percaya bahawa anda akan dengan mudah memahami ia hanya dalam minit."
     221
     222#: inc/settings/pages/glg-docs.php:16
     223msgid "For WordPress with Gallery Block"
     224msgstr "Untuk WordPress dengan Blok Galeri"
     225
     226#: inc/settings/pages/glg-docs.php:18
     227msgid "For WordPress with Classic Editor"
     228msgstr "Untuk WordPress dengan Editor Klasik"
    196229
    197230#: inc/settings/pages/glg-free-plugins.php:12
     
    222255#. Plugin URI of the plugin/theme
    223256#. Author URI of the plugin/theme
    224 msgid "http://www.ghozylab.com/plugins/"
    225 msgstr "http://www.ghozylab.com/plugins/"
     257msgid "https://ghozylab.com/plugins/"
     258msgstr "https://ghozylab.com/plugins/"
    226259
    227260#. Description of the plugin/theme
  • gallery-lightbox-slider/trunk/languages/gallery-lightbox-slider.pot

    r2229503 r3446163  
    22msgid ""
    33msgstr ""
    4 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
    54"Project-Id-Version: Gallery Lightbox Lite\n"
    6 "POT-Creation-Date: 2020-01-18 11:38+0700\n"
     5"POT-Creation-Date: 2026-01-20 12:16+0700\n"
    76"PO-Revision-Date: 2016-03-13 06:42+0700\n"
    87"Last-Translator: \n"
     
    1110"Content-Type: text/plain; charset=UTF-8\n"
    1211"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"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-WPHeader: gallery-lightbox-lite.php\n"
    1616"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"
    2019"X-Poedit-SearchPath-0: .\n"
    2120"X-Poedit-SearchPathExcluded-0: *.js\n"
     
    2524msgstr ""
    2625
    27 #: inc/functions/ajax/glg-admin-ajax.php:104
     26#: inc/functions/ajax/glg-admin-ajax.php:114
    2827#, php-format
    2928msgid "By %s"
    3029msgstr ""
    3130
    32 #: inc/functions/ajax/glg-admin-ajax.php:116
     31#: inc/functions/ajax/glg-admin-ajax.php:126
    3332#, php-format
    3433msgid "Install %s now"
    3534msgstr ""
    3635
    37 #: inc/functions/ajax/glg-admin-ajax.php:116
     36#: inc/functions/ajax/glg-admin-ajax.php:126
    3837msgid "Install Now"
    3938msgstr ""
    4039
    41 #: inc/functions/ajax/glg-admin-ajax.php:123
     40#: inc/functions/ajax/glg-admin-ajax.php:133
    4241#, php-format
    4342msgid "Update %s now"
    4443msgstr ""
    4544
    46 #: inc/functions/ajax/glg-admin-ajax.php:123
     45#: inc/functions/ajax/glg-admin-ajax.php:133
    4746msgid "Update Now"
    4847msgstr ""
    4948
    50 #: inc/functions/ajax/glg-admin-ajax.php:129
     49#: inc/functions/ajax/glg-admin-ajax.php:139
    5150msgid "This plugin is already installed and is up to date"
    5251msgstr ""
    5352
    54 #: inc/functions/ajax/glg-admin-ajax.php:129
     53#: inc/functions/ajax/glg-admin-ajax.php:139
    5554msgctxt "plugin"
    5655msgid "Installed"
    5756msgstr ""
    5857
    59 #: inc/functions/ajax/glg-admin-ajax.php:138
     58#: inc/functions/ajax/glg-admin-ajax.php:148
    6059#, php-format
    6160msgid "More information about %s"
    6261msgstr ""
    6362
    64 #: inc/functions/ajax/glg-admin-ajax.php:138
     63#: inc/functions/ajax/glg-admin-ajax.php:148
    6564msgid "More Details"
    6665msgstr ""
    6766
    68 #: inc/functions/ajax/glg-admin-ajax.php:206
     67#: inc/functions/ajax/glg-admin-ajax.php:220
    6968msgid "Last Updated:"
    7069msgstr ""
    7170
    72 #: inc/functions/ajax/glg-admin-ajax.php:207
     71#: inc/functions/ajax/glg-admin-ajax.php:221
    7372#, php-format
    7473msgid "%s ago"
    7574msgstr ""
    7675
    77 #: inc/functions/ajax/glg-admin-ajax.php:211
     76#: inc/functions/ajax/glg-admin-ajax.php:225
    7877#, php-format
    7978msgid "%s download"
     
    8281msgstr[1] ""
    8382
    84 #: inc/functions/ajax/glg-admin-ajax.php:216
     83#: inc/functions/ajax/glg-admin-ajax.php:230
    8584msgid "Untested with your version of WordPress"
    8685msgstr ""
    8786
    88 #: inc/functions/ajax/glg-admin-ajax.php:218
     87#: inc/functions/ajax/glg-admin-ajax.php:232
    8988msgid "<strong>Incompatible</strong> with your version of WordPress"
    9089msgstr ""
    9190
    92 #: inc/functions/ajax/glg-admin-ajax.php:220
     91#: inc/functions/ajax/glg-admin-ajax.php:234
    9392msgid "<strong>Compatible</strong> with your version of WordPress"
    9493msgstr ""
    9594
    96 #: inc/functions/ajax/glg-admin-ajax.php:294
     95#: inc/functions/ajax/glg-admin-ajax.php:308
    9796msgid ""
    9897"There was an error retrieving the list from the server. Please try again "
     
    109108msgstr ""
    110109
    111 #: inc/settings/glg-lightbox-settings.php:12
     110#: inc/settings/glg-lightbox-settings.php:14
    112111msgid "General"
    113112msgstr ""
    114113
    115 #: inc/settings/glg-lightbox-settings.php:21
     114#: inc/settings/glg-lightbox-settings.php:24
     115#, php-format
     116msgid ""
     117"If you use Gallery Lightbox Lite and found it useful then please consider "
     118"rating it and leaving your positive feedback %s."
     119msgstr ""
     120
     121#: inc/settings/glg-lightbox-settings.php:26
     122msgid "here"
     123msgstr ""
     124
     125#: inc/settings/glg-lightbox-settings.php:33
    116126msgid "Enable Lightbox in All Post/Page"
    117127msgstr ""
    118128
    119 #: inc/settings/glg-lightbox-settings.php:38
     129#: inc/settings/glg-lightbox-settings.php:50
    120130msgid "Use this option to Enable or Disable the Lightbox in all Post or Page"
    121131msgstr ""
    122132
    123 #: inc/settings/glg-lightbox-settings.php:43
     133#: inc/settings/glg-lightbox-settings.php:55
    124134msgid "Slideshow Auto Play"
    125135msgstr ""
    126136
    127 #: inc/settings/glg-lightbox-settings.php:46
     137#: inc/settings/glg-lightbox-settings.php:58
    128138msgid "Should the lightbox gallery autoplay on start or not"
    129139msgstr ""
    130140
    131 #: inc/settings/glg-lightbox-settings.php:51
     141#: inc/settings/glg-lightbox-settings.php:63
    132142msgid "Slideshow Interval"
    133143msgstr ""
    134144
    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
    140146msgid "The time in seconds when autoplaying a gallery. Default 3 seconds"
    141147msgstr ""
    142148
    143 #: inc/settings/glg-lightbox-settings.php:80
     149#: inc/settings/glg-lightbox-settings.php:93
    144150msgid "Show Thumbnails on Bottom"
    145151msgstr ""
    146152
    147 #: inc/settings/glg-lightbox-settings.php:84
     153#: inc/settings/glg-lightbox-settings.php:97
    148154msgid "Use this option to show / hide gallery thumbnails"
    149155msgstr ""
    150156
    151 #: inc/settings/glg-lightbox-settings.php:89
     157#: inc/settings/glg-lightbox-settings.php:102
    152158msgid "Show Thumbnails Caption"
    153159msgstr ""
    154160
    155 #: inc/settings/glg-lightbox-settings.php:93
     161#: inc/settings/glg-lightbox-settings.php:106
    156162msgid "Use this option to show / hide gallery thumbnails caption"
    157163msgstr ""
    158164
    159 #: inc/settings/glg-lightbox-settings.php:98
     165#: inc/settings/glg-lightbox-settings.php:111
    160166msgid "Fancy Lightbox Caption"
    161167msgstr ""
    162168
    163 #: inc/settings/glg-lightbox-settings.php:102
     169#: inc/settings/glg-lightbox-settings.php:115
    164170msgid ""
    165171"If Enabled the plugin will automatically convert uppercase the first "
     
    168174msgstr ""
    169175
    170 #: inc/settings/glg-lightbox-settings.php:107
     176#: inc/settings/glg-lightbox-settings.php:120
    171177msgid "Overlay Color"
    172178msgstr ""
    173179
    174 #: inc/settings/glg-lightbox-settings.php:109
     180#: inc/settings/glg-lightbox-settings.php:122
    175181msgid "Set your gallery overlay color. Default: #000000 "
    176182msgstr ""
    177183
    178 #: inc/settings/glg-lightbox-settings.php:122
     184#: inc/settings/glg-lightbox-settings.php:135
    179185msgid "Save Changes"
     186msgstr ""
     187
     188#: inc/settings/glg-lightbox-settings.php:135
     189msgid "Settings Saved"
    180190msgstr ""
    181191
  • gallery-lightbox-slider/trunk/readme.txt

    r3407399 r3446163  
    55Requires at least: 3.3
    66Tested up to: 6.9
    7 Stable tag: 1.0.0.41
     7Stable tag: 1.0.0.43
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5454* Polish
    5555
     56and many more...
     57
    5658> #### **NOTE**
    5759> 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>.
     
    8890= How to use Gallery Lightbox Plugin? =
    8991
    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.
     92There 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
     94This is for WordPress with Gallery Block
     95[youtube https://www.youtube.com/watch?v=NTli93b3i2I]
     96
     97This is for WordPress with Classic Editor
     98[youtube https://www.youtube.com/watch?v=-64V-cthkes]
    9199
    92100= How can I get support? =
     
    1091172. On Backend
    110118
     119== Other Notes ==
     120
     121= Gallery Lightbox step by step guide =
     122
     123There 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
    111130== Upgrade Notice ==
    112131
    113 = 1.0.0.41 =
     132= 1.0.0.43 =
    114133
    115134IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW!
    116135
    117136== 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
    118144
    119145= 1.0.0.41 =
Note: See TracChangeset for help on using the changeset viewer.