Explorar el Código

sync Japanese document with r15746.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15759 44c647ce-9c0f-0410-b52a-842ac1e357ba
takagi hace 16 años
padre
commit
212924c5e0

+ 3 - 3
documentation/manual/ja/module_specs/Zend_Cache-Frontends.xml

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
-<!-- EN-Revision: 15745 -->
+<!-- EN-Revision: 15746 -->
 <sect1 id="zend.cache.frontends">
     <title><classname>Zend_Cache</classname> のフロントエンド</title>
 
@@ -517,7 +517,7 @@ $result = $cache->foobar2('1', '2');
                      <tbody>
                          <row>
                               <entry><code>master_file (非推奨)</code></entry>
-                              <entry><code>string</code></entry>
+                              <entry><type>String</type></entry>
                               <entry><code></code></entry>
                               <entry>
                                   マスタファイルへのフルパス。
@@ -533,7 +533,7 @@ $result = $cache->foobar2('1', '2');
                          </row>
                          <row>
                               <entry><code>master_files_mode</code></entry>
-                              <entry><code>string</code></entry>
+                              <entry><type>String</type></entry>
                               <entry><classname>Zend_Cache_Frontend_File::MODE_OR</classname></entry>
                               <entry>
                                   <classname>Zend_Cache_Frontend_File::MODE_AND</classname> あるいは

+ 3 - 3
documentation/manual/ja/module_specs/Zend_Navigation-Pages-URI.xml

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
-<!-- EN-Revision: 15743 -->
+<!-- EN-Revision: 15746 -->
 <sect2 id="zend.navigation.pages.uri">
     <title>Zend_Navigation_Page_Uri</title>
 
@@ -12,7 +12,7 @@
         画面の共通オプションに加えて、URI画面にはたった一つのオプション、
         <code>uri</code>があります。
         <code>$page->getHref()</code>を呼び出すときに<code>uri</code>が戻されます。
-        それは<code>string</code>かまたは<constant>NULL</constant>です。
+        それは<type>String</type>かまたは<constant>NULL</constant>です。
     </para>
 
     <note>
@@ -43,7 +43,7 @@
             <tbody>
                 <row>
                     <entry><code>uri</code></entry>
-                    <entry><code>string</code></entry>
+                    <entry><type>String</type></entry>
                     <entry><constant>NULL</constant></entry>
                     <entry>
                         画面へのURI。さまざまな文字列またはnullになりうる。

+ 3 - 3
documentation/manual/ja/module_specs/Zend_XmlRpc_Client.xml

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
-<!-- EN-Revision: 15745 -->
+<!-- EN-Revision: 15746 -->
 <sect1 id="zend.xmlrpc.client">
     <title>Zend_XmlRpc_Client</title>
 
@@ -49,7 +49,7 @@ echo $client->call('test.sayHello');
         <para>
             リモートメソッドのコールによって返される XML-RPC の値は、
             自動的に PHP のネイティブ型に変換されます。
-            上の例では PHP の <code>string</code> が返されるので、
+            上の例では PHP の <type>String</type> が返されるので、
             それをそのまま使用することができます。
         </para>
 
@@ -107,7 +107,7 @@ $result = $client->call('test.sayHello', array($arg1, $arg2));
             <title>PHP ネイティブ変数をパラメータとして渡す</title>
             <para>
                 <code>call()</code> のパラメータをネイティブの PHP
-                型で渡します。つまり <code>string</code>、
+                型で渡します。つまり <type>String</type>、
                 <code>integer</code>、<code>float</code>、
                 <type>Boolean</type>、<type>Array</type> あるいは
                 <code>object</code> で渡すということです。