Plugin Directory

Changeset 3277296


Ignore:
Timestamp:
04/19/2025 06:29:01 PM (8 months ago)
Author:
numeeja
Message:

v1.3.2

Location:
cubecolour-caboodle
Files:
1 added
12 edited

Legend:

Unmodified
Added
Removed
  • cubecolour-caboodle/tags/1.3.2/includes/modules/anti-clickjack.php

    r3277289 r3277296  
    66 */
    77function cc_caboodle_anti_clickjack_header() {
    8     if ( !is_customize_preview() ) {
    9         header( "X-Frame-Options: SAMEORIGIN" );
    10         header( "Content-Security-Policy: frame-ancestors 'none'" );
     8    // Allow framing in specific admin contexts
     9    if ( is_customize_preview() || is_admin() ) {
     10        return;
    1111    }
     12
     13    // Allow same-origin framing, block others
     14    header( "X-Frame-Options: SAMEORIGIN" );
     15    header( "Content-Security-Policy: frame-ancestors 'self'" );
    1216}
    1317add_action( "send_headers", "cc_caboodle_anti_clickjack_header" );
  • cubecolour-caboodle/trunk/css/admin.css

    r3116538 r3277296  
    1717.cubecolour-minilogo {
    1818    text-decoration: none;
    19 }
    20 
    21 .cubecolour-minilogo:before {
    22     display: inline-block;
    23     content: '';
    24     position: relative;
    25     top: 6px;
    26     display: inline-block;
    27     margin-right: 2px;
    28     width: 18px;
    29     height: 18px;
    30     background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e10a92' fill-rule='evenodd'%3E%3Cpath transform='rotate(20 9 9)' d='M6.662 6.662H11.337V11.337H6.662z'/%3E%3Cpath d='M0 4.803L13.197 0 18 13.197 4.803 18 0 4.803zm4.33-.473v9.363h9.363V4.33H4.33z'/%3E%3C/g%3E%3C/svg%3E");
     19    color: #666;
     20}
     21
     22@keyframes changeColor {
     23    0% { fill: #e10a92; }
     24    25% { fill: #f29b30; }
     25    50% { fill: #34c38f; }
     26    75% { fill: #007bff; }
     27    100% { fill: #e10a92; }
     28}
     29
     30.cubecolour-minilogo svg {
     31    position: relative;
     32    top: 5px;
     33}
     34
     35.cubecolour-minilogo svg g {
     36    animation: changeColor 5s infinite;
    3137}
    3238
  • cubecolour-caboodle/trunk/cubecolour-caboodle.php

    r3276931 r3277296  
    55Description: An agglomeration of useful functions
    66Author: cubecolour
    7 Version: 1.3.1
     7Version: 1.3.2
    88License: GPLv2 or later
    99Text Domain: cubecolour-caboodle
     
    4343 *
    4444 */
    45 define( 'CC_CABOODLE_PLUGIN_VERSION', '1.3.1' );
     45define( 'CC_CABOODLE_PLUGIN_VERSION', '1.3.2' );
    4646define( 'CC_CABOODLE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    4747define( 'CC_CABOODLE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
     
    166166
    167167    /**********************\
    168     *                      *
     168    *                     *
    169169    *   CABOODLE MODULES   *
    170     *                      *
     170    *                     *
    171171    \**********************/
    172172
     
    206206if ( cc_caboodle( 'private_site', '' ) == '1' ) {
    207207    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/private-site.php' );
     208}
     209
     210/**
     211 * Just-in-time preloading. preloads a page right before a user clicks on it by adding the Instant page script as a module
     212 *
     213 */
     214if ( cc_caboodle( 'preloading', '' ) == '1' ) {
     215    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/preloading.php' );
    208216}
    209217
     
    507515
    508516/**
     517 * No comments
     518 *
     519 */
     520if ( cc_caboodle( 'no_comments', '' ) == '1' ) {
     521    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/no-comments.php' );
     522}
     523
     524/**
    509525 * No author archives
    510526 *
  • cubecolour-caboodle/trunk/includes/admin.php

    r3276144 r3277296  
    8383    }
    8484
     85    $cclogo = '<span class="cubecolour-minilogo">
     86        <svg width="18" height="18" xmlns="http://www.w3.org/2000/svg">
     87            <g fill="#e10a92" fill-rule="evenodd">
     88                <path transform="rotate(20 9 9)" d="M6.662 6.662H11.337V11.337H6.662z" />
     89                <path d="M0 4.803L13.197 0 18 13.197 4.803 18 0 4.803zm4.33-.473v9.363h9.363V4.33z" />
     90            </g>
     91        </svg>
     92    </span>';
     93
     94    $allowed_tags = array(
     95        'span' => array(
     96            'class' => array(),
     97        ),
     98        'svg' => array(
     99            'width' => array(),
     100            'height' => array(),
     101            'xmlns' => array(),
     102        ),
     103        'g' => array(
     104            'fill' => array(),
     105            'fill-rule' => array(),
     106        ),
     107        'path' => array(
     108            'transform' => array(),
     109            'd' => array(),
     110        ),
     111    );
    85112   
    86113    ?>
    87114    <div class="wrap">
    88115        <h2>Caboodle</h2>
    89 
    90         <div class="devlink"><a href="https://cubecolour.co.uk/wp" class="cubecolour-minilogo">cubecolour</a></div>
     116   
     117        <div class="devlink">
     118            <a href="https://cubecolour.co.uk/wp" class="cubecolour-minilogo"><?php echo wp_kses($cclogo, $allowed_tags); ?>cubecolour</a>
     119        </div>
     120       
    91121       
    92122        <div class="admintabs">
     
    363393                        </a>
    364394                    </li>
     395                   
     396                    <li class="<?php cc_caboodle_module_classes( 'no_comments' ) ?>">
     397                        <a class="module-content" href="<?php cc_caboodle_module_url( 'no_comments' ) ?>">
     398                            <h2><?php esc_html_e( 'No comments', 'cubecolour-caboodle' ); ?></h2>
     399                            <p><?php esc_html_e( 'Removes support for comments', 'cubecolour-caboodle' ); ?></p>
     400                        </a>
     401                    </li>
     402                   
    365403                    <li class="<?php cc_caboodle_module_classes( 'no_author_archives' ) ?>">
    366404                        <a class="module-content" href="<?php cc_caboodle_module_url( 'no_author_archives' ) ?>">
     
    587625
    588626    if ( isset( $_POST['cc_caboodle_export_nonce'] ) ) {
    589         // Unslash and sanitize the nonce
    590         $nonce = sanitize_text_field( wp_unslash( $_POST['cc_caboodle_export_nonce'] ) );
     627        // Unslash and sanitize the nonce
     628        $nonce = sanitize_text_field( wp_unslash( $_POST['cc_caboodle_export_nonce'] ) );
    591629   
    592         // Verify the nonce
    593         if ( ! wp_verify_nonce( $nonce, 'cc_caboodle_export_nonce' ) ) {
    594             return;
    595         }
     630        // Verify the nonce
     631        if ( ! wp_verify_nonce( $nonce, 'cc_caboodle_export_nonce' ) ) {
     632            return;
     633        }
    596634    }
    597635
     
    624662function cc_caboodle_process_settings_import() {
    625663
    626     if( empty( $_POST['cc_caboodle_action'] ) || 'import_settings' != $_POST['cc_caboodle_action'] )
    627         return;
    628 
    629     // Check if nonce is set and valid
    630     if( ! isset( $_POST['cc_caboodle_import_nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['cc_caboodle_import_nonce'] ) ), 'cc_caboodle_import_nonce' ) )
    631         wp_die( esc_html__( 'Error: Nonce verification has failed', 'cubecolour-caboodle' ) );
    632 
    633     if( ! current_user_can( 'manage_options' ) )
    634         return;
    635 
    636     // Check if import file name is set
    637     if ( isset( $_FILES['import_file']['name'] ) ) {
    638         // Unslash and sanitize the file name
    639         $import_file_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['name'] ) );
    640         $extension = end( explode( '.', $import_file_name ) );
    641 
    642         if( $extension != 'json' ) {
    643             wp_die( esc_html__( 'Please upload a valid .json file', 'cubecolour-caboodle' ) );
    644         }
    645 
    646         // Check if import file tmp_name is set
    647         if ( isset( $_FILES['import_file']['tmp_name'] ) ) {
    648             // Unslash and sanitize the file tmp_name
    649             $import_file_tmp_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['tmp_name'] ) );
    650 
    651             if( empty( $import_file_tmp_name ) ) {
    652                 wp_die( esc_html__( 'Please upload a file to import', 'cubecolour-caboodle' ) );
    653             }
    654 
    655             // Use WordPress Filesystem API
    656             WP_Filesystem();
    657             global $wp_filesystem;
    658 
    659             $import = json_decode( $wp_filesystem->get_contents( $import_file_tmp_name ), true );
    660 
    661             // Pass the array values through the sanitize function (in helper-functions.php)
    662             $import = cc_caboodle_sanitize_array_values( $import );
    663 
    664             // Get list of expected keys
    665             $keys_list = cc_caboodle_initial_values();
    666 
    667             // Step over all items in the import array and delete any elements where the corresponding key does not exist in the keys list from the initial values
    668             foreach ( $import as $key => $val ) {
    669 
    670                 if ( !array_key_exists( $key, $keys_list ) ) {
    671                     unset( $import[$key] );
    672                 }
    673             }
    674 
    675             // Reorder the array by keys in ascending alphabetical order
    676             ksort( $import );
    677 
    678             update_option( 'cc_caboodle', cc_caboodle_sanitize_array_values( $import ) );
    679 
    680             wp_safe_redirect( admin_url( 'options-general.php?page=caboodle&import=true&_wpnonce=' . wp_create_nonce('cc_caboodle_import_nonce') ) );
    681            
    682             exit;
    683         }
    684     }
     664    if( empty( $_POST['cc_caboodle_action'] ) || 'import_settings' != $_POST['cc_caboodle_action'] )
     665        return;
     666
     667    // Check if nonce is set and valid
     668    if( ! isset( $_POST['cc_caboodle_import_nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['cc_caboodle_import_nonce'] ) ), 'cc_caboodle_import_nonce' ) )
     669        wp_die( esc_html__( 'Error: Nonce verification has failed', 'cubecolour-caboodle' ) );
     670
     671    if( ! current_user_can( 'manage_options' ) )
     672        return;
     673
     674    // Check if import file name is set
     675    if ( isset( $_FILES['import_file']['name'] ) ) {
     676        // Unslash and sanitize the file name
     677        $import_file_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['name'] ) );
     678        $extension = end( explode( '.', $import_file_name ) );
     679
     680        if( $extension != 'json' ) {
     681            wp_die( esc_html__( 'Please upload a valid .json file', 'cubecolour-caboodle' ) );
     682        }
     683
     684        // Check if import file tmp_name is set
     685        if ( isset( $_FILES['import_file']['tmp_name'] ) ) {
     686            // Unslash and sanitize the file tmp_name
     687            $import_file_tmp_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['tmp_name'] ) );
     688
     689            if( empty( $import_file_tmp_name ) ) {
     690                wp_die( esc_html__( 'Please upload a file to import', 'cubecolour-caboodle' ) );
     691            }
     692
     693            // Use WordPress Filesystem API
     694            WP_Filesystem();
     695            global $wp_filesystem;
     696
     697            $import = json_decode( $wp_filesystem->get_contents( $import_file_tmp_name ), true );
     698
     699            // Pass the array values through the sanitize function (in helper-functions.php)
     700            $import = cc_caboodle_sanitize_array_values( $import );
     701
     702            // Get list of expected keys
     703            $keys_list = cc_caboodle_initial_values();
     704
     705            // Step over all items in the import array and delete any elements where the corresponding key does not exist in the keys list from the initial values
     706            foreach ( $import as $key => $val ) {
     707
     708                if ( !array_key_exists( $key, $keys_list ) ) {
     709                    unset( $import[$key] );
     710                }
     711            }
     712
     713            // Reorder the array by keys in ascending alphabetical order
     714            ksort( $import );
     715
     716            update_option( 'cc_caboodle', cc_caboodle_sanitize_array_values( $import ) );
     717
     718            wp_safe_redirect( admin_url( 'options-general.php?page=caboodle&import=true&_wpnonce=' . wp_create_nonce('cc_caboodle_import_nonce') ) );
     719           
     720            exit;
     721        }
     722    }
    685723}
    686724add_action( 'admin_init', 'cc_caboodle_process_settings_import' );
     
    705743 */
    706744if ( isset( $_GET['import'] ) && ( 'true' === $_GET['import'] ) && isset( $_GET['_wpnonce'] ) ) {
    707     // Unslash and sanitize the nonce
    708     $nonce = sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) );
    709 
    710     // Verify the nonce
    711     if ( wp_verify_nonce( $nonce, 'cc_caboodle_import_nonce' ) ) {
    712         add_action( 'admin_notices', 'cc_caboodle_import_success_notice' );
    713     }
     745    // Unslash and sanitize the nonce
     746    $nonce = sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) );
     747
     748    // Verify the nonce
     749    if ( wp_verify_nonce( $nonce, 'cc_caboodle_import_nonce' ) ) {
     750        add_action( 'admin_notices', 'cc_caboodle_import_success_notice' );
     751    }
    714752}
  • cubecolour-caboodle/trunk/includes/customizer.php

    r3276144 r3277296  
    26322632
    26332633    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
     2634     * No comments section
     2635     *
     2636     */
     2637    $wp_customize->add_section( 'cc_caboodle_no_comments_section',
     2638        array(
     2639            'title'             => esc_html__( 'No comments', 'cubecolour-caboodle' ),
     2640            'description'       => esc_html__( 'Removes support for comments', 'cubecolour-caboodle' ),
     2641            'panel'             => 'cc_caboodle_panel'
     2642        )
     2643    );
     2644
     2645    $wp_customize->add_setting('cc_caboodle[no_comments]', array(
     2646        'default'          => false,
     2647        'sanitize_callback' => 'cc_toggle_control_sanitize',
     2648        'type'              => 'option',
     2649        'transport'         => 'postMessage',
     2650    ));
     2651    $wp_customize->add_control( new Cubecolour_Toggle_Control(
     2652        $wp_customize,
     2653            'cc_caboodle_no_comments',
     2654            array(
     2655                'label'         => esc_html__( 'No comments', 'cubecolour-caboodle' ),
     2656                'type'          => 'checkbox',
     2657                'section'       => 'cc_caboodle_no_comments_section',
     2658                'settings'      => 'cc_caboodle[no_comments]',
     2659            )
     2660        )
     2661    );
     2662
     2663
     2664    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
    26342665     * No author archives section
    26352666     *
  • cubecolour-caboodle/trunk/includes/initial-values.php

    r3276144 r3277296  
    6666        'no_author_archives'            => '',
    6767        'no_avatars'                    => '',
     68        'no_comments'                   => '',
    6869        'no_feeds'                      => '',
    6970        'no_file_editor'                => '',
  • cubecolour-caboodle/trunk/includes/modules/anti-clickjack.php

    r3116538 r3277296  
    66 */
    77function cc_caboodle_anti_clickjack_header() {
    8     if ( !is_customize_preview() ) {
    9         header( "X-Frame-Options: SAMEORIGIN" );
    10         header( "Content-Security-Policy: frame-ancestors 'none'" );
     8    // Allow framing in specific admin contexts
     9    if ( is_customize_preview() || is_admin() ) {
     10        return;
    1111    }
     12
     13    // Allow same-origin framing, block others
     14    header( "X-Frame-Options: SAMEORIGIN" );
     15    header( "Content-Security-Policy: frame-ancestors 'self'" );
    1216}
    1317add_action( "send_headers", "cc_caboodle_anti_clickjack_header" );
  • cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.l10n.php

    r3276144 r3277296  
    11<?php
    2 return ['project-id-version'=>'Cubecolour Caboodle 0.5.0','report-msgid-bugs-to'=>'https://wordpress.org/support/plugin/cubecolour-caboodle','last-translator'=>'','language-team'=>'English (UK)','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','pot-creation-date'=>'2022-03-23T22:09:54+00:00','po-revision-date'=>'2025-04-17 17:58+0000','x-generator'=>'Loco https://localise.biz/','x-domain'=>'cubecolour-caboodle','language'=>'en_GB','plural-forms'=>'nplurals=2; plural=n != 1;','x-loco-version'=>'2.6.14; wp-6.7.1','messages'=>['%1$s %2$s'=>'%1$s %2$s','%1$s <a href="%2$s">%3$s</a>'=>'%1$s <a href="%2$s">%3$s</a>','%1$s <a target="_blank" href="%2$s">%3$s</a>'=>'%1$s <a target="_blank" href="%2$s">%3$s</a>','%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>'=>'%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>','%1$s, %2$s'=>'%1$s, %2$s','Add "New" & "Beta" links to the add plugins page'=>'Add "New" & "Beta" links to the add plugins page','Add %1$s and %2$s attributes to external links'=>'Add %1$s and %2$s attributes to external links','Add a dynamic scroll to top button in the website footer'=>'Add a dynamic scroll to top button in the website footer','Add a featured image column in the admin posts page'=>'Add a featured image column in the admin posts page','Add a file size column in the media library'=>'Add a file size column in the media library','Add a file size column in the media library list view'=>'Add a file size column in the media library list view','Add a lightbox to images and galleries'=>'Add a lightbox to images and galleries','Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)'=>'Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)','Add a page slug class to the body tag'=>'Add a page slug class to the body tag','Add a wavy underline to links within the content'=>'Add a wavy underline to links within the content','Add an arrow icon to identify external links within the site content'=>'Add an arrow icon to identify external links within the site content','Add an icon to links which direct offsite'=>'Add an icon to links which direct offsite','Add attributes'=>'Add attributes','Add caboodle dashicons'=>'Add caboodle dashicons','Add dashicons'=>'Add dashicons','Add news article'=>'Add news article','Add some simple styles to forms created with the gravity forms plugin'=>'Add some simple styles to forms created with the gravity forms plugin','Add support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Additional date & time formats'=>'Additional date & time formats','Adds a link in admin settings menu to view saved options'=>'Adds a link in admin settings menu to view saved options','Adds a simple notepad widget to the dashboard'=>'Adds a simple notepad widget to the dashboard','Adds new options for date and time formats in the general settings admin page'=>'Adds new options for date and time formats in the general settings admin page','Adjust font size (%)'=>'Adjust font size (%)','Admin menu order'=>'Admin menu order','Afternoon greeting'=>'Afternoon greeting','All news articles'=>'All news articles','Also include on frontend'=>'Also include on frontend','An agglomeration of useful functions'=>'An agglomeration of useful functions','Anti clickjack'=>'Anti clickjack','Anti spambot'=>'Anti spambot','Apply customizations to the login page'=>'Apply customisations to the login page','Authorised access only'=>'Authorised access only','Background color'=>'Background colour','Background hover color'=>'Background hover colour','Border color'=>'Border colour','Border color: focus'=>'Border colour: focus','Border color: hover'=>'Border colour: hover','Border radius (%)'=>'Border radius (%)','Border width (px)'=>'Border width (px)','Borderless'=>'Borderless','Breakpoint for mobile'=>'Breakpoint for mobile','Breakpoint for tablet'=>'Breakpoint for tablet','Caboodle'=>'Caboodle','Classic widgets'=>'Classic widgets','Color'=>'Color','Color and background color of selected text'=>'Colour and background colour of selected text','Color centre'=>'Colour centre','Color left &amp; right'=>'Colour left &amp; right','Comments'=>'Comments','Copyright from year'=>'Copyright from year','Copyright years shortcode for use in footer [years start=2025 format=roman]'=>'Copyright years shortcode for use in footer [years start=2025 format=roman]','Copyright years shortcode to use in footer'=>'Copyright years shortcode to use in footer','CSS Selector'=>'CSS Selector','cubecolour'=>'cubecolour','Cubecolour Caboodle'=>'Cubecolour Caboodle','Current settings:'=>'Current settings:','Current Version'=>'Current Version','Current WP version'=>'Current WP version','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','Customize the login page'=>'Customise the login page','Dash spacing'=>'Dash spacing','Dashboard notes'=>'Dashboard notes','Developer link'=>'Developer link','Developer link in admin footer and [developer] shortcode for front end'=>'Developer link in admin footer and [developer] shortcode for front end','Developer link URL'=>'Developer link URL','Developer name'=>'Developer name','Disconnect immediately and do not attempt to log in if you are not an authorised user'=>'Disconnect immediately and do not attempt to log in if you are not an authorised user','Display colored bars for visual confirmation of password input'=>'Display coloured bars for visual confirmation of password input','Do not expose password characters when entered on iPad, iPhone or android'=>'Do not expose password characters when entered on iPad, iPhone or android','Documentation'=>'Documentation','Edit news'=>'Edit news','email shortcode to help protect email addresses from spambots'=>'email shortcode to help protect email addresses from spambots','Embed bandcamp'=>'Embed bandcamp','Enable attachment pages'=>'Enable attachment pages','Enable drop down menus to work more intuitively'=>'Enable drop down menus to work more intuitively','Enable media attachment pages'=>'Enable media attachment pages','Enable support for the [bandcamp] shortcode  generated on bandcamp'=>'Enable support for the [bandcamp] shortcode  generated on bandcamp','Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio player'=>'Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio player','Error message'=>'Error message','Error: Nonce verification has failed'=>'Error: Nonce verification has failed','Evening greeting'=>'Evening greeting','Except for administrators'=>'Except for administrators','Export'=>'Export','Export caboodle settings'=>'Export caboodle settings','Export the current plugin settings as a .json file.'=>'Export the current plugin settings as a .json file.','Extend dashicons with new icons'=>'Extend dashicons with new icons','Extra text added to login form'=>'Extra text added to login form','File Size'=>'File Size','Fix footer'=>'Fix footer','Fix the footer element to the bottom of the viewport on short pages'=>'Fix the footer element to the bottom of the viewport on short pages','Flag width px'=>'Flag width px','Font'=>'Font','Footer element to fix'=>'Footer element to fix','Footer years range'=>'Footer years range','Force vertical scrollbar'=>'Force vertical scrollbar','Gap (px)'=>'Gap (px)','Go to bed'=>'Go to bed','Good afternoon'=>'Good afternoon','Good evening'=>'Good evening','Good morning'=>'Good morning','Gravity forms'=>'Gravity forms','Gravity forms style'=>'Gravity forms style','Grayscale %'=>'Grayscale %','Hover Color'=>'Hover Color','Hover color'=>'Hover colour','https://cubecolour.co.uk/'=>'https://cubecolour.co.uk/','Icon'=>'Icon','Icon size (px)'=>'Icon size (px)','ID'=>'ID','Import'=>'Import','Import caboodle settings'=>'Import caboodle settings','Import the plugin settings from a .json file.'=>'Import the plugin settings from a .json file.','Import/export'=>'Import/export','Incorrect credentials'=>'Incorrect credentials','Incorrect details input'=>'Incorrect details input','Increase the font size in case your font has a small x-height'=>'Increase the font size in case your font has a small x-height','Indicate external links'=>'Indicate external links','Invalid nonce. Please refresh the page and try again.'=>'Invalid nonce. Please refresh the page and try again.','Keep posts'=>'Keep posts','Lightbox'=>'Lightbox','Limit revisions'=>'Limit revisions','Limit the number of saved revisions'=>'Limit the number of saved revisions','Links'=>'Links','List the WordPress options with their values from the admin settings menu'=>'List the WordPress options with their values from the admin settings menu','Login background'=>'Login background','Login page'=>'Login page','Login page style'=>'Login page style','Login warning message'=>'Login warning message','Logo'=>'Logo','M j, Y @ G:i'=>'M j, Y @ G:i','Mask password'=>'Mask password','Media'=>'Media','Media attachment pages'=>'Media attachment pages','Message'=>'Message','Modify the view site link in admin to open in a new browser tab'=>'Modify the view site link in admin to open in a new browser tab','Modules'=>'Modules','Morning greeting'=>'Morning greeting','Must log in by username, not by email address'=>'Must log in by username, not by email address','New plugins'=>'New plugins','News'=>'News','News article'=>'News article','News article published.'=>'News article published.','News article restored to revision from'=>'News article restored to revision from','News article saved.'=>'News article saved.','News article scheduled for:'=>'News article scheduled for:','News article submitted.'=>'News article submitted.','News article updated.'=>'News article updated.','News draft updated.'=>'News draft updated.','News tags'=>'News tags','News updated.'=>'News updated.','Night greeting'=>'Night greeting','No admin bar'=>'No admin bar','No admin bar on the front end for logged-in users'=>'No admin bar on the front end for logged-in users','No author archives'=>'No author archives','No avatars'=>'No avatars','No feeds'=>'No feeds','No file editors'=>'No file editors','No front end admin bar for logged in users'=>'No front end admin bar for logged in users','No generator'=>'No generator','No generator tag'=>'No generator tag','No howdy'=>'No generator tag','No lazy loading'=>'No lazy loading','No login by email'=>'No login by email','No login by email address'=>'No login by email address','No news found'=>'No news found','No news found in trash'=>'No news found in trash','No pingbacks'=>'No pingbacks','No RSD'=>'No RSD','No shortlink tags'=>'No shortlink tags','No WordPress lazy loading'=>'No WordPress lazy loading','None'=>'None','Notes&hellip;'=>'Notes&hellip;','Number of bars'=>'Number of bars','Number of Revisions to save'=>'Number of Revisions to save','Opacity %'=>'Opacity %','Open site in new tab'=>'Open site in new tab','Padding (px)'=>'Padding (px)','Page excerpts'=>'Page excerpts','Page slug body class'=>'Page slug body class','Password visualisation'=>'Password visualisation','Please upload a file to import'=>'Please upload a file to import','Please upload a valid .json file'=>'Please upload a valid .json file','Plugin InstallerBeta Testing'=>'Beta Testing','Plugin InstallerNew'=>'New','Polylang'=>'Polylang','Polylang SVG flags'=>'Polylang SVG flags','Position bottom (px)'=>'Position bottom (px)','Position right (px)'=>'Position right (px)','Post thumbnails'=>'Post thumbnails','Posts'=>'Posts','Posts post type'=>'Posts post type','Posts, pages, post types'=>'Posts, pages, post types','Prevent layout shift between long and short pages'=>'Prevent layout shift between long and short pages','Prevent self pingbacks'=>'Prevent self pingbacks','Prevent the site from loading inside an external frame or iframe'=>'Prevent the site from loading inside an external frame or iframe','Preview news article'=>'Preview news article','Private site'=>'Private site','Rearranges admin menu items: dashboard, pages, posts, media'=>'Rearranges admin menu items: dashboard, pages, posts, media','Redirect requests for author archives to the homepage'=>'Redirect requests for author archives to the homepage','Redirect unauthenticated visitors to the login page'=>'Redirect unauthenticated visitors to the login page','Remove or rename the posts post type'=>'Remove or rename the posts post type','Remove posts'=>'Remove posts','Remove support for gravatars or user avatars'=>'Remove support for gravatars or user avatars','Remove the Really Simple Discovery endpoint'=>'Remove the Really Simple Discovery endpoint','Remove the RSS, RDF and atom feeds'=>'Remove the RSS, RDF and atom feeds','Remove the shortlink header tags'=>'Remove the shortlink header tags','Remove the WordPress generator meta tag'=>'Remove the WordPress generator meta tag','Removes the theme and plugin editors from admin'=>'Removes the theme and plugin editors from admin','Rename posts to news'=>'Rename posts to news','Replace the default bitmap flags in polylang'=>'Replace the default bitmap flags in polylang','Replace the howdy greeting with a salutation appropriate to the time of day'=>'Replace the howdy greeting with a salutation appropriate to the time of day','Replace the spaces around en-dashes & em-dashes with hairspaces'=>'Replace the spaces around en-dashes & em-dashes with hairspaces','Replace the WP logo in the admin toolbar with the site icon if one is configured'=>'Replace the WP logo in the admin toolbar with the site icon if one is configured','Replace WordPress logo'=>'Replace WordPress logo','Replace WP logo'=>'Replace WP logo','Required'=>'Required','Responsive breakpoints'=>'Responsive breakpoints','Restores the previous (classic) widgets settings page'=>'Restores the previous (classic) widgets settings page','Revisions'=>'Revisions','Salt (random when blank)'=>'Salt (random when blank)','Scroll to anchor'=>'Scroll to anchor','Scroll to top'=>'Scroll to top','Search'=>'Search','Search news'=>'Search news','Search placeholder'=>'Search placeholder','Search placeholder text'=>'Search placeholder text','Set breakpoints'=>'Set breakpoints','Set custom mobile and tablet breakpoints for the Astra theme'=>'Set custom mobile and tablet breakpoints for the Astra theme','Settings'=>'Settings','Show current WP version'=>'Show current WP version','Show file size in media library'=>'Show file size in media library','Show IDs'=>'Show IDs','Show media file size'=>'Show media file size','Show only when hovered'=>'Show only when hovered','Show settings'=>'Show settings','Show the current WordPress version in the admin footer when an upgrade is available'=>'Show the current WordPress version in the admin footer when an upgrade is available','Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages'=>'Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages','Show the ID for posts, pages, custom post types, taxonomies, media and users'=>'Show the ID for posts, pages, custom post types, taxonomies, media and users','Show the thumbnail of the featured image in the admin posts page'=>'Show the thumbnail of the featured image in the admin posts page','Show thumbnails in admin'=>'Show thumbnails in admin','Show WordPress version'=>'Show WordPress version','Single error message'=>'Single error message','Single login error message'=>'Single login error message','Site Settings'=>'Site Settings','Size (px)'=>'Size (px)','Smoothly animate when clicking a link targeting an anchored position'=>'Smoothly animate when clicking a link targeting an anchored position','Spacing between flags px'=>'Spacing between flags px','Taxonomies'=>'Taxonomies','Text color'=>'Text colour','Text selection'=>'Text selection','The caboodle settings have been imported'=>'The caboodle settings have been imported','The name of a google font'=>'The name of a google font','The same message for wrong username or wrong password'=>'The same message for wrong username or wrong password','Title'=>'Title','Underline Color'=>'Underline Color','Unlimited'=>'Unlimited','Unlink parent menu items'=>'Unlink parent menu items','Use translatable default text in Astra theme header cover search'=>'Use translatable default text in Astra theme header cover search','Username'=>'Username','Users'=>'Users','Vertical position (px)'=>'Vertical position (px)','View news'=>'View news','View news article'=>'View news article','Wavy links'=>'Wavy links','Wavy underline for links'=>'Wavy underline for links','website by %1$s'=>'website by %1$s','Years shortcode'=>'Years shortcode','Yikes! The cc_caboodle option containing the array of setting values does not exist'=>'Yikes! The cc_caboodle option containing the array of setting values does not exist']];
     2return ['project-id-version'=>'Cubecolour Caboodle 0.5.0','report-msgid-bugs-to'=>'https://wordpress.org/support/plugin/cubecolour-caboodle','last-translator'=>'','language-team'=>'English (UK)','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','pot-creation-date'=>'2022-03-23T22:09:54+00:00','po-revision-date'=>'2025-04-19 16:33+0000','x-generator'=>'Loco https://localise.biz/','x-domain'=>'cubecolour-caboodle','language'=>'en_GB','plural-forms'=>'nplurals=2; plural=n != 1;','x-loco-version'=>'2.6.14; wp-6.7.1','messages'=>['%1$s %2$s'=>'%1$s %2$s','%1$s <a href="%2$s">%3$s</a>'=>'%1$s <a href="%2$s">%3$s</a>','%1$s <a target="_blank" href="%2$s">%3$s</a>'=>'%1$s <a target="_blank" href="%2$s">%3$s</a>','%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>'=>'%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>','%1$s, %2$s'=>'%1$s, %2$s','Add "New" & "Beta" links to the add plugins page'=>'Add "New" & "Beta" links to the add plugins page','Add %1$s and %2$s attributes to external links'=>'Add %1$s and %2$s attributes to external links','Add a dynamic scroll to top button in the website footer'=>'Add a dynamic scroll to top button in the website footer','Add a featured image column in the admin posts page'=>'Add a featured image column in the admin posts page','Add a file size column in the media library'=>'Add a file size column in the media library','Add a file size column in the media library list view'=>'Add a file size column in the media library list view','Add a lightbox to images and galleries'=>'Add a lightbox to images and galleries','Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)'=>'Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)','Add a page slug class to the body tag'=>'Add a page slug class to the body tag','Add a wavy underline to links within the content'=>'Add a wavy underline to links within the content','Add an arrow icon to identify external links within the site content'=>'Add an arrow icon to identify external links within the site content','Add an icon to links which direct offsite'=>'Add an icon to links which direct offsite','Add attributes'=>'Add attributes','Add caboodle dashicons'=>'Add caboodle dashicons','Add dashicons'=>'Add dashicons','Add news article'=>'Add news article','Add some simple styles to forms created with the gravity forms plugin'=>'Add some simple styles to forms created with the gravity forms plugin','Add support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Additional date & time formats'=>'Additional date & time formats','Adds a link in admin settings menu to view saved options'=>'Adds a link in admin settings menu to view saved options','Adds a simple notepad widget to the dashboard'=>'Adds a simple notepad widget to the dashboard','Adds new options for date and time formats in the general settings admin page'=>'Adds new options for date and time formats in the general settings admin page','Adjust font size (%)'=>'Adjust font size (%)','Admin menu order'=>'Admin menu order','Afternoon greeting'=>'Afternoon greeting','All news articles'=>'All news articles','Also include on frontend'=>'Also include on frontend','An agglomeration of useful functions'=>'An agglomeration of useful functions','Anti clickjack'=>'Anti clickjack','Anti spambot'=>'Anti spambot','Apply customizations to the login page'=>'Apply customisations to the login page','Authorised access only'=>'Authorised access only','Background color'=>'Background colour','Background hover color'=>'Background hover colour','Border color'=>'Border colour','Border color: focus'=>'Border colour: focus','Border color: hover'=>'Border colour: hover','Border radius (%)'=>'Border radius (%)','Border width (px)'=>'Border width (px)','Borderless'=>'Borderless','Breakpoint for mobile'=>'Breakpoint for mobile','Breakpoint for tablet'=>'Breakpoint for tablet','Caboodle'=>'Caboodle','Classic widgets'=>'Classic widgets','Color'=>'Color','Color and background color of selected text'=>'Colour and background colour of selected text','Color centre'=>'Colour centre','Color left &amp; right'=>'Colour left &amp; right','Comments'=>'Comments','Copyright from year'=>'Copyright from year','Copyright years shortcode for use in footer [years start=2025 format=roman]'=>'Copyright years shortcode for use in footer [years start=2025 format=roman]','Copyright years shortcode to use in footer'=>'Copyright years shortcode to use in footer','CSS Selector'=>'CSS Selector','cubecolour'=>'cubecolour','Cubecolour Caboodle'=>'Cubecolour Caboodle','Current settings:'=>'Current settings:','Current Version'=>'Current Version','Current WP version'=>'Current WP version','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','Customize the login page'=>'Customise the login page','Dash spacing'=>'Dash spacing','Dashboard notes'=>'Dashboard notes','Developer link'=>'Developer link','Developer link in admin footer and [developer] shortcode for front end'=>'Developer link in admin footer and [developer] shortcode for front end','Developer link URL'=>'Developer link URL','Developer name'=>'Developer name','Disconnect immediately and do not attempt to log in if you are not an authorised user'=>'Disconnect immediately and do not attempt to log in if you are not an authorised user','Display colored bars for visual confirmation of password input'=>'Display coloured bars for visual confirmation of password input','Do not expose password characters when entered on iPad, iPhone or android'=>'Do not expose password characters when entered on iPad, iPhone or android','Documentation'=>'Documentation','Edit news'=>'Edit news','email shortcode to help protect email addresses from spambots'=>'email shortcode to help protect email addresses from spambots','Embed bandcamp'=>'Embed bandcamp','Enable attachment pages'=>'Enable attachment pages','Enable drop down menus to work more intuitively'=>'Enable drop down menus to work more intuitively','Enable media attachment pages'=>'Enable media attachment pages','Enable support for the [bandcamp] shortcode  generated on bandcamp'=>'Enable support for the [bandcamp] shortcode  generated on bandcamp','Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio player'=>'Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio player','Error message'=>'Error message','Error: Nonce verification has failed'=>'Error: Nonce verification has failed','Evening greeting'=>'Evening greeting','Except for administrators'=>'Except for administrators','Export'=>'Export','Export caboodle settings'=>'Export caboodle settings','Export the current plugin settings as a .json file.'=>'Export the current plugin settings as a .json file.','Extend dashicons with new icons'=>'Extend dashicons with new icons','Extra text added to login form'=>'Extra text added to login form','File Size'=>'File Size','Fix footer'=>'Fix footer','Fix the footer element to the bottom of the viewport on short pages'=>'Fix the footer element to the bottom of the viewport on short pages','Flag width px'=>'Flag width px','Font'=>'Font','Footer element to fix'=>'Footer element to fix','Footer years range'=>'Footer years range','Force vertical scrollbar'=>'Force vertical scrollbar','Gap (px)'=>'Gap (px)','Go to bed'=>'Go to bed','Good afternoon'=>'Good afternoon','Good evening'=>'Good evening','Good morning'=>'Good morning','Gravity forms'=>'Gravity forms','Gravity forms style'=>'Gravity forms style','Grayscale %'=>'Grayscale %','Hover Color'=>'Hover Color','Hover color'=>'Hover colour','https://cubecolour.co.uk/'=>'https://cubecolour.co.uk/','Icon'=>'Icon','Icon size (px)'=>'Icon size (px)','ID'=>'ID','Import'=>'Import','Import caboodle settings'=>'Import caboodle settings','Import the plugin settings from a .json file.'=>'Import the plugin settings from a .json file.','Import/export'=>'Import/export','Incorrect credentials'=>'Incorrect credentials','Incorrect details input'=>'Incorrect details input','Increase the font size in case your font has a small x-height'=>'Increase the font size in case your font has a small x-height','Indicate external links'=>'Indicate external links','Invalid nonce. Please refresh the page and try again.'=>'Invalid nonce. Please refresh the page and try again.','Keep posts'=>'Keep posts','Lightbox'=>'Lightbox','Limit revisions'=>'Limit revisions','Limit the number of saved revisions'=>'Limit the number of saved revisions','Links'=>'Links','List the WordPress options with their values from the admin settings menu'=>'List the WordPress options with their values from the admin settings menu','Login background'=>'Login background','Login page'=>'Login page','Login page style'=>'Login page style','Login warning message'=>'Login warning message','Logo'=>'Logo','M j, Y @ G:i'=>'M j, Y @ G:i','Mask password'=>'Mask password','Media'=>'Media','Media attachment pages'=>'Media attachment pages','Message'=>'Message','Modify the view site link in admin to open in a new browser tab'=>'Modify the view site link in admin to open in a new browser tab','Modules'=>'Modules','Morning greeting'=>'Morning greeting','Must log in by username, not by email address'=>'Must log in by username, not by email address','New plugins'=>'New plugins','News'=>'News','News article'=>'News article','News article published.'=>'News article published.','News article restored to revision from'=>'News article restored to revision from','News article saved.'=>'News article saved.','News article scheduled for:'=>'News article scheduled for:','News article submitted.'=>'News article submitted.','News article updated.'=>'News article updated.','News draft updated.'=>'News draft updated.','News tags'=>'News tags','News updated.'=>'News updated.','Night greeting'=>'Night greeting','No admin bar'=>'No admin bar','No admin bar on the front end for logged-in users'=>'No admin bar on the front end for logged-in users','No author archives'=>'No author archives','No avatars'=>'No avatars','No comments'=>'No comments','No feeds'=>'No feeds','No file editors'=>'No file editors','No front end admin bar for logged in users'=>'No front end admin bar for logged in users','No generator'=>'No generator','No generator tag'=>'No generator tag','No howdy'=>'No generator tag','No lazy loading'=>'No lazy loading','No login by email'=>'No login by email','No login by email address'=>'No login by email address','No news found'=>'No news found','No news found in trash'=>'No news found in trash','No pingbacks'=>'No pingbacks','No RSD'=>'No RSD','No shortlink tags'=>'No shortlink tags','No WordPress lazy loading'=>'No WordPress lazy loading','None'=>'None','Notes&hellip;'=>'Notes&hellip;','Number of bars'=>'Number of bars','Number of Revisions to save'=>'Number of Revisions to save','Opacity %'=>'Opacity %','Open site in new tab'=>'Open site in new tab','Padding (px)'=>'Padding (px)','Page excerpts'=>'Page excerpts','Page slug body class'=>'Page slug body class','Password visualisation'=>'Password visualisation','Please upload a file to import'=>'Please upload a file to import','Please upload a valid .json file'=>'Please upload a valid .json file','Plugin InstallerBeta Testing'=>'Beta Testing','Plugin InstallerNew'=>'New','Polylang'=>'Polylang','Polylang SVG flags'=>'Polylang SVG flags','Position bottom (px)'=>'Position bottom (px)','Position right (px)'=>'Position right (px)','Post thumbnails'=>'Post thumbnails','Posts'=>'Posts','Posts post type'=>'Posts post type','Posts, pages, post types'=>'Posts, pages, post types','Prevent layout shift between long and short pages'=>'Prevent layout shift between long and short pages','Prevent self pingbacks'=>'Prevent self pingbacks','Prevent the site from loading inside an external frame or iframe'=>'Prevent the site from loading inside an external frame or iframe','Preview news article'=>'Preview news article','Private site'=>'Private site','Rearranges admin menu items: dashboard, pages, posts, media'=>'Rearranges admin menu items: dashboard, pages, posts, media','Redirect requests for author archives to the homepage'=>'Redirect requests for author archives to the homepage','Redirect unauthenticated visitors to the login page'=>'Redirect unauthenticated visitors to the login page','Remove or rename the posts post type'=>'Remove or rename the posts post type','Remove posts'=>'Remove posts','Remove support for gravatars or user avatars'=>'Remove support for gravatars or user avatars','Remove the Really Simple Discovery endpoint'=>'Remove the Really Simple Discovery endpoint','Remove the RSS, RDF and atom feeds'=>'Remove the RSS, RDF and atom feeds','Remove the shortlink header tags'=>'Remove the shortlink header tags','Remove the WordPress generator meta tag'=>'Remove the WordPress generator meta tag','Removes support for comments'=>'Removes support for comments','Removes the theme and plugin editors from admin'=>'Removes the theme and plugin editors from admin','Rename posts to news'=>'Rename posts to news','Replace the default bitmap flags in polylang'=>'Replace the default bitmap flags in polylang','Replace the howdy greeting with a salutation appropriate to the time of day'=>'Replace the howdy greeting with a salutation appropriate to the time of day','Replace the spaces around en-dashes & em-dashes with hairspaces'=>'Replace the spaces around en-dashes & em-dashes with hairspaces','Replace the WP logo in the admin toolbar with the site icon if one is configured'=>'Replace the WP logo in the admin toolbar with the site icon if one is configured','Replace WordPress logo'=>'Replace WordPress logo','Replace WP logo'=>'Replace WP logo','Required'=>'Required','Responsive breakpoints'=>'Responsive breakpoints','Restores the previous (classic) widgets settings page'=>'Restores the previous (classic) widgets settings page','Revisions'=>'Revisions','Salt (random when blank)'=>'Salt (random when blank)','Scroll to anchor'=>'Scroll to anchor','Scroll to top'=>'Scroll to top','Search'=>'Search','Search news'=>'Search news','Search placeholder'=>'Search placeholder','Search placeholder text'=>'Search placeholder text','Set breakpoints'=>'Set breakpoints','Set custom mobile and tablet breakpoints for the Astra theme'=>'Set custom mobile and tablet breakpoints for the Astra theme','Settings'=>'Settings','Show current WP version'=>'Show current WP version','Show file size in media library'=>'Show file size in media library','Show IDs'=>'Show IDs','Show media file size'=>'Show media file size','Show only when hovered'=>'Show only when hovered','Show settings'=>'Show settings','Show the current WordPress version in the admin footer when an upgrade is available'=>'Show the current WordPress version in the admin footer when an upgrade is available','Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages'=>'Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages','Show the ID for posts, pages, custom post types, taxonomies, media and users'=>'Show the ID for posts, pages, custom post types, taxonomies, media and users','Show the thumbnail of the featured image in the admin posts page'=>'Show the thumbnail of the featured image in the admin posts page','Show thumbnails in admin'=>'Show thumbnails in admin','Show WordPress version'=>'Show WordPress version','Single error message'=>'Single error message','Single login error message'=>'Single login error message','Site Settings'=>'Site Settings','Size (px)'=>'Size (px)','Smoothly animate when clicking a link targeting an anchored position'=>'Smoothly animate when clicking a link targeting an anchored position','Spacing between flags px'=>'Spacing between flags px','Taxonomies'=>'Taxonomies','Text color'=>'Text colour','Text selection'=>'Text selection','The caboodle settings have been imported'=>'The caboodle settings have been imported','The name of a google font'=>'The name of a google font','The same message for wrong username or wrong password'=>'The same message for wrong username or wrong password','Title'=>'Title','Underline Color'=>'Underline Color','Unlimited'=>'Unlimited','Unlink parent menu items'=>'Unlink parent menu items','Use translatable default text in Astra theme header cover search'=>'Use translatable default text in Astra theme header cover search','Username'=>'Username','Users'=>'Users','Vertical position (px)'=>'Vertical position (px)','View news'=>'View news','View news article'=>'View news article','Wavy links'=>'Wavy links','Wavy underline for links'=>'Wavy underline for links','website by %1$s'=>'website by %1$s','Years shortcode'=>'Years shortcode','Yikes! The cc_caboodle option containing the array of setting values does not exist'=>'Yikes! The cc_caboodle option containing the array of setting values does not exist']];
  • cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.po

    r3276144 r3277296  
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"POT-Creation-Date: 2022-03-23T22:09:54+00:00\n"
    14 "PO-Revision-Date: 2025-04-17 17:58+0000\n"
     14"PO-Revision-Date: 2025-04-19 16:33+0000\n"
    1515"X-Generator: Loco https://localise.biz/\n"
    1616"X-Domain: cubecolour-caboodle\n"
     
    128128msgstr "Add news article"
    129129
    130 #: includes/customizer.php:3106 includes/admin.php:444
     130#: includes/customizer.php:3137 includes/admin.php:452
    131131#| msgid "Add styles to forms created with the gravity forms plugin"
    132132msgid "Add some simple styles to forms created with the gravity forms plugin"
     
    210210msgstr "Background hover colour"
    211211
    212 #: includes/customizer.php:3141
     212#: includes/customizer.php:3172
    213213msgid "Border color"
    214214msgstr "Border colour"
    215215
    216 #: includes/customizer.php:3179
     216#: includes/customizer.php:3210
    217217msgid "Border color: focus"
    218218msgstr "Border colour: focus"
    219219
    220 #: includes/customizer.php:3160
     220#: includes/customizer.php:3191
    221221msgid "Border color: hover"
    222222msgstr "Border colour: hover"
     
    234234msgstr "Borderless"
    235235
    236 #: includes/customizer.php:2951
     236#: includes/customizer.php:2982
    237237msgid "Breakpoint for mobile"
    238238msgstr "Breakpoint for mobile"
    239239
    240 #: includes/customizer.php:2927
     240#: includes/customizer.php:2958
    241241msgid "Breakpoint for tablet"
    242242msgstr "Breakpoint for tablet"
     
    298298msgstr "Cubecolour Caboodle"
    299299
    300 #: includes/admin.php:505
     300#: includes/admin.php:513
    301301msgid "Current settings:"
    302302msgstr "Current settings:"
     
    370370"Do not expose password characters when entered on iPad, iPhone or android"
    371371
    372 #: includes/admin.php:551
     372#: includes/admin.php:559
    373373msgid "Documentation"
    374374msgstr "Documentation"
     
    383383msgstr "email shortcode to help protect email addresses from spambots"
    384384
    385 #: includes/customizer.php:2825 includes/customizer.php:2841
    386 #: includes/admin.php:404
     385#: includes/customizer.php:2856 includes/customizer.php:2872
     386#: includes/admin.php:412
    387387msgid "Embed bandcamp"
    388388msgstr "Embed bandcamp"
     
    400400msgstr "Enable media attachment pages"
    401401
    402 #: includes/admin.php:405
     402#: includes/admin.php:413
    403403msgid "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    404404msgstr "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    405405
    406 #: includes/customizer.php:2826
     406#: includes/customizer.php:2857
    407407msgid ""
    408408"Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio "
     
    416416msgstr "Error message"
    417417
    418 #: includes/admin.php:631
     418#: includes/admin.php:639
    419419msgid "Error: Nonce verification has failed"
    420420msgstr "Error: Nonce verification has failed"
     
    429429msgstr "Except for administrators"
    430430
    431 #: includes/admin.php:468
     431#: includes/admin.php:476
    432432msgid "Export"
    433433msgstr "Export"
    434434
    435 #: includes/admin.php:461
     435#: includes/admin.php:469
    436436msgid "Export caboodle settings"
    437437msgstr "Export caboodle settings"
    438438
    439 #: includes/admin.php:463
     439#: includes/admin.php:471
    440440msgid "Export the current plugin settings as a .json file."
    441441msgstr "Export the current plugin settings as a .json file."
     
    462462msgstr "Fix the footer element to the bottom of the viewport on short pages"
    463463
    464 #: includes/customizer.php:3010
     464#: includes/customizer.php:3041
    465465msgid "Flag width px"
    466466msgstr "Flag width px"
     
    487487msgstr "Gap (px)"
    488488
    489 #: includes/initial-values.php:75 includes/customizer.php:1030
     489#: includes/initial-values.php:76 includes/customizer.php:1030
    490490#: includes/modules/no-howdy.php:77
    491491msgid "Go to bed"
    492492msgstr "Go to bed"
    493493
    494 #: includes/initial-values.php:72 includes/customizer.php:996
     494#: includes/initial-values.php:73 includes/customizer.php:996
    495495#: includes/modules/no-howdy.php:73
    496496#| msgid "Good Afternoon"
     
    498498msgstr "Good afternoon"
    499499
    500 #: includes/initial-values.php:73 includes/customizer.php:1013
     500#: includes/initial-values.php:74 includes/customizer.php:1013
    501501#: includes/modules/no-howdy.php:75
    502502#| msgid "Good Evening"
     
    504504msgstr "Good evening"
    505505
    506 #: includes/initial-values.php:74 includes/customizer.php:979
     506#: includes/initial-values.php:75 includes/customizer.php:979
    507507#: includes/modules/no-howdy.php:71
    508508#| msgid "Good Morning"
     
    510510msgstr "Good morning"
    511511
    512 #: includes/customizer.php:3121
     512#: includes/customizer.php:3152
    513513msgid "Gravity forms"
    514514msgstr "Gravity forms"
    515515
    516 #: includes/customizer.php:3105 includes/admin.php:443
     516#: includes/customizer.php:3136 includes/admin.php:451
    517517msgid "Gravity forms style"
    518518msgstr "Gravity forms style"
    519519
    520 #: includes/customizer.php:3034
     520#: includes/customizer.php:3065
    521521msgid "Grayscale %"
    522522msgstr "Grayscale %"
     
    546546msgstr "ID"
    547547
    548 #: includes/admin.php:485
     548#: includes/admin.php:493
    549549msgid "Import"
    550550msgstr "Import"
    551551
    552 #: includes/admin.php:475
     552#: includes/admin.php:483
    553553msgid "Import caboodle settings"
    554554msgstr "Import caboodle settings"
    555555
    556 #: includes/admin.php:477
     556#: includes/admin.php:485
    557557msgid "Import the plugin settings from a .json file."
    558558msgstr "Import the plugin settings from a .json file."
    559559
    560 #: includes/admin.php:455
     560#: includes/admin.php:463
    561561msgid "Import/export"
    562562msgstr "Import/export"
     
    738738msgstr "No admin bar on the front end for logged-in users"
    739739
    740 #: includes/customizer.php:2639 includes/customizer.php:2655
    741 #: includes/admin.php:367
     740#: includes/customizer.php:2670 includes/customizer.php:2686
     741#: includes/admin.php:375
    742742msgid "No author archives"
    743743msgstr "No author archives"
     
    749749msgstr "No avatars"
    750750
    751 #: includes/customizer.php:2732 includes/customizer.php:2748
    752 #: includes/admin.php:386
     751#: includes/customizer.php:2639 includes/customizer.php:2655
     752#: includes/admin.php:368
     753msgid "No comments"
     754msgstr "No comments"
     755
     756#: includes/customizer.php:2763 includes/customizer.php:2779
     757#: includes/admin.php:394
    753758msgid "No feeds"
    754759msgstr "No feeds"
     
    763768msgstr "No front end admin bar for logged in users"
    764769
    765 #: includes/customizer.php:2670 includes/admin.php:373
     770#: includes/customizer.php:2701 includes/admin.php:381
    766771msgid "No generator"
    767772msgstr "No generator"
    768773
    769 #: includes/customizer.php:2686
     774#: includes/customizer.php:2717
    770775msgid "No generator tag"
    771776msgstr "No generator tag"
     
    797802msgstr "No news found in trash"
    798803
    799 #: includes/customizer.php:2794 includes/customizer.php:2810
    800 #: includes/admin.php:398
     804#: includes/customizer.php:2825 includes/customizer.php:2841
     805#: includes/admin.php:406
    801806msgid "No pingbacks"
    802807msgstr "No pingbacks"
    803808
    804 #: includes/customizer.php:2701 includes/customizer.php:2717
    805 #: includes/admin.php:379
     809#: includes/customizer.php:2732 includes/customizer.php:2748
     810#: includes/admin.php:387
    806811msgid "No RSD"
    807812msgstr "No RSD"
    808813
    809 #: includes/customizer.php:2763 includes/customizer.php:2779
    810 #: includes/admin.php:392
     814#: includes/customizer.php:2794 includes/customizer.php:2810
     815#: includes/admin.php:400
    811816#| msgid "No shortlinks"
    812817msgid "No shortlink tags"
     
    834839msgstr "Number of Revisions to save"
    835840
    836 #: includes/customizer.php:3058
     841#: includes/customizer.php:3089
    837842msgid "Opacity %"
    838843msgstr "Opacity %"
     
    863868msgstr "Password visualisation"
    864869
    865 #: includes/admin.php:652
     870#: includes/admin.php:660
    866871msgid "Please upload a file to import"
    867872msgstr "Please upload a file to import"
    868873
    869 #: includes/admin.php:643
     874#: includes/admin.php:651
    870875msgid "Please upload a valid .json file"
    871876msgstr "Please upload a valid .json file"
     
    881886msgstr "New"
    882887
    883 #: includes/customizer.php:2991
     888#: includes/customizer.php:3022
    884889msgid "Polylang"
    885890msgstr "Polylang"
    886891
    887 #: includes/customizer.php:2975 includes/admin.php:431
     892#: includes/customizer.php:3006 includes/admin.php:439
    888893msgid "Polylang SVG flags"
    889894msgstr "Polylang SVG flags"
     
    917922msgstr "Prevent layout shift between long and short pages"
    918923
    919 #: includes/customizer.php:2795 includes/admin.php:399
     924#: includes/customizer.php:2826 includes/admin.php:407
    920925msgid "Prevent self pingbacks"
    921926msgstr "Prevent self pingbacks"
     
    940945msgstr "Rearranges admin menu items: dashboard, pages, posts, media"
    941946
    942 #: includes/customizer.php:2640 includes/admin.php:368
     947#: includes/customizer.php:2671 includes/admin.php:376
    943948msgid "Redirect requests for author archives to the homepage"
    944949msgstr "Redirect requests for author archives to the homepage"
     
    962967msgstr "Remove support for gravatars or user avatars"
    963968
    964 #: includes/customizer.php:2702 includes/admin.php:380
     969#: includes/customizer.php:2733 includes/admin.php:388
    965970#| msgid "Remove the RSD (Really Simple Discovery) endpoint"
    966971msgid "Remove the Really Simple Discovery endpoint"
    967972msgstr "Remove the Really Simple Discovery endpoint"
    968973
    969 #: includes/customizer.php:2733 includes/admin.php:387
     974#: includes/customizer.php:2764 includes/admin.php:395
    970975msgid "Remove the RSS, RDF and atom feeds"
    971976msgstr "Remove the RSS, RDF and atom feeds"
    972977
    973 #: includes/customizer.php:2764 includes/admin.php:393
     978#: includes/customizer.php:2795 includes/admin.php:401
    974979#| msgid "Remove the short link header tags"
    975980msgid "Remove the shortlink header tags"
    976981msgstr "Remove the shortlink header tags"
    977982
    978 #: includes/customizer.php:2671 includes/admin.php:374
     983#: includes/customizer.php:2702 includes/admin.php:382
    979984msgid "Remove the WordPress generator meta tag"
    980985msgstr "Remove the WordPress generator meta tag"
     986
     987#: includes/customizer.php:2640 includes/admin.php:369
     988msgid "Removes support for comments"
     989msgstr "Removes support for comments"
    981990
    982991#: includes/customizer.php:2609 includes/admin.php:362
     
    989998msgstr "Rename posts to news"
    990999
    991 #: includes/customizer.php:2976 includes/admin.php:432
     1000#: includes/customizer.php:3007 includes/admin.php:440
    9921001msgid "Replace the default bitmap flags in polylang"
    9931002msgstr "Replace the default bitmap flags in polylang"
     
    10241033msgstr "Required"
    10251034
    1026 #: includes/customizer.php:2892 includes/admin.php:419
     1035#: includes/customizer.php:2923 includes/admin.php:427
    10271036msgid "Responsive breakpoints"
    10281037msgstr "Responsive breakpoints"
     
    10591068msgstr "Search news"
    10601069
    1061 #: includes/customizer.php:2861 includes/admin.php:413
     1070#: includes/customizer.php:2892 includes/admin.php:421
    10621071msgid "Search placeholder"
    10631072msgstr "Search placeholder"
    10641073
    1065 #: includes/customizer.php:2877
     1074#: includes/customizer.php:2908
    10661075msgid "Search placeholder text"
    10671076msgstr "Search placeholder text"
    10681077
    1069 #: includes/customizer.php:2908
     1078#: includes/customizer.php:2939
    10701079msgid "Set breakpoints"
    10711080msgstr "Set breakpoints"
    10721081
    1073 #: includes/customizer.php:2893 includes/admin.php:420
     1082#: includes/customizer.php:2924 includes/admin.php:428
    10741083msgid "Set custom mobile and tablet breakpoints for the Astra theme"
    10751084msgstr "Set custom mobile and tablet breakpoints for the Astra theme"
     
    11651174msgstr "Smoothly animate when clicking a link targeting an anchored position"
    11661175
    1167 #: includes/customizer.php:3082
     1176#: includes/customizer.php:3113
    11681177msgid "Spacing between flags px"
    11691178msgstr "Spacing between flags px"
     
    11831192msgstr "Text selection"
    11841193
    1185 #: includes/admin.php:696
     1194#: includes/admin.php:704
    11861195msgid "The caboodle settings have been imported"
    11871196msgstr "The caboodle settings have been imported"
     
    12121221msgstr "Unlink parent menu items"
    12131222
    1214 #: includes/customizer.php:2862 includes/admin.php:414
     1223#: includes/customizer.php:2893 includes/admin.php:422
    12151224msgid "Use translatable default text in Astra theme header cover search"
    12161225msgstr "Use translatable default text in Astra theme header cover search"
     
    12571266msgstr "Years shortcode"
    12581267
    1259 #: includes/admin.php:539
     1268#: includes/admin.php:547
    12601269#| msgid ""
    12611270#| "The cc_caboodle option containing the array of setting values does not "
  • cubecolour-caboodle/trunk/languages/cubecolour-caboodle.pot

    r3276144 r3277296  
    1212"Content-Type: text/plain; charset=UTF-8\n"
    1313"Content-Transfer-Encoding: 8bit\n"
    14 "POT-Creation-Date: 2025-04-17 17:55+0000\n"
     14"POT-Creation-Date: 2025-04-19 16:32+0000\n"
    1515"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1616"X-Generator: Loco https://localise.biz/\n"
     
    123123msgstr ""
    124124
    125 #: includes/customizer.php:3106 includes/admin.php:444
     125#: includes/customizer.php:3137 includes/admin.php:452
    126126msgid "Add some simple styles to forms created with the gravity forms plugin"
    127127msgstr ""
     
    202202msgstr ""
    203203
    204 #: includes/customizer.php:3141
     204#: includes/customizer.php:3172
    205205msgid "Border color"
    206206msgstr ""
    207207
    208 #: includes/customizer.php:3179
     208#: includes/customizer.php:3210
    209209msgid "Border color: focus"
    210210msgstr ""
    211211
    212 #: includes/customizer.php:3160
     212#: includes/customizer.php:3191
    213213msgid "Border color: hover"
    214214msgstr ""
     
    226226msgstr ""
    227227
    228 #: includes/customizer.php:2951
     228#: includes/customizer.php:2982
    229229msgid "Breakpoint for mobile"
    230230msgstr ""
    231231
    232 #: includes/customizer.php:2927
     232#: includes/customizer.php:2958
    233233msgid "Breakpoint for tablet"
    234234msgstr ""
     
    288288msgstr ""
    289289
    290 #: includes/admin.php:505
     290#: includes/admin.php:513
    291291msgid "Current settings:"
    292292msgstr ""
     
    355355msgstr ""
    356356
    357 #: includes/admin.php:551
     357#: includes/admin.php:559
    358358msgid "Documentation"
    359359msgstr ""
     
    367367msgstr ""
    368368
    369 #: includes/customizer.php:2825 includes/customizer.php:2841
    370 #: includes/admin.php:404
     369#: includes/customizer.php:2856 includes/customizer.php:2872
     370#: includes/admin.php:412
    371371msgid "Embed bandcamp"
    372372msgstr ""
     
    384384msgstr ""
    385385
    386 #: includes/admin.php:405
     386#: includes/admin.php:413
    387387msgid "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    388388msgstr ""
    389389
    390 #: includes/customizer.php:2826
     390#: includes/customizer.php:2857
    391391msgid ""
    392392"Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio "
     
    398398msgstr ""
    399399
    400 #: includes/admin.php:631
     400#: includes/admin.php:639
    401401msgid "Error: Nonce verification has failed"
    402402msgstr ""
     
    410410msgstr ""
    411411
    412 #: includes/admin.php:468
     412#: includes/admin.php:476
    413413msgid "Export"
    414414msgstr ""
    415415
    416 #: includes/admin.php:461
     416#: includes/admin.php:469
    417417msgid "Export caboodle settings"
    418418msgstr ""
    419419
    420 #: includes/admin.php:463
     420#: includes/admin.php:471
    421421msgid "Export the current plugin settings as a .json file."
    422422msgstr ""
     
    443443msgstr ""
    444444
    445 #: includes/customizer.php:3010
     445#: includes/customizer.php:3041
    446446msgid "Flag width px"
    447447msgstr ""
     
    468468msgstr ""
    469469
    470 #: includes/initial-values.php:75 includes/customizer.php:1030
     470#: includes/initial-values.php:76 includes/customizer.php:1030
    471471#: includes/modules/no-howdy.php:77
    472472msgid "Go to bed"
    473473msgstr ""
    474474
    475 #: includes/initial-values.php:72 includes/customizer.php:996
     475#: includes/initial-values.php:73 includes/customizer.php:996
    476476#: includes/modules/no-howdy.php:73
    477477msgid "Good afternoon"
    478478msgstr ""
    479479
    480 #: includes/initial-values.php:73 includes/customizer.php:1013
     480#: includes/initial-values.php:74 includes/customizer.php:1013
    481481#: includes/modules/no-howdy.php:75
    482482msgid "Good evening"
    483483msgstr ""
    484484
    485 #: includes/initial-values.php:74 includes/customizer.php:979
     485#: includes/initial-values.php:75 includes/customizer.php:979
    486486#: includes/modules/no-howdy.php:71
    487487msgid "Good morning"
    488488msgstr ""
    489489
    490 #: includes/customizer.php:3121
     490#: includes/customizer.php:3152
    491491msgid "Gravity forms"
    492492msgstr ""
    493493
    494 #: includes/customizer.php:3105 includes/admin.php:443
     494#: includes/customizer.php:3136 includes/admin.php:451
    495495msgid "Gravity forms style"
    496496msgstr ""
    497497
    498 #: includes/customizer.php:3034
     498#: includes/customizer.php:3065
    499499msgid "Grayscale %"
    500500msgstr ""
     
    524524msgstr ""
    525525
     526#: includes/admin.php:493
     527msgid "Import"
     528msgstr ""
     529
     530#: includes/admin.php:483
     531msgid "Import caboodle settings"
     532msgstr ""
     533
    526534#: includes/admin.php:485
    527 msgid "Import"
    528 msgstr ""
    529 
    530 #: includes/admin.php:475
    531 msgid "Import caboodle settings"
    532 msgstr ""
    533 
    534 #: includes/admin.php:477
    535535msgid "Import the plugin settings from a .json file."
    536536msgstr ""
    537537
    538 #: includes/admin.php:455
     538#: includes/admin.php:463
    539539msgid "Import/export"
    540540msgstr ""
     
    713713msgstr ""
    714714
    715 #: includes/customizer.php:2639 includes/customizer.php:2655
    716 #: includes/admin.php:367
     715#: includes/customizer.php:2670 includes/customizer.php:2686
     716#: includes/admin.php:375
    717717msgid "No author archives"
    718718msgstr ""
     
    723723msgstr ""
    724724
    725 #: includes/customizer.php:2732 includes/customizer.php:2748
    726 #: includes/admin.php:386
     725#: includes/customizer.php:2639 includes/customizer.php:2655
     726#: includes/admin.php:368
     727msgid "No comments"
     728msgstr ""
     729
     730#: includes/customizer.php:2763 includes/customizer.php:2779
     731#: includes/admin.php:394
    727732msgid "No feeds"
    728733msgstr ""
     
    737742msgstr ""
    738743
    739 #: includes/customizer.php:2670 includes/admin.php:373
     744#: includes/customizer.php:2701 includes/admin.php:381
    740745msgid "No generator"
    741746msgstr ""
    742747
    743 #: includes/customizer.php:2686
     748#: includes/customizer.php:2717
    744749msgid "No generator tag"
    745750msgstr ""
     
    771776msgstr ""
    772777
     778#: includes/customizer.php:2825 includes/customizer.php:2841
     779#: includes/admin.php:406
     780msgid "No pingbacks"
     781msgstr ""
     782
     783#: includes/customizer.php:2732 includes/customizer.php:2748
     784#: includes/admin.php:387
     785msgid "No RSD"
     786msgstr ""
     787
    773788#: includes/customizer.php:2794 includes/customizer.php:2810
    774 #: includes/admin.php:398
    775 msgid "No pingbacks"
    776 msgstr ""
    777 
    778 #: includes/customizer.php:2701 includes/customizer.php:2717
    779 #: includes/admin.php:379
    780 msgid "No RSD"
    781 msgstr ""
    782 
    783 #: includes/customizer.php:2763 includes/customizer.php:2779
    784 #: includes/admin.php:392
     789#: includes/admin.php:400
    785790msgid "No shortlink tags"
    786791msgstr ""
     
    806811msgstr ""
    807812
    808 #: includes/customizer.php:3058
     813#: includes/customizer.php:3089
    809814msgid "Opacity %"
    810815msgstr ""
     
    835840msgstr ""
    836841
    837 #: includes/admin.php:652
     842#: includes/admin.php:660
    838843msgid "Please upload a file to import"
    839844msgstr ""
    840845
    841 #: includes/admin.php:643
     846#: includes/admin.php:651
    842847msgid "Please upload a valid .json file"
    843848msgstr ""
     
    853858msgstr ""
    854859
    855 #: includes/customizer.php:2991
     860#: includes/customizer.php:3022
    856861msgid "Polylang"
    857862msgstr ""
    858863
    859 #: includes/customizer.php:2975 includes/admin.php:431
     864#: includes/customizer.php:3006 includes/admin.php:439
    860865msgid "Polylang SVG flags"
    861866msgstr ""
     
    889894msgstr ""
    890895
    891 #: includes/customizer.php:2795 includes/admin.php:399
     896#: includes/customizer.php:2826 includes/admin.php:407
    892897msgid "Prevent self pingbacks"
    893898msgstr ""
     
    912917msgstr ""
    913918
    914 #: includes/customizer.php:2640 includes/admin.php:368
     919#: includes/customizer.php:2671 includes/admin.php:376
    915920msgid "Redirect requests for author archives to the homepage"
    916921msgstr ""
     
    932937msgstr ""
    933938
    934 #: includes/customizer.php:2702 includes/admin.php:380
     939#: includes/customizer.php:2733 includes/admin.php:388
    935940msgid "Remove the Really Simple Discovery endpoint"
    936941msgstr ""
    937942
    938 #: includes/customizer.php:2733 includes/admin.php:387
     943#: includes/customizer.php:2764 includes/admin.php:395
    939944msgid "Remove the RSS, RDF and atom feeds"
    940945msgstr ""
    941946
    942 #: includes/customizer.php:2764 includes/admin.php:393
     947#: includes/customizer.php:2795 includes/admin.php:401
    943948msgid "Remove the shortlink header tags"
    944949msgstr ""
    945950
    946 #: includes/customizer.php:2671 includes/admin.php:374
     951#: includes/customizer.php:2702 includes/admin.php:382
    947952msgid "Remove the WordPress generator meta tag"
     953msgstr ""
     954
     955#: includes/customizer.php:2640 includes/admin.php:369
     956msgid "Removes support for comments"
    948957msgstr ""
    949958
     
    956965msgstr ""
    957966
    958 #: includes/customizer.php:2976 includes/admin.php:432
     967#: includes/customizer.php:3007 includes/admin.php:440
    959968msgid "Replace the default bitmap flags in polylang"
    960969msgstr ""
     
    987996msgstr ""
    988997
    989 #: includes/customizer.php:2892 includes/admin.php:419
     998#: includes/customizer.php:2923 includes/admin.php:427
    990999msgid "Responsive breakpoints"
    9911000msgstr ""
     
    10221031msgstr ""
    10231032
    1024 #: includes/customizer.php:2861 includes/admin.php:413
     1033#: includes/customizer.php:2892 includes/admin.php:421
    10251034msgid "Search placeholder"
    10261035msgstr ""
    10271036
    1028 #: includes/customizer.php:2877
     1037#: includes/customizer.php:2908
    10291038msgid "Search placeholder text"
    10301039msgstr ""
    10311040
    1032 #: includes/customizer.php:2908
     1041#: includes/customizer.php:2939
    10331042msgid "Set breakpoints"
    10341043msgstr ""
    10351044
    1036 #: includes/customizer.php:2893 includes/admin.php:420
     1045#: includes/customizer.php:2924 includes/admin.php:428
    10371046msgid "Set custom mobile and tablet breakpoints for the Astra theme"
    10381047msgstr ""
     
    11171126msgstr ""
    11181127
    1119 #: includes/customizer.php:3082
     1128#: includes/customizer.php:3113
    11201129msgid "Spacing between flags px"
    11211130msgstr ""
     
    11351144msgstr ""
    11361145
    1137 #: includes/admin.php:696
     1146#: includes/admin.php:704
    11381147msgid "The caboodle settings have been imported"
    11391148msgstr ""
     
    11641173msgstr ""
    11651174
    1166 #: includes/customizer.php:2862 includes/admin.php:414
     1175#: includes/customizer.php:2893 includes/admin.php:422
    11671176msgid "Use translatable default text in Astra theme header cover search"
    11681177msgstr ""
     
    12091218msgstr ""
    12101219
    1211 #: includes/admin.php:539
     1220#: includes/admin.php:547
    12121221msgid ""
    12131222"Yikes! The cc_caboodle option containing the array of setting values does "
  • cubecolour-caboodle/trunk/readme.txt

    r3276144 r3277296  
    44Requires: 6.0
    55Tested up to: 6.8
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77Donate link: https://cubecolour.co.uk/wp
    88Requires PHP: 7.4
     
    157157Removes the theme and plugin editor pages from admin
    158158
     159### No comments
     160Removes support for comments
     161
    159162### No author archives
    160163Requests for author archive pages will redirect to the homepage
     
    185188
    186189### Polylang SVG flags
    187 Only available when the Polylang plugin is active on the site. Use scalable vector graphics for flags in the language switcher
     190Only available when the Polylang plugin is active on the site. Provides scalable vector graphics for flags in the language switcher
    188191
    189192### Gravity forms
     
    232235
    233236## Changelog
     237
     238### 1.3.2
     239
     240* 'No Comments' module
    234241
    235242### 1.3.1
Note: See TracChangeset for help on using the changeset viewer.