Make WordPress Core

Changeset 57112


Ignore:
Timestamp:
11/15/2023 05:35:35 PM (13 months ago)
Author:
jorbin
Message:

Help/About: Improve translation comment around release notes.

Reviewed by SergeyBiryukov.
Merges [57081] to the 6.4 branch.

Props kharisblank, kebbet.
Fixes #59821.

Location:
branches/6.4
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • branches/6.4

  • branches/6.4/src/js/_enqueues/vendor/colorpicker.js

    r43309 r57112  
    66// private, without any further permission from the author. You may
    77// remove this notice from your final code if you wish, however it is
    8 // appreciated by the author if at least my web site address is kept.
     8// appreciated by the author if at least my website address is kept.
    99//
    1010// You may *NOT* re-distribute this code in any way except through its
  • branches/6.4/src/wp-admin/about.php

    r57095 r57112  
    273273                    <?php
    274274                    printf(
    275                         /* translators: %s: WordPress Field Guide link. */
     275                        /* translators: 1: WordPress Field Guide link, 2: WordPress version number. */
    276276                        __( 'Explore the <a href="%1$s">WordPress %2$s Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.' ),
    277277                        __( 'https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/' ),
  • branches/6.4/src/wp-admin/includes/class-wp-privacy-policy-content.php

    r56599 r57112  
    530530        if ( $description ) {
    531531            /* translators: Privacy policy tutorial. */
    532             $strings[] = '<p class="privacy-policy-tutorial">' . __( 'In this subsection you should list the cookies your web site uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.' ) . '</p>';
     532            $strings[] = '<p class="privacy-policy-tutorial">' . __( 'In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.' ) . '</p>';
    533533        } else {
    534534            /* translators: Default privacy policy text. */
     
    578578        if ( $description ) {
    579579            /* translators: Privacy policy tutorial. */
    580             $strings[] = '<p class="privacy-policy-tutorial">' . __( 'In this section you should explain how long you retain personal data collected or processed by the web site. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.' ) . '</p>';
     580            $strings[] = '<p class="privacy-policy-tutorial">' . __( 'In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.' ) . '</p>';
    581581        } else {
    582582            /* translators: Default privacy policy text. */
     
    642642            $strings[] = '<h2>' . __( 'What third parties we receive data from' ) . '</h2>';
    643643            /* translators: Privacy policy tutorial. */
    644             $strings[] = '<p class="privacy-policy-tutorial">' . __( 'If your web site receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.' ) . '</p>';
     644            $strings[] = '<p class="privacy-policy-tutorial">' . __( 'If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.' ) . '</p>';
    645645        }
    646646
     
    649649            $strings[] = '<h2>' . __( 'What automated decision making and/or profiling we do with user data' ) . '</h2>';
    650650            /* translators: Privacy policy tutorial. */
    651             $strings[] = '<p class="privacy-policy-tutorial">' . __( 'If your web site provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.' ) . '</p>';
     651            $strings[] = '<p class="privacy-policy-tutorial">' . __( 'If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.' ) . '</p>';
    652652        }
    653653
  • branches/6.4/src/wp-admin/includes/update-core.php

    r57076 r57112  
    10091009 *
    10101010 * This will create a .maintenance file at the base of the WordPress directory
    1011  * to ensure that people can not access the web site, when the files are being
     1011 * to ensure that people can not access the website, when the files are being
    10121012 * copied to their locations.
    10131013 *
  • branches/6.4/src/wp-admin/privacy-policy-guide.php

    r56570 r57112  
    7474    <h2><?php _e( 'Privacy Policy Guide' ); ?></h2>
    7575    <h3 class="section-title"><?php _e( 'Introduction' ); ?></h3>
    76     <p><?php _e( 'This text template will help you to create your web site&#8217;s privacy policy.' ); ?></p>
     76    <p><?php _e( 'This text template will help you to create your website&#8217;s privacy policy.' ); ?></p>
    7777    <p><?php _e( 'The template contains a suggestion of sections you most likely will need. Under each section heading you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.' ); ?></p>
    7878    <p><?php _e( 'Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.' ); ?></p>
  • branches/6.4/src/wp-includes/functions.php

    r56995 r57112  
    61086108         * pretty permalinks cannot be used.
    61096109         *
    6110          * Next we check if the URL Rewrite Module 1.1 is loaded and enabled for the web site. When
     6110         * Next we check if the URL Rewrite Module 1.1 is loaded and enabled for the website. When
    61116111         * URL Rewrite 1.1 is loaded it always sets a server variable called 'IIS_UrlRewriteModule'.
    61126112         * Lastly we make sure that PHP is running via FastCGI. This is important because if it runs
  • branches/6.4/src/wp-includes/general-template.php

    r56548 r57112  
    34443444/**
    34453445 * Prints resource hints to browsers for pre-fetching, pre-rendering
    3446  * and pre-connecting to web sites.
     3446 * and pre-connecting to websites.
    34473447 *
    34483448 * Gives hints to browsers to prefetch specific pages or render them
  • branches/6.4/wp-config-sample.php

    r55412 r57112  
    44 *
    55 * The wp-config.php creation script uses this file during the installation.
    6  * You don't have to use the web site, you can copy this file to "wp-config.php"
     6 * You don't have to use the website, you can copy this file to "wp-config.php"
    77 * and fill in the values.
    88 *
Note: See TracChangeset for help on using the changeset viewer.