Make WordPress Core

Changeset 57571


Ignore:
Timestamp:
02/08/2024 08:34:32 PM (9 months ago)
Author:
jorbin
Message:

I18N: Add Translator comments for Planet URLs.

Props oglekler, zodiac1978, audrasjb, jorbin.
Fixes #58010.

File:
1 edited

Legend:

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

    r57285 r57571  
    15731573             * @param string $link The widget's secondary link URL.
    15741574             */
    1575             'link'         => apply_filters( 'dashboard_secondary_link', __( 'https://planet.wordpress.org/' ) ),
     1575            'link'         => apply_filters(
     1576                'dashboard_secondary_link',
     1577                /* translators: Link to the Planet website of the locale. */
     1578                __( 'https://planet.wordpress.org/' )
     1579            ),
    15761580
    15771581            /**
     
    15821586             * @param string $url The widget's secondary feed URL.
    15831587             */
    1584             'url'          => apply_filters( 'dashboard_secondary_feed', __( 'https://planet.wordpress.org/feed/' ) ),
     1588            'url'          => apply_filters(
     1589                'dashboard_secondary_feed',
     1590                /* translators: Link to the Planet feed of the locale. */
     1591                __( 'https://planet.wordpress.org/feed/' )
     1592            ),
    15851593
    15861594            /**
Note: See TracChangeset for help on using the changeset viewer.