http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/it/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/win8/plugin.md 
b/docs/it/edge/guide/platforms/win8/plugin.md
index 487fb44..9ddcac0 100644
--- a/docs/it/edge/guide/platforms/win8/plugin.md
+++ b/docs/it/edge/guide/platforms/win8/plugin.md
@@ -13,17 +13,17 @@ licenza: licenza uno o più contratti di licenza di 
collaboratore per l'Apache S
 
 ## under the License.
 
-# Plugin di Windows 8
+# Plugin di Windows
 
 In questa sezione vengono fornite informazioni dettagliate per come 
implementare un plugin da utilizzare in un'applicazione Windows Store. Prima di 
leggere questo, vedere applicazione plugin per una panoramica della struttura 
del plugin e la sua interfaccia JavaScript comune. Questa sezione continua a 
dimostrare il plugin di esempio *eco* che comunica da Cordova webview alla 
piattaforma nativa e ritorno.
 
-È importante notare che Windows 8 supporta lo sviluppo direttamente in 
Javascript, che significa sviluppare le porzioni 'native' solo richiesto in 
casi particolari.
+È importante notare che Windows supporta lo sviluppo direttamente in 
Javascript, che significa sviluppare le porzioni 'native' solo richiesto in 
casi particolari.
 
-## Creazione di un Plugin di Windows 8 in JavaScript
+## Creazione di un Plugin di Windows in JavaScript
 
 Queste istruzioni sono per creare un plugin JavaScript puro. Questa 
comprensione è fondamentale per capire come aggiungere i bit nativo/gestito.
 
-Windows 8 Cordova plugin sono essenzialmente un wrapper sottile esistente 
WinJS fornito di funzioni, ma supponendo che si desidera definire 
un'interfaccia comune JS per più dispositivi, in genere avrete 1 file JS che 
fornisce le API.
+Windows Cordova plugin sono essenzialmente un wrapper sottile esistente WinJS 
fornito di funzioni, ma supponendo che si desidera definire un'interfaccia 
comune JS per più dispositivi, in genere avrete 1 file JS che fornisce le API.
 
     // inside file echoplugin.js
     var EchoPlugin = {
@@ -35,9 +35,9 @@ Windows 8 Cordova plugin sono essenzialmente un wrapper 
sottile esistente WinJS
     }
     
 
-## Exec all'interno di Cordova su Windows 8
+## Exec all'interno di Cordova su Windows
 
-La funzione cordova.exec è definita in modo diverso su ogni piattaforma, 
questo è perché ogni piattaforma ha il proprio modo di comunicare tra il 
codice js di applicazione e il codice wrapper nativo. Ma nel caso di Windows 8, 
non non c'è nessun wrapper nativo, quindi la chiamata exec c'è coerenza. Si 
potrebbe fare il tuo lavoro di unico plugin js direttamente in EchoPlugin.echo, 
qualcosa come:
+La funzione cordova.exec è definita in modo diverso su ogni piattaforma, 
questo è perché ogni piattaforma ha il proprio modo di comunicare tra il 
codice js di applicazione e il codice wrapper nativo. Ma nel caso di Windows, 
non non c'è nessun wrapper nativo, quindi la chiamata exec c'è coerenza. Si 
potrebbe fare il tuo lavoro di unico plugin js direttamente in EchoPlugin.echo, 
qualcosa come:
 
     // inside file echoplugin.js ( this is what NOT to do if you want to reuse 
the JS API cross platform )
     var EchoPlugin = {
@@ -52,17 +52,17 @@ La funzione cordova.exec è definita in modo diverso su 
ogni piattaforma, questo
     }
     
 
-Questo sarebbe/potrebbe funzionare bene, però significa che avrete bisogno di 
diverse versioni di echoPlugin.js per diverse piattaforme, e forse si 
potrebbero avere problemi con incongruenze nelle implementazioni. Come best 
practice, abbiamo deciso di simulare un'API nativa all'interno cordova.exec su 
Windows 8, così potremmo eseguire lo stesso codice JS e non dover riscriverlo 
per la piattaforma e anche di approfittare di qualsiasi parametro di controllo, 
o altri comune codice fornito dagli sviluppatori che stavano lavorando su altre 
piattaforme.
+Questo sarebbe/potrebbe funzionare bene, però significa che avrete bisogno di 
diverse versioni di echoPlugin.js per diverse piattaforme, e forse si 
potrebbero avere problemi con incongruenze nelle implementazioni. Come best 
practice, abbiamo deciso di simulare un'API nativa all'interno cordova.exec su 
Windows, quindi potremmo eseguire lo stesso codice JS e non dover riscriverlo 
per la piattaforma e anche di approfittare di qualsiasi parametro di controllo, 
o altri comune codice fornito dagli sviluppatori che stavano lavorando su altre 
piattaforme.
 
 ## Il proxy di exec Cordova
 
-Windows 8, cordova fornisce un proxy che è possibile utilizzare per 
registrare un oggetto che consente di gestire tutte le chiamate di cordova.exec 
a un'API.
+Su Windows, cordova fornisce un proxy che è possibile utilizzare per 
registrare un oggetto che consente di gestire tutte le chiamate di cordova.exec 
a un'API.
 
 Ad esempio se si desidera fornire l'implementazione dell'API di accelerometro, 
