Changeset 3312214
- Timestamp:
- 06/16/2025 12:37:57 AM (6 months ago)
- Location:
- cubecolour-caboodle/trunk
- Files:
-
- 12 edited
-
cubecolour-caboodle.php (modified) (4 diffs)
-
includes/admin.php (modified) (2 diffs)
-
includes/customizer.php (modified) (4 diffs)
-
includes/initial-values.php (modified) (2 diffs)
-
includes/modules/dashnotes.php (modified) (2 diffs)
-
js/customizer-controls.js (modified) (1 diff)
-
js/customizer-preview.js (modified) (1 diff)
-
languages/cubecolour-caboodle-en_GB.l10n.php (modified) (1 diff)
-
languages/cubecolour-caboodle-en_GB.mo (modified) (previous)
-
languages/cubecolour-caboodle-en_GB.po (modified) (31 diffs)
-
languages/cubecolour-caboodle.pot (modified) (27 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cubecolour-caboodle/trunk/cubecolour-caboodle.php
r3309462 r3312214 5 5 Description: An agglomeration of useful functions 6 6 Author: cubecolour 7 Version: 1. 4.27 Version: 1.5.0 8 8 License: GPLv2 or later 9 9 Text Domain: cubecolour-caboodle … … 42 42 * 43 43 */ 44 define( 'CC_CABOODLE_PLUGIN_VERSION', '1. 4.2' );44 define( 'CC_CABOODLE_PLUGIN_VERSION', '1.5.0' ); 45 45 define( 'CC_CABOODLE_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 46 46 define( 'CC_CABOODLE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); … … 172 172 173 173 /** 174 * Above header banner 175 * 176 */ 177 if ( cc_caboodle( 'above_header', '' ) == '1' ) { 178 include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/above-header.php' ); 179 } 180 181 /** 174 182 * Additional date & time format options 175 183 * … … 254 262 if ( cc_caboodle( 'login_error', '' ) == '1' ) { 255 263 include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/login-error-message.php' ); 264 } 265 266 /** 267 * Increase Login modal height 268 * 269 */ 270 if ( cc_caboodle( 'login_modal_height', '' ) == '1' ) { 271 include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/login-modal-height.php' ); 256 272 } 257 273 -
cubecolour-caboodle/trunk/includes/admin.php
r3307308 r3312214 128 128 <ul class="modules" id="modules"> 129 129 130 <li class="<?php cc_caboodle_module_classes( 'above_header' ) ?>"> 131 <a class="module-content" href="<?php cc_caboodle_module_url( 'above_header' ) ?>"> 132 <h2><?php esc_html_e( 'Above header banner', 'cubecolour-caboodle' ); ?></h2> 133 <p><?php esc_html_e( 'Adds a text banner above the header on all pages', 'cubecolour-caboodle' ); ?></p> 134 </a> 135 </li> 136 130 137 <li class="<?php cc_caboodle_module_classes( 'datetime_formats' ) ?>"> 131 138 <a class="module-content" href="<?php cc_caboodle_module_url( 'datetime_formats' ) ?>"> … … 182 189 </a> 183 190 </li> 191 <li class="<?php cc_caboodle_module_classes( 'login_modal_height' ) ?>"> 192 <a class="module-content" href="<?php cc_caboodle_module_url( 'login_modal_height' ) ?>"> 193 <h2><?php esc_html_e( 'Login modal height', 'cubecolour-caboodle' ); ?></h2> 194 <p><?php esc_html_e( 'Increase the height of the login modal that appears after session expiration', 'cubecolour-caboodle' ); ?></p> 195 </a> 184 196 <li class="<?php cc_caboodle_module_classes( 'new_tab' ) ?>"> 185 197 <a class="module-content" href="<?php cc_caboodle_module_url( 'new_tab' ) ?>"> -
cubecolour-caboodle/trunk/includes/customizer.php
r3307308 r3312214 109 109 110 110 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 111 * Above header banner 112 * 113 */ 114 $wp_customize->add_section( 'cc_caboodle_above_header_section', 115 array( 116 'title' => esc_html__( 'Above header banner', 'cubecolour-caboodle' ), 117 'description' => esc_html__( 'Adds a text banner above the header on all pages', 'cubecolour-caboodle' ), 118 'panel' => 'cc_caboodle_panel' 119 ) 120 ); 121 122 $wp_customize->add_setting('cc_caboodle[above_header]', array( 123 'default' => false, 124 'sanitize_callback' => 'cc_toggle_control_sanitize', 125 'type' => 'option', 126 'transport' => 'postMessage', 127 )); 128 $wp_customize->add_control( new Cubecolour_Toggle_Control( 129 $wp_customize, 130 'cc_caboodle_above_header', 131 array( 132 'label' => esc_html__( 'Above header banner', 'cubecolour-caboodle' ), 133 'type' => 'checkbox', 134 'section' => 'cc_caboodle_above_header_section', 135 'settings' => 'cc_caboodle[above_header]', 136 ) 137 ) 138 ); 139 140 141 $wp_customize->add_setting( 'cc_caboodle[above_header_bg_color]', 142 array( 143 'default' => '#fff', 144 'sanitize_callback' => 'sanitize_hex_color', 145 'type' => 'option', 146 'transport' => 'postMessage', 147 ) 148 ); 149 $wp_customize->add_control( 150 new WP_Customize_Color_Control( 151 $wp_customize, 'cc_caboodle_above_header_bg_color', 152 array( 153 'label' => esc_html__( 'Banner color', 'cubecolour-caboodle' ), 154 'section' => 'cc_caboodle_above_header_section', 155 'settings' => 'cc_caboodle[above_header_bg_color]', 156 ) 157 ) 158 ); 159 160 $wp_customize->add_setting( 'cc_caboodle[above_header_txt_color]', 161 array( 162 'default' => '#000', 163 'sanitize_callback' => 'sanitize_hex_color', 164 'type' => 'option', 165 'transport' => 'postMessage', 166 ) 167 ); 168 $wp_customize->add_control( 169 new WP_Customize_Color_Control( 170 $wp_customize, 'cc_caboodle_above_header_txt_color', 171 array( 172 'label' => esc_html__( 'Text color', 'cubecolour-caboodle' ), 173 'section' => 'cc_caboodle_above_header_section', 174 'settings' => 'cc_caboodle[above_header_txt_color]', 175 ) 176 ) 177 ); 178 179 $wp_customize->add_setting( 'cc_caboodle[above_header_height]', 180 array( 181 'default' => 70, 182 'sanitize_callback' => 'absint', 183 'type' => 'option', 184 'transport' => 'postMessage', 185 ) 186 ); 187 $wp_customize->add_control( 188 new Cubecolour_Range_Value_Control( 189 $wp_customize, 'cc_caboodle_above_header_height', array( 190 'label' => esc_html__( 'Banner height (px)', 'cubecolour-caboodle' ), 191 'section' => 'cc_caboodle_above_header_section', 192 'settings' => 'cc_caboodle[above_header_height]', 193 'type' => 'range', 194 'input_attrs' => array( 195 'min' => 50, 196 'max' => 200, 197 'step' => 1, 198 ) 199 ) 200 ) 201 ); 202 203 $wp_customize->add_setting( 'cc_caboodle[above_header_txt]', 204 array( 205 'default' => esc_html__( '', 'cubecolour-caboodle' ), 206 'sanitize_callback' => 'sanitize_text_field', 207 'type' => 'option', 208 'transport' => 'postMessage', 209 ) 210 ); 211 $wp_customize->add_control( 'cc_caboodle_above_header_txt', 212 array( 213 'label' => esc_html__( 'Text', 'cubecolour-caboodle' ), 214 'section' => 'cc_caboodle_above_header_section', 215 'settings' => 'cc_caboodle[above_header_txt]', 216 'type' => 'text', 217 ) 218 ); 219 220 $wp_customize->add_setting( 'cc_caboodle[above_header_txttrans]', 221 array( 222 'default' => 'none', 223 'sanitize_callback' => 'sanitize_title', 224 'type' => 'option', 225 'transport' => 'postMessage', 226 ) 227 ); 228 $wp_customize->add_control( 'cc_caboodle_above_header_txttrans', 229 array( 230 'type' => 'select', 231 'section' => 'cc_caboodle_above_header_section', 232 'settings' => 'cc_caboodle[above_header_txttrans]', 233 'label' => esc_html__( 'Text transform', 'cubecolour-caboodle' ), 234 'choices' => array( 235 'none' => esc_html__( 'None', 'cubecolour-caboodle' ), 236 'lowercase' => esc_html__( 'Lowercase', 'cubecolour-caboodle' ), 237 'uppercase' => esc_html__( 'Uppercase', 'cubecolour-caboodle' ), 238 'capitalize' => esc_html__( 'Capitalize', 'cubecolour-caboodle' ), 239 ), 240 ) 241 ); 242 243 $wp_customize->add_setting( 'cc_caboodle[above_header_fontsize]', 244 array( 245 'default' => 16, 246 'sanitize_callback' => 'absint', 247 'type' => 'option', 248 'transport' => 'postMessage', 249 ) 250 ); 251 $wp_customize->add_control( 252 new Cubecolour_Range_Value_Control( 253 $wp_customize, 'cc_caboodle_above_header_fontsize', array( 254 'label' => esc_html__( 'Font size (px)', 'cubecolour-caboodle' ), 255 'section' => 'cc_caboodle_above_header_section', 256 'settings' => 'cc_caboodle[above_header_fontsize]', 257 'type' => 'range', 258 'input_attrs' => array( 259 'min' => 10, 260 'max' => 70, 261 'step' => 1, 262 ) 263 ) 264 ) 265 ); 266 267 $wp_customize->add_setting( 'cc_caboodle[above_header_fontweight]', 268 array( 269 'default' => 700, 270 'sanitize_callback' => 'absint', 271 'type' => 'option', 272 'transport' => 'postMessage', 273 ) 274 ); 275 $wp_customize->add_control( 276 new Cubecolour_Range_Value_Control( 277 $wp_customize, 'cc_caboodle_above_header_fontweight', array( 278 'label' => esc_html__( 'Font weight', 'cubecolour-caboodle' ), 279 'section' => 'cc_caboodle_above_header_section', 280 'settings' => 'cc_caboodle[above_header_fontweight]', 281 'type' => 'range', 282 'input_attrs' => array( 283 'min' => 300, 284 'max' => 900, 285 'step' => 100, 286 ) 287 ) 288 ) 289 ); 290 291 $wp_customize->add_setting( 'cc_caboodle[above_header_speed]', 292 array( 293 'default' => 0, 294 'sanitize_callback' => 'absint', 295 'type' => 'option', 296 'transport' => 'postMessage', 297 ) 298 ); 299 $wp_customize->add_control( 300 new Cubecolour_Range_Value_Control( 301 $wp_customize, 'cc_caboodle_above_header_speed', array( 302 'label' => esc_html__( 'Scroll speed', 'cubecolour-caboodle' ), 303 'section' => 'cc_caboodle_above_header_section', 304 'settings' => 'cc_caboodle[above_header_speed]', 305 'type' => 'range', 306 'input_attrs' => array( 307 'min' => 0, 308 'max' => 25, 309 'step' => 1, 310 ) 311 ) 312 ) 313 ); 314 315 316 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 111 317 * Additional date and time format options 112 318 * … … 124 330 'sanitize_callback' => 'cc_toggle_control_sanitize', 125 331 'type' => 'option', 126 'transport' => ' postMessage',332 'transport' => 'refresh', 127 333 )); 128 334 $wp_customize->add_control( new Cubecolour_Toggle_Control( … … 652 858 653 859 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 860 * Increase login modal height 861 * 862 */ 863 $wp_customize->add_section( 'cc_caboodle_login_modal_height_section', 864 array( 865 'title' => esc_html__( 'Increase login modal height', 'cubecolour-caboodle' ), 866 'description' => esc_html__( 'Increase the height of the login modal that appears after session expiration', 'cubecolour-caboodle' ), 867 'panel' => 'cc_caboodle_panel' 868 ) 869 ); 870 871 $wp_customize->add_setting('cc_caboodle[login_modal_height]', array( 872 'default' => false, 873 'sanitize_callback' => 'cc_toggle_control_sanitize', 874 'type' => 'option', 875 'transport' => 'postMessage', 876 )); 877 $wp_customize->add_control( new Cubecolour_Toggle_Control( 878 $wp_customize, 879 'login_modal_height', 880 array( 881 'label' => esc_html__( 'Increase login modal height', 'cubecolour-caboodle' ), 882 'type' => 'checkbox', 883 'section' => 'cc_caboodle_login_modal_height_section', 884 'settings' => 'cc_caboodle[login_modal_height]', 885 ) 886 ) 887 ); 888 889 890 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 654 891 * Open in new tab section (Admin toolbar 'view site' link ) 655 892 * … … 799 1036 ), 800 1037 ) ); 1038 1039 1040 801 1041 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 802 1042 * Admin menu order section -
cubecolour-caboodle/trunk/includes/initial-values.php
r3307308 r3312214 10 10 11 11 $initial_values = array( 12 13 'above_header' => '', 14 'above_header_bg_color' => '#ffffff', 15 'above_header_fontsize' => '20', 16 'above_header_fontweight' => 'bold', 17 'above_header_height' => '70', 18 'above_header_speed' => '16', 19 'above_header_txt' => '', 20 'above_header_txt_color' => '#000000', 21 'above_header_txttrans' => 'none', 12 22 'add_dashicons' => '', 13 23 'admin_thumbnails' => '', … … 52 62 'login_error' => '', 53 63 'login_error_message' => esc_html__( 'Incorrect details input', 'cubecolour-caboodle' ), 64 'login_modal_height' => '', 54 65 'login_warning' => '', 55 66 'login_warning_colour' => '#777777', -
cubecolour-caboodle/trunk/includes/modules/dashnotes.php
r3232146 r3312214 46 46 $content = cc_caboodle( 'dashboard_notes_content', '' ); 47 47 $nonce_allowed_html = array( 48 'input' => array(49 'type' => true,50 'name' => true,51 'value' => true,52 'id' => true,48 'input' => array( 49 'type' => true, 50 'name' => true, 51 'value' => true, 52 'id' => true, 53 53 ), 54 54 ); … … 63 63 <div> 64 64 <textarea name="content" placeholder="<?php echo esc_html( $placeholder ); ?>" 65 class="mceEditor" rows=" 10" autocomplete="off" style="width: 100%"65 class="mceEditor" rows="20" autocomplete="off" style="width: 100%" 66 66 ><?php echo esc_textarea( $content ); ?></textarea> 67 67 </div> -
cubecolour-caboodle/trunk/js/customizer-controls.js
r3307308 r3312214 24 24 }); 25 25 } 26 26 27 showhide( 'above_header' ); 27 28 showhide( 'login_bg' ); 28 29 showhide( 'login_error' ); -
cubecolour-caboodle/trunk/js/customizer-preview.js
r3116538 r3312214 1 1 ( function( $ ) { 2 2 3 /** 4 * Above header banner text 5 * 6 */ 7 wp.customize( 'cc_caboodle[above_header_txt]', function( value ) { 8 value.bind( function( newval ) { 9 $( '#above-header-banner' ).css( '--above-header-txt', '"' + newval + '"' ); 10 } ); 11 } ); 12 13 /** 14 * Above header banner color 15 * 16 */ 17 wp.customize( 'cc_caboodle[above_header_bg_color]', function( value ) { 18 value.bind( function( newval ) { 19 $( '#above-header-banner' ).css( '--above-header-bg-color', newval ); 20 } ); 21 } ); 22 23 /** 24 * Above header banner text color 25 * 26 */ 27 wp.customize( 'cc_caboodle[above_header_txt_color]', function( value ) { 28 value.bind( function( newval ) { 29 $( '#above-header-banner' ).css( '--above-header-txt-color', newval ); 30 } ); 31 } ); 32 33 /** 34 * Above header banner height 35 * 36 */ 37 wp.customize( 'cc_caboodle[above_header_height]', function( value ) { 38 value.bind( function( newval ) { 39 $( '#above-header-banner' ).css( '--above-header-height', newval + 'px' ); 40 } ); 41 } ); 42 43 /** 44 * Above header banner fontsize 45 * 46 */ 47 wp.customize( 'cc_caboodle[above_header_fontsize]', function( value ) { 48 value.bind( function( newval ) { 49 $( '#above-header-banner' ).css( '--above-header-fontsize', newval + 'px' ); 50 } ); 51 } ); 52 53 /** 54 * Above header banner fontweight 55 * 56 */ 57 wp.customize( 'cc_caboodle[above_header_fontweight]', function( value ) { 58 value.bind( function( newval ) { 59 $( '#above-header-banner' ).css( '--above-header-fontweight', newval ); 60 } ); 61 } ); 62 63 /** 64 * Above header banner text transform 65 * 66 */ 67 wp.customize( 'cc_caboodle[above_header_txttrans]', function( value ) { 68 value.bind( function( newval ) { 69 $( '#above-header-banner' ).css( '--above-header-txttrans', newval ); 70 } ); 71 } ); 72 73 /** 74 * Above header banner text transform 75 * 76 */ 77 wp.customize( 'cc_caboodle[above_header_speed]', function( value ) { 78 value.bind( function( newval ) { 79 if ( newval < 1 ) { 80 $('.marquee-text.marquee-scroll').removeClass('marquee-scroll'); 81 } else { 82 $( '.marquee-text' ).addClass('marquee-scroll'); 83 $( '#above-header-banner' ).css( '--above-header-speed', newval + 's' ); 84 } 85 } ); 86 } ); 87 3 88 /** 4 89 * Text selection color -
cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.l10n.php
r3307308 r3312214 1 1 <?php 2 return ['project-id-version'=>'Cubecolour Caboodle 0.5.0','report-msgid-bugs-to'=>'https://wordpress.org/support/plugin/cubecolour-caboodle','last-translator'=>'','language-team'=>'English (UK)','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','pot-creation-date'=>'2022-03-23T22:09:54+00:00','po-revision-date'=>'2025-06- 06 00:46+0000','x-generator'=>'Loco https://localise.biz/','x-domain'=>'cubecolour-caboodle','language'=>'en_GB','plural-forms'=>'nplurals=2; plural=n != 1;','x-loco-version'=>'2.6.14; wp-6.7.1','messages'=>['%1$s %2$s'=>'%1$s %2$s','%1$s <a href="%2$s">%3$s</a>'=>'%1$s <a href="%2$s">%3$s</a>','%1$s <a target="_blank" href="%2$s">%3$s</a>'=>'%1$s <a target="_blank" href="%2$s">%3$s</a>','%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>'=>'%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>','%1$s, %2$s'=>'%1$s, %2$s','Add "New" & "Beta" links to the add plugins page'=>'Add "New" & "Beta" links to the add plugins page','Add %1$s and %2$s attributes to external links'=>'Add %1$s and %2$s attributes to external links','Add a dynamic scroll to top button in the website footer'=>'Add a dynamic scroll to top button in the website footer','Add a featured image column in the admin posts page'=>'Add a featured image column in the admin posts page','Add a file size column in the media library'=>'Add a file size column in the media library','Add a file size column in the media library list view'=>'Add a file size column in the media library list view','Add a lightbox to images and galleries'=>'Add a lightbox to images and galleries','Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)'=>'Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)','Add a page slug class to the body tag'=>'Add a page slug class to the body tag','Add a wavy underline to links within the content'=>'Add a wavy underline to links within the content','Add an arrow icon to identify external links within the site content'=>'Add an arrow icon to identify external links within the site content','Add an icon to links which direct offsite'=>'Add an icon to links which direct offsite','Add attributes'=>'Add attributes','Add caboodle dashicons'=>'Add caboodle dashicons','Add dashicons'=>'Add dashicons','Add news article'=>'Add news article','Add support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Add support for SVG files'=>'Add support for SVG files','Add support for SVGs'=>'Add support for SVGs','Additional date & time formats'=>'Additional date & time formats','Adds a link in admin settings menu to view saved options'=>'Adds a link in admin settings menu to view saved options','Adds a simple notepad widget to the dashboard'=>'Adds a simple notepad widget to the dashboard','Adds new options for date and time formats in the general settings admin page'=>'Adds new options for date and time formats in the general settings admin page','Adjust font size (%)'=>'Adjust font size (%)','Admin menu order'=>'Admin menu order','Afternoon greeting'=>'Afternoon greeting','All news articles'=>'All news articles','Also include on frontend'=>'Also include on frontend','An agglomeration of useful functions'=>'An agglomeration of useful functions','Anti clickjack'=>'Anti clickjack','Anti spambot'=>'Anti spambot','Apply customizations to the login page'=>'Apply customisations to the login page','Authorised access only'=>'Authorised access only','Background color'=>'Background colour','Background hover color'=>'Background hover colour','Blue'=>'Blue','Border radius (%)'=>'Border radius (%)','Border width (px)'=>'Border width (px)','Borderless'=>'Borderless','Breakpoint for mobile'=>'Breakpoint for mobile','Breakpoint for tablet'=>'Breakpoint for tablet','Caboodle'=>'Caboodle','Classic widgets'=>'Classic widgets','Coffee'=>'Coffee','Color'=>'Color','Color and background color of selected text'=>'Colour and background colour of selected text','Color centre'=>'Colour centre','Color left & right'=>'Colour left & right','Color scheme'=>'Colour scheme','Comments'=>'Comments','Copyright from year'=>'Copyright from year','Copyright years shortcode for use in footer [years start=2025 format=roman]'=>'Copyright years shortcode for use in footer [years start=2025 format=roman]','Copyright years shortcode to use in footer'=>'Copyright years shortcode to use in footer','CSS Selector'=>'CSS Selector','cubecolour'=>'cubecolour','Cubecolour Caboodle'=>'Cubecolour Caboodle','Current settings:'=>'Current settings:','Current Version'=>'Current Version','Current WP version'=>'Current WP version','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','Customize the login page'=>'Customise the login page','Dash spacing'=>'Dash spacing','Dashboard notes'=>'Dashboard notes','Default'=>'Default','Developer link'=>'Developer link','Developer link in admin footer and [developer] shortcode for front end'=>'Developer link in admin footer and [developer] shortcode for front end','Developer link URL'=>'Developer link URL','Developer name'=>'Developer name','Disconnect immediately and do not attempt to log in if you are not an authorised user'=>'Disconnect immediately and do not attempt to log in if you are not an authorised user','Display colored bars for visual confirmation of password input'=>'Display coloured bars for visual confirmation of password input','Do not expose password characters when entered on iPad, iPhone or android'=>'Do not expose password characters when entered on iPad, iPhone or android','Documentation'=>'Documentation','Ectoplasm'=>'Ectoplasm','Edit news'=>'Edit news','email shortcode to help protect email addresses from spambots'=>'email shortcode to help protect email addresses from spambots','Embed bandcamp'=>'Embed bandcamp','Enable attachment pages'=>'Enable attachment pages','Enable drop down menus to work more intuitively'=>'Enable drop down menus to work more intuitively','Enable media attachment pages'=>'Enable media attachment pages','Enable support for the [bandcamp] shortcode generated on bandcamp'=>'Enable support for the [bandcamp] shortcode generated on bandcamp','Enable the [bandcamp] shortcode generated by bandcamp to embed an audio player'=>'Enable the [bandcamp] shortcode generated by bandcamp to embed an audio player','Error message'=>'Error message','Error: Nonce verification has failed'=>'Error: Nonce verification has failed','Evening greeting'=>'Evening greeting','Except for administrators'=>'Except for administrators','Export'=>'Export','Export caboodle settings'=>'Export caboodle settings','Export the current plugin settings as a .json file.'=>'Export the current plugin settings as a .json file.','Extend dashicons with new icons'=>'Extend dashicons with new icons','Extra text added to login form'=>'Extra text added to login form','File Size'=>'File Size','Fix footer'=>'Fix footer','Fix the footer element to the bottom of the viewport on short pages'=>'Fix the footer element to the bottom of the viewport on short pages','Font'=>'Font','Footer element to fix'=>'Footer element to fix','Footer years range'=>'Footer years range','Force admin color scheme'=>'Force admin colour scheme','Force all users to use a specific admin color scheme'=>'Force all users to use a specific admin colour scheme','Force vertical scrollbar'=>'Force vertical scrollbar','Gap (px)'=>'Gap (px)','Go to bed'=>'Go to bed','Good afternoon'=>'Good afternoon','Good evening'=>'Good evening','Good morning'=>'Good morning','Hover Color'=>'Hover Color','Hover color'=>'Hover colour','https://cubecolour.co.uk/'=>'https://cubecolour.co.uk/','Icon'=>'Icon','Icon size (px)'=>'Icon size (px)','ID'=>'ID','Import'=>'Import','Import caboodle settings'=>'Import caboodle settings','Import the plugin settings from a .json file.'=>'Import the plugin settings from a .json file.','Import/export'=>'Import/export','Incorrect credentials'=>'Incorrect credentials','Incorrect details input'=>'Incorrect details input','Increase the font size in case your font has a small x-height'=>'Increase the font size in case your font has a small x-height','Indicate external links'=>'Indicate external links','Invalid nonce. Please refresh the page and try again.'=>'Invalid nonce. Please refresh the page and try again.','Keep posts'=>'Keep posts','Light'=>'Light','Lightbox'=>'Lightbox','Limit revisions'=>'Limit revisions','Limit the number of saved revisions'=>'Limit the number of saved revisions','Links'=>'Links','List the WordPress options with their values from the admin settings menu'=>'List the WordPress options with their values from the admin settings menu','Login background'=>'Login background','Login page'=>'Login page','Login page style'=>'Login page style','Login warning message'=>'Login warning message','Logo'=>'Logo','M j, Y @ G:i'=>'M j, Y @ G:i','Mask password'=>'Mask password','Media'=>'Media','Media attachment pages'=>'Media attachment pages','Message'=>'Message','Midnight'=>'Midnight','Modern'=>'Modern','Modify the view site link in admin to open in a new browser tab'=>'Modify the view site link in admin to open in a new browser tab','Modules'=>'Modules','Morning greeting'=>'Morning greeting','Must log in by username, not by email address'=>'Must log in by username, not by email address','New plugins'=>'New plugins','News'=>'News','News article'=>'News article','News article published.'=>'News article published.','News article restored to revision from'=>'News article restored to revision from','News article saved.'=>'News article saved.','News article scheduled for:'=>'News article scheduled for:','News article submitted.'=>'News article submitted.','News article updated.'=>'News article updated.','News draft updated.'=>'News draft updated.','News tags'=>'News tags','News updated.'=>'News updated.','Night greeting'=>'Night greeting','No admin bar'=>'No admin bar','No admin bar on the front end for logged-in users'=>'No admin bar on the front end for logged-in users','No author archives'=>'No author archives','No avatars'=>'No avatars','No comments'=>'No comments','No feeds'=>'No feeds','No file editors'=>'No file editors','No front end admin bar for logged in users'=>'No front end admin bar for logged in users','No generator'=>'No generator','No generator tag'=>'No generator tag','No howdy'=>'No generator tag','No language selector on the login page'=>'No language selector on the login page','No lazy loading'=>'No lazy loading','No login by email'=>'No login by email','No login by email address'=>'No login by email address','No login language selector'=>'No login language selector','No news found'=>'No news found','No news found in trash'=>'No news found in trash','No pingbacks'=>'No pingbacks','No RSD'=>'No RSD','No shortlink tags'=>'No shortlink tags','No WordPress lazy loading'=>'No WordPress lazy loading','None'=>'None','Notes…'=>'Notes…','Number of bars'=>'Number of bars','Number of Revisions to save'=>'Number of Revisions to save','Ocean'=>'Ocean','Open site in new tab'=>'Open site in new tab','Padding (px)'=>'Padding (px)','Page excerpts'=>'Page excerpts','Page slug body class'=>'Page slug body class','Password visualisation'=>'Password visualisation','Please upload a file to import'=>'Please upload a file to import','Please upload a valid .json file'=>'Please upload a valid .json file','Plugin InstallerBeta Testing'=>'Beta Testing','Plugin InstallerNew'=>'New','Position bottom (px)'=>'Position bottom (px)','Position right (px)'=>'Position right (px)','Post thumbnails'=>'Post thumbnails','Posts'=>'Posts','Posts post type'=>'Posts post type','Posts, pages, post types'=>'Posts, pages, post types','Prevent layout shift between long and short pages'=>'Prevent layout shift between long and short pages','Prevent self pingbacks'=>'Prevent self pingbacks','Prevent the site from loading inside an external frame or iframe'=>'Prevent the site from loading inside an external frame or iframe','Preview news article'=>'Preview news article','Private site'=>'Private site','Rearranges admin menu items: dashboard, pages, posts, media'=>'Rearranges admin menu items: dashboard, pages, posts, media','Redirect requests for author archives to the homepage'=>'Redirect requests for author archives to the homepage','Redirect unauthenticated visitors to the login page'=>'Redirect unauthenticated visitors to the login page','Remove or rename the posts post type'=>'Remove or rename the posts post type','Remove posts'=>'Remove posts','Remove support for gravatars or user avatars'=>'Remove support for gravatars or user avatars','Remove the language selector from the login page'=>'Remove the language selector from the login page','Remove the Really Simple Discovery endpoint'=>'Remove the Really Simple Discovery endpoint','Remove the RSS, RDF and atom feeds'=>'Remove the RSS, RDF and atom feeds','Remove the shortlink header tags'=>'Remove the shortlink header tags','Remove the WordPress generator meta tag'=>'Remove the WordPress generator meta tag','Removes support for comments'=>'Removes support for comments','Removes the theme and plugin editors from admin'=>'Removes the theme and plugin editors from admin','Rename posts to news'=>'Rename posts to news','Replace the howdy greeting with a salutation appropriate to the time of day'=>'Replace the howdy greeting with a salutation appropriate to the time of day','Replace the spaces around en-dashes & em-dashes with hairspaces'=>'Replace the spaces around en-dashes & em-dashes with hairspaces','Replace the WP logo in the admin toolbar with the site icon if one is configured'=>'Replace the WP logo in the admin toolbar with the site icon if one is configured','Replace WordPress logo'=>'Replace WordPress logo','Replace WP logo'=>'Replace WP logo','Responsive breakpoints'=>'Responsive breakpoints','Restores the previous (classic) widgets settings page'=>'Restores the previous (classic) widgets settings page','Revisions'=>'Revisions','Salt (random when blank)'=>'Salt (random when blank)','Scroll to anchor'=>'Scroll to anchor','Scroll to top'=>'Scroll to top','Search'=>'Search','Search news'=>'Search news','Search placeholder'=>'Search placeholder','Search placeholder text'=>'Search placeholder text','Set breakpoints'=>'Set breakpoints','Set custom mobile and tablet breakpoints for the Astra theme'=>'Set custom mobile and tablet breakpoints for the Astra theme','Settings'=>'Settings','Show current WP version'=>'Show current WP version','Show file size in media library'=>'Show file size in media library','Show IDs'=>'Show IDs','Show media file size'=>'Show media file size','Show only when hovered'=>'Show only when hovered','Show settings'=>'Show settings','Show the current WordPress version in the admin footer when an upgrade is available'=>'Show the current WordPress version in the admin footer when an upgrade is available','Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages'=>'Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages','Show the ID for posts, pages, custom post types, taxonomies, media and users'=>'Show the ID for posts, pages, custom post types, taxonomies, media and users','Show the thumbnail of the featured image in the admin posts page'=>'Show the thumbnail of the featured image in the admin posts page','Show thumbnails in admin'=>'Show thumbnails in admin','Show WordPress version'=>'Show WordPress version','Single error message'=>'Single error message','Single login error message'=>'Single login error message','Site Settings'=>'Site Settings','Size (px)'=>'Size (px)','Smoothly animate when clicking a link targeting an anchored position'=>'Smoothly animate when clicking a link targeting an anchored position','Sunrise'=>'Sunrise','SVG support'=>'SVG support','Taxonomies'=>'Taxonomies','Text color'=>'Text colour','Text selection'=>'Text selection','The caboodle settings have been imported'=>'The caboodle settings have been imported','The name of a google font'=>'The name of a google font','The same message for wrong username or wrong password'=>'The same message for wrong username or wrong password','Title'=>'Title','Underline Color'=>'Underline Color','Unlimited'=>'Unlimited','Unlink parent menu items'=>'Unlink parent menu items','Use translatable default text in Astra theme header cover search'=>'Use translatable default text in Astra theme header cover search','Username'=>'Username','Users'=>'Users','Vertical position (px)'=>'Vertical position (px)','View news'=>'View news','View news article'=>'View news article','Wavy links'=>'Wavy links','Wavy underline for links'=>'Wavy underline for links','website by %1$s'=>'website by %1$s','Years shortcode'=>'Years shortcode','Yikes! The cc_caboodle option containing the array of setting values does not exist'=>'Yikes! The cc_caboodle option containing the array of setting values does not exist']];2 return ['project-id-version'=>'Cubecolour Caboodle 0.5.0','report-msgid-bugs-to'=>'https://wordpress.org/support/plugin/cubecolour-caboodle','last-translator'=>'','language-team'=>'English (UK)','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','pot-creation-date'=>'2022-03-23T22:09:54+00:00','po-revision-date'=>'2025-06-16 00:32+0000','x-generator'=>'Loco https://localise.biz/','x-domain'=>'cubecolour-caboodle','language'=>'en_GB','plural-forms'=>'nplurals=2; plural=n != 1;','x-loco-version'=>'2.6.14; wp-6.7.1','messages'=>['%1$s %2$s'=>'%1$s %2$s','%1$s <a href="%2$s">%3$s</a>'=>'%1$s <a href="%2$s">%3$s</a>','%1$s <a target="_blank" href="%2$s">%3$s</a>'=>'%1$s <a target="_blank" href="%2$s">%3$s</a>','%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>'=>'%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>','%1$s, %2$s'=>'%1$s, %2$s','Above header banner'=>'Above header banner','Add "New" & "Beta" links to the add plugins page'=>'Add "New" & "Beta" links to the add plugins page','Add a dynamic scroll to top button in the website footer'=>'Add a dynamic scroll to top button in the website footer','Add a featured image column in the admin posts page'=>'Add a featured image column in the admin posts page','Add a file size column in the media library'=>'Add a file size column in the media library','Add a lightbox to images and galleries'=>'Add a lightbox to images and galleries','Add a page slug class to the body tag'=>'Add a page slug class to the body tag','Add a wavy underline to links within the content'=>'Add a wavy underline to links within the content','Add an arrow icon to identify external links within the site content'=>'Add an arrow icon to identify external links within the site content','Add dashicons'=>'Add dashicons','Add news article'=>'Add news article','Add support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Add support for SVGs'=>'Add support for SVGs','Additional date & time formats'=>'Additional date & time formats','Adds a simple notepad widget to the dashboard'=>'Adds a simple notepad widget to the dashboard','Adds a text banner above the header on all pages'=>'Adds a text banner above the header on all pages','Adds new options for date and time formats in the general settings admin page'=>'Adds new options for date and time formats in the general settings admin page','Admin menu order'=>'Admin menu order','All news articles'=>'All news articles','An agglomeration of useful functions'=>'An agglomeration of useful functions','Anti clickjack'=>'Anti clickjack','Anti spambot'=>'Anti spambot','Apply customizations to the login page'=>'Apply customisations to the login page','Authorised access only'=>'Authorised access only','Classic widgets'=>'Classic widgets','Color and background color of selected text'=>'Colour and background colour of selected text','Copyright years shortcode for use in footer [years start=2025 format=roman]'=>'Copyright years shortcode for use in footer [years start=2025 format=roman]','cubecolour'=>'cubecolour','Cubecolour Caboodle'=>'Cubecolour Caboodle','Current settings:'=>'Current settings:','Current Version'=>'Current Version','Current WP version'=>'Current WP version','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','Dash spacing'=>'Dash spacing','Dashboard notes'=>'Dashboard notes','Developer link'=>'Developer link','Developer link in admin footer and [developer] shortcode for front end'=>'Developer link in admin footer and [developer] shortcode for front end','Disconnect immediately and do not attempt to log in if you are not an authorised user'=>'Disconnect immediately and do not attempt to log in if you are not an authorised user','Display colored bars for visual confirmation of password input'=>'Display coloured bars for visual confirmation of password input','Do not expose password characters when entered on iPad, iPhone or android'=>'Do not expose password characters when entered on iPad, iPhone or android','Documentation'=>'Documentation','Edit news'=>'Edit news','email shortcode to help protect email addresses from spambots'=>'email shortcode to help protect email addresses from spambots','Embed bandcamp'=>'Embed bandcamp','Enable drop down menus to work more intuitively'=>'Enable drop down menus to work more intuitively','Enable media attachment pages'=>'Enable media attachment pages','Enable support for the [bandcamp] shortcode generated on bandcamp'=>'Enable support for the [bandcamp] shortcode generated on bandcamp','Error: Nonce verification has failed'=>'Error: Nonce verification has failed','Export'=>'Export','Export caboodle settings'=>'Export caboodle settings','Export the current plugin settings as a .json file.'=>'Export the current plugin settings as a .json file.','Extend dashicons with new icons'=>'Extend dashicons with new icons','Extra text added to login form'=>'Extra text added to login form','File Size'=>'File Size','Fix footer'=>'Fix footer','Fix the footer element to the bottom of the viewport on short pages'=>'Fix the footer element to the bottom of the viewport on short pages','Footer years range'=>'Footer years range','Force admin color scheme'=>'Force admin colour scheme','Force all users to use a specific admin color scheme'=>'Force all users to use a specific admin colour scheme','Force vertical scrollbar'=>'Force vertical scrollbar','Go to bed'=>'Go to bed','Good afternoon'=>'Good afternoon','Good evening'=>'Good evening','Good morning'=>'Good morning','https://cubecolour.co.uk/'=>'https://cubecolour.co.uk/','ID'=>'ID','Import'=>'Import','Import caboodle settings'=>'Import caboodle settings','Import the plugin settings from a .json file.'=>'Import the plugin settings from a .json file.','Import/export'=>'Import/export','Incorrect details input'=>'Incorrect details input','Increase the height of the login modal that appears after session expiration'=>'Increase the height of the login modal that appears after session expiration','Indicate external links'=>'Indicate external links','Invalid nonce. Please refresh the page and try again.'=>'Invalid nonce. Please refresh the page and try again.','Lightbox'=>'Lightbox','Limit revisions'=>'Limit revisions','Limit the number of saved revisions'=>'Limit the number of saved revisions','List the WordPress options with their values from the admin settings menu'=>'List the WordPress options with their values from the admin settings menu','Login modal height'=>'Login modal height','Login page style'=>'Login page style','Login warning message'=>'Login warning message','M j, Y @ G:i'=>'M j, Y @ G:i','Mask password'=>'Mask password','Modify the view site link in admin to open in a new browser tab'=>'Modify the view site link in admin to open in a new browser tab','Modules'=>'Modules','Must log in by username, not by email address'=>'Must log in by username, not by email address','New plugins'=>'New plugins','News'=>'News','News article'=>'News article','News article published.'=>'News article published.','News article restored to revision from'=>'News article restored to revision from','News article saved.'=>'News article saved.','News article scheduled for:'=>'News article scheduled for:','News article submitted.'=>'News article submitted.','News article updated.'=>'News article updated.','News draft updated.'=>'News draft updated.','News tags'=>'News tags','News updated.'=>'News updated.','No admin bar'=>'No admin bar','No author archives'=>'No author archives','No avatars'=>'No avatars','No comments'=>'No comments','No feeds'=>'No feeds','No file editors'=>'No file editors','No front end admin bar for logged in users'=>'No front end admin bar for logged in users','No generator'=>'No generator','No howdy'=>'No generator tag','No language selector on the login page'=>'No language selector on the login page','No lazy loading'=>'No lazy loading','No login by email address'=>'No login by email address','No login language selector'=>'No login language selector','No news found'=>'No news found','No news found in trash'=>'No news found in trash','No pingbacks'=>'No pingbacks','No RSD'=>'No RSD','No shortlink tags'=>'No shortlink tags','No WordPress lazy loading'=>'No WordPress lazy loading','Notes…'=>'Notes…','Open site in new tab'=>'Open site in new tab','Page excerpts'=>'Page excerpts','Page slug body class'=>'Page slug body class','Password visualisation'=>'Password visualisation','Please upload a file to import'=>'Please upload a file to import','Please upload a valid .json file'=>'Please upload a valid .json file','Plugin InstallerBeta Testing'=>'Beta Testing','Plugin InstallerNew'=>'New','Post thumbnails'=>'Post thumbnails','Posts'=>'Posts','Prevent layout shift between long and short pages'=>'Prevent layout shift between long and short pages','Prevent self pingbacks'=>'Prevent self pingbacks','Prevent the site from loading inside an external frame or iframe'=>'Prevent the site from loading inside an external frame or iframe','Preview news article'=>'Preview news article','Private site'=>'Private site','Rearranges admin menu items: dashboard, pages, posts, media'=>'Rearranges admin menu items: dashboard, pages, posts, media','Redirect requests for author archives to the homepage'=>'Redirect requests for author archives to the homepage','Redirect unauthenticated visitors to the login page'=>'Redirect unauthenticated visitors to the login page','Remove or rename the posts post type'=>'Remove or rename the posts post type','Remove support for gravatars or user avatars'=>'Remove support for gravatars or user avatars','Remove the Really Simple Discovery endpoint'=>'Remove the Really Simple Discovery endpoint','Remove the RSS, RDF and atom feeds'=>'Remove the RSS, RDF and atom feeds','Remove the shortlink header tags'=>'Remove the shortlink header tags','Remove the WordPress generator meta tag'=>'Remove the WordPress generator meta tag','Removes support for comments'=>'Removes support for comments','Removes the theme and plugin editors from admin'=>'Removes the theme and plugin editors from admin','Replace the howdy greeting with a salutation appropriate to the time of day'=>'Replace the howdy greeting with a salutation appropriate to the time of day','Replace the spaces around en-dashes & em-dashes with hairspaces'=>'Replace the spaces around en-dashes & em-dashes with hairspaces','Replace the WP logo in the admin toolbar with the site icon if one is configured'=>'Replace the WP logo in the admin toolbar with the site icon if one is configured','Replace WordPress logo'=>'Replace WordPress logo','Responsive breakpoints'=>'Responsive breakpoints','Restores the previous (classic) widgets settings page'=>'Restores the previous (classic) widgets settings page','Scroll to anchor'=>'Scroll to anchor','Scroll to top'=>'Scroll to top','Search'=>'Search','Search news'=>'Search news','Search placeholder'=>'Search placeholder','Set custom mobile and tablet breakpoints for the Astra theme'=>'Set custom mobile and tablet breakpoints for the Astra theme','Settings'=>'Settings','Show file size in media library'=>'Show file size in media library','Show IDs'=>'Show IDs','Show settings'=>'Show settings','Show the current WordPress version in the admin footer when an upgrade is available'=>'Show the current WordPress version in the admin footer when an upgrade is available','Show the ID for posts, pages, custom post types, taxonomies, media and users'=>'Show the ID for posts, pages, custom post types, taxonomies, media and users','Single login error message'=>'Single login error message','Site Settings'=>'Site Settings','Smoothly animate when clicking a link targeting an anchored position'=>'Smoothly animate when clicking a link targeting an anchored position','SVG support'=>'SVG support','Text selection'=>'Text selection','The caboodle settings have been imported'=>'The caboodle settings have been imported','The same message for wrong username or wrong password'=>'The same message for wrong username or wrong password','Unlink parent menu items'=>'Unlink parent menu items','Use translatable default text in Astra theme header cover search'=>'Use translatable default text in Astra theme header cover search','Username'=>'Username','View news'=>'View news','View news article'=>'View news article','Wavy links'=>'Wavy links','website by %1$s'=>'website by %1$s','Yikes! The cc_caboodle option containing the array of setting values does not exist'=>'Yikes! The cc_caboodle option containing the array of setting values does not exist']]; -
cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.po
r3307308 r3312214 12 12 "Content-Transfer-Encoding: 8bit\n" 13 13 "POT-Creation-Date: 2022-03-23T22:09:54+00:00\n" 14 "PO-Revision-Date: 2025-06- 06 00:46+0000\n"14 "PO-Revision-Date: 2025-06-16 00:32+0000\n" 15 15 "X-Generator: Loco https://localise.biz/\n" 16 16 "X-Domain: cubecolour-caboodle\n" … … 54 54 msgstr "%1$s, %2$s" 55 55 56 #: includes/customizer.php:1299 includes/admin.php:259 56 #: includes/admin.php:132 57 msgid "Above header banner" 58 msgstr "Above header banner" 59 60 #: includes/admin.php:271 57 61 #| msgid "Add \"New\" & \"Beta\" links to the add plugins page" 58 62 msgid "Add \"New\" & \"Beta\" links to the add plugins page" 59 63 msgstr "Add \"New\" & \"Beta\" links to the add plugins page" 60 64 61 #. %1$s: <code>target="_blank"</code>, %2$s: <code>rel="noopener noreferrer nofollow"</code> 62 #: includes/customizer.php:1883 63 #, php-format 64 msgid "Add %1$s and %2$s attributes to external links" 65 msgstr "Add %1$s and %2$s attributes to external links" 66 67 #: includes/customizer.php:2214 includes/admin.php:374 65 #: includes/admin.php:386 68 66 msgid "Add a dynamic scroll to top button in the website footer" 69 67 msgstr "Add a dynamic scroll to top button in the website footer" 70 68 71 #: includes/admin.php:3 0769 #: includes/admin.php:319 72 70 msgid "Add a featured image column in the admin posts page" 73 71 msgstr "Add a featured image column in the admin posts page" 74 72 75 #: includes/admin.php:3 4973 #: includes/admin.php:361 76 74 #| msgid "Show a file size column in the media library" 77 75 msgid "Add a file size column in the media library" 78 76 msgstr "Add a file size column in the media library" 79 77 80 #: includes/customizer.php:2059 81 msgid "Add a file size column in the media library list view" 82 msgstr "Add a file size column in the media library list view" 83 84 #: includes/admin.php:337 78 #: includes/admin.php:349 85 79 msgid "Add a lightbox to images and galleries" 86 80 msgstr "Add a lightbox to images and galleries" 87 81 88 #: includes/customizer.php:2028 89 msgid "" 90 "Add a lightbox to images and galleries (Ensure you set the image or gallery " 91 "to link to the media file)" 92 msgstr "" 93 "Add a lightbox to images and galleries (Ensure you set the image or gallery " 94 "to link to the media file)" 95 96 #: includes/customizer.php:1461 includes/admin.php:283 82 #: includes/admin.php:295 97 83 msgid "Add a page slug class to the body tag" 98 84 msgstr "Add a page slug class to the body tag" 99 85 100 #: includes/admin.php:3 3186 #: includes/admin.php:343 101 87 msgid "Add a wavy underline to links within the content" 102 88 msgstr "Add a wavy underline to links within the content" 103 89 104 #: includes/admin.php:3 2590 #: includes/admin.php:337 105 91 msgid "Add an arrow icon to identify external links within the site content" 106 92 msgstr "Add an arrow icon to identify external links within the site content" 107 93 108 #: includes/customizer.php:1713 109 msgid "Add an icon to links which direct offsite" 110 msgstr "Add an icon to links which direct offsite" 111 112 #: includes/customizer.php:1881 113 msgid "Add attributes" 114 msgstr "Add attributes" 115 116 #: includes/customizer.php:2167 117 msgid "Add caboodle dashicons" 118 msgstr "Add caboodle dashicons" 119 120 #: includes/customizer.php:2151 includes/admin.php:360 94 #: includes/admin.php:372 121 95 msgid "Add dashicons" 122 96 msgstr "Add dashicons" … … 128 102 msgstr "Add news article" 129 103 130 #: includes/customizer.php:1622 includes/customizer.php:1653 131 #: includes/admin.php:313 104 #: includes/admin.php:325 132 105 msgid "Add support for manual excerpts to pages" 133 106 msgstr "Add support for manual excerpts to pages" 134 107 135 #: includes/customizer.php:2090 136 msgid "Add support for SVG files" 137 msgstr "Add support for SVG files" 138 139 #: includes/admin.php:343 108 #: includes/admin.php:355 140 109 msgid "Add support for SVGs" 141 110 msgstr "Add support for SVGs" 142 111 143 #: includes/customizer.php:116 includes/customizer.php:132 144 #: includes/admin.php:132 112 #: includes/admin.php:139 145 113 msgid "Additional date & time formats" 146 114 msgstr "Additional date & time formats" 147 115 148 #: includes/customizer.php:1268 149 msgid "Adds a link in admin settings menu to view saved options" 150 msgstr "Adds a link in admin settings menu to view saved options" 151 152 #: includes/customizer.php:720 includes/admin.php:199 116 #: includes/admin.php:211 153 117 msgid "Adds a simple notepad widget to the dashboard" 154 118 msgstr "Adds a simple notepad widget to the dashboard" 155 119 156 #: includes/customizer.php:117 includes/admin.php:133 120 #: includes/admin.php:133 121 msgid "Adds a text banner above the header on all pages" 122 msgstr "Adds a text banner above the header on all pages" 123 124 #: includes/admin.php:140 157 125 msgid "" 158 126 "Adds new options for date and time formats in the general settings admin page" … … 160 128 "Adds new options for date and time formats in the general settings admin page" 161 129 162 #: includes/customizer.php:321 163 msgid "Adjust font size (%)" 164 msgstr "Adjust font size (%)" 165 166 #: includes/customizer.php:807 includes/customizer.php:823 167 #: includes/admin.php:210 130 #: includes/admin.php:222 168 131 msgid "Admin menu order" 169 132 msgstr "Admin menu order" 170 171 #: includes/customizer.php:1093172 #| msgid "Afternoon Greeting"173 msgid "Afternoon greeting"174 msgstr "Afternoon greeting"175 133 176 134 #: includes/modules/posts-rename-news.php:54 … … 178 136 msgstr "All news articles" 179 137 180 #: includes/customizer.php:646181 msgid "Also include on frontend"182 msgstr "Also include on frontend"183 184 138 #. Description of the plugin 185 139 msgid "An agglomeration of useful functions" 186 140 msgstr "An agglomeration of useful functions" 187 141 188 #: includes/customizer.php:2648 includes/customizer.php:2664 189 #: includes/admin.php:397 142 #: includes/admin.php:409 190 143 msgid "Anti clickjack" 191 144 msgstr "Anti clickjack" 192 145 193 #: includes/customizer.php:2616 includes/customizer.php:2632 194 #: includes/admin.php:391 146 #: includes/admin.php:403 195 147 msgid "Anti spambot" 196 148 msgstr "Anti spambot" 197 149 198 #: includes/admin.php:1 46150 #: includes/admin.php:153 199 151 msgid "Apply customizations to the login page" 200 152 msgstr "Apply customisations to the login page" 201 153 202 #: includes/initial-values.php:56 includes/customizer.php:529 203 #: includes/modules/login-warning.php:23 154 #: includes/initial-values.php:67 includes/modules/login-warning.php:23 204 155 msgid "Authorised access only" 205 156 msgstr "Authorised access only" 206 157 207 #: includes/customizer.php:1446 includes/customizer.php:2455 208 msgid "Background color" 209 msgstr "Background colour" 210 211 #: includes/customizer.php:2493 212 msgid "Background hover color" 213 msgstr "Background hover colour" 214 215 #: includes/customizer.php:793 216 msgid "Blue" 217 msgstr "Blue" 218 219 #: includes/customizer.php:2363 220 msgid "Border radius (%)" 221 msgstr "Border radius (%)" 222 223 #: includes/customizer.php:2339 224 msgid "Border width (px)" 225 msgstr "Border width (px)" 226 227 #: includes/customizer.php:268 228 msgid "Borderless" 229 msgstr "Borderless" 230 231 #: includes/customizer.php:3102 232 msgid "Breakpoint for mobile" 233 msgstr "Breakpoint for mobile" 234 235 #: includes/customizer.php:3078 236 msgid "Breakpoint for tablet" 237 msgstr "Breakpoint for tablet" 238 239 #: includes/customizer.php:105 240 msgid "Caboodle" 241 msgstr "Caboodle" 242 243 #: includes/customizer.php:1522 includes/customizer.php:1538 244 #: includes/admin.php:294 158 #: includes/admin.php:306 245 159 msgid "Classic widgets" 246 160 msgstr "Classic widgets" 247 161 248 #: includes/customizer.php:794 249 msgid "Coffee" 250 msgstr "Coffee" 251 252 #: includes/customizer.php:1830 includes/customizer.php:2436 253 msgid "Color" 254 msgstr "Color" 255 256 #: includes/customizer.php:1392 includes/admin.php:277 162 #: includes/admin.php:289 257 163 msgid "Color and background color of selected text" 258 164 msgstr "Colour and background colour of selected text" 259 165 260 #: includes/customizer.php:232 261 msgid "Color centre" 262 msgstr "Colour centre" 263 264 #: includes/customizer.php:213 265 #| msgid "Color left & Right" 266 msgid "Color left & right" 267 msgstr "Colour left & right" 268 269 #: includes/customizer.php:787 270 msgid "Color scheme" 271 msgstr "Colour scheme" 272 273 #: includes/customizer.php:976 274 msgid "Comments" 275 msgstr "Comments" 276 277 #: includes/customizer.php:2592 278 msgid "Copyright from year" 279 msgstr "Copyright from year" 280 281 #: includes/admin.php:386 166 #: includes/admin.php:398 282 167 msgid "" 283 168 "Copyright years shortcode for use in footer [years start=2025 format=roman]" 284 169 msgstr "" 285 170 "Copyright years shortcode for use in footer [years start=2025 format=roman]" 286 287 #: includes/customizer.php:2556288 msgid "Copyright years shortcode to use in footer"289 msgstr "Copyright years shortcode to use in footer"290 291 #: includes/customizer.php:2013292 msgid "CSS Selector"293 msgstr "CSS Selector"294 171 295 172 #. Author of the plugin … … 301 178 msgstr "Cubecolour Caboodle" 302 179 303 #: includes/admin.php:5 37180 #: includes/admin.php:549 304 181 msgid "Current settings:" 305 182 msgstr "Current settings:" … … 309 186 msgstr "Current Version" 310 187 311 #: includes/admin.php:2 28188 #: includes/admin.php:240 312 189 msgid "Current WP version" 313 190 msgstr "Current WP version" … … 321 198 msgstr "Custom field updated." 322 199 323 #: includes/customizer.php:178 324 msgid "Customize the login page" 325 msgstr "Customise the login page" 326 327 #: includes/customizer.php:1491 includes/customizer.php:1507 328 #: includes/admin.php:288 200 #: includes/admin.php:300 329 201 msgid "Dash spacing" 330 202 msgstr "Dash spacing" 331 203 332 #: includes/customizer.php:719 includes/customizer.php:735 333 #: includes/admin.php:198 204 #: includes/admin.php:210 334 205 msgid "Dashboard notes" 335 206 msgstr "Dashboard notes" 336 207 337 #: includes/customizer.php:790 338 msgid "Default" 339 msgstr "Default" 340 341 #: includes/customizer.php:1202 includes/customizer.php:1218 342 #: includes/admin.php:246 208 #: includes/admin.php:258 343 209 msgid "Developer link" 344 210 msgstr "Developer link" 345 211 346 #: includes/ customizer.php:1203 includes/admin.php:247212 #: includes/admin.php:259 347 213 msgid "Developer link in admin footer and [developer] shortcode for front end" 348 214 msgstr "Developer link in admin footer and [developer] shortcode for front end" 349 215 350 #: includes/customizer.php:1253 351 msgid "Developer link URL" 352 msgstr "Developer link URL" 353 354 #: includes/customizer.php:1236 355 msgid "Developer name" 356 msgstr "Developer name" 357 358 #: includes/initial-values.php:57 includes/customizer.php:547 359 #: includes/modules/login-warning.php:24 216 #: includes/initial-values.php:68 includes/modules/login-warning.php:24 360 217 msgid "" 361 218 "Disconnect immediately and do not attempt to log in if you are not an " … … 365 222 "authorised user" 366 223 367 #: includes/ customizer.php:570 includes/admin.php:181224 #: includes/admin.php:188 368 225 msgid "Display colored bars for visual confirmation of password input" 369 226 msgstr "Display coloured bars for visual confirmation of password input" 370 227 371 #: includes/ customizer.php:405 includes/admin.php:163228 #: includes/admin.php:170 372 229 #| msgid "" 373 230 #| "Do not expose password characters when entered on iPad, iPhone and android" … … 377 234 "Do not expose password characters when entered on iPad, iPhone or android" 378 235 379 #: includes/admin.php:5 83236 #: includes/admin.php:595 380 237 msgid "Documentation" 381 238 msgstr "Documentation" 382 383 #: includes/customizer.php:795384 msgid "Ectoplasm"385 msgstr "Ectoplasm"386 239 387 240 #: includes/modules/posts-rename-news.php:48 … … 389 242 msgstr "Edit news" 390 243 391 #: includes/ customizer.php:2617 includes/admin.php:392244 #: includes/admin.php:404 392 245 #| msgid "[email] shortcode to protect email addresses from spambots" 393 246 msgid "email shortcode to help protect email addresses from spambots" 394 247 msgstr "email shortcode to help protect email addresses from spambots" 395 248 396 #: includes/customizer.php:2976 includes/customizer.php:2992 397 #: includes/admin.php:460 249 #: includes/admin.php:472 398 250 msgid "Embed bandcamp" 399 251 msgstr "Embed bandcamp" 400 252 401 #: includes/customizer.php:2136 402 msgid "Enable attachment pages" 403 msgstr "Enable attachment pages" 404 405 #: includes/customizer.php:1683 includes/admin.php:319 253 #: includes/admin.php:331 406 254 msgid "Enable drop down menus to work more intuitively" 407 255 msgstr "Enable drop down menus to work more intuitively" 408 256 409 #: includes/ customizer.php:2121 includes/admin.php:354 includes/admin.php:355257 #: includes/admin.php:366 includes/admin.php:367 410 258 msgid "Enable media attachment pages" 411 259 msgstr "Enable media attachment pages" 412 260 413 #: includes/admin.php:4 61261 #: includes/admin.php:473 414 262 msgid "Enable support for the [bandcamp] shortcode generated on bandcamp" 415 263 msgstr "Enable support for the [bandcamp] shortcode generated on bandcamp" 416 264 417 #: includes/customizer.php:2977 418 msgid "" 419 "Enable the [bandcamp] shortcode generated by bandcamp to embed an audio " 420 "player" 421 msgstr "" 422 "Enable the [bandcamp] shortcode generated by bandcamp to embed an audio " 423 "player" 424 425 #: includes/customizer.php:470 426 msgid "Error message" 427 msgstr "Error message" 428 429 #: includes/admin.php:663 265 #: includes/admin.php:675 430 266 msgid "Error: Nonce verification has failed" 431 267 msgstr "Error: Nonce verification has failed" 432 268 433 #: includes/customizer.php:1110 434 #| msgid "Evening Greeting" 435 msgid "Evening greeting" 436 msgstr "Evening greeting" 437 438 #: includes/customizer.php:2713 439 msgid "Except for administrators" 440 msgstr "Except for administrators" 441 442 #: includes/admin.php:500 269 #: includes/admin.php:512 443 270 msgid "Export" 444 271 msgstr "Export" 445 272 446 #: includes/admin.php: 493273 #: includes/admin.php:505 447 274 msgid "Export caboodle settings" 448 275 msgstr "Export caboodle settings" 449 276 450 #: includes/admin.php: 495277 #: includes/admin.php:507 451 278 msgid "Export the current plugin settings as a .json file." 452 279 msgstr "Export the current plugin settings as a .json file." 453 280 454 #: includes/ customizer.php:2152 includes/admin.php:361281 #: includes/admin.php:373 455 282 msgid "Extend dashicons with new icons" 456 283 msgstr "Extend dashicons with new icons" 457 284 458 #: includes/ customizer.php:485 includes/admin.php:175285 #: includes/admin.php:182 459 286 msgid "Extra text added to login form" 460 287 msgstr "Extra text added to login form" … … 464 291 msgstr "File Size" 465 292 466 #: includes/customizer.php:2507 includes/customizer.php:2523 467 #: includes/admin.php:379 293 #: includes/admin.php:391 468 294 msgid "Fix footer" 469 295 msgstr "Fix footer" 470 296 471 #: includes/ customizer.php:2508 includes/admin.php:380297 #: includes/admin.php:392 472 298 msgid "Fix the footer element to the bottom of the viewport on short pages" 473 299 msgstr "Fix the footer element to the bottom of the viewport on short pages" 474 300 475 #: includes/customizer.php:302 476 msgid "Font" 477 msgstr "Font" 478 479 #: includes/customizer.php:2541 480 msgid "Footer element to fix" 481 msgstr "Footer element to fix" 482 483 #: includes/customizer.php:2555 includes/admin.php:385 301 #: includes/admin.php:397 484 302 msgid "Footer years range" 485 303 msgstr "Footer years range" 486 304 487 #: includes/customizer.php:749 includes/customizer.php:765 488 #: includes/admin.php:204 305 #: includes/admin.php:216 489 306 msgid "Force admin color scheme" 490 307 msgstr "Force admin colour scheme" 491 308 492 #: includes/ customizer.php:750 includes/admin.php:205309 #: includes/admin.php:217 493 310 msgid "Force all users to use a specific admin color scheme" 494 311 msgstr "Force all users to use a specific admin colour scheme" 495 312 496 #: includes/customizer.php:1329 includes/customizer.php:1345 497 #: includes/admin.php:264 313 #: includes/admin.php:276 498 314 msgid "Force vertical scrollbar" 499 315 msgstr "Force vertical scrollbar" 500 316 501 #: includes/customizer.php:1990 502 msgid "Gap (px)" 503 msgstr "Gap (px)" 504 505 #: includes/initial-values.php:74 includes/customizer.php:1119 506 #: includes/modules/no-howdy.php:77 317 #: includes/initial-values.php:85 includes/modules/no-howdy.php:77 507 318 msgid "Go to bed" 508 319 msgstr "Go to bed" 509 320 510 #: includes/initial-values.php:71 includes/customizer.php:1085 511 #: includes/modules/no-howdy.php:73 321 #: includes/initial-values.php:82 includes/modules/no-howdy.php:73 512 322 #| msgid "Good Afternoon" 513 323 msgid "Good afternoon" 514 324 msgstr "Good afternoon" 515 325 516 #: includes/initial-values.php:72 includes/customizer.php:1102 517 #: includes/modules/no-howdy.php:75 326 #: includes/initial-values.php:83 includes/modules/no-howdy.php:75 518 327 #| msgid "Good Evening" 519 328 msgid "Good evening" 520 329 msgstr "Good evening" 521 330 522 #: includes/initial-values.php:73 includes/customizer.php:1068 523 #: includes/modules/no-howdy.php:71 331 #: includes/initial-values.php:84 includes/modules/no-howdy.php:71 524 332 #| msgid "Good Morning" 525 333 msgid "Good morning" 526 334 msgstr "Good morning" 527 335 528 #: includes/customizer.php:1972529 msgid "Hover Color"530 msgstr "Hover Color"531 532 #: includes/customizer.php:1849 includes/customizer.php:2474533 msgid "Hover color"534 msgstr "Hover colour"535 536 336 #. Author URI of the plugin 537 337 msgid "https://cubecolour.co.uk/" 538 338 msgstr "https://cubecolour.co.uk/" 539 339 540 #: includes/customizer.php:1749 includes/customizer.php:2250541 msgid "Icon"542 msgstr "Icon"543 544 #: includes/customizer.php:2291545 msgid "Icon size (px)"546 msgstr "Icon size (px)"547 548 340 #: includes/modules/show-ids.php:9 549 341 msgid "ID" 550 342 msgstr "ID" 551 343 552 #: includes/admin.php:5 17344 #: includes/admin.php:529 553 345 msgid "Import" 554 346 msgstr "Import" 555 347 556 #: includes/admin.php:5 07348 #: includes/admin.php:519 557 349 msgid "Import caboodle settings" 558 350 msgstr "Import caboodle settings" 559 351 560 #: includes/admin.php:5 09352 #: includes/admin.php:521 561 353 msgid "Import the plugin settings from a .json file." 562 354 msgstr "Import the plugin settings from a .json file." 563 355 564 #: includes/admin.php:4 87356 #: includes/admin.php:499 565 357 msgid "Import/export" 566 358 msgstr "Import/export" 567 359 568 #: includes/customizer.php:462 569 msgid "Incorrect credentials" 570 msgstr "Incorrect credentials" 571 572 #: includes/initial-values.php:53 includes/modules/login-error-message.php:13 360 #: includes/initial-values.php:63 includes/modules/login-error-message.php:13 573 361 msgid "Incorrect details input" 574 362 msgstr "Incorrect details input" 575 363 576 #: includes/customizer.php:322 577 msgid "Increase the font size in case your font has a small x-height" 578 msgstr "Increase the font size in case your font has a small x-height" 579 580 #: includes/customizer.php:1712 includes/customizer.php:1729 581 #: includes/admin.php:324 364 #: includes/admin.php:194 365 msgid "" 366 "Increase the height of the login modal that appears after session expiration" 367 msgstr "" 368 "Increase the height of the login modal that appears after session expiration" 369 370 #: includes/admin.php:336 582 371 msgid "Indicate external links" 583 372 msgstr "Indicate external links" … … 587 376 msgstr "Invalid nonce. Please refresh the page and try again." 588 377 589 #: includes/customizer.php:1575 590 msgid "Keep posts" 591 msgstr "Keep posts" 592 593 #: includes/customizer.php:791 594 msgid "Light" 595 msgstr "Light" 596 597 #: includes/customizer.php:2027 includes/customizer.php:2043 598 #: includes/admin.php:336 378 #: includes/admin.php:348 599 379 msgid "Lightbox" 600 380 msgstr "Lightbox" 601 381 602 #: includes/ customizer.php:1157 includes/admin.php:240382 #: includes/admin.php:252 603 383 msgid "Limit revisions" 604 384 msgstr "Limit revisions" 605 385 606 #: includes/ customizer.php:1142 includes/admin.php:241386 #: includes/admin.php:253 607 387 msgid "Limit the number of saved revisions" 608 388 msgstr "Limit the number of saved revisions" 609 389 610 #: includes/customizer.php:994 611 msgid "Links" 612 msgstr "Links" 613 614 #: includes/admin.php:253 390 #: includes/admin.php:265 615 391 msgid "" 616 392 "List the WordPress options with their values from the admin settings menu" … … 618 394 "List the WordPress options with their values from the admin settings menu" 619 395 620 #: includes/customizer.php:193 621 msgid "Login background" 622 msgstr "Login background" 623 624 #: includes/customizer.php:177 625 msgid "Login page" 626 msgstr "Login page" 627 628 #: includes/admin.php:145 396 #: includes/admin.php:193 397 msgid "Login modal height" 398 msgstr "Login modal height" 399 400 #: includes/admin.php:152 629 401 msgid "Login page style" 630 402 msgstr "Login page style" 631 403 632 #: includes/customizer.php:484 includes/customizer.php:500 633 #: includes/admin.php:174 404 #: includes/admin.php:181 634 405 msgid "Login warning message" 635 406 msgstr "Login warning message" 636 637 #: includes/customizer.php:285638 msgid "Logo"639 msgstr "Logo"640 407 641 408 #: includes/modules/posts-rename-news.php:142 … … 643 410 msgstr "M j, Y @ G:i" 644 411 645 #: includes/customizer.php:404 includes/customizer.php:420 646 #: includes/admin.php:162 412 #: includes/admin.php:169 647 413 msgid "Mask password" 648 414 msgstr "Mask password" 649 415 650 #: includes/customizer.php:922 651 msgid "Media" 652 msgstr "Media" 653 654 #: includes/customizer.php:2120 655 msgid "Media attachment pages" 656 msgstr "Media attachment pages" 657 658 #: includes/customizer.php:555 659 msgid "Message" 660 msgstr "Message" 661 662 #: includes/customizer.php:796 663 msgid "Midnight" 664 msgstr "Midnight" 665 666 #: includes/customizer.php:792 667 msgid "Modern" 668 msgstr "Modern" 669 670 #: includes/customizer.php:660 includes/admin.php:187 416 #: includes/admin.php:199 671 417 msgid "Modify the view site link in admin to open in a new browser tab" 672 418 msgstr "Modify the view site link in admin to open in a new browser tab" … … 676 422 msgstr "Modules" 677 423 678 #: includes/customizer.php:1076 679 #| msgid "Morning Greeting" 680 msgid "Morning greeting" 681 msgstr "Morning greeting" 682 683 #: includes/customizer.php:343 includes/admin.php:151 424 #: includes/admin.php:158 684 425 msgid "Must log in by username, not by email address" 685 426 msgstr "Must log in by username, not by email address" 686 427 687 #: includes/customizer.php:1298 includes/customizer.php:1314 688 #: includes/admin.php:258 428 #: includes/admin.php:270 689 429 msgid "New plugins" 690 430 msgstr "New plugins" … … 740 480 msgstr "News updated." 741 481 742 #: includes/customizer.php:1127 743 #| msgid "Night Greeting" 744 msgid "Night greeting" 745 msgstr "Night greeting" 746 747 #: includes/customizer.php:2679 includes/customizer.php:2695 748 #: includes/admin.php:403 482 #: includes/admin.php:415 749 483 msgid "No admin bar" 750 484 msgstr "No admin bar" 751 485 752 #: includes/customizer.php:2680 753 msgid "No admin bar on the front end for logged-in users" 754 msgstr "No admin bar on the front end for logged-in users" 755 756 #: includes/customizer.php:2790 includes/customizer.php:2806 757 #: includes/admin.php:423 486 #: includes/admin.php:435 758 487 msgid "No author archives" 759 488 msgstr "No author archives" 760 489 761 #: includes/customizer.php:838 includes/customizer.php:856 762 #: includes/admin.php:216 490 #: includes/admin.php:228 763 491 #| msgid "Show avatars" 764 492 msgid "No avatars" 765 493 msgstr "No avatars" 766 494 767 #: includes/customizer.php:2759 includes/customizer.php:2775 768 #: includes/admin.php:416 495 #: includes/admin.php:428 769 496 msgid "No comments" 770 497 msgstr "No comments" 771 498 772 #: includes/customizer.php:2883 includes/customizer.php:2899 773 #: includes/admin.php:442 499 #: includes/admin.php:454 774 500 msgid "No feeds" 775 501 msgstr "No feeds" 776 502 777 #: includes/customizer.php:2728 includes/customizer.php:2744 778 #: includes/admin.php:409 503 #: includes/admin.php:421 779 504 msgid "No file editors" 780 505 msgstr "No file editors" 781 506 782 #: includes/admin.php:4 04507 #: includes/admin.php:416 783 508 msgid "No front end admin bar for logged in users" 784 509 msgstr "No front end admin bar for logged in users" 785 510 786 #: includes/ customizer.php:2821 includes/admin.php:429511 #: includes/admin.php:441 787 512 msgid "No generator" 788 513 msgstr "No generator" 789 514 790 #: includes/customizer.php:2837 791 msgid "No generator tag" 792 msgstr "No generator tag" 793 794 #: includes/customizer.php:1042 includes/customizer.php:1058 795 #: includes/admin.php:234 515 #: includes/admin.php:246 796 516 msgid "No howdy" 797 517 msgstr "No generator tag" 798 518 799 #: includes/admin.php:1 57519 #: includes/admin.php:164 800 520 msgid "No language selector on the login page" 801 521 msgstr "No language selector on the login page" 802 522 803 #: includes/customizer.php:2182 includes/customizer.php:2198 804 #: includes/admin.php:367 523 #: includes/admin.php:379 805 524 msgid "No lazy loading" 806 525 msgstr "No lazy loading" 807 526 808 #: includes/customizer.php:358 809 msgid "No login by email" 810 msgstr "No login by email" 811 812 #: includes/customizer.php:342 includes/admin.php:150 527 #: includes/admin.php:157 813 528 msgid "No login by email address" 814 529 msgstr "No login by email address" 815 530 816 #: includes/customizer.php:373 includes/customizer.php:389 817 #: includes/admin.php:156 531 #: includes/admin.php:163 818 532 msgid "No login language selector" 819 533 msgstr "No login language selector" … … 827 541 msgstr "No news found in trash" 828 542 829 #: includes/customizer.php:2945 includes/customizer.php:2961 830 #: includes/admin.php:454 543 #: includes/admin.php:466 831 544 msgid "No pingbacks" 832 545 msgstr "No pingbacks" 833 546 834 #: includes/customizer.php:2852 includes/customizer.php:2868 835 #: includes/admin.php:435 547 #: includes/admin.php:447 836 548 msgid "No RSD" 837 549 msgstr "No RSD" 838 550 839 #: includes/customizer.php:2914 includes/customizer.php:2930 840 #: includes/admin.php:448 551 #: includes/admin.php:460 841 552 #| msgid "No shortlinks" 842 553 msgid "No shortlink tags" 843 554 msgstr "No shortlink tags" 844 555 845 #: includes/ customizer.php:2183 includes/admin.php:368556 #: includes/admin.php:380 846 557 #| msgid "Disable WordPress lazy loading" 847 558 msgid "No WordPress lazy loading" 848 559 msgstr "No WordPress lazy loading" 849 560 850 #: includes/customizer.php:1181851 msgid "None"852 msgstr "None"853 854 561 #: includes/modules/dashnotes.php:56 855 562 msgid "Notes…" 856 563 msgstr "Notes…" 857 564 858 #: includes/customizer.php:606 859 msgid "Number of bars" 860 msgstr "Number of bars" 861 862 #: includes/customizer.php:1178 863 msgid "Number of Revisions to save" 864 msgstr "Number of Revisions to save" 865 866 #: includes/customizer.php:797 867 msgid "Ocean" 868 msgstr "Ocean" 869 870 #: includes/customizer.php:659 includes/customizer.php:675 871 #: includes/admin.php:186 565 #: includes/admin.php:198 872 566 msgid "Open site in new tab" 873 567 msgstr "Open site in new tab" 874 568 875 #: includes/customizer.php:2315 876 msgid "Padding (px)" 877 msgstr "Padding (px)" 878 879 #: includes/customizer.php:1621 includes/customizer.php:1637 880 #: includes/customizer.php:1652 includes/customizer.php:1668 881 #: includes/admin.php:312 569 #: includes/admin.php:324 882 570 msgid "Page excerpts" 883 571 msgstr "Page excerpts" 884 572 885 #: includes/customizer.php:1460 includes/customizer.php:1476 886 #: includes/admin.php:282 573 #: includes/admin.php:294 887 574 msgid "Page slug body class" 888 575 msgstr "Page slug body class" 889 576 890 #: includes/customizer.php:569 includes/customizer.php:586 891 #: includes/admin.php:180 577 #: includes/admin.php:187 892 578 msgid "Password visualisation" 893 579 msgstr "Password visualisation" 894 580 895 #: includes/admin.php:6 84581 #: includes/admin.php:696 896 582 msgid "Please upload a file to import" 897 583 msgstr "Please upload a file to import" 898 584 899 #: includes/admin.php:6 75585 #: includes/admin.php:687 900 586 msgid "Please upload a valid .json file" 901 587 msgstr "Please upload a valid .json file" … … 911 597 msgstr "New" 912 598 913 #: includes/customizer.php:2411 914 msgid "Position bottom (px)" 915 msgstr "Position bottom (px)" 916 917 #: includes/customizer.php:2387 918 msgid "Position right (px)" 919 msgstr "Position right (px)" 920 921 #: includes/admin.php:306 599 #: includes/admin.php:318 922 600 msgid "Post thumbnails" 923 601 msgstr "Post thumbnails" 924 602 925 #: includes/ customizer.php:1553 includes/admin.php:300603 #: includes/admin.php:312 926 604 msgid "Posts" 927 605 msgstr "Posts" 928 606 929 #: includes/customizer.php:1572 930 msgid "Posts post type" 931 msgstr "Posts post type" 932 933 #: includes/customizer.php:904 934 msgid "Posts, pages, post types" 935 msgstr "Posts, pages, post types" 936 937 #: includes/customizer.php:1330 includes/admin.php:265 607 #: includes/admin.php:277 938 608 msgid "Prevent layout shift between long and short pages" 939 609 msgstr "Prevent layout shift between long and short pages" 940 610 941 #: includes/ customizer.php:2946 includes/admin.php:455611 #: includes/admin.php:467 942 612 msgid "Prevent self pingbacks" 943 613 msgstr "Prevent self pingbacks" 944 614 945 #: includes/ customizer.php:2649 includes/admin.php:398615 #: includes/admin.php:410 946 616 msgid "Prevent the site from loading inside an external frame or iframe" 947 617 msgstr "Prevent the site from loading inside an external frame or iframe" … … 953 623 msgstr "Preview news article" 954 624 955 #: includes/customizer.php:146 includes/customizer.php:162 956 #: includes/admin.php:139 625 #: includes/admin.php:146 957 626 msgid "Private site" 958 627 msgstr "Private site" 959 628 960 #: includes/ customizer.php:808 includes/admin.php:211629 #: includes/admin.php:223 961 630 msgid "Rearranges admin menu items: dashboard, pages, posts, media" 962 631 msgstr "Rearranges admin menu items: dashboard, pages, posts, media" 963 632 964 #: includes/ customizer.php:2791 includes/admin.php:424633 #: includes/admin.php:436 965 634 msgid "Redirect requests for author archives to the homepage" 966 635 msgstr "Redirect requests for author archives to the homepage" 967 636 968 #: includes/ customizer.php:147 includes/admin.php:140637 #: includes/admin.php:147 969 638 msgid "Redirect unauthenticated visitors to the login page" 970 639 msgstr "Redirect unauthenticated visitors to the login page" 971 640 972 #: includes/ customizer.php:1554 includes/admin.php:301641 #: includes/admin.php:313 973 642 #| msgid "Keep,remove or rename the posts post type" 974 643 msgid "Remove or rename the posts post type" 975 644 msgstr "Remove or rename the posts post type" 976 645 977 #: includes/customizer.php:1577 978 msgid "Remove posts" 979 msgstr "Remove posts" 980 981 #: includes/customizer.php:839 includes/admin.php:217 646 #: includes/admin.php:229 982 647 #| msgid "Remove all support for gravatars or user avatars" 983 648 msgid "Remove support for gravatars or user avatars" 984 649 msgstr "Remove support for gravatars or user avatars" 985 650 986 #: includes/customizer.php:374 987 msgid "Remove the language selector from the login page" 988 msgstr "Remove the language selector from the login page" 989 990 #: includes/customizer.php:2853 includes/admin.php:436 651 #: includes/admin.php:448 991 652 #| msgid "Remove the RSD (Really Simple Discovery) endpoint" 992 653 msgid "Remove the Really Simple Discovery endpoint" 993 654 msgstr "Remove the Really Simple Discovery endpoint" 994 655 995 #: includes/ customizer.php:2884 includes/admin.php:443656 #: includes/admin.php:455 996 657 msgid "Remove the RSS, RDF and atom feeds" 997 658 msgstr "Remove the RSS, RDF and atom feeds" 998 659 999 #: includes/ customizer.php:2915 includes/admin.php:449660 #: includes/admin.php:461 1000 661 #| msgid "Remove the short link header tags" 1001 662 msgid "Remove the shortlink header tags" 1002 663 msgstr "Remove the shortlink header tags" 1003 664 1004 #: includes/ customizer.php:2822 includes/admin.php:430665 #: includes/admin.php:442 1005 666 msgid "Remove the WordPress generator meta tag" 1006 667 msgstr "Remove the WordPress generator meta tag" 1007 668 1008 #: includes/ customizer.php:2760 includes/admin.php:417669 #: includes/admin.php:429 1009 670 msgid "Removes support for comments" 1010 671 msgstr "Removes support for comments" 1011 672 1012 #: includes/ customizer.php:2729 includes/admin.php:410673 #: includes/admin.php:422 1013 674 msgid "Removes the theme and plugin editors from admin" 1014 675 msgstr "Removes the theme and plugin editors from admin" 1015 676 1016 #: includes/customizer.php:1576 1017 #| msgid "Rename posts as news" 1018 msgid "Rename posts to news" 1019 msgstr "Rename posts to news" 1020 1021 #: includes/customizer.php:1043 includes/admin.php:235 677 #: includes/admin.php:247 1022 678 msgid "" 1023 679 "Replace the howdy greeting with a salutation appropriate to the time of day" … … 1025 681 "Replace the howdy greeting with a salutation appropriate to the time of day" 1026 682 1027 #: includes/ customizer.php:1492 includes/admin.php:289683 #: includes/admin.php:301 1028 684 #| msgid "Replace spaces around en-dashes & em-dashes with hairspaces" 1029 685 msgid "Replace the spaces around en-dashes & em-dashes with hairspaces" 1030 686 msgstr "Replace the spaces around en-dashes & em-dashes with hairspaces" 1031 687 1032 #: includes/ customizer.php:690 includes/admin.php:193688 #: includes/admin.php:205 1033 689 msgid "" 1034 690 "Replace the WP logo in the admin toolbar with the site icon if one is " … … 1038 694 "configured" 1039 695 1040 #: includes/ customizer.php:689 includes/admin.php:192696 #: includes/admin.php:204 1041 697 msgid "Replace WordPress logo" 1042 698 msgstr "Replace WordPress logo" 1043 699 1044 #: includes/customizer.php:705 1045 msgid "Replace WP logo" 1046 msgstr "Replace WP logo" 1047 1048 #: includes/customizer.php:3043 includes/admin.php:475 700 #: includes/admin.php:487 1049 701 msgid "Responsive breakpoints" 1050 702 msgstr "Responsive breakpoints" 1051 703 1052 #: includes/ customizer.php:1523 includes/admin.php:295704 #: includes/admin.php:307 1053 705 msgid "Restores the previous (classic) widgets settings page" 1054 706 msgstr "Restores the previous (classic) widgets settings page" 1055 707 1056 #: includes/customizer.php:1141 1057 msgid "Revisions" 1058 msgstr "Revisions" 1059 1060 #: includes/customizer.php:630 1061 msgid "Salt (random when blank)" 1062 msgstr "Salt (random when blank)" 1063 1064 #: includes/customizer.php:1360 includes/customizer.php:1376 1065 #: includes/admin.php:270 708 #: includes/admin.php:282 1066 709 msgid "Scroll to anchor" 1067 710 msgstr "Scroll to anchor" 1068 711 1069 #: includes/customizer.php:2213 includes/customizer.php:2229 1070 #: includes/admin.php:373 712 #: includes/admin.php:385 1071 713 msgid "Scroll to top" 1072 714 msgstr "Scroll to top" … … 1081 723 msgstr "Search news" 1082 724 1083 #: includes/ customizer.php:3012 includes/admin.php:469725 #: includes/admin.php:481 1084 726 msgid "Search placeholder" 1085 727 msgstr "Search placeholder" 1086 728 1087 #: includes/customizer.php:3028 1088 msgid "Search placeholder text" 1089 msgstr "Search placeholder text" 1090 1091 #: includes/customizer.php:3059 1092 msgid "Set breakpoints" 1093 msgstr "Set breakpoints" 1094 1095 #: includes/customizer.php:3044 includes/admin.php:476 729 #: includes/admin.php:488 1096 730 msgid "Set custom mobile and tablet breakpoints for the Astra theme" 1097 731 msgstr "Set custom mobile and tablet breakpoints for the Astra theme" … … 1101 735 msgstr "Settings" 1102 736 1103 #: includes/customizer.php:1010 1104 msgid "Show current WP version" 1105 msgstr "Show current WP version" 1106 1107 #: includes/admin.php:348 737 #: includes/admin.php:360 1108 738 msgid "Show file size in media library" 1109 739 msgstr "Show file size in media library" 1110 740 1111 #: includes/customizer.php:870 includes/customizer.php:886 1112 #: includes/admin.php:222 741 #: includes/admin.php:234 1113 742 msgid "Show IDs" 1114 743 msgstr "Show IDs" 1115 744 1116 #: includes/customizer.php:2058 includes/customizer.php:2074 1117 msgid "Show media file size" 1118 msgstr "Show media file size" 1119 1120 #: includes/customizer.php:1934 1121 msgid "Show only when hovered" 1122 msgstr "Show only when hovered" 1123 1124 #: includes/customizer.php:1267 includes/customizer.php:1283 1125 #: includes/admin.php:252 745 #: includes/admin.php:264 1126 746 msgid "Show settings" 1127 747 msgstr "Show settings" 1128 748 1129 #: includes/ customizer.php:1011 includes/admin.php:229749 #: includes/admin.php:241 1130 750 #| msgid "" 1131 751 #| "Show the current WP version in the admin footer when an upgrade is " … … 1138 758 "available" 1139 759 1140 #: includes/customizer.php:871 1141 msgid "" 1142 "Show the ID for posts, pages, custom post types, taxonomies, media and user " 1143 "IDs in the admin pages" 1144 msgstr "" 1145 "Show the ID for posts, pages, custom post types, taxonomies, media and user " 1146 "IDs in the admin pages" 1147 1148 #: includes/admin.php:223 760 #: includes/admin.php:235 1149 761 msgid "" 1150 762 "Show the ID for posts, pages, custom post types, taxonomies, media and users" … … 1152 764 "Show the ID for posts, pages, custom post types, taxonomies, media and users" 1153 765 1154 #: includes/customizer.php:1591 1155 msgid "Show the thumbnail of the featured image in the admin posts page" 1156 msgstr "Show the thumbnail of the featured image in the admin posts page" 1157 1158 #: includes/customizer.php:1590 includes/customizer.php:1606 1159 msgid "Show thumbnails in admin" 1160 msgstr "Show thumbnails in admin" 1161 1162 #: includes/customizer.php:1026 1163 msgid "Show WordPress version" 1164 msgstr "Show WordPress version" 1165 1166 #: includes/customizer.php:452 1167 msgid "Single error message" 1168 msgstr "Single error message" 1169 1170 #: includes/customizer.php:436 includes/admin.php:168 766 #: includes/admin.php:175 1171 767 msgid "Single login error message" 1172 768 msgstr "Single login error message" … … 1176 772 msgstr "Site Settings" 1177 773 1178 #: includes/customizer.php:1781 1179 #| msgid "Size (em)" 1180 msgid "Size (px)" 1181 msgstr "Size (px)" 1182 1183 #: includes/customizer.php:1361 includes/admin.php:271 774 #: includes/admin.php:283 1184 775 #| msgid "" 1185 776 #| "Smoothly animate when clicking a link targetting an anchored position" … … 1187 778 msgstr "Smoothly animate when clicking a link targeting an anchored position" 1188 779 1189 #: includes/customizer.php:798 1190 msgid "Sunrise" 1191 msgstr "Sunrise" 1192 1193 #: includes/customizer.php:2089 includes/customizer.php:2105 1194 #: includes/admin.php:342 780 #: includes/admin.php:354 1195 781 msgid "SVG support" 1196 782 msgstr "SVG support" 1197 783 1198 #: includes/customizer.php:940 1199 msgid "Taxonomies" 1200 msgstr "Taxonomies" 1201 1202 #: includes/customizer.php:251 includes/customizer.php:520 1203 #: includes/customizer.php:1427 1204 msgid "Text color" 1205 msgstr "Text colour" 1206 1207 #: includes/customizer.php:1391 includes/customizer.php:1407 1208 #: includes/admin.php:276 784 #: includes/admin.php:288 1209 785 msgid "Text selection" 1210 786 msgstr "Text selection" 1211 787 1212 #: includes/admin.php:7 28788 #: includes/admin.php:740 1213 789 msgid "The caboodle settings have been imported" 1214 790 msgstr "The caboodle settings have been imported" 1215 791 1216 #: includes/customizer.php:303 1217 msgid "The name of a google font" 1218 msgstr "The name of a google font" 1219 1220 #: includes/customizer.php:437 includes/admin.php:169 792 #: includes/admin.php:176 1221 793 msgid "The same message for wrong username or wrong password" 1222 794 msgstr "The same message for wrong username or wrong password" 1223 795 1224 #: includes/customizer.php:537 1225 msgid "Title" 1226 msgstr "Title" 1227 1228 #: includes/customizer.php:1953 1229 msgid "Underline Color" 1230 msgstr "Underline Color" 1231 1232 #: includes/customizer.php:1190 1233 msgid "Unlimited" 1234 msgstr "Unlimited" 1235 1236 #: includes/customizer.php:1682 includes/customizer.php:1698 1237 #: includes/admin.php:318 796 #: includes/admin.php:330 1238 797 msgid "Unlink parent menu items" 1239 798 msgstr "Unlink parent menu items" 1240 799 1241 #: includes/ customizer.php:3013 includes/admin.php:470800 #: includes/admin.php:482 1242 801 msgid "Use translatable default text in Astra theme header cover search" 1243 802 msgstr "Use translatable default text in Astra theme header cover search" … … 1248 807 msgstr "Username" 1249 808 1250 #: includes/customizer.php:9581251 msgid "Users"1252 msgstr "Users"1253 1254 #: includes/customizer.php:18051255 msgid "Vertical position (px)"1256 msgstr "Vertical position (px)"1257 1258 809 #: includes/modules/posts-rename-news.php:50 1259 810 msgid "View news" … … 1265 816 msgstr "View news article" 1266 817 1267 #: includes/customizer.php:1897 includes/customizer.php:1915 1268 #: includes/admin.php:330 818 #: includes/admin.php:342 1269 819 msgid "Wavy links" 1270 820 msgstr "Wavy links" 1271 1272 #: includes/customizer.php:18981273 msgid "Wavy underline for links"1274 msgstr "Wavy underline for links"1275 821 1276 822 #. Developer name … … 1280 826 msgstr "website by %1$s" 1281 827 1282 #: includes/customizer.php:2571 1283 msgid "Years shortcode" 1284 msgstr "Years shortcode" 1285 1286 #: includes/admin.php:571 828 #: includes/admin.php:583 1287 829 #| msgid "" 1288 830 #| "The cc_caboodle option containing the array of setting values does not " -
cubecolour-caboodle/trunk/languages/cubecolour-caboodle.pot
r3307308 r3312214 12 12 "Content-Type: text/plain; charset=UTF-8\n" 13 13 "Content-Transfer-Encoding: 8bit\n" 14 "POT-Creation-Date: 2025-06- 06 00:35+0000\n"14 "POT-Creation-Date: 2025-06-16 00:30+0000\n" 15 15 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 16 16 "X-Generator: Loco https://localise.biz/\n" … … 53 53 msgstr "" 54 54 55 #: includes/customizer.php:1299 includes/admin.php:259 55 #: includes/admin.php:132 56 msgid "Above header banner" 57 msgstr "" 58 59 #: includes/admin.php:271 56 60 msgid "Add \"New\" & \"Beta\" links to the add plugins page" 57 61 msgstr "" 58 62 59 #. %1$s: <code>target="_blank"</code>, %2$s: <code>rel="noopener noreferrer nofollow"</code> 60 #: includes/customizer.php:1883 61 #, php-format 62 msgid "Add %1$s and %2$s attributes to external links" 63 msgstr "" 64 65 #: includes/customizer.php:2214 includes/admin.php:374 63 #: includes/admin.php:386 66 64 msgid "Add a dynamic scroll to top button in the website footer" 67 65 msgstr "" 68 66 69 #: includes/admin.php:3 0767 #: includes/admin.php:319 70 68 msgid "Add a featured image column in the admin posts page" 71 69 msgstr "" 72 70 71 #: includes/admin.php:361 72 msgid "Add a file size column in the media library" 73 msgstr "" 74 73 75 #: includes/admin.php:349 74 msgid "Add a file size column in the media library" 75 msgstr "" 76 77 #: includes/customizer.php:2059 78 msgid "Add a file size column in the media library list view" 76 msgid "Add a lightbox to images and galleries" 77 msgstr "" 78 79 #: includes/admin.php:295 80 msgid "Add a page slug class to the body tag" 81 msgstr "" 82 83 #: includes/admin.php:343 84 msgid "Add a wavy underline to links within the content" 79 85 msgstr "" 80 86 81 87 #: includes/admin.php:337 82 msgid "Add a lightbox to images and galleries"83 msgstr ""84 85 #: includes/customizer.php:202886 msgid ""87 "Add a lightbox to images and galleries (Ensure you set the image or gallery "88 "to link to the media file)"89 msgstr ""90 91 #: includes/customizer.php:1461 includes/admin.php:28392 msgid "Add a page slug class to the body tag"93 msgstr ""94 95 #: includes/admin.php:33196 msgid "Add a wavy underline to links within the content"97 msgstr ""98 99 #: includes/admin.php:325100 88 msgid "Add an arrow icon to identify external links within the site content" 101 89 msgstr "" 102 90 103 #: includes/customizer.php:1713 104 msgid "Add an icon to links which direct offsite" 105 msgstr "" 106 107 #: includes/customizer.php:1881 108 msgid "Add attributes" 109 msgstr "" 110 111 #: includes/customizer.php:2167 112 msgid "Add caboodle dashicons" 113 msgstr "" 114 115 #: includes/customizer.php:2151 includes/admin.php:360 91 #: includes/admin.php:372 116 92 msgid "Add dashicons" 117 93 msgstr "" … … 123 99 msgstr "" 124 100 125 #: includes/customizer.php:1622 includes/customizer.php:1653 126 #: includes/admin.php:313 101 #: includes/admin.php:325 127 102 msgid "Add support for manual excerpts to pages" 128 103 msgstr "" 129 104 130 #: includes/customizer.php:2090 131 msgid "Add support for SVG files" 132 msgstr "" 133 134 #: includes/admin.php:343 105 #: includes/admin.php:355 135 106 msgid "Add support for SVGs" 136 107 msgstr "" 137 108 138 #: includes/customizer.php:116 includes/customizer.php:132 139 #: includes/admin.php:132 109 #: includes/admin.php:139 140 110 msgid "Additional date & time formats" 141 111 msgstr "" 142 112 143 #: includes/customizer.php:1268 144 msgid "Adds a link in admin settings menu to view saved options" 145 msgstr "" 146 147 #: includes/customizer.php:720 includes/admin.php:199 113 #: includes/admin.php:211 148 114 msgid "Adds a simple notepad widget to the dashboard" 149 115 msgstr "" 150 116 151 #: includes/customizer.php:117 includes/admin.php:133 117 #: includes/admin.php:133 118 msgid "Adds a text banner above the header on all pages" 119 msgstr "" 120 121 #: includes/admin.php:140 152 122 msgid "" 153 123 "Adds new options for date and time formats in the general settings admin page" 154 124 msgstr "" 155 125 156 #: includes/customizer.php:321 157 msgid "Adjust font size (%)" 158 msgstr "" 159 160 #: includes/customizer.php:807 includes/customizer.php:823 161 #: includes/admin.php:210 126 #: includes/admin.php:222 162 127 msgid "Admin menu order" 163 msgstr ""164 165 #: includes/customizer.php:1093166 msgid "Afternoon greeting"167 128 msgstr "" 168 129 … … 171 132 msgstr "" 172 133 173 #: includes/customizer.php:646174 msgid "Also include on frontend"175 msgstr ""176 177 134 #. Description of the plugin 178 135 msgid "An agglomeration of useful functions" 179 136 msgstr "" 180 137 181 #: includes/customizer.php:2648 includes/customizer.php:2664 182 #: includes/admin.php:397 138 #: includes/admin.php:409 183 139 msgid "Anti clickjack" 184 140 msgstr "" 185 141 186 #: includes/customizer.php:2616 includes/customizer.php:2632 187 #: includes/admin.php:391 142 #: includes/admin.php:403 188 143 msgid "Anti spambot" 189 144 msgstr "" 190 145 191 #: includes/admin.php:1 46146 #: includes/admin.php:153 192 147 msgid "Apply customizations to the login page" 193 148 msgstr "" 194 149 195 #: includes/initial-values.php:56 includes/customizer.php:529 196 #: includes/modules/login-warning.php:23 150 #: includes/initial-values.php:67 includes/modules/login-warning.php:23 197 151 msgid "Authorised access only" 198 152 msgstr "" 199 153 200 #: includes/customizer.php:1446 includes/customizer.php:2455 201 msgid "Background color" 202 msgstr "" 203 204 #: includes/customizer.php:2493 205 msgid "Background hover color" 206 msgstr "" 207 208 #: includes/customizer.php:793 209 msgid "Blue" 210 msgstr "" 211 212 #: includes/customizer.php:2363 213 msgid "Border radius (%)" 214 msgstr "" 215 216 #: includes/customizer.php:2339 217 msgid "Border width (px)" 218 msgstr "" 219 220 #: includes/customizer.php:268 221 msgid "Borderless" 222 msgstr "" 223 224 #: includes/customizer.php:3102 225 msgid "Breakpoint for mobile" 226 msgstr "" 227 228 #: includes/customizer.php:3078 229 msgid "Breakpoint for tablet" 230 msgstr "" 231 232 #: includes/customizer.php:105 233 msgid "Caboodle" 234 msgstr "" 235 236 #: includes/customizer.php:1522 includes/customizer.php:1538 237 #: includes/admin.php:294 154 #: includes/admin.php:306 238 155 msgid "Classic widgets" 239 156 msgstr "" 240 157 241 #: includes/customizer.php:794 242 msgid "Coffee" 243 msgstr "" 244 245 #: includes/customizer.php:1830 includes/customizer.php:2436 246 msgid "Color" 247 msgstr "" 248 249 #: includes/customizer.php:1392 includes/admin.php:277 158 #: includes/admin.php:289 250 159 msgid "Color and background color of selected text" 251 160 msgstr "" 252 161 253 #: includes/customizer.php:232 254 msgid "Color centre" 255 msgstr "" 256 257 #: includes/customizer.php:213 258 msgid "Color left & right" 259 msgstr "" 260 261 #: includes/customizer.php:787 262 msgid "Color scheme" 263 msgstr "" 264 265 #: includes/customizer.php:976 266 msgid "Comments" 267 msgstr "" 268 269 #: includes/customizer.php:2592 270 msgid "Copyright from year" 271 msgstr "" 272 273 #: includes/admin.php:386 162 #: includes/admin.php:398 274 163 msgid "" 275 164 "Copyright years shortcode for use in footer [years start=2025 format=roman]" 276 msgstr ""277 278 #: includes/customizer.php:2556279 msgid "Copyright years shortcode to use in footer"280 msgstr ""281 282 #: includes/customizer.php:2013283 msgid "CSS Selector"284 165 msgstr "" 285 166 … … 292 173 msgstr "" 293 174 294 #: includes/admin.php:5 37175 #: includes/admin.php:549 295 176 msgid "Current settings:" 296 177 msgstr "" … … 300 181 msgstr "" 301 182 302 #: includes/admin.php:2 28183 #: includes/admin.php:240 303 184 msgid "Current WP version" 304 185 msgstr "" … … 312 193 msgstr "" 313 194 314 #: includes/customizer.php:178 315 msgid "Customize the login page" 316 msgstr "" 317 318 #: includes/customizer.php:1491 includes/customizer.php:1507 319 #: includes/admin.php:288 195 #: includes/admin.php:300 320 196 msgid "Dash spacing" 321 197 msgstr "" 322 198 323 #: includes/customizer.php:719 includes/customizer.php:735 324 #: includes/admin.php:198 199 #: includes/admin.php:210 325 200 msgid "Dashboard notes" 326 201 msgstr "" 327 202 328 #: includes/customizer.php:790 329 msgid "Default" 330 msgstr "" 331 332 #: includes/customizer.php:1202 includes/customizer.php:1218 333 #: includes/admin.php:246 203 #: includes/admin.php:258 334 204 msgid "Developer link" 335 205 msgstr "" 336 206 337 #: includes/ customizer.php:1203 includes/admin.php:247207 #: includes/admin.php:259 338 208 msgid "Developer link in admin footer and [developer] shortcode for front end" 339 209 msgstr "" 340 210 341 #: includes/customizer.php:1253 342 msgid "Developer link URL" 343 msgstr "" 344 345 #: includes/customizer.php:1236 346 msgid "Developer name" 347 msgstr "" 348 349 #: includes/initial-values.php:57 includes/customizer.php:547 350 #: includes/modules/login-warning.php:24 211 #: includes/initial-values.php:68 includes/modules/login-warning.php:24 351 212 msgid "" 352 213 "Disconnect immediately and do not attempt to log in if you are not an " … … 354 215 msgstr "" 355 216 356 #: includes/ customizer.php:570 includes/admin.php:181217 #: includes/admin.php:188 357 218 msgid "Display colored bars for visual confirmation of password input" 358 219 msgstr "" 359 220 360 #: includes/ customizer.php:405 includes/admin.php:163221 #: includes/admin.php:170 361 222 msgid "" 362 223 "Do not expose password characters when entered on iPad, iPhone or android" 363 224 msgstr "" 364 225 365 #: includes/admin.php:5 83226 #: includes/admin.php:595 366 227 msgid "Documentation" 367 msgstr ""368 369 #: includes/customizer.php:795370 msgid "Ectoplasm"371 228 msgstr "" 372 229 … … 375 232 msgstr "" 376 233 377 #: includes/ customizer.php:2617 includes/admin.php:392234 #: includes/admin.php:404 378 235 msgid "email shortcode to help protect email addresses from spambots" 379 236 msgstr "" 380 237 381 #: includes/customizer.php:2976 includes/customizer.php:2992 382 #: includes/admin.php:460 238 #: includes/admin.php:472 383 239 msgid "Embed bandcamp" 384 240 msgstr "" 385 241 386 #: includes/customizer.php:2136 387 msgid "Enable attachment pages" 388 msgstr "" 389 390 #: includes/customizer.php:1683 includes/admin.php:319 242 #: includes/admin.php:331 391 243 msgid "Enable drop down menus to work more intuitively" 392 244 msgstr "" 393 245 394 #: includes/ customizer.php:2121 includes/admin.php:354 includes/admin.php:355246 #: includes/admin.php:366 includes/admin.php:367 395 247 msgid "Enable media attachment pages" 396 248 msgstr "" 397 249 398 #: includes/admin.php:4 61250 #: includes/admin.php:473 399 251 msgid "Enable support for the [bandcamp] shortcode generated on bandcamp" 400 252 msgstr "" 401 253 402 #: includes/customizer.php:2977 403 msgid "" 404 "Enable the [bandcamp] shortcode generated by bandcamp to embed an audio " 405 "player" 406 msgstr "" 407 408 #: includes/customizer.php:470 409 msgid "Error message" 410 msgstr "" 411 412 #: includes/admin.php:663 254 #: includes/admin.php:675 413 255 msgid "Error: Nonce verification has failed" 414 256 msgstr "" 415 257 416 #: includes/customizer.php:1110 417 msgid "Evening greeting" 418 msgstr "" 419 420 #: includes/customizer.php:2713 421 msgid "Except for administrators" 422 msgstr "" 423 424 #: includes/admin.php:500 258 #: includes/admin.php:512 425 259 msgid "Export" 426 260 msgstr "" 427 261 428 #: includes/admin.php: 493262 #: includes/admin.php:505 429 263 msgid "Export caboodle settings" 430 264 msgstr "" 431 265 432 #: includes/admin.php: 495266 #: includes/admin.php:507 433 267 msgid "Export the current plugin settings as a .json file." 434 268 msgstr "" 435 269 436 #: includes/ customizer.php:2152 includes/admin.php:361270 #: includes/admin.php:373 437 271 msgid "Extend dashicons with new icons" 438 272 msgstr "" 439 273 440 #: includes/ customizer.php:485 includes/admin.php:175274 #: includes/admin.php:182 441 275 msgid "Extra text added to login form" 442 276 msgstr "" … … 446 280 msgstr "" 447 281 448 #: includes/customizer.php:2507 includes/customizer.php:2523 449 #: includes/admin.php:379 282 #: includes/admin.php:391 450 283 msgid "Fix footer" 451 284 msgstr "" 452 285 453 #: includes/ customizer.php:2508 includes/admin.php:380286 #: includes/admin.php:392 454 287 msgid "Fix the footer element to the bottom of the viewport on short pages" 455 288 msgstr "" 456 289 457 #: includes/customizer.php:302 458 msgid "Font" 459 msgstr "" 460 461 #: includes/customizer.php:2541 462 msgid "Footer element to fix" 463 msgstr "" 464 465 #: includes/customizer.php:2555 includes/admin.php:385 290 #: includes/admin.php:397 466 291 msgid "Footer years range" 467 292 msgstr "" 468 293 469 #: includes/customizer.php:749 includes/customizer.php:765 470 #: includes/admin.php:204 294 #: includes/admin.php:216 471 295 msgid "Force admin color scheme" 472 296 msgstr "" 473 297 474 #: includes/ customizer.php:750 includes/admin.php:205298 #: includes/admin.php:217 475 299 msgid "Force all users to use a specific admin color scheme" 476 300 msgstr "" 477 301 478 #: includes/customizer.php:1329 includes/customizer.php:1345 479 #: includes/admin.php:264 302 #: includes/admin.php:276 480 303 msgid "Force vertical scrollbar" 481 304 msgstr "" 482 305 483 #: includes/customizer.php:1990 484 msgid "Gap (px)" 485 msgstr "" 486 487 #: includes/initial-values.php:74 includes/customizer.php:1119 488 #: includes/modules/no-howdy.php:77 306 #: includes/initial-values.php:85 includes/modules/no-howdy.php:77 489 307 msgid "Go to bed" 490 308 msgstr "" 491 309 492 #: includes/initial-values.php:71 includes/customizer.php:1085 493 #: includes/modules/no-howdy.php:73 310 #: includes/initial-values.php:82 includes/modules/no-howdy.php:73 494 311 msgid "Good afternoon" 495 312 msgstr "" 496 313 497 #: includes/initial-values.php:72 includes/customizer.php:1102 498 #: includes/modules/no-howdy.php:75 314 #: includes/initial-values.php:83 includes/modules/no-howdy.php:75 499 315 msgid "Good evening" 500 316 msgstr "" 501 317 502 #: includes/initial-values.php:73 includes/customizer.php:1068 503 #: includes/modules/no-howdy.php:71 318 #: includes/initial-values.php:84 includes/modules/no-howdy.php:71 504 319 msgid "Good morning" 505 msgstr ""506 507 #: includes/customizer.php:1972508 msgid "Hover Color"509 msgstr ""510 511 #: includes/customizer.php:1849 includes/customizer.php:2474512 msgid "Hover color"513 320 msgstr "" 514 321 … … 517 324 msgstr "" 518 325 519 #: includes/customizer.php:1749 includes/customizer.php:2250520 msgid "Icon"521 msgstr ""522 523 #: includes/customizer.php:2291524 msgid "Icon size (px)"525 msgstr ""526 527 326 #: includes/modules/show-ids.php:9 528 327 msgid "ID" 529 328 msgstr "" 530 329 531 #: includes/admin.php:5 17330 #: includes/admin.php:529 532 331 msgid "Import" 533 332 msgstr "" 534 333 535 #: includes/admin.php:5 07334 #: includes/admin.php:519 536 335 msgid "Import caboodle settings" 537 336 msgstr "" 538 337 539 #: includes/admin.php:5 09338 #: includes/admin.php:521 540 339 msgid "Import the plugin settings from a .json file." 541 340 msgstr "" 542 341 543 #: includes/admin.php:4 87342 #: includes/admin.php:499 544 343 msgid "Import/export" 545 344 msgstr "" 546 345 547 #: includes/customizer.php:462 548 msgid "Incorrect credentials" 549 msgstr "" 550 551 #: includes/initial-values.php:53 includes/modules/login-error-message.php:13 346 #: includes/initial-values.php:63 includes/modules/login-error-message.php:13 552 347 msgid "Incorrect details input" 553 348 msgstr "" 554 349 555 #: includes/ customizer.php:322556 msgid " Increase the font size in case your font has a small x-height"557 msgstr ""558 559 #: includes/customizer.php:1712 includes/customizer.php:1729 560 #: includes/admin.php:3 24350 #: includes/admin.php:194 351 msgid "" 352 "Increase the height of the login modal that appears after session expiration" 353 msgstr "" 354 355 #: includes/admin.php:336 561 356 msgid "Indicate external links" 562 357 msgstr "" … … 566 361 msgstr "" 567 362 568 #: includes/customizer.php:1575 569 msgid "Keep posts" 570 msgstr "" 571 572 #: includes/customizer.php:791 573 msgid "Light" 574 msgstr "" 575 576 #: includes/customizer.php:2027 includes/customizer.php:2043 577 #: includes/admin.php:336 363 #: includes/admin.php:348 578 364 msgid "Lightbox" 579 365 msgstr "" 580 366 581 #: includes/ customizer.php:1157 includes/admin.php:240367 #: includes/admin.php:252 582 368 msgid "Limit revisions" 583 369 msgstr "" 584 370 585 #: includes/ customizer.php:1142 includes/admin.php:241371 #: includes/admin.php:253 586 372 msgid "Limit the number of saved revisions" 587 373 msgstr "" 588 374 589 #: includes/customizer.php:994 590 msgid "Links" 591 msgstr "" 592 593 #: includes/admin.php:253 375 #: includes/admin.php:265 594 376 msgid "" 595 377 "List the WordPress options with their values from the admin settings menu" 596 378 msgstr "" 597 379 598 #: includes/customizer.php:193 599 msgid "Login background" 600 msgstr "" 601 602 #: includes/customizer.php:177 603 msgid "Login page" 604 msgstr "" 605 606 #: includes/admin.php:145 380 #: includes/admin.php:193 381 msgid "Login modal height" 382 msgstr "" 383 384 #: includes/admin.php:152 607 385 msgid "Login page style" 608 386 msgstr "" 609 387 610 #: includes/customizer.php:484 includes/customizer.php:500 611 #: includes/admin.php:174 388 #: includes/admin.php:181 612 389 msgid "Login warning message" 613 msgstr ""614 615 #: includes/customizer.php:285616 msgid "Logo"617 390 msgstr "" 618 391 … … 621 394 msgstr "" 622 395 623 #: includes/customizer.php:404 includes/customizer.php:420 624 #: includes/admin.php:162 396 #: includes/admin.php:169 625 397 msgid "Mask password" 626 398 msgstr "" 627 399 628 #: includes/customizer.php:922 629 msgid "Media" 630 msgstr "" 631 632 #: includes/customizer.php:2120 633 msgid "Media attachment pages" 634 msgstr "" 635 636 #: includes/customizer.php:555 637 msgid "Message" 638 msgstr "" 639 640 #: includes/customizer.php:796 641 msgid "Midnight" 642 msgstr "" 643 644 #: includes/customizer.php:792 645 msgid "Modern" 646 msgstr "" 647 648 #: includes/customizer.php:660 includes/admin.php:187 400 #: includes/admin.php:199 649 401 msgid "Modify the view site link in admin to open in a new browser tab" 650 402 msgstr "" … … 654 406 msgstr "" 655 407 656 #: includes/customizer.php:1076 657 msgid "Morning greeting" 658 msgstr "" 659 660 #: includes/customizer.php:343 includes/admin.php:151 408 #: includes/admin.php:158 661 409 msgid "Must log in by username, not by email address" 662 410 msgstr "" 663 411 664 #: includes/customizer.php:1298 includes/customizer.php:1314 665 #: includes/admin.php:258 412 #: includes/admin.php:270 666 413 msgid "New plugins" 667 414 msgstr "" … … 717 464 msgstr "" 718 465 719 #: includes/customizer.php:1127 720 msgid "Night greeting" 721 msgstr "" 722 723 #: includes/customizer.php:2679 includes/customizer.php:2695 724 #: includes/admin.php:403 466 #: includes/admin.php:415 725 467 msgid "No admin bar" 726 468 msgstr "" 727 469 728 #: includes/customizer.php:2680 729 msgid "No admin bar on the front end for logged-in users" 730 msgstr "" 731 732 #: includes/customizer.php:2790 includes/customizer.php:2806 733 #: includes/admin.php:423 470 #: includes/admin.php:435 734 471 msgid "No author archives" 735 472 msgstr "" 736 473 737 #: includes/customizer.php:838 includes/customizer.php:856 738 #: includes/admin.php:216 474 #: includes/admin.php:228 739 475 msgid "No avatars" 740 476 msgstr "" 741 477 742 #: includes/customizer.php:2759 includes/customizer.php:2775 478 #: includes/admin.php:428 479 msgid "No comments" 480 msgstr "" 481 482 #: includes/admin.php:454 483 msgid "No feeds" 484 msgstr "" 485 486 #: includes/admin.php:421 487 msgid "No file editors" 488 msgstr "" 489 743 490 #: includes/admin.php:416 744 msgid "No comments"745 msgstr ""746 747 #: includes/customizer.php:2883 includes/customizer.php:2899748 #: includes/admin.php:442749 msgid "No feeds"750 msgstr ""751 752 #: includes/customizer.php:2728 includes/customizer.php:2744753 #: includes/admin.php:409754 msgid "No file editors"755 msgstr ""756 757 #: includes/admin.php:404758 491 msgid "No front end admin bar for logged in users" 759 492 msgstr "" 760 493 761 #: includes/ customizer.php:2821 includes/admin.php:429494 #: includes/admin.php:441 762 495 msgid "No generator" 763 496 msgstr "" 764 497 765 #: includes/customizer.php:2837 766 msgid "No generator tag" 767 msgstr "" 768 769 #: includes/customizer.php:1042 includes/customizer.php:1058 770 #: includes/admin.php:234 498 #: includes/admin.php:246 771 499 msgid "No howdy" 772 500 msgstr "" 773 501 502 #: includes/admin.php:164 503 msgid "No language selector on the login page" 504 msgstr "" 505 506 #: includes/admin.php:379 507 msgid "No lazy loading" 508 msgstr "" 509 774 510 #: includes/admin.php:157 775 msgid "No language selector on the login page"776 msgstr ""777 778 #: includes/customizer.php:2182 includes/customizer.php:2198779 #: includes/admin.php:367780 msgid "No lazy loading"781 msgstr ""782 783 #: includes/customizer.php:358784 msgid "No login by email"785 msgstr ""786 787 #: includes/customizer.php:342 includes/admin.php:150788 511 msgid "No login by email address" 789 512 msgstr "" 790 513 791 #: includes/customizer.php:373 includes/customizer.php:389 792 #: includes/admin.php:156 514 #: includes/admin.php:163 793 515 msgid "No login language selector" 794 516 msgstr "" … … 802 524 msgstr "" 803 525 804 #: includes/customizer.php:2945 includes/customizer.php:2961 805 #: includes/admin.php:454 526 #: includes/admin.php:466 806 527 msgid "No pingbacks" 807 528 msgstr "" 808 529 809 #: includes/customizer.php:2852 includes/customizer.php:2868 810 #: includes/admin.php:435 530 #: includes/admin.php:447 811 531 msgid "No RSD" 812 532 msgstr "" 813 533 814 #: includes/customizer.php:2914 includes/customizer.php:2930 815 #: includes/admin.php:448 534 #: includes/admin.php:460 816 535 msgid "No shortlink tags" 817 536 msgstr "" 818 537 819 #: includes/ customizer.php:2183 includes/admin.php:368538 #: includes/admin.php:380 820 539 msgid "No WordPress lazy loading" 821 msgstr ""822 823 #: includes/customizer.php:1181824 msgid "None"825 540 msgstr "" 826 541 … … 829 544 msgstr "" 830 545 831 #: includes/customizer.php:606 832 msgid "Number of bars" 833 msgstr "" 834 835 #: includes/customizer.php:1178 836 msgid "Number of Revisions to save" 837 msgstr "" 838 839 #: includes/customizer.php:797 840 msgid "Ocean" 841 msgstr "" 842 843 #: includes/customizer.php:659 includes/customizer.php:675 844 #: includes/admin.php:186 546 #: includes/admin.php:198 845 547 msgid "Open site in new tab" 846 548 msgstr "" 847 549 848 #: includes/customizer.php:2315 849 msgid "Padding (px)" 850 msgstr "" 851 852 #: includes/customizer.php:1621 includes/customizer.php:1637 853 #: includes/customizer.php:1652 includes/customizer.php:1668 854 #: includes/admin.php:312 550 #: includes/admin.php:324 855 551 msgid "Page excerpts" 856 552 msgstr "" 857 553 858 #: includes/customizer.php:1460 includes/customizer.php:1476 859 #: includes/admin.php:282 554 #: includes/admin.php:294 860 555 msgid "Page slug body class" 861 556 msgstr "" 862 557 863 #: includes/customizer.php:569 includes/customizer.php:586 864 #: includes/admin.php:180 558 #: includes/admin.php:187 865 559 msgid "Password visualisation" 866 560 msgstr "" 867 561 868 #: includes/admin.php:6 84562 #: includes/admin.php:696 869 563 msgid "Please upload a file to import" 870 564 msgstr "" 871 565 872 #: includes/admin.php:6 75566 #: includes/admin.php:687 873 567 msgid "Please upload a valid .json file" 874 568 msgstr "" … … 884 578 msgstr "" 885 579 886 #: includes/customizer.php:2411 887 msgid "Position bottom (px)" 888 msgstr "" 889 890 #: includes/customizer.php:2387 891 msgid "Position right (px)" 892 msgstr "" 893 894 #: includes/admin.php:306 580 #: includes/admin.php:318 895 581 msgid "Post thumbnails" 896 582 msgstr "" 897 583 898 #: includes/ customizer.php:1553 includes/admin.php:300584 #: includes/admin.php:312 899 585 msgid "Posts" 900 586 msgstr "" 901 587 902 #: includes/customizer.php:1572 903 msgid "Posts post type" 904 msgstr "" 905 906 #: includes/customizer.php:904 907 msgid "Posts, pages, post types" 908 msgstr "" 909 910 #: includes/customizer.php:1330 includes/admin.php:265 588 #: includes/admin.php:277 911 589 msgid "Prevent layout shift between long and short pages" 912 590 msgstr "" 913 591 914 #: includes/ customizer.php:2946 includes/admin.php:455592 #: includes/admin.php:467 915 593 msgid "Prevent self pingbacks" 916 594 msgstr "" 917 595 918 #: includes/ customizer.php:2649 includes/admin.php:398596 #: includes/admin.php:410 919 597 msgid "Prevent the site from loading inside an external frame or iframe" 920 598 msgstr "" … … 926 604 msgstr "" 927 605 928 #: includes/customizer.php:146 includes/customizer.php:162 929 #: includes/admin.php:139 606 #: includes/admin.php:146 930 607 msgid "Private site" 931 608 msgstr "" 932 609 933 #: includes/ customizer.php:808 includes/admin.php:211610 #: includes/admin.php:223 934 611 msgid "Rearranges admin menu items: dashboard, pages, posts, media" 935 612 msgstr "" 936 613 937 #: includes/ customizer.php:2791 includes/admin.php:424614 #: includes/admin.php:436 938 615 msgid "Redirect requests for author archives to the homepage" 939 616 msgstr "" 940 617 941 #: includes/ customizer.php:147 includes/admin.php:140618 #: includes/admin.php:147 942 619 msgid "Redirect unauthenticated visitors to the login page" 943 620 msgstr "" 944 621 945 #: includes/ customizer.php:1554 includes/admin.php:301622 #: includes/admin.php:313 946 623 msgid "Remove or rename the posts post type" 947 624 msgstr "" 948 625 949 #: includes/customizer.php:1577 950 msgid "Remove posts" 951 msgstr "" 952 953 #: includes/customizer.php:839 includes/admin.php:217 626 #: includes/admin.php:229 954 627 msgid "Remove support for gravatars or user avatars" 955 628 msgstr "" 956 629 957 #: includes/customizer.php:374 958 msgid "Remove the language selector from the login page" 959 msgstr "" 960 961 #: includes/customizer.php:2853 includes/admin.php:436 630 #: includes/admin.php:448 962 631 msgid "Remove the Really Simple Discovery endpoint" 963 632 msgstr "" 964 633 965 #: includes/ customizer.php:2884 includes/admin.php:443634 #: includes/admin.php:455 966 635 msgid "Remove the RSS, RDF and atom feeds" 967 636 msgstr "" 968 637 969 #: includes/ customizer.php:2915 includes/admin.php:449638 #: includes/admin.php:461 970 639 msgid "Remove the shortlink header tags" 971 640 msgstr "" 972 641 973 #: includes/ customizer.php:2822 includes/admin.php:430642 #: includes/admin.php:442 974 643 msgid "Remove the WordPress generator meta tag" 975 644 msgstr "" 976 645 977 #: includes/ customizer.php:2760 includes/admin.php:417646 #: includes/admin.php:429 978 647 msgid "Removes support for comments" 979 648 msgstr "" 980 649 981 #: includes/ customizer.php:2729 includes/admin.php:410650 #: includes/admin.php:422 982 651 msgid "Removes the theme and plugin editors from admin" 983 652 msgstr "" 984 653 985 #: includes/customizer.php:1576 986 msgid "Rename posts to news" 987 msgstr "" 988 989 #: includes/customizer.php:1043 includes/admin.php:235 654 #: includes/admin.php:247 990 655 msgid "" 991 656 "Replace the howdy greeting with a salutation appropriate to the time of day" 992 657 msgstr "" 993 658 994 #: includes/ customizer.php:1492 includes/admin.php:289659 #: includes/admin.php:301 995 660 msgid "Replace the spaces around en-dashes & em-dashes with hairspaces" 996 661 msgstr "" 997 662 998 #: includes/ customizer.php:690 includes/admin.php:193663 #: includes/admin.php:205 999 664 msgid "" 1000 665 "Replace the WP logo in the admin toolbar with the site icon if one is " … … 1002 667 msgstr "" 1003 668 1004 #: includes/ customizer.php:689 includes/admin.php:192669 #: includes/admin.php:204 1005 670 msgid "Replace WordPress logo" 1006 671 msgstr "" 1007 672 1008 #: includes/customizer.php:705 1009 msgid "Replace WP logo" 1010 msgstr "" 1011 1012 #: includes/customizer.php:3043 includes/admin.php:475 673 #: includes/admin.php:487 1013 674 msgid "Responsive breakpoints" 1014 675 msgstr "" 1015 676 1016 #: includes/ customizer.php:1523 includes/admin.php:295677 #: includes/admin.php:307 1017 678 msgid "Restores the previous (classic) widgets settings page" 1018 679 msgstr "" 1019 680 1020 #: includes/customizer.php:1141 1021 msgid "Revisions" 1022 msgstr "" 1023 1024 #: includes/customizer.php:630 1025 msgid "Salt (random when blank)" 1026 msgstr "" 1027 1028 #: includes/customizer.php:1360 includes/customizer.php:1376 1029 #: includes/admin.php:270 681 #: includes/admin.php:282 1030 682 msgid "Scroll to anchor" 1031 683 msgstr "" 1032 684 1033 #: includes/customizer.php:2213 includes/customizer.php:2229 1034 #: includes/admin.php:373 685 #: includes/admin.php:385 1035 686 msgid "Scroll to top" 1036 687 msgstr "" … … 1045 696 msgstr "" 1046 697 1047 #: includes/ customizer.php:3012 includes/admin.php:469698 #: includes/admin.php:481 1048 699 msgid "Search placeholder" 1049 700 msgstr "" 1050 701 1051 #: includes/customizer.php:3028 1052 msgid "Search placeholder text" 1053 msgstr "" 1054 1055 #: includes/customizer.php:3059 1056 msgid "Set breakpoints" 1057 msgstr "" 1058 1059 #: includes/customizer.php:3044 includes/admin.php:476 702 #: includes/admin.php:488 1060 703 msgid "Set custom mobile and tablet breakpoints for the Astra theme" 1061 704 msgstr "" … … 1065 708 msgstr "" 1066 709 1067 #: includes/customizer.php:1010 1068 msgid "Show current WP version" 1069 msgstr "" 1070 1071 #: includes/admin.php:348 710 #: includes/admin.php:360 1072 711 msgid "Show file size in media library" 1073 712 msgstr "" 1074 713 1075 #: includes/customizer.php:870 includes/customizer.php:886 1076 #: includes/admin.php:222 714 #: includes/admin.php:234 1077 715 msgid "Show IDs" 1078 716 msgstr "" 1079 717 1080 #: includes/customizer.php:2058 includes/customizer.php:2074 1081 msgid "Show media file size" 1082 msgstr "" 1083 1084 #: includes/customizer.php:1934 1085 msgid "Show only when hovered" 1086 msgstr "" 1087 1088 #: includes/customizer.php:1267 includes/customizer.php:1283 1089 #: includes/admin.php:252 718 #: includes/admin.php:264 1090 719 msgid "Show settings" 1091 720 msgstr "" 1092 721 1093 #: includes/ customizer.php:1011 includes/admin.php:229722 #: includes/admin.php:241 1094 723 msgid "" 1095 724 "Show the current WordPress version in the admin footer when an upgrade is " … … 1097 726 msgstr "" 1098 727 1099 #: includes/customizer.php:871 1100 msgid "" 1101 "Show the ID for posts, pages, custom post types, taxonomies, media and user " 1102 "IDs in the admin pages" 1103 msgstr "" 1104 1105 #: includes/admin.php:223 728 #: includes/admin.php:235 1106 729 msgid "" 1107 730 "Show the ID for posts, pages, custom post types, taxonomies, media and users" 1108 731 msgstr "" 1109 732 1110 #: includes/customizer.php:1591 1111 msgid "Show the thumbnail of the featured image in the admin posts page" 1112 msgstr "" 1113 1114 #: includes/customizer.php:1590 includes/customizer.php:1606 1115 msgid "Show thumbnails in admin" 1116 msgstr "" 1117 1118 #: includes/customizer.php:1026 1119 msgid "Show WordPress version" 1120 msgstr "" 1121 1122 #: includes/customizer.php:452 1123 msgid "Single error message" 1124 msgstr "" 1125 1126 #: includes/customizer.php:436 includes/admin.php:168 733 #: includes/admin.php:175 1127 734 msgid "Single login error message" 1128 735 msgstr "" … … 1132 739 msgstr "" 1133 740 1134 #: includes/customizer.php:1781 1135 msgid "Size (px)" 1136 msgstr "" 1137 1138 #: includes/customizer.php:1361 includes/admin.php:271 741 #: includes/admin.php:283 1139 742 msgid "Smoothly animate when clicking a link targeting an anchored position" 1140 743 msgstr "" 1141 744 1142 #: includes/customizer.php:798 1143 msgid "Sunrise" 1144 msgstr "" 1145 1146 #: includes/customizer.php:2089 includes/customizer.php:2105 1147 #: includes/admin.php:342 745 #: includes/admin.php:354 1148 746 msgid "SVG support" 1149 747 msgstr "" 1150 748 1151 #: includes/customizer.php:940 1152 msgid "Taxonomies" 1153 msgstr "" 1154 1155 #: includes/customizer.php:251 includes/customizer.php:520 1156 #: includes/customizer.php:1427 1157 msgid "Text color" 1158 msgstr "" 1159 1160 #: includes/customizer.php:1391 includes/customizer.php:1407 1161 #: includes/admin.php:276 749 #: includes/admin.php:288 1162 750 msgid "Text selection" 1163 751 msgstr "" 1164 752 1165 #: includes/admin.php:7 28753 #: includes/admin.php:740 1166 754 msgid "The caboodle settings have been imported" 1167 755 msgstr "" 1168 756 1169 #: includes/customizer.php:303 1170 msgid "The name of a google font" 1171 msgstr "" 1172 1173 #: includes/customizer.php:437 includes/admin.php:169 757 #: includes/admin.php:176 1174 758 msgid "The same message for wrong username or wrong password" 1175 759 msgstr "" 1176 760 1177 #: includes/customizer.php:537 1178 msgid "Title" 1179 msgstr "" 1180 1181 #: includes/customizer.php:1953 1182 msgid "Underline Color" 1183 msgstr "" 1184 1185 #: includes/customizer.php:1190 1186 msgid "Unlimited" 1187 msgstr "" 1188 1189 #: includes/customizer.php:1682 includes/customizer.php:1698 1190 #: includes/admin.php:318 761 #: includes/admin.php:330 1191 762 msgid "Unlink parent menu items" 1192 763 msgstr "" 1193 764 1194 #: includes/ customizer.php:3013 includes/admin.php:470765 #: includes/admin.php:482 1195 766 msgid "Use translatable default text in Astra theme header cover search" 1196 767 msgstr "" … … 1201 772 msgstr "" 1202 773 1203 #: includes/customizer.php:9581204 msgid "Users"1205 msgstr ""1206 1207 #: includes/customizer.php:18051208 msgid "Vertical position (px)"1209 msgstr ""1210 1211 774 #: includes/modules/posts-rename-news.php:50 1212 775 msgid "View news" … … 1218 781 msgstr "" 1219 782 1220 #: includes/customizer.php:1897 includes/customizer.php:1915 1221 #: includes/admin.php:330 783 #: includes/admin.php:342 1222 784 msgid "Wavy links" 1223 msgstr ""1224 1225 #: includes/customizer.php:18981226 msgid "Wavy underline for links"1227 785 msgstr "" 1228 786 … … 1233 791 msgstr "" 1234 792 1235 #: includes/customizer.php:2571 1236 msgid "Years shortcode" 1237 msgstr "" 1238 1239 #: includes/admin.php:571 793 #: includes/admin.php:583 1240 794 msgid "" 1241 795 "Yikes! The cc_caboodle option containing the array of setting values does " -
cubecolour-caboodle/trunk/readme.txt
r3309462 r3312214 4 4 Requires: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 1. 4.26 Stable tag: 1.5.0 7 7 Donate link: https://cubecolour.co.uk/wp 8 8 Requires PHP: 7.4 … … 25 25 ## Modules 26 26 27 ### Above header banner 28 Adds a text banner above the site header on all pages 29 27 30 ### Additional date and time formats 28 31 Adds new options for date and time formats in the general settings admin page … … 51 54 ### Password visualization 52 55 Visually confirm you have input the correct password before pressing the submit button by checking a pattern of coloured bars based on a hash of your input 56 57 ### Increase login modal height 58 Increase the height of the login modal that appears after session expiration 53 59 54 60 ### Open site in new tab … … 238 244 239 245 ## Changelog 246 247 ### 1.5.0 248 249 * 'Above header banner' module 250 * 'Increase login modal height' module 240 251 241 252 ### 1.4.2
Note: See TracChangeset
for help on using the changeset viewer.