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/12 19:02:59 UTC

[47/50] [abbrv] Russian headers were not translated, fixed, now links should work

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ja/edge/cordova/file/localfilesystem/localfilesystem.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/file/localfilesystem/localfilesystem.md b/docs/ja/edge/cordova/file/localfilesystem/localfilesystem.md
index 115c1f4..21384d3 100644
--- a/docs/ja/edge/cordova/file/localfilesystem/localfilesystem.md
+++ b/docs/ja/edge/cordova/file/localfilesystem/localfilesystem.md
@@ -100,4 +100,27 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         <h1>Example</h1>
         <p>Local File System</p>
       </body>
-    </html>
\ No newline at end of file
+    </html>
+    
+
+# requestFileSystem
+
+> アプリケーション データを格納するファイル システムを要求します。
+
+     window.requestFileSystem(type, size, successCallback, errorCallback)
+    
+
+*   **ウィンドウ**: グローバル ウィンドウ オブジェクトへの参照
+*   **タイプ**: ローカル ファイル システムの種類、LocalFileSystem 定数を参照ください
+*   **サイズ**: どのくらいのストレージ容量をバイト、必要とするアプリケーションで想定されることを示します。
+*   **successCallback**: ファイルシステム ・ オブジェクトを使って呼び出されます
+*   **解り**: エラー取得するファイルシステムが発生した場合に呼び出されます
+
+## ファイル システムの簡単な例を要求します。
+
+    function onSuccess(fileSystem) {
+        console.log(fileSystem.name);
+    }
+    
+    // request the persistent file system
+    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, onError);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ja/edge/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/notification/notification.confirm.md b/docs/ja/edge/cordova/notification/notification.confirm.md
index 4fcfb01..ce20b08 100644
--- a/docs/ja/edge/cordova/notification/notification.confirm.md
+++ b/docs/ja/edge/cordova/notification/notification.confirm.md
@@ -27,7 +27,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 *   **タイトル**: ダイアログのタイトル。*(文字列)*(省略可能、既定値は`Confirm`)
 
-*   **buttonLabels**: ボタンのラベルを指定するコンマ区切り文字列。*(文字列)*(省略可能、既定値は`OK,Cancel`)
+*   **buttonLabels**: ボタンのラベルを指定する文字列の配列。*(配列)*(省略可能、既定値は [ `OK,Cancel` ])
 
 ## 説明
 
@@ -62,7 +62,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             'You are the winner!', // message
              onConfirm,            // callback to invoke with index of button pressed
             'Game Over',           // title
-            'Restart,Exit'         // buttonLabels
+            ['Restart','Exit']         // buttonLabels
         );
     }
     
@@ -99,7 +99,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
                 'You are the winner!', // message
                  onConfirm,            // callback to invoke with index of button pressed
                 'Game Over',           // title
-                'Restart,Exit'         // buttonLabels
+                ['Restart','Exit']         // buttonLabels
             );
         }
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ja/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/android/plugin.md b/docs/ja/edge/guide/platforms/android/plugin.md
index c2ecea9..0c24091 100644
--- a/docs/ja/edge/guide/platforms/android/plugin.md
+++ b/docs/ja/edge/guide/platforms/android/plugin.md
@@ -24,11 +24,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 プラグインの JavaScript の部分を常に使用して、 `cordova.exec` メソッドは次のように。
 
-<<<<<<< HEAD
     exec(<successFunction>, <failFunction>, <service>, <action>, [<args>]);
-=======
-    exec (< successFunction > < failFunction >, < サービス > < アクション > [< 引数 >]);
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 これは、アンドロイド ネイティブ側には、もっとまたはより少なく通話にダウン沸騰、WebView から要求をマーシャ リングします、 `action` 法、 `service` に渡された引数を持つクラス、 `args` 配列。

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ja/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/ios/plugin.md b/docs/ja/edge/guide/platforms/ios/plugin.md
index e4b084c..a75f213 100644
--- a/docs/ja/edge/guide/platforms/ios/plugin.md
+++ b/docs/ja/edge/guide/platforms/ios/plugin.md
@@ -24,24 +24,16 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 プラグインの JavaScript の部分を常に使用して、 `cordova.exec` メソッドは次のように。
 
-<<<<<<< HEAD
     exec(<successFunction>, <failFunction>, <service>, <action>, [<args>]);
-=======
-    exec (< successFunction > < failFunction >, < サービス > < アクション > [< 引数 >]);
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 これから要求をマーシャ リングします、 `UIWebView` 、iOS ネイティブ側にもっとまたはより少なく通話にダウン沸騰、 `action` メソッド、 `service` に渡された引数を持つクラス、 `args` 配列。
 
 指定のプラグインとして、 `<feature>` 、コルドバ iOS アプリケーションのプロジェクトのタグ `config.xml` ファイル。
 
-<<<<<<< HEAD
     <feature name="LocalStorage">
         <param name="ios-package" value="CDVLocalStorage" />
     </feature>
-=======
-    < 機能名 ="LocalStorage">< param の名前 = 値「ios パッケージ」="CDVLocalStorage"/></機能 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 機能は、 `name` 属性は、JavaScript で使用すると一致する必要があります `exec` コールの `service` パラメーターと、 `value` 属性は、プラグインの Objective-C のクラスの名前と一致する必要があります。 `<param name>`私はする必要があります常に `"ios-package"` 。 このセットアップに従っていない場合、プラグイン コンパイル可能性がありますが、コルドバ到達されませんされます。
@@ -50,14 +42,10 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 それぞれの人生のためのプラグイン オブジェクトの 1 つのインスタンスが作成されます `UIWebView` 。 プラグインはまでインスタンス化されない最初、JavaScript から呼び出しによって参照されている場合を除き `<param>` と、 `onload` `name` 属性を設定する `"true"` で `config.xml` 。 例えば。
 
