Make the preview message consistent. Fixes #6238 props mdawaffe.

git-svn-id: https://develop.svn.wordpress.org/trunk@7316 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-03-15 19:26:17 +00:00
parent c42b3261dc
commit b960c085bb
1 changed files with 2 additions and 2 deletions

View File

@ -482,8 +482,8 @@ function wp_just_in_time_script_localization() {
wp_localize_script( 'tiny_mce', 'wpTinyMCEConfig', array( 'defaultEditor' => wp_default_editor() ) );
wp_localize_script( 'autosave', 'autosaveL10n', array(
'autosaveInterval' => AUTOSAVE_INTERVAL,
'previewPageText' => __('View this Page'),
'previewPostText' => __('View this Post'),
'previewPageText' => __('Preview this Page'),
'previewPostText' => __('Preview this Post'),
'requestFile' => get_option( 'siteurl' ) . '/wp-admin/admin-ajax.php',
'savingText' => __('Saving Draft…')
) );