si dovrebbe fare questo:
 
 cordova.commandProxy.add ("Accelerometro", {start: funzione () {/ / il tuo 
codice qui...} / /... e il resto dell'API qui});
 
-Così nel nostro caso, si presuppone che il codice in echoplugin.js è 
gestione multipiattaforma pertinenti JavaScript e si può scrivere 
semplicemente un proxy per Windows 8
+Così nel nostro caso, si presuppone che il codice in echoplugin.js è 
gestione multipiattaforma pertinenti JavaScript e si può scrivere 
semplicemente un proxy per Windows
 
     // in file echopluginProxy.js
     cordova.commandProxy.add("EchoPlugin",{
@@ -92,9 +92,9 @@ Se vogliamo che gli utenti del nostro plugin per poter 
installare facilmente il
             <clobbers target="window.echoplugin" />
         </js-module>
     
-        <!-- windows8 -->
-        <platform name="windows8">
-            <js-module src="src/windows8/echopluginProxy.js" name="EchoProxy">
+        <!-- windows -->
+        <platform name="windows">
+            <js-module src="src/windows/echopluginProxy.js" name="EchoProxy">
                 <merges target="" />
             </js-module>
         </platform>
@@ -104,11 +104,11 @@ Se vogliamo che gli utenti del nostro plugin per poter 
installare facilmente il
     </plugin>
     
 
-Questo ci dà un lavoro Windows 8 JavaScript plugin che utilizza un file 
comune (echoplugin.js) e utilizza un proxy per fornire l'unica porzione di 
Windows 8 di implementazione (echopluginProxy.js). Quindi, come possiamo 
aggiungere il codice nativo/gestito a questo? Bene, stiamo per iniziare lo 
stesso, l'unica differenza sarà quello che facciamo dentro nei metodi 
echopluginProxy.
+Questo ci dà un lavoro Windows JavaScript plugin che utilizza un file comune 
(echoplugin.js) e utilizza un proxy per fornire l'unica porzione di Windows di 
implementazione (echopluginProxy.js). Quindi, come possiamo aggiungere il 
codice nativo/gestito a questo? Bene, stiamo per iniziare lo stesso, l'unica 
differenza sarà quello che facciamo dentro nei metodi echopluginProxy.
 
 # Come WinJS accede nativo/gestito
 
-In Windows 8, WinJS apps creati sono in grado di interagire con codice nativo, 
questa Inter-op è disponibile per i componenti di Runtime di Windows. I 
dettagli sono numerosi, e questa guida riguarderà solo le basi. Microsoft 
fornisce informazioni molto più [qui][2].
+In Windows, WinJS apps creati sono in grado di interagire con codice nativo, 
questa Inter-op è disponibile per i componenti di Runtime di Windows. I 
dettagli sono numerosi, e questa guida riguarderà solo le basi. Microsoft 
fornisce informazioni molto più [qui][2].
 
  [2]: http://msdn.microsoft.com/en-us/library/windows/apps/hh441569.aspx
 
@@ -159,13 +159,13 @@ var res = EchoRuntimeComponent.EchoPluginRT.echo("boom"); 
Questo movimento al no
     });
     
 
-E questo è tutto, abbiamo un'estremità C++ sostenuta js plugin richiamabile 
per uso in Apache Cordova Windows 8!
+E questo è tutto, abbiamo un'estremità C++ sostenuta js plugin richiamabile 
per uso in Apache Cordova Windows!
 
 # Alcune note tecniche:
 
 *   il callback è tipicamente async, quindi chiamando il callback subito 
probabilmente non è previsto dal chiamante. In pratica, se la chiamata non è 
asincrona, si dovrebbe almeno utilizzare un timeout di javascript per forzare 
il callback chiamata async.
 *   Classi attivabili possono fare tutti i generi di impressionante, come 
evento dispacciamento, callback asincrono, passando i propri tipi di oggetto, 
matrici, collezioni, metodi di overload e molto altro ancora. Vi consiglio di 
che fare il vostro lavoro.
-*   Se attacchi ai comuni Windows Phone 8 e le chiamate API SDK di Windows 8, 
sarà in grado di utilizzare lo stesso componente runtime (bit nativo o 
gestito) in un plugin di Windows Phone 8 Apache Cordova. ~ Rimanete 
sintonizzati per quel post.
+*   Se attacchi ai comuni 8.0 di Windows Phone e Windows SDK API chiamate, 
sarete in grado di utilizzare lo stesso componente runtime (bit nativo o 
gestito) in un plugin di Windows Phone 8.0 Apache Cordova. ~ Rimanete 
sintonizzati per quel post.
 
 # Definendo il tuo plugin
 
@@ -180,12 +180,12 @@ Ora che abbiamo un plugin di lavoro, abbiamo bisogno di 
rivedere la definizione
             <clobbers target="window.echoplugin" />
         </js-module>
     
-        <!-- windows8 -->
-        <platform name="windows8">
-            <js-module src="src/windows8/echopluginProxy.js" name="EchoProxy">
+        <!-- windows -->
+        <platform name="windows">
+            <js-module src="src/windows/echopluginProxy.js" name="EchoProxy">
                 <merges target="" />
             </js-module>
-            <framework src="src/windows8/EchoRuntimeComponent.winmd" 
custom="true"/>
+            <framework src="src/windows/EchoRuntimeComponent.winmd" 
custom="true"/>
         </platform>
     
         <!-- other platforms -->
@@ -193,8 +193,8 @@ Ora che abbiamo un plugin di lavoro, abbiamo bisogno di 
rivedere la definizione
     </plugin>
     
 
-Ecco, ora avete un plugin distribuibile che puoi condividere con il mondo! Una 
cosa da notare, solo recentemente è stato aggiunto il supporto per l'aggiunta 
di quadri al progetto Windows 8 Cordova quindi sarà necessario assicurarsi che 
il vostro cordova utensileria corrente. Cordova-cli e cordova-plugman entrambi 
supportano l'aggiunta rimozione plugin backup nativo.
+Ecco, ora avete un plugin distribuibile che puoi condividere con il mondo! Una 
cosa da notare, solo recentemente è stato aggiunto il supporto per l'aggiunta 
di quadri al progetto Windows Cordova quindi sarà necessario assicurarsi che 
il vostro cordova utensileria corrente. Cordova-cli e cordova-plugman entrambi 
supportano l'aggiunta rimozione plugin backup nativo.
 
-> cordova plugin aggiungere com.risingj.echoplugin o > plugman installare - 
piattaforma windows8 - plugin com.risingj.echoplugin - progetto.
+> cordova plugin add com.risingj.echoplugin or > plugman install --platform 
windows --plugin com.risingj.echoplugin --project .
 
 https://github.com/purplecabbage/Cordova-runtimecomp-echoplug
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/it/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/wp8/index.md 
b/docs/it/edge/guide/platforms/wp8/index.md
index 0eb3fc6..9dd54b7 100644
--- a/docs/it/edge/guide/platforms/wp8/index.md
+++ b/docs/it/edge/guide/platforms/wp8/index.md
@@ -75,7 +75,7 @@ Se si desidera utilizzare strumenti shell Windows 
Phone-centrata di Cordova in c
 
  [9]: http://cordova.apache.org
 
-Questi strumenti shell consentono di creare, compilare ed eseguire 
applicazioni Windows Phone. Per informazioni sull'interfaccia della riga di 
comando aggiuntiva che attiva il plugin funzionalità su tutte le piattaforme, 
vedere utilizzando Plugman per gestire i plugin. Vedere applicazione plugin per 
indicazioni su come sviluppare plugin e Windows Phone Plugins per dettagli 
specifici per la piattaforma Windows Phone.
+Questi strumenti shell consentono di creare, compilare ed eseguire 
applicazioni Windows Phone. Per informazioni sull'interfaccia della riga di 
comando aggiuntiva che attiva il plugin funzionalità su tutte le piattaforme, 
vedere utilizzando Plugman per gestire i plugin. Vedere applicazione plugin per 
indicazioni su come sviluppare plugin e Windows Phone 8 Plugins per dettagli 
specifici per la piattaforma Windows Phone.
 
 ## Installare il SDK
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/it/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/wp8/webview.md 
b/docs/it/edge/guide/platforms/wp8/webview.md
new file mode 100644
index 0000000..81ae8d4
--- /dev/null
+++ b/docs/it/edge/guide/platforms/wp8/webview.md
@@ -0,0 +1,39 @@
+* * *
+
+licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache 
Software Foundation (ASF). 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.
+    
+
+* * *
+
+# Windows Phone visualizzazioni 8,0 Web
+
+Questa guida Mostra come incorporare un componente WebView Cordova abilitato 
all'interno di un'applicazione Windows Phone 8.0 più grande.
+
+Per seguire queste istruzioni, assicuratevi di che avere l'ultima 
distribuzione di Cordova. Scaricare da 
[cordova.apache.org](http://cordova.apache.org) e decomprimere il pacchetto 
Windows Phone 8.0 (cordova-wp8-*. zip).
+
+  1. Spostarsi del pacchetto `wp8/framework` directory e costruire 
`WPCordovaClassLib.sln` . Crea il`Bin\Debug[Release]\WPCordovaClassLib.dll`.
+
+  2. Copia il `WPCordovaClassLib.dll` file al progetto Windows Phone 8 `/libs` 
directory e includono `WPCordovaClassLib.dll` al progetto tramite 
`Project->References->Add Reference` . In alternativa, può fare riferimento 
direttamente al `wp8/framework/WPCordovaClassLib.csproj` file.
+
+  3. Aggiungi `CordovaView` componente alla tua pagina (ad 
esempio,`MainPage.xaml`).
+    
+        xmlns:my="clr-namespace:WPCordovaClassLib;assembly=WPCordovaClassLib">
+        ...
+        <my:CordovaView HorizontalAlignment="Stretch" Margin="0,0,0,0" 
+        StartPageUri="html/index.html" x:Name="CordovaView" 
VerticalAlignment="Stretch" />
+        
+
+  4. Copia `common/www/cordova.js` insieme con i file dell'applicazione HTML e 
JavaScript per il progetto Windows Phone 8 `html` directory e comprendono nuovi 
file al progetto.
+
+  5. Copia il `wp8/template/config.xml` nella directory radice del progetto e
+
+Istruzioni di cui sopra saranno link componenti Cordova core solo, vedere 
utilizzando Plugman per gestire i plugin per collegare i plugins di Cordova.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/plugins/pluginapis.md 
b/docs/ja/edge/cordova/plugins/pluginapis.md
index 64b89d2..6acc7ff 100644
--- a/docs/ja/edge/cordova/plugins/pluginapis.md
+++ b/docs/ja/edge/cordova/plugins/pluginapis.md
@@ -104,7 +104,7 @@
  [10]: http://plugins.cordova.io/#/package/org.apache.cordova.file
  [11]: http://plugins.cordova.io/#/package/org.apache.cordova.file-transfer
  [12]: http://plugins.cordova.io/#/package/org.apache.cordova.geolocation
- [13]: http://plugins.cordova.io/#/package/org.apache.globalization
+ [13]: http://plugins.cordova.io/#/package/org.apache.cordova.globalization
  [14]: http://plugins.cordova.io/#/package/org.apache.cordova.inappbrowser
  [15]: http://plugins.cordova.io/#/package/org.apache.cordova.media
  [16]: http://plugins.cordova.io/#/package/org.apache.cordova.media-capture

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/appdev/whitelist/index.md 
b/docs/ja/edge/guide/appdev/whitelist/index.md
index 8b5dacb..438728a 100644
--- a/docs/ja/edge/guide/appdev/whitelist/index.md
+++ b/docs/ja/edge/guide/appdev/whitelist/index.md
@@ -69,7 +69,7 @@
 
 **注**: ように外部 Url を防ぐために `mailto:` コルドバ 
3.6.0、現在コルドバ webview で開かれているからの指定 
`origin="*"` 場中 http および https プロトコルのルールが追加
されます。 追加のカスタム プロトコルへのアクセスが必
要な場合必要がありますもしてに追加明示的にホワイト 
リストに。 また「外部アプリケーション ホワイト 
リスト」URL 
を外部アプリケーションの起動の詳細について下記参ç…
§ã—てください。
 
-**メモ**: いくつかネットワーク要求コルドバ ホワイト 
リストを通過しません。これが含まれています <video> と 
<audio> 資源、WebSocket 接続 (Android 4.4 +)、およびその他の非 
http 要求。アンドロイド 4.4 + を含めることができます、 
[CSP][8] これらのリソースへのアクセスを制限、HTML 
ドキュメント内のヘッダー。Android 
の古いバージョンはそれらを制限できないことがあります。
+**注**: いくつかネットワーク要求通過しないコルドバ 
ホワイト リスト。 < ビデオ > これが含まれていますと < 
オーディオ > 資源、WebSocket 接続 (Android 4.4 
+)、および多分他非 http 要求。 アンドロイド 4.4 
+、それらのリソースへのアクセスを制限する HTML 
ドキュメントで、 
[CSP][8]ヘッダーを含めることができます。 Android 
の古いバージョンはそれらを制限できないことがあります。
 
  [8]: 
https://developer.mozilla.org/en-US/docs/Web/Security/CSP/Introducing_Content_Security_Policy
 
@@ -111,7 +111,7 @@ Interal ホワイト 
リストは、まず、テストからアプリケーシ
 
 IOS プラットフォーム上のワイルドカードは、 [W3C 
のウィジェット アクセス][1]仕様よりも柔軟性です。 
たとえば、次にアクセスするすべてのサブドメインおよびトップレベル
 ドメインなど、 `.com` と `.net` :
 
-        < アクセス始点 ="*.google. *"/>
+        <access origin="*.google.*" />
     
 
 ホワイト 
リストに登録して非経由でドメインへの移動、上述した 
Android のプラットフォームとは異なり `href` iOS 
上のハイパーリンクが、まったく開いてページを防ぎます。
@@ -124,17 +124,17 @@ IOS プラットフォーム
上のワイルドカードは、 [W3C のウィジ
 
 *   によってアクセスできるコンテンツ `XMLHttpRequest` 
明示的に宣言する必要があります。 設定 `origin="*"` このå 
´åˆå‹•作しません。 また、すべての web 
セキュリティできない可能性がありますを使用して、 
`WebSecurity` 好みのブラックベリーの構成で説明:
     
-        < 設定名"websecurity"の値を = =「無効」/>
+        <preference name="websecurity" value="disable" />
         
 
 *   設定に代わるものとして `*.domain` 、セット、 `subdomains` 
属性を `true` 。 設定する必要があります `false` 
デフォルトで。 たとえば、次のようにアクセスをできます 
`google.com` 、 `maps.google.com` 、および `docs.google.com` :
     
-        < アクセス始点がサブドメイン"http://google.com"= ="true"/>
+        <access origin="http://google.com"; subdomains="true" />
         
     
     次の限定にアクセスする `google.com` :
     
-        < アクセス始点がサブドメイン"http://google.com"= 
="false"/>
+        <access origin="http://google.com"; subdomains="false" />
         
     
     
ローカルを含むすべてのドメインへのアクセスを指定する 
`file://` プロトコル。

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/hybrid/plugins/index.md 
b/docs/ja/edge/guide/hybrid/plugins/index.md
index b95b6c7..75403d5 100644
--- a/docs/ja/edge/guide/hybrid/plugins/index.md
+++ b/docs/ja/edge/guide/hybrid/plugins/index.md
@@ -134,8 +134,8 @@ JavaScript 
は、プラグインのおそらく最も重要な部分を作る正
 *   Android のプラグイン
 *   iOS のプラグイン
 *   ブラックベリー 10 プラグイン
-*   Windows Phone のプラグイン
-*   Windows 8 のプラグイン
+*   Windows Phone 8 プラグイン
+*   Windows のプラグイン
 
 Tizen プラットフォーム
のプラグインをサポートしていません。
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/hybrid/webviews/index.md 
b/docs/ja/edge/guide/hybrid/webviews/index.md
index 86de19d..47d68cd 100644
--- a/docs/ja/edge/guide/hybrid/webviews/index.md
+++ b/docs/ja/edge/guide/hybrid/webviews/index.md
@@ -21,4 +21,5 @@ WebView を展開するには、各ネイティブ 
プログラミング環境
 
 *   アマゾン火 OS web 表示
 *   Android の web 表示
-*   iOS の web 表示
\ No newline at end of file
+*   iOS の web 表示
+*   Windows Phone 8.0 web 表示
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/index.md 
b/docs/ja/edge/guide/platforms/index.md
index fcabc84..37b27fc 100644
--- a/docs/ja/edge/guide/platforms/index.md
+++ b/docs/ja/edge/guide/platforms/index.md
@@ -72,6 +72,7 @@ Cordova アプリを開発するには、各モバイル 
プラットフォー
 ## Windows
 
 *   Windows プラットフォームのガイド
+*   Windows のプラグイン
 *   Windows 8 アップグレード
 
 ## Tizen

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/win8/plugin.md 
b/docs/ja/edge/guide/platforms/win8/plugin.md
index 28860cc..761eddf 100644
--- a/docs/ja/edge/guide/platforms/win8/plugin.md
+++ b/docs/ja/edge/guide/platforms/win8/plugin.md
@@ -13,17 +13,17 @@
 
 ## under the License.
 
-# Windows 8 のプラグイン
+# Windows のプラグイン
 
 Windows ストア アプリで使用するためのプラグインを実装
する方法の詳細について説明します。これを読む前に、プラグインの構é€
 ã¨ãã®ä¸€èˆ¬çš„な JavaScript 
のインターフェイスの概要についてアプリケーション ・ 
プラグインが参照してください。 
このセクションは、ネイティブ プラットフォーム
に戻るコルドバ webview 
から通信するサンプル*エコー*プラグインを示すために続けています。
 
-Windows 8 が直接 Javascript では、開発に必要な特別なケースだ
けで 'native' 
の部分を意味する開発をサポートすることに注意してくだ
さいすることが重要です。
+Windows が直接 Javascript では、開発に必要な特別なケースだ
けで 'native' 
の部分を意味する開発をサポートすることに注意してくだ
さいすることが重要です。
 
-## Java スクリプトの設定で Windows 8 
プラグインを作成します。
+## Java スクリプトの設定で、Windows のプラグインの作成
 
 これらの手順は、純粋な JavaScript 
のプラグインを作成します。これを理解するネイティブ/マネージ
 ビットを追加する方法を理解する重要です。
 
-Windows 8 コルドバ 
プラグインは本質的に薄いラッパー関数は、提供されている既存の
 WinJS が複数のデバイスは、JS å…
±é€šã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェイスを定義したいと仮定すると、通常は 1 
の JS ファイルを API を提供します。
+Windows コルドバ 
プラグインは本質的に薄いラッパー関数は、提供されている既存の
 WinJS が複数のデバイスは、JS å…
±é€šã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェイスを定義したいと仮定すると、通常は 1 
の JS ファイルを API を提供します。
 
     // inside file echoplugin.js
     var EchoPlugin = {
@@ -35,9 +35,9 @@ Windows 8 コルドバ 
プラグインは本質的に薄いラッパー関数は
     }
     
 
-## Windows 8 の内側のコルドバ exec
+## Windows の内部のコルドバ exec
 
-Cordova.exec 関数は、すべてのプラットフォーム
で定義が異なるので、これは各プラットフォーム
には、アプリケーションの js コードとネイティブ 
ラッパー コード間の通信のそれ自身の方法。 
しかし、Windows 8 の場合 exec 
呼び出しが一貫性を保つのためにあるので、ネイティブ 
ラッパーはありません。 あなたがあなたの仕事 js 
のみプラグイン EchoPlugin.echo で直接のようなもの:
+Cordova.exec 関数は、すべてのプラットフォーム
で定義が異なるので、これは各プラットフォーム
には、アプリケーションの js コードとネイティブ 
ラッパー コード間の通信のそれ自身の方法。 
しかし、Windows の場合 exec 
呼び出しが一貫性を保つのためにあるので、ネイティブ 
ラッパーはありません。 あなたがあなたの仕事 js 
のみプラグイン EchoPlugin.echo で直接のようなもの:
 
     // inside file echoplugin.js ( this is what NOT to do if you want to reuse 
the JS API cross platform )
     var EchoPlugin = {
@@ -52,17 +52,17 @@ Cordova.exec 
関数は、すべてのプラットフォームで定義が異な
     }
     
 
-これは可能性がうまく、しかしそれことを意味します、異なるプラットフォーãƒ
 ç”¨ã® echoPlugin.js の異なるバージョンを必
要がありますおそらく実装
に不整合の問題を持って可能性があります。 ベスト 
プラクティスとして、我々 でした同じ JS 
コードを実行し、プラットフォーム
の書き換えをしていないも任意のパラメーターをチェックまたは他のプラットフォーãƒ
 ã§åƒã„ていた開発者
によって提供されるその他の一般的なコードの利点を取るように
 Windows 8 では、cordova.exec 内のネイティブ API 
を模倣することを決めた。
+これは可能性がうまく、しかしそれことを意味します、異なるプラットフォーãƒ
 ç”¨ã® echoPlugin.js の異なるバージョンを必
要がありますおそらく実装
に不整合の問題を持って可能性があります。 ベスト 
プラクティスとして、我々 でした同じ JS 
コードを実行し、プラットフォーム
の書き換えをしていないも任意のパラメーターをチェック、または他の一般的なコード他のプラットフォーãƒ
 ã§åƒã„ていた開発者
によって提供される利点を取るので、windows 
では、cordova.exec 内のネイティブ API 
を模倣することを決めた。
 
 ## コルドバ exec プロキシ
 
-Windows 8 では、コルドバ API へのすべての cordova.exec 
呼び出しを処理するオブジェクトの登録に使用することができますプロキシを提供します。
+Windows では、コルドバ API へのすべての cordova.exec 
呼び出しを処理するオブジェクトの登録に使用することができますプロキシを提供します。
 
 たとえば、加速度計 API の実装を提供したいå 
´åˆã“れを行うだろう:
 
 cordova.commandProxy.add (「加速」{開始: 関数 
{//あなたのコードをここに...}、//ここでの API 
の残りの部分});
 
-従って我々 は仮定する例では、Windows 8 
用のプロキシを単に書くことができます JavaScript 
と私たちにクロスプラット フォームの関連する echoplugin.js 
内のコードが処理すること
+従って我々 は仮定する例では、Windows 
のプロキシを単に書くことができます JavaScript 
と私たちにクロスプラット フォームの関連する echoplugin.js 
内のコードが処理すること
 
     // in file echopluginProxy.js
     cordova.commandProxy.add("EchoPlugin",{
@@ -92,9 +92,9 @@ cordova.commandProxy.add (「加速」{開始: 関数 
{//あなたのコード
             <clobbers target="window.echoplugin" />
         </js-module>
     
-        <!-- windows8 -->
-        <platform name="windows8">
-            <js-module src="src/windows8/echopluginProxy.js" name="EchoProxy">
+        <!-- windows -->
+        <platform name="windows">
+            <js-module src="src/windows/echopluginProxy.js" name="EchoProxy">
                 <merges target="" />
             </js-module>
         </platform>
@@ -104,11 +104,11 @@ cordova.commandProxy.add (「加速」{開始: 関数 
{//あなたのコード
     </plugin>
     
 
-これは私たちの作業を実装 (echopluginProxy.js) の部分だけで 
Windows 8 を提供するためにプロキシを使用して共通ファイル 
(echoplugin.js) を使用して Windows 8 JavaScript 
のプラグインを与えます。 
どのように私たちにネイティブ/マネージ コードを追加
しますか? 我々 
は同じを始めるつもり、唯一の違いは、echopluginProxy 
メソッドの中で行うことになります。
+これにより作業 Windows JavaScript のプラグインの実装 
(echopluginProxy.js) の Windows 
のみの部分を提供するためにプロキシを使用してå…
±é€šãƒ•ァイル (echoplugin.js) を使用します。 
どのように私たちにネイティブ/マネージ コードを追加
しますか? 我々 
は同じを始めるつもり、唯一の違いは、echopluginProxy 
メソッドの中で行うことになります。
 
 # WinJS は、ネイティブ/マネージ コードにアクセスする方法
 
-Windows 8、WinJS 作成アプリはネイティブ 
コードと相互作用することでこの間 op は Windows ランタイム 
コンポーネントで利用できます。 
詳細は数多くあり、このガイドは基本をカバーしてのみ。 
マイクロソフトは多くの情報を提供します[ここ][2].
+Windows では、作成したアプリは、ネイティブ 
コードと対話することができる WinJS この間 op は Windows 
ランタイム コンポーネントの利用可能です。 
詳細は数多くあり、このガイドは基本をカバーしてのみ。 
マイクロソフトは多くの情報を提供します[ここ][2].
 
  [2]: http://msdn.microsoft.com/en-us/library/windows/apps/hh441569.aspx
 
@@ -159,13 +159,13 @@ var 解像度 = 
EchoRuntimeComponent.EchoPluginRT.echo("boom");これをファ
     });
     
 
-そしてそれは、Apache コルドバ Windows 8 では、エンド ツー 
エンド バックアップ C++ js 
の呼び出し可能なプラグインの使用のためがある !
+そしてそれは、我々 の使用のため、エンド ツー エンド 
バックアップ C++ js 呼び出し可能プラグイン Apache 
コルドバ、Windows にある !
 
 # いくつかのテクニカル ノート:
 
 *   コールバックは通常 async 呼び出しå…
ƒã«ã‚ˆã‚‹ã‚³ãƒ¼ãƒ«ãƒãƒƒã‚¯ã‚’すぐに呼び出すことは期待
していないだろうです。 実習では、呼び出しが非同期å 
´åˆã€å°‘なくともしてください javascript タイム
アウトを強制的に非同期に呼び出されるコールバック。
 *   
アクティブ化可能なクラスは派遣、非同期コールバック、独自のオブジェクトの型、é
…åˆ—、コレクション、オーバー 
ロードされたメソッドおよび大いに多くを渡すイベントのようなç´
 æ™´ã‚Œã‚‰ã—いのすべての種類を行うことができます。 
私はあなたの宿題をお勧めします。
-*   一般的な Windows Phone 8 と Windows 8 SDK API 
呼び出しに固執するå 
´åˆã¯ã€ã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆã‚’使用して、同じランタイム 
(ネイティブまたはマネージ ビット) Windows Phone 8 Apache 
コルドバ プラグインできます。 〜 
ポスト用にチューニング滞在します。
+*   一般的な Windows Phone 8.0 と Windows SDK API 
呼び出しに固執するå 
´åˆã¯ã€ã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆã‚’使用して、同じランタイム 
(ネイティブまたはマネージ ビット) Windows Phone 8.0 Apache 
コルドバ プラグインできます。 〜 
ポスト用にチューニング滞在します。
 
 # あなたのプラグインを定義します。
 
@@ -180,12 +180,12 @@ var 解像度 = 
EchoRuntimeComponent.EchoPluginRT.echo("boom");これをファ
             <clobbers target="window.echoplugin" />
         </js-module>
     
-        <!-- windows8 -->
-        <platform name="windows8">
-            <js-module src="src/windows8/echopluginProxy.js" name="EchoProxy">
+        <!-- windows -->
+        <platform name="windows">
+            <js-module src="src/windows/echopluginProxy.js" name="EchoProxy">
                 <merges target="" />
             </js-module>
-            <framework src="src/windows8/EchoRuntimeComponent.winmd" 
custom="true"/>
+            <framework src="src/windows/EchoRuntimeComponent.winmd" 
custom="true"/>
         </platform>
     
         <!-- other platforms -->
@@ -193,8 +193,8 @@ var 解像度 = 
EchoRuntimeComponent.EchoPluginRT.echo("boom");これをファ
     </plugin>
     
 
-それは、今、世界と共有することができます、é…
å¸ƒå¯èƒ½ãªãƒ—ラグインがある! 1 つの事に注意してください 
Windows 8 コルドバ プロジェクトにフレームワークを追加
するためのサポートは、コルドバの現在のツーリングになっていることを確認するå¿
…要がありますのでのみ最近追加されました。 コルドバ cli 
とコルドバ plugman サポート ネイティブ 
バックアップのプラグインを削除するを追加します。
+それは、今、世界と共有することができます、é…
å¸ƒå¯èƒ½ãªãƒ—ラグインがある! 1 つの事に注意してください 
Windows コルドバ プロジェクトにフレームワークを追加
するためのサポートは、コルドバの現在のツーリングになっていることを確認するå¿
…要がありますのでのみ最近追加されました。 コルドバ cli 
とコルドバ plugman サポート ネイティブ 
バックアップのプラグインを削除するを追加します。
 
-> コルドバ プラグインを追加する com.risingj.echoplugin または 
> plugman インストール--プラットフォーム windows8 
プラグイン--com.risingj.echoplugin--プロジェクト。
+> cordova plugin add com.risingj.echoplugin or > plugman install --platform 
windows --plugin com.risingj.echoplugin --project .
 
 https://github.com/purplecabbage/cordova-runtimecomp-echoplug
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/wp8/index.md 
b/docs/ja/edge/guide/platforms/wp8/index.md
index a9c5cc9..e5b9f28 100644
--- a/docs/ja/edge/guide/platforms/wp8/index.md
+++ b/docs/ja/edge/guide/platforms/wp8/index.md
@@ -75,7 +75,7 @@ SDK と一緒にコルドバの Windows Phone 
を中心としたシェル ・ 
 
  [9]: http://cordova.apache.org
 
-これらのシェルのツールを作成、構築、および Windows Phone 
アプリケーションを実行することができます。 
すべてのプラットフォーム
のプラグイン機能を有効にする追加のコマンド ライン 
インターフェイスについては、管理プラグインを使用して 
Plugman を参照してください。 詳細については、Windows Phone 
プラットフォームに固有のプラグイン、および Windows Phone 
プラグインを開発する方法に関するガイダンスについては、アプリケーション
 ・ プラグインを参照してください。
+これらのシェルのツールを作成、構築、および Windows Phone 
アプリケーションを実行することができます。 
すべてのプラットフォーム
のプラグイン機能を有効にする追加のコマンド ライン 
インターフェイスについては、管理プラグインを使用して 
Plugman を参照してください。 詳細については、Windows Phone 
プラットフォームに固有のプラグイン、および Windows Phone 8 
プラグインを開発する方法に関するガイダンスについては、アプリケーション
 ・ プラグインを参照してください。
 
 ## SDK をインストールします。
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ja/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/wp8/webview.md 
b/docs/ja/edge/guide/platforms/wp8/webview.md
new file mode 100644
index 0000000..ef7a988
--- /dev/null
+++ b/docs/ja/edge/guide/platforms/wp8/webview.md
@@ -0,0 +1,39 @@
+* * *
+
+免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 
つまたは複数の共同作成者
のライセンス契約の下でライセンスされています。 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.
+    
+
+* * *
+
+# Windows Phone 8.0 web 表示
+
+このガイドより大規模な Windows Phone 8.0 アプリケーション内
のコルドバ有効 WebView 
コンポーネントを埋め込む方法を示します。
+
+これらの指示に従う、最新コルドバ分布があることを確認します。
 
[Cordova.apache.org](http://cordova.apache.org)からダウンロードし、Windows
 Phone 8.0 パッケージ (コルドバ wp8 *.zip) を解凍します。
+
+  1. パッケージに移動 `wp8/framework` 
ディレクトリおよびビルド `WPCordovaClassLib.sln` 
。それを作成します`Bin\Debug[Release]\WPCordovaClassLib.dll`.
+
+  2. コピー、 `WPCordovaClassLib.dll` ファイルを Windows Phone 8 
プロジェクトに `/libs` ディレクトリを含めると 
`WPCordovaClassLib.dll` 経由であなたのプロジェクトに 
`Project->References->Add Reference` 。 また、あなたを直接参ç…
§ã™ã‚‹ã“とができます、 `wp8/framework/WPCordovaClassLib.csproj` 
ファイル。
+
+  3. 追加 `CordovaView` 
(たとえば、ページにコンポーネント`MainPage.xaml`).
+    
+        xmlns:my="clr-namespace:WPCordovaClassLib;assembly=WPCordovaClassLib">
+        ...
+        <my:CordovaView HorizontalAlignment="Stretch" Margin="0,0,0,0" 
+        StartPageUri="html/index.html" x:Name="CordovaView" 
VerticalAlignment="Stretch" />
+        
+
+  4. コピー `common/www/cordova.js` Windows Phone 8 
プロジェクトのアプリケーションの HTML や JavaScript 
ファイルと共に `html` 
ディレクトリ、プロジェクトに新しいファイルが含まれます。
+
+  5. コピー、 `wp8/template/config.xml` プロジェクトのルート 
ディレクトリに、
+
+上記の手順はコルドバ 
コアコンポーネントのみをリンク、コルドバ 
プラグインをリンクするために管理のプラグインを使用して
 Plugman を参照してください。
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/plugins/pluginapis.md 
b/docs/ko/edge/cordova/plugins/pluginapis.md
index 7d6b7d1..006542d 100644
--- a/docs/ko/edge/cordova/plugins/pluginapis.md
+++ b/docs/ko/edge/cordova/plugins/pluginapis.md
@@ -104,7 +104,7 @@
  [10]: http://plugins.cordova.io/#/package/org.apache.cordova.file
  [11]: http://plugins.cordova.io/#/package/org.apache.cordova.file-transfer
  [12]: http://plugins.cordova.io/#/package/org.apache.cordova.geolocation
- [13]: http://plugins.cordova.io/#/package/org.apache.globalization
+ [13]: http://plugins.cordova.io/#/package/org.apache.cordova.globalization
  [14]: http://plugins.cordova.io/#/package/org.apache.cordova.inappbrowser
  [15]: http://plugins.cordova.io/#/package/org.apache.cordova.media
  [16]: http://plugins.cordova.io/#/package/org.apache.cordova.media-capture

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/appdev/whitelist/index.md 
b/docs/ko/edge/guide/appdev/whitelist/index.md
index dbdaece..d4c4175 100644
--- a/docs/ko/edge/guide/appdev/whitelist/index.md
+++ b/docs/ko/edge/guide/appdev/whitelist/index.md
@@ -69,7 +69,7 @@
 
 **참고**: 외부 Url을과 같은 방지 하기 위하여 `mailto:` 
코르도바 3.6.0, 현재 코르도바 webview에서 열리지 못하게 지ì 
• `origin="*"` 암시적 http 및 https 프로토콜에 대 한 규칙을 
추가 합니다. 추가 사용자 지정 프로토콜에 액세스 해야 
하는 경우 추가 해야 합니다 또한 그들 명시적으로 화이트 
리스트에 있습니다. 또한 url이 외부 응용 프로그램 실행에 
대 한 자세한 내용은 아래 "외부 응용 프로그램 허용" 참조.
 
-**참고**: 일부 네트워크 요청 코르도바 Whitelist를 통해 이동 
하지 마십시오. 이것은 포함 한다 <video> 그리고 <audio> 
리소스, WebSocket 연결 (안 드 로이드 4.4 +), 그리고 다른 비 
http 요청. 안 드 로이드 4.4 +에 포함할 수 있는 [CSP][8] 
리소스에 대 한 액세스를 제한 하 여 HTML 문서에 헤더입
니다. 안 드 로이드의 이전 버전에서 그들을 제한 하는 것이 
가능 하지 않을 수 있습니다.
+**참고**: 일부 네트워크 요청 코르도바 허용을 통해 가지 
않는다. 이 포함 하는 < 비디오 >와 < 오디오 > 리소스, 
WebSocket 연결 (안 드 로이드 4.4 +), 및 기타 비 http 요청. 안 드 
로이드 4.4 +, 리소스에 대 한 액세스를 제한 하 여 HTML 
문서에 [CSP][8] 헤더를 포함할 수 있습니다. 안 드 로이드의 
이전 버전에서 그들을 제한 하는 것이 가능 하지 않을 수 
있습니다.
 
  [8]: 
https://developer.mozilla.org/en-US/docs/Web/Security/CSP/Introducing_Content_Security_Policy
 
@@ -111,7 +111,7 @@
 
 IOS 플랫폼에서 와일드 카드는 [W3C 위젯 액세스][1] 사양 
보다 더 유연 합니다. 예를 들어, 다음 액세스 모든 하위 
도메인과 최상위 도메인 같은 `.com` 및 `.net` :
 
-        < 원본 액세스 = "*.google. *" / >
+        <access origin="*.google.*" />
     
 
 안 드 로이드 플랫폼 위에서 언급을 통해 비 허용 도메인 
탐색 달리 `href` iOS에서 하이퍼링크 모든 열에서 페이지 
방지.
@@ -124,17 +124,17 @@ IOS 플랫폼에서 와일드 카드는 [W3C 위젯 
액세스][1] 사양 보다
 
 *   콘텐츠 액세스 `XMLHttpRequest` 명시적으로 선언 해야 
합니다. 설정 `origin="*"` 이 경우 작동 하지 않습니다. 양자 
택일로, 모든 웹 보안 비활성화 될 수 있습니다 사용 하는 
`WebSecurity` 블랙베리 구성에서 설명 하는 기본 설정:
     
-        < 선호 이름 = "websecurity" 값 = "사용 안 함" / >
+        <preference name="websecurity" value="disable" />
         
 
 *   설정 하는 대신 `*.domain` , 설정 추가로 `subdomains` 속성을 
`true` . 로 설정 해야 `false` 기본적으로. 다음에 액세스할 수 
있습니다 예를 들어 `google.com` , `maps.google.com` , 및 
`docs.google.com` :
     
-        < 출처에 액세스 "http://google.com"; 하위 도메인 = = "true" 
/ >
+        <access origin="http://google.com"; subdomains="true" />
         
     
     다음 우 스 액세스를 `google.com` :
     
-        < 출처에 액세스 "http://google.com"; 하위 도메인 = = "false" 
/ >
+        <access origin="http://google.com"; subdomains="false" />
         
     
     지역을 포함 하 여 모든 도메인에 대 한 액세스 지정 
`file://` 프로토콜:

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/hybrid/plugins/index.md 
b/docs/ko/edge/guide/hybrid/plugins/index.md
index e7a4a2c..32d2383 100644
--- a/docs/ko/edge/guide/hybrid/plugins/index.md
+++ b/docs/ko/edge/guide/hybrid/plugins/index.md
@@ -134,8 +134,8 @@ IOS 종속성 로드 제대로 여부를 테스트 하ë 
¤ë©´ 다음 명령을 
 *   안 드 로이드 플러그인
 *   iOS 플러그인
 *   블랙베리 10 플러그인
-*   Windows Phone 플러그인
-*   윈도우 8 플러그인
+*   Windows Phone 8 플러그인
+*   윈도우 플러그인
 
 Tizen 플랫폼 플러그인을 지원 하지 않습니다.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/hybrid/webviews/index.md 
b/docs/ko/edge/guide/hybrid/webviews/index.md
index 6a5247d..9ddc7b8 100644
--- a/docs/ko/edge/guide/hybrid/webviews/index.md
+++ b/docs/ko/edge/guide/hybrid/webviews/index.md
@@ -21,4 +21,5 @@ WebView를 배포 하려면 각 네이티브 프로그래밍 
환경에 잘 알
 
 *   아마존 화재 OS WebViews
 *   안 드 로이드 WebViews
-*   iOS WebViews
\ No newline at end of file
+*   iOS WebViews
+*   Windows Phone 8.0 WebViews
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/index.md 
b/docs/ko/edge/guide/platforms/index.md
index 73faa6f..f4da71f 100644
--- a/docs/ko/edge/guide/platforms/index.md
+++ b/docs/ko/edge/guide/platforms/index.md
@@ -72,6 +72,7 @@
 ## 윈도우
 
 *   Windows 플랫폼 가이드
+*   윈도우 플러그인
 *   윈도우 8을 업그레이드
 
 ## Tizen

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/win8/plugin.md 
b/docs/ko/edge/guide/platforms/win8/plugin.md
index 52cf547..f4410cb 100644
--- a/docs/ko/edge/guide/platforms/win8/plugin.md
+++ b/docs/ko/edge/guide/platforms/win8/plugin.md
@@ -13,17 +13,17 @@
 
 ## under the License.
 
-# 윈도우 8 플러그인
+# 윈도우 플러그인
 
 이 섹션에서는 Windows 스토어 애플 리 케이 션에 사용 하기 
위해 플러그인을 구현 하는 방법에 대 한 세부 정보를 제공 
합니다. 이것을 읽기 전에 응용 프로그램 플러그인 
플러그인의 구조와 그것의 일반 자바 스크립트 
인터페이스의 개요 참조 하십시오. 이 섹션 코르도바 
webview에서 네이티브 플랫폼 및 뒤 통신 샘플 *에코* 
플러그인을 설명 하 고 있습니다.
 
-그것은 윈도우 8 개발에 필요한 특별 한 경우에 '네이티브' 
부분을 개발 하는 것을 의미 하는 자바 스크립트에서 직접 
지원 해야 합니다.
+참고 Windows에서 필요한 특별 한 경우에 '네이티브' 부분을 
개발 하는 것을 의미 하는 자바 스크립트에서 직접 개발 
지원에 중요 하다.
 
-## 자바 스크립트에서 윈도우 8 플러그인 만들기
+## 자바 스크립트에서 윈도우 플러그인 만들기
 
 이들이 지시는 순수 자바 스크립트 플러그인을 만들 수 
있습니다. 이것을 이해 하는 것은 네이티브/관리 되는 
비트를 추가 하는 방법을 이해 하는 데 중요 합니다.
 
-윈도우 8 코르도바 플러그인 얇은 래퍼 기능을 제공 하는 
기존 WinJS 본질적으로 하지만 여러 디바이스를 위한 JS 일반ì 
ì¸ 인터페이스를 정의 하려는 가정, 당신은 것입니다 일반ì 
ìœ¼ë¡œ 1 개의 JS 파일 API를 제공 하.
+Windows 코르도바 플러그인 얇은 래퍼 기능을 제공 하는 기존 
WinJS 본질적으로 하지만 여러 디바이스를 위한 JS 일반적인 
인터페이스를 정의 하려는 가정, 당신은 것입니다 일반ì 
ìœ¼ë¡œ 1 개의 JS 파일 API를 제공 하.
 
     // inside file echoplugin.js
     var EchoPlugin = {
@@ -35,9 +35,9 @@
     }
     
 
-## 윈도우 8에 안으로 코르도바 exec
+## 윈도우 내부 코르도바 exec
 
-Cordova.exec 함수를 다르게 정의 하 여 모든 플랫폼에서이 
때문에 각 플랫폼 응용 프로그램 js 코드와 네이티브 래퍼 
코드 간의 통신의 그것의 자신의 방법이 있다. 하지만 
윈도우 8의 경우 exec 호출 일관성 있다 그래서 아무 
네이티브 래퍼 이다. 같은 EchoPlugin.echo, 직접 js 유일한 
플러그인 작업을 할 수 있는:
+Cordova.exec 함수를 다르게 정의 하 여 모든 플랫폼에서이 
때문에 각 플랫폼 응용 프로그램 js 코드와 네이티브 래퍼 
코드 간의 통신의 그것의 자신의 방법이 있다. 그러나 
Windows의 경우 exec 호출 일관성 있다 그래서 없는 네이티브 
래퍼 이다. 같은 EchoPlugin.echo, 직접 js 유일한 플러그인 작업
을 할 수 있는:
 
     // inside file echoplugin.js ( this is what NOT to do if you want to reuse 
the JS API cross platform )
     var EchoPlugin = {
@@ -52,17 +52,17 @@ Cordova.exec 함수를 다르게 정의 하 여 모든 
플랫폼에서이 때문
     }
     
 
-그러나 이것 그것은 다른 플랫폼에 대 한 echoPlugin.js의 다른 
버전을 필요 합니다 그리고 가능 하 게 하 여 구현에 불일치 
문제를 가질 수 있습니다. 있습니다 의미 잘 작동 것입니다 
수 있습니다. 좋습니다, 우리는 우리 수 있도록 같은 JS 
코드를 실행 하 고 플랫폼을 위해 그것을 다시 작성 하지 
않아도 어떤 매개 변수 검사 또는 다른 공통 코드를 다른 
플랫폼에서 작업 하는 개발자에 의해 제공의 혜택을 받을 
수 cordova.exec 윈도우 8에 내부 네이티브 API를 모방 하기로 
결정 했다.
+그러나 이것 그것은 다른 플랫폼에 대 한 echoPlugin.js의 다른 
버전을 필요 합니다 그리고 가능 하 게 하 여 구현에 불일치 
문제를 가질 수 있습니다. 있습니다 의미 잘 작동 것입니다 
수 있습니다. 좋습니다, 우리는 우리 수 있도록 같은 JS 
코드를 실행 하 고 플랫폼을 위해 그것을 다시 작성 하지 
않아도 어떤 매개 변수 검사, 또는 다른 일반적인 코드를 
다른 플랫폼에서 작업 하는 개발자에 의해 제공의 혜택을 
받을 수 cordova.exec Windows에서 내부 네이티브 API를 모방 
하기로 결정 했다.
 
 ## 코르 도우 바 exec 프록시
 
-윈도우 8에 코르도바 API에 대 한 모든 cordova.exec 호출을 
처리 하는 개체를 등록 하는 데 사용할 수 있는 프록시를 ì 
œê³µ 합니다.
+윈도우에서 코르도바 API에 대 한 모든 cordova.exec 호출을 
처리 하는 개체를 등록 하는 데 사용할 수 있는 프록시를 ì 
œê³µ 합니다.
 
 예를 들어가 속도계 API에 대 한 구현을 제공 하려는 경우 
당신은 것이:
 
 cordova.commandProxy.add ("가 속도계", {시작: function() {/ / 여기에 
코드...} / /... 여기 API의 나머지 부분});
 
-그래서 우리의 경우, 우리 가정은 단순히 윈도우 8에 대 한 
프록시를 작성할 수 있습니다 자바 스크립트 및 우리 
크로스 플랫폼 관련 echoplugin.js 코드 처리
+그래서 우리의 경우, 우리 가정은 단순히 윈도우에 대 한 
프록시를 작성할 수 있습니다 자바 스크립트 및 우리 
크로스 플랫폼 관련 echoplugin.js 코드 처리
 
     // in file echopluginProxy.js
     cordova.commandProxy.add("EchoPlugin",{
@@ -92,9 +92,9 @@ cordova.commandProxy.add ("가 속도계", {시작: 
function() {/ / 여기에 
             <clobbers target="window.echoplugin" />
         </js-module>
     
-        <!-- windows8 -->
-        <platform name="windows8">
-            <js-module src="src/windows8/echopluginProxy.js" name="EchoProxy">
+        <!-- windows -->
+        <platform name="windows">
+            <js-module src="src/windows/echopluginProxy.js" name="EchoProxy">
                 <merges target="" />
             </js-module>
         </platform>
@@ -104,11 +104,11 @@ cordova.commandProxy.add ("가 속도계", {시작: 
function() {/ / 여기에 
     </plugin>
     
 
-이것은 우리가 작업 일반적인 파일 (echoplugin.js)를 사용 하 
여 구현 (echopluginProxy.js)의 윈도우 8 단지 부분을 제공 하는 
프록시를 사용 하 여 Windows 8 자바 플러그인 제공. 우리가 
어떻게이 네이티브/관리 되는 코드를 추가 하려면? 잘 
우리는 시작 하려고 같은, 유일한 차이점은 우리가 
echopluginProxy 방법에서 안에 할 것.
+이것은 우리가 작업 일반적인 파일 (echoplugin.js)를 사용 하 
여 Windows 유일한 부분 구현 (echopluginProxy.js)를 제공 하는 
프록시를 사용 하 여 Windows 자바 플러그인 제공. 우리가 
어떻게이 네이티브/관리 되는 코드를 추가 하려면? 잘 
우리는 시작 하려고 같은, 유일한 차이점은 우리가 
echopluginProxy 방법에서 안에 할 것.
 
 # WinJS는 네이티브/관리 되는 코드를 액세스 하는 방법
 
-윈도우 8, 제작 된 애플 리 케이 션은 네이티브 코드와 상호 
작용할 수 있게 하는 WinJS이 간이 op에서는 Windows 런타임 
구성 요소에 사용할 수 있는입니다. 세부 사항은 수많은, 
그리고이 가이드만 기초를 다룰 것입니다. 
마이크로소프트는 훨씬 더 많은 정보를 제공 한다 [여기][2].
+Windows WinJS 제작 된 애플 리 케이 션은 네이티브 코드와 
상호 작용할 수에서 간이 op는 Windows 런타임 구성 요소에 
사용할 수 있는. 세부 사항은 수많은, 그리고이 가이드만 
기초를 다룰 것입니다. 마이크로소프트는 훨씬 더 많은 ì 
•보를 제공 한다 [여기][2].
 
  [2]: http://msdn.microsoft.com/en-us/library/windows/apps/hh441569.aspx
 
@@ -159,13 +159,13 @@ var res = EchoRuntimeComponent.EchoPluginRT.echo("boom"); 
우리의 echopluginPr
     });
     
 
-즉, 우리는 끝에 c + + 지원 js 호출 가능 플러그인 사용 하기 
위해 아파치 코르도바 윈도우 8에!
+즉, 우리는 끝에 c + + 지원 js 호출 가능 플러그인 사용에 대 
한 아파치 코르도바 창!
 
 # 일부 기술 노트:
 
 *   콜백을 이므로 일반적으로 비동기, 호출자가 아마 
예상은 바로 콜백을 호출 합니다. 실제로, 경우 호출이 
비동기, 적어도 사용 해야 자바 스크립트 시간 초과를 
비동기 호출할 콜백입니다.
 *   활성화 가능 클래스는 끝내, 파견, 비동기 콜백, 사용자 
자신의 개체 유형, 배열, 컬렉션, 오버 로드 된 메서드 및 
훨씬 더를 전달 하는 이벤트의 모든 종류를 할 수 있습니다. 
나는 당신이 당신의 숙제를 할 것이 좋습니다.
-*   일반적인 Windows Phone 8과 윈도 8 SDK API 호출을 스틱 같은 
런타임 구성 요소 (네이티브 또는 관리 되는 비트)를 사용 
하 여 Windows Phone 8 아파치 코르도바 플러그인에서 수. 
있습니다 ~ 그 게시물에 대 한 지켜.
+*   일반적인 Windows Phone 8.0과 Windows SDK API 호출을 스틱 같은 
런타임 구성 요소 (네이티브 또는 관리 되는 비트)를 사용 
하 여 Windows Phone 8.0 아파치 코르도바 플러그인에서 수. 
있습니다 ~ 그 게시물에 대 한 지켜.
 
 # 플러그인 정의
 
@@ -180,12 +180,12 @@ var res = EchoRuntimeComponent.EchoPluginRT.echo("boom"); 
우리의 echopluginPr
             <clobbers target="window.echoplugin" />
         </js-module>
     
-        <!-- windows8 -->
-        <platform name="windows8">
-            <js-module src="src/windows8/echopluginProxy.js" name="EchoProxy">
+        <!-- windows -->
+        <platform name="windows">
+            <js-module src="src/windows/echopluginProxy.js" name="EchoProxy">
                 <merges target="" />
             </js-module>
-            <framework src="src/windows8/EchoRuntimeComponent.winmd" 
custom="true"/>
+            <framework src="src/windows/EchoRuntimeComponent.winmd" 
custom="true"/>
         </platform>
     
         <!-- other platforms -->
@@ -193,8 +193,8 @@ var res = EchoRuntimeComponent.EchoPluginRT.echo("boom"); 
우리의 echopluginPr
     </plugin>
     
 
-즉, 이제는 세계와 공유할 수 있습니다 배포할 플러그인 
있다! 한 가지 주의할 점은, 윈도우 8 코르도바 프로젝트에 
프레임 워크를 추가 하기 위한 지원만 최근에 당신의 코르 
도우 바 공구 전류 있는지 확인 해야 합니다 추가 
되었습니다. 코르 도우 바 cli 및 코르도바 plugman 네이티브 
백업된 플러그인 제거 추가 지원.
+즉, 이제는 세계와 공유할 수 있습니다 배포할 플러그인 
있다! 한 가지 주의할 점은, 현재 공구 당신의 코르도바 
있는지 확인 해야 합니다 그래서 Windows 코르도바 프로ì 
íŠ¸ì— 프레임 워크를 추가 하기 위한 지원만 최근에 추가 
되었습니다. 코르 도우 바 cli 및 코르도바 plugman 네이티브 
백업된 플러그인 제거 추가 지원.
 
-> 코르 도우 바 플러그인 추가 com.risingj.echoplugin 또는 > 
plugman 설치-플랫폼 windows8-플러그인 com.risingj.echoplugin-프로ì 
íЏ.
+> cordova plugin add com.risingj.echoplugin or > plugman install --platform 
windows --plugin com.risingj.echoplugin --project .
 
 https://github.com/purplecabbage/cordova-runtimecomp-echoplug
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/wp8/index.md 
b/docs/ko/edge/guide/platforms/wp8/index.md
index 7a70932..ce64989 100644
--- a/docs/ko/edge/guide/platforms/wp8/index.md
+++ b/docs/ko/edge/guide/platforms/wp8/index.md
@@ -75,7 +75,7 @@ SDK와 함께에서 코르도바의 Windows Phone 
중심으로 셸 도구를 사
 
  [9]: http://cordova.apache.org
 
-이러한 셸 도구 작성, 구축 및 Windows Phone 응용 프로그램을 
실행할 수 있습니다. 모든 플랫폼에 걸쳐 플러그인 기능을 
활성화 하는 추가 명령줄 인터페이스에 대 한 정보를 관리 
플러그인을 사용 하 여 Plugman를 참조 하십시오. 자세한 
내용은 Windows Phone 플랫폼에 플러그인, 그리고 Windows Phone 
플러그인을 개발 하는 방법에 대 한 지침은 응용 프로그램 
플러그인을 참조 하십시오.
+이러한 셸 도구 작성, 구축 및 Windows Phone 응용 프로그램을 
실행할 수 있습니다. 모든 플랫폼에 걸쳐 플러그인 기능을 
활성화 하는 추가 명령줄 인터페이스에 대 한 정보를 관리 
플러그인을 사용 하 여 Plugman를 참조 하십시오. 자세한 
내용은 Windows Phone 플랫폼에 플러그인, 그리고 Windows Phone 8 
플러그인을 개발 하는 방법에 대 한 지침은 응용 프로그램 
플러그인을 참조 하십시오.
 
 ## SDK 설치
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/ko/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/wp8/webview.md 
b/docs/ko/edge/guide/platforms/wp8/webview.md
new file mode 100644
index 0000000..db0e295
--- /dev/null
+++ b/docs/ko/edge/guide/platforms/wp8/webview.md
@@ -0,0 +1,39 @@
+* * *
+
+면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 
사용권 계약 하에서 허가 된. 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.
+    
+
+* * *
+
+# Windows Phone 8.0 WebViews
+
+이 가이드에서는 더 큰 Windows Phone 8.0 응용 프로그램 내에서 
WebView 코르도바 활성화 구성 요소를 포함 하는 방법을 보여 
줍니다.
+
+이러한 지침에 따라, 최신 코르도바 분포를가지고 있는지 
확인 합니다. [Cordova.apache.org](http://cordova.apache.org) 에서 
다운로드 하 고 Windows Phone 8.0 패키지 (코르도바-wp8-*.zip)의 
압축을 풉니다.
+
+  1. 패키지의 이동 `wp8/framework` 디렉토리 및 빌드 
`WPCordovaClassLib.sln` . 그것은 
생성에`Bin\Debug[Release]\WPCordovaClassLib.dll`.
+
+  2. 복사는 `WPCordovaClassLib.dll` Windows Phone 8 프로젝트에 파일 
`/libs` 디렉터리를 포함 하 고 `WPCordovaClassLib.dll` 을 통해 
프로젝트 `Project->References->Add Reference` . 양자 택일로, 직접 
참조할 수는 `wp8/framework/WPCordovaClassLib.csproj` 파일.
+
+  3. 추가 `CordovaView` (예를 들어, 페이지 구성 
요소`MainPage.xaml`).
+    
+        xmlns:my="clr-namespace:WPCordovaClassLib;assembly=WPCordovaClassLib">
+        ...
+        <my:CordovaView HorizontalAlignment="Stretch" Margin="0,0,0,0" 
+        StartPageUri="html/index.html" x:Name="CordovaView" 
VerticalAlignment="Stretch" />
+        
+
+  4. 복사 `common/www/cordova.js` Windows Phone 8 프로젝트에 응용 
프로그램의 HTMLê³¼ 자바 스크립트 파일과 함께 `html` 디ë 
‰í„°ë¦¬ 프로젝트에 새 파일을 포함 합니다.
+
+  5. 복사는 `wp8/template/config.xml` 프로젝트의 루트 디ë 
‰í„°ë¦¬ì— 및
+
+위의 지침 코어 코르 도우 바 구성 요소만을 링크, 
코르도바 플러그인 연결 관리 플러그인을 사용 하 여 
Plugman를 참조 하십시오.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/config_ref/images.md 
b/docs/pl/edge/config_ref/images.md
index 65ca758..5c4577b 100644
--- a/docs/pl/edge/config_ref/images.md
+++ b/docs/pl/edge/config_ref/images.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     
@@ -134,88 +134,67 @@ Windows8
 
 ## Konfigurowanie ekrany powitalne w aplikacjach w consoli
 
-Użyj ekranu powitalnego API umożliwiające wyświetlanie ekranu powitalnego 
wprowadzające aplikacji na wielu platformach. Podczas pracy w consoli 
opryskać tęcza pliki źródłowe znajdują się w ramach projektu 
`www/res/screens` podkatalogu.
-
-Android określa zarówno portret i krajobraz zorientowana powitalny ekran 
obrazy o niskiej, średniej, wysokiej i bardzo wysokiej rozdzielczości:
-
-        android/screen-hdpi-landscape.png
-        android/screen-hdpi-portrait.png
-        android/screen-ldpi-landscape.png
-        android/screen-ldpi-portrait.png
-        android/screen-mdpi-landscape.png
-        android/screen-mdpi-portrait.png
-        android/screen-xhdpi-landscape.png
-        android/screen-xhdpi-portrait.png
-    
-
-Platformy iOS określa warianty dla iPhone/iPod i iPad, warianty wyświetla 
siatkówki i inne kierunki. Plik *568 h* stosuje się wyższy ekran iPhone 5:
-
-        ios/screen-ipad-landscape-2x.png
-        ios/screen-ipad-landscape.png
-        ios/screen-ipad-portrait-2x.png
-        ios/screen-ipad-portrait.png
-        ios/screen-iphone-landscape-2x.png
-        ios/screen-iphone-landscape.png
-        ios/screen-iphone-portrait-2x.png
-        ios/screen-iphone-portrait.png
-        ios/screen-iphone-portrait-568h-2x.png
+W najwyższego poziomu `config.xml` pliku (nie ten w `platforms` ), dodać 
elementy konfiguracji, takie jak te określone w tym miejscu.
+
+# Przykład konfiguracji
+
+Proszę zauważyć, że wartość atrybutu "src" jest katalogiem projektu, a 
nie do katalogu www. Możesz wymienić obrazu źródłowego cokolwiek chcesz. 
Nazwa wewnętrzna w aplikacji są określane przez Cordova.
+
+    <platform name="android">
+        <!-- you can use any density that exists in the Android project -->
+        <splash src="res/screen/android/splash-land-hdpi.png" 
density="land-hdpi"/>
+        <splash src="res/screen/android/splash-land-ldpi.png" 
density="land-ldpi"/>
+        <splash src="res/screen/android/splash-land-mdpi.png" 
density="land-mdpi"/>
+        <splash src="res/screen/android/splash-land-xhdpi.png" 
density="land-xhdpi"/>
+    
+        <splash src="res/screen/android/splash-port-hdpi.png" 
density="port-hdpi"/>
+        <splash src="res/screen/android/splash-port-ldpi.png" 
density="port-ldpi"/>
+        <splash src="res/screen/android/splash-port-mdpi.png" 
density="port-mdpi"/>
+        <splash src="res/screen/android/splash-port-xhdpi.png" 
density="port-xhdpi"/>
+    </platform>
+    
+    <platform name="ios">
+        <!-- images are determined by width and height. The following are 
supported -->
+        <splash src="res/screen/ios/Default~iphone.png" width="320" 
height="480"/>
+        <splash src="res/screen/ios/Default@2x~iphone.png" width="640" 
height="960"/>
+        <splash src="res/screen/ios/Default-Portrait~ipad.png" width="768" 
height="1024"/>
+        <splash src="res/screen/ios/Default-Portrait@2x~ipad.png" width="1536" 
height="2048"/>
+        <splash src="res/screen/ios/Default-Landscape~ipad.png" width="1024" 
height="768"/>
+        <splash src="res/screen/ios/Default-Landscape@2x~ipad.png" 
width="2048" height="1536"/>
+        <splash src="res/screen/ios/Default-568h@2x~iphone.png" width="640" 
height="1136"/>
+    </platform>
+    
+    <platform name="wp8">
+        <!-- images are determined by width and height. The following are 
supported -->
+        <splash src="res/screen/wp8/SplashScreenImage.jpg" width="768" 
height="1280"/>
+    </platform>
+    
+    <platform name="windows8">
+        <!-- images are determined by width and height. The following are 
supported -->
+        <splash src="res/screen/windows8/splashscreen.png" width="620" 
height="300"/>
+    </platform>
+    
+    <platform name="blackberry10">
+        <!-- Add a rim:splash element for each resolution and locale you wish 
-->
+        <!-- 
http://developer.blackberry.com/html5/documentation/rim_splash_element.html -->
+        <rim:splash src="res/screen/windows8/splashscreen.png"/>
+    </platform>
     
-
-Windows Phone określa pojedynczy znajdowa:
-
-        windows-phone/screen-portrait.jpg
     
-
-W poniższych sekcjach opisano, jak skonfigurować ekrany powitalne w 
aplikacjach podczas pracy z SDK i pokrewne narzędzia wiersza polecenia opisane 
w przewodnikach platformy.
-
-Nie zapomnij zainstalować wtyczki ekranu powitalnego przed trudny wobec 
używać `navigator.splashscreen.hide()` i `navigator.splashscreen.show()` 
metody.
-
-## Ekrany powitalne w aplikacjach na platformie Android
-
-Miejsce [9-łatka wyobrażenie o osobie][1] akta w projekcie Android 
`platforms/android/res/drawable*` katalogów.
-
- [1]: https://developer.android.com/tools/help/draw9patch.html
-
-Rozmiar dla każdego powinno być:
-
-*   xlarge (xhdpi): co najmniej 960 x 720
-*   duże (hdpi): co najmniej 640 x 480
-*   Średni (mdpi): co najmniej 470 × 320
-*   mały (ldpi): co najmniej 426 x 320
-
-Podczas tworzenia nowego projektu Android, ekran powitalny domyślne obrazy w 
Cordova przykładowej aplikacji powinny być już obecny w 
`platforms/android/res/drawable*` katalogów. Zapraszam zastąpić je z 
własnych zdjęć. Podczas tworzenia własnych rozchlapać obrazów z ekranu, 
nie trzeba podać sam permutacji 8 domyślnie Cordova te tutaj. Mniej lub 
bardziej służy optymalizacji. `drawable`Nazwy katalogów musi konwencjami 
Android dla [rozmiaru ekranu][2] i [alternatywnych zasobów][3].
-
- [2]: http://developer.android.com/guide/practices/screens_support.html
- [3]: 
http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources
-
-W najwyższego poziomu `config.xml` pliku (nie ten w `platforms` ), dodać 
następujące preferencje:
-
-    <preference name="SplashScreen" value="screen" />
     <preference name="SplashScreenDelay" value="10000" />
     
 
-Pierwszy wiersz ustawia obrazek, aby wyświetlić ekran powitalny. Jest to 
nazwa pliku PNG w `drawable*` katalogi, minus `.png` rozszerzenie. Wartość 
domyślna dla ekranu powitalnego jest `screen` (pliku 
`platforms/android/res/drawable*/screen.png` ), więc jeśli możesz wymienić 
obrazu nic innego niż `screen.png` w `drawable*` katalogi, ty potrzebować 
wobec dodać ten wiersz, modyfikować.
+# Obsługiwane platformy
 
-Drugi wiersz ustawia domyślne opóźnienie o ile pojawia się ekranu 
powitalnego w milisekundach. Powinno to być najgorszy start przewidywany czas. 
Wartość domyślna dla SplashScreenDelay jest 3000 ms.
+W chwili obecnej (Cordova 3.5.0 lipca 2014 roku) następujących platformach 
obsługuje ekrany powitalne w aplikacjach.
 
-Wreszcie, jako najlepsze praktyki ekran powitalny powinien znajdować się 
tylko tak długo jak to konieczne. Gdy Twoja aplikacja została uruchomiona i 
Widok sieci Web został załadowany, aplikacji należy ukryć opryskać tęcza, 
tak, że główny widok jest widoczny, tak szybko, jak to jest gotowy. 
Ponieważ czas rozpoczęcia aplikacji będzie różnić się trochę ze 
względu na wiele czynników, takich jak szybkość procesora i sieci, zalecane 
jest, że aplikacja jawnie wywołać `navigator.splashscreen.hide()` w metodzie 
JavaScript, który odpowiada `deviceready` zdarzenie. Inaczej ekran powitalny 
będą widoczne dla wartości SplashScreenDelay, który skonfigurowany 
powyżej, które prawdopodobnie dłużej niż jest to konieczne. Podejście to 
zdarzenie napędzana jest wysoce zalecane kontra konieczności ekran powitalny 
widoczny zawsze stały czas trwania.
-
-## Ekrany powitalne w aplikacjach dla platformy iOS
-
-Kopiowanie obrazów z ekranu powitalnego w projekcie iOS `Resources/splash` 
katalogu. Tylko dodać te obrazy dla urządzenia, które chcesz obsługiwać, 
iPad lub iPhone. Rozmiar każdego obrazu należy:
-
-*   Default-568h@2x~iphone.png (640x1136 pixels)
-*   Default-Landscape@2x~ipad.png (2048x1496 pixels)
-*   Default-Landscape~ipad.png (1024x748 pixels)
-*   Default-Portrait@2x~ipad.png (1536x2008 pixels)
-*   Default-Portrait~ipad.png (768x1004 pixels)
-*   Default@2x~iphone.png (640x960 pixels)
-*   Default~iphone.png (320x480 pixels)
-
-## Ekrany powitalne w aplikacjach na platformie BlackBerry 10
-
-Dodaj element obręczy: powitalny do pliku config.xml dla każdej 
rozdzielczości i ustawień regionalnych, które chcesz obsługiwać:
+    android
+    ios
+    wp8
+    windows8
+    blackberry10
+    
 
-[http://developer.BlackBerry.com/HTML5/documentation/rim\_splash\_element.html][4]
+# Plugin ekranu powitalnego
 
- [4]: 
http://developer.blackberry.com/html5/documentation/rim_splash_element.html
\ No newline at end of file
+Apache Cordova oferuje również specjalny powitalny ekran wtyczki, które 
mogą być wykorzystane do programowego wyświetlania i ukrywania ekran 
powitalny podczas uruchamiania aplikacji 
https://github.com/apache/cordova-plugin-splashscreen
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/config_ref/index.md b/docs/pl/edge/config_ref/index.md
index e8c4224..e878912 100644
--- a/docs/pl/edge/config_ref/index.md
+++ b/docs/pl/edge/config_ref/index.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.backbutton.md 
b/docs/pl/edge/cordova/events/events.backbutton.md
index c34316b..98ac81c 100644
--- a/docs/pl/edge/cordova/events/events.backbutton.md
+++ b/docs/pl/edge/cordova/events/events.backbutton.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.deviceready.md 
b/docs/pl/edge/cordova/events/events.deviceready.md
index 099848c..931511c 100644
--- a/docs/pl/edge/cordova/events/events.deviceready.md
+++ b/docs/pl/edge/cordova/events/events.deviceready.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.endcallbutton.md 
b/docs/pl/edge/cordova/events/events.endcallbutton.md
index a2c9d72..2c0c0b9 100644
--- a/docs/pl/edge/cordova/events/events.endcallbutton.md
+++ b/docs/pl/edge/cordova/events/events.endcallbutton.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.md 
b/docs/pl/edge/cordova/events/events.md
index f12c9b3..96c5c9c 100644
--- a/docs/pl/edge/cordova/events/events.md
+++ b/docs/pl/edge/cordova/events/events.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.menubutton.md 
b/docs/pl/edge/cordova/events/events.menubutton.md
index bdfc61a..ae9d946 100644
--- a/docs/pl/edge/cordova/events/events.menubutton.md
+++ b/docs/pl/edge/cordova/events/events.menubutton.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.pause.md 
b/docs/pl/edge/cordova/events/events.pause.md
index b26f574..03d517d 100644
--- a/docs/pl/edge/cordova/events/events.pause.md
+++ b/docs/pl/edge/cordova/events/events.pause.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.resume.md 
b/docs/pl/edge/cordova/events/events.resume.md
index d3b08a7..6928970 100644
--- a/docs/pl/edge/cordova/events/events.resume.md
+++ b/docs/pl/edge/cordova/events/events.resume.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.searchbutton.md 
b/docs/pl/edge/cordova/events/events.searchbutton.md
index 412ef14..056d86a 100644
--- a/docs/pl/edge/cordova/events/events.searchbutton.md
+++ b/docs/pl/edge/cordova/events/events.searchbutton.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.startcallbutton.md 
b/docs/pl/edge/cordova/events/events.startcallbutton.md
index e906d73..adfb630 100644
--- a/docs/pl/edge/cordova/events/events.startcallbutton.md
+++ b/docs/pl/edge/cordova/events/events.startcallbutton.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/39f31afa/docs/pl/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.volumedownbutton.md 
b/docs/pl/edge/cordova/events/events.volumedownbutton.md
index 5ee7472..905666d 100644
--- a/docs/pl/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/pl/edge/cordova/events/events.volumedownbutton.md
@@ -1,6 +1,6 @@
 * * *
 
-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
+Licencja: na licencji Apache Software Foundation (ASF) jedną lub więcej 
umów licencyjnych współautorów. 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
     

Reply via email to