-<<<<<<< HEAD
     <feature name="Echo">
         <param name="ios-package" value="Echo" />
         <param name="onload" value="true" />
     </feature>
-=======
-    < 機能名 =「エコー」>< param の名前「ios パッケージ」値を = =「エコー」/>< param の名前"onload"値を = ="true"/></機能 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 *ない*プラグインの初期化子を指定します。代わりに、プラグインを使用する必要があります、 `pluginInitialize` 、スタート アップ ロジックのメソッド。
@@ -70,7 +58,6 @@ Java スクリプトの設定をネイティブ側に要求するプラグイン
 
 どのような JavaScript の経由でプラグインにディスパッチを取得 `exec` 関数で渡される対応するプラグイン クラスの `action` メソッド。プラグインのメソッドは、この署名。
 
-<<<<<<< HEAD
     - (void)myMethod:(CDVInvokedUrlCommand*)command
     {
         CDVPluginResult* pluginResult = nil;
@@ -83,9 +70,6 @@ Java スクリプトの設定をネイティブ側に要求するプラグイン
         }
         [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
     }
-=======
-    -(void) myMethod:(CDVInvokedUrlCommand*) コマンド {CDVPluginResult * pluginResult = nil;NSString * myarg = [command.arguments objectAtIndex:0];場合 (myarg! = nil) {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];} 他 {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"Arg が null"];} [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];}
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 1.  [CDVInvokedUrlCommand.h][1]
@@ -102,11 +86,7 @@ Java スクリプトの設定をネイティブ側に要求するプラグイン
 
 CDVPluginResult を使用してを返すことができますさまざまな結果型を JavaScript コールバックに戻るのようなクラスのメソッドを使用しています。
 
-<<<<<<< HEAD
     + (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAs...
-=======
-    + (CDVPluginResult *) resultWithStatus: (CDVCommandStatus) statusOrdinal messageAs.
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 作成することができます `String` 、 `Int` 、 `Double` 、 `Bool` 、 `Array` 、 `Dictionary` 、 `ArrayBuffer` 、および `Multipart` の種類。 または、任意の引数 (ちょうど送信ステータス) を添付しないでください。 または、エラーを返します。 その場合、コールバックは発生しませんないすべてで任意のプラグインの結果を送信することもできます。
@@ -121,18 +101,13 @@ CDVPluginResult を使用してを返すことができますさまざまな結
 
 我々 は、次のプロジェクトに追加の `config.xml` ファイル。
 
-<<<<<<< HEAD
     <feature name="Echo">
         <param name="ios-package" value="Echo" />
     </feature>
-=======
-    < 機能名 =「エコー」>< param の名前 = 値「ios パッケージ」=「エコー」/></機能 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 我々 は、次のファイルを追加し、( `Echo.h` および `Echo.m` ) 私たちコルドバ iOS アプリケーション フォルダー内にプラグインのフォルダーに:
 
-<<<<<<< HEAD
     /********* Echo.h Cordova Plugin Header *******/
     
     #import <Cordova/CDV.h>
@@ -165,9 +140,6 @@ CDVPluginResult を使用してを返すことができますさまざまな結
     }
     
     @end
-=======
-    /--- Echo.h コルドバ プラグイン ヘッダー ---/#import < Cordova/CDV.h > @interface エコー: CDVPlugin - (void) エコー:(CDVInvokedUrlCommand*) コマンド;@end/* * * Echo.m コルドバのプラグイン実装 * * */#import"Echo.h"#import < Cordova/CDV.h > @implementation エコー - (void) エコー:(CDVInvokedUrlCommand*) コマンド {CDVPluginResult * pluginResult = nil;NSString * エコー = [command.arguments objectAtIndex:0];場合 (エコー ! = nil & & [エコー長さ] > 0) {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:echo];} 他 {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR];} [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];} @end
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 コードを見てをみましょう。上部に我々 はすべての必要なコルドバ輸入があります。私たちのクラスから拡張 `CDVPlugin` (非常に重要)。
@@ -182,7 +154,6 @@ CDVPluginResult を使用してを返すことができますさまざまな結
 
 プラグインのメソッドは、UI と同じスレッドで実行されます。あなたのプラグイン大量の処理が必要です、ブロッキング呼び出しを必要とする場合は、バック グラウンド スレッドを使用してください。たとえば。
 
-<<<<<<< HEAD
     - (void)myPluginMethod:(CDVInvokedUrlCommand*)command
     {
         // Check command.arguments here.
@@ -194,12 +165,6 @@ CDVPluginResult を使用してを返すことができますさまざまな結
             [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
         }];
     }
-=======
-    -(void) myPluginMethod:(CDVInvokedUrlCommand*) コマンド {//command.arguments をここでチェックします。
-        [self.commandDelegate runInBackground: ^ {NSString * ペイロード = nil;//いくつかのロジックをブロック.
-            CDVPluginResult * pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:payload];//SendPluginResult メソッドはスレッド セーフです。
-            [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];}];}
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 ## 高度なプラグイン機能

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ko/edge/cordova/camera/parameter/cameraOptions.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/camera/parameter/cameraOptions.md b/docs/ko/edge/cordova/camera/parameter/cameraOptions.md
index 8af1132..fb99512 100644
--- a/docs/ko/edge/cordova/camera/parameter/cameraOptions.md
+++ b/docs/ko/edge/cordova/camera/parameter/cameraOptions.md
@@ -66,6 +66,8 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 ## 안 드 로이드 단점
 
