Plugin Directory

Changeset 3286967


Ignore:
Timestamp:
05/03/2025 07:35:36 PM (7 months ago)
Author:
numeeja
Message:

v1.3.3

Location:
cubecolour-caboodle
Files:
430 added
12 edited

Legend:

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

    r3277313 r3286967  
    55Description: An agglomeration of useful functions
    66Author: cubecolour
    7 Version: 1.3.2
     7Version: 1.3.3
    88License: GPLv2 or later
    99Text Domain: cubecolour-caboodle
     
    4343 *
    4444 */
    45 define( 'CC_CABOODLE_PLUGIN_VERSION', '1.3.2' );
     45define( 'CC_CABOODLE_PLUGIN_VERSION', '1.3.3' );
    4646define( 'CC_CABOODLE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    4747define( 'CC_CABOODLE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
     
    166166
    167167    /**********************\
    168     *                     *
     168    *                      *
    169169    *   CABOODLE MODULES   *
    170     *                     *
     170    *                      *
    171171    \**********************/
    172172
     
    222222if ( cc_caboodle( 'no_login_email', '' ) == '1' ) {
    223223    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/no-login-by-email-address.php' );
     224}
     225
     226/**
     227 * No login language selector
     228 *
     229 */
     230 if ( cc_caboodle( 'no_login_language', '' ) == '1' ) {
     231    include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/no-login-language-selector.php' );
    224232}
    225233
  • cubecolour-caboodle/trunk/includes/admin.php

    r3277296 r3286967  
    152152                        </a>
    153153                    </li>
     154                    <li class="<?php cc_caboodle_module_classes( 'no_login_language' ) ?>">
     155                        <a class="module-content" href="<?php cc_caboodle_module_url( 'no_login_language' ) ?>">
     156                            <h2><?php esc_html_e( 'No login language selector', 'cubecolour-caboodle' ); ?></h2>
     157                            <p><?php esc_html_e( 'No language selector on the login page', 'cubecolour-caboodle' ); ?></p>
     158                        </a>
     159                    </li>
    154160                    <li class="<?php cc_caboodle_module_classes( 'password_mask' ) ?>">
    155161                        <a class="module-content" href="<?php cc_caboodle_module_url( 'password_mask' ) ?>">
  • cubecolour-caboodle/trunk/includes/customizer.php

    r3277296 r3286967  
    360360                'section'       => 'cc_caboodle_no_login_email_section',
    361361                'settings'      => 'cc_caboodle[no_login_email]',
     362            )
     363        )
     364    );
     365
     366
     367    /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
     368     * No login language section
     369     *
     370     */
     371    $wp_customize->add_section( 'cc_caboodle_no_login_language_section',
     372        array(
     373            'title'             => esc_html__( 'No login language selector', 'cubecolour-caboodle' ),
     374            'description'       => esc_html__( 'Remove the language selector from the login page', 'cubecolour-caboodle' ),
     375            'panel'             => 'cc_caboodle_panel'
     376        )
     377    );
     378
     379    $wp_customize->add_setting('cc_caboodle[no_login_language]', array(
     380        'default'           => false,
     381        'sanitize_callback' => 'cc_toggle_control_sanitize',
     382        'type'              => 'option',
     383        'transport'         => 'postMessage',
     384    ));
     385    $wp_customize->add_control( new Cubecolour_Toggle_Control(
     386        $wp_customize,
     387            'cc_caboodle_no_login_language',
     388            array(
     389                'label'         => esc_html__( 'No login language selector', 'cubecolour-caboodle' ),
     390                'type'          => 'checkbox',
     391                'section'       => 'cc_caboodle_no_login_language_section',
     392                'settings'      => 'cc_caboodle[no_login_language]',
    362393            )
    363394        )
  • cubecolour-caboodle/trunk/includes/initial-values.php

    r3277296 r3286967  
    7777        'no_lazy_loading'               => '',
    7878        'no_login_email'                => '',
     79        'no_login_language'             => '',
    7980        'no_pingbacks'                  => '',
    8081        'no_rsd'                        => '',
  • cubecolour-caboodle/trunk/includes/modules/devlink.php

    r3276144 r3286967  
    5656}
    5757add_shortcode( 'developer', 'cc_caboodle_front_devlink' );
     58
     59
     60/**
     61 * Remove Astra (review request) footer text on admin pages
     62 *
     63 */
     64function remove_astra_admin_footer_text() {
     65    // Check if the Astra admin class exists first
     66    if ( class_exists( 'Astra_Admin_Settings' ) ) {
     67        // Get the Astra admin instance
     68        $astra_admin = Astra_Menu::get_instance();
     69
     70        // Remove the Astra footer filter
     71        remove_filter( 'admin_footer_text', array( $astra_admin, 'astra_admin_footer_link' ), 99 );
     72    }
     73}
     74add_action( 'admin_init', 'remove_astra_admin_footer_text', 20 );
  • cubecolour-caboodle/trunk/includes/modules/login-error-message.php

    r3116538 r3286967  
    99function cc_caboodle_login_error(){
    1010
    11     return cc_caboodle( 'login_error_message', esc_html__( 'Incorrect credentials', 'cubecolour-caboodle' ) );
     11    if ( 'Incorrect details input' == cc_caboodle( 'login_error_message' ) ) {
     12   
     13        $login_error_message = __( 'Incorrect details input', 'cubecolour-caboodle' );
     14       
     15    } else {
     16   
     17        $login_error_message = esc_html__( cc_caboodle( 'login_error_message' ) );
     18   
     19    }
     20   
     21    return $login_error_message;
     22
    1223}
    1324add_filter( 'login_errors', 'cc_caboodle_login_error' );
  • cubecolour-caboodle/trunk/includes/modules/login-warning.php

    r3232146 r3286967  
    1414/**
    1515 * Login Warning
     16 * heading and text are translatable if default values are kept for both
    1617 *
    1718 */
    1819function cc_caboodle_login_warning_banner(){
    1920
     21    if ( ('Authorised access only' == cc_caboodle( 'login_warning_heading' ) ) && ( 'Disconnect immediately and do not attempt to log in if you are not an authorised user' == cc_caboodle( 'login_warning_text') ) ) {
     22   
     23        $login_warning_heading = __( 'Authorised access only', 'cubecolour-caboodle' );
     24        $login_warning_text = __( 'Disconnect immediately and do not attempt to log in if you are not an authorised user', 'cubecolour-caboodle' );
     25       
     26    } else {
     27   
     28        $login_warning_heading = esc_html__( cc_caboodle( 'login_warning_heading' ) );
     29        $login_warning_text = esc_html__( cc_caboodle( 'login_warning_text') );
     30   
     31    }
     32   
    2033    echo '<div class="login-warning"><h2 style="color:' . esc_attr( cc_caboodle( 'login_warning_color','#777777' ) ) . ';font-size: 1.4em;line-height:1.6;">' .
    21     esc_html( cc_caboodle( 'login_warning_heading', esc_html__( 'Authorised access only', 'cubecolour-caboodle' ) ), 'cubecolour-caboodle' ) . '</h2><p style="color:' . esc_attr( cc_caboodle( 'login_warning_color','#777777' ) ) . ';font-size: 1em">' . esc_html( cc_caboodle( 'login_warning_text', esc_html__( 'Disconnect immediately and do not attempt to log in if you are not an authorised user', 'cubecolour-caboodle' ) ), 'cubecolour-caboodle' ) . '</p></div>';
     34    esc_html( $login_warning_heading, 'cubecolour-caboodle' ) .
     35    '</h2><p style="color:' . esc_attr( cc_caboodle( 'login_warning_color','#777777' ) ) . ';font-size: 1em">' .
     36    esc_html(  $login_warning_text, 'cubecolour-caboodle' ) .
     37    '</p></div>';
    2238
    2339}
    2440add_action('login_form', 'cc_caboodle_login_warning_banner', 20);
    25 
    26 
    27 
    28 
  • cubecolour-caboodle/trunk/includes/modules/stomp-footer.php

    r3116538 r3286967  
    1010function cc_caboodle_stomp() {
    1111    if ( cc_caboodle( 'stomp', '' ) == '1' ) {
    12         wp_add_inline_script( 'cc-caboodle', 'function stomp(){var o=document.querySelector("body").clientHeight,t=window.innerHeight,e=document.querySelector("' . esc_attr( cc_caboodle( 'stomp_element', '#colophon' ) ) . '");t>o?(e.style.position="fixed",e.style.bottom="0",e.style.width="100%"):e.style.position="static"}window.onresize=stomp;window.onload=window.dispatchEvent(new Event("resize"));' );
     12        wp_add_inline_script( 'cc-caboodle', '
     13            function stomp() {
     14                var o = document.body.scrollHeight,
     15                    t = window.innerHeight,
     16                    e = document.querySelector("' . esc_attr( cc_caboodle( 'stomp_element', '#colophon' ) ) . '");
     17                if (!e) return;
     18                if (t > o) {
     19                    e.style.position = "fixed";
     20                    e.style.bottom = "0";
     21                    e.style.left = "0";
     22                    e.style.width = "100%";
     23                } else {
     24                    e.style.position = "static";
     25                }
     26            }
     27
     28            let resizeTimer;
     29            window.addEventListener("resize", function() {
     30                clearTimeout(resizeTimer);
     31                resizeTimer = setTimeout(stomp, 100);
     32            });
     33
     34            window.addEventListener("load", function() {
     35                stomp();
     36                // Also listen to each image load
     37                document.querySelectorAll("img").forEach(function(img) {
     38                    if (img.complete) {
     39                        // Already loaded image
     40                        stomp();
     41                    } else {
     42                        img.addEventListener("load", stomp);
     43                    }
     44                });
     45            });
     46        ');
    1347    }
    1448}
    15 
    1649add_action( 'wp_enqueue_scripts', 'cc_caboodle_stomp' );
  • cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.l10n.php

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

    r3277296 r3286967  
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"POT-Creation-Date: 2022-03-23T22:09:54+00:00\n"
    14 "PO-Revision-Date: 2025-04-19 16:33+0000\n"
     14"PO-Revision-Date: 2025-05-03 17:23+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:1210 includes/admin.php:217
     56#: includes/customizer.php:1241 includes/admin.php:253
    5757#| msgid "Add \"New\" &amp; \"Beta\" links to the add plugins page"
    5858msgid "Add \"New\" & \"Beta\" links to the add plugins page"
     
    6060
    6161#. %1$s: <code>target="_blank"</code>, %2$s: <code>rel="noopener noreferrer nofollow"</code>
    62 #: includes/customizer.php:1794
     62#: includes/customizer.php:1825
    6363#, php-format
    6464msgid "Add %1$s and %2$s attributes to external links"
    6565msgstr "Add %1$s and %2$s attributes to external links"
    6666
    67 #: includes/customizer.php:2094 includes/admin.php:326
     67#: includes/customizer.php:2125 includes/admin.php:362
    6868msgid "Add a dynamic scroll to top button in the website footer"
    6969msgstr "Add a dynamic scroll to top button in the website footer"
    7070
    71 #: includes/admin.php:265
     71#: includes/admin.php:301
    7272msgid "Add a featured image column in the admin posts page"
    7373msgstr "Add a featured image column in the admin posts page"
    7474
    75 #: includes/admin.php:301
     75#: includes/admin.php:337
    7676#| msgid "Show a file size column in the media library"
    7777msgid "Add a file size column in the media library"
    7878msgstr "Add a file size column in the media library"
    7979
    80 #: includes/customizer.php:1970
     80#: includes/customizer.php:2001
    8181msgid "Add a file size column in the media library list view"
    8282msgstr "Add a file size column in the media library list view"
    8383
    84 #: includes/admin.php:295
     84#: includes/admin.php:331
    8585msgid "Add a lightbox to images and galleries"
    8686msgstr "Add a lightbox to images and galleries"
    8787
    88 #: includes/customizer.php:1939
     88#: includes/customizer.php:1970
    8989msgid ""
    9090"Add a lightbox to images and galleries (Ensure you set the image or gallery "
     
    9494"to link to the media file)"
    9595
    96 #: includes/customizer.php:1372 includes/admin.php:241
     96#: includes/customizer.php:1403 includes/admin.php:277
    9797msgid "Add a page slug class to the body tag"
    9898msgstr "Add a page slug class to the body tag"
    9999
    100 #: includes/admin.php:289
     100#: includes/admin.php:325
    101101msgid "Add a wavy underline to links within the content"
    102102msgstr "Add a wavy underline to links within the content"
    103103
    104 #: includes/admin.php:283
     104#: includes/admin.php:319
    105105msgid "Add an arrow icon to identify external links within the site content"
    106106msgstr "Add an arrow icon to identify external links within the site content"
    107107
    108 #: includes/customizer.php:1624
     108#: includes/customizer.php:1655
    109109msgid "Add an icon to links which direct offsite"
    110110msgstr "Add an icon to links which direct offsite"
    111111
    112 #: includes/customizer.php:1792
     112#: includes/customizer.php:1823
    113113msgid "Add attributes"
    114114msgstr "Add attributes"
    115115
    116 #: includes/customizer.php:2047
     116#: includes/customizer.php:2078
    117117msgid "Add caboodle dashicons"
    118118msgstr "Add caboodle dashicons"
    119119
    120 #: includes/customizer.php:2031 includes/admin.php:312
     120#: includes/customizer.php:2062 includes/admin.php:348
    121121msgid "Add dashicons"
    122122msgstr "Add dashicons"
     
    128128msgstr "Add news article"
    129129
    130 #: includes/customizer.php:3137 includes/admin.php:452
     130#: includes/customizer.php:3168 includes/admin.php:488
    131131#| msgid "Add styles to forms created with the gravity forms plugin"
    132132msgid "Add some simple styles to forms created with the gravity forms plugin"
    133133msgstr "Add some simple styles to forms created with the gravity forms plugin"
    134134
    135 #: includes/customizer.php:1533 includes/customizer.php:1564
    136 #: includes/admin.php:271
     135#: includes/customizer.php:1564 includes/customizer.php:1595
     136#: includes/admin.php:307
    137137msgid "Add support for manual excerpts to pages"
    138138msgstr "Add support for manual excerpts to pages"
    139139
    140140#: includes/customizer.php:116 includes/customizer.php:132
    141 #: includes/admin.php:102
     141#: includes/admin.php:132
    142142msgid "Additional date & time formats"
    143143msgstr "Additional date & time formats"
    144144
    145 #: includes/customizer.php:1179
     145#: includes/customizer.php:1210
    146146msgid "Adds a link in admin settings menu to view saved options"
    147147msgstr "Adds a link in admin settings menu to view saved options"
    148148
    149 #: includes/customizer.php:689 includes/admin.php:163
     149#: includes/customizer.php:720 includes/admin.php:199
    150150msgid "Adds a simple notepad widget to the dashboard"
    151151msgstr "Adds a simple notepad widget to the dashboard"
    152152
    153 #: includes/customizer.php:117 includes/admin.php:103
     153#: includes/customizer.php:117 includes/admin.php:133
    154154msgid ""
    155155"Adds new options for date and time formats in the general settings admin page"
     
    161161msgstr "Adjust font size (%)"
    162162
    163 #: includes/customizer.php:718 includes/customizer.php:734
    164 #: includes/admin.php:168
     163#: includes/customizer.php:749 includes/customizer.php:765
     164#: includes/admin.php:204
    165165msgid "Admin menu order"
    166166msgstr "Admin menu order"
    167167
    168 #: includes/customizer.php:1004
     168#: includes/customizer.php:1035
    169169#| msgid "Afternoon Greeting"
    170170msgid "Afternoon greeting"
     
    175175msgstr "All news articles"
    176176
    177 #: includes/customizer.php:615
     177#: includes/customizer.php:646
    178178msgid "Also include on frontend"
    179179msgstr "Also include on frontend"
     
    183183msgstr "An agglomeration of useful functions"
    184184
    185 #: includes/customizer.php:2528 includes/customizer.php:2544
    186 #: includes/admin.php:349
     185#: includes/customizer.php:2559 includes/customizer.php:2575
     186#: includes/admin.php:385
    187187msgid "Anti clickjack"
    188188msgstr "Anti clickjack"
    189189
    190 #: includes/customizer.php:2496 includes/customizer.php:2512
    191 #: includes/admin.php:343
     190#: includes/customizer.php:2527 includes/customizer.php:2543
     191#: includes/admin.php:379
    192192msgid "Anti spambot"
    193193msgstr "Anti spambot"
    194194
    195 #: includes/admin.php:116
     195#: includes/admin.php:146
    196196msgid "Apply customizations to the login page"
    197197msgstr "Apply customisations to the login page"
    198198
    199 #: includes/initial-values.php:58 includes/customizer.php:498
    200 #: includes/modules/login-warning.php:21
     199#: includes/initial-values.php:58 includes/customizer.php:529
     200#: includes/modules/login-warning.php:23
    201201msgid "Authorised access only"
    202202msgstr "Authorised access only"
    203203
    204 #: includes/customizer.php:1357 includes/customizer.php:2335
     204#: includes/customizer.php:1388 includes/customizer.php:2366
    205205msgid "Background color"
    206206msgstr "Background colour"
    207207
    208 #: includes/customizer.php:2373
     208#: includes/customizer.php:2404
    209209msgid "Background hover color"
    210210msgstr "Background hover colour"
    211211
    212 #: includes/customizer.php:3172
     212#: includes/customizer.php:3203
    213213msgid "Border color"
    214214msgstr "Border colour"
    215215
    216 #: includes/customizer.php:3210
     216#: includes/customizer.php:3241
    217217msgid "Border color: focus"
    218218msgstr "Border colour: focus"
    219219
    220 #: includes/customizer.php:3191
     220#: includes/customizer.php:3222
    221221msgid "Border color: hover"
    222222msgstr "Border colour: hover"
    223223
    224 #: includes/customizer.php:2243
     224#: includes/customizer.php:2274
    225225msgid "Border radius (%)"
    226226msgstr "Border radius (%)"
    227227
    228 #: includes/customizer.php:2219
     228#: includes/customizer.php:2250
    229229msgid "Border width (px)"
    230230msgstr "Border width (px)"
     
    234234msgstr "Borderless"
    235235
    236 #: includes/customizer.php:2982
     236#: includes/customizer.php:3013
    237237msgid "Breakpoint for mobile"
    238238msgstr "Breakpoint for mobile"
    239239
    240 #: includes/customizer.php:2958
     240#: includes/customizer.php:2989
    241241msgid "Breakpoint for tablet"
    242242msgstr "Breakpoint for tablet"
     
    246246msgstr "Caboodle"
    247247
    248 #: includes/customizer.php:1433 includes/customizer.php:1449
    249 #: includes/admin.php:252
     248#: includes/customizer.php:1464 includes/customizer.php:1480
     249#: includes/admin.php:288
    250250msgid "Classic widgets"
    251251msgstr "Classic widgets"
    252252
    253 #: includes/customizer.php:1741 includes/customizer.php:2316
     253#: includes/customizer.php:1772 includes/customizer.php:2347
    254254msgid "Color"
    255255msgstr "Color"
    256256
    257 #: includes/customizer.php:1303 includes/admin.php:235
     257#: includes/customizer.php:1334 includes/admin.php:271
    258258msgid "Color and background color of selected text"
    259259msgstr "Colour and background colour of selected text"
     
    268268msgstr "Colour left &amp; right"
    269269
    270 #: includes/customizer.php:887
     270#: includes/customizer.php:918
    271271msgid "Comments"
    272272msgstr "Comments"
    273273
    274 #: includes/customizer.php:2472
     274#: includes/customizer.php:2503
    275275msgid "Copyright from year"
    276276msgstr "Copyright from year"
    277277
    278 #: includes/admin.php:338
     278#: includes/admin.php:374
    279279msgid ""
    280280"Copyright years shortcode for use in footer [years start=2025 format=roman]"
     
    282282"Copyright years shortcode for use in footer [years start=2025 format=roman]"
    283283
    284 #: includes/customizer.php:2436
     284#: includes/customizer.php:2467
    285285msgid "Copyright years shortcode to use in footer"
    286286msgstr "Copyright years shortcode to use in footer"
    287287
    288 #: includes/customizer.php:1924
     288#: includes/customizer.php:1955
    289289msgid "CSS Selector"
    290290msgstr "CSS Selector"
     
    298298msgstr "Cubecolour Caboodle"
    299299
    300 #: includes/admin.php:513
     300#: includes/admin.php:549
    301301msgid "Current settings:"
    302302msgstr "Current settings:"
     
    306306msgstr "Current Version"
    307307
    308 #: includes/admin.php:186
     308#: includes/admin.php:222
    309309msgid "Current WP version"
    310310msgstr "Current WP version"
     
    322322msgstr "Customise the login page"
    323323
    324 #: includes/customizer.php:1402 includes/customizer.php:1418
    325 #: includes/admin.php:246
     324#: includes/customizer.php:1433 includes/customizer.php:1449
     325#: includes/admin.php:282
    326326msgid "Dash spacing"
    327327msgstr "Dash spacing"
    328328
    329 #: includes/customizer.php:688 includes/customizer.php:704
    330 #: includes/admin.php:162
     329#: includes/customizer.php:719 includes/customizer.php:735
     330#: includes/admin.php:198
    331331msgid "Dashboard notes"
    332332msgstr "Dashboard notes"
    333333
    334 #: includes/customizer.php:1113 includes/customizer.php:1129
    335 #: includes/admin.php:204
     334#: includes/customizer.php:1144 includes/customizer.php:1160
     335#: includes/admin.php:240
    336336msgid "Developer link"
    337337msgstr "Developer link"
    338338
    339 #: includes/customizer.php:1114 includes/admin.php:205
     339#: includes/customizer.php:1145 includes/admin.php:241
    340340msgid "Developer link in admin footer and [developer] shortcode for front end"
    341341msgstr "Developer link in admin footer and [developer] shortcode for front end"
    342342
    343 #: includes/customizer.php:1164
     343#: includes/customizer.php:1195
    344344msgid "Developer link URL"
    345345msgstr "Developer link URL"
    346346
    347 #: includes/customizer.php:1147
     347#: includes/customizer.php:1178
    348348msgid "Developer name"
    349349msgstr "Developer name"
    350350
    351 #: includes/initial-values.php:59 includes/customizer.php:516
    352 #: includes/modules/login-warning.php:21
     351#: includes/initial-values.php:59 includes/customizer.php:547
     352#: includes/modules/login-warning.php:24
    353353msgid ""
    354354"Disconnect immediately and do not attempt to log in if you are not an "
     
    358358"authorised user"
    359359
    360 #: includes/customizer.php:539 includes/admin.php:145
     360#: includes/customizer.php:570 includes/admin.php:181
    361361msgid "Display colored bars for visual confirmation of password input"
    362362msgstr "Display coloured bars for visual confirmation of password input"
    363363
    364 #: includes/customizer.php:374 includes/admin.php:127
     364#: includes/customizer.php:405 includes/admin.php:163
    365365#| msgid ""
    366366#| "Do not expose password characters when entered on iPad, iPhone and android"
     
    370370"Do not expose password characters when entered on iPad, iPhone or android"
    371371
    372 #: includes/admin.php:559
     372#: includes/admin.php:595
    373373msgid "Documentation"
    374374msgstr "Documentation"
     
    378378msgstr "Edit news"
    379379
    380 #: includes/customizer.php:2497 includes/admin.php:344
     380#: includes/customizer.php:2528 includes/admin.php:380
    381381#| msgid "[email] shortcode to protect email addresses from spambots"
    382382msgid "email shortcode to help protect email addresses from spambots"
    383383msgstr "email shortcode to help protect email addresses from spambots"
    384384
    385 #: includes/customizer.php:2856 includes/customizer.php:2872
    386 #: includes/admin.php:412
     385#: includes/customizer.php:2887 includes/customizer.php:2903
     386#: includes/admin.php:448
    387387msgid "Embed bandcamp"
    388388msgstr "Embed bandcamp"
    389389
    390 #: includes/customizer.php:2016
     390#: includes/customizer.php:2047
    391391msgid "Enable attachment pages"
    392392msgstr "Enable attachment pages"
    393393
    394 #: includes/customizer.php:1594 includes/admin.php:277
     394#: includes/customizer.php:1625 includes/admin.php:313
    395395msgid "Enable drop down menus to work more intuitively"
    396396msgstr "Enable drop down menus to work more intuitively"
    397397
    398 #: includes/customizer.php:2001 includes/admin.php:306 includes/admin.php:307
     398#: includes/customizer.php:2032 includes/admin.php:342 includes/admin.php:343
    399399msgid "Enable media attachment pages"
    400400msgstr "Enable media attachment pages"
    401401
    402 #: includes/admin.php:413
     402#: includes/admin.php:449
    403403msgid "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    404404msgstr "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    405405
    406 #: includes/customizer.php:2857
     406#: includes/customizer.php:2888
    407407msgid ""
    408408"Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio "
     
    412412"player"
    413413
    414 #: includes/customizer.php:439
     414#: includes/customizer.php:470
    415415msgid "Error message"
    416416msgstr "Error message"
    417417
    418 #: includes/admin.php:639
     418#: includes/admin.php:675
    419419msgid "Error: Nonce verification has failed"
    420420msgstr "Error: Nonce verification has failed"
    421421
    422 #: includes/customizer.php:1021
     422#: includes/customizer.php:1052
    423423#| msgid "Evening Greeting"
    424424msgid "Evening greeting"
    425425msgstr "Evening greeting"
    426426
    427 #: includes/customizer.php:2593
     427#: includes/customizer.php:2624
    428428msgid "Except for administrators"
    429429msgstr "Except for administrators"
    430430
    431 #: includes/admin.php:476
     431#: includes/admin.php:512
    432432msgid "Export"
    433433msgstr "Export"
    434434
    435 #: includes/admin.php:469
     435#: includes/admin.php:505
    436436msgid "Export caboodle settings"
    437437msgstr "Export caboodle settings"
    438438
    439 #: includes/admin.php:471
     439#: includes/admin.php:507
    440440msgid "Export the current plugin settings as a .json file."
    441441msgstr "Export the current plugin settings as a .json file."
    442442
    443 #: includes/customizer.php:2032 includes/admin.php:313
     443#: includes/customizer.php:2063 includes/admin.php:349
    444444msgid "Extend dashicons with new icons"
    445445msgstr "Extend dashicons with new icons"
    446446
    447 #: includes/customizer.php:454 includes/admin.php:139
     447#: includes/customizer.php:485 includes/admin.php:175
    448448msgid "Extra text added to login form"
    449449msgstr "Extra text added to login form"
     
    453453msgstr "File Size"
    454454
    455 #: includes/customizer.php:2387 includes/customizer.php:2403
    456 #: includes/admin.php:331
     455#: includes/customizer.php:2418 includes/customizer.php:2434
     456#: includes/admin.php:367
    457457msgid "Fix footer"
    458458msgstr "Fix footer"
    459459
    460 #: includes/customizer.php:2388 includes/admin.php:332
     460#: includes/customizer.php:2419 includes/admin.php:368
    461461msgid "Fix the footer element to the bottom of the viewport on short pages"
    462462msgstr "Fix the footer element to the bottom of the viewport on short pages"
    463463
    464 #: includes/customizer.php:3041
     464#: includes/customizer.php:3072
    465465msgid "Flag width px"
    466466msgstr "Flag width px"
     
    470470msgstr "Font"
    471471
    472 #: includes/customizer.php:2421
     472#: includes/customizer.php:2452
    473473msgid "Footer element to fix"
    474474msgstr "Footer element to fix"
    475475
    476 #: includes/customizer.php:2435 includes/admin.php:337
     476#: includes/customizer.php:2466 includes/admin.php:373
    477477msgid "Footer years range"
    478478msgstr "Footer years range"
    479479
    480 #: includes/customizer.php:1240 includes/customizer.php:1256
    481 #: includes/admin.php:222
     480#: includes/customizer.php:1271 includes/customizer.php:1287
     481#: includes/admin.php:258
    482482msgid "Force vertical scrollbar"
    483483msgstr "Force vertical scrollbar"
    484484
    485 #: includes/customizer.php:1901
     485#: includes/customizer.php:1932
    486486msgid "Gap (px)"
    487487msgstr "Gap (px)"
    488488
    489 #: includes/initial-values.php:76 includes/customizer.php:1030
     489#: includes/initial-values.php:76 includes/customizer.php:1061
    490490#: includes/modules/no-howdy.php:77
    491491msgid "Go to bed"
    492492msgstr "Go to bed"
    493493
    494 #: includes/initial-values.php:73 includes/customizer.php:996
     494#: includes/initial-values.php:73 includes/customizer.php:1027
    495495#: includes/modules/no-howdy.php:73
    496496#| msgid "Good Afternoon"
     
    498498msgstr "Good afternoon"
    499499
    500 #: includes/initial-values.php:74 includes/customizer.php:1013
     500#: includes/initial-values.php:74 includes/customizer.php:1044
    501501#: includes/modules/no-howdy.php:75
    502502#| msgid "Good Evening"
     
    504504msgstr "Good evening"
    505505
    506 #: includes/initial-values.php:75 includes/customizer.php:979
     506#: includes/initial-values.php:75 includes/customizer.php:1010
    507507#: includes/modules/no-howdy.php:71
    508508#| msgid "Good Morning"
     
    510510msgstr "Good morning"
    511511
    512 #: includes/customizer.php:3152
     512#: includes/customizer.php:3183
    513513msgid "Gravity forms"
    514514msgstr "Gravity forms"
    515515
    516 #: includes/customizer.php:3136 includes/admin.php:451
     516#: includes/customizer.php:3167 includes/admin.php:487
    517517msgid "Gravity forms style"
    518518msgstr "Gravity forms style"
    519519
    520 #: includes/customizer.php:3065
     520#: includes/customizer.php:3096
    521521msgid "Grayscale %"
    522522msgstr "Grayscale %"
    523523
    524 #: includes/customizer.php:1883
     524#: includes/customizer.php:1914
    525525msgid "Hover Color"
    526526msgstr "Hover Color"
    527527
    528 #: includes/customizer.php:1760 includes/customizer.php:2354
     528#: includes/customizer.php:1791 includes/customizer.php:2385
    529529msgid "Hover color"
    530530msgstr "Hover colour"
     
    534534msgstr "https://cubecolour.co.uk/"
    535535
    536 #: includes/customizer.php:1660 includes/customizer.php:2130
     536#: includes/customizer.php:1691 includes/customizer.php:2161
    537537msgid "Icon"
    538538msgstr "Icon"
    539539
    540 #: includes/customizer.php:2171
     540#: includes/customizer.php:2202
    541541msgid "Icon size (px)"
    542542msgstr "Icon size (px)"
     
    546546msgstr "ID"
    547547
    548 #: includes/admin.php:493
     548#: includes/admin.php:529
    549549msgid "Import"
    550550msgstr "Import"
    551551
    552 #: includes/admin.php:483
     552#: includes/admin.php:519
    553553msgid "Import caboodle settings"
    554554msgstr "Import caboodle settings"
    555555
    556 #: includes/admin.php:485
     556#: includes/admin.php:521
    557557msgid "Import the plugin settings from a .json file."
    558558msgstr "Import the plugin settings from a .json file."
    559559
    560 #: includes/admin.php:463
     560#: includes/admin.php:499
    561561msgid "Import/export"
    562562msgstr "Import/export"
    563563
    564 #: includes/customizer.php:431 includes/modules/login-error-message.php:11
     564#: includes/customizer.php:462
    565565msgid "Incorrect credentials"
    566566msgstr "Incorrect credentials"
    567567
    568 #: includes/initial-values.php:55
     568#: includes/initial-values.php:55 includes/modules/login-error-message.php:13
    569569msgid "Incorrect details input"
    570570msgstr "Incorrect details input"
     
    574574msgstr "Increase the font size in case your font has a small x-height"
    575575
    576 #: includes/customizer.php:1623 includes/customizer.php:1640
    577 #: includes/admin.php:282
     576#: includes/customizer.php:1654 includes/customizer.php:1671
     577#: includes/admin.php:318
    578578msgid "Indicate external links"
    579579msgstr "Indicate external links"
     
    583583msgstr "Invalid nonce. Please refresh the page and try again."
    584584
    585 #: includes/customizer.php:1486
     585#: includes/customizer.php:1517
    586586msgid "Keep posts"
    587587msgstr "Keep posts"
    588588
    589 #: includes/customizer.php:1938 includes/customizer.php:1954
    590 #: includes/admin.php:294
     589#: includes/customizer.php:1969 includes/customizer.php:1985
     590#: includes/admin.php:330
    591591msgid "Lightbox"
    592592msgstr "Lightbox"
    593593
    594 #: includes/customizer.php:1068 includes/admin.php:198
     594#: includes/customizer.php:1099 includes/admin.php:234
    595595msgid "Limit revisions"
    596596msgstr "Limit revisions"
    597597
    598 #: includes/customizer.php:1053 includes/admin.php:199
     598#: includes/customizer.php:1084 includes/admin.php:235
    599599msgid "Limit the number of saved revisions"
    600600msgstr "Limit the number of saved revisions"
    601601
    602 #: includes/customizer.php:905
     602#: includes/customizer.php:936
    603603msgid "Links"
    604604msgstr "Links"
    605605
    606 #: includes/admin.php:211
     606#: includes/admin.php:247
    607607msgid ""
    608608"List the WordPress options with their values from the admin settings menu"
     
    618618msgstr "Login page"
    619619
    620 #: includes/admin.php:115
     620#: includes/admin.php:145
    621621msgid "Login page style"
    622622msgstr "Login page style"
    623623
    624 #: includes/customizer.php:453 includes/customizer.php:469
    625 #: includes/admin.php:138
     624#: includes/customizer.php:484 includes/customizer.php:500
     625#: includes/admin.php:174
    626626msgid "Login warning message"
    627627msgstr "Login warning message"
     
    635635msgstr "M j, Y @ G:i"
    636636
    637 #: includes/customizer.php:373 includes/customizer.php:389
    638 #: includes/admin.php:126
     637#: includes/customizer.php:404 includes/customizer.php:420
     638#: includes/admin.php:162
    639639msgid "Mask password"
    640640msgstr "Mask password"
    641641
    642 #: includes/customizer.php:833
     642#: includes/customizer.php:864
    643643msgid "Media"
    644644msgstr "Media"
    645645
    646 #: includes/customizer.php:2000
     646#: includes/customizer.php:2031
    647647msgid "Media attachment pages"
    648648msgstr "Media attachment pages"
    649649
    650 #: includes/customizer.php:524
     650#: includes/customizer.php:555
    651651msgid "Message"
    652652msgstr "Message"
    653653
    654 #: includes/customizer.php:629 includes/admin.php:151
     654#: includes/customizer.php:660 includes/admin.php:187
    655655msgid "Modify the view site link in admin to open in a new browser tab"
    656656msgstr "Modify the view site link in admin to open in a new browser tab"
    657657
    658 #: includes/admin.php:95
     658#: includes/admin.php:125
    659659msgid "Modules"
    660660msgstr "Modules"
    661661
    662 #: includes/customizer.php:987
     662#: includes/customizer.php:1018
    663663#| msgid "Morning Greeting"
    664664msgid "Morning greeting"
    665665msgstr "Morning greeting"
    666666
    667 #: includes/customizer.php:343 includes/admin.php:121
     667#: includes/customizer.php:343 includes/admin.php:151
    668668msgid "Must log in by username, not by email address"
    669669msgstr "Must log in by username, not by email address"
    670670
    671 #: includes/customizer.php:1209 includes/customizer.php:1225
    672 #: includes/admin.php:216
     671#: includes/customizer.php:1240 includes/customizer.php:1256
     672#: includes/admin.php:252
    673673msgid "New plugins"
    674674msgstr "New plugins"
     
    724724msgstr "News updated."
    725725
    726 #: includes/customizer.php:1038
     726#: includes/customizer.php:1069
    727727#| msgid "Night Greeting"
    728728msgid "Night greeting"
    729729msgstr "Night greeting"
    730730
    731 #: includes/customizer.php:2559 includes/customizer.php:2575
    732 #: includes/admin.php:355
     731#: includes/customizer.php:2590 includes/customizer.php:2606
     732#: includes/admin.php:391
    733733msgid "No admin bar"
    734734msgstr "No admin bar"
    735735
    736 #: includes/customizer.php:2560
     736#: includes/customizer.php:2591
    737737msgid "No admin bar on the front end for logged-in users"
    738738msgstr "No admin bar on the front end for logged-in users"
    739739
    740 #: includes/customizer.php:2670 includes/customizer.php:2686
    741 #: includes/admin.php:375
     740#: includes/customizer.php:2701 includes/customizer.php:2717
     741#: includes/admin.php:411
    742742msgid "No author archives"
    743743msgstr "No author archives"
    744744
    745 #: includes/customizer.php:749 includes/customizer.php:767
    746 #: includes/admin.php:174
     745#: includes/customizer.php:780 includes/customizer.php:798
     746#: includes/admin.php:210
    747747#| msgid "Show avatars"
    748748msgid "No avatars"
    749749msgstr "No avatars"
    750750
    751 #: includes/customizer.php:2639 includes/customizer.php:2655
    752 #: includes/admin.php:368
     751#: includes/customizer.php:2670 includes/customizer.php:2686
     752#: includes/admin.php:404
    753753msgid "No comments"
    754754msgstr "No comments"
    755755
    756 #: includes/customizer.php:2763 includes/customizer.php:2779
    757 #: includes/admin.php:394
     756#: includes/customizer.php:2794 includes/customizer.php:2810
     757#: includes/admin.php:430
    758758msgid "No feeds"
    759759msgstr "No feeds"
    760760
    761 #: includes/customizer.php:2608 includes/customizer.php:2624
    762 #: includes/admin.php:361
     761#: includes/customizer.php:2639 includes/customizer.php:2655
     762#: includes/admin.php:397
    763763msgid "No file editors"
    764764msgstr "No file editors"
    765765
    766 #: includes/admin.php:356
     766#: includes/admin.php:392
    767767msgid "No front end admin bar for logged in users"
    768768msgstr "No front end admin bar for logged in users"
    769769
    770 #: includes/customizer.php:2701 includes/admin.php:381
     770#: includes/customizer.php:2732 includes/admin.php:417
    771771msgid "No generator"
    772772msgstr "No generator"
    773773
    774 #: includes/customizer.php:2717
     774#: includes/customizer.php:2748
    775775msgid "No generator tag"
    776776msgstr "No generator tag"
    777777
    778 #: includes/customizer.php:953 includes/customizer.php:969
    779 #: includes/admin.php:192
     778#: includes/customizer.php:984 includes/customizer.php:1000
     779#: includes/admin.php:228
    780780msgid "No howdy"
    781781msgstr "No generator tag"
    782782
    783 #: includes/customizer.php:2062 includes/customizer.php:2078
    784 #: includes/admin.php:319
     783#: includes/admin.php:157
     784msgid "No language selector on the login page"
     785msgstr "No language selector on the login page"
     786
     787#: includes/customizer.php:2093 includes/customizer.php:2109
     788#: includes/admin.php:355
    785789msgid "No lazy loading"
    786790msgstr "No lazy loading"
     
    790794msgstr "No login by email"
    791795
    792 #: includes/customizer.php:342 includes/admin.php:120
     796#: includes/customizer.php:342 includes/admin.php:150
    793797msgid "No login by email address"
    794798msgstr "No login by email address"
     799
     800#: includes/customizer.php:373 includes/customizer.php:389
     801#: includes/admin.php:156
     802msgid "No login language selector"
     803msgstr "No login language selector"
    795804
    796805#: includes/modules/posts-rename-news.php:52
     
    802811msgstr "No news found in trash"
    803812
    804 #: includes/customizer.php:2825 includes/customizer.php:2841
    805 #: includes/admin.php:406
     813#: includes/customizer.php:2856 includes/customizer.php:2872
     814#: includes/admin.php:442
    806815msgid "No pingbacks"
    807816msgstr "No pingbacks"
    808817
    809 #: includes/customizer.php:2732 includes/customizer.php:2748
    810 #: includes/admin.php:387
     818#: includes/customizer.php:2763 includes/customizer.php:2779
     819#: includes/admin.php:423
    811820msgid "No RSD"
    812821msgstr "No RSD"
    813822
    814 #: includes/customizer.php:2794 includes/customizer.php:2810
    815 #: includes/admin.php:400
     823#: includes/customizer.php:2825 includes/customizer.php:2841
     824#: includes/admin.php:436
    816825#| msgid "No shortlinks"
    817826msgid "No shortlink tags"
    818827msgstr "No shortlink tags"
    819828
    820 #: includes/customizer.php:2063 includes/admin.php:320
     829#: includes/customizer.php:2094 includes/admin.php:356
    821830#| msgid "Disable WordPress lazy loading"
    822831msgid "No WordPress lazy loading"
    823832msgstr "No WordPress lazy loading"
    824833
    825 #: includes/customizer.php:1092
     834#: includes/customizer.php:1123
    826835msgid "None"
    827836msgstr "None"
     
    831840msgstr "Notes&hellip;"
    832841
    833 #: includes/customizer.php:575
     842#: includes/customizer.php:606
    834843msgid "Number of bars"
    835844msgstr "Number of bars"
    836845
    837 #: includes/customizer.php:1089
     846#: includes/customizer.php:1120
    838847msgid "Number of Revisions to save"
    839848msgstr "Number of Revisions to save"
    840849
    841 #: includes/customizer.php:3089
     850#: includes/customizer.php:3120
    842851msgid "Opacity %"
    843852msgstr "Opacity %"
    844853
    845 #: includes/customizer.php:628 includes/customizer.php:644
    846 #: includes/admin.php:150
     854#: includes/customizer.php:659 includes/customizer.php:675
     855#: includes/admin.php:186
    847856msgid "Open site in new tab"
    848857msgstr "Open site in new tab"
    849858
    850 #: includes/customizer.php:2195
     859#: includes/customizer.php:2226
    851860msgid "Padding (px)"
    852861msgstr "Padding (px)"
    853862
    854 #: includes/customizer.php:1532 includes/customizer.php:1548
    855863#: includes/customizer.php:1563 includes/customizer.php:1579
    856 #: includes/admin.php:270
     864#: includes/customizer.php:1594 includes/customizer.php:1610
     865#: includes/admin.php:306
    857866msgid "Page excerpts"
    858867msgstr "Page excerpts"
    859868
    860 #: includes/customizer.php:1371 includes/customizer.php:1387
    861 #: includes/admin.php:240
     869#: includes/customizer.php:1402 includes/customizer.php:1418
     870#: includes/admin.php:276
    862871msgid "Page slug body class"
    863872msgstr "Page slug body class"
    864873
    865 #: includes/customizer.php:538 includes/customizer.php:555
    866 #: includes/admin.php:144
     874#: includes/customizer.php:569 includes/customizer.php:586
     875#: includes/admin.php:180
    867876msgid "Password visualisation"
    868877msgstr "Password visualisation"
    869878
    870 #: includes/admin.php:660
     879#: includes/admin.php:696
    871880msgid "Please upload a file to import"
    872881msgstr "Please upload a file to import"
    873882
    874 #: includes/admin.php:651
     883#: includes/admin.php:687
    875884msgid "Please upload a valid .json file"
    876885msgstr "Please upload a valid .json file"
     
    886895msgstr "New"
    887896
    888 #: includes/customizer.php:3022
     897#: includes/customizer.php:3053
    889898msgid "Polylang"
    890899msgstr "Polylang"
    891900
    892 #: includes/customizer.php:3006 includes/admin.php:439
     901#: includes/customizer.php:3037 includes/admin.php:475
    893902msgid "Polylang SVG flags"
    894903msgstr "Polylang SVG flags"
    895904
    896 #: includes/customizer.php:2291
     905#: includes/customizer.php:2322
    897906msgid "Position bottom (px)"
    898907msgstr "Position bottom (px)"
    899908
    900 #: includes/customizer.php:2267
     909#: includes/customizer.php:2298
    901910msgid "Position right (px)"
    902911msgstr "Position right (px)"
    903912
    904 #: includes/admin.php:264
     913#: includes/admin.php:300
    905914msgid "Post thumbnails"
    906915msgstr "Post thumbnails"
    907916
    908 #: includes/customizer.php:1464 includes/admin.php:258
     917#: includes/customizer.php:1495 includes/admin.php:294
    909918msgid "Posts"
    910919msgstr "Posts"
    911920
    912 #: includes/customizer.php:1483
     921#: includes/customizer.php:1514
    913922msgid "Posts post type"
    914923msgstr "Posts post type"
    915924
    916 #: includes/customizer.php:815
     925#: includes/customizer.php:846
    917926msgid "Posts, pages, post types"
    918927msgstr "Posts, pages, post types"
    919928
    920 #: includes/customizer.php:1241 includes/admin.php:223
     929#: includes/customizer.php:1272 includes/admin.php:259
    921930msgid "Prevent layout shift between long and short pages"
    922931msgstr "Prevent layout shift between long and short pages"
    923932
    924 #: includes/customizer.php:2826 includes/admin.php:407
     933#: includes/customizer.php:2857 includes/admin.php:443
    925934msgid "Prevent self pingbacks"
    926935msgstr "Prevent self pingbacks"
    927936
    928 #: includes/customizer.php:2529 includes/admin.php:350
     937#: includes/customizer.php:2560 includes/admin.php:386
    929938msgid "Prevent the site from loading inside an external frame or iframe"
    930939msgstr "Prevent the site from loading inside an external frame or iframe"
     
    937946
    938947#: includes/customizer.php:146 includes/customizer.php:162
    939 #: includes/admin.php:109
     948#: includes/admin.php:139
    940949msgid "Private site"
    941950msgstr "Private site"
    942951
    943 #: includes/customizer.php:719 includes/admin.php:169
     952#: includes/customizer.php:750 includes/admin.php:205
    944953msgid "Rearranges admin menu items: dashboard, pages, posts, media"
    945954msgstr "Rearranges admin menu items: dashboard, pages, posts, media"
    946955
    947 #: includes/customizer.php:2671 includes/admin.php:376
     956#: includes/customizer.php:2702 includes/admin.php:412
    948957msgid "Redirect requests for author archives to the homepage"
    949958msgstr "Redirect requests for author archives to the homepage"
    950959
    951 #: includes/customizer.php:147 includes/admin.php:110
     960#: includes/customizer.php:147 includes/admin.php:140
    952961msgid "Redirect unauthenticated visitors to the login page"
    953962msgstr "Redirect unauthenticated visitors to the login page"
    954963
    955 #: includes/customizer.php:1465 includes/admin.php:259
     964#: includes/customizer.php:1496 includes/admin.php:295
    956965#| msgid "Keep,remove or rename the posts post type"
    957966msgid "Remove or rename the posts post type"
    958967msgstr "Remove or rename the posts post type"
    959968
    960 #: includes/customizer.php:1488
     969#: includes/customizer.php:1519
    961970msgid "Remove posts"
    962971msgstr "Remove posts"
    963972
    964 #: includes/customizer.php:750 includes/admin.php:175
     973#: includes/customizer.php:781 includes/admin.php:211
    965974#| msgid "Remove all support for gravatars or user avatars"
    966975msgid "Remove support for gravatars or user avatars"
    967976msgstr "Remove support for gravatars or user avatars"
    968977
    969 #: includes/customizer.php:2733 includes/admin.php:388
     978#: includes/customizer.php:374
     979msgid "Remove the language selector from the login page"
     980msgstr "Remove the language selector from the login page"
     981
     982#: includes/customizer.php:2764 includes/admin.php:424
    970983#| msgid "Remove the RSD (Really Simple Discovery) endpoint"
    971984msgid "Remove the Really Simple Discovery endpoint"
    972985msgstr "Remove the Really Simple Discovery endpoint"
    973986
    974 #: includes/customizer.php:2764 includes/admin.php:395
     987#: includes/customizer.php:2795 includes/admin.php:431
    975988msgid "Remove the RSS, RDF and atom feeds"
    976989msgstr "Remove the RSS, RDF and atom feeds"
    977990
    978 #: includes/customizer.php:2795 includes/admin.php:401
     991#: includes/customizer.php:2826 includes/admin.php:437
    979992#| msgid "Remove the short link header tags"
    980993msgid "Remove the shortlink header tags"
    981994msgstr "Remove the shortlink header tags"
    982995
    983 #: includes/customizer.php:2702 includes/admin.php:382
     996#: includes/customizer.php:2733 includes/admin.php:418
    984997msgid "Remove the WordPress generator meta tag"
    985998msgstr "Remove the WordPress generator meta tag"
    986999
    987 #: includes/customizer.php:2640 includes/admin.php:369
     1000#: includes/customizer.php:2671 includes/admin.php:405
    9881001msgid "Removes support for comments"
    9891002msgstr "Removes support for comments"
    9901003
    991 #: includes/customizer.php:2609 includes/admin.php:362
     1004#: includes/customizer.php:2640 includes/admin.php:398
    9921005msgid "Removes the theme and plugin editors from admin"
    9931006msgstr "Removes the theme and plugin editors from admin"
    9941007
    995 #: includes/customizer.php:1487
     1008#: includes/customizer.php:1518
    9961009#| msgid "Rename posts as news"
    9971010msgid "Rename posts to news"
    9981011msgstr "Rename posts to news"
    9991012
    1000 #: includes/customizer.php:3007 includes/admin.php:440
     1013#: includes/customizer.php:3038 includes/admin.php:476
    10011014msgid "Replace the default bitmap flags in polylang"
    10021015msgstr "Replace the default bitmap flags in polylang"
    10031016
    1004 #: includes/customizer.php:954 includes/admin.php:193
     1017#: includes/customizer.php:985 includes/admin.php:229
    10051018msgid ""
    10061019"Replace the howdy greeting with a salutation appropriate to the time of day"
     
    10081021"Replace the howdy greeting with a salutation appropriate to the time of day"
    10091022
    1010 #: includes/customizer.php:1403 includes/admin.php:247
     1023#: includes/customizer.php:1434 includes/admin.php:283
    10111024#| msgid "Replace spaces around en-dashes & em-dashes with hairspaces"
    10121025msgid "Replace the spaces around en-dashes & em-dashes with hairspaces"
    10131026msgstr "Replace the spaces around en-dashes & em-dashes with hairspaces"
    10141027
    1015 #: includes/customizer.php:659 includes/admin.php:157
     1028#: includes/customizer.php:690 includes/admin.php:193
    10161029msgid ""
    10171030"Replace the WP logo in the admin toolbar with the site icon if one is "
     
    10211034"configured"
    10221035
    1023 #: includes/customizer.php:658 includes/admin.php:156
     1036#: includes/customizer.php:689 includes/admin.php:192
    10241037msgid "Replace WordPress logo"
    10251038msgstr "Replace WordPress logo"
    10261039
    1027 #: includes/customizer.php:674
     1040#: includes/customizer.php:705
    10281041msgid "Replace WP logo"
    10291042msgstr "Replace WP logo"
     
    10331046msgstr "Required"
    10341047
    1035 #: includes/customizer.php:2923 includes/admin.php:427
     1048#: includes/customizer.php:2954 includes/admin.php:463
    10361049msgid "Responsive breakpoints"
    10371050msgstr "Responsive breakpoints"
    10381051
    1039 #: includes/customizer.php:1434 includes/admin.php:253
     1052#: includes/customizer.php:1465 includes/admin.php:289
    10401053msgid "Restores the previous (classic) widgets settings page"
    10411054msgstr "Restores the previous (classic) widgets settings page"
    10421055
    1043 #: includes/customizer.php:1052
     1056#: includes/customizer.php:1083
    10441057msgid "Revisions"
    10451058msgstr "Revisions"
    10461059
    1047 #: includes/customizer.php:599
     1060#: includes/customizer.php:630
    10481061msgid "Salt (random when blank)"
    10491062msgstr "Salt (random when blank)"
    10501063
    1051 #: includes/customizer.php:1271 includes/customizer.php:1287
    1052 #: includes/admin.php:228
     1064#: includes/customizer.php:1302 includes/customizer.php:1318
     1065#: includes/admin.php:264
    10531066msgid "Scroll to anchor"
    10541067msgstr "Scroll to anchor"
    10551068
    1056 #: includes/customizer.php:2093 includes/customizer.php:2109
    1057 #: includes/admin.php:325
     1069#: includes/customizer.php:2124 includes/customizer.php:2140
     1070#: includes/admin.php:361
    10581071msgid "Scroll to top"
    10591072msgstr "Scroll to top"
     
    10681081msgstr "Search news"
    10691082
    1070 #: includes/customizer.php:2892 includes/admin.php:421
     1083#: includes/customizer.php:2923 includes/admin.php:457
    10711084msgid "Search placeholder"
    10721085msgstr "Search placeholder"
    10731086
    1074 #: includes/customizer.php:2908
     1087#: includes/customizer.php:2939
    10751088msgid "Search placeholder text"
    10761089msgstr "Search placeholder text"
    10771090
    1078 #: includes/customizer.php:2939
     1091#: includes/customizer.php:2970
    10791092msgid "Set breakpoints"
    10801093msgstr "Set breakpoints"
    10811094
    1082 #: includes/customizer.php:2924 includes/admin.php:428
     1095#: includes/customizer.php:2955 includes/admin.php:464
    10831096msgid "Set custom mobile and tablet breakpoints for the Astra theme"
    10841097msgstr "Set custom mobile and tablet breakpoints for the Astra theme"
     
    10881101msgstr "Settings"
    10891102
    1090 #: includes/customizer.php:921
     1103#: includes/customizer.php:952
    10911104msgid "Show current WP version"
    10921105msgstr "Show current WP version"
    10931106
    1094 #: includes/admin.php:300
     1107#: includes/admin.php:336
    10951108msgid "Show file size in media library"
    10961109msgstr "Show file size in media library"
    10971110
    1098 #: includes/customizer.php:781 includes/customizer.php:797
    1099 #: includes/admin.php:180
     1111#: includes/customizer.php:812 includes/customizer.php:828
     1112#: includes/admin.php:216
    11001113msgid "Show IDs"
    11011114msgstr "Show IDs"
    11021115
    1103 #: includes/customizer.php:1969 includes/customizer.php:1985
     1116#: includes/customizer.php:2000 includes/customizer.php:2016
    11041117msgid "Show media file size"
    11051118msgstr "Show media file size"
    11061119
    1107 #: includes/customizer.php:1845
     1120#: includes/customizer.php:1876
    11081121msgid "Show only when hovered"
    11091122msgstr "Show only when hovered"
    11101123
    1111 #: includes/customizer.php:1178 includes/customizer.php:1194
    1112 #: includes/admin.php:210
     1124#: includes/customizer.php:1209 includes/customizer.php:1225
     1125#: includes/admin.php:246
    11131126msgid "Show settings"
    11141127msgstr "Show settings"
    11151128
    1116 #: includes/customizer.php:922 includes/admin.php:187
     1129#: includes/customizer.php:953 includes/admin.php:223
    11171130#| msgid ""
    11181131#| "Show the current WP version in the admin footer when an upgrade is "
     
    11251138"available"
    11261139
    1127 #: includes/customizer.php:782
     1140#: includes/customizer.php:813
    11281141msgid ""
    11291142"Show the ID for posts, pages, custom post types, taxonomies, media and user "
     
    11331146"IDs in the admin pages"
    11341147
    1135 #: includes/admin.php:181
     1148#: includes/admin.php:217
    11361149msgid ""
    11371150"Show the ID for posts, pages, custom post types, taxonomies, media and users"
     
    11391152"Show the ID for posts, pages, custom post types, taxonomies, media and users"
    11401153
    1141 #: includes/customizer.php:1502
     1154#: includes/customizer.php:1533
    11421155msgid "Show the thumbnail of the featured image in the admin posts page"
    11431156msgstr "Show the thumbnail of the featured image in the admin posts page"
    11441157
    1145 #: includes/customizer.php:1501 includes/customizer.php:1517
     1158#: includes/customizer.php:1532 includes/customizer.php:1548
    11461159msgid "Show thumbnails in admin"
    11471160msgstr "Show thumbnails in admin"
    11481161
    1149 #: includes/customizer.php:937
     1162#: includes/customizer.php:968
    11501163msgid "Show WordPress version"
    11511164msgstr "Show WordPress version"
    11521165
    1153 #: includes/customizer.php:421
     1166#: includes/customizer.php:452
    11541167msgid "Single error message"
    11551168msgstr "Single error message"
    11561169
    1157 #: includes/customizer.php:405 includes/admin.php:132
     1170#: includes/customizer.php:436 includes/admin.php:168
    11581171msgid "Single login error message"
    11591172msgstr "Single login error message"
     
    11631176msgstr "Site Settings"
    11641177
    1165 #: includes/customizer.php:1692
     1178#: includes/customizer.php:1723
    11661179#| msgid "Size (em)"
    11671180msgid "Size (px)"
    11681181msgstr "Size (px)"
    11691182
    1170 #: includes/customizer.php:1272 includes/admin.php:229
     1183#: includes/customizer.php:1303 includes/admin.php:265
    11711184#| msgid ""
    11721185#| "Smoothly animate when clicking a link targetting an anchored position"
     
    11741187msgstr "Smoothly animate when clicking a link targeting an anchored position"
    11751188
    1176 #: includes/customizer.php:3113
     1189#: includes/customizer.php:3144
    11771190msgid "Spacing between flags px"
    11781191msgstr "Spacing between flags px"
    11791192
    1180 #: includes/customizer.php:851
     1193#: includes/customizer.php:882
    11811194msgid "Taxonomies"
    11821195msgstr "Taxonomies"
    11831196
    1184 #: includes/customizer.php:251 includes/customizer.php:489
    1185 #: includes/customizer.php:1338
     1197#: includes/customizer.php:251 includes/customizer.php:520
     1198#: includes/customizer.php:1369
    11861199msgid "Text color"
    11871200msgstr "Text colour"
    11881201
    1189 #: includes/customizer.php:1302 includes/customizer.php:1318
    1190 #: includes/admin.php:234
     1202#: includes/customizer.php:1333 includes/customizer.php:1349
     1203#: includes/admin.php:270
    11911204msgid "Text selection"
    11921205msgstr "Text selection"
    11931206
    1194 #: includes/admin.php:704
     1207#: includes/admin.php:740
    11951208msgid "The caboodle settings have been imported"
    11961209msgstr "The caboodle settings have been imported"
     
    12001213msgstr "The name of a google font"
    12011214
    1202 #: includes/customizer.php:406 includes/admin.php:133
     1215#: includes/customizer.php:437 includes/admin.php:169
    12031216msgid "The same message for wrong username or wrong password"
    12041217msgstr "The same message for wrong username or wrong password"
    12051218
    1206 #: includes/customizer.php:506
     1219#: includes/customizer.php:537
    12071220msgid "Title"
    12081221msgstr "Title"
    12091222
    1210 #: includes/customizer.php:1864
     1223#: includes/customizer.php:1895
    12111224msgid "Underline Color"
    12121225msgstr "Underline Color"
    12131226
    1214 #: includes/customizer.php:1101
     1227#: includes/customizer.php:1132
    12151228msgid "Unlimited"
    12161229msgstr "Unlimited"
    12171230
    1218 #: includes/customizer.php:1593 includes/customizer.php:1609
    1219 #: includes/admin.php:276
     1231#: includes/customizer.php:1624 includes/customizer.php:1640
     1232#: includes/admin.php:312
    12201233msgid "Unlink parent menu items"
    12211234msgstr "Unlink parent menu items"
    12221235
    1223 #: includes/customizer.php:2893 includes/admin.php:422
     1236#: includes/customizer.php:2924 includes/admin.php:458
    12241237msgid "Use translatable default text in Astra theme header cover search"
    12251238msgstr "Use translatable default text in Astra theme header cover search"
     
    12301243msgstr "Username"
    12311244
    1232 #: includes/customizer.php:869
     1245#: includes/customizer.php:900
    12331246msgid "Users"
    12341247msgstr "Users"
    12351248
    1236 #: includes/customizer.php:1716
     1249#: includes/customizer.php:1747
    12371250msgid "Vertical position (px)"
    12381251msgstr "Vertical position (px)"
     
    12471260msgstr "View news article"
    12481261
    1249 #: includes/customizer.php:1808 includes/customizer.php:1826
    1250 #: includes/admin.php:288
     1262#: includes/customizer.php:1839 includes/customizer.php:1857
     1263#: includes/admin.php:324
    12511264msgid "Wavy links"
    12521265msgstr "Wavy links"
    12531266
    1254 #: includes/customizer.php:1809
     1267#: includes/customizer.php:1840
    12551268msgid "Wavy underline for links"
    12561269msgstr "Wavy underline for links"
     
    12621275msgstr "website by %1$s"
    12631276
    1264 #: includes/customizer.php:2451
     1277#: includes/customizer.php:2482
    12651278msgid "Years shortcode"
    12661279msgstr "Years shortcode"
    12671280
    1268 #: includes/admin.php:547
     1281#: includes/admin.php:583
    12691282#| msgid ""
    12701283#| "The cc_caboodle option containing the array of setting values does not "
  • cubecolour-caboodle/trunk/languages/cubecolour-caboodle.pot

    r3277296 r3286967  
    1212"Content-Type: text/plain; charset=UTF-8\n"
    1313"Content-Transfer-Encoding: 8bit\n"
    14 "POT-Creation-Date: 2025-04-19 16:32+0000\n"
     14"POT-Creation-Date: 2025-05-03 17:21+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:1210 includes/admin.php:217
     55#: includes/customizer.php:1241 includes/admin.php:253
    5656msgid "Add \"New\" & \"Beta\" links to the add plugins page"
    5757msgstr ""
    5858
    5959#. %1$s: <code>target="_blank"</code>, %2$s: <code>rel="noopener noreferrer nofollow"</code>
    60 #: includes/customizer.php:1794
     60#: includes/customizer.php:1825
    6161#, php-format
    6262msgid "Add %1$s and %2$s attributes to external links"
    6363msgstr ""
    6464
    65 #: includes/customizer.php:2094 includes/admin.php:326
     65#: includes/customizer.php:2125 includes/admin.php:362
    6666msgid "Add a dynamic scroll to top button in the website footer"
    6767msgstr ""
    6868
    69 #: includes/admin.php:265
     69#: includes/admin.php:301
    7070msgid "Add a featured image column in the admin posts page"
    7171msgstr ""
    7272
    73 #: includes/admin.php:301
     73#: includes/admin.php:337
    7474msgid "Add a file size column in the media library"
    7575msgstr ""
    7676
     77#: includes/customizer.php:2001
     78msgid "Add a file size column in the media library list view"
     79msgstr ""
     80
     81#: includes/admin.php:331
     82msgid "Add a lightbox to images and galleries"
     83msgstr ""
     84
    7785#: includes/customizer.php:1970
    78 msgid "Add a file size column in the media library list view"
    79 msgstr ""
    80 
    81 #: includes/admin.php:295
    82 msgid "Add a lightbox to images and galleries"
    83 msgstr ""
    84 
    85 #: includes/customizer.php:1939
    8686msgid ""
    8787"Add a lightbox to images and galleries (Ensure you set the image or gallery "
     
    8989msgstr ""
    9090
    91 #: includes/customizer.php:1372 includes/admin.php:241
     91#: includes/customizer.php:1403 includes/admin.php:277
    9292msgid "Add a page slug class to the body tag"
    9393msgstr ""
    9494
    95 #: includes/admin.php:289
     95#: includes/admin.php:325
    9696msgid "Add a wavy underline to links within the content"
    9797msgstr ""
    9898
    99 #: includes/admin.php:283
     99#: includes/admin.php:319
    100100msgid "Add an arrow icon to identify external links within the site content"
    101101msgstr ""
    102102
    103 #: includes/customizer.php:1624
     103#: includes/customizer.php:1655
    104104msgid "Add an icon to links which direct offsite"
    105105msgstr ""
    106106
    107 #: includes/customizer.php:1792
     107#: includes/customizer.php:1823
    108108msgid "Add attributes"
    109109msgstr ""
    110110
    111 #: includes/customizer.php:2047
     111#: includes/customizer.php:2078
    112112msgid "Add caboodle dashicons"
    113113msgstr ""
    114114
    115 #: includes/customizer.php:2031 includes/admin.php:312
     115#: includes/customizer.php:2062 includes/admin.php:348
    116116msgid "Add dashicons"
    117117msgstr ""
     
    123123msgstr ""
    124124
    125 #: includes/customizer.php:3137 includes/admin.php:452
     125#: includes/customizer.php:3168 includes/admin.php:488
    126126msgid "Add some simple styles to forms created with the gravity forms plugin"
    127127msgstr ""
    128128
    129 #: includes/customizer.php:1533 includes/customizer.php:1564
    130 #: includes/admin.php:271
     129#: includes/customizer.php:1564 includes/customizer.php:1595
     130#: includes/admin.php:307
    131131msgid "Add support for manual excerpts to pages"
    132132msgstr ""
    133133
    134134#: includes/customizer.php:116 includes/customizer.php:132
    135 #: includes/admin.php:102
     135#: includes/admin.php:132
    136136msgid "Additional date & time formats"
    137137msgstr ""
    138138
    139 #: includes/customizer.php:1179
     139#: includes/customizer.php:1210
    140140msgid "Adds a link in admin settings menu to view saved options"
    141141msgstr ""
    142142
    143 #: includes/customizer.php:689 includes/admin.php:163
     143#: includes/customizer.php:720 includes/admin.php:199
    144144msgid "Adds a simple notepad widget to the dashboard"
    145145msgstr ""
    146146
    147 #: includes/customizer.php:117 includes/admin.php:103
     147#: includes/customizer.php:117 includes/admin.php:133
    148148msgid ""
    149149"Adds new options for date and time formats in the general settings admin page"
     
    154154msgstr ""
    155155
    156 #: includes/customizer.php:718 includes/customizer.php:734
    157 #: includes/admin.php:168
     156#: includes/customizer.php:749 includes/customizer.php:765
     157#: includes/admin.php:204
    158158msgid "Admin menu order"
    159159msgstr ""
    160160
    161 #: includes/customizer.php:1004
     161#: includes/customizer.php:1035
    162162msgid "Afternoon greeting"
    163163msgstr ""
     
    167167msgstr ""
    168168
    169 #: includes/customizer.php:615
     169#: includes/customizer.php:646
    170170msgid "Also include on frontend"
    171171msgstr ""
     
    175175msgstr ""
    176176
    177 #: includes/customizer.php:2528 includes/customizer.php:2544
    178 #: includes/admin.php:349
     177#: includes/customizer.php:2559 includes/customizer.php:2575
     178#: includes/admin.php:385
    179179msgid "Anti clickjack"
    180180msgstr ""
    181181
    182 #: includes/customizer.php:2496 includes/customizer.php:2512
    183 #: includes/admin.php:343
     182#: includes/customizer.php:2527 includes/customizer.php:2543
     183#: includes/admin.php:379
    184184msgid "Anti spambot"
    185185msgstr ""
    186186
    187 #: includes/admin.php:116
     187#: includes/admin.php:146
    188188msgid "Apply customizations to the login page"
    189189msgstr ""
    190190
    191 #: includes/initial-values.php:58 includes/customizer.php:498
    192 #: includes/modules/login-warning.php:21
     191#: includes/initial-values.php:58 includes/customizer.php:529
     192#: includes/modules/login-warning.php:23
    193193msgid "Authorised access only"
    194194msgstr ""
    195195
    196 #: includes/customizer.php:1357 includes/customizer.php:2335
     196#: includes/customizer.php:1388 includes/customizer.php:2366
    197197msgid "Background color"
    198198msgstr ""
    199199
    200 #: includes/customizer.php:2373
     200#: includes/customizer.php:2404
    201201msgid "Background hover color"
    202202msgstr ""
    203203
    204 #: includes/customizer.php:3172
     204#: includes/customizer.php:3203
    205205msgid "Border color"
    206206msgstr ""
    207207
    208 #: includes/customizer.php:3210
     208#: includes/customizer.php:3241
    209209msgid "Border color: focus"
    210210msgstr ""
    211211
    212 #: includes/customizer.php:3191
     212#: includes/customizer.php:3222
    213213msgid "Border color: hover"
    214214msgstr ""
    215215
    216 #: includes/customizer.php:2243
     216#: includes/customizer.php:2274
    217217msgid "Border radius (%)"
    218218msgstr ""
    219219
    220 #: includes/customizer.php:2219
     220#: includes/customizer.php:2250
    221221msgid "Border width (px)"
    222222msgstr ""
     
    226226msgstr ""
    227227
    228 #: includes/customizer.php:2982
     228#: includes/customizer.php:3013
    229229msgid "Breakpoint for mobile"
    230230msgstr ""
    231231
    232 #: includes/customizer.php:2958
     232#: includes/customizer.php:2989
    233233msgid "Breakpoint for tablet"
    234234msgstr ""
     
    238238msgstr ""
    239239
    240 #: includes/customizer.php:1433 includes/customizer.php:1449
    241 #: includes/admin.php:252
     240#: includes/customizer.php:1464 includes/customizer.php:1480
     241#: includes/admin.php:288
    242242msgid "Classic widgets"
    243243msgstr ""
    244244
    245 #: includes/customizer.php:1741 includes/customizer.php:2316
     245#: includes/customizer.php:1772 includes/customizer.php:2347
    246246msgid "Color"
    247247msgstr ""
    248248
    249 #: includes/customizer.php:1303 includes/admin.php:235
     249#: includes/customizer.php:1334 includes/admin.php:271
    250250msgid "Color and background color of selected text"
    251251msgstr ""
     
    259259msgstr ""
    260260
    261 #: includes/customizer.php:887
     261#: includes/customizer.php:918
    262262msgid "Comments"
    263263msgstr ""
    264264
    265 #: includes/customizer.php:2472
     265#: includes/customizer.php:2503
    266266msgid "Copyright from year"
    267267msgstr ""
    268268
    269 #: includes/admin.php:338
     269#: includes/admin.php:374
    270270msgid ""
    271271"Copyright years shortcode for use in footer [years start=2025 format=roman]"
    272272msgstr ""
    273273
    274 #: includes/customizer.php:2436
     274#: includes/customizer.php:2467
    275275msgid "Copyright years shortcode to use in footer"
    276276msgstr ""
    277277
    278 #: includes/customizer.php:1924
     278#: includes/customizer.php:1955
    279279msgid "CSS Selector"
    280280msgstr ""
     
    288288msgstr ""
    289289
    290 #: includes/admin.php:513
     290#: includes/admin.php:549
    291291msgid "Current settings:"
    292292msgstr ""
     
    296296msgstr ""
    297297
    298 #: includes/admin.php:186
     298#: includes/admin.php:222
    299299msgid "Current WP version"
    300300msgstr ""
     
    312312msgstr ""
    313313
    314 #: includes/customizer.php:1402 includes/customizer.php:1418
    315 #: includes/admin.php:246
     314#: includes/customizer.php:1433 includes/customizer.php:1449
     315#: includes/admin.php:282
    316316msgid "Dash spacing"
    317317msgstr ""
    318318
    319 #: includes/customizer.php:688 includes/customizer.php:704
    320 #: includes/admin.php:162
     319#: includes/customizer.php:719 includes/customizer.php:735
     320#: includes/admin.php:198
    321321msgid "Dashboard notes"
    322322msgstr ""
    323323
    324 #: includes/customizer.php:1113 includes/customizer.php:1129
    325 #: includes/admin.php:204
     324#: includes/customizer.php:1144 includes/customizer.php:1160
     325#: includes/admin.php:240
    326326msgid "Developer link"
    327327msgstr ""
    328328
    329 #: includes/customizer.php:1114 includes/admin.php:205
     329#: includes/customizer.php:1145 includes/admin.php:241
    330330msgid "Developer link in admin footer and [developer] shortcode for front end"
    331331msgstr ""
    332332
    333 #: includes/customizer.php:1164
     333#: includes/customizer.php:1195
    334334msgid "Developer link URL"
    335335msgstr ""
    336336
    337 #: includes/customizer.php:1147
     337#: includes/customizer.php:1178
    338338msgid "Developer name"
    339339msgstr ""
    340340
    341 #: includes/initial-values.php:59 includes/customizer.php:516
    342 #: includes/modules/login-warning.php:21
     341#: includes/initial-values.php:59 includes/customizer.php:547
     342#: includes/modules/login-warning.php:24
    343343msgid ""
    344344"Disconnect immediately and do not attempt to log in if you are not an "
     
    346346msgstr ""
    347347
    348 #: includes/customizer.php:539 includes/admin.php:145
     348#: includes/customizer.php:570 includes/admin.php:181
    349349msgid "Display colored bars for visual confirmation of password input"
    350350msgstr ""
    351351
    352 #: includes/customizer.php:374 includes/admin.php:127
     352#: includes/customizer.php:405 includes/admin.php:163
    353353msgid ""
    354354"Do not expose password characters when entered on iPad, iPhone or android"
    355355msgstr ""
    356356
    357 #: includes/admin.php:559
     357#: includes/admin.php:595
    358358msgid "Documentation"
    359359msgstr ""
     
    363363msgstr ""
    364364
    365 #: includes/customizer.php:2497 includes/admin.php:344
     365#: includes/customizer.php:2528 includes/admin.php:380
    366366msgid "email shortcode to help protect email addresses from spambots"
    367367msgstr ""
    368368
    369 #: includes/customizer.php:2856 includes/customizer.php:2872
    370 #: includes/admin.php:412
     369#: includes/customizer.php:2887 includes/customizer.php:2903
     370#: includes/admin.php:448
    371371msgid "Embed bandcamp"
    372372msgstr ""
    373373
    374 #: includes/customizer.php:2016
     374#: includes/customizer.php:2047
    375375msgid "Enable attachment pages"
    376376msgstr ""
    377377
    378 #: includes/customizer.php:1594 includes/admin.php:277
     378#: includes/customizer.php:1625 includes/admin.php:313
    379379msgid "Enable drop down menus to work more intuitively"
    380380msgstr ""
    381381
    382 #: includes/customizer.php:2001 includes/admin.php:306 includes/admin.php:307
     382#: includes/customizer.php:2032 includes/admin.php:342 includes/admin.php:343
    383383msgid "Enable media attachment pages"
    384384msgstr ""
    385385
    386 #: includes/admin.php:413
     386#: includes/admin.php:449
    387387msgid "Enable support for the [bandcamp] shortcode  generated on bandcamp"
    388388msgstr ""
    389389
    390 #: includes/customizer.php:2857
     390#: includes/customizer.php:2888
    391391msgid ""
    392392"Enable the [bandcamp] shortcode  generated by bandcamp to embed an audio "
     
    394394msgstr ""
    395395
    396 #: includes/customizer.php:439
     396#: includes/customizer.php:470
    397397msgid "Error message"
    398398msgstr ""
    399399
    400 #: includes/admin.php:639
     400#: includes/admin.php:675
    401401msgid "Error: Nonce verification has failed"
    402402msgstr ""
    403403
    404 #: includes/customizer.php:1021
     404#: includes/customizer.php:1052
    405405msgid "Evening greeting"
    406406msgstr ""
    407407
    408 #: includes/customizer.php:2593
     408#: includes/customizer.php:2624
    409409msgid "Except for administrators"
    410410msgstr ""
    411411
    412 #: includes/admin.php:476
     412#: includes/admin.php:512
    413413msgid "Export"
    414414msgstr ""
    415415
    416 #: includes/admin.php:469
     416#: includes/admin.php:505
    417417msgid "Export caboodle settings"
    418418msgstr ""
    419419
    420 #: includes/admin.php:471
     420#: includes/admin.php:507
    421421msgid "Export the current plugin settings as a .json file."
    422422msgstr ""
    423423
    424 #: includes/customizer.php:2032 includes/admin.php:313
     424#: includes/customizer.php:2063 includes/admin.php:349
    425425msgid "Extend dashicons with new icons"
    426426msgstr ""
    427427
    428 #: includes/customizer.php:454 includes/admin.php:139
     428#: includes/customizer.php:485 includes/admin.php:175
    429429msgid "Extra text added to login form"
    430430msgstr ""
     
    434434msgstr ""
    435435
    436 #: includes/customizer.php:2387 includes/customizer.php:2403
    437 #: includes/admin.php:331
     436#: includes/customizer.php:2418 includes/customizer.php:2434
     437#: includes/admin.php:367
    438438msgid "Fix footer"
    439439msgstr ""
    440440
    441 #: includes/customizer.php:2388 includes/admin.php:332
     441#: includes/customizer.php:2419 includes/admin.php:368
    442442msgid "Fix the footer element to the bottom of the viewport on short pages"
    443443msgstr ""
    444444
    445 #: includes/customizer.php:3041
     445#: includes/customizer.php:3072
    446446msgid "Flag width px"
    447447msgstr ""
     
    451451msgstr ""
    452452
    453 #: includes/customizer.php:2421
     453#: includes/customizer.php:2452
    454454msgid "Footer element to fix"
    455455msgstr ""
    456456
    457 #: includes/customizer.php:2435 includes/admin.php:337
     457#: includes/customizer.php:2466 includes/admin.php:373
    458458msgid "Footer years range"
    459459msgstr ""
    460460
    461 #: includes/customizer.php:1240 includes/customizer.php:1256
    462 #: includes/admin.php:222
     461#: includes/customizer.php:1271 includes/customizer.php:1287
     462#: includes/admin.php:258
    463463msgid "Force vertical scrollbar"
    464464msgstr ""
    465465
    466 #: includes/customizer.php:1901
     466#: includes/customizer.php:1932
    467467msgid "Gap (px)"
    468468msgstr ""
    469469
    470 #: includes/initial-values.php:76 includes/customizer.php:1030
     470#: includes/initial-values.php:76 includes/customizer.php:1061
    471471#: includes/modules/no-howdy.php:77
    472472msgid "Go to bed"
    473473msgstr ""
    474474
    475 #: includes/initial-values.php:73 includes/customizer.php:996
     475#: includes/initial-values.php:73 includes/customizer.php:1027
    476476#: includes/modules/no-howdy.php:73
    477477msgid "Good afternoon"
    478478msgstr ""
    479479
    480 #: includes/initial-values.php:74 includes/customizer.php:1013
     480#: includes/initial-values.php:74 includes/customizer.php:1044
    481481#: includes/modules/no-howdy.php:75
    482482msgid "Good evening"
    483483msgstr ""
    484484
    485 #: includes/initial-values.php:75 includes/customizer.php:979
     485#: includes/initial-values.php:75 includes/customizer.php:1010
    486486#: includes/modules/no-howdy.php:71
    487487msgid "Good morning"
    488488msgstr ""
    489489
    490 #: includes/customizer.php:3152
     490#: includes/customizer.php:3183
    491491msgid "Gravity forms"
    492492msgstr ""
    493493
    494 #: includes/customizer.php:3136 includes/admin.php:451
     494#: includes/customizer.php:3167 includes/admin.php:487
    495495msgid "Gravity forms style"
    496496msgstr ""
    497497
    498 #: includes/customizer.php:3065
     498#: includes/customizer.php:3096
    499499msgid "Grayscale %"
    500500msgstr ""
    501501
    502 #: includes/customizer.php:1883
     502#: includes/customizer.php:1914
    503503msgid "Hover Color"
    504504msgstr ""
    505505
    506 #: includes/customizer.php:1760 includes/customizer.php:2354
     506#: includes/customizer.php:1791 includes/customizer.php:2385
    507507msgid "Hover color"
    508508msgstr ""
     
    512512msgstr ""
    513513
    514 #: includes/customizer.php:1660 includes/customizer.php:2130
     514#: includes/customizer.php:1691 includes/customizer.php:2161
    515515msgid "Icon"
    516516msgstr ""
    517517
    518 #: includes/customizer.php:2171
     518#: includes/customizer.php:2202
    519519msgid "Icon size (px)"
    520520msgstr ""
     
    524524msgstr ""
    525525
    526 #: includes/admin.php:493
     526#: includes/admin.php:529
    527527msgid "Import"
    528528msgstr ""
    529529
    530 #: includes/admin.php:483
     530#: includes/admin.php:519
    531531msgid "Import caboodle settings"
    532532msgstr ""
    533533
    534 #: includes/admin.php:485
     534#: includes/admin.php:521
    535535msgid "Import the plugin settings from a .json file."
    536536msgstr ""
    537537
    538 #: includes/admin.php:463
     538#: includes/admin.php:499
    539539msgid "Import/export"
    540540msgstr ""
    541541
    542 #: includes/customizer.php:431 includes/modules/login-error-message.php:11
     542#: includes/customizer.php:462
    543543msgid "Incorrect credentials"
    544544msgstr ""
    545545
    546 #: includes/initial-values.php:55
     546#: includes/initial-values.php:55 includes/modules/login-error-message.php:13
    547547msgid "Incorrect details input"
    548548msgstr ""
     
    552552msgstr ""
    553553
    554 #: includes/customizer.php:1623 includes/customizer.php:1640
    555 #: includes/admin.php:282
     554#: includes/customizer.php:1654 includes/customizer.php:1671
     555#: includes/admin.php:318
    556556msgid "Indicate external links"
    557557msgstr ""
     
    561561msgstr ""
    562562
    563 #: includes/customizer.php:1486
     563#: includes/customizer.php:1517
    564564msgid "Keep posts"
    565565msgstr ""
    566566
    567 #: includes/customizer.php:1938 includes/customizer.php:1954
    568 #: includes/admin.php:294
     567#: includes/customizer.php:1969 includes/customizer.php:1985
     568#: includes/admin.php:330
    569569msgid "Lightbox"
    570570msgstr ""
    571571
    572 #: includes/customizer.php:1068 includes/admin.php:198
     572#: includes/customizer.php:1099 includes/admin.php:234
    573573msgid "Limit revisions"
    574574msgstr ""
    575575
    576 #: includes/customizer.php:1053 includes/admin.php:199
     576#: includes/customizer.php:1084 includes/admin.php:235
    577577msgid "Limit the number of saved revisions"
    578578msgstr ""
    579579
    580 #: includes/customizer.php:905
     580#: includes/customizer.php:936
    581581msgid "Links"
    582582msgstr ""
    583583
    584 #: includes/admin.php:211
     584#: includes/admin.php:247
    585585msgid ""
    586586"List the WordPress options with their values from the admin settings menu"
     
    595595msgstr ""
    596596
    597 #: includes/admin.php:115
     597#: includes/admin.php:145
    598598msgid "Login page style"
    599599msgstr ""
    600600
    601 #: includes/customizer.php:453 includes/customizer.php:469
    602 #: includes/admin.php:138
     601#: includes/customizer.php:484 includes/customizer.php:500
     602#: includes/admin.php:174
    603603msgid "Login warning message"
    604604msgstr ""
     
    612612msgstr ""
    613613
    614 #: includes/customizer.php:373 includes/customizer.php:389
    615 #: includes/admin.php:126
     614#: includes/customizer.php:404 includes/customizer.php:420
     615#: includes/admin.php:162
    616616msgid "Mask password"
    617617msgstr ""
    618618
    619 #: includes/customizer.php:833
     619#: includes/customizer.php:864
    620620msgid "Media"
    621621msgstr ""
    622622
    623 #: includes/customizer.php:2000
     623#: includes/customizer.php:2031
    624624msgid "Media attachment pages"
    625625msgstr ""
    626626
    627 #: includes/customizer.php:524
     627#: includes/customizer.php:555
    628628msgid "Message"
    629629msgstr ""
    630630
    631 #: includes/customizer.php:629 includes/admin.php:151
     631#: includes/customizer.php:660 includes/admin.php:187
    632632msgid "Modify the view site link in admin to open in a new browser tab"
    633633msgstr ""
    634634
    635 #: includes/admin.php:95
     635#: includes/admin.php:125
    636636msgid "Modules"
    637637msgstr ""
    638638
    639 #: includes/customizer.php:987
     639#: includes/customizer.php:1018
    640640msgid "Morning greeting"
    641641msgstr ""
    642642
    643 #: includes/customizer.php:343 includes/admin.php:121
     643#: includes/customizer.php:343 includes/admin.php:151
    644644msgid "Must log in by username, not by email address"
    645645msgstr ""
    646646
    647 #: includes/customizer.php:1209 includes/customizer.php:1225
    648 #: includes/admin.php:216
     647#: includes/customizer.php:1240 includes/customizer.php:1256
     648#: includes/admin.php:252
    649649msgid "New plugins"
    650650msgstr ""
     
    700700msgstr ""
    701701
    702 #: includes/customizer.php:1038
     702#: includes/customizer.php:1069
    703703msgid "Night greeting"
    704704msgstr ""
    705705
    706 #: includes/customizer.php:2559 includes/customizer.php:2575
     706#: includes/customizer.php:2590 includes/customizer.php:2606
     707#: includes/admin.php:391
     708msgid "No admin bar"
     709msgstr ""
     710
     711#: includes/customizer.php:2591
     712msgid "No admin bar on the front end for logged-in users"
     713msgstr ""
     714
     715#: includes/customizer.php:2701 includes/customizer.php:2717
     716#: includes/admin.php:411
     717msgid "No author archives"
     718msgstr ""
     719
     720#: includes/customizer.php:780 includes/customizer.php:798
     721#: includes/admin.php:210
     722msgid "No avatars"
     723msgstr ""
     724
     725#: includes/customizer.php:2670 includes/customizer.php:2686
     726#: includes/admin.php:404
     727msgid "No comments"
     728msgstr ""
     729
     730#: includes/customizer.php:2794 includes/customizer.php:2810
     731#: includes/admin.php:430
     732msgid "No feeds"
     733msgstr ""
     734
     735#: includes/customizer.php:2639 includes/customizer.php:2655
     736#: includes/admin.php:397
     737msgid "No file editors"
     738msgstr ""
     739
     740#: includes/admin.php:392
     741msgid "No front end admin bar for logged in users"
     742msgstr ""
     743
     744#: includes/customizer.php:2732 includes/admin.php:417
     745msgid "No generator"
     746msgstr ""
     747
     748#: includes/customizer.php:2748
     749msgid "No generator tag"
     750msgstr ""
     751
     752#: includes/customizer.php:984 includes/customizer.php:1000
     753#: includes/admin.php:228
     754msgid "No howdy"
     755msgstr ""
     756
     757#: includes/admin.php:157
     758msgid "No language selector on the login page"
     759msgstr ""
     760
     761#: includes/customizer.php:2093 includes/customizer.php:2109
    707762#: includes/admin.php:355
    708 msgid "No admin bar"
    709 msgstr ""
    710 
    711 #: includes/customizer.php:2560
    712 msgid "No admin bar on the front end for logged-in users"
    713 msgstr ""
    714 
    715 #: includes/customizer.php:2670 includes/customizer.php:2686
    716 #: includes/admin.php:375
    717 msgid "No author archives"
    718 msgstr ""
    719 
    720 #: includes/customizer.php:749 includes/customizer.php:767
    721 #: includes/admin.php:174
    722 msgid "No avatars"
    723 msgstr ""
    724 
    725 #: includes/customizer.php:2639 includes/customizer.php:2655
    726 #: includes/admin.php:368
    727 msgid "No comments"
    728 msgstr ""
    729 
    730 #: includes/customizer.php:2763 includes/customizer.php:2779
    731 #: includes/admin.php:394
    732 msgid "No feeds"
    733 msgstr ""
    734 
    735 #: includes/customizer.php:2608 includes/customizer.php:2624
    736 #: includes/admin.php:361
    737 msgid "No file editors"
    738 msgstr ""
    739 
    740 #: includes/admin.php:356
    741 msgid "No front end admin bar for logged in users"
    742 msgstr ""
    743 
    744 #: includes/customizer.php:2701 includes/admin.php:381
    745 msgid "No generator"
    746 msgstr ""
    747 
    748 #: includes/customizer.php:2717
    749 msgid "No generator tag"
    750 msgstr ""
    751 
    752 #: includes/customizer.php:953 includes/customizer.php:969
    753 #: includes/admin.php:192
    754 msgid "No howdy"
    755 msgstr ""
    756 
    757 #: includes/customizer.php:2062 includes/customizer.php:2078
    758 #: includes/admin.php:319
    759763msgid "No lazy loading"
    760764msgstr ""
     
    764768msgstr ""
    765769
    766 #: includes/customizer.php:342 includes/admin.php:120
     770#: includes/customizer.php:342 includes/admin.php:150
    767771msgid "No login by email address"
     772msgstr ""
     773
     774#: includes/customizer.php:373 includes/customizer.php:389
     775#: includes/admin.php:156
     776msgid "No login language selector"
    768777msgstr ""
    769778
     
    776785msgstr ""
    777786
     787#: includes/customizer.php:2856 includes/customizer.php:2872
     788#: includes/admin.php:442
     789msgid "No pingbacks"
     790msgstr ""
     791
     792#: includes/customizer.php:2763 includes/customizer.php:2779
     793#: includes/admin.php:423
     794msgid "No RSD"
     795msgstr ""
     796
    778797#: includes/customizer.php:2825 includes/customizer.php:2841
    779 #: includes/admin.php:406
    780 msgid "No pingbacks"
    781 msgstr ""
    782 
    783 #: includes/customizer.php:2732 includes/customizer.php:2748
    784 #: includes/admin.php:387
    785 msgid "No RSD"
    786 msgstr ""
    787 
    788 #: includes/customizer.php:2794 includes/customizer.php:2810
    789 #: includes/admin.php:400
     798#: includes/admin.php:436
    790799msgid "No shortlink tags"
    791800msgstr ""
    792801
    793 #: includes/customizer.php:2063 includes/admin.php:320
     802#: includes/customizer.php:2094 includes/admin.php:356
    794803msgid "No WordPress lazy loading"
    795804msgstr ""
    796805
    797 #: includes/customizer.php:1092
     806#: includes/customizer.php:1123
    798807msgid "None"
    799808msgstr ""
     
    803812msgstr ""
    804813
    805 #: includes/customizer.php:575
     814#: includes/customizer.php:606
    806815msgid "Number of bars"
    807816msgstr ""
    808817
    809 #: includes/customizer.php:1089
     818#: includes/customizer.php:1120
    810819msgid "Number of Revisions to save"
    811820msgstr ""
    812821
    813 #: includes/customizer.php:3089
     822#: includes/customizer.php:3120
    814823msgid "Opacity %"
    815824msgstr ""
    816825
    817 #: includes/customizer.php:628 includes/customizer.php:644
    818 #: includes/admin.php:150
     826#: includes/customizer.php:659 includes/customizer.php:675
     827#: includes/admin.php:186
    819828msgid "Open site in new tab"
    820829msgstr ""
    821830
    822 #: includes/customizer.php:2195
     831#: includes/customizer.php:2226
    823832msgid "Padding (px)"
    824833msgstr ""
    825834
    826 #: includes/customizer.php:1532 includes/customizer.php:1548
    827835#: includes/customizer.php:1563 includes/customizer.php:1579
    828 #: includes/admin.php:270
     836#: includes/customizer.php:1594 includes/customizer.php:1610
     837#: includes/admin.php:306
    829838msgid "Page excerpts"
    830839msgstr ""
    831840
    832 #: includes/customizer.php:1371 includes/customizer.php:1387
    833 #: includes/admin.php:240
     841#: includes/customizer.php:1402 includes/customizer.php:1418
     842#: includes/admin.php:276
    834843msgid "Page slug body class"
    835844msgstr ""
    836845
    837 #: includes/customizer.php:538 includes/customizer.php:555
    838 #: includes/admin.php:144
     846#: includes/customizer.php:569 includes/customizer.php:586
     847#: includes/admin.php:180
    839848msgid "Password visualisation"
    840849msgstr ""
    841850
    842 #: includes/admin.php:660
     851#: includes/admin.php:696
    843852msgid "Please upload a file to import"
    844853msgstr ""
    845854
    846 #: includes/admin.php:651
     855#: includes/admin.php:687
    847856msgid "Please upload a valid .json file"
    848857msgstr ""
     
    858867msgstr ""
    859868
    860 #: includes/customizer.php:3022
     869#: includes/customizer.php:3053
    861870msgid "Polylang"
    862871msgstr ""
    863872
    864 #: includes/customizer.php:3006 includes/admin.php:439
     873#: includes/customizer.php:3037 includes/admin.php:475
    865874msgid "Polylang SVG flags"
    866875msgstr ""
    867876
    868 #: includes/customizer.php:2291
     877#: includes/customizer.php:2322
    869878msgid "Position bottom (px)"
    870879msgstr ""
    871880
    872 #: includes/customizer.php:2267
     881#: includes/customizer.php:2298
    873882msgid "Position right (px)"
    874883msgstr ""
    875884
    876 #: includes/admin.php:264
     885#: includes/admin.php:300
    877886msgid "Post thumbnails"
    878887msgstr ""
    879888
    880 #: includes/customizer.php:1464 includes/admin.php:258
     889#: includes/customizer.php:1495 includes/admin.php:294
    881890msgid "Posts"
    882891msgstr ""
    883892
    884 #: includes/customizer.php:1483
     893#: includes/customizer.php:1514
    885894msgid "Posts post type"
    886895msgstr ""
    887896
    888 #: includes/customizer.php:815
     897#: includes/customizer.php:846
    889898msgid "Posts, pages, post types"
    890899msgstr ""
    891900
    892 #: includes/customizer.php:1241 includes/admin.php:223
     901#: includes/customizer.php:1272 includes/admin.php:259
    893902msgid "Prevent layout shift between long and short pages"
    894903msgstr ""
    895904
    896 #: includes/customizer.php:2826 includes/admin.php:407
     905#: includes/customizer.php:2857 includes/admin.php:443
    897906msgid "Prevent self pingbacks"
    898907msgstr ""
    899908
    900 #: includes/customizer.php:2529 includes/admin.php:350
     909#: includes/customizer.php:2560 includes/admin.php:386
    901910msgid "Prevent the site from loading inside an external frame or iframe"
    902911msgstr ""
     
    909918
    910919#: includes/customizer.php:146 includes/customizer.php:162
    911 #: includes/admin.php:109
     920#: includes/admin.php:139
    912921msgid "Private site"
    913922msgstr ""
    914923
    915 #: includes/customizer.php:719 includes/admin.php:169
     924#: includes/customizer.php:750 includes/admin.php:205
    916925msgid "Rearranges admin menu items: dashboard, pages, posts, media"
    917926msgstr ""
    918927
    919 #: includes/customizer.php:2671 includes/admin.php:376
     928#: includes/customizer.php:2702 includes/admin.php:412
    920929msgid "Redirect requests for author archives to the homepage"
    921930msgstr ""
    922931
    923 #: includes/customizer.php:147 includes/admin.php:110
     932#: includes/customizer.php:147 includes/admin.php:140
    924933msgid "Redirect unauthenticated visitors to the login page"
    925934msgstr ""
    926935
    927 #: includes/customizer.php:1465 includes/admin.php:259
     936#: includes/customizer.php:1496 includes/admin.php:295
    928937msgid "Remove or rename the posts post type"
    929938msgstr ""
    930939
    931 #: includes/customizer.php:1488
     940#: includes/customizer.php:1519
    932941msgid "Remove posts"
    933942msgstr ""
    934943
    935 #: includes/customizer.php:750 includes/admin.php:175
     944#: includes/customizer.php:781 includes/admin.php:211
    936945msgid "Remove support for gravatars or user avatars"
    937946msgstr ""
    938947
    939 #: includes/customizer.php:2733 includes/admin.php:388
     948#: includes/customizer.php:374
     949msgid "Remove the language selector from the login page"
     950msgstr ""
     951
     952#: includes/customizer.php:2764 includes/admin.php:424
    940953msgid "Remove the Really Simple Discovery endpoint"
    941954msgstr ""
    942955
    943 #: includes/customizer.php:2764 includes/admin.php:395
     956#: includes/customizer.php:2795 includes/admin.php:431
    944957msgid "Remove the RSS, RDF and atom feeds"
    945958msgstr ""
    946959
    947 #: includes/customizer.php:2795 includes/admin.php:401
     960#: includes/customizer.php:2826 includes/admin.php:437
    948961msgid "Remove the shortlink header tags"
    949962msgstr ""
    950963
    951 #: includes/customizer.php:2702 includes/admin.php:382
     964#: includes/customizer.php:2733 includes/admin.php:418
    952965msgid "Remove the WordPress generator meta tag"
    953966msgstr ""
    954967
    955 #: includes/customizer.php:2640 includes/admin.php:369
     968#: includes/customizer.php:2671 includes/admin.php:405
    956969msgid "Removes support for comments"
    957970msgstr ""
    958971
    959 #: includes/customizer.php:2609 includes/admin.php:362
     972#: includes/customizer.php:2640 includes/admin.php:398
    960973msgid "Removes the theme and plugin editors from admin"
    961974msgstr ""
    962975
    963 #: includes/customizer.php:1487
     976#: includes/customizer.php:1518
    964977msgid "Rename posts to news"
    965978msgstr ""
    966979
    967 #: includes/customizer.php:3007 includes/admin.php:440
     980#: includes/customizer.php:3038 includes/admin.php:476
    968981msgid "Replace the default bitmap flags in polylang"
    969982msgstr ""
    970983
    971 #: includes/customizer.php:954 includes/admin.php:193
     984#: includes/customizer.php:985 includes/admin.php:229
    972985msgid ""
    973986"Replace the howdy greeting with a salutation appropriate to the time of day"
    974987msgstr ""
    975988
    976 #: includes/customizer.php:1403 includes/admin.php:247
     989#: includes/customizer.php:1434 includes/admin.php:283
    977990msgid "Replace the spaces around en-dashes & em-dashes with hairspaces"
    978991msgstr ""
    979992
    980 #: includes/customizer.php:659 includes/admin.php:157
     993#: includes/customizer.php:690 includes/admin.php:193
    981994msgid ""
    982995"Replace the WP logo in the admin toolbar with the site icon if one is "
     
    984997msgstr ""
    985998
    986 #: includes/customizer.php:658 includes/admin.php:156
     999#: includes/customizer.php:689 includes/admin.php:192
    9871000msgid "Replace WordPress logo"
    9881001msgstr ""
    9891002
    990 #: includes/customizer.php:674
     1003#: includes/customizer.php:705
    9911004msgid "Replace WP logo"
    9921005msgstr ""
     
    9961009msgstr ""
    9971010
    998 #: includes/customizer.php:2923 includes/admin.php:427
     1011#: includes/customizer.php:2954 includes/admin.php:463
    9991012msgid "Responsive breakpoints"
    10001013msgstr ""
    10011014
    1002 #: includes/customizer.php:1434 includes/admin.php:253
     1015#: includes/customizer.php:1465 includes/admin.php:289
    10031016msgid "Restores the previous (classic) widgets settings page"
    10041017msgstr ""
    10051018
    1006 #: includes/customizer.php:1052
     1019#: includes/customizer.php:1083
    10071020msgid "Revisions"
    10081021msgstr ""
    10091022
    1010 #: includes/customizer.php:599
     1023#: includes/customizer.php:630
    10111024msgid "Salt (random when blank)"
    10121025msgstr ""
    10131026
    1014 #: includes/customizer.php:1271 includes/customizer.php:1287
    1015 #: includes/admin.php:228
     1027#: includes/customizer.php:1302 includes/customizer.php:1318
     1028#: includes/admin.php:264
    10161029msgid "Scroll to anchor"
    10171030msgstr ""
    10181031
    1019 #: includes/customizer.php:2093 includes/customizer.php:2109
    1020 #: includes/admin.php:325
     1032#: includes/customizer.php:2124 includes/customizer.php:2140
     1033#: includes/admin.php:361
    10211034msgid "Scroll to top"
    10221035msgstr ""
     
    10311044msgstr ""
    10321045
    1033 #: includes/customizer.php:2892 includes/admin.php:421
     1046#: includes/customizer.php:2923 includes/admin.php:457
    10341047msgid "Search placeholder"
    10351048msgstr ""
    10361049
    1037 #: includes/customizer.php:2908
     1050#: includes/customizer.php:2939
    10381051msgid "Search placeholder text"
    10391052msgstr ""
    10401053
    1041 #: includes/customizer.php:2939
     1054#: includes/customizer.php:2970
    10421055msgid "Set breakpoints"
    10431056msgstr ""
    10441057
    1045 #: includes/customizer.php:2924 includes/admin.php:428
     1058#: includes/customizer.php:2955 includes/admin.php:464
    10461059msgid "Set custom mobile and tablet breakpoints for the Astra theme"
    10471060msgstr ""
     
    10511064msgstr ""
    10521065
    1053 #: includes/customizer.php:921
     1066#: includes/customizer.php:952
    10541067msgid "Show current WP version"
    10551068msgstr ""
    10561069
    1057 #: includes/admin.php:300
     1070#: includes/admin.php:336
    10581071msgid "Show file size in media library"
    10591072msgstr ""
    10601073
    1061 #: includes/customizer.php:781 includes/customizer.php:797
    1062 #: includes/admin.php:180
     1074#: includes/customizer.php:812 includes/customizer.php:828
     1075#: includes/admin.php:216
    10631076msgid "Show IDs"
    10641077msgstr ""
    10651078
    1066 #: includes/customizer.php:1969 includes/customizer.php:1985
     1079#: includes/customizer.php:2000 includes/customizer.php:2016
    10671080msgid "Show media file size"
    10681081msgstr ""
    10691082
    1070 #: includes/customizer.php:1845
     1083#: includes/customizer.php:1876
    10711084msgid "Show only when hovered"
    10721085msgstr ""
    10731086
    1074 #: includes/customizer.php:1178 includes/customizer.php:1194
    1075 #: includes/admin.php:210
     1087#: includes/customizer.php:1209 includes/customizer.php:1225
     1088#: includes/admin.php:246
    10761089msgid "Show settings"
    10771090msgstr ""
    10781091
    1079 #: includes/customizer.php:922 includes/admin.php:187
     1092#: includes/customizer.php:953 includes/admin.php:223
    10801093msgid ""
    10811094"Show the current WordPress version in the admin footer when an upgrade is "
     
    10831096msgstr ""
    10841097
    1085 #: includes/customizer.php:782
     1098#: includes/customizer.php:813
    10861099msgid ""
    10871100"Show the ID for posts, pages, custom post types, taxonomies, media and user "
     
    10891102msgstr ""
    10901103
    1091 #: includes/admin.php:181
     1104#: includes/admin.php:217
    10921105msgid ""
    10931106"Show the ID for posts, pages, custom post types, taxonomies, media and users"
    10941107msgstr ""
    10951108
    1096 #: includes/customizer.php:1502
     1109#: includes/customizer.php:1533
    10971110msgid "Show the thumbnail of the featured image in the admin posts page"
    10981111msgstr ""
    10991112
    1100 #: includes/customizer.php:1501 includes/customizer.php:1517
     1113#: includes/customizer.php:1532 includes/customizer.php:1548
    11011114msgid "Show thumbnails in admin"
    11021115msgstr ""
    11031116
    1104 #: includes/customizer.php:937
     1117#: includes/customizer.php:968
    11051118msgid "Show WordPress version"
    11061119msgstr ""
    11071120
    1108 #: includes/customizer.php:421
     1121#: includes/customizer.php:452
    11091122msgid "Single error message"
    11101123msgstr ""
    11111124
    1112 #: includes/customizer.php:405 includes/admin.php:132
     1125#: includes/customizer.php:436 includes/admin.php:168
    11131126msgid "Single login error message"
    11141127msgstr ""
     
    11181131msgstr ""
    11191132
    1120 #: includes/customizer.php:1692
     1133#: includes/customizer.php:1723
    11211134msgid "Size (px)"
    11221135msgstr ""
    11231136
    1124 #: includes/customizer.php:1272 includes/admin.php:229
     1137#: includes/customizer.php:1303 includes/admin.php:265
    11251138msgid "Smoothly animate when clicking a link targeting an anchored position"
    11261139msgstr ""
    11271140
    1128 #: includes/customizer.php:3113
     1141#: includes/customizer.php:3144
    11291142msgid "Spacing between flags px"
    11301143msgstr ""
    11311144
    1132 #: includes/customizer.php:851
     1145#: includes/customizer.php:882
    11331146msgid "Taxonomies"
    11341147msgstr ""
    11351148
    1136 #: includes/customizer.php:251 includes/customizer.php:489
    1137 #: includes/customizer.php:1338
     1149#: includes/customizer.php:251 includes/customizer.php:520
     1150#: includes/customizer.php:1369
    11381151msgid "Text color"
    11391152msgstr ""
    11401153
    1141 #: includes/customizer.php:1302 includes/customizer.php:1318
    1142 #: includes/admin.php:234
     1154#: includes/customizer.php:1333 includes/customizer.php:1349
     1155#: includes/admin.php:270
    11431156msgid "Text selection"
    11441157msgstr ""
    11451158
    1146 #: includes/admin.php:704
     1159#: includes/admin.php:740
    11471160msgid "The caboodle settings have been imported"
    11481161msgstr ""
     
    11521165msgstr ""
    11531166
    1154 #: includes/customizer.php:406 includes/admin.php:133
     1167#: includes/customizer.php:437 includes/admin.php:169
    11551168msgid "The same message for wrong username or wrong password"
    11561169msgstr ""
    11571170
    1158 #: includes/customizer.php:506
     1171#: includes/customizer.php:537
    11591172msgid "Title"
    11601173msgstr ""
    11611174
    1162 #: includes/customizer.php:1864
     1175#: includes/customizer.php:1895
    11631176msgid "Underline Color"
    11641177msgstr ""
    11651178
    1166 #: includes/customizer.php:1101
     1179#: includes/customizer.php:1132
    11671180msgid "Unlimited"
    11681181msgstr ""
    11691182
    1170 #: includes/customizer.php:1593 includes/customizer.php:1609
    1171 #: includes/admin.php:276
     1183#: includes/customizer.php:1624 includes/customizer.php:1640
     1184#: includes/admin.php:312
    11721185msgid "Unlink parent menu items"
    11731186msgstr ""
    11741187
    1175 #: includes/customizer.php:2893 includes/admin.php:422
     1188#: includes/customizer.php:2924 includes/admin.php:458
    11761189msgid "Use translatable default text in Astra theme header cover search"
    11771190msgstr ""
     
    11821195msgstr ""
    11831196
    1184 #: includes/customizer.php:869
     1197#: includes/customizer.php:900
    11851198msgid "Users"
    11861199msgstr ""
    11871200
    1188 #: includes/customizer.php:1716
     1201#: includes/customizer.php:1747
    11891202msgid "Vertical position (px)"
    11901203msgstr ""
     
    11991212msgstr ""
    12001213
    1201 #: includes/customizer.php:1808 includes/customizer.php:1826
    1202 #: includes/admin.php:288
     1214#: includes/customizer.php:1839 includes/customizer.php:1857
     1215#: includes/admin.php:324
    12031216msgid "Wavy links"
    12041217msgstr ""
    12051218
    1206 #: includes/customizer.php:1809
     1219#: includes/customizer.php:1840
    12071220msgid "Wavy underline for links"
    12081221msgstr ""
     
    12141227msgstr ""
    12151228
    1216 #: includes/customizer.php:2451
     1229#: includes/customizer.php:2482
    12171230msgid "Years shortcode"
    12181231msgstr ""
    12191232
    1220 #: includes/admin.php:547
     1233#: includes/admin.php:583
    12211234msgid ""
    12221235"Yikes! The cc_caboodle option containing the array of setting values does "
Note: See TracChangeset for help on using the changeset viewer.