Changeset 50032
- Timestamp:
- 01/27/2021 09:02:12 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/package-lock.json
r50017 r50032 6020 6020 "browserify-aes": { 6021 6021 "version": "1.2.0", 6022 "resolved": "http s://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",6022 "resolved": "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", 6023 6023 "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", 6024 6024 "dev": true, -
trunk/src/wp-admin/includes/file.php
r49942 r50032 2247 2247 <span class="field-title"><?php echo $label_pass; ?></span> 2248 2248 <input name="password" type="password" id="password" value="<?php echo $password_value; ?>"<?php disabled( defined( 'FTP_PASS' ) ); ?> /> 2249 <em>2250 2249 <?php 2251 2250 if ( ! defined( 'FTP_PASS' ) ) { 2252 2251 _e( 'This password will not be stored on the server.' );} 2253 2252 ?> 2254 </em>2255 2253 </label> 2256 2254 </div> -
trunk/src/wp-admin/plugin-editor.php
r49958 r50032 289 289 </p> 290 290 <?php else : ?> 291 <p> <em>291 <p> 292 292 <?php 293 293 printf( … … 297 297 ); 298 298 ?> 299 </ em></p>299 </p> 300 300 <?php endif; ?> 301 301 -
trunk/src/wp-admin/theme-editor.php
r49958 r50032 316 316 </p> 317 317 <?php else : ?> 318 <p> <em>318 <p> 319 319 <?php 320 320 printf( … … 324 324 ); 325 325 ?> 326 </ em></p>326 </p> 327 327 <?php endif; ?> 328 328 </div> -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php
r46586 r50032 47 47 <p> 48 48 <?php echo _x( 'Where do you want this menu to appear?', 'menu locations' ); ?> 49 <em class="new-menu-locations-widget-note"> 50 <?php 51 printf( 52 /* translators: 1: Documentation URL, 2: Additional link attributes, 3: Accessibility text. */ 53 _x( '(If you plan to use a menu <a href="%1$s" %2$s>widget%3$s</a>, skip this step.)', 'menu locations' ), 54 __( 'https://wordpress.org/support/article/wordpress-widgets/' ), 55 ' class="external-link" target="_blank"', 56 sprintf( 57 '<span class="screen-reader-text"> %s</span>', 58 /* translators: Accessibility text. */ 59 __( '(opens in a new tab)' ) 60 ) 61 ); 62 ?> 63 </em> 49 <?php 50 printf( 51 /* translators: 1: Documentation URL, 2: Additional link attributes, 3: Accessibility text. */ 52 _x( '(If you plan to use a menu <a href="%1$s" %2$s>widget%3$s</a>, skip this step.)', 'menu locations' ), 53 __( 'https://wordpress.org/support/article/wordpress-widgets/' ), 54 ' class="external-link" target="_blank"', 55 sprintf( 56 '<span class="screen-reader-text"> %s</span>', 57 /* translators: Accessibility text. */ 58 __( '(opens in a new tab)' ) 59 ) 60 ); 61 ?> 64 62 </p> 65 63 <# } else { #> -
trunk/src/wp-signup.php
r49992 r50032 985 985 printf( 986 986 /* translators: %s: Site address. */ 987 '<p> <em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>',987 '<p>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</p>', 988 988 '<strong>' . $newblog . '</strong>' 989 989 ); … … 991 991 printf( 992 992 /* translators: %s: Site address. */ 993 '<p> <em>' . __( 'The site you were looking for, %s, does not exist.' ) . '</em></p>',993 '<p>' . __( 'The site you were looking for, %s, does not exist.' ) . '</p>', 994 994 '<strong>' . $newblog . '</strong>' 995 995 );
Note: See TracChangeset
for help on using the changeset viewer.