+*   어떤 `cameraDirection` 다시 연결 사진에 결과 값.
+
 *   무시는 `allowEdit` 매개 변수.
 
 *   `Camera.PictureSourceType.PHOTOLIBRARY`그리고 `Camera.PictureSourceType.SAVEDPHOTOALBUM` 둘 다 동일한 사진 앨범을 표시 합니다.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ko/edge/cordova/file/file.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/file/file.md b/docs/ko/edge/cordova/file/file.md
index 50fa5c8..3e0dea7 100644
--- a/docs/ko/edge/cordova/file/file.md
+++ b/docs/ko/edge/cordova/file/file.md
@@ -16,7 +16,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 # 파일
 
-> 읽기, 쓰기 및 [W3C 파일 API][1] 를 기반 파일 시스템 계층 구조를 탐색 하기 위한 API.
+> 읽기, API 작성 하 고 [w3c 파일 api][1] 기반 파일 시스템 계층 구조 탐색.
 
  [1]: http://www.w3.org/TR/FileAPI
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ko/edge/cordova/file/filereader/filereader.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/file/filereader/filereader.md b/docs/ko/edge/cordova/file/filereader/filereader.md
index 6b660fc..4f394f1 100644
--- a/docs/ko/edge/cordova/file/filereader/filereader.md
+++ b/docs/ko/edge/cordova/file/filereader/filereader.md
@@ -64,7 +64,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 *   Windows Phone 7과 8
 *   윈도우 8
 
-## 데이터 URL로 읽기
+## readAsDataURL
 
 **매개 변수:**
 
@@ -81,14 +81,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsDataURL(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## 텍스트로 읽기
+## readAsText
 
 **매개 변수:**
 
@@ -107,14 +107,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsText(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## 빠른 예를 들어 중단
+## 중단
 
     function win(file) {
         var reader = new FileReader();
@@ -184,8 +184,8 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             reader.readAsText(file);
         }
     
-        function fail(evt) {
-            console.log(evt.target.error.code);
+        function fail(error) {
+            console.log(error.code);
         }
     
         </script>
@@ -201,7 +201,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 *   **인코딩** 매개 변수는 지원 되지 않습니다, 및 효과에 항상 UTF8 인코딩.
 
-## 이진 문자열 읽기
+## readAsBinaryString
 
 현재 iOS와 안 드 로이드만 지원 합니다.
 
@@ -220,14 +220,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsBinaryString(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## 배열 버퍼 읽기
+## readAsArrayBuffer
 
 현재 iOS와 안 드 로이드만 지원 합니다.
 
@@ -246,7 +246,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsArrayBuffer(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ko/edge/cordova/file/localfilesystem/localfilesystem.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/file/localfilesystem/localfilesystem.md b/docs/ko/edge/cordova/file/localfilesystem/localfilesystem.md
index 04ee353..15c4cfb 100644
--- a/docs/ko/edge/cordova/file/localfilesystem/localfilesystem.md
+++ b/docs/ko/edge/cordova/file/localfilesystem/localfilesystem.md
@@ -100,4 +100,27 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         <h1>Example</h1>
         <p>Local File System</p>
       </body>
-    </html>
\ No newline at end of file
+    </html>
+    
+
+# requestFileSystem
+
+> 응용 프로그램 데이터를 저장 하는 파일 시스템을 요청 합니다.
+
+     window.requestFileSystem(type, size, successCallback, errorCallback)
+    
+
+*   **창**: 글로벌 window 개체에 대 한 참조
+*   **형식**: 로컬 파일 시스템 형식, LocalFileSystem 상수 참조
+*   **크기**: 바이트에서 저장 공간이 얼마나 필요 기대 하는 응용 프로그램을 나타냅니다
+*   **successCallback**: 파일 시스템 개체와 호출
+*   **errorCallback**: 오류가 발생 하면 검색 파일 시스템 호출
+
+## 파일 시스템 빠른 예를 들어 요청
+
+    function onSuccess(fileSystem) {
+        console.log(fileSystem.name);
+    }
+    
+    // request the persistent file system
+    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, onError);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ko/edge/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/notification/notification.confirm.md b/docs/ko/edge/cordova/notification/notification.confirm.md
index 7a144aa..4e4c4d3 100644
--- a/docs/ko/edge/cordova/notification/notification.confirm.md
+++ b/docs/ko/edge/cordova/notification/notification.confirm.md
@@ -27,7 +27,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 *   **제목**: 제목 대화 상자. *(문자열)* (옵션, 기본값:`Confirm`)
 
-*   **buttonLabels**: 단추 레이블을 지정 하는 쉼표로 구분 된 문자열. *(문자열)* (옵션, 기본값:`OK,Cancel`)
+*   **buttonLabels**: 단추 레이블을 지정 하는 문자열 배열입니다. *(배열)* (옵션, 기본값은 [ `OK,Cancel` ])
 
 ## 설명
 
@@ -62,7 +62,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             'You are the winner!', // message
              onConfirm,            // callback to invoke with index of button pressed
             'Game Over',           // title
-            'Restart,Exit'         // buttonLabels
+            ['Restart','Exit']         // buttonLabels
         );
     }
     
@@ -99,7 +99,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
                 'You are the winner!', // message
                  onConfirm,            // callback to invoke with index of button pressed
                 'Game Over',           // title
-                'Restart,Exit'         // buttonLabels
+                ['Restart','Exit']         // buttonLabels
             );
         }
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ko/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/android/plugin.md b/docs/ko/edge/guide/platforms/android/plugin.md
index 4b2e3a5..be5df68 100644
--- a/docs/ko/edge/guide/platforms/android/plugin.md
+++ b/docs/ko/edge/guide/platforms/android/plugin.md
@@ -24,11 +24,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 플러그인의 자바 부분 항상 사용 하는 `cordova.exec` 메서드가 다음과 같이:
 
-<<<<<<< HEAD
     exec(<successFunction>, <failFunction>, <service>, <action>, [<args>]);
