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

git-svn-id: http://svn.automattic.com/wordpress/trunk@19102 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2011-11-01 19:46:41 +00:00
parent 0ca4df123a
commit e7dde2bc7f
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'),
) );
}