Make WordPress Core


Ignore:
Timestamp:
09/05/2006 06:52:24 PM (20 years ago)
Author:
ryan
Message:

i18n fixes from nbachiyski. fixes #3109

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r4144 r4165  
    948948    $ifp = @ fopen($new_file, 'wb');
    949949    if ( ! $ifp )
    950         return array('error' => "Could not write file $new_file.");
     950        return array('error' => sprintf(__('Could not write file %s'), $new_file));
    951951
    952952    $success = @ fwrite($ifp, $bits);
     
    10921092    }
    10931093
    1094     return __('Are you sure you want to do this');
     1094    return __('Are you sure you want to do this?');
    10951095}
    10961096
Note: See TracChangeset for help on using the changeset viewer.