Skip to content

Commit 59dd605

Browse files
committed
行数を本家英語版と合わせる
1 parent 5d5a6d2 commit 59dd605

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

classes/fieldset/fieldset.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,7 @@ <h4 class="method" id="method_add_before">add_before($name, $label = '', array $
384384

385385
<article>
386386
<h4 class="method" id="method_add_after">add_after($name, $label = '', array $attributes = array(), array $rules = array(), $fieldname = null)</h4>
387-
388-
<p><a href="field.html">Fieldset_Field</a> インスタンスを作成し、現在のFieldsetの<strong>$fieldname</strong>で識別される定義済みフィールドの後に追加する。</p>l
387+
<p><a href="field.html">Fieldset_Field</a> インスタンスを作成し、現在の Fieldset の <strong>$fieldname</strong> で識別される定義済みフィールドの後に追加する。</p>
389388
<table class="method">
390389
<tbody>
391390
<tr>

general/mvc.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ <h3 id="views">ビュー</h3>
8585
レイアウトを変更するときに、ビューを変更しさえすれば良く、コントローラを気にする必要はなくなります。<br />
8686
したがって、ビューでは PHP は <kbd>echo</kbd><kbd>foreach</kbd> を使う程度にすべきです。</p>
8787

88+
89+
8890
<p>詳細については<a href="views.html">ビュー</a>を参照ください。</p>
8991

9092
<h3 id="viewmodels">ビューモデル</h3>

general/viewmodels.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ <h3 id="creating_viewmodels">ビューモデルの作成</h3>
6565

6666
<pre><code>class View_Index extends Viewmodel {}</code></pre>
6767

68+
<p>Then you create the view to which this belongs in <code>app/views/index.php</code>:</p>
69+
6870
<pre><code>&lt;h1&gt;&lt;?php echo $title; ?&gt;&lt;/h1&gt;
6971

7072
&lt;ul&gt;

general/views.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ <h3 id="what_is_a_view">ビューとは?</h3>
5252

5353
<h3>ビューを作成する</h3>
5454

55-
<p>FuelPHP では、 ビューは APPPATH//views ディレクトリに置きます。サブディレクトリに置くこともできます。APPPATH//views からのディレクトリパスとファイル名から命名します。従って、<em>fuel/app/views/user/join.php</em> にあるビューファイルは <kbd>user/join</kbd> と命名されます。</p>
56-
57-
<p>In FuelPHP, Views are located in the <kbd>APPPATH/views</kbd> directory. Views can be located in subdirectories. Views are named by their directory path from the fuel/app/views and the file name, so a view file located <em>fuel/app/views/user/join.php</em> would be named <kbd>user/join</kbd>.</p>
55+
<p>FuelPHP では、 ビューは <kbd>APPPATH/views</kbd> ディレクトリに置きます。サブディレクトリに置くこともできます。fuel/app/views からのディレクトリパスとファイル名から命名します。従って、<em>fuel/app/views/user/join.php</em> にあるビューファイルは <kbd>user/join</kbd> と命名されます。</p>
5856

5957
<p class="note"><strong>Note:</strong> Views are located in <kbd>APPPATH/views</kbd>. Viewmodels are located in <kbd>APPPATH/classes/view</kbd></p>
6058
<p>例:</p>

0 commit comments

Comments
 (0)