From b161634c82e55f878bac7f4d224cc2d4e3fb8594 Mon Sep 17 00:00:00 2001 From: azaozz Date: Tue, 2 Jun 2009 00:36:49 +0000 Subject: [PATCH] Take

out of translatable string, props nbachiyski, fixes #9995 git-svn-id: http://svn.automattic.com/wordpress/trunk@11505 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/themes.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/wp-admin/themes.php b/wp-admin/themes.php index e8feeaccca..752b12bbe5 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -112,11 +112,11 @@ function theme_update_available( $theme ) { $update_onclick = 'onclick="if ( confirm(\'' . esc_js( __("Upgrading this theme will lose any customizations you have made. 'Cancel' to stop, 'OK' to upgrade.") ) . '\') ) {return true;}return false;"'; if ( ! current_user_can('update_themes') ) - printf( __('

There is a new version of %1$s available. View version %3$s Details.

'), $theme_name, $details_url, $update['new_version']); + printf( '

' . __('There is a new version of %1$s available. View version %3$s Details.') . '

', $theme_name, $details_url, $update['new_version']); else if ( empty($update->package) ) - printf( __('

There is a new version of %1$s available. View version %3$s Details automatic upgrade unavailable for this theme.

'), $theme_name, $details_url, $update['new_version']); + printf( '

' . __('There is a new version of %1$s available. View version %3$s Details automatic upgrade unavailable for this theme.') . '

', $theme_name, $details_url, $update['new_version']); else - printf( __('

There is a new version of %1$s available. View version %3$s Details or upgrade automatically.

'), $theme_name, $details_url, $update['new_version'], $update_url, $update_onclick ); + printf( '

' . __('There is a new version of %1$s available. View version %3$s Details or upgrade automatically.') . '

', $theme_name, $details_url, $update['new_version'], $update_url, $update_onclick ); } } @@ -226,7 +226,8 @@ foreach ( $cols as $col => $theme_name ) { printf(__('%1$s %2$s by %3$s'), $title, $version, $author) ; ?>

- +

%2$s. The stylesheet files are located in %3$s. %4$s uses templates from %5$s. Changes made to the templates will affect both themes.'), $title, $template_dir, $stylesheet_dir, $title, $parent_theme); ?>

%2$s.'), $title, $template_dir, $stylesheet_dir); ?>