You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2013/09/10 19:36:49 UTC

[04/51] [abbrv] [partial] Move Japanese to docs/ja and Korean to docs/ko.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/cordova/storage/storage.opendatabase.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/cordova/storage/storage.opendatabase.md b/docs/ja/2.2.0/cordova/storage/storage.opendatabase.md
new file mode 100644
index 0000000..4957a62
--- /dev/null
+++ b/docs/ja/2.2.0/cordova/storage/storage.opendatabase.md
@@ -0,0 +1,75 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+openDatabase
+===============
+
+Database オブジェクトを新規作成します。
+
+    var dbShell = window.openDatabase(database_name, database_version, database_displayname, database_size);
+
+概要
+-----------
+
+window.openDatabase メソッドは新しい Database オブジェクトを返します。
+
+このメソッドは SQLite のデータベースを新規作成し、 Database オブジェクトを返します。 Database オブジェクトは、データを操作するために使います。
+
+サポートされているプラットフォーム
+-------------------
+
+- Android
+- BlackBerry WebWorks (OS 6.0 以上)
+- iPhone
+- webOS
+- Tizen
+
+使用例
+-------------
+
+    var db = window.openDatabase("test", "1.0", "Test DB", 1000000);
+
+詳細な使用例
+------------
+
+    <!DOCTYPE html>
+    <html>
+      <head>
+        <title>Storage の使用例</title>
+
+        <script type="text/javascript" charset="utf-8" src="cordova-2.2.0.js"></script>
+        <script type="text/javascript" charset="utf-8">
+
+        // Cordova の読み込み完了まで待機
+        //
+        document.addEventListener("deviceready", onDeviceReady, false);
+
+        // Cordova 準備完了
+        //
+        function onDeviceReady() {
+            var db = window.openDatabase("test", "1.0", "Test DB", 1000000);
+        }
+
+        </script>
+      </head>
+      <body>
+        <h1>使用例</h1>
+        <p>データベースを開く</p>
+      </body>
+    </html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/command-line/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/command-line/index.md b/docs/ja/2.2.0/guide/command-line/index.md
new file mode 100644
index 0000000..1daf57a
--- /dev/null
+++ b/docs/ja/2.2.0/guide/command-line/index.md
@@ -0,0 +1,190 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+# コマンドライン使用ガイド
+
+クロスプラットフォームアプリケーションの開発を簡単にするために、
+Cordova はコマンドラインツールを提供しています。
+ビルド、クリーン、エミュレーターの起動などが一つのコマンドで可能です。
+このドキュメントは、入門ガイドの代替でもあります。
+入門ガイドがデフォルト IDE で開発を始めることをサポートするのに対し、
+コマンドライン使用ガイドではコマンドラインツールを使用して
+shell ベースで Cordova プロジェクトを作成し、
+開発することを目的としています。
+
+## サポートされているプラットフォーム
+
+* [iOS](#Command-Line%20Usage_ios)
+* [Android](#Command-Line%20Usage_android)
+* [BlackBerry](#Command-Line%20Usage_blackberry)
+
+## iOS
+
+iOS コマンドラインツールはシェルスクリプトで作られており、
+XCode のコマンドラインツール (`xcode-select` や `xcodebuild` など) に依存しています。
+
+### プロジェクトの作成
+
+以下のパラメーターとともに `create` コマンドを実行します:
+
+* 新しい Cordova iOS プロジェクトへのパス
+* リバースドメインスタイルのパッケージ名
+* プロジェクト名
+
+<!-- -->
+
+    $ ./path/to/cordova-ios/bin/create /path/to/my_new_cordova_project com.example.cordova_project_name CordovaProjectName
+
+### プロジェクトのビルド
+
+    $ /path/to/my_new_cordova_project/cordova/debug
+
+### エミュレーターの起動
+
+    $ /path/to/my_new_cordova_project/cordova/emulate
+
+### ログ
+
+    $ /path/to/my_new_cordova_project/cordova/log
+
+
+## Android
+
+Android のコマンドラインツールはシェルスクリプト作られています。
+PATH に、 Android SDK の `tools` 及び `platform-tools` フォルダーが
+必ずある必要があります。
+
+### プロジェクトの作成
+
+以下のパラメーターとともに `create` コマンドを実行します:
+
+* 新しい Cordova Android プロジェクトへのパス
+* リバースドメインスタイルのパッケージ名
+* Main Activity 名
+
+<!-- -->
+
+    $ /path/to/cordova-android/bin/create /path/to/my_new_cordova_project com.example.cordova_project_name CordovaProjectName
+
+**Windows** では
+
+    $ /path/to/cordova-android/bin/create.bat /path/to/my_new_cordova_project com.example.cordova_project_name CordovaProjectName
+
+### プロジェクトのビルド
+
+    $ /path/to/my_new_cordova_project/cordova/debug
+
+**Windows** では
+
+    $ /path/to/my_new_cordova_project/cordova/debug.bat
+
+### エミュレーターの起動
+
+    $ /path/to/my_new_cordova_project/cordova/emulate
+
+**Windows** では
+
+    $ /path/to/my_new_cordova_project/cordova/emulate.bat
+
+少なくとも一つの Android Virtual Device が作成済みであることを確認して下さい。もしない場合は、 `android` コマンドを使用して作成してください。
+もし複数の AVD がある場合には、コマンド実行後に AVD を選択してください。
+
+### ログ
+
+    $ /path/to/my_new_cordova_project/cordova/log
+
+**Windows** では
+
+    $ /path/to/my_new_cordova_project/cordova/log.bat
+
+### クリーン
+
+    $ /path/to/my_new_cordova_project/cordova/clean
+
+**Windows** では
+
+    $ /path/to/my_new_cordova_project/cordova/clean.bat
+
+### クリーン、ビルド、デプロイ、起動
+
+    $ /path/to/my_new_cordova_project/cordova/BOOM
+
+**Windows** では
+
+    $ /path/to/my_new_cordova_project/cordova/BOOM.bat
+
+エミュレーターが起動中またはデバイスが接続されていることを確認してください。
+
+
+## BlackBerry
+
+BlackBerry のコマンドラインツールはシェルスクリプト作られています。
+
+### プロジェクトの作成
+
+以下のパラメーターとともに `create` コマンドを実行します:
+
+* 新しい Cordova BlackBerry プロジェクトへのパス
+* アプリケーション名
+
+<!-- -->
+
+    $ /path/to/cordova-blackberry-webworks/bin/create /path/to/my_new_cordova_project CordovaProjectName
+
+**Windows** では
+
+    $ /path/to/cordova-blackberry-webworks/bin/create.bat /path/to/my_new_cordova_project CordovaProjectName
+
+### プロジェクトのビルド
+
+BlackBerry のプロジェクトでは、 Cordova プロジェクトフォルダーのルートにある
+`project.properties` ファイルをカスタマイズすることを確認してください。
+これは、 BlackBerry の signing key のパスワード、
+BlackBerry WebWorks SDK の位置、 BlackBerry シミュレーター実行ファイルの
+位置といった情報を与えるために必要です。
+
+    $ /path/to/my_new_cordova_project/cordova/debug
+
+**Windows** では
+
+    $ /path/to/my_new_cordova_project/cordova/debug.bat
+
+### エミュレーターの起動
+
+BlackBerry のプロジェクトでは、 Cordova プロジェクトフォルダーのルートにある
+`project.properties` ファイルをカスタマイズすることを確認してください。
+これは、 BlackBerry の signing key のパスワード、
+BlackBerry WebWorks SDK の位置、 BlackBerry シミュレーター実行ファイルの
+位置といった情報を与えるために必要です。
+
+    $ /path/to/my_new_cordova_project/cordova/emulate
+
+**Windows** では
+
+    $ /path/to/my_new_cordova_project/cordova/emulate.bat
+
+### ログ
+
+残念ながら、デバイスから直接ログをストリーミングすることは現在サポート
+されていません。しかし、 BlackBerry は ビルトインの Web Inspector を
+BlackBerry OS 7.0 以上の Playbook と BlackBerry スマートフォンデバイスで
+提供しています。また、デバイス上のアプリケーションログ
+(`console.log` でのログも含む) へは、
+ホーム画面で ALT キーを長押しし、 "lglg" と打ち込むことにより
+アクセスします。

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/cordova-webview/android.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/cordova-webview/android.md b/docs/ja/2.2.0/guide/cordova-webview/android.md
new file mode 100644
index 0000000..1904cc2
--- /dev/null
+++ b/docs/ja/2.2.0/guide/cordova-webview/android.md
@@ -0,0 +1,66 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Embedding Cordova WebView on Android
+====================================
+
+Cordova 1.9 からは、`CordovaActivity` を用いて、 Cordova をネイティブ Android アプリケーションの中でコンポーネントとして使用できます。このコンポーネントは Android では `CordovaWebView` として知られています。
+1.9以降の新しい Cordova ベースのアプリケーションでは、昔の `DroidGap` アプローチが使用されているかどうかに関わらず、
+`CordovaWebView` をメインビューとして使用します。
+
+必要なものは Android アプリケーションの開発時と同じです。 Android の開発環境について知識があることが期待されます。
+もし知識が十分にない場合は、このアプローチを使用する前に入門ガイドを参照して、 Cordova アプリケーションを作成することから初めてください。
+これは Android Cordova アプリケーションを作成するメインアプローチではありません。そのため、この手順は現在は手作業となります。将来、この方法を自動化することも考えています。
+
+必要なもの
+-------------
+
+1. **Cordova 1.9** またはそれ以降
+2. リビジョン15 以降の Android SDK
+
+Android プロジェクトでの CordovaWebView 使用ガイド
+---------------------------------------------------
+
+1. `bin/create` を使用し commons-codec-1.6.jar を取得
+2. `/framework` に `cd` し、 cordova jar をビルドするために `ant jar` を実行
+   (これにより `cordova-x.x.x.jar` 形式で .jar ファイルを
+   `/framework` フォルダーに作成します)
+3. cordova jar を Android プロジェクトの中の `/libs` ディレクトリにコピーします
+4. アプリケーションの `/res/xml` 以下にある `main.xml` ファイルを、以下と同様になるよう編集します。 `layout_height`, `layout_width`, `id` はアプリケーションに合うように変更します
+
+        <org.apache.cordova.CordovaWebView
+            android:id="@+id/tutorialView"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent" />
+
+5. アクティビティを、 `CordovaInterface` を実装 (implements) するように変更します。含まれているメソッドを実装することが推奨されています。 `/framework/src/org/apache/cordova/DroidGap.java` からメソッドをコピーしたいかもしれませんし、または自身のメソッドを実装したいかもしれません。以下は、インターフェースを使用したベーシックなアプリケーションのコードの一部です (ビューの id の参照は上のステップ4の `id` 属性で指定されたものと一致することに注意してください):
+
+        public class CordovaViewTestActivity extends Activity implements CordovaInterface {
+            CordovaWebView cwv;
+            /* アクティビティが最初に作成されたときに呼び出されます。 */
+            @Override
+            public void onCreate(Bundle savedInstanceState) {
+                super.onCreate(savedInstanceState);
+                setContentView(R.layout.main);
+                cwv = (CordovaWebView) findViewById(R.id.tutorialView);
+                cwv.loadUrl("file:///android_asset/www/index.html");
+            }
+
+6. アプリケーションの HTML と JavaScript を Android プロジェクトの `/assets/www` ディレクトリにコピーします
+7. `/framework/res/xml` から `cordova.xml` と `plugins.xml` を Android プロジェクトの `/res/xml` フォルダーにコピーします

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/cordova-webview/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/cordova-webview/index.md b/docs/ja/2.2.0/guide/cordova-webview/index.md
new file mode 100644
index 0000000..f0cf8cf
--- /dev/null
+++ b/docs/ja/2.2.0/guide/cordova-webview/index.md
@@ -0,0 +1,27 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+WebView の埋め込み
+=================
+
+> Cordova WebView をプロジェクトで実装します。
+
+- Embedding Cordova WebView on Android
+- Embedding Cordova WebView on iOS
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/cordova-webview/ios.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/cordova-webview/ios.md b/docs/ja/2.2.0/guide/cordova-webview/ios.md
new file mode 100644
index 0000000..fe6c748
--- /dev/null
+++ b/docs/ja/2.2.0/guide/cordova-webview/ios.md
@@ -0,0 +1,131 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Embedding Cordova WebView on iOS
+================================
+
+Cordova 1.4 からは、 Cordova を iOS アプリケーションの中でコンポーネントとして使用できます。このコンポーネントのコードネームは "Cleaver" です。
+
+Cordova 1.4 以降の Xcode テンプレートを用いて作られた新しい Cordova バースのアプリケーションは Cleaver を使用し、このテンプレートは Cleaver の参照実装と捉えられます。
+
+Cordova 2.0.0 以降は、 Cleaver を実装したサブプロジェクトのみをサポートしています。
+
+必要なもの
+-------------
+
+1. **Cordova 2.1.0** またはそれ以降
+2. **Xcode 4.5** またはそれ以降
+3. `Cordova.plist` ファイル ([新しく作成した](guide_command-line_index.md.html#Command-Line%20Usage_ios) Cordova プロジェクトから)
+
+
+Xcode プロジェクトへの Cleaver の追加 (CordovaLib サブプロジェクト)
+-------------------------------------------------------------
+
+1. ハードディスクの**恒久的なフォルダー** (例: ~/Documents/Cordova) に **Cordova をダウンロードし解凍**します
+2. Xcode が起動している場合、 **終了** します
+3. **Terminal.app** を使用して、Cordova をダウンロードしたディレクトリまで **移動**します
+4. `Cordova.plist` ファイルをディスクのプロジェクトフォルダー内に **コピー** します (上の **必要なもの** を参照してください)
+5. `Cordova.plist` ファイルを Xcode の Project Navigator に **ドラッグアンドドロップ** します
+6. **"Create groups for any added folders"** のラジオボタンを **選択** し、 **Finish** ボタンをクリックします
+7. `CordovaLib.xcodeproj` ファイルを Xcode の Project Navigator に **ドラッグアンドドロップ** します (上の、 CordovaLib のサブディレクトリ、恒久的なフォルダーから)
+8. Project Navigator で `CordovaLib.xcodeproj` を選択します
+9. **File Inspector** を開くため、 **Option-Command-1** キーを押します
+10. **Location** のドロップダウンメニューのため、 **File Inspector** から **"Relative to CORDOVALIB"** を選択します
+11. Project Navigator の **Project アイコン** をクリックし、 **Target** を選択し、 **"Build Settings"** タブを選択します
+12. **"Other Linker Flags"** の値に `-all_load` と `-Obj-C` を追加します
+13. Project Navigator の **Project アイコン** をクリックし、 **Target** を選択し、 **"Build Phases"** タブを選択します
+14. **"Link Binaries with Libraries"** を展開します
+15. **"+" ボタン** をクリックし、以下の **framework** を追加します (オプションで、 Project Navigator の中でこれらを Frameworks グループに **移動** します):
+
+        AddressBook.framework
+        AddressBookUI.framework
+        AudioToolbox.framework
+        AVFoundation.framework
+        CoreLocation.framework
+        MediaPlayer.framework
+        QuartzCore.framework
+        SystemConfiguration.framework
+        MobileCoreServices.framework
+        CoreMedia.framework
+
+16. **"Target Dependencies"** を展開します。 (もしこのラベルのボックスが複数ある場合は、一番上のものを選んでください)
+17. **"+" ボタン** をクリックし、 `CordovaLib` ビルドプロダクトを追加します
+18. **"Link Binaries with Libraries"** を展開します。
+    (もしこのラベルのボックスが複数ある場合は、一番上のものを選んでください)
+19. **"+" ボタン** をクリックし、 `libCordova.a` を追加します
+20. Xcode 設定 **"Xcode Preferences -> Locations -> Derived Data -> Advanced…"** を **"Unique"** にセットします
+21. Project Navigator の **Project アイコン** をクリックし、 **Target** を選択し、 **"Build Settings"** タブを選択します
+22. **"Header Search Paths"** で検索をします。この設定に、以下の値を追加します (クォートを含む)
+
+        "$(TARGET_BUILD_DIR)/usr/local/lib/include"
+
+        "$(OBJROOT)/UninstalledProducts/include"
+
+        "$(BUILT_PRODUCTS_DIR)"
+
+    **Cordova 2.1.0** では、 CordovaLib は **Automatic Reference Counting (ARC)** を使用するようにアップグレードされました。 CordovaLib を使用するにあたって **ARC** にアップグレードする必要はありませんが、もしプロジェクトを **ARC** を使用するようにアップグレードしたい場合は、メニューから Xcode migration wizard : **Edit -> Refactor -> Convert to Objective-C ARC…** を使用して、 **libCordova.a を選択解除** し、ウィザードを完了してください。
+
+コード中での CDVViewController の使用法
+------------------------------------
+
+1. この **header** を追加します:
+
+        #import <Cordova/CDVViewController.h>
+
+2. **新しい** `CDVViewController` のインスタンスを作成し、どこかで保持します:
+
+        CDVViewController* viewController = [CDVViewController new];
+
+3. (_オプション_) `wwwFolderName` プロパティーをセットします (デフォルトは `"www"`):
+
+        viewController.wwwFolderName = @"myfolder";
+
+4. (_オプション_) `startPage` プロパティーをセットします (デフォルトは `"index.html"`):
+
+        viewController.startPage = @"mystartpage.html";
+
+5. (_オプション_) `useSplashScreen` プロパティーをセットします (デフォルトは `NO`):
+
+        viewController.useSplashScreen = YES;
+
+6. **view frame** をセットします (常にこれを最後のプロパティーとしてセットします):
+
+        viewController.view.frame = CGRectMake(0, 0, 320, 480);
+
+7. Cleaver を view に **追加** します:
+
+        [myView addSubview:viewController.view];
+
+HTML, CSS, JavaScript ファイルの追加
+-------------------------------------------
+
+1. **新しいフォルダー** を **ディスク上の** プロジェクト内に作成します。例として名前は `www` とします
+2. **HTML, CSS, JavaScript ファイル** をこのフォルダーの中に入れます
+3. このフォルダーを Xcode の Project Navigator に **ドラッグアンドドロップ** します
+4. **"Create groups for any added folders"** のラジオボタンを **選択** します
+5. `CDVViewController` をインスタンス化するとき、 **(1)** で作成したフォルダーに **適切な `wwwFolderName` と `startPage` プロパティーをセット** するか、デフォルト値を使用します (前のセクションを参照してください)。
+
+        /*
+         もし 'myfolder' という名前のフォルダーを作成し、
+         startPage として 'mypage.html' を
+         使用したい場合
+        */
+        viewController.wwwFolderName = @"myfolder";
+        viewController.startPage = @"mypage.html"
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/android/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/android/index.md b/docs/ja/2.2.0/guide/getting-started/android/index.md
new file mode 100644
index 0000000..f60b1b1
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/android/index.md
@@ -0,0 +1,123 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with Android
+============================
+
+このガイドは、 Cordova のための開発環境セットアップ方法、またシンプルなアプリの動かし方を解説します。
+
+
+1. 必要なもの
+---------------
+
+- Eclipse 3.4以上
+
+
+2. SDK と Cordova のインストール
+------------------------
+
+- [Eclipse Classic](http://www.eclipse.org/downloads/) のダウンロードとインストール
+- [Android SDK](http://developer.android.com/sdk/index.html) のダウンロードとインストール
+- [ADT Plugin](http://developer.android.com/sdk/eclipse-adt.html#installing) のダウンロードとインストール
+- [Cordova](http://incubator.apache.org/cordova/#download) の最新版をダウンロードし解凍します。これから Android ディレクトリと一緒に作業を進めます。
+
+
+3A. PATH 環境変数の設定 (Mac OS)
+---------------------------------------
+
+- ターミナルを開きます (デフォルトでは、 Applications/Utilites フォルダーにあります)
+- 以下のコマンドを実行します
+
+`touch ~/.bash_profile; open ~/.bash_profile`
+
+- これにより、ファイルをあなたのデフォルトテキストエディタで開きます
+- Android SDK platform-tools と tools ディレクトリにパスを通す必要があります。この例では、 "/Development/android-sdk-macosx" を SDK がインストールされているフォルダーとします。以下の行を追加します:
+
+`export PATH=${PATH}:/Development/android-sdk-macosx/platform-tools:/Development/android-sdk-macosx/tools`
+
+- ファイルを保存し、テキストエディタを終了します
+- PATH を更新するために、 .bash_profile を実行します
+
+`source ~/.bash_profile`
+
+- これで、ターミナルを開く度に Android SDK へのパスが通っているようになります
+
+3B. PATH 環境変数の設定 (Windows)
+---------------------------------------
+
+- デスクトップから、マイコンピューターを右クリックし、プロパティーをクリックします
+- 左側の列から、詳細設定をクリックします
+- システムプロパティーのウィンドウで、環境変数ボタンをクリックします
+- システム環境変数から、 PATH を選択します
+- 編集ボタンをクリックします
+- Android SDK platform-tools と tools ディレクトリにパスを通す必要があります。この例では、 "C:\Development\android-sdk-macosx" を SDK がインストールされているフォルダーとします。以下をテキストボックスに追加します:
+
+`;C:\Development\android-sdk-windows\platform-tools;C:\Development\android-sdk-windows\tools`
+
+- 編集を保存します。環境変数ダイアログを閉じます
+- 追加で、 `%JAVA_HOME%\bin` も PATH に追加する必要があるかもしれません。この作業が必要かどうかを確認するには、コマンドプロンプトで `java` を入力してください。もしプログラムが見つからなかった場合は、 `%JAVA_HOME%\bin` を PATH に追加してください。場合によっては、 %JAVA_HOME% の環境変数ではなくフルパスを指定する必要があるかもしれません
+- `%ANT_HOME%\bin` も PATH に追加する必要があるかもしれません。この作業が必要かどうかを確認するには、コマンドプロンプトで `ant` を入力してください。もしプログラムが見つからなかった場合は、 `%ANT_HOME%\bin` を PATH に追加してください。場合によっては、 %ANT_HOME% の環境変数ではなくフルパスを指定する必要があるかもしれません
+
+
+4. 新規プロジェクトの作成
+---------------------
+
+- ターミナルで、 Cordova の `android` サブフォルダーの中にある `bin` ディレクトリまで移動します
+- `./create <project_folder_path> <package_name> <project_name>` と入力し、 **"Enter"** を押します
+
+        <project_folder_path> は新規 Cordova Android プロジェクトへのパスです
+        <package_name> はパッケージ名です。例: com.YourCompany.YourAppName
+        <project_name> はプロジェクト名です。例: YourApp (スペースを含まない)
+
+- Eclipse を起動し、メニューから **新規プロジェクト** を選択します
+    ![](img/guide/getting-started/android/eclipse_new_project.png)
+- `<project_folder_path>` で使用したディレクトリを選択します
+- Finish をクリックします
+
+もしプロジェクトがa red X indicatingを保つ場合には問題があるので、以下の追加の手順が必要です
+
+- プロジェクトフォルダーを右クリックします
+- プロパティーダイアログで、ナビゲーションパネルから Android を選択します
+- Project build target には、インストールしてある中での最新バージョンの Android API を選択します
+- OK をクリックします
+- プロジェクトメニューバーから Clean を選択します
+- これでプロジェクトからエラーが無くなるはずです
+
+5A. エミュレーターへのデプロイ
+-----------------------
+
+- プロジェクトを右クリックし、次を **実行 &gt; Android Application** を選択
+- 適切な AVD を選択。 もしない場合は、作成する必要があります
+
+**注意: より早く動かすために、 Intel ベースのエミュレーターを使用します:**
+
+- Android SDK Manager を開きます
+  ![](img/guide/getting-started/android/eclipse_android_sdk_button.png)
+- ひとつ以上の `Intel x86 Atom` システムイメージおよび `Intel Hardware Accelerated Execution Manager` (Extras 以下にあります) をインストールします
+- Android SDK の中の `extras/intel/Hardware_Accelerated_Execution_Manager` にダウンロードされた Intel installer を実行します
+- Target を Intel のイメージとした新しい AVD を作成します
+- エミュレーターがスタートするとき、 HAX モジュールのロードに失敗したといったエラーメッセージが出力されないことを確認します
+
+
+5B. デバイスへのデプロイ
+--------------------
+
+- デバイスの設定で USB デバッグが有効になっていること、またコンピュータに接続されていることを確認 (**設定 &gt; アプリケーション &gt; 開発**)
+- プロジェクトを右クリックし、次を **実行 > Android Application** を選択
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/bada/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/bada/index.md b/docs/ja/2.2.0/guide/getting-started/bada/index.md
new file mode 100644
index 0000000..23743b3
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/bada/index.md
@@ -0,0 +1,93 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with Bada
+=========================
+
+このガイドは、 Cordova のための開発環境セットアップ方法、またシンプルなアプリの動かし方を解説します。 Cordova は以前は PhoneGap と呼ばれていたため、いくつかのサイトは PhoneGap という名前をまだ使用しています。
+
+1. 必要なもの
+---------------
+
+- Windows
+- cordova-bada を使うためには、 bada 1.2 SDK が必要です (すでに Samsung のウェブサイトでは入手できません)
+
+2. SDK と Cordova のインストール
+-------------------------
+
+- [Bada SDK](http://developer.bada.com) のダウンロードとインストール (Windows のみ)
+- [Cordova](http://phonegap.com/download) の最新版をダウンロードし解凍します。 これから bada ディレクトリと一緒に作業を進めます。
+
+
+3. 新規プロジェクトの作成
+--------------------
+- Bada IDE で、 File -> Import project -> Bada C++ / Flash Project を選択します
+    - 注意: Bada 1.2 では "Bada Application Project" を選択します
+
+    ![](img/guide/getting-started/bada/import_bada_project.png)
+
+- "Select root directory" がチェックされていることを確認し、 Browse ボタンをクリックします
+- Cordova bada プロジェクトフォルダー (1.2にはbadaフォルダー、2.xにはbada-wacフォルダー) を選択します "Copy projects into workspace" がチェックされていることを確認します
+
+    ![](img/guide/getting-started/bada/import_bada_project.png)
+
+- "Finish" をクリックします
+
+    ![](img/guide/getting-started/bada/bada_project.png)
+
+4. Hello World の作成
+--------------
+
+**Bada 2.x**: HTML/CSS/Javascript のコードは Res/ フォルダー直下にあります。 以下の2行が index.html の <head> に含まれていることを確認します。
+
+
+        <link href="osp://webapp/css/style.css" rel="stylesheet" type="text/css" />
+        <script type="text/javascript" src="osp://webapp/js/webapp_core.js"></script>
+
+**Bada 1.2**: HTML/CSS/Javascript のコードは Res/ フォルダー直下にあります。 以下の行が index.html に含まれていることを確認します。
+
+        <script type="text/javascript" src="cordova/cordova.js"> </script>
+
+5A. シミュレーターへのデプロイ
+-----------------------
+
+- **Bada 2.x**: プロジェクトで右クリックをし、 Run As -&gt; bada Emulator Web Application を選択します
+
+    ![](img/guide/getting-started/bada/bada_1_run.png)
+
+- **Bada 1.2**: プロジェクトで右クリックをし、 Build configurations -&g; Set Active -&gt; Simulator-Debugを選択します
+
+    ![](img/guide/getting-started/bada/bada_set_target.png)
+
+- プロジェクトで右クリックをし、 Run As -&gt; bada Simulator Application を選択します。 アプリを更新するたびに、エミュレーターを閉じる必要があります。
+
+5B. デバイスへのデプロイ
+--------------------
+
+- デバイスが適切に設定されていることを確認します
+
+**Bada 2.x**: プロジェクトで右クリックをし、 Run As -&gt; bada Target Web Application を選択します
+
+**Bada 1.2**:
+- プロジェクトで右クリックをし、 Build configurations -&g; Set Active -> Target-Debugを選択します
+- プロジェクトで右クリックをし、 Run As -> bada Target Application を選択します アプリを更新するたびに、エミュレーターを閉じる必要があります。
+
+
+終了
+-----

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/blackberry/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/blackberry/index.md b/docs/ja/2.2.0/guide/getting-started/blackberry/index.md
new file mode 100644
index 0000000..008856f
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/blackberry/index.md
@@ -0,0 +1,101 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with Blackberry
+============================
+
+Cordova for BlackBerry は [BlackBerry WebWorks framework](https://bdsc.webapps.blackberry.com/html5) を使用して作られています。 BlackBerry WebWorks ツールは Windows または Mac にて使用可能です。 WebWorks アプリケーションは OS 5.0以上の BlackBerry デバイスまたは BlackBerry PlayBook OS にのみデプロイ可能です。
+
+1. 必要なもの
+---------------
+
+- Windows XP (32-bit) またはWindows 7 (32-bit and 64-bit) または Mac OSX 10.6.4以上
+- Java Development Kit (JDK)
+    - Windows: [Oracle JDK](http://www.oracle.com/technetwork/java/javase/downloads/index.html#jdk) (32-Bit Version)
+    - Mac OS X: Mac OS X 10.7より前については、 Java はデフォルトで提供されています。 OS X 10.7以上については、 [Java](http://support.apple.com/kb/DL1421) のインストールが必要です
+- Apache Ant
+    - Windows: [Apache Ant](http://ant.apache.org/bindownload.cgi)
+    - Mac OS X: Apache Ant は Java と一緒にインストールされます
+
+2. SDK と Cordova のインストール
+-------------------------
+
+- PlayBook の開発には [Adobe Air SDK](http://www.adobe.com/devnet/air/air-sdk-download.html) が必要です
+- 1つ以上の WebWorks SDK をダウンロード、インストールします。 インストールしたディレクトリを覚えておいてください。
+    - スマートフォンの開発: [BlackBerry WebWorks Smartphone SDK](https://bdsc.webapps.blackberry.com/html5/download/sdk)
+    - PlayBook の開発: [BlackBerry WebWorks Tablet OS SDK](https://bdsc.webapps.blackberry.com/html5/download/sdk)
+- [Cordova](http://phonegap.com/download) の最新版をダウンロードし解凍します。
+
+3. 新規プロジェクトの作成
+--------------------
+
+- コマンドプロンプトまたはターミナルをひらいて、 Cordova をダウンロード、解凍したディレクトリまで移動します。
+- そのディレクトリには、 Cordova がサポートするプラットフォームごとにさらにディレクトリがあります。 blackberry のディレクトリに移動します。
+- blackberry のディレクトリには、 `sample` と `www` の2つのディレクトリがあります。 `sample` フォルダーには、完成した Cordova プロジェクトが入っています。 `sample` フォルダーをコンピュータ内の別の場所にコピーします。
+- コピーしたフォルダーに移動します。
+- project.properties ファイルをあなたの好きなエディタで開き、 `blackberry.bbwp.dir=` および/または `playbook.bbwp.dir=` の部分を編集します。 値には、先ほどインストールした WebWorks SDK の中の `bbwp` バイナリファイルの位置をセットします。
+
+4. Hello World の作成
+--------------
+
+サンプルプロジェクトのディレクトリ内でコマンドプロンプトまたはターミナルで `ant target build` とタイプすることで、サンプルプロジェクトをビルドします。ここで、 `target` は `blackberry` か `playbook` に置き換えてください。これは Cordova のサンプルプロジェクトで、普通の Hello World アプリではないことに注意してください。 www フォルダーにある index.html は多くの Cordova API の使用例を含みます。
+
+5A. シミュレーターへのデプロイ
+--------------------------------------
+
+BlackBerry スマートフォンシミュレーターは Windows でのみ利用可能です。 PlayBook シミュレーターは VMWare Player (Windows) または VMWare Fusion (Mac OS X) を必要とします。 WebWorks SDK はデフォルトのシミュレーターを提供しています。追加のシミュレーターも [入手可能](http://us.blackberry.com/developers/resources/simulators.jsp) です。
+
+- project.properties ファイルをお好きなエディタで開き、以下のプロパティーをカスタマイズします。
+    - スマートフォン (オプション)
+        - `blackberry.sim.dir` : シミュレーターのあるディレクトリへのパスを表します。 Windows では、ファイルセパレーターの '\' は '\\\' でエスケープされている必要があります。
+        - `blackberry.sim.bin` : 指定されたシミュレーターのディレクトリ内で、実行したいシミュレーターの名前を表します。
+    - Playbook
+        - `playbook.sim.ip` : シミュレーターのセキュリティ設定でデベロッパーモードにした場合の、取得する IP アドレスを表します。
+        - `playbook.sim.password` : シミュレーターのセキュリティ設定で設定できるシミュレータのパスワードを表します。
+- プロジェクトのディレクトリにいるときは、コマンドプロンプトまたはターミナルで `ant target load-simulator` とタイプしてください。 ここで、 `target` は `blackberry` か `playbook` に置き換えてください。 PlayBook では、シミュレーターのバーチャルイメージは既にスタートしている必要があることに注意してください。
+- アプリケーションは、シミュレーター内の All Applications セクションにインストールされます。 BlackBerry OS 5 ではアプリケーションは Download フォルダーにインストールされることに注意してください。
+
+5B. デバイスへのデプロイ (Windows and Mac)
+--------------------------------------
+
+- デバイスへのデプロイは、 RIM から取得できる signing keys が必要です。
+    - signing keys のリクエストのため、この [フォーム](https://bdsc.webapps.blackberry.com/html5/signingkey) に記入し提出してください。
+    - signing keys を受け取ったら、それらをインストールします:
+        - [Setup Smartphone Signing keys](https://bdsc.webapps.blackberry.com/html5/documentation/ww_publishing/signing_setup_smartphone_apps_1920010_11.html)
+        - [Setup Tablet Signing keys](https://bdsc.webapps.blackberry.com/html5/documentation/ww_publishing/signing_setup_tablet_apps_1920009_11.html)
+- サインされたアプリケーションを USB 接続されたスマートフォンデバイスにインストールするために、 [BlackBerry Desktop Sofware](http://us.blackberry.com/apps-software/desktop/) をインストールします。
+- project.properties ファイルをお好きなエディタで開き、以下のプロパティーをカスタマイズします:
+    - スマートフォン (オプション)
+        - `blackberry.sigtool.password` : signing keys が登録されたときに使われるパスワードを表します。 もし指定されていない場合は、プロンプトにより入力が促されます。
+    - Playbook (必須)
+        - `playbook.sigtool.csk.password` : Signing key のパスワードを表します。
+        - `playbook.sigtool.p12.password` : Signing key のパスワードを表します。
+        - `playbook.device.ip` : デバイスのセキュリティ設定でデベロッパーモードにした場合の、取得する IP アドレスを表します。
+        - `playbook.device.password` : デバイスのセキュリティ設定で設定できるデバイスのパスワードを表します。
+- プロジェクトのディレクトリにいるときは、コマンドプロンプトまたはターミナルで `ant target load-device` とタイプしてください。ここで、 `target` は `blackberry` か `playbook` に置き換えてください。
+- アプリケーションは、デバイス内の All Applications セクションにインストールされます。 BlackBerry OS 5 ではアプリケーションは Download フォルダーにインストールされることに注意してください。
+
+追加の情報
+----------------------
+
+以下の記事は、 BlackBerry WebWorks framework を使って Cordova アプリケーションを開発するときに役立ちます。
+
+- [BlackBerry WebWorks Development Pitfalls](http://supportforums.blackberry.com/t5/Web-and-WebWorks-Development/Common-BlackBerry-WebWorks-development-pitfalls-that-can-be/ta-p/624712)
+- [Best practices for packaging WebWorks applications](https://bdsc.webapps.blackberry.com/html5/documentation/ww_developing/bestpractice_compiling_ww_apps_1873324_11.html)
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/index.md b/docs/ja/2.2.0/guide/getting-started/index.md
new file mode 100644
index 0000000..9717bff
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/index.md
@@ -0,0 +1,31 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+入門ガイド
+======================
+
+- Getting Started with Android
+- Getting Started with Blackberry
+- Getting Started with iOS
+- Getting Started with Symbian
+- Getting Started with WebOS
+- Getting Started with Windows Phone
+- Getting Started with Windows 8
+- Getting Started with Bada
+- Getting Started with Tizen

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/ios/index.md b/docs/ja/2.2.0/guide/getting-started/ios/index.md
new file mode 100644
index 0000000..b71f156
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/ios/index.md
@@ -0,0 +1,123 @@
+/--
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with iOS
+========================
+
+このガイドは、 Apache Cordova のための開発環境セットアップ方法、また Apache Cordova のサンプルアプリの動かし方を解説します。
+
+必要なもの
+---------------
+- Xcode 4.5+
+- Xcode コマンドラインツール
+- Intel ベースの Mac OS X Lion 以上 (10.7+)
+- デバイスへのインストールに必要なもの:
+    - Apple iOS デバイス (iPhone, iPad, iPod Touch)
+    - iOS デベロッパー証明書
+
+SDK と Apache Cordova のインストール
+------------------------
+
+- [Mac App Store](http://itunes.apple.com/us/app/xcode/id497799835?mt=12) または [Apple Developer Downloads](http://developer.apple.com/downloads) から **Xcode** をインストールします。
+- **Xcode コマンドラインツール** (**Xcode Preferences -> Downloads -> Components -> Command Line Tools -> Install**) をインストールします。
+- [Apache Cordova](http://phonegap.com/download) の最新版をダウンロードします。
+    - ダウンロードしたものを解凍します
+    - Apache Corder iOS は `lib/ios` ディレクトリ以下にあります
+
+CordovaLib のインストール
+------------------
+
+1. Cordova を **ダウンロード** します
+2. ダウンロードしたものを、ハードディスクの恒久的な場所に **解凍** します (例: ~/Documents/CordovaLib-2.X.X)
+3. Step 3 はありません
+
+新規プロジェクトの作成
+--------------------
+
+- **Terminal.app** を起動します
+- (上の **CordovaLib のインストール** セクションで解凍した恒久的な場所にある) **bin** フォルダーを Dock にある **Terminal.app** のアイコンにドラッグします。これにより、新しいターミナルのウィンドウが開きます
+- `./create <project_folder_path> <bundle_id> <project_name>` を入力し、 **"Enter"** を押します
+
+        <project_folder_path> は新しい Cordova iOS プロジェクトへのパスを表します (もし既に存在する場合は、空である必要があります)
+        <package_name> はリバースドメインスタイルのパッケージ名を表します
+        <project_name> はプロジェクト名を表します
+
+    ![](img/guide/getting-started/ios/bin_create_project.png)
+
+
+- たった今作成した新しいプロジェクトフォルダーを **見つけます**
+- フォルダーの中の .xcodeproj を **起動します**
+
+**注意:**
+Cordova 2.2 から、プロジェクトが Cordova インストール内の CordovaLib のコピーへ依存していたのに代わり、
+プロジェクトが CordovaLib のコピーをプロジェクト内に持つようになりました。
+
+もしプロジェクトが Cordova インストール内の CordovaLib に直接依存するようにしたい場合は、
+`./create --shared` が使用できます。または、プロジェクトを作成した後で
+`./update_cordova_subproject path/to/you/project` とすることで、参照を変更できます。
+
+シミュレーターへのデプロイ
+-----------------------
+
+- ツールバーにあるドロップダウンメニューから **Target** を **"HelloWorld"** (あなたのプロジェクト名) に変更します
+- ツールバーにあるドロップダウンメニューから **Active SDK** を **iOS [version] Simulator** に変更します
+
+    ![](img/guide/getting-started/ios/active_scheme_simulator.png)
+
+- プロジェクトウィンドウのツールバーにある _Run_ ボタンをクリックします
+
+デバイスへのデプロイ
+--------------------
+
+- **Resources** グループの中にある `HelloWorld-Info.plist` を開きます
+- **BundleIdentifier** を Apple から提供された Identifer 、または自分の Identifer に変更します
+    - もし開発者ライセンスを持っている場合は、 [Assistant] (http://developer.apple.com/iphone/manage/overview/index.action) よりアプリを登録できます
+- ツールバーにあるドロップダウンメニューから **Target** を **"HelloWorld"** (あなたのプロジェクト名) に変更します
+- ツールバーにあるドロップダウンメニューから **Active SDK** を **[あなたのDevice名]** に変更します
+    - デバイスを USB で接続する必要があります
+
+    ![](img/guide/getting-started/ios/active_scheme_device.png)
+
+- プロジェクトウィンドウのツールバーにある _Run_ ボタンをクリックします
+
+結果
+----------------
+- 緑色の点滅した **"device is ready"** のメッセージを伴った画面が見えるはずです
+
+    ![](img/guide/getting-started/ios/HelloWorldStandard.png)
+
+Xcode の問題
+----------------
+もしヘッダーが無いなどに関連した編集での問題がある場合、ビルドプロダクトは **同じビルドディレクトリでビルドする** 必要があります。**"Xcode Preferences -> Locations -> Derived Data -> Advanced…"** の設定を **"Unique"** に変更する必要があるかもしれません。これは Xcode をインストールした直後のデフォルト設定ですが、もし古いバージョンからアップグレードした場合は昔の設定が残っており、その場合はアップデートする必要があります。
+
+
+
+アプリを作成
+--------------
+
+これで Xcode プロジェクトのセットアップが完了し、シミュレーターまたはデバイスでビルドし動かすことが出来ます。
+アプリを書くために、 Xcode を使用する必要はありません。
+あなたの好きなテキストエディターを使い、 Xcode 、またはプロジェクトフォルダ (**cordova** サブフォルダー) 内で [コマンドラインツール](guide_command-line_index.md.html) でリビルド作業を行えます。
+Xcode は自動的に `www` ディレクトリ内にあるファイルの変化を検出します。
+
+コマンドラインツールの問題
+----------------
+もし **"Error: No developer directory found at /Developer. Run /usr/bin/xcode-select to update the developer directory path."** というエラーを見る場合、 Developer フォルダーを設定するために以下を実行してください:
+
+    sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/symbian/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/symbian/index.md b/docs/ja/2.2.0/guide/getting-started/symbian/index.md
new file mode 100644
index 0000000..9d63f40
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/symbian/index.md
@@ -0,0 +1,78 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with Symbian
+============================
+
+このガイドは、 Cordova のための開発環境セットアップ方法、またシンプルなアプリの動かし方を解説します。 Cordova は以前は PhoneGap と呼ばれていたため、いくつかのサイトは PhoneGap という名前をまだ使用しています。
+
+ビデオチュートリアル:
+----------------
+
+- [Cordova Installer - Xcode 4 Template](http://www.youtube.com/v/R9zktJUN7AI?autoplay=1)
+
+
+1. 必要なもの
+---------------
+
+- Windows, OS X, または Linux
+
+他に [QT for Symbian](http://wiki.phonegap.com/w/page/16494811/PhoneGap-Symbian-%28Qt%29) や [Symbian with Sony Ericsson](http://wiki.phonegap.com/w/page/16494782/Getting-Started-with-PhoneGap-Symbian-(WRT-on-Sony-Ericsson)) といったガイドもあります。
+
+
+2. SDK と Cordova のインストール
+-------------------------
+
+- [cygwin](http://www.cygwin.com/setup.exe) をダウンロードし、インストールします (Windows のみ) 。デフォルトでは選択されていませんが、 "make" を選択してください
+- [Cordova](http://phonegap.com/download) の最新版をダウンロードし解凍します。これから Android ディレクトリと一緒に作業を進めます
+
+
+3. 新規プロジェクトの作成
+--------------------
+
+- cygwin で、 Cordova を解凍したディレクトリまで移動し、 Symbian ディレクトリに移動します
+
+
+4. Hello World の作成
+--------------
+
+- phonegap/symbian/framework/www にある index.html を好きなエディタで開きます
+- `body` タグの中にある `"Build your phonegap app here! Dude!"` を削除し、 `<h1>Hello World</h1>` を追加します
+- cygwin または terminal で、 make を実行します。これにより、 phonegap-symbian.wrt と app.wgz が作られます
+
+
+5A. シミュレーターへのデプロイ
+-----------------------
+
+- Mac もしくは Linux には、 [Aptana Studio](http://www.aptana.org/products/studio2/download) と [Nokia WRT Plug-in for Aptana Studio](http://www.forum.nokia.com/info/sw.nokia.com/id/00d62bd8-4214-4c86-b608-5f11b94dad54/Nokia_WRT_Plug_in_for_Aptana_Studio.html) をインストールする必要があります。これは、ブラウザベースの JavaScript エミュレーターを持っています
+- Windows は、S60 エミュレーターを持つ [S60 SDK](http://www.forum.nokia.com/info/sw.nokia.com/id/ec866fab-4b76-49f6-b5a5-af0631419e9c/S60_All_in_One_SDKs.html) をダウンロードします
+- エミュレーターに phonegap-symbian.wrt と app.wgz をロードします
+
+
+5B. デバイスへのデプロイ
+--------------------
+
+- phonegap-symbian.wrt と app.wgz を bluetooth または email を使ってデバイスにロードします
+
+
+終了
+-----
+
+さらに詳しいガイドは [ここ](http://wiki.phonegap.com/w/page/16494780/Getting-Started-with-Phonegap-Nokia-WRT) で確認できます。
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/tizen/index.md b/docs/ja/2.2.0/guide/getting-started/tizen/index.md
new file mode 100644
index 0000000..c682eea
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/tizen/index.md
@@ -0,0 +1,108 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with Tizen
+=========================
+
+このガイドは、 Cordova のための開発環境セットアップ方法、またシンプルなアプリの動かし方を解説します。 Cordova は以前は PhoneGap と呼ばれていたため、いくつかのサイトは PhoneGap という名前をまだ使用しています。
+
+1. 必要なもの
+---------------
+
+- Linux Ubuntu 10.04/10.10/11.04/11.10 32-bit, Windows XP SP3/7 32-bit.
+
+2. SDK と Cordova のインストール
+-------------------------
+
+- [Tizen SDK](https://developer.tizen.org/sdk) のダウンロードとインストール
+- [Cordova](http://phonegap.com/download) の最新版をダウンロードし解凍します。これから tizen ディレクトリと一緒に作業を進めます
+- (オプション) Tizen の Cordova テンプレートプロジェクトをインストール: copy the `/templates` ディレクトリの中身を Tizen Eclipse IDE の web templates ディレクトリにコピーします (例: `/home/my_username/tizen-sdk/IDE/Templates/web`)
+
+3. 新規プロジェクトの作成
+--------------------
+
+- **方法 #1: Cordova Tizen プロジェクトサンプルのインポート**
+    - Tizen Eclipse IDE を起動します
+    - **File** -> **Import** -> **Tizen Web Project** を選択します
+
+    ![](img/guide/getting-started/tizen/import_project.png)
+
+    - **Next** をクリックします
+    - **Select root directory** がチェックされていることを確認します
+    - **Copy projects into workspace** がチェックされていることを確認します
+    - **Browse** をクリックします
+    - Cordova Tizen の "samples" プロジェクトディレクトリのうちの一つ (例: `/cordova-basic`) を Browse し、選択します
+
+    ![](img/guide/getting-started/tizen/import_widget.png)
+
+    - **Finish** をクリックします
+
+    ![](img/guide/getting-started/tizen/project_explorer.png)
+
+    - これで、プロジェクトはインポートされ **Project Explorer** ビューに表示されます
+
+- **方法 #2: Tizen Eclipse IDE の Cordova Tizen プロジェクトテンプレートの使用**
+    - Tizen Eclipse IDE を起動します
+    - **File** -> **New** -> **Tizen Web Project** を選択します
+    - 項目 **User Template** と **User defined** を選択します
+    - Tizen Cordova template のうちの一つ (e.g: **CordovaBasicTemplate**) を選択します
+    - **Project name** とその **Location** を入力します
+
+    ![](img/guide/getting-started/tizen/project_template.png)
+
+    - **Finish** をクリックします
+
+    ![](img/guide/getting-started/tizen/project_explorer.png)
+
+    - これで、プロジェクトは作成され **Project Explorer** ビューに表示されます
+
+4. Hello World の作成
+--------------
+- プロジェクトのビルド:
+
+    - **Project Explorer** ビューの中のプロジェクトを **右クリック** して **Build Project** を選択します
+
+    ![](img/guide/getting-started/tizen/build_project.png)
+
+    - プロジェクトのルートディレクトリに、ウィジェットパッケージが生成されているはずです (例: `cordova-basic.wgt`)
+
+    - **注意** Tizen Cordova プロジェクトで提供されているサンプルは、基本的な hello world アプリケーションではありません。それらは、 Battery Cordova API のシンプルな使用例です。
+
+
+5A. シミュレーターへのデプロイ
+-----------------------
+
+- **Project Explorer** ビューの中のプロジェクトを **右クリック** して **Run As** と **Tizen Web Simulator Application** を選択します
+
+    ![](img/guide/getting-started/tizen/runas_web_sim_app.png)
+
+5B. デバイス/エミュレーターのデプロイ
+--------------------
+
+- デバイスが正常に起動/接続/設定されていることを確認 ("Date and Time" 設定は正しく設定されている必要があります) します
+- **Connection Explorer** ビューでアプリケーションのデプロイ先を選択します (**Window** Menu -> **Show View** -> **Connection Explorer** を選択)
+
+    ![](img/guide/getting-started/tizen/connection_explorer.png)
+
+- **Project Explorer** ビューの中のプロジェクトを **右クリック** して **Run As** と **Tizen Web Application** を選択します
+
+    ![](img/guide/getting-started/tizen/runas_web_app.png)
+
+終了
+-----

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/webos/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/webos/index.md b/docs/ja/2.2.0/guide/getting-started/webos/index.md
new file mode 100644
index 0000000..4b1a986
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/webos/index.md
@@ -0,0 +1,78 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with WebOS
+==========================
+
+このガイドは、 Cordova のための開発環境セットアップ方法、またシンプルなアプリの動かし方を解説します。 Cordova は以前は PhoneGap と呼ばれていたため、いくつかのサイトは PhoneGap という名前をまだ使用しています。
+
+ビデオチュートリアル:
+----------------
+
+- [Cordova and HP Palm webOS quick start video](http://www.youtube.com/v/XEnAUbDRZfw?autoplay=1)
+- [How to convert iPhone app to a Palm](http://www.youtube.com/v/wWoJfQw79XI?autoplay=1)
+
+
+1. 必要なもの
+---------------
+
+- Windows, OS X, または Linux
+
+
+2. SDK と Cordova のインストール
+----------------------------
+
+- [Virtual Box](http://www.virtualbox.org/) のダウンロードとインストール
+- [WebOS SDK](http://developer.palm.com/index.php?option=com_content&view=article&layout=page&id=1788&Itemid=321/) のダウンロードとインストール
+- [cygwin SDK](http://developer.palm.com/index.php?option=com_content&amp;view=article&amp;layout=page&amp;id=1788&amp;Itemid=321) のダウンロードとインストール (Windows のみ) 。デフォルトでは選択されていませんが、 "make" を選択してください
+- [Cordova](http://phonegap.com/download) の最新版をダウンロードし解凍します。 これから webOS ディレクトリと一緒に作業を進めます。
+- [Mac App Store](http://itunes.apple.com/ca/app/xcode/id497799835?mt=12) のダウンロードとインストール (OSC のみ)
+- Command Line Tools for XCode のダウンロードとインストール (OSX のみ) 。 XCode の Preferences -> Downloads -> Components から、 Command Line Tools の install をクリックすることでインストールできます
+
+
+3. 新規プロジェクトの作成
+--------------------
+
+- ターミナルまたは cygwin を開き、 Cordova を解凍したフォルダーまで移動します。 webOS ディレクトリに移動します。
+
+4. Hello World の作成
+--------------
+
+phonegap/webOS/framework/www の中の index.html を好きなエディタで開きます。 body タグの後に `<h1>Hello World</h1>` を追加します
+
+
+5A. シミュレーターへのデプロイ
+-----------------------
+
+- アプリケーションフォルダーまたはスタートメニューからPlam エミュレーターを起動します
+- webOS ディレクトリ内で、ターミナルまたは cygwin で make を実行します
+
+
+5B. デバイスへのデプロイ
+--------------------
+
+- デバイスが [デベロッパーモードになっており、また接続されている](http://developer.palm.com/index.php?option=com_content&amp;view=article&amp;id=1552&amp;Itemid=59#dev_mode) ことを確認します
+- webOS ディレクトリ内で、ターミナルまたは cygwin で make を実行します
+
+
+終了
+-----
+
+さらに詳しいガイドは [ここ](http://wiki.phonegap.com/w/page/16494781/Getting-Started-with-PhoneGap-webOS) で確認できます。
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/windows-8/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/windows-8/index.md b/docs/ja/2.2.0/guide/getting-started/windows-8/index.md
new file mode 100644
index 0000000..31b2d58
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/windows-8/index.md
@@ -0,0 +1,104 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with Windows 8
+==================================
+
+このガイドは、 Cordova のための開発環境セットアップ方法、またシンプルなアプリの動かし方を解説します。 Cordova は以前は PhoneGap と呼ばれていたため、いくつかのサイトは PhoneGap という名前をまだ使用しています。
+
+Windows 8 と Windows RT での開発中で、 Microsoft は "Metro スタイルアプリ" という呼び名を廃止予定です。 MSDN 上では、これらのタイプのアプリは "Windows ストアアプリ" と呼んでいます。このガイドでは、この名前を使用します。また、ガイド中で Windows 8 の記述がある部分は、常に Windows 8 と Windows RT の両方を指すとして考えてください。
+
+1. 必要なもの
+---------------
+
+- Windows 8
+
+- Visual Studio 2012 Professional 以上、または Visual Studio 2012 Express for Windows 8
+
+[ここ](http://www.windowsstore.com/) の手順に沿って Windows ストアにアプリを登録してください。
+
+2. SDK と Cordova のインストール
+----------------------------
+
+- お好きなエディションをセットアップしてください。すべての有料エディション (Professional 等) で Windows ストアアプリを作成できます。 [Express エディション](http://www.microsoft.com/visualstudio/jpn/products/visual-studio-express-products) を使用して Windows ストアアプリを作成するには、 **Express for Windows 8** が必要になります。
+- [Cordova](http://phonegap.com/download) の最新版をダウンロードし解凍します。 これから **lib\windows-8** サブフォルダーと一緒に作業を進めます。
+
+3. 新規プロジェクトの作成
+--------------------
+
+あなたは既に Windows ストアアプリにて利用可能な "HTML/JavaScript track" を使用して Windows 8 アプリを作ることができます。 Cordova の Windows ストアアプリでの目的は、他の Cordova プラットフォームで使用しているものと同じ API を Windows ストアアプリでも使用できるようにすることです。
+
+- Visual Studio 2012 を開き、 **New Project** を選択します。
+- ツリーから **Installed - Template - Other Languages - JavaScript - Windows Store** を選択し、プロジェクトリストから **Blank App** を選択します。お好きなプロジェクト名を入力してください。このガイドでは **CordovaWin8Foo** を使用します。
+
+    ![](img/guide/getting-started/windows-8/wsnewproject.png)
+
+- Microsoft はウェブサイトのデフォルトページに、大抵の開発者が **index.html** を使用するのに対し、 **default.html** を使用し続けています。 (加えて、他のプラットフォームでも大抵 **index.html** がデフォルトページの名前として使われているでしょう。) これを修正するために、 Solution Explorer で **default.html** ファイルを **index.html** へリネームします。そして、 **package.appxmanifest** ファイルをダブルクリックし、 **Start page** の値を **index.html** に変更します。
+
+    ![](img/guide/getting-started/windows-8/wschangemanifest.png)
+
+- **cordova.js** をプロジェクトに含めるには、 Solution Explorer で **js** フォルダーを右クリックして **Add - New Item** を選択します。 **lib\windows-8** フォルダーにある **cordova.js** ファイルを指定します。
+
+- **index.html** のコードを編集します。 **cordova.js** への参照を追加します。手動でもできますし、 Solution Explorer 内のファイルをドラッグすることでも追加できます。
+
+### 参照の追加...
+        <!-- WinJS references -->
+        <link href="//Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet" />
+        <script src="//Microsoft.WinJS.1.0/js/base.js"></script>
+        <script src="//Microsoft.WinJS.1.0/js/ui.js"></script>
+
+        <!-- Cordova -->
+        <script src="/js/cordova.js"></script>
+
+        <!-- CordovaWin8Foo references -->
+        <link href="/css/default.css" rel="stylesheet" />
+        <script src="/js/default.js"></script>
+
+- 次に、 Cordova が動いていることを確認するためのコードを追加します。
+
+### 'deviceready' ハンドラーの追加...
+    <body>
+        <p>Content goes here</p>
+
+        <script type="text/javascript">
+
+            console.log("Subscribing...");
+            document.addEventListener("deviceready", function () {
+
+                navigator.notification.alert("デバイスの準備ができました!");
+
+            });
+
+        </script>
+
+    </body>
+
+
+4. プロジェクトのテスト
+-------------------------------
+
+- プロジェクトを Visual Studio から実行します。メッセージボックスが現れるのが確認できるでしょう。
+
+    ![](img/guide/getting-started/windows-8/wsalert.png)
+
+終了
+-----
+
+以上です。これで Windows ストアアプリを Cordova で作成する準備ができました。
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/e7168dd7/docs/ja/2.2.0/guide/getting-started/windows-phone/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/windows-phone/index.md b/docs/ja/2.2.0/guide/getting-started/windows-phone/index.md
new file mode 100644
index 0000000..575d364
--- /dev/null
+++ b/docs/ja/2.2.0/guide/getting-started/windows-phone/index.md
@@ -0,0 +1,116 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Getting Started with Windows Phone
+==================================
+
+このガイドは、 Cordova のための開発環境セットアップ方法、またシンプルなアプリの動かし方を解説します。 Cordova は以前は PhoneGap と呼ばれていたため、いくつかのサイトは PhoneGap という名前をまだ使用しています。
+
+ビデオチュートリアル:
+----------------
+
+- [Cordova and Windows Phone quick setup video](http://www.youtube.com/v/wO9xdRcNHIM?autoplay=1)
+- [Cordova and Windows Phone deep dive](http://www.youtube.com/v/BJFX1GRUXj8?autoplay=1)
+
+
+1. 必要なもの
+---------------
+
+- Windows 7 または Windows Vista with SP2
+
+注意: VM での動作は問題があります。もし Mac を使用している場合は、 bootcamp パーティションを Windows 7 または Vista でセットアップする必要があります。
+
+デバイスへのインストールとマーケットプレイスへの登録のために、以下が必要です:
+
+- [App Hub member](http://create.msdn.com/en-US/home/membership) になる
+
+
+2. SDK と Cordova のインストール
+----------------------------
+
+- [Windows Phone SDK](http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27570/) のダウンロードとインストール
+- [Cordova](http://phonegap.com/download) の最新版をダウンロードし解凍します。 これから lib\windows-phone\ サブフォルダーと一緒に作業を進めます。
+- CordovaStarter-x.x.x.zip のファイルを次のフォルダーにコピーします: \My Documents\Visual Studio 2010\Templates\ProjectTemplates\
+(もしテンプレートファイルが存在しない場合、これをビルドする必要があります。以下の 2.1 を参照してください)
+もし VisualStudio をインストールしたばかりの場合は、このフォルダーを作成するために一度起動する必要があります。
+"Visual C#" の "Silverlight for Windows Phone" サブフォルダーの代わりにこのプロジェクトを追加することも出来ます。これは、新しいプロジェクトを作るときにプロジェクトテンプレートがどこに表れるかに影響するだけです。また、このフォルダーを作成する必要があるかもしれません。
+
+
+2.1 テンプレートのビルド
+-----------------------------
+(このステップは必要ないかもしれません。もし lib\windows-phone がすでに CordovaStarter-x.x.x.zip ファイルを含んでいる場合は、このステップをスキップしてください)
+- Visual Studio Express for Windows Phone にある lib\windows-phone\templates\standalone\CordovaSolution.sln を開きます
+- ファイルメニューから 'Export Template...' を選びます
+- テンプレートタイプ 'Project template' を選びます
+- エクスポートするテンプレート名を指定します。例: CordovaStarter-2.1.0 は CordovaStarter-2.1.0.zip となります
+- 概要、アイコン画像、プレビュー画像などを必要に応じて追加します。これは、 Visual Studio の 'New Project' ダイアログで表示される内容になります
+- 注意: もし ('Automatically import the template ... ') を選択した場合、ステップ2 にある .zip ファイルのコピーは必要ありません
+- 'Finish' をクリックします
+
+
+
+
+3. 新規プロジェクトの作成
+--------------------
+
+- Visual Studio Express for Windows Phone を開き、 **New Project** を選択します。
+- **CordovaStarter** を選択します。 (テンプレートの説明の中に、バージョン番号が表示されます)
+    - 注意: もし見つからない場合は、 'Visual C#' を選択してみてください。
+- プロジェクト名を指定し、 OK をクリックします。
+
+    ![](img/guide/getting-started/windows-phone/wpnewproj.png)
+
+
+4. プロジェクト構成の確認
+-------------------------------
+
+- 'www' フォルダーは Cordova の html/js/css ファイルとアプリのその他のリソースを含みます。
+- このフォルダーに追加した全てのコンテンツは Visual Studio プロジェクトの一部である必要があり、コンテンツとしてセットされている必要があります。
+
+    ![](img/guide/getting-started/windows-phone/wp7projectstructure.png)
+
+
+5. ビルドとエミュレーターへのデプロイ
+-------------------------------
+
+- **Windows Phone Emulator** が上部のドロップダウンメニューにて選択されていることを確認します。
+- Windows Phone Emulator が選択されたドロップダウンメニューの隣にある緑の **play ボタン** をクリックするか、 F5 を押下しデバッグを開始します。
+
+    ![](img/guide/getting-started/windows-phone/wprun.png)
+    ![](img/guide/getting-started/windows-phone/wpfirstrun.png)
+
+
+6. デバイスのためにプロジェクトをビルド
+------------------------------------
+
+デバイスでアプリをテストするためには、デバイスは登録されていなければなりません。 [ここ][register-url] をクリックし、 Windows Phone へのデプロイとテストに関するドキュメントを読んでください。
+
+- デバイスが接続され、スクリーンがアンロックなことを確認します
+- Visual Studio で、上部のドロップダウンメニューから 'Windows Phone Device' を選択します
+- ドロップダウンメニューの隣にある緑の **play ボタン** をクリックするか、 F5 を押下しデバッグを開始します
+
+    ![](img/guide/getting-started/windows-phone/wpd.png)
+
+
+終了
+-----
+
+さらに詳しいガイドは [ここ](http://wiki.phonegap.com/w/page/48672055/Getting%20Started%20with%20PhoneGap%20Windows%20Phone%207) で確認できます。
+
+[register-url]: http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402565(v=vs.105).aspx