Changeset 45926 for trunk/src/wp-admin/link-manager.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/link-manager.php
r45602 r45926 54 54 'title' => __( 'Overview' ), 55 55 'content' => 56 '<p>' . sprintf( __( 'You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in the WordPress community are included as examples.' ), 'widgets.php' ) . '</p>' . 56 '<p>' . sprintf( 57 /* translators: %s: URL to Widgets screen */ 58 __( 'You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in the WordPress community are included as examples.' ), 59 'widgets.php' 60 ) . '</p>' . 57 61 '<p>' . __( 'Links may be separated into Link Categories; these are different than the categories used on your posts.' ) . '</p>' . 58 62 '<p>' . __( 'You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.' ) . '</p>', … … 110 114 echo '<div id="message" class="updated notice is-dismissible"><p>'; 111 115 $deleted = (int) $_REQUEST['deleted']; 116 /* translators: %s: number of links */ 112 117 printf( _n( '%s link deleted.', '%s links deleted.', $deleted ), $deleted ); 113 118 echo '</p></div>';
Note: See TracChangeset
for help on using the changeset viewer.