summaryrefslogtreecommitdiffstatshomepage
path: root/wp-admin/setup-config.php
diff options
context:
space:
mode:
authorAndrew Nacin <nacin@git.wordpress.org>2012-09-16 18:26:14 +0000
committerAndrew Nacin <nacin@git.wordpress.org>2012-09-16 18:26:14 +0000
commit7f65ab3f57032d052f071a00985aea91ac2526a0 (patch)
tree17bdeefecec3bdad2511721fbb90bcd8fa9e8e53 /wp-admin/setup-config.php
parent29d8f1bad7659c93f08a3c27c4c3ac20189fa6cd (diff)
downloadwordpress-7f65ab3f57032d052f071a00985aea91ac2526a0.tar.gz
wordpress-7f65ab3f57032d052f071a00985aea91ac2526a0.zip
Curly quotes for setup-config strings.
git-svn-id: https://develop.svn.wordpress.org/trunk@21870 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'wp-admin/setup-config.php')
-rw-r--r--wp-admin/setup-config.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php
index b3931dde2b..8341f38738 100644
--- a/wp-admin/setup-config.php
+++ b/wp-admin/setup-config.php
@@ -116,7 +116,7 @@ switch($step) {
<li><?php _e( 'Database host' ); ?></li>
<li><?php _e( 'Table prefix (if you want to run more than one WordPress in a single database)' ); ?></li>
</ol>
-<p><strong><?php _e( "If for any reason this automatic file creation doesn't work, don't worry. All this does is fill in the database information to a configuration file. You may also simply open <code>wp-config-sample.php</code> in a text editor, fill in your information, and save it as <code>wp-config.php</code>." ); ?></strong></p>
+<p><strong><?php _e( "If for any reason this automatic file creation doesn&#8217;t work, don&#8217;t worry. All this does is fill in the database information to a configuration file. You may also simply open <code>wp-config-sample.php</code> in a text editor, fill in your information, and save it as <code>wp-config.php</code>." ); ?></strong></p>
<p><?php _e( "In all likelihood, these items were supplied to you by your Web Host. If you do not have this information, then you will need to contact them before you can continue. If you&#8217;re all ready&hellip;" ); ?></p>
<p class="step"><a href="setup-config.php?step=1<?php if ( isset( $_GET['noapi'] ) ) echo '&amp;noapi'; ?>" class="button"><?php _e( 'Let&#8217;s go!' ); ?></a></p>
@@ -127,7 +127,7 @@ switch($step) {
setup_config_display_header();
?>
<form method="post" action="setup-config.php?step=2">
- <p><?php _e( "Below you should enter your database connection details. If you're not sure about these, contact your host." ); ?></p>
+ <p><?php _e( "Below you should enter your database connection details. If you&#8217;re not sure about these, contact your host." ); ?></p>
<table class="form-table">
<tr>
<th scope="row"><label for="dbname"><?php _e( 'Database Name' ); ?></label></th>
@@ -256,14 +256,14 @@ switch($step) {
if ( ! is_writable(ABSPATH) ) :
setup_config_display_header();
?>
-<p><?php _e( "Sorry, but I can't write the <code>wp-config.php</code> file." ); ?></p>
+<p><?php _e( "Sorry, but I can&#8217;t write the <code>wp-config.php</code> file." ); ?></p>
<p><?php _e( 'You can create the <code>wp-config.php</code> manually and paste the following text into it.' ); ?></p>
-<textarea cols="98" rows="15" class="code" readonly="readonly"><?php
+<textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"><?php
foreach( $config_file as $line ) {
echo htmlentities($line, ENT_COMPAT, 'UTF-8');
}
?></textarea>
-<p><?php _e( 'After you\'ve done that, click "Run the install."' ); ?></p>
+<p><?php _e( 'After you&#8217;ve done that, click &#8220;Run the install.&#8221;' ); ?></p>
<p class="step"><a href="install.php" class="button"><?php _e( 'Run the install' ); ?></a></p>
<?php
else :
@@ -275,7 +275,7 @@ switch($step) {
chmod(ABSPATH . 'wp-config.php', 0666);
setup_config_display_header();
?>
-<p><?php _e( "All right sparky! You've made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to&hellip;" ); ?></p>
+<p><?php _e( "All right sparky! You&#8217;ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to&hellip;" ); ?></p>
<p class="step"><a href="install.php" class="button"><?php _e( 'Run the install' ); ?></a></p>
<?php