Changeset 3277296
- Timestamp:
- 04/19/2025 06:29:01 PM (8 months ago)
- Location:
- cubecolour-caboodle
- Files:
-
- 1 added
- 12 edited
-
tags/1.3.2/includes/modules/anti-clickjack.php (modified) (1 diff)
-
trunk/css/admin.css (modified) (1 diff)
-
trunk/cubecolour-caboodle.php (modified) (5 diffs)
-
trunk/includes/admin.php (modified) (5 diffs)
-
trunk/includes/customizer.php (modified) (1 diff)
-
trunk/includes/initial-values.php (modified) (1 diff)
-
trunk/includes/modules/anti-clickjack.php (modified) (1 diff)
-
trunk/includes/modules/no-comments.php (added)
-
trunk/languages/cubecolour-caboodle-en_GB.l10n.php (modified) (1 diff)
-
trunk/languages/cubecolour-caboodle-en_GB.mo (modified) (previous)
-
trunk/languages/cubecolour-caboodle-en_GB.po (modified) (33 diffs)
-
trunk/languages/cubecolour-caboodle.pot (modified) (30 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cubecolour-caboodle/tags/1.3.2/includes/modules/anti-clickjack.php
r3277289 r3277296 6 6 */ 7 7 function cc_caboodle_anti_clickjack_header() { 8 if ( !is_customize_preview() ) {9 header( "X-Frame-Options: SAMEORIGIN" );10 header( "Content-Security-Policy: frame-ancestors 'none'" );8 // Allow framing in specific admin contexts 9 if ( is_customize_preview() || is_admin() ) { 10 return; 11 11 } 12 13 // Allow same-origin framing, block others 14 header( "X-Frame-Options: SAMEORIGIN" ); 15 header( "Content-Security-Policy: frame-ancestors 'self'" ); 12 16 } 13 17 add_action( "send_headers", "cc_caboodle_anti_clickjack_header" ); -
cubecolour-caboodle/trunk/css/admin.css
r3116538 r3277296 17 17 .cubecolour-minilogo { 18 18 text-decoration: none; 19 } 20 21 .cubecolour-minilogo:before { 22 display: inline-block; 23 content: ''; 24 position: relative; 25 top: 6px; 26 display: inline-block; 27 margin-right: 2px; 28 width: 18px; 29 height: 18px; 30 background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e10a92' fill-rule='evenodd'%3E%3Cpath transform='rotate(20 9 9)' d='M6.662 6.662H11.337V11.337H6.662z'/%3E%3Cpath d='M0 4.803L13.197 0 18 13.197 4.803 18 0 4.803zm4.33-.473v9.363h9.363V4.33H4.33z'/%3E%3C/g%3E%3C/svg%3E"); 19 color: #666; 20 } 21 22 @keyframes changeColor { 23 0% { fill: #e10a92; } 24 25% { fill: #f29b30; } 25 50% { fill: #34c38f; } 26 75% { fill: #007bff; } 27 100% { fill: #e10a92; } 28 } 29 30 .cubecolour-minilogo svg { 31 position: relative; 32 top: 5px; 33 } 34 35 .cubecolour-minilogo svg g { 36 animation: changeColor 5s infinite; 31 37 } 32 38 -
cubecolour-caboodle/trunk/cubecolour-caboodle.php
r3276931 r3277296 5 5 Description: An agglomeration of useful functions 6 6 Author: cubecolour 7 Version: 1.3. 17 Version: 1.3.2 8 8 License: GPLv2 or later 9 9 Text Domain: cubecolour-caboodle … … 43 43 * 44 44 */ 45 define( 'CC_CABOODLE_PLUGIN_VERSION', '1.3. 1' );45 define( 'CC_CABOODLE_PLUGIN_VERSION', '1.3.2' ); 46 46 define( 'CC_CABOODLE_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 47 47 define( 'CC_CABOODLE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); … … 166 166 167 167 /**********************\ 168 * *168 * * 169 169 * CABOODLE MODULES * 170 * *170 * * 171 171 \**********************/ 172 172 … … 206 206 if ( cc_caboodle( 'private_site', '' ) == '1' ) { 207 207 include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/private-site.php' ); 208 } 209 210 /** 211 * Just-in-time preloading. preloads a page right before a user clicks on it by adding the Instant page script as a module 212 * 213 */ 214 if ( cc_caboodle( 'preloading', '' ) == '1' ) { 215 include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/preloading.php' ); 208 216 } 209 217 … … 507 515 508 516 /** 517 * No comments 518 * 519 */ 520 if ( cc_caboodle( 'no_comments', '' ) == '1' ) { 521 include_once( CC_CABOODLE_PLUGIN_PATH . 'includes/modules/no-comments.php' ); 522 } 523 524 /** 509 525 * No author archives 510 526 * -
cubecolour-caboodle/trunk/includes/admin.php
r3276144 r3277296 83 83 } 84 84 85 $cclogo = '<span class="cubecolour-minilogo"> 86 <svg width="18" height="18" xmlns="http://www.w3.org/2000/svg"> 87 <g fill="#e10a92" fill-rule="evenodd"> 88 <path transform="rotate(20 9 9)" d="M6.662 6.662H11.337V11.337H6.662z" /> 89 <path d="M0 4.803L13.197 0 18 13.197 4.803 18 0 4.803zm4.33-.473v9.363h9.363V4.33z" /> 90 </g> 91 </svg> 92 </span>'; 93 94 $allowed_tags = array( 95 'span' => array( 96 'class' => array(), 97 ), 98 'svg' => array( 99 'width' => array(), 100 'height' => array(), 101 'xmlns' => array(), 102 ), 103 'g' => array( 104 'fill' => array(), 105 'fill-rule' => array(), 106 ), 107 'path' => array( 108 'transform' => array(), 109 'd' => array(), 110 ), 111 ); 85 112 86 113 ?> 87 114 <div class="wrap"> 88 115 <h2>Caboodle</h2> 89 90 <div class="devlink"><a href="https://cubecolour.co.uk/wp" class="cubecolour-minilogo">cubecolour</a></div> 116 117 <div class="devlink"> 118 <a href="https://cubecolour.co.uk/wp" class="cubecolour-minilogo"><?php echo wp_kses($cclogo, $allowed_tags); ?>cubecolour</a> 119 </div> 120 91 121 92 122 <div class="admintabs"> … … 363 393 </a> 364 394 </li> 395 396 <li class="<?php cc_caboodle_module_classes( 'no_comments' ) ?>"> 397 <a class="module-content" href="<?php cc_caboodle_module_url( 'no_comments' ) ?>"> 398 <h2><?php esc_html_e( 'No comments', 'cubecolour-caboodle' ); ?></h2> 399 <p><?php esc_html_e( 'Removes support for comments', 'cubecolour-caboodle' ); ?></p> 400 </a> 401 </li> 402 365 403 <li class="<?php cc_caboodle_module_classes( 'no_author_archives' ) ?>"> 366 404 <a class="module-content" href="<?php cc_caboodle_module_url( 'no_author_archives' ) ?>"> … … 587 625 588 626 if ( isset( $_POST['cc_caboodle_export_nonce'] ) ) { 589 // Unslash and sanitize the nonce590 $nonce = sanitize_text_field( wp_unslash( $_POST['cc_caboodle_export_nonce'] ) );627 // Unslash and sanitize the nonce 628 $nonce = sanitize_text_field( wp_unslash( $_POST['cc_caboodle_export_nonce'] ) ); 591 629 592 // Verify the nonce593 if ( ! wp_verify_nonce( $nonce, 'cc_caboodle_export_nonce' ) ) {594 return;595 }630 // Verify the nonce 631 if ( ! wp_verify_nonce( $nonce, 'cc_caboodle_export_nonce' ) ) { 632 return; 633 } 596 634 } 597 635 … … 624 662 function cc_caboodle_process_settings_import() { 625 663 626 if( empty( $_POST['cc_caboodle_action'] ) || 'import_settings' != $_POST['cc_caboodle_action'] )627 return;628 629 // Check if nonce is set and valid630 if( ! isset( $_POST['cc_caboodle_import_nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['cc_caboodle_import_nonce'] ) ), 'cc_caboodle_import_nonce' ) )631 wp_die( esc_html__( 'Error: Nonce verification has failed', 'cubecolour-caboodle' ) );632 633 if( ! current_user_can( 'manage_options' ) )634 return;635 636 // Check if import file name is set637 if ( isset( $_FILES['import_file']['name'] ) ) {638 // Unslash and sanitize the file name639 $import_file_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['name'] ) );640 $extension = end( explode( '.', $import_file_name ) );641 642 if( $extension != 'json' ) {643 wp_die( esc_html__( 'Please upload a valid .json file', 'cubecolour-caboodle' ) );644 }645 646 // Check if import file tmp_name is set647 if ( isset( $_FILES['import_file']['tmp_name'] ) ) {648 // Unslash and sanitize the file tmp_name649 $import_file_tmp_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['tmp_name'] ) );650 651 if( empty( $import_file_tmp_name ) ) {652 wp_die( esc_html__( 'Please upload a file to import', 'cubecolour-caboodle' ) );653 }654 655 // Use WordPress Filesystem API656 WP_Filesystem();657 global $wp_filesystem;658 659 $import = json_decode( $wp_filesystem->get_contents( $import_file_tmp_name ), true );660 661 // Pass the array values through the sanitize function (in helper-functions.php)662 $import = cc_caboodle_sanitize_array_values( $import );663 664 // Get list of expected keys665 $keys_list = cc_caboodle_initial_values();666 667 // Step over all items in the import array and delete any elements where the corresponding key does not exist in the keys list from the initial values668 foreach ( $import as $key => $val ) {669 670 if ( !array_key_exists( $key, $keys_list ) ) {671 unset( $import[$key] );672 }673 }674 675 // Reorder the array by keys in ascending alphabetical order676 ksort( $import );677 678 update_option( 'cc_caboodle', cc_caboodle_sanitize_array_values( $import ) );679 680 wp_safe_redirect( admin_url( 'options-general.php?page=caboodle&import=true&_wpnonce=' . wp_create_nonce('cc_caboodle_import_nonce') ) );681 682 exit;683 }684 }664 if( empty( $_POST['cc_caboodle_action'] ) || 'import_settings' != $_POST['cc_caboodle_action'] ) 665 return; 666 667 // Check if nonce is set and valid 668 if( ! isset( $_POST['cc_caboodle_import_nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['cc_caboodle_import_nonce'] ) ), 'cc_caboodle_import_nonce' ) ) 669 wp_die( esc_html__( 'Error: Nonce verification has failed', 'cubecolour-caboodle' ) ); 670 671 if( ! current_user_can( 'manage_options' ) ) 672 return; 673 674 // Check if import file name is set 675 if ( isset( $_FILES['import_file']['name'] ) ) { 676 // Unslash and sanitize the file name 677 $import_file_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['name'] ) ); 678 $extension = end( explode( '.', $import_file_name ) ); 679 680 if( $extension != 'json' ) { 681 wp_die( esc_html__( 'Please upload a valid .json file', 'cubecolour-caboodle' ) ); 682 } 683 684 // Check if import file tmp_name is set 685 if ( isset( $_FILES['import_file']['tmp_name'] ) ) { 686 // Unslash and sanitize the file tmp_name 687 $import_file_tmp_name = sanitize_text_field( wp_unslash( $_FILES['import_file']['tmp_name'] ) ); 688 689 if( empty( $import_file_tmp_name ) ) { 690 wp_die( esc_html__( 'Please upload a file to import', 'cubecolour-caboodle' ) ); 691 } 692 693 // Use WordPress Filesystem API 694 WP_Filesystem(); 695 global $wp_filesystem; 696 697 $import = json_decode( $wp_filesystem->get_contents( $import_file_tmp_name ), true ); 698 699 // Pass the array values through the sanitize function (in helper-functions.php) 700 $import = cc_caboodle_sanitize_array_values( $import ); 701 702 // Get list of expected keys 703 $keys_list = cc_caboodle_initial_values(); 704 705 // Step over all items in the import array and delete any elements where the corresponding key does not exist in the keys list from the initial values 706 foreach ( $import as $key => $val ) { 707 708 if ( !array_key_exists( $key, $keys_list ) ) { 709 unset( $import[$key] ); 710 } 711 } 712 713 // Reorder the array by keys in ascending alphabetical order 714 ksort( $import ); 715 716 update_option( 'cc_caboodle', cc_caboodle_sanitize_array_values( $import ) ); 717 718 wp_safe_redirect( admin_url( 'options-general.php?page=caboodle&import=true&_wpnonce=' . wp_create_nonce('cc_caboodle_import_nonce') ) ); 719 720 exit; 721 } 722 } 685 723 } 686 724 add_action( 'admin_init', 'cc_caboodle_process_settings_import' ); … … 705 743 */ 706 744 if ( isset( $_GET['import'] ) && ( 'true' === $_GET['import'] ) && isset( $_GET['_wpnonce'] ) ) { 707 // Unslash and sanitize the nonce708 $nonce = sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) );709 710 // Verify the nonce711 if ( wp_verify_nonce( $nonce, 'cc_caboodle_import_nonce' ) ) {712 add_action( 'admin_notices', 'cc_caboodle_import_success_notice' );713 }745 // Unslash and sanitize the nonce 746 $nonce = sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ); 747 748 // Verify the nonce 749 if ( wp_verify_nonce( $nonce, 'cc_caboodle_import_nonce' ) ) { 750 add_action( 'admin_notices', 'cc_caboodle_import_success_notice' ); 751 } 714 752 } -
cubecolour-caboodle/trunk/includes/customizer.php
r3276144 r3277296 2632 2632 2633 2633 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 2634 * No comments section 2635 * 2636 */ 2637 $wp_customize->add_section( 'cc_caboodle_no_comments_section', 2638 array( 2639 'title' => esc_html__( 'No comments', 'cubecolour-caboodle' ), 2640 'description' => esc_html__( 'Removes support for comments', 'cubecolour-caboodle' ), 2641 'panel' => 'cc_caboodle_panel' 2642 ) 2643 ); 2644 2645 $wp_customize->add_setting('cc_caboodle[no_comments]', array( 2646 'default' => false, 2647 'sanitize_callback' => 'cc_toggle_control_sanitize', 2648 'type' => 'option', 2649 'transport' => 'postMessage', 2650 )); 2651 $wp_customize->add_control( new Cubecolour_Toggle_Control( 2652 $wp_customize, 2653 'cc_caboodle_no_comments', 2654 array( 2655 'label' => esc_html__( 'No comments', 'cubecolour-caboodle' ), 2656 'type' => 'checkbox', 2657 'section' => 'cc_caboodle_no_comments_section', 2658 'settings' => 'cc_caboodle[no_comments]', 2659 ) 2660 ) 2661 ); 2662 2663 2664 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 2634 2665 * No author archives section 2635 2666 * -
cubecolour-caboodle/trunk/includes/initial-values.php
r3276144 r3277296 66 66 'no_author_archives' => '', 67 67 'no_avatars' => '', 68 'no_comments' => '', 68 69 'no_feeds' => '', 69 70 'no_file_editor' => '', -
cubecolour-caboodle/trunk/includes/modules/anti-clickjack.php
r3116538 r3277296 6 6 */ 7 7 function cc_caboodle_anti_clickjack_header() { 8 if ( !is_customize_preview() ) {9 header( "X-Frame-Options: SAMEORIGIN" );10 header( "Content-Security-Policy: frame-ancestors 'none'" );8 // Allow framing in specific admin contexts 9 if ( is_customize_preview() || is_admin() ) { 10 return; 11 11 } 12 13 // Allow same-origin framing, block others 14 header( "X-Frame-Options: SAMEORIGIN" ); 15 header( "Content-Security-Policy: frame-ancestors 'self'" ); 12 16 } 13 17 add_action( "send_headers", "cc_caboodle_anti_clickjack_header" ); -
cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.l10n.php
r3276144 r3277296 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-04-1 7 17:58+0000','x-generator'=>'Loco https://localise.biz/','x-domain'=>'cubecolour-caboodle','language'=>'en_GB','plural-forms'=>'nplurals=2; plural=n != 1;','x-loco-version'=>'2.6.14; wp-6.7.1','messages'=>['%1$s %2$s'=>'%1$s %2$s','%1$s <a href="%2$s">%3$s</a>'=>'%1$s <a href="%2$s">%3$s</a>','%1$s <a target="_blank" href="%2$s">%3$s</a>'=>'%1$s <a target="_blank" href="%2$s">%3$s</a>','%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>'=>'%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>','%1$s, %2$s'=>'%1$s, %2$s','Add "New" & "Beta" links to the add plugins page'=>'Add "New" & "Beta" links to the add plugins page','Add %1$s and %2$s attributes to external links'=>'Add %1$s and %2$s attributes to external links','Add a dynamic scroll to top button in the website footer'=>'Add a dynamic scroll to top button in the website footer','Add a featured image column in the admin posts page'=>'Add a featured image column in the admin posts page','Add a file size column in the media library'=>'Add a file size column in the media library','Add a file size column in the media library list view'=>'Add a file size column in the media library list view','Add a lightbox to images and galleries'=>'Add a lightbox to images and galleries','Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)'=>'Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)','Add a page slug class to the body tag'=>'Add a page slug class to the body tag','Add a wavy underline to links within the content'=>'Add a wavy underline to links within the content','Add an arrow icon to identify external links within the site content'=>'Add an arrow icon to identify external links within the site content','Add an icon to links which direct offsite'=>'Add an icon to links which direct offsite','Add attributes'=>'Add attributes','Add caboodle dashicons'=>'Add caboodle dashicons','Add dashicons'=>'Add dashicons','Add news article'=>'Add news article','Add some simple styles to forms created with the gravity forms plugin'=>'Add some simple styles to forms created with the gravity forms plugin','Add support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Additional date & time formats'=>'Additional date & time formats','Adds a link in admin settings menu to view saved options'=>'Adds a link in admin settings menu to view saved options','Adds a simple notepad widget to the dashboard'=>'Adds a simple notepad widget to the dashboard','Adds new options for date and time formats in the general settings admin page'=>'Adds new options for date and time formats in the general settings admin page','Adjust font size (%)'=>'Adjust font size (%)','Admin menu order'=>'Admin menu order','Afternoon greeting'=>'Afternoon greeting','All news articles'=>'All news articles','Also include on frontend'=>'Also include on frontend','An agglomeration of useful functions'=>'An agglomeration of useful functions','Anti clickjack'=>'Anti clickjack','Anti spambot'=>'Anti spambot','Apply customizations to the login page'=>'Apply customisations to the login page','Authorised access only'=>'Authorised access only','Background color'=>'Background colour','Background hover color'=>'Background hover colour','Border color'=>'Border colour','Border color: focus'=>'Border colour: focus','Border color: hover'=>'Border colour: hover','Border radius (%)'=>'Border radius (%)','Border width (px)'=>'Border width (px)','Borderless'=>'Borderless','Breakpoint for mobile'=>'Breakpoint for mobile','Breakpoint for tablet'=>'Breakpoint for tablet','Caboodle'=>'Caboodle','Classic widgets'=>'Classic widgets','Color'=>'Color','Color and background color of selected text'=>'Colour and background colour of selected text','Color centre'=>'Colour centre','Color left & right'=>'Colour left & right','Comments'=>'Comments','Copyright from year'=>'Copyright from year','Copyright years shortcode for use in footer [years start=2025 format=roman]'=>'Copyright years shortcode for use in footer [years start=2025 format=roman]','Copyright years shortcode to use in footer'=>'Copyright years shortcode to use in footer','CSS Selector'=>'CSS Selector','cubecolour'=>'cubecolour','Cubecolour Caboodle'=>'Cubecolour Caboodle','Current settings:'=>'Current settings:','Current Version'=>'Current Version','Current WP version'=>'Current WP version','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','Customize the login page'=>'Customise the login page','Dash spacing'=>'Dash spacing','Dashboard notes'=>'Dashboard notes','Developer link'=>'Developer link','Developer link in admin footer and [developer] shortcode for front end'=>'Developer link in admin footer and [developer] shortcode for front end','Developer link URL'=>'Developer link URL','Developer name'=>'Developer name','Disconnect immediately and do not attempt to log in if you are not an authorised user'=>'Disconnect immediately and do not attempt to log in if you are not an authorised user','Display colored bars for visual confirmation of password input'=>'Display coloured bars for visual confirmation of password input','Do not expose password characters when entered on iPad, iPhone or android'=>'Do not expose password characters when entered on iPad, iPhone or android','Documentation'=>'Documentation','Edit news'=>'Edit news','email shortcode to help protect email addresses from spambots'=>'email shortcode to help protect email addresses from spambots','Embed bandcamp'=>'Embed bandcamp','Enable attachment pages'=>'Enable attachment pages','Enable drop down menus to work more intuitively'=>'Enable drop down menus to work more intuitively','Enable media attachment pages'=>'Enable media attachment pages','Enable support for the [bandcamp] shortcode generated on bandcamp'=>'Enable support for the [bandcamp] shortcode generated on bandcamp','Enable the [bandcamp] shortcode generated by bandcamp to embed an audio player'=>'Enable the [bandcamp] shortcode generated by bandcamp to embed an audio player','Error message'=>'Error message','Error: Nonce verification has failed'=>'Error: Nonce verification has failed','Evening greeting'=>'Evening greeting','Except for administrators'=>'Except for administrators','Export'=>'Export','Export caboodle settings'=>'Export caboodle settings','Export the current plugin settings as a .json file.'=>'Export the current plugin settings as a .json file.','Extend dashicons with new icons'=>'Extend dashicons with new icons','Extra text added to login form'=>'Extra text added to login form','File Size'=>'File Size','Fix footer'=>'Fix footer','Fix the footer element to the bottom of the viewport on short pages'=>'Fix the footer element to the bottom of the viewport on short pages','Flag width px'=>'Flag width px','Font'=>'Font','Footer element to fix'=>'Footer element to fix','Footer years range'=>'Footer years range','Force vertical scrollbar'=>'Force vertical scrollbar','Gap (px)'=>'Gap (px)','Go to bed'=>'Go to bed','Good afternoon'=>'Good afternoon','Good evening'=>'Good evening','Good morning'=>'Good morning','Gravity forms'=>'Gravity forms','Gravity forms style'=>'Gravity forms style','Grayscale %'=>'Grayscale %','Hover Color'=>'Hover Color','Hover color'=>'Hover colour','https://cubecolour.co.uk/'=>'https://cubecolour.co.uk/','Icon'=>'Icon','Icon size (px)'=>'Icon size (px)','ID'=>'ID','Import'=>'Import','Import caboodle settings'=>'Import caboodle settings','Import the plugin settings from a .json file.'=>'Import the plugin settings from a .json file.','Import/export'=>'Import/export','Incorrect credentials'=>'Incorrect credentials','Incorrect details input'=>'Incorrect details input','Increase the font size in case your font has a small x-height'=>'Increase the font size in case your font has a small x-height','Indicate external links'=>'Indicate external links','Invalid nonce. Please refresh the page and try again.'=>'Invalid nonce. Please refresh the page and try again.','Keep posts'=>'Keep posts','Lightbox'=>'Lightbox','Limit revisions'=>'Limit revisions','Limit the number of saved revisions'=>'Limit the number of saved revisions','Links'=>'Links','List the WordPress options with their values from the admin settings menu'=>'List the WordPress options with their values from the admin settings menu','Login background'=>'Login background','Login page'=>'Login page','Login page style'=>'Login page style','Login warning message'=>'Login warning message','Logo'=>'Logo','M j, Y @ G:i'=>'M j, Y @ G:i','Mask password'=>'Mask password','Media'=>'Media','Media attachment pages'=>'Media attachment pages','Message'=>'Message','Modify the view site link in admin to open in a new browser tab'=>'Modify the view site link in admin to open in a new browser tab','Modules'=>'Modules','Morning greeting'=>'Morning greeting','Must log in by username, not by email address'=>'Must log in by username, not by email address','New plugins'=>'New plugins','News'=>'News','News article'=>'News article','News article published.'=>'News article published.','News article restored to revision from'=>'News article restored to revision from','News article saved.'=>'News article saved.','News article scheduled for:'=>'News article scheduled for:','News article submitted.'=>'News article submitted.','News article updated.'=>'News article updated.','News draft updated.'=>'News draft updated.','News tags'=>'News tags','News updated.'=>'News updated.','Night greeting'=>'Night greeting','No admin bar'=>'No admin bar','No admin bar on the front end for logged-in users'=>'No admin bar on the front end for logged-in users','No author archives'=>'No author archives','No avatars'=>'No avatars','No feeds'=>'No feeds','No file editors'=>'No file editors','No front end admin bar for logged in users'=>'No front end admin bar for logged in users','No generator'=>'No generator','No generator tag'=>'No generator tag','No howdy'=>'No generator tag','No lazy loading'=>'No lazy loading','No login by email'=>'No login by email','No login by email address'=>'No login by email address','No news found'=>'No news found','No news found in trash'=>'No news found in trash','No pingbacks'=>'No pingbacks','No RSD'=>'No RSD','No shortlink tags'=>'No shortlink tags','No WordPress lazy loading'=>'No WordPress lazy loading','None'=>'None','Notes…'=>'Notes…','Number of bars'=>'Number of bars','Number of Revisions to save'=>'Number of Revisions to save','Opacity %'=>'Opacity %','Open site in new tab'=>'Open site in new tab','Padding (px)'=>'Padding (px)','Page excerpts'=>'Page excerpts','Page slug body class'=>'Page slug body class','Password visualisation'=>'Password visualisation','Please upload a file to import'=>'Please upload a file to import','Please upload a valid .json file'=>'Please upload a valid .json file','Plugin InstallerBeta Testing'=>'Beta Testing','Plugin InstallerNew'=>'New','Polylang'=>'Polylang','Polylang SVG flags'=>'Polylang SVG flags','Position bottom (px)'=>'Position bottom (px)','Position right (px)'=>'Position right (px)','Post thumbnails'=>'Post thumbnails','Posts'=>'Posts','Posts post type'=>'Posts post type','Posts, pages, post types'=>'Posts, pages, post types','Prevent layout shift between long and short pages'=>'Prevent layout shift between long and short pages','Prevent self pingbacks'=>'Prevent self pingbacks','Prevent the site from loading inside an external frame or iframe'=>'Prevent the site from loading inside an external frame or iframe','Preview news article'=>'Preview news article','Private site'=>'Private site','Rearranges admin menu items: dashboard, pages, posts, media'=>'Rearranges admin menu items: dashboard, pages, posts, media','Redirect requests for author archives to the homepage'=>'Redirect requests for author archives to the homepage','Redirect unauthenticated visitors to the login page'=>'Redirect unauthenticated visitors to the login page','Remove or rename the posts post type'=>'Remove or rename the posts post type','Remove posts'=>'Remove posts','Remove support for gravatars or user avatars'=>'Remove support for gravatars or user avatars','Remove the Really Simple Discovery endpoint'=>'Remove the Really Simple Discovery endpoint','Remove the RSS, RDF and atom feeds'=>'Remove the RSS, RDF and atom feeds','Remove the shortlink header tags'=>'Remove the shortlink header tags','Remove the WordPress generator meta tag'=>'Remove the WordPress generator meta tag','Removes the theme and plugin editors from admin'=>'Removes the theme and plugin editors from admin','Rename posts to news'=>'Rename posts to news','Replace the default bitmap flags in polylang'=>'Replace the default bitmap flags in polylang','Replace the howdy greeting with a salutation appropriate to the time of day'=>'Replace the howdy greeting with a salutation appropriate to the time of day','Replace the spaces around en-dashes & em-dashes with hairspaces'=>'Replace the spaces around en-dashes & em-dashes with hairspaces','Replace the WP logo in the admin toolbar with the site icon if one is configured'=>'Replace the WP logo in the admin toolbar with the site icon if one is configured','Replace WordPress logo'=>'Replace WordPress logo','Replace WP logo'=>'Replace WP logo','Required'=>'Required','Responsive breakpoints'=>'Responsive breakpoints','Restores the previous (classic) widgets settings page'=>'Restores the previous (classic) widgets settings page','Revisions'=>'Revisions','Salt (random when blank)'=>'Salt (random when blank)','Scroll to anchor'=>'Scroll to anchor','Scroll to top'=>'Scroll to top','Search'=>'Search','Search news'=>'Search news','Search placeholder'=>'Search placeholder','Search placeholder text'=>'Search placeholder text','Set breakpoints'=>'Set breakpoints','Set custom mobile and tablet breakpoints for the Astra theme'=>'Set custom mobile and tablet breakpoints for the Astra theme','Settings'=>'Settings','Show current WP version'=>'Show current WP version','Show file size in media library'=>'Show file size in media library','Show IDs'=>'Show IDs','Show media file size'=>'Show media file size','Show only when hovered'=>'Show only when hovered','Show settings'=>'Show settings','Show the current WordPress version in the admin footer when an upgrade is available'=>'Show the current WordPress version in the admin footer when an upgrade is available','Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages'=>'Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages','Show the ID for posts, pages, custom post types, taxonomies, media and users'=>'Show the ID for posts, pages, custom post types, taxonomies, media and users','Show the thumbnail of the featured image in the admin posts page'=>'Show the thumbnail of the featured image in the admin posts page','Show thumbnails in admin'=>'Show thumbnails in admin','Show WordPress version'=>'Show WordPress version','Single error message'=>'Single error message','Single login error message'=>'Single login error message','Site Settings'=>'Site Settings','Size (px)'=>'Size (px)','Smoothly animate when clicking a link targeting an anchored position'=>'Smoothly animate when clicking a link targeting an anchored position','Spacing between flags px'=>'Spacing between flags px','Taxonomies'=>'Taxonomies','Text color'=>'Text colour','Text selection'=>'Text selection','The caboodle settings have been imported'=>'The caboodle settings have been imported','The name of a google font'=>'The name of a google font','The same message for wrong username or wrong password'=>'The same message for wrong username or wrong password','Title'=>'Title','Underline Color'=>'Underline Color','Unlimited'=>'Unlimited','Unlink parent menu items'=>'Unlink parent menu items','Use translatable default text in Astra theme header cover search'=>'Use translatable default text in Astra theme header cover search','Username'=>'Username','Users'=>'Users','Vertical position (px)'=>'Vertical position (px)','View news'=>'View news','View news article'=>'View news article','Wavy links'=>'Wavy links','Wavy underline for links'=>'Wavy underline for links','website by %1$s'=>'website by %1$s','Years shortcode'=>'Years shortcode','Yikes! The cc_caboodle option containing the array of setting values does not exist'=>'Yikes! The cc_caboodle option containing the array of setting values does not exist']];2 return ['project-id-version'=>'Cubecolour Caboodle 0.5.0','report-msgid-bugs-to'=>'https://wordpress.org/support/plugin/cubecolour-caboodle','last-translator'=>'','language-team'=>'English (UK)','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','pot-creation-date'=>'2022-03-23T22:09:54+00:00','po-revision-date'=>'2025-04-19 16:33+0000','x-generator'=>'Loco https://localise.biz/','x-domain'=>'cubecolour-caboodle','language'=>'en_GB','plural-forms'=>'nplurals=2; plural=n != 1;','x-loco-version'=>'2.6.14; wp-6.7.1','messages'=>['%1$s %2$s'=>'%1$s %2$s','%1$s <a href="%2$s">%3$s</a>'=>'%1$s <a href="%2$s">%3$s</a>','%1$s <a target="_blank" href="%2$s">%3$s</a>'=>'%1$s <a target="_blank" href="%2$s">%3$s</a>','%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>'=>'%1$s <strong>%2$s</strong>. <a target="_blank" href="%3$s">%4$s</a>','%1$s, %2$s'=>'%1$s, %2$s','Add "New" & "Beta" links to the add plugins page'=>'Add "New" & "Beta" links to the add plugins page','Add %1$s and %2$s attributes to external links'=>'Add %1$s and %2$s attributes to external links','Add a dynamic scroll to top button in the website footer'=>'Add a dynamic scroll to top button in the website footer','Add a featured image column in the admin posts page'=>'Add a featured image column in the admin posts page','Add a file size column in the media library'=>'Add a file size column in the media library','Add a file size column in the media library list view'=>'Add a file size column in the media library list view','Add a lightbox to images and galleries'=>'Add a lightbox to images and galleries','Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)'=>'Add a lightbox to images and galleries (Ensure you set the image or gallery to link to the media file)','Add a page slug class to the body tag'=>'Add a page slug class to the body tag','Add a wavy underline to links within the content'=>'Add a wavy underline to links within the content','Add an arrow icon to identify external links within the site content'=>'Add an arrow icon to identify external links within the site content','Add an icon to links which direct offsite'=>'Add an icon to links which direct offsite','Add attributes'=>'Add attributes','Add caboodle dashicons'=>'Add caboodle dashicons','Add dashicons'=>'Add dashicons','Add news article'=>'Add news article','Add some simple styles to forms created with the gravity forms plugin'=>'Add some simple styles to forms created with the gravity forms plugin','Add support for manual excerpts to pages'=>'Add support for manual excerpts to pages','Additional date & time formats'=>'Additional date & time formats','Adds a link in admin settings menu to view saved options'=>'Adds a link in admin settings menu to view saved options','Adds a simple notepad widget to the dashboard'=>'Adds a simple notepad widget to the dashboard','Adds new options for date and time formats in the general settings admin page'=>'Adds new options for date and time formats in the general settings admin page','Adjust font size (%)'=>'Adjust font size (%)','Admin menu order'=>'Admin menu order','Afternoon greeting'=>'Afternoon greeting','All news articles'=>'All news articles','Also include on frontend'=>'Also include on frontend','An agglomeration of useful functions'=>'An agglomeration of useful functions','Anti clickjack'=>'Anti clickjack','Anti spambot'=>'Anti spambot','Apply customizations to the login page'=>'Apply customisations to the login page','Authorised access only'=>'Authorised access only','Background color'=>'Background colour','Background hover color'=>'Background hover colour','Border color'=>'Border colour','Border color: focus'=>'Border colour: focus','Border color: hover'=>'Border colour: hover','Border radius (%)'=>'Border radius (%)','Border width (px)'=>'Border width (px)','Borderless'=>'Borderless','Breakpoint for mobile'=>'Breakpoint for mobile','Breakpoint for tablet'=>'Breakpoint for tablet','Caboodle'=>'Caboodle','Classic widgets'=>'Classic widgets','Color'=>'Color','Color and background color of selected text'=>'Colour and background colour of selected text','Color centre'=>'Colour centre','Color left & right'=>'Colour left & right','Comments'=>'Comments','Copyright from year'=>'Copyright from year','Copyright years shortcode for use in footer [years start=2025 format=roman]'=>'Copyright years shortcode for use in footer [years start=2025 format=roman]','Copyright years shortcode to use in footer'=>'Copyright years shortcode to use in footer','CSS Selector'=>'CSS Selector','cubecolour'=>'cubecolour','Cubecolour Caboodle'=>'Cubecolour Caboodle','Current settings:'=>'Current settings:','Current Version'=>'Current Version','Current WP version'=>'Current WP version','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','Customize the login page'=>'Customise the login page','Dash spacing'=>'Dash spacing','Dashboard notes'=>'Dashboard notes','Developer link'=>'Developer link','Developer link in admin footer and [developer] shortcode for front end'=>'Developer link in admin footer and [developer] shortcode for front end','Developer link URL'=>'Developer link URL','Developer name'=>'Developer name','Disconnect immediately and do not attempt to log in if you are not an authorised user'=>'Disconnect immediately and do not attempt to log in if you are not an authorised user','Display colored bars for visual confirmation of password input'=>'Display coloured bars for visual confirmation of password input','Do not expose password characters when entered on iPad, iPhone or android'=>'Do not expose password characters when entered on iPad, iPhone or android','Documentation'=>'Documentation','Edit news'=>'Edit news','email shortcode to help protect email addresses from spambots'=>'email shortcode to help protect email addresses from spambots','Embed bandcamp'=>'Embed bandcamp','Enable attachment pages'=>'Enable attachment pages','Enable drop down menus to work more intuitively'=>'Enable drop down menus to work more intuitively','Enable media attachment pages'=>'Enable media attachment pages','Enable support for the [bandcamp] shortcode generated on bandcamp'=>'Enable support for the [bandcamp] shortcode generated on bandcamp','Enable the [bandcamp] shortcode generated by bandcamp to embed an audio player'=>'Enable the [bandcamp] shortcode generated by bandcamp to embed an audio player','Error message'=>'Error message','Error: Nonce verification has failed'=>'Error: Nonce verification has failed','Evening greeting'=>'Evening greeting','Except for administrators'=>'Except for administrators','Export'=>'Export','Export caboodle settings'=>'Export caboodle settings','Export the current plugin settings as a .json file.'=>'Export the current plugin settings as a .json file.','Extend dashicons with new icons'=>'Extend dashicons with new icons','Extra text added to login form'=>'Extra text added to login form','File Size'=>'File Size','Fix footer'=>'Fix footer','Fix the footer element to the bottom of the viewport on short pages'=>'Fix the footer element to the bottom of the viewport on short pages','Flag width px'=>'Flag width px','Font'=>'Font','Footer element to fix'=>'Footer element to fix','Footer years range'=>'Footer years range','Force vertical scrollbar'=>'Force vertical scrollbar','Gap (px)'=>'Gap (px)','Go to bed'=>'Go to bed','Good afternoon'=>'Good afternoon','Good evening'=>'Good evening','Good morning'=>'Good morning','Gravity forms'=>'Gravity forms','Gravity forms style'=>'Gravity forms style','Grayscale %'=>'Grayscale %','Hover Color'=>'Hover Color','Hover color'=>'Hover colour','https://cubecolour.co.uk/'=>'https://cubecolour.co.uk/','Icon'=>'Icon','Icon size (px)'=>'Icon size (px)','ID'=>'ID','Import'=>'Import','Import caboodle settings'=>'Import caboodle settings','Import the plugin settings from a .json file.'=>'Import the plugin settings from a .json file.','Import/export'=>'Import/export','Incorrect credentials'=>'Incorrect credentials','Incorrect details input'=>'Incorrect details input','Increase the font size in case your font has a small x-height'=>'Increase the font size in case your font has a small x-height','Indicate external links'=>'Indicate external links','Invalid nonce. Please refresh the page and try again.'=>'Invalid nonce. Please refresh the page and try again.','Keep posts'=>'Keep posts','Lightbox'=>'Lightbox','Limit revisions'=>'Limit revisions','Limit the number of saved revisions'=>'Limit the number of saved revisions','Links'=>'Links','List the WordPress options with their values from the admin settings menu'=>'List the WordPress options with their values from the admin settings menu','Login background'=>'Login background','Login page'=>'Login page','Login page style'=>'Login page style','Login warning message'=>'Login warning message','Logo'=>'Logo','M j, Y @ G:i'=>'M j, Y @ G:i','Mask password'=>'Mask password','Media'=>'Media','Media attachment pages'=>'Media attachment pages','Message'=>'Message','Modify the view site link in admin to open in a new browser tab'=>'Modify the view site link in admin to open in a new browser tab','Modules'=>'Modules','Morning greeting'=>'Morning greeting','Must log in by username, not by email address'=>'Must log in by username, not by email address','New plugins'=>'New plugins','News'=>'News','News article'=>'News article','News article published.'=>'News article published.','News article restored to revision from'=>'News article restored to revision from','News article saved.'=>'News article saved.','News article scheduled for:'=>'News article scheduled for:','News article submitted.'=>'News article submitted.','News article updated.'=>'News article updated.','News draft updated.'=>'News draft updated.','News tags'=>'News tags','News updated.'=>'News updated.','Night greeting'=>'Night greeting','No admin bar'=>'No admin bar','No admin bar on the front end for logged-in users'=>'No admin bar on the front end for logged-in users','No author archives'=>'No author archives','No avatars'=>'No avatars','No comments'=>'No comments','No feeds'=>'No feeds','No file editors'=>'No file editors','No front end admin bar for logged in users'=>'No front end admin bar for logged in users','No generator'=>'No generator','No generator tag'=>'No generator tag','No howdy'=>'No generator tag','No lazy loading'=>'No lazy loading','No login by email'=>'No login by email','No login by email address'=>'No login by email address','No news found'=>'No news found','No news found in trash'=>'No news found in trash','No pingbacks'=>'No pingbacks','No RSD'=>'No RSD','No shortlink tags'=>'No shortlink tags','No WordPress lazy loading'=>'No WordPress lazy loading','None'=>'None','Notes…'=>'Notes…','Number of bars'=>'Number of bars','Number of Revisions to save'=>'Number of Revisions to save','Opacity %'=>'Opacity %','Open site in new tab'=>'Open site in new tab','Padding (px)'=>'Padding (px)','Page excerpts'=>'Page excerpts','Page slug body class'=>'Page slug body class','Password visualisation'=>'Password visualisation','Please upload a file to import'=>'Please upload a file to import','Please upload a valid .json file'=>'Please upload a valid .json file','Plugin InstallerBeta Testing'=>'Beta Testing','Plugin InstallerNew'=>'New','Polylang'=>'Polylang','Polylang SVG flags'=>'Polylang SVG flags','Position bottom (px)'=>'Position bottom (px)','Position right (px)'=>'Position right (px)','Post thumbnails'=>'Post thumbnails','Posts'=>'Posts','Posts post type'=>'Posts post type','Posts, pages, post types'=>'Posts, pages, post types','Prevent layout shift between long and short pages'=>'Prevent layout shift between long and short pages','Prevent self pingbacks'=>'Prevent self pingbacks','Prevent the site from loading inside an external frame or iframe'=>'Prevent the site from loading inside an external frame or iframe','Preview news article'=>'Preview news article','Private site'=>'Private site','Rearranges admin menu items: dashboard, pages, posts, media'=>'Rearranges admin menu items: dashboard, pages, posts, media','Redirect requests for author archives to the homepage'=>'Redirect requests for author archives to the homepage','Redirect unauthenticated visitors to the login page'=>'Redirect unauthenticated visitors to the login page','Remove or rename the posts post type'=>'Remove or rename the posts post type','Remove posts'=>'Remove posts','Remove support for gravatars or user avatars'=>'Remove support for gravatars or user avatars','Remove the Really Simple Discovery endpoint'=>'Remove the Really Simple Discovery endpoint','Remove the RSS, RDF and atom feeds'=>'Remove the RSS, RDF and atom feeds','Remove the shortlink header tags'=>'Remove the shortlink header tags','Remove the WordPress generator meta tag'=>'Remove the WordPress generator meta tag','Removes support for comments'=>'Removes support for comments','Removes the theme and plugin editors from admin'=>'Removes the theme and plugin editors from admin','Rename posts to news'=>'Rename posts to news','Replace the default bitmap flags in polylang'=>'Replace the default bitmap flags in polylang','Replace the howdy greeting with a salutation appropriate to the time of day'=>'Replace the howdy greeting with a salutation appropriate to the time of day','Replace the spaces around en-dashes & em-dashes with hairspaces'=>'Replace the spaces around en-dashes & em-dashes with hairspaces','Replace the WP logo in the admin toolbar with the site icon if one is configured'=>'Replace the WP logo in the admin toolbar with the site icon if one is configured','Replace WordPress logo'=>'Replace WordPress logo','Replace WP logo'=>'Replace WP logo','Required'=>'Required','Responsive breakpoints'=>'Responsive breakpoints','Restores the previous (classic) widgets settings page'=>'Restores the previous (classic) widgets settings page','Revisions'=>'Revisions','Salt (random when blank)'=>'Salt (random when blank)','Scroll to anchor'=>'Scroll to anchor','Scroll to top'=>'Scroll to top','Search'=>'Search','Search news'=>'Search news','Search placeholder'=>'Search placeholder','Search placeholder text'=>'Search placeholder text','Set breakpoints'=>'Set breakpoints','Set custom mobile and tablet breakpoints for the Astra theme'=>'Set custom mobile and tablet breakpoints for the Astra theme','Settings'=>'Settings','Show current WP version'=>'Show current WP version','Show file size in media library'=>'Show file size in media library','Show IDs'=>'Show IDs','Show media file size'=>'Show media file size','Show only when hovered'=>'Show only when hovered','Show settings'=>'Show settings','Show the current WordPress version in the admin footer when an upgrade is available'=>'Show the current WordPress version in the admin footer when an upgrade is available','Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages'=>'Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages','Show the ID for posts, pages, custom post types, taxonomies, media and users'=>'Show the ID for posts, pages, custom post types, taxonomies, media and users','Show the thumbnail of the featured image in the admin posts page'=>'Show the thumbnail of the featured image in the admin posts page','Show thumbnails in admin'=>'Show thumbnails in admin','Show WordPress version'=>'Show WordPress version','Single error message'=>'Single error message','Single login error message'=>'Single login error message','Site Settings'=>'Site Settings','Size (px)'=>'Size (px)','Smoothly animate when clicking a link targeting an anchored position'=>'Smoothly animate when clicking a link targeting an anchored position','Spacing between flags px'=>'Spacing between flags px','Taxonomies'=>'Taxonomies','Text color'=>'Text colour','Text selection'=>'Text selection','The caboodle settings have been imported'=>'The caboodle settings have been imported','The name of a google font'=>'The name of a google font','The same message for wrong username or wrong password'=>'The same message for wrong username or wrong password','Title'=>'Title','Underline Color'=>'Underline Color','Unlimited'=>'Unlimited','Unlink parent menu items'=>'Unlink parent menu items','Use translatable default text in Astra theme header cover search'=>'Use translatable default text in Astra theme header cover search','Username'=>'Username','Users'=>'Users','Vertical position (px)'=>'Vertical position (px)','View news'=>'View news','View news article'=>'View news article','Wavy links'=>'Wavy links','Wavy underline for links'=>'Wavy underline for links','website by %1$s'=>'website by %1$s','Years shortcode'=>'Years shortcode','Yikes! The cc_caboodle option containing the array of setting values does not exist'=>'Yikes! The cc_caboodle option containing the array of setting values does not exist']]; -
cubecolour-caboodle/trunk/languages/cubecolour-caboodle-en_GB.po
r3276144 r3277296 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-04-1 7 17:58+0000\n"14 "PO-Revision-Date: 2025-04-19 16:33+0000\n" 15 15 "X-Generator: Loco https://localise.biz/\n" 16 16 "X-Domain: cubecolour-caboodle\n" … … 128 128 msgstr "Add news article" 129 129 130 #: includes/customizer.php:31 06 includes/admin.php:444130 #: includes/customizer.php:3137 includes/admin.php:452 131 131 #| msgid "Add styles to forms created with the gravity forms plugin" 132 132 msgid "Add some simple styles to forms created with the gravity forms plugin" … … 210 210 msgstr "Background hover colour" 211 211 212 #: includes/customizer.php:31 41212 #: includes/customizer.php:3172 213 213 msgid "Border color" 214 214 msgstr "Border colour" 215 215 216 #: includes/customizer.php:3 179216 #: includes/customizer.php:3210 217 217 msgid "Border color: focus" 218 218 msgstr "Border colour: focus" 219 219 220 #: includes/customizer.php:31 60220 #: includes/customizer.php:3191 221 221 msgid "Border color: hover" 222 222 msgstr "Border colour: hover" … … 234 234 msgstr "Borderless" 235 235 236 #: includes/customizer.php:29 51236 #: includes/customizer.php:2982 237 237 msgid "Breakpoint for mobile" 238 238 msgstr "Breakpoint for mobile" 239 239 240 #: includes/customizer.php:29 27240 #: includes/customizer.php:2958 241 241 msgid "Breakpoint for tablet" 242 242 msgstr "Breakpoint for tablet" … … 298 298 msgstr "Cubecolour Caboodle" 299 299 300 #: includes/admin.php:5 05300 #: includes/admin.php:513 301 301 msgid "Current settings:" 302 302 msgstr "Current settings:" … … 370 370 "Do not expose password characters when entered on iPad, iPhone or android" 371 371 372 #: includes/admin.php:55 1372 #: includes/admin.php:559 373 373 msgid "Documentation" 374 374 msgstr "Documentation" … … 383 383 msgstr "email shortcode to help protect email addresses from spambots" 384 384 385 #: includes/customizer.php:28 25 includes/customizer.php:2841386 #: includes/admin.php:4 04385 #: includes/customizer.php:2856 includes/customizer.php:2872 386 #: includes/admin.php:412 387 387 msgid "Embed bandcamp" 388 388 msgstr "Embed bandcamp" … … 400 400 msgstr "Enable media attachment pages" 401 401 402 #: includes/admin.php:4 05402 #: includes/admin.php:413 403 403 msgid "Enable support for the [bandcamp] shortcode generated on bandcamp" 404 404 msgstr "Enable support for the [bandcamp] shortcode generated on bandcamp" 405 405 406 #: includes/customizer.php:28 26406 #: includes/customizer.php:2857 407 407 msgid "" 408 408 "Enable the [bandcamp] shortcode generated by bandcamp to embed an audio " … … 416 416 msgstr "Error message" 417 417 418 #: includes/admin.php:63 1418 #: includes/admin.php:639 419 419 msgid "Error: Nonce verification has failed" 420 420 msgstr "Error: Nonce verification has failed" … … 429 429 msgstr "Except for administrators" 430 430 431 #: includes/admin.php:4 68431 #: includes/admin.php:476 432 432 msgid "Export" 433 433 msgstr "Export" 434 434 435 #: includes/admin.php:46 1435 #: includes/admin.php:469 436 436 msgid "Export caboodle settings" 437 437 msgstr "Export caboodle settings" 438 438 439 #: includes/admin.php:4 63439 #: includes/admin.php:471 440 440 msgid "Export the current plugin settings as a .json file." 441 441 msgstr "Export the current plugin settings as a .json file." … … 462 462 msgstr "Fix the footer element to the bottom of the viewport on short pages" 463 463 464 #: includes/customizer.php:30 10464 #: includes/customizer.php:3041 465 465 msgid "Flag width px" 466 466 msgstr "Flag width px" … … 487 487 msgstr "Gap (px)" 488 488 489 #: includes/initial-values.php:7 5includes/customizer.php:1030489 #: includes/initial-values.php:76 includes/customizer.php:1030 490 490 #: includes/modules/no-howdy.php:77 491 491 msgid "Go to bed" 492 492 msgstr "Go to bed" 493 493 494 #: includes/initial-values.php:7 2includes/customizer.php:996494 #: includes/initial-values.php:73 includes/customizer.php:996 495 495 #: includes/modules/no-howdy.php:73 496 496 #| msgid "Good Afternoon" … … 498 498 msgstr "Good afternoon" 499 499 500 #: includes/initial-values.php:7 3includes/customizer.php:1013500 #: includes/initial-values.php:74 includes/customizer.php:1013 501 501 #: includes/modules/no-howdy.php:75 502 502 #| msgid "Good Evening" … … 504 504 msgstr "Good evening" 505 505 506 #: includes/initial-values.php:7 4includes/customizer.php:979506 #: includes/initial-values.php:75 includes/customizer.php:979 507 507 #: includes/modules/no-howdy.php:71 508 508 #| msgid "Good Morning" … … 510 510 msgstr "Good morning" 511 511 512 #: includes/customizer.php:31 21512 #: includes/customizer.php:3152 513 513 msgid "Gravity forms" 514 514 msgstr "Gravity forms" 515 515 516 #: includes/customizer.php:31 05 includes/admin.php:443516 #: includes/customizer.php:3136 includes/admin.php:451 517 517 msgid "Gravity forms style" 518 518 msgstr "Gravity forms style" 519 519 520 #: includes/customizer.php:30 34520 #: includes/customizer.php:3065 521 521 msgid "Grayscale %" 522 522 msgstr "Grayscale %" … … 546 546 msgstr "ID" 547 547 548 #: includes/admin.php:4 85548 #: includes/admin.php:493 549 549 msgid "Import" 550 550 msgstr "Import" 551 551 552 #: includes/admin.php:4 75552 #: includes/admin.php:483 553 553 msgid "Import caboodle settings" 554 554 msgstr "Import caboodle settings" 555 555 556 #: includes/admin.php:4 77556 #: includes/admin.php:485 557 557 msgid "Import the plugin settings from a .json file." 558 558 msgstr "Import the plugin settings from a .json file." 559 559 560 #: includes/admin.php:4 55560 #: includes/admin.php:463 561 561 msgid "Import/export" 562 562 msgstr "Import/export" … … 738 738 msgstr "No admin bar on the front end for logged-in users" 739 739 740 #: includes/customizer.php:26 39 includes/customizer.php:2655741 #: includes/admin.php:3 67740 #: includes/customizer.php:2670 includes/customizer.php:2686 741 #: includes/admin.php:375 742 742 msgid "No author archives" 743 743 msgstr "No author archives" … … 749 749 msgstr "No avatars" 750 750 751 #: includes/customizer.php:2732 includes/customizer.php:2748 752 #: includes/admin.php:386 751 #: includes/customizer.php:2639 includes/customizer.php:2655 752 #: includes/admin.php:368 753 msgid "No comments" 754 msgstr "No comments" 755 756 #: includes/customizer.php:2763 includes/customizer.php:2779 757 #: includes/admin.php:394 753 758 msgid "No feeds" 754 759 msgstr "No feeds" … … 763 768 msgstr "No front end admin bar for logged in users" 764 769 765 #: includes/customizer.php:2 670 includes/admin.php:373770 #: includes/customizer.php:2701 includes/admin.php:381 766 771 msgid "No generator" 767 772 msgstr "No generator" 768 773 769 #: includes/customizer.php:2 686774 #: includes/customizer.php:2717 770 775 msgid "No generator tag" 771 776 msgstr "No generator tag" … … 797 802 msgstr "No news found in trash" 798 803 799 #: includes/customizer.php:2 794 includes/customizer.php:2810800 #: includes/admin.php: 398804 #: includes/customizer.php:2825 includes/customizer.php:2841 805 #: includes/admin.php:406 801 806 msgid "No pingbacks" 802 807 msgstr "No pingbacks" 803 808 804 #: includes/customizer.php:27 01 includes/customizer.php:2717805 #: includes/admin.php:3 79809 #: includes/customizer.php:2732 includes/customizer.php:2748 810 #: includes/admin.php:387 806 811 msgid "No RSD" 807 812 msgstr "No RSD" 808 813 809 #: includes/customizer.php:27 63 includes/customizer.php:2779810 #: includes/admin.php: 392814 #: includes/customizer.php:2794 includes/customizer.php:2810 815 #: includes/admin.php:400 811 816 #| msgid "No shortlinks" 812 817 msgid "No shortlink tags" … … 834 839 msgstr "Number of Revisions to save" 835 840 836 #: includes/customizer.php:30 58841 #: includes/customizer.php:3089 837 842 msgid "Opacity %" 838 843 msgstr "Opacity %" … … 863 868 msgstr "Password visualisation" 864 869 865 #: includes/admin.php:6 52870 #: includes/admin.php:660 866 871 msgid "Please upload a file to import" 867 872 msgstr "Please upload a file to import" 868 873 869 #: includes/admin.php:6 43874 #: includes/admin.php:651 870 875 msgid "Please upload a valid .json file" 871 876 msgstr "Please upload a valid .json file" … … 881 886 msgstr "New" 882 887 883 #: includes/customizer.php: 2991888 #: includes/customizer.php:3022 884 889 msgid "Polylang" 885 890 msgstr "Polylang" 886 891 887 #: includes/customizer.php: 2975 includes/admin.php:431892 #: includes/customizer.php:3006 includes/admin.php:439 888 893 msgid "Polylang SVG flags" 889 894 msgstr "Polylang SVG flags" … … 917 922 msgstr "Prevent layout shift between long and short pages" 918 923 919 #: includes/customizer.php:2 795 includes/admin.php:399924 #: includes/customizer.php:2826 includes/admin.php:407 920 925 msgid "Prevent self pingbacks" 921 926 msgstr "Prevent self pingbacks" … … 940 945 msgstr "Rearranges admin menu items: dashboard, pages, posts, media" 941 946 942 #: includes/customizer.php:26 40 includes/admin.php:368947 #: includes/customizer.php:2671 includes/admin.php:376 943 948 msgid "Redirect requests for author archives to the homepage" 944 949 msgstr "Redirect requests for author archives to the homepage" … … 962 967 msgstr "Remove support for gravatars or user avatars" 963 968 964 #: includes/customizer.php:27 02 includes/admin.php:380969 #: includes/customizer.php:2733 includes/admin.php:388 965 970 #| msgid "Remove the RSD (Really Simple Discovery) endpoint" 966 971 msgid "Remove the Really Simple Discovery endpoint" 967 972 msgstr "Remove the Really Simple Discovery endpoint" 968 973 969 #: includes/customizer.php:27 33 includes/admin.php:387974 #: includes/customizer.php:2764 includes/admin.php:395 970 975 msgid "Remove the RSS, RDF and atom feeds" 971 976 msgstr "Remove the RSS, RDF and atom feeds" 972 977 973 #: includes/customizer.php:27 64 includes/admin.php:393978 #: includes/customizer.php:2795 includes/admin.php:401 974 979 #| msgid "Remove the short link header tags" 975 980 msgid "Remove the shortlink header tags" 976 981 msgstr "Remove the shortlink header tags" 977 982 978 #: includes/customizer.php:2 671 includes/admin.php:374983 #: includes/customizer.php:2702 includes/admin.php:382 979 984 msgid "Remove the WordPress generator meta tag" 980 985 msgstr "Remove the WordPress generator meta tag" 986 987 #: includes/customizer.php:2640 includes/admin.php:369 988 msgid "Removes support for comments" 989 msgstr "Removes support for comments" 981 990 982 991 #: includes/customizer.php:2609 includes/admin.php:362 … … 989 998 msgstr "Rename posts to news" 990 999 991 #: includes/customizer.php: 2976 includes/admin.php:4321000 #: includes/customizer.php:3007 includes/admin.php:440 992 1001 msgid "Replace the default bitmap flags in polylang" 993 1002 msgstr "Replace the default bitmap flags in polylang" … … 1024 1033 msgstr "Required" 1025 1034 1026 #: includes/customizer.php:2 892 includes/admin.php:4191035 #: includes/customizer.php:2923 includes/admin.php:427 1027 1036 msgid "Responsive breakpoints" 1028 1037 msgstr "Responsive breakpoints" … … 1059 1068 msgstr "Search news" 1060 1069 1061 #: includes/customizer.php:28 61 includes/admin.php:4131070 #: includes/customizer.php:2892 includes/admin.php:421 1062 1071 msgid "Search placeholder" 1063 1072 msgstr "Search placeholder" 1064 1073 1065 #: includes/customizer.php:2 8771074 #: includes/customizer.php:2908 1066 1075 msgid "Search placeholder text" 1067 1076 msgstr "Search placeholder text" 1068 1077 1069 #: includes/customizer.php:29 081078 #: includes/customizer.php:2939 1070 1079 msgid "Set breakpoints" 1071 1080 msgstr "Set breakpoints" 1072 1081 1073 #: includes/customizer.php:2 893 includes/admin.php:4201082 #: includes/customizer.php:2924 includes/admin.php:428 1074 1083 msgid "Set custom mobile and tablet breakpoints for the Astra theme" 1075 1084 msgstr "Set custom mobile and tablet breakpoints for the Astra theme" … … 1165 1174 msgstr "Smoothly animate when clicking a link targeting an anchored position" 1166 1175 1167 #: includes/customizer.php:3 0821176 #: includes/customizer.php:3113 1168 1177 msgid "Spacing between flags px" 1169 1178 msgstr "Spacing between flags px" … … 1183 1192 msgstr "Text selection" 1184 1193 1185 #: includes/admin.php: 6961194 #: includes/admin.php:704 1186 1195 msgid "The caboodle settings have been imported" 1187 1196 msgstr "The caboodle settings have been imported" … … 1212 1221 msgstr "Unlink parent menu items" 1213 1222 1214 #: includes/customizer.php:28 62 includes/admin.php:4141223 #: includes/customizer.php:2893 includes/admin.php:422 1215 1224 msgid "Use translatable default text in Astra theme header cover search" 1216 1225 msgstr "Use translatable default text in Astra theme header cover search" … … 1257 1266 msgstr "Years shortcode" 1258 1267 1259 #: includes/admin.php:5 391268 #: includes/admin.php:547 1260 1269 #| msgid "" 1261 1270 #| "The cc_caboodle option containing the array of setting values does not " -
cubecolour-caboodle/trunk/languages/cubecolour-caboodle.pot
r3276144 r3277296 12 12 "Content-Type: text/plain; charset=UTF-8\n" 13 13 "Content-Transfer-Encoding: 8bit\n" 14 "POT-Creation-Date: 2025-04-1 7 17:55+0000\n"14 "POT-Creation-Date: 2025-04-19 16:32+0000\n" 15 15 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 16 16 "X-Generator: Loco https://localise.biz/\n" … … 123 123 msgstr "" 124 124 125 #: includes/customizer.php:31 06 includes/admin.php:444125 #: includes/customizer.php:3137 includes/admin.php:452 126 126 msgid "Add some simple styles to forms created with the gravity forms plugin" 127 127 msgstr "" … … 202 202 msgstr "" 203 203 204 #: includes/customizer.php:31 41204 #: includes/customizer.php:3172 205 205 msgid "Border color" 206 206 msgstr "" 207 207 208 #: includes/customizer.php:3 179208 #: includes/customizer.php:3210 209 209 msgid "Border color: focus" 210 210 msgstr "" 211 211 212 #: includes/customizer.php:31 60212 #: includes/customizer.php:3191 213 213 msgid "Border color: hover" 214 214 msgstr "" … … 226 226 msgstr "" 227 227 228 #: includes/customizer.php:29 51228 #: includes/customizer.php:2982 229 229 msgid "Breakpoint for mobile" 230 230 msgstr "" 231 231 232 #: includes/customizer.php:29 27232 #: includes/customizer.php:2958 233 233 msgid "Breakpoint for tablet" 234 234 msgstr "" … … 288 288 msgstr "" 289 289 290 #: includes/admin.php:5 05290 #: includes/admin.php:513 291 291 msgid "Current settings:" 292 292 msgstr "" … … 355 355 msgstr "" 356 356 357 #: includes/admin.php:55 1357 #: includes/admin.php:559 358 358 msgid "Documentation" 359 359 msgstr "" … … 367 367 msgstr "" 368 368 369 #: includes/customizer.php:28 25 includes/customizer.php:2841370 #: includes/admin.php:4 04369 #: includes/customizer.php:2856 includes/customizer.php:2872 370 #: includes/admin.php:412 371 371 msgid "Embed bandcamp" 372 372 msgstr "" … … 384 384 msgstr "" 385 385 386 #: includes/admin.php:4 05386 #: includes/admin.php:413 387 387 msgid "Enable support for the [bandcamp] shortcode generated on bandcamp" 388 388 msgstr "" 389 389 390 #: includes/customizer.php:28 26390 #: includes/customizer.php:2857 391 391 msgid "" 392 392 "Enable the [bandcamp] shortcode generated by bandcamp to embed an audio " … … 398 398 msgstr "" 399 399 400 #: includes/admin.php:63 1400 #: includes/admin.php:639 401 401 msgid "Error: Nonce verification has failed" 402 402 msgstr "" … … 410 410 msgstr "" 411 411 412 #: includes/admin.php:4 68412 #: includes/admin.php:476 413 413 msgid "Export" 414 414 msgstr "" 415 415 416 #: includes/admin.php:46 1416 #: includes/admin.php:469 417 417 msgid "Export caboodle settings" 418 418 msgstr "" 419 419 420 #: includes/admin.php:4 63420 #: includes/admin.php:471 421 421 msgid "Export the current plugin settings as a .json file." 422 422 msgstr "" … … 443 443 msgstr "" 444 444 445 #: includes/customizer.php:30 10445 #: includes/customizer.php:3041 446 446 msgid "Flag width px" 447 447 msgstr "" … … 468 468 msgstr "" 469 469 470 #: includes/initial-values.php:7 5includes/customizer.php:1030470 #: includes/initial-values.php:76 includes/customizer.php:1030 471 471 #: includes/modules/no-howdy.php:77 472 472 msgid "Go to bed" 473 473 msgstr "" 474 474 475 #: includes/initial-values.php:7 2includes/customizer.php:996475 #: includes/initial-values.php:73 includes/customizer.php:996 476 476 #: includes/modules/no-howdy.php:73 477 477 msgid "Good afternoon" 478 478 msgstr "" 479 479 480 #: includes/initial-values.php:7 3includes/customizer.php:1013480 #: includes/initial-values.php:74 includes/customizer.php:1013 481 481 #: includes/modules/no-howdy.php:75 482 482 msgid "Good evening" 483 483 msgstr "" 484 484 485 #: includes/initial-values.php:7 4includes/customizer.php:979485 #: includes/initial-values.php:75 includes/customizer.php:979 486 486 #: includes/modules/no-howdy.php:71 487 487 msgid "Good morning" 488 488 msgstr "" 489 489 490 #: includes/customizer.php:31 21490 #: includes/customizer.php:3152 491 491 msgid "Gravity forms" 492 492 msgstr "" 493 493 494 #: includes/customizer.php:31 05 includes/admin.php:443494 #: includes/customizer.php:3136 includes/admin.php:451 495 495 msgid "Gravity forms style" 496 496 msgstr "" 497 497 498 #: includes/customizer.php:30 34498 #: includes/customizer.php:3065 499 499 msgid "Grayscale %" 500 500 msgstr "" … … 524 524 msgstr "" 525 525 526 #: includes/admin.php:493 527 msgid "Import" 528 msgstr "" 529 530 #: includes/admin.php:483 531 msgid "Import caboodle settings" 532 msgstr "" 533 526 534 #: includes/admin.php:485 527 msgid "Import"528 msgstr ""529 530 #: includes/admin.php:475531 msgid "Import caboodle settings"532 msgstr ""533 534 #: includes/admin.php:477535 535 msgid "Import the plugin settings from a .json file." 536 536 msgstr "" 537 537 538 #: includes/admin.php:4 55538 #: includes/admin.php:463 539 539 msgid "Import/export" 540 540 msgstr "" … … 713 713 msgstr "" 714 714 715 #: includes/customizer.php:26 39 includes/customizer.php:2655716 #: includes/admin.php:3 67715 #: includes/customizer.php:2670 includes/customizer.php:2686 716 #: includes/admin.php:375 717 717 msgid "No author archives" 718 718 msgstr "" … … 723 723 msgstr "" 724 724 725 #: includes/customizer.php:2732 includes/customizer.php:2748 726 #: includes/admin.php:386 725 #: includes/customizer.php:2639 includes/customizer.php:2655 726 #: includes/admin.php:368 727 msgid "No comments" 728 msgstr "" 729 730 #: includes/customizer.php:2763 includes/customizer.php:2779 731 #: includes/admin.php:394 727 732 msgid "No feeds" 728 733 msgstr "" … … 737 742 msgstr "" 738 743 739 #: includes/customizer.php:2 670 includes/admin.php:373744 #: includes/customizer.php:2701 includes/admin.php:381 740 745 msgid "No generator" 741 746 msgstr "" 742 747 743 #: includes/customizer.php:2 686748 #: includes/customizer.php:2717 744 749 msgid "No generator tag" 745 750 msgstr "" … … 771 776 msgstr "" 772 777 778 #: includes/customizer.php:2825 includes/customizer.php:2841 779 #: includes/admin.php:406 780 msgid "No pingbacks" 781 msgstr "" 782 783 #: includes/customizer.php:2732 includes/customizer.php:2748 784 #: includes/admin.php:387 785 msgid "No RSD" 786 msgstr "" 787 773 788 #: includes/customizer.php:2794 includes/customizer.php:2810 774 #: includes/admin.php:398 775 msgid "No pingbacks" 776 msgstr "" 777 778 #: includes/customizer.php:2701 includes/customizer.php:2717 779 #: includes/admin.php:379 780 msgid "No RSD" 781 msgstr "" 782 783 #: includes/customizer.php:2763 includes/customizer.php:2779 784 #: includes/admin.php:392 789 #: includes/admin.php:400 785 790 msgid "No shortlink tags" 786 791 msgstr "" … … 806 811 msgstr "" 807 812 808 #: includes/customizer.php:30 58813 #: includes/customizer.php:3089 809 814 msgid "Opacity %" 810 815 msgstr "" … … 835 840 msgstr "" 836 841 837 #: includes/admin.php:6 52842 #: includes/admin.php:660 838 843 msgid "Please upload a file to import" 839 844 msgstr "" 840 845 841 #: includes/admin.php:6 43846 #: includes/admin.php:651 842 847 msgid "Please upload a valid .json file" 843 848 msgstr "" … … 853 858 msgstr "" 854 859 855 #: includes/customizer.php: 2991860 #: includes/customizer.php:3022 856 861 msgid "Polylang" 857 862 msgstr "" 858 863 859 #: includes/customizer.php: 2975 includes/admin.php:431864 #: includes/customizer.php:3006 includes/admin.php:439 860 865 msgid "Polylang SVG flags" 861 866 msgstr "" … … 889 894 msgstr "" 890 895 891 #: includes/customizer.php:2 795 includes/admin.php:399896 #: includes/customizer.php:2826 includes/admin.php:407 892 897 msgid "Prevent self pingbacks" 893 898 msgstr "" … … 912 917 msgstr "" 913 918 914 #: includes/customizer.php:26 40 includes/admin.php:368919 #: includes/customizer.php:2671 includes/admin.php:376 915 920 msgid "Redirect requests for author archives to the homepage" 916 921 msgstr "" … … 932 937 msgstr "" 933 938 934 #: includes/customizer.php:27 02 includes/admin.php:380939 #: includes/customizer.php:2733 includes/admin.php:388 935 940 msgid "Remove the Really Simple Discovery endpoint" 936 941 msgstr "" 937 942 938 #: includes/customizer.php:27 33 includes/admin.php:387943 #: includes/customizer.php:2764 includes/admin.php:395 939 944 msgid "Remove the RSS, RDF and atom feeds" 940 945 msgstr "" 941 946 942 #: includes/customizer.php:27 64 includes/admin.php:393947 #: includes/customizer.php:2795 includes/admin.php:401 943 948 msgid "Remove the shortlink header tags" 944 949 msgstr "" 945 950 946 #: includes/customizer.php:2 671 includes/admin.php:374951 #: includes/customizer.php:2702 includes/admin.php:382 947 952 msgid "Remove the WordPress generator meta tag" 953 msgstr "" 954 955 #: includes/customizer.php:2640 includes/admin.php:369 956 msgid "Removes support for comments" 948 957 msgstr "" 949 958 … … 956 965 msgstr "" 957 966 958 #: includes/customizer.php: 2976 includes/admin.php:432967 #: includes/customizer.php:3007 includes/admin.php:440 959 968 msgid "Replace the default bitmap flags in polylang" 960 969 msgstr "" … … 987 996 msgstr "" 988 997 989 #: includes/customizer.php:2 892 includes/admin.php:419998 #: includes/customizer.php:2923 includes/admin.php:427 990 999 msgid "Responsive breakpoints" 991 1000 msgstr "" … … 1022 1031 msgstr "" 1023 1032 1024 #: includes/customizer.php:28 61 includes/admin.php:4131033 #: includes/customizer.php:2892 includes/admin.php:421 1025 1034 msgid "Search placeholder" 1026 1035 msgstr "" 1027 1036 1028 #: includes/customizer.php:2 8771037 #: includes/customizer.php:2908 1029 1038 msgid "Search placeholder text" 1030 1039 msgstr "" 1031 1040 1032 #: includes/customizer.php:29 081041 #: includes/customizer.php:2939 1033 1042 msgid "Set breakpoints" 1034 1043 msgstr "" 1035 1044 1036 #: includes/customizer.php:2 893 includes/admin.php:4201045 #: includes/customizer.php:2924 includes/admin.php:428 1037 1046 msgid "Set custom mobile and tablet breakpoints for the Astra theme" 1038 1047 msgstr "" … … 1117 1126 msgstr "" 1118 1127 1119 #: includes/customizer.php:3 0821128 #: includes/customizer.php:3113 1120 1129 msgid "Spacing between flags px" 1121 1130 msgstr "" … … 1135 1144 msgstr "" 1136 1145 1137 #: includes/admin.php: 6961146 #: includes/admin.php:704 1138 1147 msgid "The caboodle settings have been imported" 1139 1148 msgstr "" … … 1164 1173 msgstr "" 1165 1174 1166 #: includes/customizer.php:28 62 includes/admin.php:4141175 #: includes/customizer.php:2893 includes/admin.php:422 1167 1176 msgid "Use translatable default text in Astra theme header cover search" 1168 1177 msgstr "" … … 1209 1218 msgstr "" 1210 1219 1211 #: includes/admin.php:5 391220 #: includes/admin.php:547 1212 1221 msgid "" 1213 1222 "Yikes! The cc_caboodle option containing the array of setting values does " -
cubecolour-caboodle/trunk/readme.txt
r3276144 r3277296 4 4 Requires: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 1.3. 16 Stable tag: 1.3.2 7 7 Donate link: https://cubecolour.co.uk/wp 8 8 Requires PHP: 7.4 … … 157 157 Removes the theme and plugin editor pages from admin 158 158 159 ### No comments 160 Removes support for comments 161 159 162 ### No author archives 160 163 Requests for author archive pages will redirect to the homepage … … 185 188 186 189 ### Polylang SVG flags 187 Only available when the Polylang plugin is active on the site. Usescalable vector graphics for flags in the language switcher190 Only available when the Polylang plugin is active on the site. Provides scalable vector graphics for flags in the language switcher 188 191 189 192 ### Gravity forms … … 232 235 233 236 ## Changelog 237 238 ### 1.3.2 239 240 * 'No Comments' module 234 241 235 242 ### 1.3.1
Note: See TracChangeset
for help on using the changeset viewer.