Переглянути джерело

[DOCUMENTATION] English:

- reverting r17371

  Please note that lexographical and typographical quotes are not allowed within our docu standard.
  Use ASCII quotes which are rendered the same in every format and language.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17372 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 роки тому
батько
коміт
033380d783

+ 8 - 8
documentation/manual/en/module_specs/Zend_Application-QuickStart.xml

@@ -13,7 +13,7 @@
     <para>
     <para>
         If you plan on using <classname>Zend_Tool</classname> to create your project,
         If you plan on using <classname>Zend_Tool</classname> to create your project,
         continue reading below. If you will be adding
         continue reading below. If you will be adding
-        <classname>Zend_Application</classname> to an existing project, youll want to
+        <classname>Zend_Application</classname> to an existing project, you'll want to
         <link linkend="zend.application.quick-start.manual">skip ahead</link>.
         <link linkend="zend.application.quick-start.manual">skip ahead</link>.
     </para>
     </para>
 
 
@@ -87,7 +87,7 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
 ]]></programlisting>
 ]]></programlisting>
 
 
         <para>
         <para>
-            Youll also note that a configuration file,
+            You'll also note that a configuration file,
             <filename>newproject/application/configs/application.ini</filename>, is
             <filename>newproject/application/configs/application.ini</filename>, is
             created. It has the following contents:
             created. It has the following contents:
         </para>
         </para>
@@ -219,7 +219,7 @@ phpSettings.display_errors = 1
 ]]></programlisting>
 ]]></programlisting>
 
 
         <para>
         <para>
-            Now, lets modify your gateway script,
+            Now, let's modify your gateway script,
             <filename>public/index.php</filename>. If the file does not exist, create
             <filename>public/index.php</filename>. If the file does not exist, create
             it; otherwise, replace it with the following contents:
             it; otherwise, replace it with the following contents:
         </para>
         </para>
@@ -257,7 +257,7 @@ $application->bootstrap()
 
 
         <para>
         <para>
             You may note that the application environment constant value looks
             You may note that the application environment constant value looks
-            for an environment variable “APPLICATION_ENV”. We recommend setting
+            for an environment variable "APPLICATION_ENV". We recommend setting
             this in your web server environment. In Apache, you can set this
             this in your web server environment. In Apache, you can set this
             either in your vhost definition, or in your <filename>.htaccess</filename>
             either in your vhost definition, or in your <filename>.htaccess</filename>
             file. We recommend the following contents for your
             file. We recommend the following contents for your
@@ -305,14 +305,14 @@ RewriteRule ^.*$ index.php [NC,L]
         </para>
         </para>
 
 
         <para>
         <para>
-            In this section, well look at adding two resources to your
-            application. First, we'll set up your layouts, and then well
+            In this section, we'll look at adding two resources to your
+            application. First, we'll set up your layouts, and then we'll
             customize your view object.
             customize your view object.
         </para>
         </para>
 
 
         <para>
         <para>
             One of the standard resources provided with
             One of the standard resources provided with
-            <classname>Zend_Application</classname> is the “layout” resource. This
+            <classname>Zend_Application</classname> is the "layout" resource. This
             resource expects you to define configuration values which it will
             resource expects you to define configuration values which it will
             then use to configure your <classname>Zend_Layout</classname> instance.
             then use to configure your <classname>Zend_Layout</classname> instance.
         </para>
         </para>
@@ -344,7 +344,7 @@ phpSettings.display_errors = 1
 ]]></programlisting>
 ]]></programlisting>
 
 
         <para>
         <para>
-            If you havent already, create the directory
+            If you haven't already, create the directory
             <filename>application/layouts/scripts/</filename>, and the file
             <filename>application/layouts/scripts/</filename>, and the file
             <filename>layout.phtml</filename> within that directory. A good starting
             <filename>layout.phtml</filename> within that directory. A good starting
             layout is as follows (and ties in with the view resource covered
             layout is as follows (and ties in with the view resource covered