diff --git a/installation/instructions.html b/installation/instructions.html index 6a74bf81e..6db25c9c2 100644 --- a/installation/instructions.html +++ b/installation/instructions.html @@ -51,10 +51,10 @@

前提条件

Composerをあなたのマシンにインストールする方法はこちらのページを参照してください。

-

Command Line Installation

-

using Oil

+

コマンドラインからのインストール

+

Oil を使用する

-

Our quick installer is a stripped down interface for the Oil package. It allows you to create a new project with one command. You will also no longer need to use 'php' in your oil commands.

+

我々のクイックインストーラは Oil パッケージ用に書き下ろされたインターフェースです。これを使用すると 1つのコマンドで新しいプロジェクトを生成することができます。oil コマンドで php を使用する必要もありません。

クイックインストーラをインストールするためには、シェルを開き次のコマンドを実行するだけです:

@@ -76,9 +76,9 @@

using Oil

Note: これは、必要なディレクトリを書き込み可能にするための $ oil refine install も実行します。 そして、Composer により定義された依存ライブラリを取得する $ composer update も実行します。

-

This currently only works on *nix systems (Linux, OS X, Unix, etc).

+

この方法は現在 *nix システム (Linux, OS X, Unix など) でのみ動作します。

-

using Composer

+

Composer を使用する

これはバーチャルホストのルートディレクトリに FuelPHP フレームワークをデフォルトインストールします。

@@ -91,21 +91,21 @@

GitHub から最新のリリースを clone する

最後のドットを忘れないでください。さもないと、バーチャルホストのルートディレクトリに fuel というフォルダが作成されます!

-

Alternatively, you can use composer to install everything in one go:

+

別の方法として、Composer を使いすべてをインストールすることもできます:

$ composer create-project fuel/fuel --prefer-dist .
 

- The first method has the advantage that you install the part that will contain your application installed as a git repository. You can change - the origin of that repository to your own git server, so your application development is under version control. + 最初の方法は、gitリポジトリとしてインストールされたアプリケーションを含めてインストールできる利点があります。 + リポジトリを独自の git サーバー変更することができます。これにより、あなたのアプリケーション開発はバージョン管理下にあります。

- The second method creates a complete package with all dependencies. If you want to add that to a git repository, you will also add all - dependencies to it. You would like to take this route if your target server on which you run production doesn't have the option to run - composer locally to download application dependencies. + 2つ目の方法は、全ての依存関係を持つ完全なパッケージを作成します。もし、 git リポジトリに追加したい場合は、全ての依存関係をそれに追加します。 + もし、全てのアプリケーションの依存関係をダウンロードするためにローカルで composer を実行する手段がない production をターゲットサーバとする場合は、 + こちらを利用した方がよいでしょう。

-

Clone the latest development branch from github

+

GitHub から最新の開発ブランチを clone する

$ cd /where/ever/your/virtualhost/root/is
 $ git clone git://github.com/fuel/fuel.git -b 1.9/develop .
@@ -118,13 +118,13 @@ 

Clone the latest development branch from github

$ composer create-project fuel/fuel:dev-1.9/develop --prefer-source .
 
-

Both will do exactlt the same, and install the latest development version as local git repository clones.

+

どちらも全く同じことを行い、ローカルの git リポジトリにクローンとして最新の開発版をインストールします。

Zip ファイルをダウンロードする

- If for some reason you can't have access to composer, you can also Download the Fuel Framework in a single ZIP file. - It contains exactly the same as the command composer create-project fuel/fuel --prefer-dist . would produce. + 何らかの理由で、 Composer にアクセスできない場合は、 Zip ファイルでFuel Framework をダウンロードすることができます。 + これは、 Composer コマンド create-project fuel/fuel --prefer-dist . が生成するものと全く同じものを含んでいます。

Altering the default installation