From a2af257bf4eac4ee1205a1529b9897b8e26e4ccf Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 27 Feb 2008 17:19:58 +0000 Subject: [PATCH] gettext fixes from takayukister. fixes #6018 git-svn-id: https://develop.svn.wordpress.org/trunk@7063 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/class-wp-filesystem-ftpext.php | 6 +++--- wp-admin/includes/dashboard.php | 2 +- wp-includes/functions.php | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/wp-admin/includes/class-wp-filesystem-ftpext.php b/wp-admin/includes/class-wp-filesystem-ftpext.php index 70e59c7878..f128ac0b30 100644 --- a/wp-admin/includes/class-wp-filesystem-ftpext.php +++ b/wp-admin/includes/class-wp-filesystem-ftpext.php @@ -89,12 +89,12 @@ class WP_Filesystem_FTPext{ if( empty( $base ) ) $base = '/'; if( '/' != substr($base, -1) ) $base .= '/'; - if($echo) echo __('Changing to ') . $base .'
'; + if($echo) echo sprintf(__('Changing to %s'), $base) .'
'; if( false === ftp_chdir($this->link, $base) ) return false; if( $this->exists($base . 'wp-settings.php') ){ - if($echo) echo __('Found ') . $base . 'wp-settings.php
'; + if($echo) echo sprintf(__('Found %s'), $base . 'wp-settings.php') . '
'; $this->wp_base = $base; return $this->wp_base; } @@ -109,7 +109,7 @@ class WP_Filesystem_FTPext{ foreach($arrPath as $key=>$folder){ if( $this->is_dir($base . $folder) ){ - if($echo) echo __('Found ') . $folder . ' ' . __('Changing to') . ' ' . $base . $folder . '/
'; + if($echo) echo sprintf(__('Found %s'), $folder) . ' ' . sprintf(__('Changing to %s'), $base . $folder . '/') . '
'; return $this->find_base_dir($base . $folder . '/',$echo); } } diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 540fa50f6a..5f4e236e15 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -272,7 +272,7 @@ function wp_dashboard_recent_comments( $sidebar_args ) { $comment_post_title = get_the_title( $comment->comment_post_ID ); $comment_post_link = "$comment_post_title"; $comment_link = '#'; - $comment_meta = sprintf( __( 'From %s on %s %s' ), get_comment_author(), $comment_post_link, $comment_link ); + $comment_meta = sprintf( __( 'From %1$s on %2$s %3$s' ), get_comment_author(), $comment_post_link, $comment_link ); if ( $is_first ) : $is_first = false; ?> diff --git a/wp-includes/functions.php b/wp-includes/functions.php index b6bd681fd6..33e2e88088 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1638,9 +1638,9 @@ function _deprecated_function($function, $version, $replacement=null) { // Allow plugin to filter the output error trigger if( defined('WP_DEBUG') && ( true === WP_DEBUG ) && apply_filters( 'deprecated_function_trigger_error', true )) { if( !is_null($replacement) ) - trigger_error( printf( __("%s is deprecated since version %s! Use %s instead."), $function, $version, $replacement ) ); + trigger_error( printf( __("%1$s is deprecated since version %2$s! Use %3$s instead."), $function, $version, $replacement ) ); else - trigger_error( printf( __("%s is deprecated since version %s with no alternative available."), $function, $version ) ); + trigger_error( printf( __("%1$s is deprecated since version %2$s with no alternative available."), $function, $version ) ); } } @@ -1673,9 +1673,9 @@ function _deprecated_file($file, $version, $replacement=null) { // Allow plugin to filter the output error trigger if( defined('WP_DEBUG') && ( true === WP_DEBUG ) && apply_filters( 'deprecated_file_trigger_error', true )) { if( !is_null($replacement) ) - trigger_error( printf( __("%s is deprecated since version %s! Use %s instead."), $file, $version, $replacement ) ); + trigger_error( printf( __("%1$s is deprecated since version %2$s! Use %3$s instead."), $file, $version, $replacement ) ); else - trigger_error( printf( __("%s is deprecated since version %s with no alternative available."), $file, $version ) ); + trigger_error( printf( __("%1$s is deprecated since version %2$s with no alternative available."), $file, $version ) ); } } ?>