Mark links to wordpress.org resources for translation. Props SergeyBiryukov. see #18197

git-svn-id: https://develop.svn.wordpress.org/trunk@19102 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2011-11-01 19:46:41 +00:00
parent e754641764
commit c8ae4ba953
1 changed files with 4 additions and 4 deletions

View File

@ -122,7 +122,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) {
'parent' => 'wp-logo-secondary',
'id' => 'wporg',
'title' => __('WordPress.org'),
'href' => 'http://wordpress.org',
'href' => __('http://wordpress.org'),
) );
// Add codex link
@ -130,7 +130,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) {
'parent' => 'wp-logo-secondary',
'id' => 'documentation',
'title' => __('Documentation'),
'href' => 'http://codex.wordpress.org',
'href' => __('http://codex.wordpress.org'),
) );
// Add forums link
@ -138,7 +138,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) {
'parent' => 'wp-logo-secondary',
'id' => 'support-forums',
'title' => __('Support Forums'),
'href' => 'http://wordpress.org/support/',
'href' => __('http://wordpress.org/support/'),
) );
// Add feedback link
@ -146,7 +146,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) {
'parent' => 'wp-logo-secondary',
'id' => 'feedback',
'title' => __('Feedback'),
'href' => 'http://wordpress.org/support/forum/requests-and-feedback',
'href' => __('http://wordpress.org/support/forum/requests-and-feedback'),
) );
}