Plugin Directory

Changeset 3312214


Ignore:
Timestamp:
06/16/2025 12:37:57 AM (6 months ago)
Author:
numeeja
Message:

v 1.5.0

Location:
cubecolour-caboodle/trunk
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • cubecolour-caboodle/trunk/cubecolour-caboodle.php

    r3309462 r3312214  
    55Description: An agglomeration of useful functions
    66Author: cubecolour
    7 Version: 1.4.2
     7Version: 1.5.0
    88License: GPLv2 or later
    99Text Domain: cubecolour-caboodle
     
    4242 *
    4343 */
    44 define( 'CC_CABOODLE_PLUGIN_VERSION', '1.4.2' );
     44define( 'CC_CABOODLE_PLUGIN_VERSION', '1.5.0' );
    4545define( 'CC_CABOODLE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    4646define( 'CC_CABOODLE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
     
    172172
    173173/**
     174 * Above header banner
     175 *
     176 */
     177if ( cc_caboodle( 'above_header', '' ) == '1' ) {
     178    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/above-header.php' );
     179}
     180
     181/**
    174182 * Additional date & time format options
    175183 *
     
    254262if ( cc_caboodle( 'login_error', '' ) == '1' ) {
    255263    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/login-error-message.php' );
     264}
     265
     266/**
     267 * Increase Login modal height
     268 *
     269 */
     270if ( cc_caboodle( 'login_modal_height', '' ) == '1' ) {
     271    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/login-modal-height.php' );
    256272}
    257273
  • cubecolour-caboodle/trunk/includes/admin.php

    r3307308 r3312214  
    128128                <ul class="modules" id="modules">
    129129                   
     130                    <li class="<?php cc_caboodle_module_classes( 'above_header' ) ?>">     
     131                        <a class="module-content" href="<?php cc_caboodle_module_url( 'above_header' ) ?>">
     132                            <h2><?php esc_html_e( 'Above header banner', 'cubecolour-caboodle' ); ?></h2>
     133                            <p><?php esc_html_e( 'Adds a text banner above the header on all pages', 'cubecolour-caboodle' ); ?></p>
     134                        </a>
     135                    </li>
     136                   
    130137                    <li class="<?php cc_caboodle_module_classes( 'datetime_formats' ) ?>">     
    131138                        <a class="module-content" href="<?php cc_caboodle_module_url( 'datetime_formats' ) ?>">
     
    182189                        </a>
    183190                    </li>
     191                    <li class="<?php cc_caboodle_module_classes( 'login_modal_height' ) ?>">
     192                        <a class="module-content" href="<?php cc_caboodle_module_url( 'login_modal_height' ) ?>">
     193                            <h2><?php esc_html_e( 'Login modal height', 'cubecolour-caboodle' ); ?></h2>
     194                            <p><?php esc_html_e( 'Increase the height of the login modal that appears after session expiration', 'cubecolour-caboodle' ); ?></p>
     195                        </a>
    184196                    <li class="<?php cc_caboodle_module_classes( 'new_tab' ) ?>">
    185197                        <a class="module-content" href="<?php cc_caboodle_module_url( 'new_tab' ) ?>">
  • cubecolour-caboodle/trunk/includes/customizer.php

    r3307308 r3312214  
    109109
    110110    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
     111     * Above header banner
     112     *
     113     */
     114    $wp_customize->add_section( 'cc_caboodle_above_header_section',
     115        array(
     116            'title'             => esc_html__( 'Above header banner', 'cubecolour-caboodle' ),
     117            'description'       => esc_html__( 'Adds a text banner above the header on all pages', 'cubecolour-caboodle' ),
     118            'panel'             => 'cc_caboodle_panel'
     119        )
     120    );
     121
     122    $wp_customize->add_setting('cc_caboodle[above_header]', array(
     123        'default'          => false,
     124        'sanitize_callback' => 'cc_toggle_control_sanitize',
     125        'type'              => 'option',
     126        'transport'         => 'postMessage',
     127    ));
     128    $wp_customize->add_control( new Cubecolour_Toggle_Control(
     129        $wp_customize,
     130            'cc_caboodle_above_header',
     131            array(
     132                'label'         => esc_html__( 'Above header banner', 'cubecolour-caboodle' ),
     133                'type'          => 'checkbox',
     134                'section'       => 'cc_caboodle_above_header_section',
     135                'settings'      => 'cc_caboodle[above_header]',
     136            )
     137        )
     138    );
     139
     140
     141    $wp_customize->add_setting( 'cc_caboodle[above_header_bg_color]',
     142        array(
     143            'default'           => '#fff',
     144            'sanitize_callback' => 'sanitize_hex_color',
     145            'type'              => 'option',
     146            'transport'         => 'postMessage',
     147        )
     148    );
     149    $wp_customize->add_control(
     150        new WP_Customize_Color_Control(
     151            $wp_customize, 'cc_caboodle_above_header_bg_color',
     152            array(
     153                'label'         => esc_html__( 'Banner color', 'cubecolour-caboodle' ),
     154                'section'       => 'cc_caboodle_above_header_section',
     155                'settings'      => 'cc_caboodle[above_header_bg_color]',
     156            )
     157        )
     158    );
     159
     160    $wp_customize->add_setting( 'cc_caboodle[above_header_txt_color]',
     161        array(
     162            'default'           => '#000',
     163            'sanitize_callback' => 'sanitize_hex_color',
     164            'type'              => 'option',
     165            'transport'         => 'postMessage',
     166        )
     167    );
     168    $wp_customize->add_control(
     169        new WP_Customize_Color_Control(
     170            $wp_customize, 'cc_caboodle_above_header_txt_color',
     171            array(
     172                'label'         => esc_html__( 'Text color', 'cubecolour-caboodle' ),
     173                'section'       => 'cc_caboodle_above_header_section',
     174                'settings'      => 'cc_caboodle[above_header_txt_color]',
     175            )
     176        )
     177    );
     178
     179    $wp_customize->add_setting( 'cc_caboodle[above_header_height]',
     180        array(
     181            'default'           => 70,
     182            'sanitize_callback' => 'absint',
     183            'type'              => 'option',
     184            'transport'         => 'postMessage',
     185        )
     186    );
     187    $wp_customize->add_control(
     188        new Cubecolour_Range_Value_Control(
     189            $wp_customize, 'cc_caboodle_above_header_height', array(
     190                'label'             => esc_html__( 'Banner height (px)', 'cubecolour-caboodle' ),
     191                'section'           => 'cc_caboodle_above_header_section',
     192                'settings'          => 'cc_caboodle[above_header_height]',
     193                'type'              => 'range',
     194                'input_attrs'       => array(
     195                    'min'               => 50,
     196                    'max'               => 200,
     197                    'step'              => 1,
     198                )
     199            )
     200        )
     201    );
     202
     203    $wp_customize->add_setting( 'cc_caboodle[above_header_txt]',
     204        array(
     205            'default'           => esc_html__( '', 'cubecolour-caboodle' ),
     206            'sanitize_callback' => 'sanitize_text_field',
     207            'type'              => 'option',
     208            'transport'         => 'postMessage',
     209        )
     210    );
     211    $wp_customize->add_control( 'cc_caboodle_above_header_txt',
     212        array(
     213            'label'             => esc_html__( 'Text', 'cubecolour-caboodle' ),
     214            'section'           => 'cc_caboodle_above_header_section',
     215            'settings'          => 'cc_caboodle[above_header_txt]',
     216            'type'              => 'text',
     217        )
     218    );
     219   
     220    $wp_customize->add_setting( 'cc_caboodle[above_header_txttrans]',
     221        array(
     222            'default'           => 'none',
     223            'sanitize_callback' => 'sanitize_title',
     224            'type'              => 'option',
     225            'transport'         => 'postMessage',
     226        )
     227    );
     228    $wp_customize->add_control( 'cc_caboodle_above_header_txttrans',
     229        array(
     230            'type'              => 'select',
     231            'section'           => 'cc_caboodle_above_header_section',
     232            'settings'          => 'cc_caboodle[above_header_txttrans]',
     233            'label'             => esc_html__( 'Text transform', 'cubecolour-caboodle' ),
     234            'choices'           => array(
     235                'none'          => esc_html__( 'None', 'cubecolour-caboodle' ),
     236                'lowercase'     => esc_html__( 'Lowercase', 'cubecolour-caboodle' ),
     237                'uppercase'     => esc_html__( 'Uppercase', 'cubecolour-caboodle' ),
     238                'capitalize'    => esc_html__( 'Capitalize', 'cubecolour-caboodle' ),
     239            ),
     240        )
     241    );
     242
     243    $wp_customize->add_setting( 'cc_caboodle[above_header_fontsize]',
     244        array(
     245            'default'           => 16,
     246            'sanitize_callback' => 'absint',
     247            'type'              => 'option',
     248            'transport'         => 'postMessage',
     249        )
     250    );
     251    $wp_customize->add_control(
     252        new Cubecolour_Range_Value_Control(
     253            $wp_customize, 'cc_caboodle_above_header_fontsize', array(
     254                'label'             => esc_html__( 'Font size (px)', 'cubecolour-caboodle' ),
     255                'section'           => 'cc_caboodle_above_header_section',
     256                'settings'          => 'cc_caboodle[above_header_fontsize]',
     257                'type'              => 'range',
     258                'input_attrs'       => array(
     259                    'min'               => 10,
     260                    'max'               => 70,
     261                    'step'              => 1,
     262                )
     263            )
     264        )
     265    );
     266
     267    $wp_customize->add_setting( 'cc_caboodle[above_header_fontweight]',
     268        array(
     269            'default'           => 700,
     270            'sanitize_callback' => 'absint',
     271            'type'              => 'option',
     272            'transport'         => 'postMessage',
     273        )
     274    );
     275    $wp_customize->add_control(
     276        new Cubecolour_Range_Value_Control(
     277            $wp_customize, 'cc_caboodle_above_header_fontweight', array(
     278                'label'             => esc_html__( 'Font weight', 'cubecolour-caboodle' ),
     279                'section'           => 'cc_caboodle_above_header_section',
     280                'settings'          => 'cc_caboodle[above_header_fontweight]',
     281                'type'              => 'range',
     282                'input_attrs'       => array(
     283                    'min'               => 300,
     284                    'max'               => 900,
     285                    'step'              => 100,
     286                )
     287            )
     288        )
     289    );
     290
     291    $wp_customize->add_setting( 'cc_caboodle[above_header_speed]',
     292        array(
     293            'default'           => 0,
     294            'sanitize_callback' => 'absint',
     295            'type'              => 'option',
     296            'transport'         => 'postMessage',
     297        )
     298    );
     299    $wp_customize->add_control(
     300        new Cubecolour_Range_Value_Control(
     301            $wp_customize, 'cc_caboodle_above_header_speed', array(
     302                'label'             => esc_html__( 'Scroll speed', 'cubecolour-caboodle' ),
     303                'section'           => 'cc_caboodle_above_header_section',
     304                'settings'          => 'cc_caboodle[above_header_speed]',
     305                'type'              => 'range',
     306                'input_attrs'       => array(
     307                    'min'               => 0,
     308                    'max'               => 25,
     309                    'step'              => 1,
     310                )
     311            )
     312        )
     313    );
     314   
     315   
     316    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
    111317     * Additional date and time format options
    112318     *
     
    124330        'sanitize_callback' => 'cc_toggle_control_sanitize',
    125331        'type'              => 'option',
    126         'transport'         => 'postMessage',
     332        'transport'         => 'refresh',
    127333    ));
    128334    $wp_customize->add_control( new Cubecolour_Toggle_Control(
     
    652858
    653859    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
     860     * Increase login modal height
     861     *
     862     */
     863    $wp_customize->add_section( 'cc_caboodle_login_modal_height_section',
     864        array(
     865            'title'             => esc_html__( 'Increase login modal height', 'cubecolour-caboodle' ),
     866            'description'       => esc_html__( 'Increase the height of the login modal that appears after session expiration', 'cubecolour-caboodle' ),
     867            'panel'             => 'cc_caboodle_panel'
     868        )
     869    );
     870
     871    $wp_customize->add_setting('cc_caboodle[login_modal_height]', array(
     872        'default'          => false,
     873        'sanitize_callback' => 'cc_toggle_control_sanitize',
     874        'type'              => 'option',
     875        'transport'         => 'postMessage',
     876    ));
     877    $wp_customize->add_control( new Cubecolour_Toggle_Control(
     878        $wp_customize,
     879            'login_modal_height',
     880            array(
     881                'label'         => esc_html__( 'Increase login modal height', 'cubecolour-caboodle' ),
     882                'type'          => 'checkbox',
     883                'section'       => 'cc_caboodle_login_modal_height_section',
     884                'settings'      => 'cc_caboodle[login_modal_height]',
     885            )
     886        )
     887    );
     888   
     889
     890    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
    654891     * Open in new tab section (Admin toolbar 'view site' link )
    655892     *
     
    7991036        ),
    8001037    ) );
     1038   
     1039   
     1040   
    8011041    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
    8021042     * Admin menu order section
  • cubecolour-caboodle/trunk/includes/initial-values.php

    r3307308 r3312214  
    1010
    1111    $initial_values = array(
     12       
     13        'above_header'                  => '',
     14        'above_header_bg_color'         => '#ffffff',
     15        'above_header_fontsize'         => '20',
     16        'above_header_fontweight'       => 'bold',
     17        'above_header_height'           => '70',
     18        'above_header_speed'            => '16',
     19        'above_header_txt'              => '',
     20        'above_header_txt_color'        => '#000000',
     21        'above_header_txttrans'         => 'none',
    1222        'add_dashicons'                 => '',
    1323        'admin_thumbnails'              => '',
     
    5262        'login_error'                   => '',
    5363        'login_error_message'           => esc_html__( 'Incorrect details input', 'cubecolour-caboodle' ),
     64        'login_modal_height'            => '',
    5465        'login_warning'                 => '',
    5566        'login_warning_colour'          => '#777777',
  • cubecolour-caboodle/trunk/includes/modules/dashnotes.php

    r3232146 r3312214  
    4646        $content = cc_caboodle( 'dashboard_notes_content', '' );
    4747        $nonce_allowed_html = array(
    48             'input' => array(
    49                 'type' => true,
    50                 'name' => true,
    51                 'value' => true,
    52                 'id' => true,
     48            'input'     => array(
     49                'type'      => true,
     50                'name'      => true,
     51                'value'     => true,
     52                'id'        => true,
    5353            ),
    5454        );
     
    6363            <div>
    6464                <textarea name="content" placeholder="<?php echo esc_html( $placeholder ); ?>"
    65                           class="mceEditor" rows="10" autocomplete="off" style="width: 100%"
     65                          class="mceEditor" rows="20" autocomplete="off" style="width: 100%"
    6666                ><?php echo esc_textarea( $content ); ?></textarea>
    6767            </div>
  • cubecolour-caboodle/trunk/js/customizer-controls.js

    r3307308 r3312214  
    2424        });
    2525    }
    26 
     26   
     27    showhide( 'above_header' );
    2728    showhide( 'login_bg' );
    2829    showhide( 'login_error' );
  • cubecolour-caboodle/trunk/js/customizer-preview.js

    r3116538 r3312214  
    11( function( $ ) {
    22
     3    /**
     4    * Above header banner text
     5    *
     6    */
     7    wp.customize( 'cc_caboodle[above_header_txt]', function( value ) {
     8        value.bind( function( newval ) {
     9            $( '#above-header-banner' ).css( '--above-header-txt', '"' + newval + '"' );
     10        } );
     11    } );
     12
     13    /**
     14    * Above header banner color
     15    *
     16    */
     17    wp.customize( 'cc_caboodle[above_header_bg_color]', function( value ) {
     18        value.bind( function( newval ) {
     19            $( '#above-header-banner' ).css( '--above-header-bg-color', newval );
     20        } );
     21    } );
     22
     23    /**
     24    * Above header banner text color
     25    *
     26    */
     27    wp.customize( 'cc_caboodle[above_header_txt_color]', function( value ) {
     28        value.bind( function( newval ) {
     29            $( '#above-header-banner' ).css( '--above-header-txt-color', newval );
     30        } );
     31    } );
     32
     33    /**
     34    * Above header banner height
     35    *
     36    */
     37    wp.customize( 'cc_caboodle[above_header_height]', function( value ) {
     38        value.bind( function( newval ) {
     39            $( '#above-header-banner' ).css( '--above-header-height', newval + 'px' );
     40        } );
     41    } );
     42
     43    /**
     44    * Above header banner fontsize
     45    *
     46    */
     47    wp.customize( 'cc_caboodle[above_header_fontsize]', function( value ) {
     48        value.bind( function( newval ) {
     49            $( '#above-header-banner' ).css( '--above-header-fontsize', newval + 'px' );
     50        } );
     51    } );
     52
     53    /**
     54    * Above header banner fontweight
     55    *
     56    */
     57    wp.customize( 'cc_caboodle[above_header_fontweight]', function( value ) {
     58        value.bind( function( newval ) {
     59            $( '#above-header-banner' ).css( '--above-header-fontweight', newval );
     60        } );
     61    } );
     62
     63    /**
     64    * Above header banner text transform
     65    *
     66    */
     67    wp.customize( 'cc_caboodle[above_header_txttrans]', function( value ) {
     68        value.bind( function( newval ) {
     69            $( '#above-header-banner' ).css( '--above-header-txttrans', newval );
     70        } );
     71    } );
     72   
     73    /**
     74    * Above header banner text transform
     75    *
     76    */
     77    wp.customize( 'cc_caboodle[above_header_speed]', function( value ) {
     78        value.bind( function( newval ) {
     79            if ( newval < 1 ) {
     80                $('.marquee-text.marquee-scroll').removeClass('marquee-scroll');
     81            } else {
     82                $( '.marquee-text' ).addClass('marquee-scroll');
     83                $( '#above-header-banner' ).css( '--above-header-speed', newval + 's' );
     84            }
     85        } );
     86    } );
     87   
    388    /**
    489    * Text selection color
  • cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.l10n.php

    r3307308 r3312214  
    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-06-06 00:46+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 support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Add support for SVG files'=>'Add support for SVG files','Add support for SVGs'=>'Add support for SVGs','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','Blue'=>'Blue','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','Coffee'=>'Coffee','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','Color scheme'=>'Colour scheme','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','Default'=>'Default','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','Ectoplasm'=>'Ectoplasm','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','Font'=>'Font','Footer element to fix'=>'Footer element to fix','Footer years range'=>'Footer years range','Force admin color scheme'=>'Force admin colour scheme','Force all users to use a specific admin color scheme'=>'Force all users to use a specific admin colour scheme','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','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','Light'=>'Light','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','Midnight'=>'Midnight','Modern'=>'Modern','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 language selector on the login page'=>'No language selector on the login page','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 login language selector'=>'No login language selector','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','Ocean'=>'Ocean','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','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 language selector from the login page'=>'Remove the language selector from the login page','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 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','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','Sunrise'=>'Sunrise','SVG support'=>'SVG support','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-06-16 00:32+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','Above header banner'=>'Above header banner','Add "New" & "Beta" links to the add plugins page'=>'Add "New" & "Beta" links to the add plugins page','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 lightbox to images and galleries'=>'Add a lightbox to images and galleries','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 dashicons'=>'Add dashicons','Add news article'=>'Add news article','Add support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Add support for SVGs'=>'Add support for SVGs','Additional date & time formats'=>'Additional date & time formats','Adds a simple notepad widget to the dashboard'=>'Adds a simple notepad widget to the dashboard','Adds a text banner above the header on all pages'=>'Adds a text banner above the header on all pages','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','Admin menu order'=>'Admin menu order','All news articles'=>'All news articles','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','Classic widgets'=>'Classic widgets','Color and background color of selected text'=>'Colour and background colour of selected text','Copyright years shortcode for use in footer [years start=2025 format=roman]'=>'Copyright years shortcode for use in footer [years start=2025 format=roman]','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.','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','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 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','Error: Nonce verification has failed'=>'Error: Nonce verification has failed','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','Footer years range'=>'Footer years range','Force admin color scheme'=>'Force admin colour scheme','Force all users to use a specific admin color scheme'=>'Force all users to use a specific admin colour scheme','Force vertical scrollbar'=>'Force vertical scrollbar','Go to bed'=>'Go to bed','Good afternoon'=>'Good afternoon','Good evening'=>'Good evening','Good morning'=>'Good morning','https://cubecolour.co.uk/'=>'https://cubecolour.co.uk/','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 details input'=>'Incorrect details input','Increase the height of the login modal that appears after session expiration'=>'Increase the height of the login modal that appears after session expiration','Indicate external links'=>'Indicate external links','Invalid nonce. Please refresh the page and try again.'=>'Invalid nonce. Please refresh the page and try again.','Lightbox'=>'Lightbox','Limit revisions'=>'Limit revisions','Limit the number of saved revisions'=>'Limit the number of saved revisions','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 modal height'=>'Login modal height','Login page style'=>'Login page style','Login warning message'=>'Login warning message','M j, Y @ G:i'=>'M j, Y @ G:i','Mask password'=>'Mask password','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','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.','No admin bar'=>'No admin bar','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 howdy'=>'No generator tag','No language selector on the login page'=>'No language selector on the login page','No lazy loading'=>'No lazy loading','No login by email address'=>'No login by email address','No login language selector'=>'No login language selector','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','Notes&hellip;'=>'Notes&hellip;','Open site in new tab'=>'Open site in new tab','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','Post thumbnails'=>'Post thumbnails','Posts'=>'Posts','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 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','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','Responsive breakpoints'=>'Responsive breakpoints','Restores the previous (classic) widgets settings page'=>'Restores the previous (classic) widgets settings page','Scroll to anchor'=>'Scroll to anchor','Scroll to top'=>'Scroll to top','Search'=>'Search','Search news'=>'Search news','Search placeholder'=>'Search placeholder','Set custom mobile and tablet breakpoints for the Astra theme'=>'Set custom mobile and tablet breakpoints for the Astra theme','Settings'=>'Settings','Show file size in media library'=>'Show file size in media library','Show IDs'=>'Show IDs','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 users'=>'Show the ID for posts, pages, custom post types, taxonomies, media and users','Single login error message'=>'Single login error message','Site Settings'=>'Site Settings','Smoothly animate when clicking a link targeting an anchored position'=>'Smoothly animate when clicking a link targeting an anchored position','SVG support'=>'SVG support','Text selection'=>'Text selection','The caboodle settings have been imported'=>'The caboodle settings have been imported','The same message for wrong username or wrong password'=>'The same message for wrong username or wrong password','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','View news'=>'View news','View news article'=>'View news article','Wavy links'=>'Wavy links','website by %1$s'=>'website by %1$s','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

    r3307308 r3312214  
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"POT-Creation-Date: 2022-03-23T22:09:54+00:00\n"
    14 "PO-Revision-Date: 2025-06-06 00:46+0000\n"
     14"PO-Revision-Date: 2025-06-16 00:32+0000\n"
    1515"X-Generator: Loco https://localise.biz/\n"
    1616"X-Domain: cubecolour-caboodle\n"
     
    5454msgstr "%1$s, %2$s"
    5555
    56 #: includes/customizer.php:1299 includes/admin.php:259
     56#: includes/admin.php:132
     57msgid "Above header banner"
     58msgstr "Above header banner"
     59
     60#: includes/admin.php:271
    5761#| msgid "Add \"New\" &amp; \"Beta\" links to the add plugins page"
    5862msgid "Add \"New\" & \"Beta\" links to the add plugins page"
    5963msgstr "Add \"New\" & \"Beta\" links to the add plugins page"
    6064
    61 #. %1$s: <code>target="_blank"</code>, %2$s: <code>rel="noopener noreferrer nofollow"</code>
    62 #: includes/customizer.php:1883
    63 #, php-format
    64 msgid "Add %1$s and %2$s attributes to external links"
    65 msgstr "Add %1$s and %2$s attributes to external links"
    66 
    67 #: includes/customizer.php:2214 includes/admin.php:374
     65#: includes/admin.php:386
    6866msgid "Add a dynamic scroll to top button in the website footer"
    6967msgstr "Add a dynamic scroll to top button in the website footer"
    7068
    71 #: includes/admin.php:307
     69#: includes/admin.php:319
    7270msgid "Add a featured image column in the admin posts page"
    7371msgstr "Add a featured image column in the admin posts page"
    7472
    75 #: includes/admin.php:349
     73#: includes/admin.php:361
    7674#| msgid "Show a file size column in the media library"
    7775msgid "Add a file size column in the media library"
    7876msgstr "Add a file size column in the media library"
    7977
    80 #: includes/customizer.php:2059
    81 msgid "Add a file size column in the media library list view"
    82 msgstr "Add a file size column in the media library list view"
    83 
    84 #: includes/admin.php:337
     78#: includes/admin.php:349
    8579msgid "Add a lightbox to images and galleries"
    8680msgstr "Add a lightbox to images and galleries"
    8781
    88 #: includes/customizer.php:2028
    89 msgid ""
    90 "Add a lightbox to images and galleries (Ensure you set the image or gallery "
    91 "to link to the media file)"
    92 msgstr ""
    93 "Add a lightbox to images and galleries (Ensure you set the image or gallery "
    94 "to link to the media file)"
    95 
    96 #: includes/customizer.php:1461 includes/admin.php:283
     82#: includes/admin.php:295
    9783msgid "Add a page slug class to the body tag"
    9884msgstr "Add a page slug class to the body tag"
    9985
    100 #: includes/admin.php:331
     86#: includes/admin.php:343
    10187msgid "Add a wavy underline to links within the content"
    10288msgstr "Add a wavy underline to links within the content"
    10389
    104 #: includes/admin.php:325
     90#: includes/admin.php:337
    10591msgid "Add an arrow icon to identify external links within the site content"
    10692msgstr "Add an arrow icon to identify external links within the site content"
    10793
    108 #: includes/customizer.php:1713
    109 msgid "Add an icon to links which direct offsite"
    110 msgstr "Add an icon to links which direct offsite"
    111 
    112 #: includes/customizer.php:1881
    113 msgid "Add attributes"
    114 msgstr "Add attributes"
    115 
    116 #: includes/customizer.php:2167
    117 msgid "Add caboodle dashicons"
    118 msgstr "Add caboodle dashicons"
    119 
    120 #: includes/customizer.php:2151 includes/admin.php:360
     94#: includes/admin.php:372
    12195msgid "Add dashicons"
    12296msgstr "Add dashicons"
     
    128102msgstr "Add news article"
    129103
    130 #: includes/customizer.php:1622 includes/customizer.php:1653
    131 #: includes/admin.php:313
     104#: includes/admin.php:325
    132105msgid "Add support for manual excerpts to pages"
    133106msgstr "Add support for manual excerpts to pages"
    134107
    135 #: includes/customizer.php:2090
    136 msgid "Add support for SVG files"
    137 msgstr "Add support for SVG files"
    138 
    139 #: includes/admin.php:343
     108#: includes/admin.php:355
    140109msgid "Add support for SVGs"
    141110msgstr "Add support for SVGs"
    142111
    143 #: includes/customizer.php:116 includes/customizer.php:132
    144 #: includes/admin.php:132
     112#: includes/admin.php:139
    145113msgid "Additional date & time formats"
    146114msgstr "Additional date & time formats"
    147115
    148 #: includes/customizer.php:1268
    149 msgid "Adds a link in admin settings menu to view saved options"
    150 msgstr "Adds a link in admin settings menu to view saved options"
    151 
    152 #: includes/customizer.php:720 includes/admin.php:199
     116#: includes/admin.php:211
    153117msgid "Adds a simple notepad widget to the dashboard"
    154118msgstr "Adds a simple notepad widget to the dashboard"
    155119
    156 #: includes/customizer.php:117 includes/admin.php:133
     120#: includes/admin.php:133
     121msgid "Adds a text banner above the header on all pages"
     122msgstr "Adds a text banner above the header on all pages"
     123
     124#: includes/admin.php:140
    157125msgid ""
    158126"Adds new options for date and time formats in the general settings admin page"
     
    160128"Adds new options for date and time formats in the general settings admin page"
    161129
    162 #: includes/customizer.php:321
    163 msgid "Adjust font size (%)"
    164 msgstr "Adjust font size (%)"
    165 
    166 #: includes/customizer.php:807 includes/customizer.php:823
    167 #: includes/admin.php:210
     130#: includes/admin.php:222
    168131msgid "Admin menu order"
    169132msgstr "Admin menu order"
    170 
    171 #: includes/customizer.php:1093
    172 #| msgid "Afternoon Greeting"
    173 msgid "Afternoon greeting"
    174 msgstr "Afternoon greeting"
    175133
    176134#: includes/modules/posts-rename-news.php:54
     
    178136msgstr "All news articles"
    179137
    180 #: includes/customizer.php:646
    181 msgid "Also include on frontend"
    182 msgstr "Also include on frontend"
    183 
    184138#. Description of the plugin
    185139msgid "An agglomeration of useful functions"
    186140msgstr "An agglomeration of useful functions"
    187141
    188 #: includes/customizer.php:2648 includes/customizer.php:2664
    189 #: includes/admin.php:397
     142#: includes/admin.php:409
    190143msgid "Anti clickjack"
    191144msgstr "Anti clickjack"
    192145
    193 #: includes/customizer.php:2616 includes/customizer.php:2632
    194 #: includes/admin.php:391
     146#: includes/admin.php:403
    195147msgid "Anti spambot"
    196148msgstr "Anti spambot"
    197149
    198 #: includes/admin.php:146
     150#: includes/admin.php:153
    199151msgid "Apply customizations to the login page"
    200152msgstr "Apply customisations to the login page"
    201153
    202 #: includes/initial-values.php:56 includes/customizer.php:529
    203 #: includes/modules/login-warning.php:23
     154#: includes/initial-values.php:67 includes/modules/login-warning.php:23
    204155msgid "Authorised access only"
    205156msgstr "Authorised access only"
    206157
    207 #: includes/customizer.php:1446 includes/customizer.php:2455
    208 msgid "Background color"
    209 msgstr "Background colour"
    210 
    211 #: includes/customizer.php:2493
    212 msgid "Background hover color"
    213 msgstr "Background hover colour"
    214 
    215 #: includes/customizer.php:793
    216 msgid "Blue"
    217 msgstr "Blue"
    218 
    219 #: includes/customizer.php:2363
    220 msgid "Border radius (%)"
    221 msgstr "Border radius (%)"
    222 
    223 #: includes/customizer.php:2339
    224 msgid "Border width (px)"
    225 msgstr "Border width (px)"
    226 
    227 #: includes/customizer.php:268
    228 msgid "Borderless"
    229 msgstr "Borderless"
    230 
    231 #: includes/customizer.php:3102
    232 msgid "Breakpoint for mobile"
    233 msgstr "Breakpoint for mobile"
    234 
    235 #: includes/customizer.php:3078
    236 msgid "Breakpoint for tablet"
    237 msgstr "Breakpoint for tablet"
    238 
    239 #: includes/customizer.php:105
    240 msgid "Caboodle"
    241 msgstr "Caboodle"
    242 
    243 #: includes/customizer.php:1522 includes/customizer.php:1538
    244 #: includes/admin.php:294
     158#: includes/admin.php:306
    245159msgid "Classic widgets"
    246160msgstr "Classic widgets"
    247161
    248 #: includes/customizer.php:794
    249 msgid "Coffee"
    250 msgstr "Coffee"
    251 
    252 #: includes/customizer.php:1830 includes/customizer.php:2436
    253 msgid "Color"
    254 msgstr "Color"
    255 
    256 #: includes/customizer.php:1392 includes/admin.php:277
     162#: includes/admin.php:289
    257163msgid "Color and background color of selected text"
    258164msgstr "Colour and background colour of selected text"
    259165
    260 #: includes/customizer.php:232
    261 msgid "Color centre"
    262 msgstr "Colour centre"
    263 
    264 #: includes/customizer.php:213
    265 #| msgid "Color left &amp; Right"
    266 msgid "Color left &amp; right"
    267 msgstr "Colour left &amp; right"
    268 
    269 #: includes/customizer.php:787
    270 msgid "Color scheme"
    271 msgstr "Colour scheme"
    272 
    273 #: includes/customizer.php:976
    274 msgid "Comments"
    275 msgstr "Comments"
    276 
    277 #: includes/customizer.php:2592
    278 msgid "Copyright from year"
    279 msgstr "Copyright from year"
    280 
    281 #: includes/admin.php:386
     166#: includes/admin.php:398
    282167msgid ""
    283168"Copyright years shortcode for use in footer [years start=2025 format=roman]"
    284169msgstr ""
    285170"Copyright years shortcode for use in footer [years start=2025 format=roman]"
    286 
    287 #: includes/customizer.php:2556
    288 msgid "Copyright years shortcode to use in footer"
    289 msgstr "Copyright years shortcode to use in footer"
    290 
    291 #: includes/customizer.php:2013
    292 msgid "CSS Selector"
    293 msgstr "CSS Selector"
    294171
    295172#. Author of the plugin
     
    301178msgstr "Cubecolour Caboodle"
    302179
    303 #: includes/admin.php:537
     180#: includes/admin.php:549
    304181msgid "Current settings:"
    305182msgstr "Current settings:"
     
    309186msgstr "Current Version"
    310187
    311 #: includes/admin.php:228
     188#: includes/admin.php:240
    312189msgid "Current WP version"
    313190msgstr "Current WP version"
     
    321198msgstr "Custom field updated."
    322199
    323 #: includes/customizer.php:178
    324 msgid "Customize the login page"
    325 msgstr "Customise the login page"
    326 
    327 #: includes/customizer.php:1491 includes/customizer.php:1507
    328 #: includes/admin.php:288
     200#: includes/admin.php:300
    329201msgid "Dash spacing"
    330202msgstr "Dash spacing"
    331203
    332 #: includes/customizer.php:719 includes/customizer.php:735
    333 #: includes/admin.php:198
     204#: includes/admin.php:210
    334205msgid "Dashboard notes"
    335206msgstr "Dashboard notes"
    336207
    337 #: includes/customizer.php:790
    338 msgid "Default"
    339 msgstr "Default"
    340 
    341 #: includes/customizer.php:1202 includes/customizer.php:1218
    342 #: includes/admin.php:246
     208#: includes/admin.php:258
    343209msgid "Developer link"
    344210msgstr "Developer link"
    345211
    346 #: includes/customizer.php:1203 includes/admin.php:247
     212#: includes/admin.php:259
    347213msgid "Developer link in admin footer and [developer] shortcode for front end"
    348214msgstr "Developer link in admin footer and [developer] shortcode for front end"
    349215
    350 #: includes/customizer.php:1253
    351 msgid "Developer link URL"
    352 msgstr "Developer link URL"
    353 
    354 #: includes/customizer.php:1236
    355 msgid "Developer name"
    356 msgstr "Developer name"
    357 
    358 #: includes/initial-values.php:57 includes/customizer.php:547
    359 #: includes/modules/login-warning.php:24
     216#: includes/initial-values.php:68 includes/modules/login-warning.php:24
    360217msgid ""
    361218"Disconnect immediately and do not attempt to log in if you are not an "
     
    365222"authorised user"
    366223
    367 #: includes/customizer.php:570 includes/admin.php:181
     224#: includes/admin.php:188
    368225msgid "Display colored bars for visual confirmation of password input"
    369226msgstr "Display coloured bars for visual confirmation of password input"
    370227
    371 #: includes/customizer.php:405 includes/admin.php:163
     228#: includes/admin.php:170
    372229#| msgid ""
    373230#| "Do not expose password characters when entered on iPad, iPhone and android"
     
    377234"Do not expose password characters when entered on iPad, iPhone or android"
    378235
    379 #: includes/admin.php:583
     236#: includes/admin.php:595
    380237msgid "Documentation"
    381238msgstr "Documentation"
    382 
    383 #: includes/customizer.php:795
    384 msgid "Ectoplasm"
    385 msgstr "Ectoplasm"
    386239
    387240#: includes/modules/posts-rename-news.php:48
     
    389242msgstr "Edit news"
    390243
    391 #: includes/customizer.php:2617 includes/admin.php:392
     244#: includes/admin.php:404
    392245#| msgid "[email] shortcode to protect email addresses from spambots"
    393246msgid "email shortcode to help protect email addresses from spambots"
    394247msgstr "email shortcode to help protect email addresses from spambots"
    395248
    396 #: includes/customizer.php:2976 includes/customizer.php:2992
    397 #: includes/admin.php:460
     249#: includes/admin.php:472
    398250msgid "Embed bandcamp"
    399251msgstr "Embed bandcamp"
    400252
    401 #: includes/customizer.php:2136
    402 msgid "Enable attachment pages"
    403 msgstr "Enable attachment pages"
    404 
    405 #: includes/customizer.php:1683 includes/admin.php:319
     253#: includes/admin.php:331
    406254msgid "Enable drop down menus to work more intuitively"
    407255msgstr "Enable drop down menus to work more intuitively"
    408256
    409 #: includes/customizer.php:2121 includes/admin.php:354 includes/admin.php:355
     257#: includes/admin.php:366 includes/admin.php:367
    410258msgid "Enable media attachment pages"
    411259msgstr "Enable media attachment pages"
    412260
    413 #: includes/admin.php:461
     261#: includes/admin.php:473
    414262msgid "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    415263msgstr "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    416264
    417 #: includes/customizer.php:2977
    418 msgid ""
    419 "Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio "
    420 "player"
    421 msgstr ""
    422 "Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio "
    423 "player"
    424 
    425 #: includes/customizer.php:470
    426 msgid "Error message"
    427 msgstr "Error message"
    428 
    429 #: includes/admin.php:663
     265#: includes/admin.php:675
    430266msgid "Error: Nonce verification has failed"
    431267msgstr "Error: Nonce verification has failed"
    432268
    433 #: includes/customizer.php:1110
    434 #| msgid "Evening Greeting"
    435 msgid "Evening greeting"
    436 msgstr "Evening greeting"
    437 
    438 #: includes/customizer.php:2713
    439 msgid "Except for administrators"
    440 msgstr "Except for administrators"
    441 
    442 #: includes/admin.php:500
     269#: includes/admin.php:512
    443270msgid "Export"
    444271msgstr "Export"
    445272
    446 #: includes/admin.php:493
     273#: includes/admin.php:505
    447274msgid "Export caboodle settings"
    448275msgstr "Export caboodle settings"
    449276
    450 #: includes/admin.php:495
     277#: includes/admin.php:507
    451278msgid "Export the current plugin settings as a .json file."
    452279msgstr "Export the current plugin settings as a .json file."
    453280
    454 #: includes/customizer.php:2152 includes/admin.php:361
     281#: includes/admin.php:373
    455282msgid "Extend dashicons with new icons"
    456283msgstr "Extend dashicons with new icons"
    457284
    458 #: includes/customizer.php:485 includes/admin.php:175
     285#: includes/admin.php:182
    459286msgid "Extra text added to login form"
    460287msgstr "Extra text added to login form"
     
    464291msgstr "File Size"
    465292
    466 #: includes/customizer.php:2507 includes/customizer.php:2523
    467 #: includes/admin.php:379
     293#: includes/admin.php:391
    468294msgid "Fix footer"
    469295msgstr "Fix footer"
    470296
    471 #: includes/customizer.php:2508 includes/admin.php:380
     297#: includes/admin.php:392
    472298msgid "Fix the footer element to the bottom of the viewport on short pages"
    473299msgstr "Fix the footer element to the bottom of the viewport on short pages"
    474300
    475 #: includes/customizer.php:302
    476 msgid "Font"
    477 msgstr "Font"
    478 
    479 #: includes/customizer.php:2541
    480 msgid "Footer element to fix"
    481 msgstr "Footer element to fix"
    482 
    483 #: includes/customizer.php:2555 includes/admin.php:385
     301#: includes/admin.php:397
    484302msgid "Footer years range"
    485303msgstr "Footer years range"
    486304
    487 #: includes/customizer.php:749 includes/customizer.php:765
    488 #: includes/admin.php:204
     305#: includes/admin.php:216
    489306msgid "Force admin color scheme"
    490307msgstr "Force admin colour scheme"
    491308
    492 #: includes/customizer.php:750 includes/admin.php:205
     309#: includes/admin.php:217
    493310msgid "Force all users to use a specific admin color scheme"
    494311msgstr "Force all users to use a specific admin colour scheme"
    495312
    496 #: includes/customizer.php:1329 includes/customizer.php:1345
    497 #: includes/admin.php:264
     313#: includes/admin.php:276
    498314msgid "Force vertical scrollbar"
    499315msgstr "Force vertical scrollbar"
    500316
    501 #: includes/customizer.php:1990
    502 msgid "Gap (px)"
    503 msgstr "Gap (px)"
    504 
    505 #: includes/initial-values.php:74 includes/customizer.php:1119
    506 #: includes/modules/no-howdy.php:77
     317#: includes/initial-values.php:85 includes/modules/no-howdy.php:77
    507318msgid "Go to bed"
    508319msgstr "Go to bed"
    509320
    510 #: includes/initial-values.php:71 includes/customizer.php:1085
    511 #: includes/modules/no-howdy.php:73
     321#: includes/initial-values.php:82 includes/modules/no-howdy.php:73
    512322#| msgid "Good Afternoon"
    513323msgid "Good afternoon"
    514324msgstr "Good afternoon"
    515325
    516 #: includes/initial-values.php:72 includes/customizer.php:1102
    517 #: includes/modules/no-howdy.php:75
     326#: includes/initial-values.php:83 includes/modules/no-howdy.php:75
    518327#| msgid "Good Evening"
    519328msgid "Good evening"
    520329msgstr "Good evening"
    521330
    522 #: includes/initial-values.php:73 includes/customizer.php:1068
    523 #: includes/modules/no-howdy.php:71
     331#: includes/initial-values.php:84 includes/modules/no-howdy.php:71
    524332#| msgid "Good Morning"
    525333msgid "Good morning"
    526334msgstr "Good morning"
    527335
    528 #: includes/customizer.php:1972
    529 msgid "Hover Color"
    530 msgstr "Hover Color"
    531 
    532 #: includes/customizer.php:1849 includes/customizer.php:2474
    533 msgid "Hover color"
    534 msgstr "Hover colour"
    535 
    536336#. Author URI of the plugin
    537337msgid "https://cubecolour.co.uk/"
    538338msgstr "https://cubecolour.co.uk/"
    539339
    540 #: includes/customizer.php:1749 includes/customizer.php:2250
    541 msgid "Icon"
    542 msgstr "Icon"
    543 
    544 #: includes/customizer.php:2291
    545 msgid "Icon size (px)"
    546 msgstr "Icon size (px)"
    547 
    548340#: includes/modules/show-ids.php:9
    549341msgid "ID"
    550342msgstr "ID"
    551343
    552 #: includes/admin.php:517
     344#: includes/admin.php:529
    553345msgid "Import"
    554346msgstr "Import"
    555347
    556 #: includes/admin.php:507
     348#: includes/admin.php:519
    557349msgid "Import caboodle settings"
    558350msgstr "Import caboodle settings"
    559351
    560 #: includes/admin.php:509
     352#: includes/admin.php:521
    561353msgid "Import the plugin settings from a .json file."
    562354msgstr "Import the plugin settings from a .json file."
    563355
    564 #: includes/admin.php:487
     356#: includes/admin.php:499
    565357msgid "Import/export"
    566358msgstr "Import/export"
    567359
    568 #: includes/customizer.php:462
    569 msgid "Incorrect credentials"
    570 msgstr "Incorrect credentials"
    571 
    572 #: includes/initial-values.php:53 includes/modules/login-error-message.php:13
     360#: includes/initial-values.php:63 includes/modules/login-error-message.php:13
    573361msgid "Incorrect details input"
    574362msgstr "Incorrect details input"
    575363
    576 #: includes/customizer.php:322
    577 msgid "Increase the font size in case your font has a small x-height"
    578 msgstr "Increase the font size in case your font has a small x-height"
    579 
    580 #: includes/customizer.php:1712 includes/customizer.php:1729
    581 #: includes/admin.php:324
     364#: includes/admin.php:194
     365msgid ""
     366"Increase the height of the login modal that appears after session expiration"
     367msgstr ""
     368"Increase the height of the login modal that appears after session expiration"
     369
     370#: includes/admin.php:336
    582371msgid "Indicate external links"
    583372msgstr "Indicate external links"
     
    587376msgstr "Invalid nonce. Please refresh the page and try again."
    588377
    589 #: includes/customizer.php:1575
    590 msgid "Keep posts"
    591 msgstr "Keep posts"
    592 
    593 #: includes/customizer.php:791
    594 msgid "Light"
    595 msgstr "Light"
    596 
    597 #: includes/customizer.php:2027 includes/customizer.php:2043
    598 #: includes/admin.php:336
     378#: includes/admin.php:348
    599379msgid "Lightbox"
    600380msgstr "Lightbox"
    601381
    602 #: includes/customizer.php:1157 includes/admin.php:240
     382#: includes/admin.php:252
    603383msgid "Limit revisions"
    604384msgstr "Limit revisions"
    605385
    606 #: includes/customizer.php:1142 includes/admin.php:241
     386#: includes/admin.php:253
    607387msgid "Limit the number of saved revisions"
    608388msgstr "Limit the number of saved revisions"
    609389
    610 #: includes/customizer.php:994
    611 msgid "Links"
    612 msgstr "Links"
    613 
    614 #: includes/admin.php:253
     390#: includes/admin.php:265
    615391msgid ""
    616392"List the WordPress options with their values from the admin settings menu"
     
    618394"List the WordPress options with their values from the admin settings menu"
    619395
    620 #: includes/customizer.php:193
    621 msgid "Login background"
    622 msgstr "Login background"
    623 
    624 #: includes/customizer.php:177
    625 msgid "Login page"
    626 msgstr "Login page"
    627 
    628 #: includes/admin.php:145
     396#: includes/admin.php:193
     397msgid "Login modal height"
     398msgstr "Login modal height"
     399
     400#: includes/admin.php:152
    629401msgid "Login page style"
    630402msgstr "Login page style"
    631403
    632 #: includes/customizer.php:484 includes/customizer.php:500
    633 #: includes/admin.php:174
     404#: includes/admin.php:181
    634405msgid "Login warning message"
    635406msgstr "Login warning message"
    636 
    637 #: includes/customizer.php:285
    638 msgid "Logo"
    639 msgstr "Logo"
    640407
    641408#: includes/modules/posts-rename-news.php:142
     
    643410msgstr "M j, Y @ G:i"
    644411
    645 #: includes/customizer.php:404 includes/customizer.php:420
    646 #: includes/admin.php:162
     412#: includes/admin.php:169
    647413msgid "Mask password"
    648414msgstr "Mask password"
    649415
    650 #: includes/customizer.php:922
    651 msgid "Media"
    652 msgstr "Media"
    653 
    654 #: includes/customizer.php:2120
    655 msgid "Media attachment pages"
    656 msgstr "Media attachment pages"
    657 
    658 #: includes/customizer.php:555
    659 msgid "Message"
    660 msgstr "Message"
    661 
    662 #: includes/customizer.php:796
    663 msgid "Midnight"
    664 msgstr "Midnight"
    665 
    666 #: includes/customizer.php:792
    667 msgid "Modern"
    668 msgstr "Modern"
    669 
    670 #: includes/customizer.php:660 includes/admin.php:187
     416#: includes/admin.php:199
    671417msgid "Modify the view site link in admin to open in a new browser tab"
    672418msgstr "Modify the view site link in admin to open in a new browser tab"
     
    676422msgstr "Modules"
    677423
    678 #: includes/customizer.php:1076
    679 #| msgid "Morning Greeting"
    680 msgid "Morning greeting"
    681 msgstr "Morning greeting"
    682 
    683 #: includes/customizer.php:343 includes/admin.php:151
     424#: includes/admin.php:158
    684425msgid "Must log in by username, not by email address"
    685426msgstr "Must log in by username, not by email address"
    686427
    687 #: includes/customizer.php:1298 includes/customizer.php:1314
    688 #: includes/admin.php:258
     428#: includes/admin.php:270
    689429msgid "New plugins"
    690430msgstr "New plugins"
     
    740480msgstr "News updated."
    741481
    742 #: includes/customizer.php:1127
    743 #| msgid "Night Greeting"
    744 msgid "Night greeting"
    745 msgstr "Night greeting"
    746 
    747 #: includes/customizer.php:2679 includes/customizer.php:2695
    748 #: includes/admin.php:403
     482#: includes/admin.php:415
    749483msgid "No admin bar"
    750484msgstr "No admin bar"
    751485
    752 #: includes/customizer.php:2680
    753 msgid "No admin bar on the front end for logged-in users"
    754 msgstr "No admin bar on the front end for logged-in users"
    755 
    756 #: includes/customizer.php:2790 includes/customizer.php:2806
    757 #: includes/admin.php:423
     486#: includes/admin.php:435
    758487msgid "No author archives"
    759488msgstr "No author archives"
    760489
    761 #: includes/customizer.php:838 includes/customizer.php:856
    762 #: includes/admin.php:216
     490#: includes/admin.php:228
    763491#| msgid "Show avatars"
    764492msgid "No avatars"
    765493msgstr "No avatars"
    766494
    767 #: includes/customizer.php:2759 includes/customizer.php:2775
    768 #: includes/admin.php:416
     495#: includes/admin.php:428
    769496msgid "No comments"
    770497msgstr "No comments"
    771498
    772 #: includes/customizer.php:2883 includes/customizer.php:2899
    773 #: includes/admin.php:442
     499#: includes/admin.php:454
    774500msgid "No feeds"
    775501msgstr "No feeds"
    776502
    777 #: includes/customizer.php:2728 includes/customizer.php:2744
    778 #: includes/admin.php:409
     503#: includes/admin.php:421
    779504msgid "No file editors"
    780505msgstr "No file editors"
    781506
    782 #: includes/admin.php:404
     507#: includes/admin.php:416
    783508msgid "No front end admin bar for logged in users"
    784509msgstr "No front end admin bar for logged in users"
    785510
    786 #: includes/customizer.php:2821 includes/admin.php:429
     511#: includes/admin.php:441
    787512msgid "No generator"
    788513msgstr "No generator"
    789514
    790 #: includes/customizer.php:2837
    791 msgid "No generator tag"
    792 msgstr "No generator tag"
    793 
    794 #: includes/customizer.php:1042 includes/customizer.php:1058
    795 #: includes/admin.php:234
     515#: includes/admin.php:246
    796516msgid "No howdy"
    797517msgstr "No generator tag"
    798518
    799 #: includes/admin.php:157
     519#: includes/admin.php:164
    800520msgid "No language selector on the login page"
    801521msgstr "No language selector on the login page"
    802522
    803 #: includes/customizer.php:2182 includes/customizer.php:2198
    804 #: includes/admin.php:367
     523#: includes/admin.php:379
    805524msgid "No lazy loading"
    806525msgstr "No lazy loading"
    807526
    808 #: includes/customizer.php:358
    809 msgid "No login by email"
    810 msgstr "No login by email"
    811 
    812 #: includes/customizer.php:342 includes/admin.php:150
     527#: includes/admin.php:157
    813528msgid "No login by email address"
    814529msgstr "No login by email address"
    815530
    816 #: includes/customizer.php:373 includes/customizer.php:389
    817 #: includes/admin.php:156
     531#: includes/admin.php:163
    818532msgid "No login language selector"
    819533msgstr "No login language selector"
     
    827541msgstr "No news found in trash"
    828542
    829 #: includes/customizer.php:2945 includes/customizer.php:2961
    830 #: includes/admin.php:454
     543#: includes/admin.php:466
    831544msgid "No pingbacks"
    832545msgstr "No pingbacks"
    833546
    834 #: includes/customizer.php:2852 includes/customizer.php:2868
    835 #: includes/admin.php:435
     547#: includes/admin.php:447
    836548msgid "No RSD"
    837549msgstr "No RSD"
    838550
    839 #: includes/customizer.php:2914 includes/customizer.php:2930
    840 #: includes/admin.php:448
     551#: includes/admin.php:460
    841552#| msgid "No shortlinks"
    842553msgid "No shortlink tags"
    843554msgstr "No shortlink tags"
    844555
    845 #: includes/customizer.php:2183 includes/admin.php:368
     556#: includes/admin.php:380
    846557#| msgid "Disable WordPress lazy loading"
    847558msgid "No WordPress lazy loading"
    848559msgstr "No WordPress lazy loading"
    849560
    850 #: includes/customizer.php:1181
    851 msgid "None"
    852 msgstr "None"
    853 
    854561#: includes/modules/dashnotes.php:56
    855562msgid "Notes&hellip;"
    856563msgstr "Notes&hellip;"
    857564
    858 #: includes/customizer.php:606
    859 msgid "Number of bars"
    860 msgstr "Number of bars"
    861 
    862 #: includes/customizer.php:1178
    863 msgid "Number of Revisions to save"
    864 msgstr "Number of Revisions to save"
    865 
    866 #: includes/customizer.php:797
    867 msgid "Ocean"
    868 msgstr "Ocean"
    869 
    870 #: includes/customizer.php:659 includes/customizer.php:675
    871 #: includes/admin.php:186
     565#: includes/admin.php:198
    872566msgid "Open site in new tab"
    873567msgstr "Open site in new tab"
    874568
    875 #: includes/customizer.php:2315
    876 msgid "Padding (px)"
    877 msgstr "Padding (px)"
    878 
    879 #: includes/customizer.php:1621 includes/customizer.php:1637
    880 #: includes/customizer.php:1652 includes/customizer.php:1668
    881 #: includes/admin.php:312
     569#: includes/admin.php:324
    882570msgid "Page excerpts"
    883571msgstr "Page excerpts"
    884572
    885 #: includes/customizer.php:1460 includes/customizer.php:1476
    886 #: includes/admin.php:282
     573#: includes/admin.php:294
    887574msgid "Page slug body class"
    888575msgstr "Page slug body class"
    889576
    890 #: includes/customizer.php:569 includes/customizer.php:586
    891 #: includes/admin.php:180
     577#: includes/admin.php:187
    892578msgid "Password visualisation"
    893579msgstr "Password visualisation"
    894580
    895 #: includes/admin.php:684
     581#: includes/admin.php:696
    896582msgid "Please upload a file to import"
    897583msgstr "Please upload a file to import"
    898584
    899 #: includes/admin.php:675
     585#: includes/admin.php:687
    900586msgid "Please upload a valid .json file"
    901587msgstr "Please upload a valid .json file"
     
    911597msgstr "New"
    912598
    913 #: includes/customizer.php:2411
    914 msgid "Position bottom (px)"
    915 msgstr "Position bottom (px)"
    916 
    917 #: includes/customizer.php:2387
    918 msgid "Position right (px)"
    919 msgstr "Position right (px)"
    920 
    921 #: includes/admin.php:306
     599#: includes/admin.php:318
    922600msgid "Post thumbnails"
    923601msgstr "Post thumbnails"
    924602
    925 #: includes/customizer.php:1553 includes/admin.php:300
     603#: includes/admin.php:312
    926604msgid "Posts"
    927605msgstr "Posts"
    928606
    929 #: includes/customizer.php:1572
    930 msgid "Posts post type"
    931 msgstr "Posts post type"
    932 
    933 #: includes/customizer.php:904
    934 msgid "Posts, pages, post types"
    935 msgstr "Posts, pages, post types"
    936 
    937 #: includes/customizer.php:1330 includes/admin.php:265
     607#: includes/admin.php:277
    938608msgid "Prevent layout shift between long and short pages"
    939609msgstr "Prevent layout shift between long and short pages"
    940610
    941 #: includes/customizer.php:2946 includes/admin.php:455
     611#: includes/admin.php:467
    942612msgid "Prevent self pingbacks"
    943613msgstr "Prevent self pingbacks"
    944614
    945 #: includes/customizer.php:2649 includes/admin.php:398
     615#: includes/admin.php:410
    946616msgid "Prevent the site from loading inside an external frame or iframe"
    947617msgstr "Prevent the site from loading inside an external frame or iframe"
     
    953623msgstr "Preview news article"
    954624
    955 #: includes/customizer.php:146 includes/customizer.php:162
    956 #: includes/admin.php:139
     625#: includes/admin.php:146
    957626msgid "Private site"
    958627msgstr "Private site"
    959628
    960 #: includes/customizer.php:808 includes/admin.php:211
     629#: includes/admin.php:223
    961630msgid "Rearranges admin menu items: dashboard, pages, posts, media"
    962631msgstr "Rearranges admin menu items: dashboard, pages, posts, media"
    963632
    964 #: includes/customizer.php:2791 includes/admin.php:424
     633#: includes/admin.php:436
    965634msgid "Redirect requests for author archives to the homepage"
    966635msgstr "Redirect requests for author archives to the homepage"
    967636
    968 #: includes/customizer.php:147 includes/admin.php:140
     637#: includes/admin.php:147
    969638msgid "Redirect unauthenticated visitors to the login page"
    970639msgstr "Redirect unauthenticated visitors to the login page"
    971640
    972 #: includes/customizer.php:1554 includes/admin.php:301
     641#: includes/admin.php:313
    973642#| msgid "Keep,remove or rename the posts post type"
    974643msgid "Remove or rename the posts post type"
    975644msgstr "Remove or rename the posts post type"
    976645
    977 #: includes/customizer.php:1577
    978 msgid "Remove posts"
    979 msgstr "Remove posts"
    980 
    981 #: includes/customizer.php:839 includes/admin.php:217
     646#: includes/admin.php:229
    982647#| msgid "Remove all support for gravatars or user avatars"
    983648msgid "Remove support for gravatars or user avatars"
    984649msgstr "Remove support for gravatars or user avatars"
    985650
    986 #: includes/customizer.php:374
    987 msgid "Remove the language selector from the login page"
    988 msgstr "Remove the language selector from the login page"
    989 
    990 #: includes/customizer.php:2853 includes/admin.php:436
     651#: includes/admin.php:448
    991652#| msgid "Remove the RSD (Really Simple Discovery) endpoint"
    992653msgid "Remove the Really Simple Discovery endpoint"
    993654msgstr "Remove the Really Simple Discovery endpoint"
    994655
    995 #: includes/customizer.php:2884 includes/admin.php:443
     656#: includes/admin.php:455
    996657msgid "Remove the RSS, RDF and atom feeds"
    997658msgstr "Remove the RSS, RDF and atom feeds"
    998659
    999 #: includes/customizer.php:2915 includes/admin.php:449
     660#: includes/admin.php:461
    1000661#| msgid "Remove the short link header tags"
    1001662msgid "Remove the shortlink header tags"
    1002663msgstr "Remove the shortlink header tags"
    1003664
    1004 #: includes/customizer.php:2822 includes/admin.php:430
     665#: includes/admin.php:442
    1005666msgid "Remove the WordPress generator meta tag"
    1006667msgstr "Remove the WordPress generator meta tag"
    1007668
    1008 #: includes/customizer.php:2760 includes/admin.php:417
     669#: includes/admin.php:429
    1009670msgid "Removes support for comments"
    1010671msgstr "Removes support for comments"
    1011672
    1012 #: includes/customizer.php:2729 includes/admin.php:410
     673#: includes/admin.php:422
    1013674msgid "Removes the theme and plugin editors from admin"
    1014675msgstr "Removes the theme and plugin editors from admin"
    1015676
    1016 #: includes/customizer.php:1576
    1017 #| msgid "Rename posts as news"
    1018 msgid "Rename posts to news"
    1019 msgstr "Rename posts to news"
    1020 
    1021 #: includes/customizer.php:1043 includes/admin.php:235
     677#: includes/admin.php:247
    1022678msgid ""
    1023679"Replace the howdy greeting with a salutation appropriate to the time of day"
     
    1025681"Replace the howdy greeting with a salutation appropriate to the time of day"
    1026682
    1027 #: includes/customizer.php:1492 includes/admin.php:289
     683#: includes/admin.php:301
    1028684#| msgid "Replace spaces around en-dashes & em-dashes with hairspaces"
    1029685msgid "Replace the spaces around en-dashes & em-dashes with hairspaces"
    1030686msgstr "Replace the spaces around en-dashes & em-dashes with hairspaces"
    1031687
    1032 #: includes/customizer.php:690 includes/admin.php:193
     688#: includes/admin.php:205
    1033689msgid ""
    1034690"Replace the WP logo in the admin toolbar with the site icon if one is "
     
    1038694"configured"
    1039695
    1040 #: includes/customizer.php:689 includes/admin.php:192
     696#: includes/admin.php:204
    1041697msgid "Replace WordPress logo"
    1042698msgstr "Replace WordPress logo"
    1043699
    1044 #: includes/customizer.php:705
    1045 msgid "Replace WP logo"
    1046 msgstr "Replace WP logo"
    1047 
    1048 #: includes/customizer.php:3043 includes/admin.php:475
     700#: includes/admin.php:487
    1049701msgid "Responsive breakpoints"
    1050702msgstr "Responsive breakpoints"
    1051703
    1052 #: includes/customizer.php:1523 includes/admin.php:295
     704#: includes/admin.php:307
    1053705msgid "Restores the previous (classic) widgets settings page"
    1054706msgstr "Restores the previous (classic) widgets settings page"
    1055707
    1056 #: includes/customizer.php:1141
    1057 msgid "Revisions"
    1058 msgstr "Revisions"
    1059 
    1060 #: includes/customizer.php:630
    1061 msgid "Salt (random when blank)"
    1062 msgstr "Salt (random when blank)"
    1063 
    1064 #: includes/customizer.php:1360 includes/customizer.php:1376
    1065 #: includes/admin.php:270
     708#: includes/admin.php:282
    1066709msgid "Scroll to anchor"
    1067710msgstr "Scroll to anchor"
    1068711
    1069 #: includes/customizer.php:2213 includes/customizer.php:2229
    1070 #: includes/admin.php:373
     712#: includes/admin.php:385
    1071713msgid "Scroll to top"
    1072714msgstr "Scroll to top"
     
    1081723msgstr "Search news"
    1082724
    1083 #: includes/customizer.php:3012 includes/admin.php:469
     725#: includes/admin.php:481
    1084726msgid "Search placeholder"
    1085727msgstr "Search placeholder"
    1086728
    1087 #: includes/customizer.php:3028
    1088 msgid "Search placeholder text"
    1089 msgstr "Search placeholder text"
    1090 
    1091 #: includes/customizer.php:3059
    1092 msgid "Set breakpoints"
    1093 msgstr "Set breakpoints"
    1094 
    1095 #: includes/customizer.php:3044 includes/admin.php:476
     729#: includes/admin.php:488
    1096730msgid "Set custom mobile and tablet breakpoints for the Astra theme"
    1097731msgstr "Set custom mobile and tablet breakpoints for the Astra theme"
     
    1101735msgstr "Settings"
    1102736
    1103 #: includes/customizer.php:1010
    1104 msgid "Show current WP version"
    1105 msgstr "Show current WP version"
    1106 
    1107 #: includes/admin.php:348
     737#: includes/admin.php:360
    1108738msgid "Show file size in media library"
    1109739msgstr "Show file size in media library"
    1110740
    1111 #: includes/customizer.php:870 includes/customizer.php:886
    1112 #: includes/admin.php:222
     741#: includes/admin.php:234
    1113742msgid "Show IDs"
    1114743msgstr "Show IDs"
    1115744
    1116 #: includes/customizer.php:2058 includes/customizer.php:2074
    1117 msgid "Show media file size"
    1118 msgstr "Show media file size"
    1119 
    1120 #: includes/customizer.php:1934
    1121 msgid "Show only when hovered"
    1122 msgstr "Show only when hovered"
    1123 
    1124 #: includes/customizer.php:1267 includes/customizer.php:1283
    1125 #: includes/admin.php:252
     745#: includes/admin.php:264
    1126746msgid "Show settings"
    1127747msgstr "Show settings"
    1128748
    1129 #: includes/customizer.php:1011 includes/admin.php:229
     749#: includes/admin.php:241
    1130750#| msgid ""
    1131751#| "Show the current WP version in the admin footer when an upgrade is "
     
    1138758"available"
    1139759
    1140 #: includes/customizer.php:871
    1141 msgid ""
    1142 "Show the ID for posts, pages, custom post types, taxonomies, media and user "
    1143 "IDs in the admin pages"
    1144 msgstr ""
    1145 "Show the ID for posts, pages, custom post types, taxonomies, media and user "
    1146 "IDs in the admin pages"
    1147 
    1148 #: includes/admin.php:223
     760#: includes/admin.php:235
    1149761msgid ""
    1150762"Show the ID for posts, pages, custom post types, taxonomies, media and users"
     
    1152764"Show the ID for posts, pages, custom post types, taxonomies, media and users"
    1153765
    1154 #: includes/customizer.php:1591
    1155 msgid "Show the thumbnail of the featured image in the admin posts page"
    1156 msgstr "Show the thumbnail of the featured image in the admin posts page"
    1157 
    1158 #: includes/customizer.php:1590 includes/customizer.php:1606
    1159 msgid "Show thumbnails in admin"
    1160 msgstr "Show thumbnails in admin"
    1161 
    1162 #: includes/customizer.php:1026
    1163 msgid "Show WordPress version"
    1164 msgstr "Show WordPress version"
    1165 
    1166 #: includes/customizer.php:452
    1167 msgid "Single error message"
    1168 msgstr "Single error message"
    1169 
    1170 #: includes/customizer.php:436 includes/admin.php:168
     766#: includes/admin.php:175
    1171767msgid "Single login error message"
    1172768msgstr "Single login error message"
     
    1176772msgstr "Site Settings"
    1177773
    1178 #: includes/customizer.php:1781
    1179 #| msgid "Size (em)"
    1180 msgid "Size (px)"
    1181 msgstr "Size (px)"
    1182 
    1183 #: includes/customizer.php:1361 includes/admin.php:271
     774#: includes/admin.php:283
    1184775#| msgid ""
    1185776#| "Smoothly animate when clicking a link targetting an anchored position"
     
    1187778msgstr "Smoothly animate when clicking a link targeting an anchored position"
    1188779
    1189 #: includes/customizer.php:798
    1190 msgid "Sunrise"
    1191 msgstr "Sunrise"
    1192 
    1193 #: includes/customizer.php:2089 includes/customizer.php:2105
    1194 #: includes/admin.php:342
     780#: includes/admin.php:354
    1195781msgid "SVG support"
    1196782msgstr "SVG support"
    1197783
    1198 #: includes/customizer.php:940
    1199 msgid "Taxonomies"
    1200 msgstr "Taxonomies"
    1201 
    1202 #: includes/customizer.php:251 includes/customizer.php:520
    1203 #: includes/customizer.php:1427
    1204 msgid "Text color"
    1205 msgstr "Text colour"
    1206 
    1207 #: includes/customizer.php:1391 includes/customizer.php:1407
    1208 #: includes/admin.php:276
     784#: includes/admin.php:288
    1209785msgid "Text selection"
    1210786msgstr "Text selection"
    1211787
    1212 #: includes/admin.php:728
     788#: includes/admin.php:740
    1213789msgid "The caboodle settings have been imported"
    1214790msgstr "The caboodle settings have been imported"
    1215791
    1216 #: includes/customizer.php:303
    1217 msgid "The name of a google font"
    1218 msgstr "The name of a google font"
    1219 
    1220 #: includes/customizer.php:437 includes/admin.php:169
     792#: includes/admin.php:176
    1221793msgid "The same message for wrong username or wrong password"
    1222794msgstr "The same message for wrong username or wrong password"
    1223795
    1224 #: includes/customizer.php:537
    1225 msgid "Title"
    1226 msgstr "Title"
    1227 
    1228 #: includes/customizer.php:1953
    1229 msgid "Underline Color"
    1230 msgstr "Underline Color"
    1231 
    1232 #: includes/customizer.php:1190
    1233 msgid "Unlimited"
    1234 msgstr "Unlimited"
    1235 
    1236 #: includes/customizer.php:1682 includes/customizer.php:1698
    1237 #: includes/admin.php:318
     796#: includes/admin.php:330
    1238797msgid "Unlink parent menu items"
    1239798msgstr "Unlink parent menu items"
    1240799
    1241 #: includes/customizer.php:3013 includes/admin.php:470
     800#: includes/admin.php:482
    1242801msgid "Use translatable default text in Astra theme header cover search"
    1243802msgstr "Use translatable default text in Astra theme header cover search"
     
    1248807msgstr "Username"
    1249808
    1250 #: includes/customizer.php:958
    1251 msgid "Users"
    1252 msgstr "Users"
    1253 
    1254 #: includes/customizer.php:1805
    1255 msgid "Vertical position (px)"
    1256 msgstr "Vertical position (px)"
    1257 
    1258809#: includes/modules/posts-rename-news.php:50
    1259810msgid "View news"
     
    1265816msgstr "View news article"
    1266817
    1267 #: includes/customizer.php:1897 includes/customizer.php:1915
    1268 #: includes/admin.php:330
     818#: includes/admin.php:342
    1269819msgid "Wavy links"
    1270820msgstr "Wavy links"
    1271 
    1272 #: includes/customizer.php:1898
    1273 msgid "Wavy underline for links"
    1274 msgstr "Wavy underline for links"
    1275821
    1276822#. Developer name
     
    1280826msgstr "website by %1$s"
    1281827
    1282 #: includes/customizer.php:2571
    1283 msgid "Years shortcode"
    1284 msgstr "Years shortcode"
    1285 
    1286 #: includes/admin.php:571
     828#: includes/admin.php:583
    1287829#| msgid ""
    1288830#| "The cc_caboodle option containing the array of setting values does not "
  • cubecolour-caboodle/trunk/languages/cubecolour-caboodle.pot

    r3307308 r3312214  
    1212"Content-Type: text/plain; charset=UTF-8\n"
    1313"Content-Transfer-Encoding: 8bit\n"
    14 "POT-Creation-Date: 2025-06-06 00:35+0000\n"
     14"POT-Creation-Date: 2025-06-16 00:30+0000\n"
    1515"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1616"X-Generator: Loco https://localise.biz/\n"
     
    5353msgstr ""
    5454
    55 #: includes/customizer.php:1299 includes/admin.php:259
     55#: includes/admin.php:132
     56msgid "Above header banner"
     57msgstr ""
     58
     59#: includes/admin.php:271
    5660msgid "Add \"New\" & \"Beta\" links to the add plugins page"
    5761msgstr ""
    5862
    59 #. %1$s: <code>target="_blank"</code>, %2$s: <code>rel="noopener noreferrer nofollow"</code>
    60 #: includes/customizer.php:1883
    61 #, php-format
    62 msgid "Add %1$s and %2$s attributes to external links"
    63 msgstr ""
    64 
    65 #: includes/customizer.php:2214 includes/admin.php:374
     63#: includes/admin.php:386
    6664msgid "Add a dynamic scroll to top button in the website footer"
    6765msgstr ""
    6866
    69 #: includes/admin.php:307
     67#: includes/admin.php:319
    7068msgid "Add a featured image column in the admin posts page"
    7169msgstr ""
    7270
     71#: includes/admin.php:361
     72msgid "Add a file size column in the media library"
     73msgstr ""
     74
    7375#: includes/admin.php:349
    74 msgid "Add a file size column in the media library"
    75 msgstr ""
    76 
    77 #: includes/customizer.php:2059
    78 msgid "Add a file size column in the media library list view"
     76msgid "Add a lightbox to images and galleries"
     77msgstr ""
     78
     79#: includes/admin.php:295
     80msgid "Add a page slug class to the body tag"
     81msgstr ""
     82
     83#: includes/admin.php:343
     84msgid "Add a wavy underline to links within the content"
    7985msgstr ""
    8086
    8187#: includes/admin.php:337
    82 msgid "Add a lightbox to images and galleries"
    83 msgstr ""
    84 
    85 #: includes/customizer.php:2028
    86 msgid ""
    87 "Add a lightbox to images and galleries (Ensure you set the image or gallery "
    88 "to link to the media file)"
    89 msgstr ""
    90 
    91 #: includes/customizer.php:1461 includes/admin.php:283
    92 msgid "Add a page slug class to the body tag"
    93 msgstr ""
    94 
    95 #: includes/admin.php:331
    96 msgid "Add a wavy underline to links within the content"
    97 msgstr ""
    98 
    99 #: includes/admin.php:325
    10088msgid "Add an arrow icon to identify external links within the site content"
    10189msgstr ""
    10290
    103 #: includes/customizer.php:1713
    104 msgid "Add an icon to links which direct offsite"
    105 msgstr ""
    106 
    107 #: includes/customizer.php:1881
    108 msgid "Add attributes"
    109 msgstr ""
    110 
    111 #: includes/customizer.php:2167
    112 msgid "Add caboodle dashicons"
    113 msgstr ""
    114 
    115 #: includes/customizer.php:2151 includes/admin.php:360
     91#: includes/admin.php:372
    11692msgid "Add dashicons"
    11793msgstr ""
     
    12399msgstr ""
    124100
    125 #: includes/customizer.php:1622 includes/customizer.php:1653
    126 #: includes/admin.php:313
     101#: includes/admin.php:325
    127102msgid "Add support for manual excerpts to pages"
    128103msgstr ""
    129104
    130 #: includes/customizer.php:2090
    131 msgid "Add support for SVG files"
    132 msgstr ""
    133 
    134 #: includes/admin.php:343
     105#: includes/admin.php:355
    135106msgid "Add support for SVGs"
    136107msgstr ""
    137108
    138 #: includes/customizer.php:116 includes/customizer.php:132
    139 #: includes/admin.php:132
     109#: includes/admin.php:139
    140110msgid "Additional date & time formats"
    141111msgstr ""
    142112
    143 #: includes/customizer.php:1268
    144 msgid "Adds a link in admin settings menu to view saved options"
    145 msgstr ""
    146 
    147 #: includes/customizer.php:720 includes/admin.php:199
     113#: includes/admin.php:211
    148114msgid "Adds a simple notepad widget to the dashboard"
    149115msgstr ""
    150116
    151 #: includes/customizer.php:117 includes/admin.php:133
     117#: includes/admin.php:133
     118msgid "Adds a text banner above the header on all pages"
     119msgstr ""
     120
     121#: includes/admin.php:140
    152122msgid ""
    153123"Adds new options for date and time formats in the general settings admin page"
    154124msgstr ""
    155125
    156 #: includes/customizer.php:321
    157 msgid "Adjust font size (%)"
    158 msgstr ""
    159 
    160 #: includes/customizer.php:807 includes/customizer.php:823
    161 #: includes/admin.php:210
     126#: includes/admin.php:222
    162127msgid "Admin menu order"
    163 msgstr ""
    164 
    165 #: includes/customizer.php:1093
    166 msgid "Afternoon greeting"
    167128msgstr ""
    168129
     
    171132msgstr ""
    172133
    173 #: includes/customizer.php:646
    174 msgid "Also include on frontend"
    175 msgstr ""
    176 
    177134#. Description of the plugin
    178135msgid "An agglomeration of useful functions"
    179136msgstr ""
    180137
    181 #: includes/customizer.php:2648 includes/customizer.php:2664
    182 #: includes/admin.php:397
     138#: includes/admin.php:409
    183139msgid "Anti clickjack"
    184140msgstr ""
    185141
    186 #: includes/customizer.php:2616 includes/customizer.php:2632
    187 #: includes/admin.php:391
     142#: includes/admin.php:403
    188143msgid "Anti spambot"
    189144msgstr ""
    190145
    191 #: includes/admin.php:146
     146#: includes/admin.php:153
    192147msgid "Apply customizations to the login page"
    193148msgstr ""
    194149
    195 #: includes/initial-values.php:56 includes/customizer.php:529
    196 #: includes/modules/login-warning.php:23
     150#: includes/initial-values.php:67 includes/modules/login-warning.php:23
    197151msgid "Authorised access only"
    198152msgstr ""
    199153
    200 #: includes/customizer.php:1446 includes/customizer.php:2455
    201 msgid "Background color"
    202 msgstr ""
    203 
    204 #: includes/customizer.php:2493
    205 msgid "Background hover color"
    206 msgstr ""
    207 
    208 #: includes/customizer.php:793
    209 msgid "Blue"
    210 msgstr ""
    211 
    212 #: includes/customizer.php:2363
    213 msgid "Border radius (%)"
    214 msgstr ""
    215 
    216 #: includes/customizer.php:2339
    217 msgid "Border width (px)"
    218 msgstr ""
    219 
    220 #: includes/customizer.php:268
    221 msgid "Borderless"
    222 msgstr ""
    223 
    224 #: includes/customizer.php:3102
    225 msgid "Breakpoint for mobile"
    226 msgstr ""
    227 
    228 #: includes/customizer.php:3078
    229 msgid "Breakpoint for tablet"
    230 msgstr ""
    231 
    232 #: includes/customizer.php:105
    233 msgid "Caboodle"
    234 msgstr ""
    235 
    236 #: includes/customizer.php:1522 includes/customizer.php:1538
    237 #: includes/admin.php:294
     154#: includes/admin.php:306
    238155msgid "Classic widgets"
    239156msgstr ""
    240157
    241 #: includes/customizer.php:794
    242 msgid "Coffee"
    243 msgstr ""
    244 
    245 #: includes/customizer.php:1830 includes/customizer.php:2436
    246 msgid "Color"
    247 msgstr ""
    248 
    249 #: includes/customizer.php:1392 includes/admin.php:277
     158#: includes/admin.php:289
    250159msgid "Color and background color of selected text"
    251160msgstr ""
    252161
    253 #: includes/customizer.php:232
    254 msgid "Color centre"
    255 msgstr ""
    256 
    257 #: includes/customizer.php:213
    258 msgid "Color left &amp; right"
    259 msgstr ""
    260 
    261 #: includes/customizer.php:787
    262 msgid "Color scheme"
    263 msgstr ""
    264 
    265 #: includes/customizer.php:976
    266 msgid "Comments"
    267 msgstr ""
    268 
    269 #: includes/customizer.php:2592
    270 msgid "Copyright from year"
    271 msgstr ""
    272 
    273 #: includes/admin.php:386
     162#: includes/admin.php:398
    274163msgid ""
    275164"Copyright years shortcode for use in footer [years start=2025 format=roman]"
    276 msgstr ""
    277 
    278 #: includes/customizer.php:2556
    279 msgid "Copyright years shortcode to use in footer"
    280 msgstr ""
    281 
    282 #: includes/customizer.php:2013
    283 msgid "CSS Selector"
    284165msgstr ""
    285166
     
    292173msgstr ""
    293174
    294 #: includes/admin.php:537
     175#: includes/admin.php:549
    295176msgid "Current settings:"
    296177msgstr ""
     
    300181msgstr ""
    301182
    302 #: includes/admin.php:228
     183#: includes/admin.php:240
    303184msgid "Current WP version"
    304185msgstr ""
     
    312193msgstr ""
    313194
    314 #: includes/customizer.php:178
    315 msgid "Customize the login page"
    316 msgstr ""
    317 
    318 #: includes/customizer.php:1491 includes/customizer.php:1507
    319 #: includes/admin.php:288
     195#: includes/admin.php:300
    320196msgid "Dash spacing"
    321197msgstr ""
    322198
    323 #: includes/customizer.php:719 includes/customizer.php:735
    324 #: includes/admin.php:198
     199#: includes/admin.php:210
    325200msgid "Dashboard notes"
    326201msgstr ""
    327202
    328 #: includes/customizer.php:790
    329 msgid "Default"
    330 msgstr ""
    331 
    332 #: includes/customizer.php:1202 includes/customizer.php:1218
    333 #: includes/admin.php:246
     203#: includes/admin.php:258
    334204msgid "Developer link"
    335205msgstr ""
    336206
    337 #: includes/customizer.php:1203 includes/admin.php:247
     207#: includes/admin.php:259
    338208msgid "Developer link in admin footer and [developer] shortcode for front end"
    339209msgstr ""
    340210
    341 #: includes/customizer.php:1253
    342 msgid "Developer link URL"
    343 msgstr ""
    344 
    345 #: includes/customizer.php:1236
    346 msgid "Developer name"
    347 msgstr ""
    348 
    349 #: includes/initial-values.php:57 includes/customizer.php:547
    350 #: includes/modules/login-warning.php:24
     211#: includes/initial-values.php:68 includes/modules/login-warning.php:24
    351212msgid ""
    352213"Disconnect immediately and do not attempt to log in if you are not an "
     
    354215msgstr ""
    355216
    356 #: includes/customizer.php:570 includes/admin.php:181
     217#: includes/admin.php:188
    357218msgid "Display colored bars for visual confirmation of password input"
    358219msgstr ""
    359220
    360 #: includes/customizer.php:405 includes/admin.php:163
     221#: includes/admin.php:170
    361222msgid ""
    362223"Do not expose password characters when entered on iPad, iPhone or android"
    363224msgstr ""
    364225
    365 #: includes/admin.php:583
     226#: includes/admin.php:595
    366227msgid "Documentation"
    367 msgstr ""
    368 
    369 #: includes/customizer.php:795
    370 msgid "Ectoplasm"
    371228msgstr ""
    372229
     
    375232msgstr ""
    376233
    377 #: includes/customizer.php:2617 includes/admin.php:392
     234#: includes/admin.php:404
    378235msgid "email shortcode to help protect email addresses from spambots"
    379236msgstr ""
    380237
    381 #: includes/customizer.php:2976 includes/customizer.php:2992
    382 #: includes/admin.php:460
     238#: includes/admin.php:472
    383239msgid "Embed bandcamp"
    384240msgstr ""
    385241
    386 #: includes/customizer.php:2136
    387 msgid "Enable attachment pages"
    388 msgstr ""
    389 
    390 #: includes/customizer.php:1683 includes/admin.php:319
     242#: includes/admin.php:331
    391243msgid "Enable drop down menus to work more intuitively"
    392244msgstr ""
    393245
    394 #: includes/customizer.php:2121 includes/admin.php:354 includes/admin.php:355
     246#: includes/admin.php:366 includes/admin.php:367
    395247msgid "Enable media attachment pages"
    396248msgstr ""
    397249
    398 #: includes/admin.php:461
     250#: includes/admin.php:473
    399251msgid "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    400252msgstr ""
    401253
    402 #: includes/customizer.php:2977
    403 msgid ""
    404 "Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio "
    405 "player"
    406 msgstr ""
    407 
    408 #: includes/customizer.php:470
    409 msgid "Error message"
    410 msgstr ""
    411 
    412 #: includes/admin.php:663
     254#: includes/admin.php:675
    413255msgid "Error: Nonce verification has failed"
    414256msgstr ""
    415257
    416 #: includes/customizer.php:1110
    417 msgid "Evening greeting"
    418 msgstr ""
    419 
    420 #: includes/customizer.php:2713
    421 msgid "Except for administrators"
    422 msgstr ""
    423 
    424 #: includes/admin.php:500
     258#: includes/admin.php:512
    425259msgid "Export"
    426260msgstr ""
    427261
    428 #: includes/admin.php:493
     262#: includes/admin.php:505
    429263msgid "Export caboodle settings"
    430264msgstr ""
    431265
    432 #: includes/admin.php:495
     266#: includes/admin.php:507
    433267msgid "Export the current plugin settings as a .json file."
    434268msgstr ""
    435269
    436 #: includes/customizer.php:2152 includes/admin.php:361
     270#: includes/admin.php:373
    437271msgid "Extend dashicons with new icons"
    438272msgstr ""
    439273
    440 #: includes/customizer.php:485 includes/admin.php:175
     274#: includes/admin.php:182
    441275msgid "Extra text added to login form"
    442276msgstr ""
     
    446280msgstr ""
    447281
    448 #: includes/customizer.php:2507 includes/customizer.php:2523
    449 #: includes/admin.php:379
     282#: includes/admin.php:391
    450283msgid "Fix footer"
    451284msgstr ""
    452285
    453 #: includes/customizer.php:2508 includes/admin.php:380
     286#: includes/admin.php:392
    454287msgid "Fix the footer element to the bottom of the viewport on short pages"
    455288msgstr ""
    456289
    457 #: includes/customizer.php:302
    458 msgid "Font"
    459 msgstr ""
    460 
    461 #: includes/customizer.php:2541
    462 msgid "Footer element to fix"
    463 msgstr ""
    464 
    465 #: includes/customizer.php:2555 includes/admin.php:385
     290#: includes/admin.php:397
    466291msgid "Footer years range"
    467292msgstr ""
    468293
    469 #: includes/customizer.php:749 includes/customizer.php:765
    470 #: includes/admin.php:204
     294#: includes/admin.php:216
    471295msgid "Force admin color scheme"
    472296msgstr ""
    473297
    474 #: includes/customizer.php:750 includes/admin.php:205
     298#: includes/admin.php:217
    475299msgid "Force all users to use a specific admin color scheme"
    476300msgstr ""
    477301
    478 #: includes/customizer.php:1329 includes/customizer.php:1345
    479 #: includes/admin.php:264
     302#: includes/admin.php:276
    480303msgid "Force vertical scrollbar"
    481304msgstr ""
    482305
    483 #: includes/customizer.php:1990
    484 msgid "Gap (px)"
    485 msgstr ""
    486 
    487 #: includes/initial-values.php:74 includes/customizer.php:1119
    488 #: includes/modules/no-howdy.php:77
     306#: includes/initial-values.php:85 includes/modules/no-howdy.php:77
    489307msgid "Go to bed"
    490308msgstr ""
    491309
    492 #: includes/initial-values.php:71 includes/customizer.php:1085
    493 #: includes/modules/no-howdy.php:73
     310#: includes/initial-values.php:82 includes/modules/no-howdy.php:73
    494311msgid "Good afternoon"
    495312msgstr ""
    496313
    497 #: includes/initial-values.php:72 includes/customizer.php:1102
    498 #: includes/modules/no-howdy.php:75
     314#: includes/initial-values.php:83 includes/modules/no-howdy.php:75
    499315msgid "Good evening"
    500316msgstr ""
    501317
    502 #: includes/initial-values.php:73 includes/customizer.php:1068
    503 #: includes/modules/no-howdy.php:71
     318#: includes/initial-values.php:84 includes/modules/no-howdy.php:71
    504319msgid "Good morning"
    505 msgstr ""
    506 
    507 #: includes/customizer.php:1972
    508 msgid "Hover Color"
    509 msgstr ""
    510 
    511 #: includes/customizer.php:1849 includes/customizer.php:2474
    512 msgid "Hover color"
    513320msgstr ""
    514321
     
    517324msgstr ""
    518325
    519 #: includes/customizer.php:1749 includes/customizer.php:2250
    520 msgid "Icon"
    521 msgstr ""
    522 
    523 #: includes/customizer.php:2291
    524 msgid "Icon size (px)"
    525 msgstr ""
    526 
    527326#: includes/modules/show-ids.php:9
    528327msgid "ID"
    529328msgstr ""
    530329
    531 #: includes/admin.php:517
     330#: includes/admin.php:529
    532331msgid "Import"
    533332msgstr ""
    534333
    535 #: includes/admin.php:507
     334#: includes/admin.php:519
    536335msgid "Import caboodle settings"
    537336msgstr ""
    538337
    539 #: includes/admin.php:509
     338#: includes/admin.php:521
    540339msgid "Import the plugin settings from a .json file."
    541340msgstr ""
    542341
    543 #: includes/admin.php:487
     342#: includes/admin.php:499
    544343msgid "Import/export"
    545344msgstr ""
    546345
    547 #: includes/customizer.php:462
    548 msgid "Incorrect credentials"
    549 msgstr ""
    550 
    551 #: includes/initial-values.php:53 includes/modules/login-error-message.php:13
     346#: includes/initial-values.php:63 includes/modules/login-error-message.php:13
    552347msgid "Incorrect details input"
    553348msgstr ""
    554349
    555 #: includes/customizer.php:322
    556 msgid "Increase the font size in case your font has a small x-height"
    557 msgstr ""
    558 
    559 #: includes/customizer.php:1712 includes/customizer.php:1729
    560 #: includes/admin.php:324
     350#: includes/admin.php:194
     351msgid ""
     352"Increase the height of the login modal that appears after session expiration"
     353msgstr ""
     354
     355#: includes/admin.php:336
    561356msgid "Indicate external links"
    562357msgstr ""
     
    566361msgstr ""
    567362
    568 #: includes/customizer.php:1575
    569 msgid "Keep posts"
    570 msgstr ""
    571 
    572 #: includes/customizer.php:791
    573 msgid "Light"
    574 msgstr ""
    575 
    576 #: includes/customizer.php:2027 includes/customizer.php:2043
    577 #: includes/admin.php:336
     363#: includes/admin.php:348
    578364msgid "Lightbox"
    579365msgstr ""
    580366
    581 #: includes/customizer.php:1157 includes/admin.php:240
     367#: includes/admin.php:252
    582368msgid "Limit revisions"
    583369msgstr ""
    584370
    585 #: includes/customizer.php:1142 includes/admin.php:241
     371#: includes/admin.php:253
    586372msgid "Limit the number of saved revisions"
    587373msgstr ""
    588374
    589 #: includes/customizer.php:994
    590 msgid "Links"
    591 msgstr ""
    592 
    593 #: includes/admin.php:253
     375#: includes/admin.php:265
    594376msgid ""
    595377"List the WordPress options with their values from the admin settings menu"
    596378msgstr ""
    597379
    598 #: includes/customizer.php:193
    599 msgid "Login background"
    600 msgstr ""
    601 
    602 #: includes/customizer.php:177
    603 msgid "Login page"
    604 msgstr ""
    605 
    606 #: includes/admin.php:145
     380#: includes/admin.php:193
     381msgid "Login modal height"
     382msgstr ""
     383
     384#: includes/admin.php:152
    607385msgid "Login page style"
    608386msgstr ""
    609387
    610 #: includes/customizer.php:484 includes/customizer.php:500
    611 #: includes/admin.php:174
     388#: includes/admin.php:181
    612389msgid "Login warning message"
    613 msgstr ""
    614 
    615 #: includes/customizer.php:285
    616 msgid "Logo"
    617390msgstr ""
    618391
     
    621394msgstr ""
    622395
    623 #: includes/customizer.php:404 includes/customizer.php:420
    624 #: includes/admin.php:162
     396#: includes/admin.php:169
    625397msgid "Mask password"
    626398msgstr ""
    627399
    628 #: includes/customizer.php:922
    629 msgid "Media"
    630 msgstr ""
    631 
    632 #: includes/customizer.php:2120
    633 msgid "Media attachment pages"
    634 msgstr ""
    635 
    636 #: includes/customizer.php:555
    637 msgid "Message"
    638 msgstr ""
    639 
    640 #: includes/customizer.php:796
    641 msgid "Midnight"
    642 msgstr ""
    643 
    644 #: includes/customizer.php:792
    645 msgid "Modern"
    646 msgstr ""
    647 
    648 #: includes/customizer.php:660 includes/admin.php:187
     400#: includes/admin.php:199
    649401msgid "Modify the view site link in admin to open in a new browser tab"
    650402msgstr ""
     
    654406msgstr ""
    655407
    656 #: includes/customizer.php:1076
    657 msgid "Morning greeting"
    658 msgstr ""
    659 
    660 #: includes/customizer.php:343 includes/admin.php:151
     408#: includes/admin.php:158
    661409msgid "Must log in by username, not by email address"
    662410msgstr ""
    663411
    664 #: includes/customizer.php:1298 includes/customizer.php:1314
    665 #: includes/admin.php:258
     412#: includes/admin.php:270
    666413msgid "New plugins"
    667414msgstr ""
     
    717464msgstr ""
    718465
    719 #: includes/customizer.php:1127
    720 msgid "Night greeting"
    721 msgstr ""
    722 
    723 #: includes/customizer.php:2679 includes/customizer.php:2695
    724 #: includes/admin.php:403
     466#: includes/admin.php:415
    725467msgid "No admin bar"
    726468msgstr ""
    727469
    728 #: includes/customizer.php:2680
    729 msgid "No admin bar on the front end for logged-in users"
    730 msgstr ""
    731 
    732 #: includes/customizer.php:2790 includes/customizer.php:2806
    733 #: includes/admin.php:423
     470#: includes/admin.php:435
    734471msgid "No author archives"
    735472msgstr ""
    736473
    737 #: includes/customizer.php:838 includes/customizer.php:856
    738 #: includes/admin.php:216
     474#: includes/admin.php:228
    739475msgid "No avatars"
    740476msgstr ""
    741477
    742 #: includes/customizer.php:2759 includes/customizer.php:2775
     478#: includes/admin.php:428
     479msgid "No comments"
     480msgstr ""
     481
     482#: includes/admin.php:454
     483msgid "No feeds"
     484msgstr ""
     485
     486#: includes/admin.php:421
     487msgid "No file editors"
     488msgstr ""
     489
    743490#: includes/admin.php:416
    744 msgid "No comments"
    745 msgstr ""
    746 
    747 #: includes/customizer.php:2883 includes/customizer.php:2899
    748 #: includes/admin.php:442
    749 msgid "No feeds"
    750 msgstr ""
    751 
    752 #: includes/customizer.php:2728 includes/customizer.php:2744
    753 #: includes/admin.php:409
    754 msgid "No file editors"
    755 msgstr ""
    756 
    757 #: includes/admin.php:404
    758491msgid "No front end admin bar for logged in users"
    759492msgstr ""
    760493
    761 #: includes/customizer.php:2821 includes/admin.php:429
     494#: includes/admin.php:441
    762495msgid "No generator"
    763496msgstr ""
    764497
    765 #: includes/customizer.php:2837
    766 msgid "No generator tag"
    767 msgstr ""
    768 
    769 #: includes/customizer.php:1042 includes/customizer.php:1058
    770 #: includes/admin.php:234
     498#: includes/admin.php:246
    771499msgid "No howdy"
    772500msgstr ""
    773501
     502#: includes/admin.php:164
     503msgid "No language selector on the login page"
     504msgstr ""
     505
     506#: includes/admin.php:379
     507msgid "No lazy loading"
     508msgstr ""
     509
    774510#: includes/admin.php:157
    775 msgid "No language selector on the login page"
    776 msgstr ""
    777 
    778 #: includes/customizer.php:2182 includes/customizer.php:2198
    779 #: includes/admin.php:367
    780 msgid "No lazy loading"
    781 msgstr ""
    782 
    783 #: includes/customizer.php:358
    784 msgid "No login by email"
    785 msgstr ""
    786 
    787 #: includes/customizer.php:342 includes/admin.php:150
    788511msgid "No login by email address"
    789512msgstr ""
    790513
    791 #: includes/customizer.php:373 includes/customizer.php:389
    792 #: includes/admin.php:156
     514#: includes/admin.php:163
    793515msgid "No login language selector"
    794516msgstr ""
     
    802524msgstr ""
    803525
    804 #: includes/customizer.php:2945 includes/customizer.php:2961
    805 #: includes/admin.php:454
     526#: includes/admin.php:466
    806527msgid "No pingbacks"
    807528msgstr ""
    808529
    809 #: includes/customizer.php:2852 includes/customizer.php:2868
    810 #: includes/admin.php:435
     530#: includes/admin.php:447
    811531msgid "No RSD"
    812532msgstr ""
    813533
    814 #: includes/customizer.php:2914 includes/customizer.php:2930
    815 #: includes/admin.php:448
     534#: includes/admin.php:460
    816535msgid "No shortlink tags"
    817536msgstr ""
    818537
    819 #: includes/customizer.php:2183 includes/admin.php:368
     538#: includes/admin.php:380
    820539msgid "No WordPress lazy loading"
    821 msgstr ""
    822 
    823 #: includes/customizer.php:1181
    824 msgid "None"
    825540msgstr ""
    826541
     
    829544msgstr ""
    830545
    831 #: includes/customizer.php:606
    832 msgid "Number of bars"
    833 msgstr ""
    834 
    835 #: includes/customizer.php:1178
    836 msgid "Number of Revisions to save"
    837 msgstr ""
    838 
    839 #: includes/customizer.php:797
    840 msgid "Ocean"
    841 msgstr ""
    842 
    843 #: includes/customizer.php:659 includes/customizer.php:675
    844 #: includes/admin.php:186
     546#: includes/admin.php:198
    845547msgid "Open site in new tab"
    846548msgstr ""
    847549
    848 #: includes/customizer.php:2315
    849 msgid "Padding (px)"
    850 msgstr ""
    851 
    852 #: includes/customizer.php:1621 includes/customizer.php:1637
    853 #: includes/customizer.php:1652 includes/customizer.php:1668
    854 #: includes/admin.php:312
     550#: includes/admin.php:324
    855551msgid "Page excerpts"
    856552msgstr ""
    857553
    858 #: includes/customizer.php:1460 includes/customizer.php:1476
    859 #: includes/admin.php:282
     554#: includes/admin.php:294
    860555msgid "Page slug body class"
    861556msgstr ""
    862557
    863 #: includes/customizer.php:569 includes/customizer.php:586
    864 #: includes/admin.php:180
     558#: includes/admin.php:187
    865559msgid "Password visualisation"
    866560msgstr ""
    867561
    868 #: includes/admin.php:684
     562#: includes/admin.php:696
    869563msgid "Please upload a file to import"
    870564msgstr ""
    871565
    872 #: includes/admin.php:675
     566#: includes/admin.php:687
    873567msgid "Please upload a valid .json file"
    874568msgstr ""
     
    884578msgstr ""
    885579
    886 #: includes/customizer.php:2411
    887 msgid "Position bottom (px)"
    888 msgstr ""
    889 
    890 #: includes/customizer.php:2387
    891 msgid "Position right (px)"
    892 msgstr ""
    893 
    894 #: includes/admin.php:306
     580#: includes/admin.php:318
    895581msgid "Post thumbnails"
    896582msgstr ""
    897583
    898 #: includes/customizer.php:1553 includes/admin.php:300
     584#: includes/admin.php:312
    899585msgid "Posts"
    900586msgstr ""
    901587
    902 #: includes/customizer.php:1572
    903 msgid "Posts post type"
    904 msgstr ""
    905 
    906 #: includes/customizer.php:904
    907 msgid "Posts, pages, post types"
    908 msgstr ""
    909 
    910 #: includes/customizer.php:1330 includes/admin.php:265
     588#: includes/admin.php:277
    911589msgid "Prevent layout shift between long and short pages"
    912590msgstr ""
    913591
    914 #: includes/customizer.php:2946 includes/admin.php:455
     592#: includes/admin.php:467
    915593msgid "Prevent self pingbacks"
    916594msgstr ""
    917595
    918 #: includes/customizer.php:2649 includes/admin.php:398
     596#: includes/admin.php:410
    919597msgid "Prevent the site from loading inside an external frame or iframe"
    920598msgstr ""
     
    926604msgstr ""
    927605
    928 #: includes/customizer.php:146 includes/customizer.php:162
    929 #: includes/admin.php:139
     606#: includes/admin.php:146
    930607msgid "Private site"
    931608msgstr ""
    932609
    933 #: includes/customizer.php:808 includes/admin.php:211
     610#: includes/admin.php:223
    934611msgid "Rearranges admin menu items: dashboard, pages, posts, media"
    935612msgstr ""
    936613
    937 #: includes/customizer.php:2791 includes/admin.php:424
     614#: includes/admin.php:436
    938615msgid "Redirect requests for author archives to the homepage"
    939616msgstr ""
    940617
    941 #: includes/customizer.php:147 includes/admin.php:140
     618#: includes/admin.php:147
    942619msgid "Redirect unauthenticated visitors to the login page"
    943620msgstr ""
    944621
    945 #: includes/customizer.php:1554 includes/admin.php:301
     622#: includes/admin.php:313
    946623msgid "Remove or rename the posts post type"
    947624msgstr ""
    948625
    949 #: includes/customizer.php:1577
    950 msgid "Remove posts"
    951 msgstr ""
    952 
    953 #: includes/customizer.php:839 includes/admin.php:217
     626#: includes/admin.php:229
    954627msgid "Remove support for gravatars or user avatars"
    955628msgstr ""
    956629
    957 #: includes/customizer.php:374
    958 msgid "Remove the language selector from the login page"
    959 msgstr ""
    960 
    961 #: includes/customizer.php:2853 includes/admin.php:436
     630#: includes/admin.php:448
    962631msgid "Remove the Really Simple Discovery endpoint"
    963632msgstr ""
    964633
    965 #: includes/customizer.php:2884 includes/admin.php:443
     634#: includes/admin.php:455
    966635msgid "Remove the RSS, RDF and atom feeds"
    967636msgstr ""
    968637
    969 #: includes/customizer.php:2915 includes/admin.php:449
     638#: includes/admin.php:461
    970639msgid "Remove the shortlink header tags"
    971640msgstr ""
    972641
    973 #: includes/customizer.php:2822 includes/admin.php:430
     642#: includes/admin.php:442
    974643msgid "Remove the WordPress generator meta tag"
    975644msgstr ""
    976645
    977 #: includes/customizer.php:2760 includes/admin.php:417
     646#: includes/admin.php:429
    978647msgid "Removes support for comments"
    979648msgstr ""
    980649
    981 #: includes/customizer.php:2729 includes/admin.php:410
     650#: includes/admin.php:422
    982651msgid "Removes the theme and plugin editors from admin"
    983652msgstr ""
    984653
    985 #: includes/customizer.php:1576
    986 msgid "Rename posts to news"
    987 msgstr ""
    988 
    989 #: includes/customizer.php:1043 includes/admin.php:235
     654#: includes/admin.php:247
    990655msgid ""
    991656"Replace the howdy greeting with a salutation appropriate to the time of day"
    992657msgstr ""
    993658
    994 #: includes/customizer.php:1492 includes/admin.php:289
     659#: includes/admin.php:301
    995660msgid "Replace the spaces around en-dashes & em-dashes with hairspaces"
    996661msgstr ""
    997662
    998 #: includes/customizer.php:690 includes/admin.php:193
     663#: includes/admin.php:205
    999664msgid ""
    1000665"Replace the WP logo in the admin toolbar with the site icon if one is "
     
    1002667msgstr ""
    1003668
    1004 #: includes/customizer.php:689 includes/admin.php:192
     669#: includes/admin.php:204
    1005670msgid "Replace WordPress logo"
    1006671msgstr ""
    1007672
    1008 #: includes/customizer.php:705
    1009 msgid "Replace WP logo"
    1010 msgstr ""
    1011 
    1012 #: includes/customizer.php:3043 includes/admin.php:475
     673#: includes/admin.php:487
    1013674msgid "Responsive breakpoints"
    1014675msgstr ""
    1015676
    1016 #: includes/customizer.php:1523 includes/admin.php:295
     677#: includes/admin.php:307
    1017678msgid "Restores the previous (classic) widgets settings page"
    1018679msgstr ""
    1019680
    1020 #: includes/customizer.php:1141
    1021 msgid "Revisions"
    1022 msgstr ""
    1023 
    1024 #: includes/customizer.php:630
    1025 msgid "Salt (random when blank)"
    1026 msgstr ""
    1027 
    1028 #: includes/customizer.php:1360 includes/customizer.php:1376
    1029 #: includes/admin.php:270
     681#: includes/admin.php:282
    1030682msgid "Scroll to anchor"
    1031683msgstr ""
    1032684
    1033 #: includes/customizer.php:2213 includes/customizer.php:2229
    1034 #: includes/admin.php:373
     685#: includes/admin.php:385
    1035686msgid "Scroll to top"
    1036687msgstr ""
     
    1045696msgstr ""
    1046697
    1047 #: includes/customizer.php:3012 includes/admin.php:469
     698#: includes/admin.php:481
    1048699msgid "Search placeholder"
    1049700msgstr ""
    1050701
    1051 #: includes/customizer.php:3028
    1052 msgid "Search placeholder text"
    1053 msgstr ""
    1054 
    1055 #: includes/customizer.php:3059
    1056 msgid "Set breakpoints"
    1057 msgstr ""
    1058 
    1059 #: includes/customizer.php:3044 includes/admin.php:476
     702#: includes/admin.php:488
    1060703msgid "Set custom mobile and tablet breakpoints for the Astra theme"
    1061704msgstr ""
     
    1065708msgstr ""
    1066709
    1067 #: includes/customizer.php:1010
    1068 msgid "Show current WP version"
    1069 msgstr ""
    1070 
    1071 #: includes/admin.php:348
     710#: includes/admin.php:360
    1072711msgid "Show file size in media library"
    1073712msgstr ""
    1074713
    1075 #: includes/customizer.php:870 includes/customizer.php:886
    1076 #: includes/admin.php:222
     714#: includes/admin.php:234
    1077715msgid "Show IDs"
    1078716msgstr ""
    1079717
    1080 #: includes/customizer.php:2058 includes/customizer.php:2074
    1081 msgid "Show media file size"
    1082 msgstr ""
    1083 
    1084 #: includes/customizer.php:1934
    1085 msgid "Show only when hovered"
    1086 msgstr ""
    1087 
    1088 #: includes/customizer.php:1267 includes/customizer.php:1283
    1089 #: includes/admin.php:252
     718#: includes/admin.php:264
    1090719msgid "Show settings"
    1091720msgstr ""
    1092721
    1093 #: includes/customizer.php:1011 includes/admin.php:229
     722#: includes/admin.php:241
    1094723msgid ""
    1095724"Show the current WordPress version in the admin footer when an upgrade is "
     
    1097726msgstr ""
    1098727
    1099 #: includes/customizer.php:871
    1100 msgid ""
    1101 "Show the ID for posts, pages, custom post types, taxonomies, media and user "
    1102 "IDs in the admin pages"
    1103 msgstr ""
    1104 
    1105 #: includes/admin.php:223
     728#: includes/admin.php:235
    1106729msgid ""
    1107730"Show the ID for posts, pages, custom post types, taxonomies, media and users"
    1108731msgstr ""
    1109732
    1110 #: includes/customizer.php:1591
    1111 msgid "Show the thumbnail of the featured image in the admin posts page"
    1112 msgstr ""
    1113 
    1114 #: includes/customizer.php:1590 includes/customizer.php:1606
    1115 msgid "Show thumbnails in admin"
    1116 msgstr ""
    1117 
    1118 #: includes/customizer.php:1026
    1119 msgid "Show WordPress version"
    1120 msgstr ""
    1121 
    1122 #: includes/customizer.php:452
    1123 msgid "Single error message"
    1124 msgstr ""
    1125 
    1126 #: includes/customizer.php:436 includes/admin.php:168
     733#: includes/admin.php:175
    1127734msgid "Single login error message"
    1128735msgstr ""
     
    1132739msgstr ""
    1133740
    1134 #: includes/customizer.php:1781
    1135 msgid "Size (px)"
    1136 msgstr ""
    1137 
    1138 #: includes/customizer.php:1361 includes/admin.php:271
     741#: includes/admin.php:283
    1139742msgid "Smoothly animate when clicking a link targeting an anchored position"
    1140743msgstr ""
    1141744
    1142 #: includes/customizer.php:798
    1143 msgid "Sunrise"
    1144 msgstr ""
    1145 
    1146 #: includes/customizer.php:2089 includes/customizer.php:2105
    1147 #: includes/admin.php:342
     745#: includes/admin.php:354
    1148746msgid "SVG support"
    1149747msgstr ""
    1150748
    1151 #: includes/customizer.php:940
    1152 msgid "Taxonomies"
    1153 msgstr ""
    1154 
    1155 #: includes/customizer.php:251 includes/customizer.php:520
    1156 #: includes/customizer.php:1427
    1157 msgid "Text color"
    1158 msgstr ""
    1159 
    1160 #: includes/customizer.php:1391 includes/customizer.php:1407
    1161 #: includes/admin.php:276
     749#: includes/admin.php:288
    1162750msgid "Text selection"
    1163751msgstr ""
    1164752
    1165 #: includes/admin.php:728
     753#: includes/admin.php:740
    1166754msgid "The caboodle settings have been imported"
    1167755msgstr ""
    1168756
    1169 #: includes/customizer.php:303
    1170 msgid "The name of a google font"
    1171 msgstr ""
    1172 
    1173 #: includes/customizer.php:437 includes/admin.php:169
     757#: includes/admin.php:176
    1174758msgid "The same message for wrong username or wrong password"
    1175759msgstr ""
    1176760
    1177 #: includes/customizer.php:537
    1178 msgid "Title"
    1179 msgstr ""
    1180 
    1181 #: includes/customizer.php:1953
    1182 msgid "Underline Color"
    1183 msgstr ""
    1184 
    1185 #: includes/customizer.php:1190
    1186 msgid "Unlimited"
    1187 msgstr ""
    1188 
    1189 #: includes/customizer.php:1682 includes/customizer.php:1698
    1190 #: includes/admin.php:318
     761#: includes/admin.php:330
    1191762msgid "Unlink parent menu items"
    1192763msgstr ""
    1193764
    1194 #: includes/customizer.php:3013 includes/admin.php:470
     765#: includes/admin.php:482
    1195766msgid "Use translatable default text in Astra theme header cover search"
    1196767msgstr ""
     
    1201772msgstr ""
    1202773
    1203 #: includes/customizer.php:958
    1204 msgid "Users"
    1205 msgstr ""
    1206 
    1207 #: includes/customizer.php:1805
    1208 msgid "Vertical position (px)"
    1209 msgstr ""
    1210 
    1211774#: includes/modules/posts-rename-news.php:50
    1212775msgid "View news"
     
    1218781msgstr ""
    1219782
    1220 #: includes/customizer.php:1897 includes/customizer.php:1915
    1221 #: includes/admin.php:330
     783#: includes/admin.php:342
    1222784msgid "Wavy links"
    1223 msgstr ""
    1224 
    1225 #: includes/customizer.php:1898
    1226 msgid "Wavy underline for links"
    1227785msgstr ""
    1228786
     
    1233791msgstr ""
    1234792
    1235 #: includes/customizer.php:2571
    1236 msgid "Years shortcode"
    1237 msgstr ""
    1238 
    1239 #: includes/admin.php:571
     793#: includes/admin.php:583
    1240794msgid ""
    1241795"Yikes! The cc_caboodle option containing the array of setting values does "
  • cubecolour-caboodle/trunk/readme.txt

    r3309462 r3312214  
    44Requires: 6.0
    55Tested up to: 6.8
    6 Stable tag: 1.4.2
     6Stable tag: 1.5.0
    77Donate link: https://cubecolour.co.uk/wp
    88Requires PHP: 7.4
     
    2525## Modules
    2626
     27### Above header banner
     28Adds a text banner above the site header on all pages
     29
    2730### Additional date and time formats
    2831Adds new options for date and time formats in the general settings admin page
     
    5154### Password visualization
    5255Visually confirm you have input the correct password before pressing the submit button by checking a pattern of coloured bars based on a hash of your input
     56
     57### Increase login modal height
     58Increase the height of the login modal that appears after session expiration
    5359
    5460### Open site in new tab
     
    238244
    239245## Changelog
     246
     247### 1.5.0
     248
     249* 'Above header banner' module
     250* 'Increase login modal height' module
    240251
    241252### 1.4.2
Note: See TracChangeset for help on using the changeset viewer.