-=======
-    exec (< successFunction >, < failFunction >, < 서비스 >, < 작업 > [< args >]);
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 이 요청 전화 내려 더 많거나 적은 끓는 안 드 로이드 네이티브 쪽을 WebView에서 마샬링하는 `action` 메서드는 `service` 클래스에 전달 된 인수는 `args` 배열.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ko/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/ios/plugin.md b/docs/ko/edge/guide/platforms/ios/plugin.md
index f78956a..0d55d72 100644
--- a/docs/ko/edge/guide/platforms/ios/plugin.md
+++ b/docs/ko/edge/guide/platforms/ios/plugin.md
@@ -24,24 +24,16 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 플러그인의 자바 부분 항상 사용 하는 `cordova.exec` 메서드가 다음과 같이:
 
-<<<<<<< HEAD
     exec(<successFunction>, <failFunction>, <service>, <action>, [<args>]);
-=======
-    exec (< successFunction >, < failFunction >, < 서비스 >, < 작업 > [< args >]);
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 이 요청을 마샬링하는 `UIWebView` iOS 기본 측면, 더 많거나 적은 전화 아래로 끓는 `action` 메서드는 `service` 인수에 전달 된 클래스는 `args` 배열.
 
 지정한 플러그인으로는 `<feature>` 코르도바 iOS 응용 프로그램의 프로젝트에 태그 `config.xml` 파일.
 
-<<<<<<< HEAD
     <feature name="LocalStorage">
         <param name="ios-package" value="CDVLocalStorage" />
     </feature>
-=======
-    < 기능 이름 "LocalStorage" = >< param 이름을 = "ios 패키지" 값 = "CDVLocalStorage" / >< / 기능 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 기능 `name` 특성은 자바 스크립트의 사용 일치 해야 `exec` 호출의 `service` 매개 변수, 및 `value` 특성 플러그인의 목표-C 클래스의 이름과 일치 해야 합니다. `<param name>`난 항상 이어야 한다 `"ios-package"` . 이 설치를 수행 하지 않으면, 플러그인 컴파일 수 있습니다 하지만 코르도바 연결할 수 수 없습니다.
@@ -50,14 +42,10 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 각각의 인생에 대 한 플러그인 개체의 인스턴스 생성 `UIWebView` . 플러그인은 인스턴스화되지 않습니다 JavaScript에서 호출 하 여 처음 참조 될 때까지 않는 한 `<param>` 와 `onload` `name` 특성 설정 `"true"` 에 `config.xml` . 예를 들면:
 
-<<<<<<< HEAD
     <feature name="Echo">
         <param name="ios-package" value="Echo" />
         <param name="onload" value="true" />
     </feature>
-=======
-    < 기능 이름 "에코" = >< param 이름을 "ios 패키지" 값 = "에코" = / >< param 이름을 = "onload" 값 = "true" / >< / 기능 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 *아니* 플러그인에 대 한 이니셜라이저를 지정입니다. 대신, 플러그인을 사용 해야 합니다에 `pluginInitialize` 그들의 시작 논리에 대 한 방법.
@@ -70,7 +58,6 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 무슨 자바 스크립트를 통해 플러그인에 파견 되 면 `exec` 함수는 해당 플러그인 클래스에 전달 되 면 `action` 메서드. 플러그인 방법이이 서명을 했다:
 
-<<<<<<< HEAD
     - (void)myMethod:(CDVInvokedUrlCommand*)command
     {
         CDVPluginResult* pluginResult = nil;
@@ -82,14 +69,6 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"Arg was null"];
         }
         [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
-=======
-    -(void) myMethod:(CDVInvokedUrlCommand*) 명령 {CDVPluginResult * pluginResult = 없음;
-        NSString * myarg = [command.arguments objectAtIndex:0];
-    
-        경우 (myarg! = nil) {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
-        } 다른 {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"Arg null 했다"];
-        } [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     }
     
 
@@ -107,11 +86,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 CDVPluginResult를 사용 하 여 돌아갈 수 있습니다 다양 한 결과 형식 다시 자바 스크립트 콜백을 처럼 클래스 메서드를 사용 하 여:
 
-<<<<<<< HEAD
     + (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAs...
-=======
-    + (CDVPluginResult *) resultWithStatus: (CDVCommandStatus) statusOrdinal messageAs...
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 만들 수 있는 `String` , `Int` , `Double` , `Bool` , `Array` , `Dictionary` , `ArrayBuffer` , 및 `Multipart` 형식. 또는 인수 (그냥 송신 상태)를 첨부 하지 않습니다. 또는 오류를 반환 합니다. 선택할 수 있습니다 심지어 어떤 플러그인 결과 전혀 보내지를 어떤 경우에 콜백이 발생 하지 않습니다.
@@ -126,18 +101,13 @@ CDVPluginResult를 사용 하 여 돌아갈 수 있습니다 다양 한 결과 
 
 우리는 프로젝트의 다음에 추가할 `config.xml` 파일:
 
-<<<<<<< HEAD
     <feature name="Echo">
         <param name="ios-package" value="Echo" />
     </feature>
-=======
-    < 기능 이름 "에코" = >< param 이름을 "ios 패키지" 값 = "에코" = / >< / 기능 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 그 후에 다음 파일 추가 ( `Echo.h` 및 `Echo.m` ) 우리의 코르도바 iOS 응용 프로그램 폴더 안의 플러그인 폴더에:
 
-<<<<<<< HEAD
     /********* Echo.h Cordova Plugin Header *******/
     
     #import <Cordova/CDV.h>
@@ -170,17 +140,6 @@ CDVPluginResult를 사용 하 여 돌아갈 수 있습니다 다양 한 결과 
     }
     
     @end
-=======
-    / --- Echo.h 코르도바 플러그인 헤더 --- / #import < Cordova/CDV.h > @interface 에코: CDVPlugin-(void) 에코:(CDVInvokedUrlCommand*) 명령;
-    
-    @end / --- Echo.m 코르도바 플러그인 구현 --- / #import "Echo.h" #import < Cordova/CDV.h > @implementation 에코-(void) 에코:(CDVInvokedUrlCommand*) 명령 {CDVPluginResult * pluginResult = 없음;
-        NSString * 에코 = [command.arguments objectAtIndex:0];
-    
-        경우 (에코! = 대 0 & & [에코 길이] > 0) {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:echo];
-        } 다른 {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR];
-        } [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
-    } @end
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 코드를 살펴 봅시다. 상단에 우리는 모든 필요한 코르 도우 바 수입. 우리의 클래스에서 확장 `CDVPlugin` (매우 중요).
@@ -195,7 +154,6 @@ CDVPluginResult를 사용 하 여 돌아갈 수 있습니다 다양 한 결과 
 
 플러그인 메서드는 UI와 동일한 스레드에서 실행 됩니다. 귀하의 플러그인 처리의 큰 거래를 필요로 하거나 차단 호출, 백그라운드 스레드를 사용 해야 합니다. 예를 들어:
 
