Ticket #18197: 18197.translatable-links.3.patch
File 18197.translatable-links.3.patch, 1.2 KB (added by , 13 years ago) |
---|
-
wp-includes/admin-bar.php
122 122 'parent' => 'wp-logo-secondary', 123 123 'id' => 'wporg', 124 124 'title' => __('WordPress.org'), 125 'href' => 'http://wordpress.org',125 'href' => __('http://wordpress.org'), 126 126 ) ); 127 127 128 128 // Add codex link … … 130 130 'parent' => 'wp-logo-secondary', 131 131 'id' => 'documentation', 132 132 'title' => __('Documentation'), 133 'href' => 'http://codex.wordpress.org',133 'href' => __('http://codex.wordpress.org'), 134 134 ) ); 135 135 136 136 // Add forums link … … 138 138 'parent' => 'wp-logo-secondary', 139 139 'id' => 'support-forums', 140 140 'title' => __('Support Forums'), 141 'href' => 'http://wordpress.org/support/',141 'href' => __('http://wordpress.org/support/'), 142 142 ) ); 143 143 144 144 // Add feedback link … … 146 146 'parent' => 'wp-logo-secondary', 147 147 'id' => 'feedback', 148 148 'title' => __('Feedback'), 149 'href' => 'http://wordpress.org/support/forum/requests-and-feedback',149 'href' => __('http://wordpress.org/support/forum/requests-and-feedback'), 150 150 ) ); 151 151 } 152 152