Make WordPress Core


Ignore:
Timestamp:
07/18/2019 12:40:39 PM (4 years ago)
Author:
SergeyBiryukov
Message:

I18N: Make URLs to https://wordpress.org/about/ and related pages translatable, as they can now be localized on Rosetta sites.

Props mukesh27.
Fixes #46386.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/privacy.php

    r45451 r45659  
    5555        <?php
    5656        /* translators: %s: https://wordpress.org/about/stats/ */
    57         printf( __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ), 'https://wordpress.org/about/stats/' );
     57        printf( __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ), __( 'https://wordpress.org/about/stats/' ) );
    5858        ?>
    5959    </p>
     
    6262        <?php
    6363        /* translators: %s: https://wordpress.org/about/privacy/ */
    64         printf( __( 'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit <a href="%s">WordPress.org/about/privacy</a>.' ), 'https://wordpress.org/about/privacy/' );
     64        printf( __( 'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit <a href="%s">WordPress.org/about/privacy</a>.' ), __( 'https://wordpress.org/about/privacy/' ) );
    6565        ?>
    6666    </p>
Note: See TracChangeset for help on using the changeset viewer.