-<<<<<<< HEAD
     - (void)myPluginMethod:(CDVInvokedUrlCommand*)command
     {
         // Check command.arguments here.
@@ -204,13 +162,6 @@ CDVPluginResult를 사용 하 여 돌아갈 수 있습니다 다양 한 결과 
             // Some blocking logic...
             CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:payload];
             // The sendPluginResult method is thread-safe.
-=======
-    -(void) myPluginMethod:(CDVInvokedUrlCommand*) 명령 {/ / 여기 command.arguments를 확인 합니다.
-        [self.commandDelegate runInBackground: ^ {NSString * 페이로드 = 없음;
-            / / 일부 논리를 차단...
-            CDVPluginResult * pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:payload];
-            / / SendPluginResult 메서드는 스레드로부터 안전 합니다.
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
             [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
         }];
     }

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/camera/camera.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/camera/camera.md b/docs/ru/edge/cordova/camera/camera.md
index 96edfda..bba75be 100644
--- a/docs/ru/edge/cordova/camera/camera.md
+++ b/docs/ru/edge/cordova/camera/camera.md
@@ -14,7 +14,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
    under the License.
 ---
 
-# Камеры
+# Камера
 
 > `camera`Объект предоставляет доступ к приложение камеры устройства по умолчанию.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/camera/parameter/cameraOptions.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/camera/parameter/cameraOptions.md b/docs/ru/edge/cordova/camera/parameter/cameraOptions.md
index 412b13c..f15431a 100644
--- a/docs/ru/edge/cordova/camera/parameter/cameraOptions.md
+++ b/docs/ru/edge/cordova/camera/parameter/cameraOptions.md
@@ -66,6 +66,8 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 ## Андроид причуды
 
+*   Любые `cameraDirection` значение результатов в задней стороне фото.
+
 *   Игнорирует `allowEdit` параметр.
 
 *   `Camera.PictureSourceType.PHOTOLIBRARY`и `Camera.PictureSourceType.SAVEDPHOTOALBUM` оба отображения же фотоальбом.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/connection/connection.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/connection/connection.md b/docs/ru/edge/cordova/connection/connection.md
index 57a82c9..d747c6b 100644
--- a/docs/ru/edge/cordova/connection/connection.md
+++ b/docs/ru/edge/cordova/connection/connection.md
@@ -14,7 +14,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
    under the License.
 ---
 
-# Connection
+# Подключение
 
 > `connection`Объектов, через `navigator.connection` , предоставляет информацию о сотовых и wifi подключение устройства.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/file/file.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/file/file.md b/docs/ru/edge/cordova/file/file.md
index b7eb995..feab2a5 100644
--- a/docs/ru/edge/cordova/file/file.md
+++ b/docs/ru/edge/cordova/file/file.md
@@ -16,7 +16,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 # Файл
 
-> API-интерфейс для чтения, записи и перемещения файловой системы иерархии, основываясь на [Файле API W3C][1].
+> Интерфейс API, чтобы читать, писать и навигации по иерархиям файловой системы, основанные на [w3c файла api][1].
 
  [1]: http://www.w3.org/TR/FileAPI
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/file/filereader/filereader.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/file/filereader/filereader.md b/docs/ru/edge/cordova/file/filereader/filereader.md
index 3ebcc7a..6291552 100644
--- a/docs/ru/edge/cordova/file/filereader/filereader.md
+++ b/docs/ru/edge/cordova/file/filereader/filereader.md
@@ -64,7 +64,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 *   Windows Phone 7 и 8
 *   ОС Windows 8
 
-## Читать как URL данных
+## readAsDataURL
 
 **Параметры:**
 
