Make WordPress Core

Ticket #50087: 50087.1.diff

File 50087.1.diff, 6.4 KB (added by audrasjb, 4 years ago)

i18n: Add context to the use of None string across WordPress Admin

  • src/wp-admin/includes/meta-boxes.php

    diff --git a/src/wp-admin/includes/meta-boxes.php b/src/wp-admin/includes/meta-boxes.php
    index 2b4760a6da..006d56e933 100644
    a b function link_xfn_meta_box( $link ) { 
    12371237                        <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check( 'friendship', 'friend' ); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'friend' ); ?>
    12381238                        </label>
    12391239                        <label for="friendship">
    1240                         <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?>
     1240                        <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> />&nbsp;<?php /* translators: xfn (friendship relation): http://gmpg.org/xfn/ */ _x( 'none', 'Type of relation' ); ?>
    12411241                        </label>
    12421242                </fieldset></td>
    12431243        </tr>
    function link_xfn_meta_box( $link ) { 
    12701270                        <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check( 'geographical', 'neighbor' ); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'neighbor' ); ?>
    12711271                        </label>
    12721272                        <label for="geographical">
    1273                         <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?>
     1273                        <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> />&nbsp;<?php /* translators: xfn (geographical relation): http://gmpg.org/xfn/ */ _x( 'none', 'Type of relation' ); ?>
    12741274                        </label>
    12751275                </fieldset></td>
    12761276        </tr>
    function link_xfn_meta_box( $link ) { 
    12931293                        <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check( 'family', 'spouse' ); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'spouse' ); ?>
    12941294                        </label>
    12951295                        <label for="family">
    1296                         <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?>
     1296                        <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> />&nbsp;<?php /* translators: xfn (family relation): http://gmpg.org/xfn/ */ _x( 'none', 'Type of relation' ); ?>
    12971297                        </label>
    12981298                </fieldset></td>
    12991299        </tr>
  • src/wp-includes/deprecated.php

    diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php
    index 643a0bc7f5..3c6cd82e7c 100644
    a b function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = ' 
    685685
    686686        $show_option_none = '';
    687687        if ( $optionnone )
    688                 $show_option_none = __('None');
     688                $show_option_none = _x( 'None', 'Categories dropdown (show_option_none parameter)' );
    689689
    690690        $vars = compact('show_option_all', 'show_option_none', 'orderby', 'order',
    691691                                        'show_last_update', 'show_count', 'hide_empty', 'selected', 'exclude');
  • src/wp-includes/media-template.php

    diff --git a/src/wp-includes/media-template.php b/src/wp-includes/media-template.php
    index 87aa052171..71edaed547 100644
    a b function wp_print_media_templates() { 
    735735                                                <?php esc_html_e( 'Right' ); ?>
    736736                                        </option>
    737737                                        <option value="none" selected>
    738                                                 <?php esc_html_e( 'None' ); ?>
     738                                                <?php esc_html_x( 'None', 'Alignment' ); ?>
    739739                                        </option>
    740740                                </select>
    741741                        </span>
    function wp_print_media_templates() { 
    762762                                <option value="file">
    763763                        <# } else { #>
    764764                                <option value="none" selected>
    765                                         <?php esc_html_e( 'None' ); ?>
     765                                        <?php esc_html_x( 'None', 'Embedded player type' ); ?>
    766766                                </option>
    767767                                <option value="file">
    768768                        <# } #>
    function wp_print_media_templates() { 
    847847                                        <?php esc_html_e( 'Media File' ); ?>
    848848                                </option>
    849849                                <option value="none" <# if ( 'none' == wp.media.galleryDefaults.link ) { #>selected="selected"<# } #>>
    850                                         <?php esc_html_e( 'None' ); ?>
     850                                        <?php esc_html_x( 'None', 'Media link target' ); ?>
    851851                                </option>
    852852                        </select>
    853853                </span>
    function wp_print_media_templates() { 
    991991                                                <?php esc_html_e( 'Right' ); ?>
    992992                                        </button>
    993993                                        <button class="button active" value="none">
    994                                                 <?php esc_html_e( 'None' ); ?>
     994                                                <?php esc_html_x( 'None', 'Alignment' ); ?>
    995995                                        </button>
    996996                                </span>
    997997                        </span>
    function wp_print_media_templates() { 
    10081008                                                <?php esc_html_e( 'Custom URL' ); ?>
    10091009                                        </button>
    10101010                                        <button class="button active" value="none">
    1011                                                 <?php esc_html_e( 'None' ); ?>
     1011                                                <?php esc_html_x( 'None', 'Media URL' ); ?>
    10121012                                        </button>
    10131013                                </span>
    10141014                        </span>
    function wp_print_media_templates() { 
    10551055                                                                        <?php esc_html_e( 'Right' ); ?>
    10561056                                                                </button>
    10571057                                                                <button class="button active" value="none">
    1058                                                                         <?php esc_html_e( 'None' ); ?>
     1058                                                                        <?php esc_html_x( 'None', 'Alignment' ); ?>
    10591059                                                                </button>
    10601060                                                        </span>
    10611061                                                </span>
    function wp_print_media_templates() { 
    11311131                                                                <?php esc_html_e( 'Custom URL' ); ?>
    11321132                                                        </option>
    11331133                                                        <option value="none">
    1134                                                                 <?php esc_html_e( 'None' ); ?>
     1134                                                                <?php esc_html_x( 'None', 'Media URL' ); ?>
    11351135                                                        </option>
    11361136                                                </select>
    11371137                                        </span>
    function wp_print_media_templates() { 
    12511251                                                <span class="button-group button-large" data-setting="preload">
    12521252                                                        <button class="button" value="auto"><?php _ex( 'Auto', 'auto preload' ); ?></button>
    12531253                                                        <button class="button" value="metadata"><?php _e( 'Metadata' ); ?></button>
    1254                                                         <button class="button active" value="none"><?php _e( 'None' ); ?></button>
     1254                                                        <button class="button active" value="none"><?php _x( 'None', 'Preload type' ); ?></button>
    12551255                                                </span>
    12561256                                        </span>
    12571257                                </fieldset>
    function wp_print_media_templates() { 
    13501350                                                <span class="button-group button-large" data-setting="preload">
    13511351                                                        <button class="button" value="auto"><?php _ex( 'Auto', 'auto preload' ); ?></button>
    13521352                                                        <button class="button" value="metadata"><?php _e( 'Metadata' ); ?></button>
    1353                                                         <button class="button active" value="none"><?php _e( 'None' ); ?></button>
     1353                                                        <button class="button active" value="none"><?php _x( 'None', 'Preload type' ); ?></button>
    13541354                                                </span>
    13551355                                        </span>
    13561356                                </fieldset>