Ticket #18197: 18197.translatable-links.patch
File 18197.translatable-links.patch, 889 bytes (added by , 13 years ago) |
---|
-
wp-includes/admin-bar.php
96 96 'parent' => 'wp-logo', 97 97 'id' => 'documentation', 98 98 'title' => __('Documentation'), 99 'href' => 'http://codex.wordpress.org',99 'href' => __('http://codex.wordpress.org'), 100 100 ) ); 101 101 102 102 // Add forums link … … 104 104 'parent' => 'wp-logo', 105 105 'id' => 'support-forums', 106 106 'title' => __('Support Forums'), 107 'href' => 'http://wordpress.org/support/',107 'href' => __('http://wordpress.org/support/'), 108 108 ) ); 109 109 110 110 // Add WordPress.org link … … 112 112 'parent' => 'wp-logo', 113 113 'id' => 'wporg', 114 114 'title' => __('WordPress.org'), 115 'href' => 'http://wordpress.org',115 'href' => __('http://wordpress.org'), 116 116 ) ); 117 117 } 118 118