@@ -81,14 +81,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsDataURL(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## Читать текст
+## readAsText
 
 **Параметры:**
 
@@ -107,14 +107,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsText(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## Прервать быстрый пример
+## прервать
 
     function win(file) {
         var reader = new FileReader();
@@ -184,8 +184,8 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             reader.readAsText(file);
         }
     
-        function fail(evt) {
-            console.log(evt.target.error.code);
+        function fail(error) {
+            console.log(error.code);
         }
     
         </script>
@@ -201,7 +201,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 *   Параметр **Кодировка** не поддерживается, и кодировку UTF8 действует всегда.
 
-## Читать как двоичная строка
+## readAsBinaryString
 
 В настоящее время поддерживается только на iOS и Android.
 
@@ -220,14 +220,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsBinaryString(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## Читать как буфер массива
+## readAsArrayBuffer
 
 В настоящее время поддерживается только на iOS и Android.
 
@@ -246,7 +246,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsArrayBuffer(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/file/localfilesystem/localfilesystem.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/file/localfilesystem/localfilesystem.md b/docs/ru/edge/cordova/file/localfilesystem/localfilesystem.md
index c4469df..e67f61b 100644
--- a/docs/ru/edge/cordova/file/localfilesystem/localfilesystem.md
+++ b/docs/ru/edge/cordova/file/localfilesystem/localfilesystem.md
@@ -100,4 +100,27 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         <h1>Example</h1>
         <p>Local File System</p>
       </body>
-    </html>
\ No newline at end of file
+    </html>
+    
+
+# requestFileSystem
+
+> Запросить файловую систему для хранения данных приложения.
+
+     window.requestFileSystem(type, size, successCallback, errorCallback)
+    
+
+*   **окно**: ссылка на объект глобального окна
+*   **тип**: местные системы тип файла, см. LocalFileSystem константы
+*   **Размер**: указывает, сколько места, в байтах, приложение и ожидает ее нужно
+*   **successCallback**: вызывается с помощью объекта файловой системы
+*   **errorCallback**: вызывается, если ошибка происходит извлечение файловой системы
+
+## Запрос файловой системы быстрый пример
+
+    function onSuccess(fileSystem) {
+        console.log(fileSystem.name);
+    }
+    
+    // request the persistent file system
+    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, onError);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/geolocation/geolocation.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/geolocation/geolocation.md b/docs/ru/edge/cordova/geolocation/geolocation.md
index d9966a4..f86c497 100644
--- a/docs/ru/edge/cordova/geolocation/geolocation.md
+++ b/docs/ru/edge/cordova/geolocation/geolocation.md
@@ -14,7 +14,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
    under the License.
 ---
 
-# Геолокация
+# Географическое положение
 
 > `geolocation`Объект предоставляет доступ к данным местонахождение на основе GPS-датчик устройства или выведен из сети сигналов.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/notification/notification.confirm.md b/docs/ru/edge/cordova/notification/notification.confirm.md
index 3c5bc13..34d498b 100644
--- a/docs/ru/edge/cordova/notification/notification.confirm.md
+++ b/docs/ru/edge/cordova/notification/notification.confirm.md
@@ -27,7 +27,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 *   **название**: диалоговое окно название. *(Строка)* (Обязательно, по умолчанию`Confirm`)
 
-*   **buttonLabels**: запятыми строку, указывающую метки кнопок. *(Строка)* (Обязательно, по умолчанию`OK,Cancel`)
+*   **buttonLabels**: массив строк, указание метки кнопок. *(Массив)* (Обязательно, по умолчанию [ `OK,Cancel` ])
 
 ## Описание
 
@@ -62,7 +62,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             'You are the winner!', // message
              onConfirm,            // callback to invoke with index of button pressed
             'Game Over',           // title
-            'Restart,Exit'         // buttonLabels
+            ['Restart','Exit']         // buttonLabels
         );
     }
     
@@ -99,7 +99,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
                 'You are the winner!', // message
                  onConfirm,            // callback to invoke with index of button pressed
                 'Game Over',           // title
-                'Restart,Exit'         // buttonLabels
+                ['Restart','Exit']         // buttonLabels
             );
         }
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/index.md b/docs/ru/edge/guide/platforms/index.md
index 2a25635..97b3c96 100644
--- a/docs/ru/edge/guide/platforms/index.md
+++ b/docs/ru/edge/guide/platforms/index.md
@@ -14,7 +14,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
    under the License.
 ---
 
-# Платформа гиды
+# Руководство по поддерживаемым платформам
 
 Прежде чем приступить к разработка для любой из платформ перечисленных ниже, вам потребуется установить поддержку Cordova в командной строке (CLI). (см. интерфейс командной строки.)
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/ru/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/index.md b/docs/ru/edge/index.md
index 474e358..07df25e 100644
--- a/docs/ru/edge/index.md
+++ b/docs/ru/edge/index.md
@@ -43,7 +43,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
     </li>
     <li>
       <h2>
-        Руководтсво по настройке
+        Справочник по настройке
       </h2>
       
       <span>Настройка вашего приложения.</span>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/zh/edge/cordova/camera/parameter/cameraOptions.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/camera/parameter/cameraOptions.md b/docs/zh/edge/cordova/camera/parameter/cameraOptions.md
index 427137b..847ceac 100644
--- a/docs/zh/edge/cordova/camera/parameter/cameraOptions.md
+++ b/docs/zh/edge/cordova/camera/parameter/cameraOptions.md
@@ -66,6 +66,8 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 ## Android 的怪癖
 
+*   任何 `cameraDirection` 值回朝的照片中的結果。
+
 *   忽略 `allowEdit` 參數。
 
 *   `Camera.PictureSourceType.PHOTOLIBRARY`和 `Camera.PictureSourceType.SAVEDPHOTOALBUM` 都顯示相同的相冊。

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/zh/edge/cordova/file/file.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/file/file.md b/docs/zh/edge/cordova/file/file.md
index 5b680e0..d459842 100644
--- a/docs/zh/edge/cordova/file/file.md
+++ b/docs/zh/edge/cordova/file/file.md
@@ -16,7 +16,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 # 檔
 
-> 一個 API,用於讀取、 寫入和導航基於[W3C 檔 API][1]的檔案系統層次結構.
+> 一個 API,用於讀取、 寫入和導航基於[w3c 檔 api][1]的檔案系統層次結構.
 
  [1]: http://www.w3.org/TR/FileAPI
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/zh/edge/cordova/file/filereader/filereader.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/file/filereader/filereader.md b/docs/zh/edge/cordova/file/filereader/filereader.md
index b62a7d6..0d0d465 100644
--- a/docs/zh/edge/cordova/file/filereader/filereader.md
+++ b/docs/zh/edge/cordova/file/filereader/filereader.md
@@ -64,7 +64,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 *   Windows Phone 7 和 8
 *   Windows 8
 
