Changeset 58774
- Timestamp:
- 07/21/2024 06:56:45 PM (2 months ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r58682 r58774 1355 1355 </label> 1356 1356 <label for="friendship"> 1357 <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> /> <?php /* translators: xfn (friendship relation): http://gmpg.org/xfn/ */ _ x( 'none', 'Type of relation' ); ?>1357 <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> /> <?php /* translators: xfn (friendship relation): http://gmpg.org/xfn/ */ _ex( 'none', 'Type of relation' ); ?> 1358 1358 </label> 1359 1359 </fieldset></td> … … 1406 1406 </label> 1407 1407 <label for="geographical"> 1408 <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> /> <?php /* translators: xfn (geographical relation): http://gmpg.org/xfn/ */ _ x( 'none', 'Type of relation' ); ?>1408 <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> /> <?php /* translators: xfn (geographical relation): http://gmpg.org/xfn/ */ _ex( 'none', 'Type of relation' ); ?> 1409 1409 </label> 1410 1410 </fieldset></td> … … 1435 1435 </label> 1436 1436 <label for="family"> 1437 <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> /> <?php /* translators: xfn (family relation): http://gmpg.org/xfn/ */ _ x( 'none', 'Type of relation' ); ?>1437 <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> /> <?php /* translators: xfn (family relation): http://gmpg.org/xfn/ */ _ex( 'none', 'Type of relation' ); ?> 1438 1438 </label> 1439 1439 </fieldset></td> -
trunk/src/wp-includes/media-template.php
r58284 r58774 841 841 </option> 842 842 <option value="none" selected> 843 <?php e sc_html_x( 'None', 'Alignment' ); ?>843 <?php echo esc_html_x( 'None', 'Alignment option' ); ?> 844 844 </option> 845 845 </select> … … 868 868 <# } else { #> 869 869 <option value="none" selected> 870 <?php e sc_html_x( 'None', 'Embedded player type' ); ?>870 <?php echo esc_html_x( 'None', 'Media item link option' ); ?> 871 871 </option> 872 872 <option value="file"> … … 953 953 </option> 954 954 <option value="none" <# if ( 'none' === wp.media.galleryDefaults.link ) { #>selected="selected"<# } #>> 955 <?php e sc_html_x( 'None', 'Media link target' ); ?>955 <?php echo esc_html_x( 'None', 'Media item link option' ); ?> 956 956 </option> 957 957 </select> … … 1097 1097 </button> 1098 1098 <button class="button active" value="none"> 1099 <?php e sc_html_x( 'None', 'Alignment' ); ?>1099 <?php echo esc_html_x( 'None', 'Alignment option' ); ?> 1100 1100 </button> 1101 1101 </span> … … 1114 1114 </button> 1115 1115 <button class="button active" value="none"> 1116 <?php e sc_html_x( 'None', 'Media URL' ); ?>1116 <?php echo esc_html_x( 'None', 'Media item link option' ); ?> 1117 1117 </button> 1118 1118 </span> … … 1161 1161 </button> 1162 1162 <button class="button active" value="none"> 1163 <?php e sc_html_x( 'None', 'Alignment' ); ?>1163 <?php echo esc_html_x( 'None', 'Alignment option' ); ?> 1164 1164 </button> 1165 1165 </span> … … 1237 1237 </option> 1238 1238 <option value="none"> 1239 <?php e sc_html_x( 'None', 'Media URL' ); ?>1239 <?php echo esc_html_x( 'None', 'Media item link option' ); ?> 1240 1240 </option> 1241 1241 </select> … … 1357 1357 <button class="button" value="auto"><?php _ex( 'Auto', 'auto preload' ); ?></button> 1358 1358 <button class="button" value="metadata"><?php _e( 'Metadata' ); ?></button> 1359 <button class="button active" value="none"><?php _ x( 'None', 'Preload type' ); ?></button>1359 <button class="button active" value="none"><?php _ex( 'None', 'Preload value' ); ?></button> 1360 1360 </span> 1361 1361 </span> … … 1456 1456 <button class="button" value="auto"><?php _ex( 'Auto', 'auto preload' ); ?></button> 1457 1457 <button class="button" value="metadata"><?php _e( 'Metadata' ); ?></button> 1458 <button class="button active" value="none"><?php _ x( 'None', 'Preload type' ); ?></button>1458 <button class="button active" value="none"><?php _ex( 'None', 'Preload value' ); ?></button> 1459 1459 </span> 1460 1460 </span>
Note: See TracChangeset
for help on using the changeset viewer.