- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-links-list-table.php
r17349 r18247 10 10 class WP_Links_List_Table extends WP_List_Table { 11 11 12 function WP_Links_List_Table() {13 parent:: WP_List_Table( array(12 function __construct() { 13 parent::__construct( array( 14 14 'plural' => 'bookmarks', 15 15 ) ); … … 78 78 return array( 79 79 'cb' => '<input type="checkbox" />', 80 'name' => _ _( 'Name' ),80 'name' => _x( 'Name', 'link name' ), 81 81 'url' => __( 'URL' ), 82 82 'categories' => __( 'Categories' ),
Note: See TracChangeset
for help on using the changeset viewer.