-## 讀取資料的 URL 作為
+## readAsDataURL
 
 **參數:**
 
@@ -81,14 +81,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsDataURL(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## 以文本格式閱讀
+## readAsText
 
 **參數:**
 
@@ -107,14 +107,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsText(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## 中止快速示例
+## 中止
 
     function win(file) {
         var reader = new FileReader();
@@ -184,8 +184,8 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             reader.readAsText(file);
         }
     
-        function fail(evt) {
-            console.log(evt.target.error.code);
+        function fail(error) {
+            console.log(error.code);
         }
     
         </script>
@@ -201,7 +201,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 *   **編碼**參數不受支援,並且 UTF8 編碼總是在效果。
 
-## 讀取的二進位字串
+## readAsBinaryString
 
 目前僅支援 iOS 和 android 系統。
 
@@ -220,14 +220,14 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsBinaryString(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     
     entry.file(win, fail);
     
 
-## 作為陣列緩衝區中讀取
+## readAsArrayBuffer
 
 目前僅支援 iOS 和 android 系統。
 
@@ -246,7 +246,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         reader.readAsArrayBuffer(file);
     };
     
-    var fail = function (evt) {
+    var fail = function (error) {
         console.log(error.code);
     };
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/zh/edge/cordova/file/localfilesystem/localfilesystem.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/file/localfilesystem/localfilesystem.md b/docs/zh/edge/cordova/file/localfilesystem/localfilesystem.md
index 48e247d..1dd8326 100644
--- a/docs/zh/edge/cordova/file/localfilesystem/localfilesystem.md
+++ b/docs/zh/edge/cordova/file/localfilesystem/localfilesystem.md
@@ -100,4 +100,27 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         <h1>Example</h1>
         <p>Local File System</p>
       </body>
-    </html>
\ No newline at end of file
+    </html>
+    
+
+# requestFileSystem
+
+> 請求一個檔案系統,用來存儲應用程式資料。
+
+     window.requestFileSystem(type, size, successCallback, errorCallback)
+    
+
+*   **視窗**: 對全球視窗物件的引用
+*   **類型**: 本地檔案系統類型,請參見場合常數
+*   **大小**: 指示應用程式期望需要多少存儲空間,以位元組為單位,
+*   **successCallback**: 使用一個檔案系統物件調用
+*   **errorCallback**: 如果發生錯誤的檢索檔案系統調用
+
+## 請求檔案系統快速示例
+
+    function onSuccess(fileSystem) {
+        console.log(fileSystem.name);
+    }
+    
+    // request the persistent file system
+    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, onError);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/zh/edge/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/notification/notification.confirm.md b/docs/zh/edge/cordova/notification/notification.confirm.md
index 4b1e541..6dd1a22 100644
--- a/docs/zh/edge/cordova/notification/notification.confirm.md
+++ b/docs/zh/edge/cordova/notification/notification.confirm.md
@@ -27,7 +27,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 *   **標題**: 標題對話方塊。*(字串)*(可選,預設值為`Confirm`)
 
-*   **buttonLabels**: 指定按鈕標籤以逗號分隔的字串。*(字串)*(可選,預設值為`OK,Cancel`)
+*   **buttonLabels**: 指定按鈕標籤的字串陣列。*(陣列)*(可選,預設值為 [ `OK,Cancel` ])
 
 ## 說明
 
@@ -62,7 +62,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             'You are the winner!', // message
              onConfirm,            // callback to invoke with index of button pressed
             'Game Over',           // title
-            'Restart,Exit'         // buttonLabels
+            ['Restart','Exit']         // buttonLabels
         );
     }
     
@@ -99,7 +99,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
                 'You are the winner!', // message
                  onConfirm,            // callback to invoke with index of button pressed
                 'Game Over',           // title
-                'Restart,Exit'         // buttonLabels
+                ['Restart','Exit']         // buttonLabels
             );
         }
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/zh/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/android/plugin.md b/docs/zh/edge/guide/platforms/android/plugin.md
index f595a4f..ef4973b 100644
--- a/docs/zh/edge/guide/platforms/android/plugin.md
+++ b/docs/zh/edge/guide/platforms/android/plugin.md
@@ -24,11 +24,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 一個外掛程式的 JavaScript 部分始終使用 `cordova.exec` 方法,如下所示:
 
-<<<<<<< HEAD
     exec(<successFunction>, <failFunction>, <service>, <action>, [<args>]);
-=======
-    exec (< successFunction > < failFunction >、 < 服務 >、 < 行動 > [< args >]) ;
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 這封送從 web 視圖到 Android 的本機方面,更多或更少沸騰到調用請求 `action` 上的方法 `service` 類,傳入的參數中的 `args` 陣列。

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/000edf9b/docs/zh/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/ios/plugin.md b/docs/zh/edge/guide/platforms/ios/plugin.md
index e6832ab..f4c4257 100644
--- a/docs/zh/edge/guide/platforms/ios/plugin.md
+++ b/docs/zh/edge/guide/platforms/ios/plugin.md
@@ -24,24 +24,16 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 一個外掛程式的 JavaScript 部分始終使用 `cordova.exec` 方法,如下所示:
 
-<<<<<<< HEAD
     exec(<successFunction>, <failFunction>, <service>, <action>, [<args>]);
-=======
-    exec (< successFunction > < failFunction >、 < 服務 >、 < 行動 > [< args >]) ;
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 這封送一個請求從 `UIWebView` 到 iOS 本機側,更或較不沸騰到調用 `action` 方法 `service` 類,傳入的參數中的 `args` 陣列。
 
 指定外掛程式作為 `<feature>` 在科爾多瓦 iOS 應用程式專案中的標記 `config.xml` 檔。
 
-<<<<<<< HEAD
     <feature name="LocalStorage">
         <param name="ios-package" value="CDVLocalStorage" />
     </feature>
-=======
-    < 功能名稱 ="認為">< 參數名稱 ="ios 包"值 ="CDVLocalStorage"/ >< / 功能 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 功能 `name` 屬性應匹配您在 JavaScript 中使用 `exec` 調用的 `service` 參數,和 `value` 屬性應與外掛程式的目標 C 類的名稱相匹配。 `<param name>`應始終是我 `"ios-package"` 。 如果不遵循此安裝程式,該外掛程式可能編譯,但不是會到達科爾多瓦。
@@ -50,14 +42,10 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 外掛程式物件的一個實例創建為生活的每個 `UIWebView` 。 外掛程式不會具現化之前他們第一次引用通過調用從 JavaScript,除非 `<param>` 與 `onload` `name` 屬性設置為 `"true"` 的 `config.xml` 。 例如:
 
-<<<<<<< HEAD
     <feature name="Echo">
         <param name="ios-package" value="Echo" />
         <param name="onload" value="true" />
     </feature>
-=======
-    < 功能名稱 ="回聲">< 參數名稱 ="ios 包"值 ="回聲"/ >< 參數名稱 ="onload"值 ="true"/ >< / 功能 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 有*沒有*指定外掛程式的初始值設定項。相反,應使用外掛程式 `pluginInitialize` 他們開辦的邏輯方法。
@@ -70,7 +58,6 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 什麼獲取調度到該外掛程式通過 JavaScript 的 `exec` 函數獲取傳遞到相應的外掛程式類的 `action` 方法。外掛程式的方法有此簽名:
 
-<<<<<<< HEAD
     - (void)myMethod:(CDVInvokedUrlCommand*)command
     {
         CDVPluginResult* pluginResult = nil;
@@ -83,9 +70,6 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
         }
         [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
     }
-=======
-    -(失效) myMethod:(CDVInvokedUrlCommand*) 命令 {CDVPluginResult * pluginResult = 零 ;NSString * myarg = [command.arguments objectAtIndex:0];如果 (myarg! = 無) {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];} 其他 {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"Arg 為空"] ;} [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId] ;}
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 1.  [CDVInvokedUrlCommand.h][1]
@@ -102,11 +86,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 使用 CDVPluginResult 可以返回結果類型的各種回您的 JavaScript 回呼函數,使用看起來像的類方法:
 
-<<<<<<< HEAD
     + (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAs...
-=======
-    + (CDVPluginResult *) resultWithStatus: (CDVCommandStatus) statusOrdinal messageAs......
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 您可以創建 `String` , `Int` , `Double` , `Bool` , `Array` , `Dictionary` , `ArrayBuffer` ,和 `Multipart` 類型。 或者,不附加任何參數 (只是發送狀態)。 或者,返回一個錯誤。 你甚至可以選擇不發送任何外掛程式的結果,在這種情況下不會觸發回檔。
@@ -121,18 +101,13 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 我們會將以下內容添加到該專案的 `config.xml` 檔:
 
-<<<<<<< HEAD
     <feature name="Echo">
         <param name="ios-package" value="Echo" />
     </feature>
-=======
-    < 功能名稱 ="回聲">< 參數名稱 ="ios 包"值 ="回聲"/ >< / 功能 >
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 然後我們將添加下列檔 ( `Echo.h` 和 `Echo.m` ) 的外掛程式資料夾裡面我們科爾多瓦 iOS 應用程式資料夾中:
 
-<<<<<<< HEAD
     /********* Echo.h Cordova Plugin Header *******/
     
     #import <Cordova/CDV.h>
@@ -165,9 +140,6 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
     }
     
     @end
-=======
-    / --- Echo.h 科爾多瓦外掛程式頭 --- / #import < Cordova/CDV.h > @interface 回聲: CDVPlugin-(void) echo:(CDVInvokedUrlCommand*) 命令 ;@end / * * * Echo.m 科爾多瓦外掛程式執行 * * * / #import"Echo.h"#import < Cordova/CDV.h > @implementation 回聲-(失效) echo:(CDVInvokedUrlCommand*) 命令 {CDVPluginResult * pluginResult = 零 ;NSString * 回聲 = [command.arguments objectAtIndex:0];如果 (回聲! = 無 & & [回聲長度] > 0) {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:echo];} 其他 {pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR];} [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId] ;} @end
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 讓我們看看代碼。在頂部,我們有所有必要的科爾多瓦進口。我們班延伸從 `CDVPlugin` (非常重要)。
@@ -182,7 +154,6 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 在相同的 UI 執行緒中執行的外掛程式方法。如果你的外掛程式需要大量的處理,或者需要一個阻塞調用,則應使用後臺執行緒。例如:
 
-<<<<<<< HEAD
     - (void)myPluginMethod:(CDVInvokedUrlCommand*)command
     {
         // Check command.arguments here.
@@ -194,12 +165,6 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
             [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
         }];
     }
-=======
-    -(失效) myPluginMethod:(CDVInvokedUrlCommand*) 命令 {/ / 檢查 command.arguments 在這裡。
-        [self.commandDelegate runInBackground: ^ {NSString * 有效載荷 = 零 ;/ 有些阻塞的邏輯......
-            CDVPluginResult * pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:payload];/ / SendPluginResult 方法是執行緒安全的。
-            [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId] ;}];}
->>>>>>> e7168dd7e82a8aab11a01117413dfd91486e029e
     
 
 ## 高級的外掛程式功能